diff --git "a/4. An\303\241lisis l\303\251xico II.ipynb copia" "b/4. An\303\241lisis l\303\251xico II.ipynb copia"
deleted file mode 100644
index abdbe7b..0000000
--- "a/4. An\303\241lisis l\303\251xico II.ipynb copia"
+++ /dev/null
@@ -1,923 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "\n",
- "# Análisis léxico: Colocaciones y $N$-Gramas\n",
- "### Ramón Soto C. [(rsotoc@moviquest.com)](mailto:rsotoc@moviquest.com/)\n",
- "[ver en nbviewer](http://nbviewer.ipython.org/github/rsotoc/nlp/blob/master/Introducción.ipynb)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "\n",
- "\n",
- "## Modelo de N-Gramas\n",
- "\n",
- "Una característica de los lenguajes naturales es que las frases que los componen no tienen una distribución uniforme. Por el contrario, existen construcciones que son más comunes que otras. De esta manera, aunque las frases $f_1 = \\textrm{\"el perro camina\"}$ y $f_2 = \\textrm{\"el perro vuela\"}$ son ambas correctas sintácticamente, es más probable encontrar la frase $f_1$ que la frase $f_2$ en un texto arbitrario. \n",
- "\n",
- "En la película \"*Take The Money And Run*\", Virgil Starkwell (Woody Allen) intenta asaltar un banco y entrega al cajero una nota con el mensaje \"*Please put fifty thousand dollars into this bag and act natural as I am pointing a gun at you*\" que es leída por los empleados del banco como \"*Please put fifty thousand dollars into this bag and ABT natural as I am pointing a GUB at you*\". \n",
- "\n",
- "[](https://www.youtube.com/watch?v=pEm0zi8QrpA)\n",
- "\n",
- "Sin embargo, es obvio que la frase \"*I am pointing a GUN at you*\" es más probable que la frase \"*I am pointing a GUB at you*\", por lo que en la vida real no nos cuesta trabajo reconocer la frase correcta. Para modelar esta capacidad de predecir la ocurrencia de una palabra en una frase se utilizan **Modelos de lenguajes** que asignan probabilidades a las secuencias de palabras que pueden conformar un texto. \n",
- "\n",
- "El modelo más simple es el **Modelo de N-Gramas**\". Este modelo asume que la probabiliad de ocurrencia de una palabra está determinada por las palabras recientes; lo que se conoce como la **suposición de Markov**. De manera que para el cálculo de estas probabilidades basta contabilizar la ocurrencia de secuencias de palabras de longitud definida. Un **$N$-Grama** es una secuencia de $N$ palabras. Así, por ejemplo, un 2-grama (o bigrama) es una secuencia de 2 palabras, como \"*el hombre*\", \"*hombre camina*\", \"*camina en*\", \"*en el*\", \"*el parque*\". Un 3-grama (trigrama) es una secuencia de tres palabras, como \"*el hombre camina*\", \"*hombre camina en*\", \"*camina en el*\", \"*en el parque*\". "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {
- "collapsed": false
- },
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Bigramas:\n",
- " Counter({('.', 'el'): 2, ('el', 'perro'): 2, ('en', 'el'): 2, ('el', 'parque'): 2, ('los', 'amigos'): 1, ('amigos', 'toman'): 1, ('toman', 'cafe'): 1, ('cafe', '.'): 1, ('perro', 'duerme'): 1, ('duerme', 'en'): 1, ('parque', '.'): 1, ('el', 'hombre'): 1, ('hombre', 'con'): 1, ('con', 'el'): 1, ('perro', 'camina'): 1, ('camina', 'en'): 1, ('parque', 'con'): 1, ('con', 'amigos'): 1, ('amigos', '.'): 1})\n",
- "\n",
- "Trigramas:\n",
- " Counter({('en', 'el', 'parque'): 2, ('los', 'amigos', 'toman'): 1, ('amigos', 'toman', 'cafe'): 1, ('toman', 'cafe', '.'): 1, ('cafe', '.', 'el'): 1, ('.', 'el', 'perro'): 1, ('el', 'perro', 'duerme'): 1, ('perro', 'duerme', 'en'): 1, ('duerme', 'en', 'el'): 1, ('el', 'parque', '.'): 1, ('parque', '.', 'el'): 1, ('.', 'el', 'hombre'): 1, ('el', 'hombre', 'con'): 1, ('hombre', 'con', 'el'): 1, ('con', 'el', 'perro'): 1, ('el', 'perro', 'camina'): 1, ('perro', 'camina', 'en'): 1, ('camina', 'en', 'el'): 1, ('el', 'parque', 'con'): 1, ('parque', 'con', 'amigos'): 1, ('con', 'amigos', '.'): 1})\n",
- "\n",
- "Tetragramas:\n",
- " Counter({('los', 'amigos', 'toman', 'cafe'): 1, ('amigos', 'toman', 'cafe', '.'): 1, ('toman', 'cafe', '.', 'el'): 1, ('cafe', '.', 'el', 'perro'): 1, ('.', 'el', 'perro', 'duerme'): 1, ('el', 'perro', 'duerme', 'en'): 1, ('perro', 'duerme', 'en', 'el'): 1, ('duerme', 'en', 'el', 'parque'): 1, ('en', 'el', 'parque', '.'): 1, ('el', 'parque', '.', 'el'): 1, ('parque', '.', 'el', 'hombre'): 1, ('.', 'el', 'hombre', 'con'): 1, ('el', 'hombre', 'con', 'el'): 1, ('hombre', 'con', 'el', 'perro'): 1, ('con', 'el', 'perro', 'camina'): 1, ('el', 'perro', 'camina', 'en'): 1, ('perro', 'camina', 'en', 'el'): 1, ('camina', 'en', 'el', 'parque'): 1, ('en', 'el', 'parque', 'con'): 1, ('el', 'parque', 'con', 'amigos'): 1, ('parque', 'con', 'amigos', '.'): 1})\n"
- ]
- }
- ],
- "source": [
- "import nltk\n",
- "from nltk import word_tokenize\n",
- "from nltk.util import ngrams\n",
- "from collections import Counter\n",
- "\n",
- "text = \"los amigos toman cafe. el perro duerme en el parque. el hombre con el perro \\\n",
- "camina en el parque con amigos.\"\n",
- "\n",
- "token = nltk.word_tokenize(text)\n",
- "bigrams = ngrams(token,2)\n",
- "trigrams = ngrams(token,3)\n",
- "tetragrams = ngrams(token,4)\n",
- "\n",
- "bigrams_list = list(bigrams)\n",
- "counter_bigrams = Counter(bigrams_list)\n",
- "print (\"Bigramas:\\n\", counter_bigrams)\n",
- "\n",
- "trigrams_list = list(trigrams)\n",
- "counter_trigrams = Counter(trigrams_list)\n",
- "print (\"\\nTrigramas:\\n\", counter_trigrams)\n",
- "\n",
- "tetragrams_list = list(tetragrams)\n",
- "counter_tetragrams = Counter(tetragrams_list)\n",
- "print (\"\\nTetragramas:\\n\", counter_tetragrams)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### $N$-Gramas en la base de datos de personajes de comics"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "from IPython.display import display\n",
- "import pandas as pd\n",
- "pd.options.display.max_colwidth = 150 "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {
- "collapsed": false
- },
- "outputs": [
- {
- "data": {
- "text/html": [
- "
\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " description | \n",
- " main_words | \n",
- " name | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " | 0 | \n",
- " mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... | \n",
- " [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... | \n",
- " 'Mazing Man | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " description \\\n",
- "0 mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... \n",
- "\n",
- " main_words \\\n",
- "0 [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... \n",
- "\n",
- " name \n",
- "0 'Mazing Man "
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "import json\n",
- "\n",
- "file = 'Data Sets/Comics/clean_comics.json'\n",
- "with open(file) as comics_file:\n",
- " dict_comics = json.load(comics_file)\n",
- "\n",
- "comicsDf = pd.DataFrame.from_dict(dict_comics)\n",
- "\n",
- "display(comicsDf.head(1))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {
- "collapsed": false
- },
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " name | \n",
- " description | \n",
- " main_words | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " | 0 | \n",
- " 'Mazing Man | \n",
- " mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... | \n",
- " [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " name \\\n",
- "0 'Mazing Man \n",
- "\n",
- " description \\\n",
- "0 mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... \n",
- "\n",
- " main_words \n",
- "0 [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... "
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "#Sólo para reducir mi OCD\n",
- "comicsDf = comicsDf.reindex_axis(['name',\"description\", \"main_words\"], axis=1)\n",
- "display(comicsDf.head(1))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {
- "collapsed": false
- },
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/Users/rsotoc/anaconda3/lib/python3.6/site-packages/ipykernel/__main__.py:1: DeprecationWarning: generator 'ngrams' raised StopIteration\n",
- " if __name__ == '__main__':\n"
- ]
- },
- {
- "data": {
- "text/html": [
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " name | \n",
- " description | \n",
- " main_words | \n",
- " bigrams | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " | 0 | \n",
- " 'Mazing Man | \n",
- " mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... | \n",
- " [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... | \n",
- " [(mazing, man), (man, is), (is, the), (the, title), (title, character), (character, of), (of, a), (a, comic), (comic, book), (book, series), (seri... | \n",
- "
\n",
- " \n",
- " | 1 | \n",
- " 711 (Quality Comics) | \n",
- " is a fictional superhero from the golden age of comics he was created by george brenner and published by quality comics first appeared in police c... | \n",
- " [fictional, superhero, golden, age, comics, created, george, published, quality, comics, first, appeared, police, comics, august, lasted, january,... | \n",
- " [(is, a), (a, fictional), (fictional, superhero), (superhero, from), (from, the), (the, golden), (golden, age), (age, of), (of, comics), (comics, ... | \n",
- "
\n",
- " \n",
- " | 2 | \n",
- " Abigail Brand | \n",
- " special agent special agent abigail brand is a fictional character appearing in american comic book s published by marvel comics abigail brand s f... | \n",
- " [special, agent, special, agent, abigail, brand, fictional, character, appearing, american, comic, book, published, marvel, comics, abigail, brand... | \n",
- " [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (brand, is), (is, a), (a, fictional), (fictional, chara... | \n",
- "
\n",
- " \n",
- " | 3 | \n",
- " Abin Sur | \n",
- " abin sur is a fictional character and a superhero from the dc comics dc universe universe he was a member of the green lantern corps and is best k... | \n",
- " [abin, sur, fictional, character, superhero, dc, comics, dc, universe, universe, member, green, lantern, corps, best, known, predecessor, green, l... | \n",
- " [(abin, sur), (sur, is), (is, a), (a, fictional), (fictional, character), (character, and), (and, a), (a, superhero), (superhero, from), (from, th... | \n",
- "
\n",
- " \n",
- " | 4 | \n",
- " Abner Jenkins | \n",
- " abner ronald jenkins formerly known as the beetle comics beetle mach mach mach mach iv mach v mach vii and currently known as mach x and is a fict... | \n",
- " [abner, ronald, jenkins, formerly, known, beetle, comics, beetle, mach, mach, mach, mach, mach, mach, vii, currently, known, mach, x, fictional, c... | \n",
- " [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (known, as), (as, the), (the, beetle), (beetle, comics), (comics, bee... | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " name \\\n",
- "0 'Mazing Man \n",
- "1 711 (Quality Comics) \n",
- "2 Abigail Brand \n",
- "3 Abin Sur \n",
- "4 Abner Jenkins \n",
- "\n",
- " description \\\n",
- "0 mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... \n",
- "1 is a fictional superhero from the golden age of comics he was created by george brenner and published by quality comics first appeared in police c... \n",
- "2 special agent special agent abigail brand is a fictional character appearing in american comic book s published by marvel comics abigail brand s f... \n",
- "3 abin sur is a fictional character and a superhero from the dc comics dc universe universe he was a member of the green lantern corps and is best k... \n",
- "4 abner ronald jenkins formerly known as the beetle comics beetle mach mach mach mach iv mach v mach vii and currently known as mach x and is a fict... \n",
- "\n",
- " main_words \\\n",
- "0 [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... \n",
- "1 [fictional, superhero, golden, age, comics, created, george, published, quality, comics, first, appeared, police, comics, august, lasted, january,... \n",
- "2 [special, agent, special, agent, abigail, brand, fictional, character, appearing, american, comic, book, published, marvel, comics, abigail, brand... \n",
- "3 [abin, sur, fictional, character, superhero, dc, comics, dc, universe, universe, member, green, lantern, corps, best, known, predecessor, green, l... \n",
- "4 [abner, ronald, jenkins, formerly, known, beetle, comics, beetle, mach, mach, mach, mach, mach, mach, vii, currently, known, mach, x, fictional, c... \n",
- "\n",
- " bigrams \n",
- "0 [(mazing, man), (man, is), (is, the), (the, title), (title, character), (character, of), (of, a), (a, comic), (comic, book), (book, series), (seri... \n",
- "1 [(is, a), (a, fictional), (fictional, superhero), (superhero, from), (from, the), (the, golden), (golden, age), (age, of), (of, comics), (comics, ... \n",
- "2 [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (brand, is), (is, a), (a, fictional), (fictional, chara... \n",
- "3 [(abin, sur), (sur, is), (is, a), (a, fictional), (fictional, character), (character, and), (and, a), (a, superhero), (superhero, from), (from, th... \n",
- "4 [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (known, as), (as, the), (the, beetle), (beetle, comics), (comics, bee... "
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Cantidad de bigramas en el corpus: 3391034\n",
- "\n",
- "Bigramas más populares:\n",
- " [(('of', 'the'), 26955), (('in', 'the'), 22292), (('x', 'men'), 8457), (('to', 'the'), 8214), (('and', 'the'), 7985), (('as', 'a'), 7543), (('with', 'the'), 6988), (('marvel', 'comics'), 6206), (('by', 'the'), 5661), (('he', 'is'), 5238), (('in', 'a'), 5209), (('spider', 'man'), 4942), (('to', 'be'), 4916), (('is', 'a'), 4811), (('from', 'the'), 4394), (('on', 'the'), 4182), (('as', 'the'), 4138), (('of', 'his'), 4031), (('dc', 'comics'), 3906), (('he', 'was'), 3862), (('at', 'the'), 3711), (('one', 'of'), 3458), (('during', 'the'), 3429), (('for', 'the'), 3412), (('the', 'character'), 3361), (('the', 'new'), 3318), (('comic', 'book'), 3280), (('that', 'he'), 3252), (('of', 'a'), 3147), (('the', 'x'), 3097), (('she', 'is'), 3048), (('justice', 'league'), 2992), (('the', 'team'), 2818), (('appeared', 'in'), 2806), (('member', 'of'), 2753), (('appears', 'in'), 2670), (('him', 'to'), 2460), (('version', 'of'), 2456), (('with', 'a'), 2449), (('able', 'to'), 2386), (('it', 'is'), 2381), (('that', 'the'), 2381), (('the', 'first'), 2291), (('green', 'lantern'), 2288), (('and', 'his'), 2258), (('part', 'of'), 2226), (('in', 'his'), 2193), (('she', 'was'), 2173), (('after', 'the'), 2116), (('a', 'member'), 2116)]\n"
- ]
- }
- ],
- "source": [
- "comicsDf[\"bigrams\"] = list(map(lambda row: list(ngrams(word_tokenize(row),2)), \n",
- " comicsDf.description))\n",
- "display(comicsDf.head())\n",
- "\n",
- "comics_bigrams = []\n",
- "for row in comicsDf.bigrams:\n",
- " comics_bigrams.extend(row)\n",
- "most_common_comics_bigrams = nltk.FreqDist(comics_bigrams)\n",
- "\n",
- "print(\"Cantidad de bigramas en el corpus: \", most_common_comics_bigrams.N())\n",
- "print(\"\\nBigramas más populares:\\n\", most_common_comics_bigrams.most_common(50))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Colocaciones\n",
- "\n",
- "En lexicología, una colocación es un término que designa combinaciones de unidades léxicas que se distinguen por un frecuencia que resulta inesperadamente alta. En los bigramas anteriores destacan los siguientes:\n",
- "\n",
- "[... (('x', 'men'), 8457), ... (('marvel', 'comics'), 6206), ... (('spider', 'man'), 4942), ... (('dc', 'comics'), 3906), ... (('comic', 'book'), 3280), ... (('justice', 'league'), 2991), ... (('green', 'lantern'), 2288), ...]\n",
- "\n",
- "\n",
- "Estos términos permiten hacer un análisis más inteligente del texto. Identificamos otras colocaciones importantes:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {
- "collapsed": false
- },
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " name | \n",
- " description | \n",
- " main_words | \n",
- " bigrams | \n",
- " clean_bigrams | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " | 0 | \n",
- " 'Mazing Man | \n",
- " mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... | \n",
- " [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... | \n",
- " [(mazing, man), (man, is), (is, the), (the, title), (title, character), (character, of), (of, a), (a, comic), (comic, book), (book, series), (seri... | \n",
- " [(mazing, man), (title, character), (comic, book), (book, series), (series, created), (bob, rozakis), (stephen, destefano), (dc, comics), (series,... | \n",
- "
\n",
- " \n",
- " | 1 | \n",
- " 711 (Quality Comics) | \n",
- " is a fictional superhero from the golden age of comics he was created by george brenner and published by quality comics first appeared in police c... | \n",
- " [fictional, superhero, golden, age, comics, created, george, published, quality, comics, first, appeared, police, comics, august, lasted, january,... | \n",
- " [(is, a), (a, fictional), (fictional, superhero), (superhero, from), (from, the), (the, golden), (golden, age), (age, of), (of, comics), (comics, ... | \n",
- " [(fictional, superhero), (golden, age), (george, brenner), (quality, comics), (comics, first), (first, appeared), (police, comics), (comics, augus... | \n",
- "
\n",
- " \n",
- " | 2 | \n",
- " Abigail Brand | \n",
- " special agent special agent abigail brand is a fictional character appearing in american comic book s published by marvel comics abigail brand s f... | \n",
- " [special, agent, special, agent, abigail, brand, fictional, character, appearing, american, comic, book, published, marvel, comics, abigail, brand... | \n",
- " [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (brand, is), (is, a), (a, fictional), (fictional, chara... | \n",
- " [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (fictional, character), (character, appearing), (americ... | \n",
- "
\n",
- " \n",
- " | 3 | \n",
- " Abin Sur | \n",
- " abin sur is a fictional character and a superhero from the dc comics dc universe universe he was a member of the green lantern corps and is best k... | \n",
- " [abin, sur, fictional, character, superhero, dc, comics, dc, universe, universe, member, green, lantern, corps, best, known, predecessor, green, l... | \n",
- " [(abin, sur), (sur, is), (is, a), (a, fictional), (fictional, character), (character, and), (and, a), (a, superhero), (superhero, from), (from, th... | \n",
- " [(abin, sur), (fictional, character), (dc, comics), (comics, dc), (dc, universe), (universe, universe), (green, lantern), (lantern, corps), (best,... | \n",
- "
\n",
- " \n",
- " | 4 | \n",
- " Abner Jenkins | \n",
- " abner ronald jenkins formerly known as the beetle comics beetle mach mach mach mach iv mach v mach vii and currently known as mach x and is a fict... | \n",
- " [abner, ronald, jenkins, formerly, known, beetle, comics, beetle, mach, mach, mach, mach, mach, mach, vii, currently, known, mach, x, fictional, c... | \n",
- " [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (known, as), (as, the), (the, beetle), (beetle, comics), (comics, bee... | \n",
- " [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (beetle, comics), (comics, beetle), (beetle, mach), (mach, mach), (ma... | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " name \\\n",
- "0 'Mazing Man \n",
- "1 711 (Quality Comics) \n",
- "2 Abigail Brand \n",
- "3 Abin Sur \n",
- "4 Abner Jenkins \n",
- "\n",
- " description \\\n",
- "0 mazing man is the title character of a comic book series created by bob rozakis and stephen destefano and published by dc comics the series ran fo... \n",
- "1 is a fictional superhero from the golden age of comics he was created by george brenner and published by quality comics first appeared in police c... \n",
- "2 special agent special agent abigail brand is a fictional character appearing in american comic book s published by marvel comics abigail brand s f... \n",
- "3 abin sur is a fictional character and a superhero from the dc comics dc universe universe he was a member of the green lantern corps and is best k... \n",
- "4 abner ronald jenkins formerly known as the beetle comics beetle mach mach mach mach iv mach v mach vii and currently known as mach x and is a fict... \n",
- "\n",
- " main_words \\\n",
- "0 [man, title, character, comic, book, series, created, bob, rozakis, stephen, published, dc, comics, series, ran, twelve, issues, additional, speci... \n",
- "1 [fictional, superhero, golden, age, comics, created, george, published, quality, comics, first, appeared, police, comics, august, lasted, january,... \n",
- "2 [special, agent, special, agent, abigail, brand, fictional, character, appearing, american, comic, book, published, marvel, comics, abigail, brand... \n",
- "3 [abin, sur, fictional, character, superhero, dc, comics, dc, universe, universe, member, green, lantern, corps, best, known, predecessor, green, l... \n",
- "4 [abner, ronald, jenkins, formerly, known, beetle, comics, beetle, mach, mach, mach, mach, mach, mach, vii, currently, known, mach, x, fictional, c... \n",
- "\n",
- " bigrams \\\n",
- "0 [(mazing, man), (man, is), (is, the), (the, title), (title, character), (character, of), (of, a), (a, comic), (comic, book), (book, series), (seri... \n",
- "1 [(is, a), (a, fictional), (fictional, superhero), (superhero, from), (from, the), (the, golden), (golden, age), (age, of), (of, comics), (comics, ... \n",
- "2 [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (brand, is), (is, a), (a, fictional), (fictional, chara... \n",
- "3 [(abin, sur), (sur, is), (is, a), (a, fictional), (fictional, character), (character, and), (and, a), (a, superhero), (superhero, from), (from, th... \n",
- "4 [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (known, as), (as, the), (the, beetle), (beetle, comics), (comics, bee... \n",
- "\n",
- " clean_bigrams \n",
- "0 [(mazing, man), (title, character), (comic, book), (book, series), (series, created), (bob, rozakis), (stephen, destefano), (dc, comics), (series,... \n",
- "1 [(fictional, superhero), (golden, age), (george, brenner), (quality, comics), (comics, first), (first, appeared), (police, comics), (comics, augus... \n",
- "2 [(special, agent), (agent, special), (special, agent), (agent, abigail), (abigail, brand), (fictional, character), (character, appearing), (americ... \n",
- "3 [(abin, sur), (fictional, character), (dc, comics), (comics, dc), (dc, universe), (universe, universe), (green, lantern), (lantern, corps), (best,... \n",
- "4 [(abner, ronald), (ronald, jenkins), (jenkins, formerly), (formerly, known), (beetle, comics), (comics, beetle), (beetle, mach), (mach, mach), (ma... "
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- },
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Cantidad de bigramas en el corpus: 1093978\n",
- "\n",
- "Bigramas más populares:\n",
- " [(('x', 'men'), 8457), (('marvel', 'comics'), 6206), (('spider', 'man'), 4942), (('dc', 'comics'), 3906), (('comic', 'book'), 3280), (('justice', 'league'), 2992), (('green', 'lantern'), 2288), (('captain', 'america'), 2008), (('first', 'appeared'), 1462), (('iron', 'man'), 1462), (('tv', 'series'), 1437), (('fantastic', 'four'), 1410), (('uncanny', 'x'), 1326), (('teen', 'titans'), 1235), (('wonder', 'woman'), 1179), (('super', 'heroes'), 1102), (('fictional', 'character'), 992), (('captain', 'marvel'), 986), (('marvel', 'universe'), 982), (('new', 'york'), 975), (('new', 'mutants'), 884), (('civil', 'war'), 853), (('x', 'factor'), 819), (('x', 'force'), 813), (('dc', 'universe'), 799), (('lantern', 'corps'), 787), (('american', 'comic'), 781), (('ghost', 'rider'), 765), (('playable', 'character'), 751), (('amazing', 'spider'), 741), (('justice', 'society'), 725), (('green', 'arrow'), 678), (('golden', 'age'), 649), (('world', 'war'), 633), (('united', 'states'), 616), (('alpha', 'flight'), 615), (('video', 'game'), 613), (('men', 'vol'), 601), (('black', 'panther'), 599), (('comic', 'books'), 592), (('limited', 'series'), 584), (('new', 'warriors'), 581), (('hal', 'jordan'), 572), (('infinite', 'crisis'), 569), (('animated', 'series'), 565), (('new', 'x'), 558), (('avengers', 'comics'), 536), (('first', 'appearance'), 528), (('new', 'avengers'), 526), (('one', 'shot'), 524)]\n"
- ]
- }
- ],
- "source": [
- "from nltk.corpus import stopwords \n",
- "\n",
- "stops_english = set(stopwords.words(\"english\"))\n",
- "comicsDf[\"clean_bigrams\"] = list(map(lambda bigram: \n",
- " [b for b in bigram if b[0] not in stops_english and\n",
- " b[1] not in stops_english], \n",
- " comicsDf.bigrams))\n",
- "display(comicsDf.head())\n",
- "\n",
- "comics_clean_bigrams = []\n",
- "for row in comicsDf.clean_bigrams:\n",
- " comics_clean_bigrams.extend(row)\n",
- "common_clean_bigrams = nltk.FreqDist(comics_clean_bigrams)\n",
- "\n",
- "print(\"Cantidad de bigramas en el corpus: \", common_clean_bigrams.N())\n",
- "print(\"\\nBigramas más populares:\\n\", common_clean_bigrams.most_common(50))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "En estos resultados observamos que todos los bigramas presentados tienen significado útil y algunos como 'x', 'men', 'spider', 'man' y muchos otros, pierden sentido si se les separa. En estos casos, puede ser conveniente reemplazar el bigrama por un token: 'x_men', 'spider_man', etc. "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "all_collocations = []\n",
- "for b in comics_clean_bigrams:\n",
- " s = b[0]+\" \"+b[1]\n",
- " all_collocations.append(s)\n",
- "#all_collocations = list(set(all_collocations))\n",
- "\n",
- "from collections import Counter\n",
- "c_all_collocations = Counter(all_collocations)\n",
- "\n",
- "nc = len(c_all_collocations.most_common())\n",
- "print(len(all_collocations), \"bigramas\\n\", \n",
- " c_all_collocations.most_common(20),\n",
- " \"\\n...\\n\",\n",
- " list(c_all_collocations.most_common())[int(nc/2):int(nc/2)+20],\n",
- " \"\\n...\\n\",\n",
- " list(c_all_collocations.most_common())[nc-20:])\n"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "A partir de este listado, con las 20 colocaciones más frecuentes, las 20 colocaciones menos frecuentes y 20 colocaciones con frecuencia media, observamos que no todas pueden tomarse como tokens, e incluso, la mayoría no tienen sentido como unidades. Construimos entonces las colocaciones tomando en cuenta el diccionario preliminar, reflejado en la columna main_words y mantenemos el nombre del personaje:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "comicsDf[\"all_collocations\"] = list(map(lambda bigram, words: \n",
- " [b[0]+\" \"+b[1] for b in bigram \n",
- " if b[0] in words or b[1] in words], \n",
- " comicsDf[\"clean_bigrams\"], comicsDf[\"main_words\"]))\n",
- "display(comicsDf.head())"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "for row in comicsDf.main_words:\n",
- " for w in row:\n",
- " if(len(w) == 2):\n",
- " print(w)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "comics_all_collocations = []\n",
- "for row in comicsDf.all_collocations:\n",
- " comics_all_collocations.extend(row)\n",
- "common_all_collocations = nltk.FreqDist(comics_all_collocations)\n",
- "\n",
- "print(common_all_collocations.N(), common_clean_bigrams.N(), \n",
- " \"\\n\", common_all_collocations.most_common(50))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": [
- "ELIMINAR???\n",
- "\n",
- "dict_comics_clean_bigrams = dict(zip(all_collocations, [0]*len(all_collocations)))\n",
- "for w in all_collocations:\n",
- " for d in comicsDf.description:\n",
- " if(w in d):\n",
- " dict_comics_clean_bigrams[w] += 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "comics_all_collocations = list(set(comics_all_collocations))\n",
- "dict_all_collocations = dict(zip(comics_all_collocations, [0]*len(comics_all_collocations)))\n",
- "for w in comics_all_collocations:\n",
- " for d in comicsDf.all_collocations:\n",
- " if(w in d):\n",
- " dict_all_collocations[w] += 1"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "from collections import Counter\n",
- "cx_bigrams = Counter(dict_all_collocations)\n",
- "\n",
- "print(cx_bigrams.most_common(150))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "import math\n",
- "\n",
- "top_collocations = []\n",
- "numDocs_comics = len(comicsDf)\n",
- "for d in comicsDf.description:\n",
- " N = len(d)\n",
- " for w in all_collocations:\n",
- " if(w in d):\n",
- " tfidf = d.count(w) / N * math.log(numDocs_comics/dict_comics_clean_bigrams[w], 2)\n",
- " if(tfidf > 0.001):\n",
- " top_collocations.append(w)\n",
- " all_collocations.remove(w)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "print(top_collocations[:50])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "dict_top_collocations = dict(zip(top_collocations, [0]*len(top_collocations)))\n",
- "for w in top_collocations:\n",
- " if(len(w) > 3):\n",
- " dict_top_collocations[w] = dict_comics_clean_bigrams[w]\n",
- "top_bigrams = Counter(dict_top_collocations)\n",
- "\n",
- "print(top_bigrams.most_common(250)) "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "from collections import Counter\n",
- "c_bigrams = Counter(top_collocations)\n",
- "\n",
- "print(c_bigrams.most_common(50))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "print(dict_comics_clean_bigrams['revolve around'])"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "s = \" e e \"\n",
- "for i, n, d in zip(range(numDocs_comics), comicsDf.name, comicsDf.description):\n",
- " if (d.find(s) > 0):\n",
- " print(s, n, d)\n",
- " break;"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "#for w in idf_dict_comics_clean_bigrams.keys():\n",
- "# if(idf_dict_comics_clean_bigrams.get(w) > 0):\n",
- "# v = numDocs_comics / idf_dict_comics_clean_bigrams.get(w)\n",
- "# idf_dict_comics_clean_bigrams[w] = math.log(v, 2)\n",
- " \n",
- "\n",
- "count=[0]*4\n",
- "for w in idf_dict_comics_clean_bigrams.keys():\n",
- " if idf_dict_comics_clean_bigrams[w] < 1.0 :\n",
- " count[0] = count[0] + 1\n",
- " if idf_dict_comics_clean_bigrams[w] < 3.0 :\n",
- " count[1] = count[1] + 1\n",
- " if idf_dict_comics_clean_bigrams[w] < 5.0 :\n",
- " count[2] = count[2] + 1\n",
- " if idf_dict_comics_clean_bigrams[w] < 8.0 :\n",
- " count[3] = count[3] + 1\n",
- "print (count)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {
- "collapsed": true
- },
- "source": [
- "Consideramos que las principales colocaciones 'x men', 'marvel comics', 'spider man', 'dc comics', etc., tienen significado propio, por lo que los transformamos en tokens:"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": [
- "comicsDf[\"description_ext\"] = list(map(lambda row: \n",
- " row.replace(b, b.replace(\" \", \"_\")) for b in c_bigrams:, \n",
- " comicsDf.description))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "stops_english = set(stopwords.words(\"english\"))\n",
- "comicsDf[\"words_wsw\"] = list(map(lambda row: \n",
- " [w for w in row.split() \n",
- " if not w in stops_english and len(w)>0], \n",
- " comicsDf.description))\n",
- "comicsDf[\"bigrams_wsw\"] = list(map(lambda row: list(ngrams(row,2)), comicsDf.words_wsw))\n",
- "\n",
- "display(comicsDf.head())\n",
- "\n",
- "comics_bigrams_wsw = []\n",
- "for row in comicsDf.bigrams_wsw:\n",
- " comics_bigrams_wsw.extend(row)\n",
- "most_common_comics_bigrams_wsw = nltk.FreqDist(comics_bigrams_wsw)\n",
- "\n",
- "print(\"Cantidad de bigramas en el corpus: \", most_common_comics_bigrams_wsw.N())\n",
- "print(\"\\nBigramas más populares:\\n\", most_common_comics_bigrams_wsw.most_common(50))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "import math\n",
- "\n",
- "numDocs_comics = len(comicsDf)\n",
- "all_words_comics = [w for w in all_words if not w in uselessWords]\n",
- "words_comics = set(all_words_comics)\n",
- "\n",
- "idf_dict_comics = dict(zip(words_comics, [0]*len(words_comics)))\n",
- "\n",
- "for w in words_comics:\n",
- " for d in comicsDf.words_wsw:\n",
- " if w in d:\n",
- " idf_dict_comics[w] = idf_dict_comics.get(w) + 1\n",
- "\n",
- "for w in idf_dict_comics.keys():\n",
- " v = numDocs_comics / idf_dict_comics.get(w)\n",
- " idf_dict_comics[w] = math.log(v, 2)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "max_key = max(idf_dict_comics, key=lambda k: idf_dict_comics[k])\n",
- "min_key = min(idf_dict_comics, key=lambda k: idf_dict_comics[k])\n",
- "\n",
- "print(max_key, idf_dict_comics.get(max_key))\n",
- "print(min_key, idf_dict_comics.get(min_key))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": false
- },
- "outputs": [],
- "source": [
- "print(numDocs_comics, len(idf_dict_comics))\n",
- "\n",
- "count=[0]*3\n",
- "for w in idf_dict_comics.keys():\n",
- " if idf_dict_comics[w] < 1.0 :\n",
- " count[0] = count[0] + 1\n",
- " if idf_dict_comics[w] < 3.0 :\n",
- " count[1] = count[1] + 1\n",
- " if idf_dict_comics[w] < 5.0 :\n",
- " count[2] = count[2] + 1\n",
- "print (count)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Conclusiones\n",
- "\n",
- "
\n",
- "\n",
- "### Tarea 1\n",
- "\n",
- "Describa un problema de reconocimiento de patrones de su interés y explique por qué un modelo tradicional sería inapropiado para resolverlo (utilice la celda siguiente, en esta libreta, para presentar su problema seleccionado).\n",
- "\n",
- "**Fecha de entrega**: Viernes 20 de enero."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {
- "collapsed": true
- },
- "outputs": [],
- "source": []
- }
- ],
- "metadata": {
- "celltoolbar": "Raw Cell Format",
- "kernelspec": {
- "display_name": "Python 3",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.6.0"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 0
-}
diff --git a/a b/a
deleted file mode 100644
index dd1bf4d..0000000
--- a/a
+++ /dev/null
@@ -1 +0,0 @@
-[{"title":"030 (magazine)","description":"issn or magazin berlin is a free ad supported germany german magazine from berlinfos at website its name refers to the list of dialling codes in germany dialing code of the city it was founded on october and provides information about movies concerts partiesports and new media it is distributed in bars pubs and restaurants and is published every two weeks the print run is pieces the has belonged to zitty verlagmbh from since january the magazin homepage had an online relaunch the publisher and editors have been located in berlin prenzlauer berg externalinks official website category establishments in germany category biweekly magazines category free magazines category german magazines category german language magazines category magazinestablished in category magazines published in berlin category local interest magazines category city guides","main_words":["issn","berlin","free","supported","germany_german","magazine","website","name","refers","list","codes","germany","dialing","code","city","founded","october","provides_information","movies","concerts","new","media","distributed","bars","pubs","restaurants","published","every","two_weeks","print","run","pieces","belonged","since","january","homepage","online","relaunch","publisher","editors","located","berlin","berg","externalinks_official_website_category_establishments","germany_category","biweekly","magazines_category_free_magazines","category_german","category_magazinestablished","category_magazines_published","berlin","category_local_interest_magazines","category_city_guides"],"clean_bigrams":[["supported","germany"],["germany","german"],["german","magazine"],["name","refers"],["germany","dialing"],["dialing","code"],["provides","information"],["movies","concerts"],["new","media"],["bars","pubs"],["published","every"],["every","two"],["two","weeks"],["print","run"],["since","january"],["online","relaunch"],["berg","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["germany","category"],["category","biweekly"],["biweekly","magazines"],["magazines","category"],["category","free"],["free","magazines"],["magazines","category"],["category","german"],["german","magazines"],["magazines","category"],["category","german"],["german","language"],["language","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["berlin","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","city"],["city","guides"]],"all_collocations":["supported germany","germany german","german magazine","name refers","germany dialing","dialing code","provides information","movies concerts","new media","bars pubs","published every","every two","two weeks","print run","since january","online relaunch","berg externalinks","externalinks official","official website","website category","category establishments","germany category","category biweekly","biweekly magazines","magazines category","category free","free magazines","magazines category","category german","german magazines","magazines category","category german","german language","language magazines","magazines category","category magazinestablished","category magazines","magazines published","berlin category","category local","local interest","interest magazines","magazines category","category city","city guides"],"new_description":"issn berlin free supported germany_german magazine website name refers list codes germany dialing code city founded october provides_information movies concerts new media distributed bars pubs restaurants published every two_weeks print run pieces belonged since january homepage online relaunch publisher editors located berlin berg externalinks_official_website_category_establishments germany_category biweekly magazines_category_free_magazines category_german magazines_category_german_language_magazines category_magazinestablished category_magazines_published berlin category_local_interest_magazines category_city_guides"},{"title":"86 (term)","description":"when used as a verb eighty six eighty sixed or d is list of american words not widely used in the united kingdom american english slang for getting rid of something ejecting someone orefusing service meaning according to merriam webster s dictionary is a slang term that is used in the american popular culture as a transitiverb to mean throw out or get rid of particularly in the food service industry as a term to describe an item no longer available on the menu or to refuservice to a customer the merriam webster dictionary suggests the termay be associated withe word nix nor a more general prohibition several possible origins of the term have been suggested all dated before the s united states navy decommissioning one possible origin is from the united states navy us navy s allowance type at coding system used for military logistics logistic purposes the allowance type code is a single digithat identifies the reason that materiel is being carried in stock throughouthe life cycle of a warship many pieces of equipment are upgraded oreplaced requiring onboard spare parts to be disposed of and the code is at for parts designated for disposal following world war ii there were a great number of warships being decommissioned sold scrapped or deactivated and placed in reserve commonly referred to as mothball eduring this process labor workers would bring up spare parts from the storerooms and the supply clerk would tell them the at code anything to be disposed of was referred to as at which sounds like file chumleys bedford st cloudy morn jehjpg thumb right px looking north at chumley s bedford st west village bedford street author jef klein theorizes thathe bar chumley s at bedford street in the west village of lower manhattan was the source klein s book the history and stories of the best bars of new york claims thathe police would call chumley s bar during prohibition in the united states prohibition before making a raid and tell the bartender to his customers meaning thathey should exit outhe bedford street door while the police would come to the pamela court entrance restaurant slang another notion of the term s origin claims that it came from a code supposedly used in some restaurants among restaurant workers in the s where meant we re all out of it walter winchell published examples of similarestaurant slang in his newspaper column in whiche presented as part of a glossary of soda fountain lingo documented use according to the oxford english dictionary the first verifiable use of in the sense of refuservice to dates to a book about john barrymore a movie star of the s famous for his acting and infamous for his drinking there was a bar in the belasco building but barrymore was known in that cubby as an eighty six an eighty six in the patois of western dispensers means don t serve him popular uses of term in the song boogie woogie blue plate by louis jordan one line is on the cherry pies as one of many examples of short orderestaurant lingo the main character in gore vidal s play visito a small planet new york times theatre visito a small planet vidal s foolish notion istaged at boothe cast by brooks atkinson february page uses the command numerous times to destroy things in the television series get smart agent maxwell smart was code named agenthomas pynchon used the term in gravity s rainbow they did finally him out of massachusetts bay colony david b feinberg published the novel eighty sixed contrasting life inew york just before hiv to life in when aids had become a major health crisis in the city filmmaker dave markey made a documentary abouthe final tour of the infamous hardcore punk band black flag band black flag entitled reality d the movie was filmed in during the band s final tour but wasn t released until dan fante s novel d is about a man who gets fired and battles his alcoholism cars main antagonist chicks has this number which means he rammed other cars and got rid of them see also list of restauranterminology externalinks eighty six nix yaelfcom the altusage faq snopescom etymology of the slang term category slang category restauranterminology","main_words":["used","verb","eighty","six","eighty","list","american","words","widely_used","united_kingdom","american_english","slang","getting","rid","something","someone","service","meaning","according","merriam_webster","dictionary","slang_term","used","american","popular_culture","mean","throw","get","rid","particularly","term","describe","item","longer","available","menu","customer","merriam_webster","dictionary","suggests","associated_withe","word","general","prohibition","several","possible","origins","term","suggested","dated","united_states","navy","one","possible","origin","united_states","navy","us_navy","allowance","type","system","used","military","logistics","purposes","allowance","type","code","single","identifies","reason","carried","stock","throughouthe","life","cycle","many","pieces","equipment","upgraded","requiring","onboard","spare","parts","disposed","code","parts","designated","disposal","following","world_war","ii","great","number","decommissioned","sold","placed","reserve","commonly_referred","process","labor","workers","would","bring","spare","parts","supply","clerk","would","tell","code","anything","disposed","referred","sounds","like","file","bedford","st","jehjpg","thumb","right","px","looking","north","chumley","bedford","st","west","village","bedford","street","author","klein","thathe","bar","chumley","bedford","street","west","village","lower","manhattan","source","klein","book","history","stories","best","bars","new_york","claims","thathe","police","would","call","chumley","bar","prohibition","united_states_prohibition","making","raid","tell","bartender","customers","meaning","thathey","exit","outhe","bedford","street","door","police","would","come","court","entrance","restaurant","slang","another","notion","term","origin","claims","came","code","supposedly","used","restaurants","among","restaurant","workers","meant","walter","published","examples","slang","newspaper","column","whiche","presented","part","glossary","soda_fountain","lingo","documented","use","according","oxford_english_dictionary","first","use","sense","dates","book","john","movie","star","famous","acting","infamous","drinking","bar","building","known","eighty","six","eighty","six","western","means","serve","popular","uses","term","song","blue_plate","louis","jordan","one","line","cherry","pies","one","many","examples","short","lingo","main","character","play","visito","small","planet","new_york","times","theatre","visito","small","planet","notion","cast","february","page","uses","command","numerous","times","destroy","things","television_series","get","smart","agent","maxwell","smart","code","named","used","term","gravity","finally","massachusetts","bay","colony","david","b","published","novel","eighty","contrasting","life","inew_york","hiv","life","aids","become","major","health","crisis","city","filmmaker","dave","made","documentary","abouthe","final","tour","infamous","hardcore","punk","band","black","flag","band","black","flag","entitled","reality","movie","filmed","band","final","tour","released","dan","novel","man","gets","fired","battles","alcoholism","cars","main","number","means","cars","got","rid","see_also","list","restauranterminology","externalinks","eighty","six","faq","etymology","slang_term","category","slang","category_restauranterminology"],"clean_bigrams":[["verb","eighty"],["eighty","six"],["six","eighty"],["american","words"],["widely","used"],["united","kingdom"],["kingdom","american"],["american","english"],["english","slang"],["getting","rid"],["service","meaning"],["meaning","according"],["merriam","webster"],["webster","dictionary"],["slang","term"],["american","popular"],["popular","culture"],["mean","throw"],["get","rid"],["food","service"],["service","industry"],["longer","available"],["merriam","webster"],["webster","dictionary"],["dictionary","suggests"],["associated","withe"],["withe","word"],["general","prohibition"],["prohibition","several"],["several","possible"],["possible","origins"],["united","states"],["states","navy"],["one","possible"],["possible","origin"],["united","states"],["states","navy"],["navy","us"],["us","navy"],["allowance","type"],["system","used"],["military","logistics"],["allowance","type"],["type","code"],["stock","throughouthe"],["throughouthe","life"],["life","cycle"],["many","pieces"],["requiring","onboard"],["onboard","spare"],["spare","parts"],["parts","designated"],["disposal","following"],["following","world"],["world","war"],["war","ii"],["great","number"],["decommissioned","sold"],["reserve","commonly"],["commonly","referred"],["process","labor"],["labor","workers"],["workers","would"],["would","bring"],["spare","parts"],["supply","clerk"],["clerk","would"],["would","tell"],["code","anything"],["sounds","like"],["like","file"],["bedford","st"],["jehjpg","thumb"],["thumb","right"],["right","px"],["px","looking"],["looking","north"],["bedford","st"],["st","west"],["west","village"],["village","bedford"],["bedford","street"],["street","author"],["thathe","bar"],["bar","chumley"],["bedford","street"],["west","village"],["lower","manhattan"],["source","klein"],["best","bars"],["new","york"],["york","claims"],["claims","thathe"],["thathe","police"],["police","would"],["would","call"],["call","chumley"],["united","states"],["states","prohibition"],["customers","meaning"],["meaning","thathey"],["exit","outhe"],["outhe","bedford"],["bedford","street"],["street","door"],["police","would"],["would","come"],["court","entrance"],["entrance","restaurant"],["restaurant","slang"],["slang","another"],["another","notion"],["origin","claims"],["code","supposedly"],["supposedly","used"],["restaurants","among"],["among","restaurant"],["restaurant","workers"],["published","examples"],["newspaper","column"],["whiche","presented"],["soda","fountain"],["fountain","lingo"],["lingo","documented"],["documented","use"],["use","according"],["oxford","english"],["english","dictionary"],["movie","star"],["eighty","six"],["six","eighty"],["eighty","six"],["popular","uses"],["blue","plate"],["louis","jordan"],["jordan","one"],["one","line"],["cherry","pies"],["many","examples"],["main","character"],["play","visito"],["small","planet"],["planet","new"],["new","york"],["york","times"],["times","theatre"],["theatre","visito"],["small","planet"],["february","page"],["page","uses"],["command","numerous"],["numerous","times"],["destroy","things"],["television","series"],["series","get"],["get","smart"],["smart","agent"],["agent","maxwell"],["maxwell","smart"],["code","named"],["massachusetts","bay"],["bay","colony"],["colony","david"],["david","b"],["novel","eighty"],["contrasting","life"],["life","inew"],["inew","york"],["major","health"],["health","crisis"],["city","filmmaker"],["filmmaker","dave"],["documentary","abouthe"],["abouthe","final"],["final","tour"],["infamous","hardcore"],["hardcore","punk"],["punk","band"],["band","black"],["black","flag"],["flag","band"],["band","black"],["black","flag"],["flag","entitled"],["entitled","reality"],["final","tour"],["gets","fired"],["alcoholism","cars"],["cars","main"],["got","rid"],["see","also"],["also","list"],["restauranterminology","externalinks"],["externalinks","eighty"],["eighty","six"],["slang","term"],["term","category"],["category","slang"],["slang","category"],["category","restauranterminology"]],"all_collocations":["verb eighty","eighty six","six eighty","american words","widely used","united kingdom","kingdom american","american english","english slang","getting rid","service meaning","meaning according","merriam webster","webster dictionary","slang term","american popular","popular culture","mean throw","get rid","food service","service industry","longer available","merriam webster","webster dictionary","dictionary suggests","associated withe","withe word","general prohibition","prohibition several","several possible","possible origins","united states","states navy","one possible","possible origin","united states","states navy","navy us","us navy","allowance type","system used","military logistics","allowance type","type code","stock throughouthe","throughouthe life","life cycle","many pieces","requiring onboard","onboard spare","spare parts","parts designated","disposal following","following world","world war","war ii","great number","decommissioned sold","reserve commonly","commonly referred","process labor","labor workers","workers would","would bring","spare parts","supply clerk","clerk would","would tell","code anything","sounds like","like file","bedford st","jehjpg thumb","px looking","looking north","bedford st","st west","west village","village bedford","bedford street","street author","thathe bar","bar chumley","bedford street","west village","lower manhattan","source klein","best bars","new york","york claims","claims thathe","thathe police","police would","would call","call chumley","united states","states prohibition","customers meaning","meaning thathey","exit outhe","outhe bedford","bedford street","street door","police would","would come","court entrance","entrance restaurant","restaurant slang","slang another","another notion","origin claims","code supposedly","supposedly used","restaurants among","among restaurant","restaurant workers","published examples","newspaper column","whiche presented","soda fountain","fountain lingo","lingo documented","documented use","use according","oxford english","english dictionary","movie star","eighty six","six eighty","eighty six","popular uses","blue plate","louis jordan","jordan one","one line","cherry pies","many examples","main character","play visito","small planet","planet new","new york","york times","times theatre","theatre visito","small planet","february page","page uses","command numerous","numerous times","destroy things","television series","series get","get smart","smart agent","agent maxwell","maxwell smart","code named","massachusetts bay","bay colony","colony david","david b","novel eighty","contrasting life","life inew","inew york","major health","health crisis","city filmmaker","filmmaker dave","documentary abouthe","abouthe final","final tour","infamous hardcore","hardcore punk","punk band","band black","black flag","flag band","band black","black flag","flag entitled","entitled reality","final tour","gets fired","alcoholism cars","cars main","got rid","see also","also list","restauranterminology externalinks","externalinks eighty","eighty six","slang term","term category","category slang","slang category","category restauranterminology"],"new_description":"used verb eighty six eighty list american words widely_used united_kingdom american_english slang getting rid something someone service meaning according merriam_webster dictionary slang_term used american popular_culture mean throw get rid particularly food_service_industry term describe item longer available menu customer merriam_webster dictionary suggests associated_withe word general prohibition several possible origins term suggested dated united_states navy one possible origin united_states navy us_navy allowance type system used military logistics purposes allowance type code single identifies reason carried stock throughouthe life cycle many pieces equipment upgraded requiring onboard spare parts disposed code parts designated disposal following world_war ii great number decommissioned sold placed reserve commonly_referred process labor workers would bring spare parts supply clerk would tell code anything disposed referred sounds like file bedford st jehjpg thumb right px looking north chumley bedford st west village bedford street author klein thathe bar chumley bedford street west village lower manhattan source klein book history stories best bars new_york claims thathe police would call chumley bar prohibition united_states_prohibition making raid tell bartender customers meaning thathey exit outhe bedford street door police would come court entrance restaurant slang another notion term origin claims came code supposedly used restaurants among restaurant workers meant walter published examples slang newspaper column whiche presented part glossary soda_fountain lingo documented use according oxford_english_dictionary first use sense dates book john movie star famous acting infamous drinking bar building known eighty six eighty six western means serve popular uses term song blue_plate louis jordan one line cherry pies one many examples short lingo main character play visito small planet new_york times theatre visito small planet notion cast february page uses command numerous times destroy things television_series get smart agent maxwell smart code named used term gravity finally massachusetts bay colony david b published novel eighty contrasting life inew_york hiv life aids become major health crisis city filmmaker dave made documentary abouthe final tour infamous hardcore punk band black flag band black flag entitled reality movie filmed band final tour released dan novel man gets fired battles alcoholism cars main number means cars got rid see_also list restauranterminology externalinks eighty six faq etymology slang_term category slang category_restauranterminology"},{"title":"A Handbook for Travellers in Spain","description":"a handbook for travellers in spain is an work of traveliterature by english writerichard ford writerichard ford it has been described as a defining moment in the genre british tourists were travelling through europe increasing numbers and the need for guidebooks was beginning to be supplied by publishers like john murray publisher john murray in ford who had gained tremendous knowledge of spain by extensive travel on horseback wrote this account enlivened by humour and anecdotes in ford s obituary commonly attributed to sir william stirling maxwell so great a literary achievement had never before been performed under so humble a title ford s obituary the times ford marked with george borrow theccentric english traveller an interest in spain that would continue through the twentieth century on the part of british writers gerald brenanorman lewis author norman lewis and george orwell were among the most eminent of these successors with jason webster author jason webster the author of duende andalus and guerrand christewart author christewarthe author of driving over lemons being contemporary as of the book wastill being reprinted in richard ford also wrote andalucia rondand granada murcia valenciand catalonia the portions best suited for the invalid see also murray s handbooks for travellerseries furthereading index pt essentially covers the south andalucia rondand granada murcia valenciand catalonia pt essentially covers the north estremadura leon gallicia the asturias the castiles old and new the basque provinces arragon and navarre pt index v through p v index category travel guide books category travel books category books about spain category tourism in spain category books category john murray publisher books","main_words":["handbook","travellers","spain","work","traveliterature","english","ford","ford","described","defining","moment","genre","british","tourists","travelling","europe","need","guidebooks","beginning","supplied","publishers","like","john_murray","publisher","john_murray","ford","gained","tremendous","knowledge","spain","extensive","travel","horseback","wrote","account","humour","anecdotes","ford","obituary","commonly","attributed","sir","william","stirling","maxwell","great","literary","achievement","never","performed","humble","title","ford","obituary","times","ford","marked","george","english","traveller","interest","spain","would","continue","twentieth_century","part","british","writers","gerald","lewis","author","norman","lewis","george","orwell","among","eminent","jason","webster","author","jason","webster","author","author","author","driving","contemporary","book","wastill","reprinted","richard","ford","also","wrote","granada","catalonia","portions","best","suited","see_also","murray","handbooks","furthereading","index","essentially","covers","south","granada","catalonia","essentially","covers","north","leon","old","new","basque","provinces","index_v","p","v","index","category_travel_guide_books","category_travel_books","category_books","spain","category_tourism","spain","category_books","category","john_murray","publisher","books"],"clean_bigrams":[["defining","moment"],["genre","british"],["british","tourists"],["europe","increasing"],["increasing","numbers"],["publishers","like"],["like","john"],["john","murray"],["murray","publisher"],["publisher","john"],["john","murray"],["gained","tremendous"],["tremendous","knowledge"],["extensive","travel"],["horseback","wrote"],["obituary","commonly"],["commonly","attributed"],["sir","william"],["william","stirling"],["stirling","maxwell"],["literary","achievement"],["title","ford"],["times","ford"],["ford","marked"],["english","traveller"],["would","continue"],["twentieth","century"],["british","writers"],["writers","gerald"],["lewis","author"],["author","norman"],["norman","lewis"],["george","orwell"],["jason","webster"],["webster","author"],["author","jason"],["jason","webster"],["webster","author"],["book","wastill"],["richard","ford"],["ford","also"],["also","wrote"],["portions","best"],["best","suited"],["see","also"],["also","murray"],["furthereading","index"],["essentially","covers"],["essentially","covers"],["basque","provinces"],["index","v"],["p","v"],["v","index"],["index","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","travel"],["travel","books"],["books","category"],["category","books"],["spain","category"],["category","tourism"],["spain","category"],["category","books"],["books","category"],["category","john"],["john","murray"],["murray","publisher"],["publisher","books"]],"all_collocations":["defining moment","genre british","british tourists","europe increasing","increasing numbers","publishers like","like john","john murray","murray publisher","publisher john","john murray","gained tremendous","tremendous knowledge","extensive travel","horseback wrote","obituary commonly","commonly attributed","sir william","william stirling","stirling maxwell","literary achievement","title ford","times ford","ford marked","english traveller","would continue","twentieth century","british writers","writers gerald","lewis author","author norman","norman lewis","george orwell","jason webster","webster author","author jason","jason webster","webster author","book wastill","richard ford","ford also","also wrote","portions best","best suited","see also","also murray","furthereading index","essentially covers","essentially covers","basque provinces","index v","p v","v index","index category","category travel","travel guide","guide books","books category","category travel","travel books","books category","category books","spain category","category tourism","spain category","category books","books category","category john","john murray","murray publisher","publisher books"],"new_description":"handbook travellers spain work traveliterature english ford ford described defining moment genre british tourists travelling europe increasing_numbers need guidebooks beginning supplied publishers like john_murray publisher john_murray ford gained tremendous knowledge spain extensive travel horseback wrote account humour anecdotes ford obituary commonly attributed sir william stirling maxwell great literary achievement never performed humble title ford obituary times ford marked george english traveller interest spain would continue twentieth_century part british writers gerald lewis author norman lewis george orwell among eminent jason webster author jason webster author author author driving contemporary book wastill reprinted richard ford also wrote granada catalonia portions best suited see_also murray handbooks furthereading index essentially covers south granada catalonia essentially covers north leon old new basque provinces index_v p v index category_travel_guide_books category_travel_books category_books spain category_tourism spain category_books category john_murray publisher books"},{"title":"A Journey to Arzrum","description":"notoc a journey to arzrum full title a journey to arzrum during the campaign of is a work of traveliterature by alexander pushkin it was originally written by pushkin partially published in reworked in and then fully published in pushkin s journal sovremennik in the work recounts the poet s travels to the caucasus armeniand arzrumodern erzurum in eastern turkey athe time of the russo turkish war the tsarist authorities never allowed pushkin to travel abroad and he had only been permitted to travel as far as tiflis tbilisi capital of georgia country georgiand caucasus viceroyalty russian transcaucasia his unauthorized journey across the border into turkey infuriated tsar nicholas i of russia nicholas i who threatened to confine pushkin to his estate once again pushkin s text challenged though did not entirely rejecthe orientalism orientalist romanticism of his earlier the prisoner of the caucasus poem prisoner of the caucasus as a result it was not popularly received by contemporary readers who expected a romantic epic poem abouthe caucasus a journey to arzrum was later adapted into a film during the soviet union soviet era produced by lenfilm and released on the th anniversary of pushkin s passing in it was directed by moisei levin and starredmitri zhuravlyov as pushkin puteshestvie v arzrum athe imdb internet movie databasenglish translations birgitta ingemanson ronald wilks inicholas pasternak slater in richard pevear and larissa volokhonsky in see also armenian oblast russian conquest of the caucasus externalinks the text of s ru a journey to arzrum at russian wikisource category works by aleksandr pushkin category books about armenia category books abouturkey category travel writing","main_words":["notoc","journey","arzrum","full","title","journey","arzrum","campaign","work","traveliterature","alexander","pushkin","originally","written","pushkin","partially","published","fully","published","pushkin","journal","work","poet","travels","caucasus","eastern","turkey","athe_time","turkish","war","authorities","never","allowed","pushkin","travel","abroad","permitted","travel","far","capital","georgia","country","georgiand","caucasus","russian","journey","across","border","turkey","nicholas","russia","nicholas","threatened","pushkin","estate","pushkin","text","challenged","though","entirely","romanticism","earlier","prisoner","caucasus","poem","prisoner","caucasus","result","popularly","received","contemporary","readers","expected","romantic","epic","poem","abouthe","caucasus","journey","arzrum","later","adapted","film","soviet_union","soviet","era","produced","released","th_anniversary","pushkin","passing","directed","pushkin","v","arzrum","athe","internet","movie","translations","ronald","richard","see_also","oblast","russian","conquest","caucasus","externalinks","text","journey","arzrum","russian","category_works","pushkin","category_books","armenia","category_books","category_travel","writing"],"clean_bigrams":[["arzrum","full"],["full","title"],["alexander","pushkin"],["originally","written"],["pushkin","partially"],["partially","published"],["fully","published"],["eastern","turkey"],["turkey","athe"],["athe","time"],["turkish","war"],["authorities","never"],["never","allowed"],["allowed","pushkin"],["travel","abroad"],["georgia","country"],["country","georgiand"],["georgiand","caucasus"],["journey","across"],["russia","nicholas"],["text","challenged"],["challenged","though"],["caucasus","poem"],["poem","prisoner"],["popularly","received"],["contemporary","readers"],["romantic","epic"],["epic","poem"],["poem","abouthe"],["abouthe","caucasus"],["later","adapted"],["soviet","union"],["union","soviet"],["soviet","era"],["era","produced"],["th","anniversary"],["v","arzrum"],["arzrum","athe"],["internet","movie"],["see","also"],["oblast","russian"],["russian","conquest"],["caucasus","externalinks"],["category","works"],["pushkin","category"],["category","books"],["armenia","category"],["category","books"],["category","travel"],["travel","writing"]],"all_collocations":["arzrum full","full title","alexander pushkin","originally written","pushkin partially","partially published","fully published","eastern turkey","turkey athe","athe time","turkish war","authorities never","never allowed","allowed pushkin","travel abroad","georgia country","country georgiand","georgiand caucasus","journey across","russia nicholas","text challenged","challenged though","caucasus poem","poem prisoner","popularly received","contemporary readers","romantic epic","epic poem","poem abouthe","abouthe caucasus","later adapted","soviet union","union soviet","soviet era","era produced","th anniversary","v arzrum","arzrum athe","internet movie","see also","oblast russian","russian conquest","caucasus externalinks","category works","pushkin category","category books","armenia category","category books","category travel","travel writing"],"new_description":"notoc journey arzrum full title journey arzrum campaign work traveliterature alexander pushkin originally written pushkin partially published fully published pushkin journal work poet travels caucasus eastern turkey athe_time turkish war authorities never allowed pushkin travel abroad permitted travel far capital georgia country georgiand caucasus russian journey across border turkey nicholas russia nicholas threatened pushkin estate pushkin text challenged though entirely romanticism earlier prisoner caucasus poem prisoner caucasus result popularly received contemporary readers expected romantic epic poem abouthe caucasus journey arzrum later adapted film soviet_union soviet era produced released th_anniversary pushkin passing directed pushkin v arzrum athe internet movie translations ronald richard see_also oblast russian conquest caucasus externalinks text journey arzrum russian category_works pushkin category_books armenia category_books category_travel writing"},{"title":"\u00c0 la carte","description":"file steak la cartejpg thumb px upright steak la carte la carte is an english language loanword loan phrase meaning according to the menu oxford english dictionary it was adopted from french in thearly th century and refers to food that can be ordered aseparate items rather than part of a set meal the phrase is used in reference to a menu of items priced and ordered separately which is the usual operation of restaurants that is in contrasto a table d h te in which a menu has limited or no choice of items and iserved at a fixed price it may also be used torder an item from the menu on its own a steak without potatoes and other vegetables isteak la carte thearliest examples of la carte in writing are from for the adjectival use la carte meal for example and from for the adverbial use meals were served la carte these pre date the use of the word menu which came into english in the srichard bailey eating words michigan today may menu the american heritage dictionary of thenglish language th edition houghton mifflin other uses more broadly the term is not exclusive to food today it can be used in reference to thingsuch as television to watch television la carte refers to paying for a provider where the viewer can choose from an option of programs to watch eg netflix or hulu instead of watching from set programsee alsomakase table d h te the opposite of la carte buffet list ofrench words and phrases used by english speakers pro rata method of billing or other calculation based on proportional usage references furthereading committee onutrition standards for foods in schools food and nutrition board institute of medicine nutrition standards for foods in schools national academies press page mosimann anton cuisine la carte macmillan publishers limited pages externalinks la carte pricing strategy category french words and phrases category restaurant menus category restauranterminology","main_words":["file","steak","la","thumb","px","upright","steak","la_carte","la_carte","english_language","loanword","loan","phrase","meaning","according","menu","oxford_english_dictionary","adopted","french","thearly_th","century","refers","food","ordered","aseparate","items","rather","part","set","meal","phrase","used","reference","menu_items","priced","ordered","separately","usual","operation","restaurants","contrasto","table","h","menu","limited","choice","items","iserved","fixed","price","may_also","used","torder","item","menu","steak","without","potatoes","vegetables","la_carte","thearliest","examples","la_carte","writing","adjectival","use","la_carte","meal","example","use","meals","served","la_carte","pre","date","use","word","menu","came","english","bailey","eating","words","michigan","today","may","menu","american","heritage","dictionary","thenglish_language","th_edition","houghton","mifflin","uses","broadly","term","exclusive","food","today","used","reference","television","watch","television","la_carte","refers","paying","provider","viewer","choose","option","programs","watch","instead","watching","set","table","h","opposite","la_carte","buffet","list","ofrench","words","phrases","used","english","speakers","pro","method","billing","based","usage","references_furthereading","committee","standards","foods","schools","food","nutrition","board","institute","medicine","nutrition","standards","foods","schools","national","anton","cuisine","la_carte","macmillan","publishers","limited","pages","externalinks","la_carte","pricing","strategy","category_french","words","phrases","category_restaurant_menus","category_restauranterminology"],"clean_bigrams":[["file","steak"],["steak","la"],["thumb","px"],["px","upright"],["upright","steak"],["steak","la"],["la","carte"],["carte","la"],["la","carte"],["english","language"],["language","loanword"],["loanword","loan"],["loan","phrase"],["phrase","meaning"],["meaning","according"],["menu","oxford"],["oxford","english"],["english","dictionary"],["thearly","th"],["th","century"],["ordered","aseparate"],["aseparate","items"],["items","rather"],["set","meal"],["items","priced"],["ordered","separately"],["usual","operation"],["fixed","price"],["may","also"],["used","torder"],["steak","without"],["without","potatoes"],["la","carte"],["carte","thearliest"],["thearliest","examples"],["la","carte"],["adjectival","use"],["use","la"],["la","carte"],["carte","meal"],["use","meals"],["served","la"],["la","carte"],["pre","date"],["word","menu"],["bailey","eating"],["eating","words"],["words","michigan"],["michigan","today"],["today","may"],["may","menu"],["american","heritage"],["heritage","dictionary"],["thenglish","language"],["language","th"],["th","edition"],["edition","houghton"],["houghton","mifflin"],["food","today"],["watch","television"],["television","la"],["la","carte"],["carte","refers"],["la","carte"],["carte","buffet"],["buffet","list"],["list","ofrench"],["ofrench","words"],["phrases","used"],["english","speakers"],["speakers","pro"],["usage","references"],["references","furthereading"],["furthereading","committee"],["schools","food"],["nutrition","board"],["board","institute"],["medicine","nutrition"],["nutrition","standards"],["schools","national"],["press","page"],["anton","cuisine"],["cuisine","la"],["la","carte"],["carte","macmillan"],["macmillan","publishers"],["publishers","limited"],["limited","pages"],["pages","externalinks"],["externalinks","la"],["la","carte"],["carte","pricing"],["pricing","strategy"],["strategy","category"],["category","french"],["french","words"],["phrases","category"],["category","restaurant"],["restaurant","menus"],["menus","category"],["category","restauranterminology"]],"all_collocations":["file steak","steak la","px upright","upright steak","steak la","la carte","carte la","la carte","english language","language loanword","loanword loan","loan phrase","phrase meaning","meaning according","menu oxford","oxford english","english dictionary","thearly th","th century","ordered aseparate","aseparate items","items rather","set meal","items priced","ordered separately","usual operation","fixed price","may also","used torder","steak without","without potatoes","la carte","carte thearliest","thearliest examples","la carte","adjectival use","use la","la carte","carte meal","use meals","served la","la carte","pre date","word menu","bailey eating","eating words","words michigan","michigan today","today may","may menu","american heritage","heritage dictionary","thenglish language","language th","th edition","edition houghton","houghton mifflin","food today","watch television","television la","la carte","carte refers","la carte","carte buffet","buffet list","list ofrench","ofrench words","phrases used","english speakers","speakers pro","usage references","references furthereading","furthereading committee","schools food","nutrition board","board institute","medicine nutrition","nutrition standards","schools national","press page","anton cuisine","cuisine la","la carte","carte macmillan","macmillan publishers","publishers limited","limited pages","pages externalinks","externalinks la","la carte","carte pricing","pricing strategy","strategy category","category french","french words","phrases category","category restaurant","restaurant menus","menus category","category restauranterminology"],"new_description":"file steak la thumb px upright steak la_carte la_carte english_language loanword loan phrase meaning according menu oxford_english_dictionary adopted french thearly_th century refers food ordered aseparate items rather part set meal phrase used reference menu_items priced ordered separately usual operation restaurants contrasto table h menu limited choice items iserved fixed price may_also used torder item menu steak without potatoes vegetables la_carte thearliest examples la_carte writing adjectival use la_carte meal example use meals served la_carte pre date use word menu came english bailey eating words michigan today may menu american heritage dictionary thenglish_language th_edition houghton mifflin uses broadly term exclusive food today used reference television watch television la_carte refers paying provider viewer choose option programs watch instead watching set table h opposite la_carte buffet list ofrench words phrases used english speakers pro method billing based usage references_furthereading committee standards foods schools food nutrition board institute medicine nutrition standards foods schools national press_page anton cuisine la_carte macmillan publishers limited pages externalinks la_carte pricing strategy category_french words phrases category_restaurant_menus category_restauranterminology"},{"title":"Accessible tourism","description":"image stamps of germany ddr minr jpg thumb px an east german stamp showing disabled persons in a museum image nehantic trail rhododentron sanctuary trail entrance signjpg thumb px nehantic trail rhododendron sanctuary trail entrance and wheelchair accessible sign accessible tourism is the ongoing endeavour to ensure tourist destinations products and services are accessible to all people regardless of their physicalimitations disabilities or age it encompasses publicly and privately owned tourist locations the term has been defined by darcy andickson p as accessible tourism enables people with access requirements including mobility vision hearing and cognitive dimensions of access to function independently and with equity andignity through the delivery of universally designed tourism productservices and environments this definition is inclusive of all people including those travelling with children in prams people with disabilities and seniors darcy s dickson t a whole of life approach tourism the case for accessible tourism experiences journal of hospitality and tourismanagement overview modern society is increasingly aware of the concept of integration of people with disabilities issuesuch as accessibility design for all design philosophy design for all and universal designpreiser w f e ostroff e universal design handbook new york mcgraw hill are featured in the international symposia of bodiesuch as theuropean commission europeand international associations atheuropean commission s enterprise and industry tourism web page steps have been taken to promote guidelines and best practice s and majoresources are now dedicated to this field a greater understanding of the accessible tourismarket has been promoted through research commissioned by theuropean commission where a stakeholder analysis has provided an insight into the complexities of accessible tourismbuhalis d michopoulou eichhorn v miller g accessibility market and stakeholder analysis one stop shop for accessible tourism in europe ossate surrey united kingdom university of surrey retrieved similarly the australian sustainable tourism cooperative research centre funded an accessible tourism research agendadarcy setting a research agenda for accessible tourism stcrc technical report series gold coast australiavailable from that soughtoutline a research base on which to develop the supply demand coordination regulation information required to develop the market segmenthe research agenda has now seen three other funded projects contribute towards a research base on which the tourism industry and government marketing authorities can make more informedecisionsdarcy s cameron b pegg s packer technical report developing business cases for accessible tourism stcrc technical report available from s cameron b dwyer l taylor t wong e thomson a technical report visitor accessibility in urban centrespp available from atpacker t small j darcy s technical reportourist experiences of individuals with vision impairment stcrc technical report available from as of there were more than million persons with disabilities in europe and more than million around the world when expanded to include all beneficiaries of accessible tourism as defined above the number grows to some million people affected in europe alone in addition to the social benefits the market represents an opportunity for new investment and new service requirements rarely provided by key players in the tourism sector according to enatheuropeanetwork for accessible tourism accessible tourism includes barrier free destinations infrastructure and facilities transport by air land sea suitable for all users high quality services delivered by trained staff activities exhibits attractions allowing participation in tourism by everyone marketing booking systems web siteservices information accessible to all specific needs and requirementspecific problems found by travellers or tourists with disabilities include inaccessible or only partly accessible web sites lack of accessible airportransfer lack of wheelchair accessible vehicles lack of well adapted hotel rooms lack of professional staff capable of dealing with accessibility issues lack of reliable information about a specific attraction s level of accessibility lack of accessible restaurants bars and other facilities lack of adapted toilets in restaurants and public places inaccessible streets and sidewalks lack of technical aids andisability equipment such as wheelchairs bath chairs and toilet raisers filextended picnic table campgroundjpg a campground picnic table made accessible to wheelchairs and walkers with its extended top file brookings oregon accessible coast ramp boardwalkjpg an accessible boardwalk ramp with landings for stopping to enjoy a panorama view harris beach state park brookings oregon file accessible beach ramp nzjpg kapitisland coast accessible beach wheelchairampaekakariki wellingtonew zealand file pinery prov park accessible yurtjpg an accessible yurt shelter in pinery provincial park ontario canada file accessible shower stalljpg an accessible shower stall at a state park in virginia file morgans wonderland texas ultraccessiblejpg morgan s wonderland is an accessible family amusement park in santonio texas designed similar to a sensory garden with interactive games file snowheelchairjpg a wheelchair with adaptive tires for travelling acrossnow at a ski hill suchairs can be loaned orented to users brief history europe and the united states of americare home to the majority of thexisting companies in this niche however companies worldwide are starting to appear as the result of a growing need largely driven by senior tourism due to increasing lifexpectancy in developed countries the united states requires ada compliant ramp access to virtually all businesses and public places portugal spain the united kingdom germany france and other northern european countries are increasingly prepared to receive tourists in wheelchairs and to provide disability equipment and wheelchair accessible transport withe growth of the internet online travel planning is also becoming more common leading to the rise of online accessibility mapstarting in lonely planet started offering online resources by country references externalinks accessible tourism athe open directory project category accessibility category accessible transportation category types of tourism","main_words":["image","germany","jpg","thumb","px","east","german","stamp","showing","disabled","persons","museum","image","trail","sanctuary","trail","entrance","signjpg","thumb","px","trail","sanctuary","trail","entrance","wheelchair","accessible","sign","accessible_tourism","ongoing","ensure","tourist_destinations","products","services","accessible","people","regardless","disabilities","age","encompasses","publicly","privately_owned","tourist","locations","term","defined","p","accessible_tourism","enables","people","access","requirements","including","mobility","vision","hearing","cognitive","dimensions","access","function","independently","equity","delivery","universally","designed","tourism","productservices","environments","definition","inclusive","people","including","travelling","children","people","disabilities","seniors","dickson","whole","life","approach","tourism","case","accessible_tourism","experiences","journal","hospitality_tourismanagement","overview","modern","society","increasingly","aware","concept","integration","people","disabilities","issuesuch","accessibility","design","design","philosophy","design","universal","w","f","e","e","universal","design","handbook","new_york","hill","featured","international","theuropean_commission","europeand","international_associations","commission","enterprise","industry","tourism","web_page","steps","taken","promote","guidelines","best","practice","dedicated","field","greater","understanding","promoted","research","commissioned","theuropean_commission","stakeholder","analysis","provided","insight","accessible","v","miller","g","accessibility","market","stakeholder","analysis","one","stop","shop","accessible_tourism","europe","surrey","united_kingdom","university","surrey","retrieved","similarly","australian","sustainable_tourism","cooperative","research","centre","funded","accessible_tourism","research","setting","research","agenda","accessible_tourism","stcrc","technical","report","series","gold_coast","research","base","develop","supply","demand","coordination","regulation","information","required","develop","market","research","agenda","seen","three","funded","projects","contribute","towards","research","base","tourism_industry","government","marketing","authorities","make","cameron","b","technical","report","developing","business","cases","accessible_tourism","stcrc","technical","report","available","cameron","b","l","taylor","wong","e","thomson","technical","report","visitor","accessibility","urban","available","small","j","technical","experiences","individuals","vision","stcrc","technical","report","available","million","persons","disabilities","europe","million","around","world","expanded","include","beneficiaries","accessible_tourism","defined","number","grows","million_people","affected","europe","alone","addition","social","benefits","market","represents","opportunity","new","investment","new","service","requirements","rarely","provided","key","players","tourism_sector","according","accessible_tourism","accessible_tourism","includes","barrier","free","destinations","infrastructure","facilities","transport","air","land","sea","suitable","users","delivered","trained","staff","activities","exhibits","attractions","allowing","participation","tourism","everyone","marketing","booking","systems","web","information","accessible","specific","needs","problems","found","travellers","tourists","disabilities","include","partly","accessible","web_sites","lack","accessible","lack","wheelchair","accessible","vehicles","lack","well","adapted","hotel_rooms","lack","professional","staff","capable","dealing","accessibility","issues","lack","reliable","information","specific","attraction","level","accessibility","lack","accessible","restaurants","bars","facilities","lack","adapted","toilets","restaurants","public","places","streets","lack","technical","aids","equipment","bath","chairs","toilet","picnic","table","campground","picnic","table","made","accessible","walkers","extended","top","file","brookings","oregon","accessible","coast","ramp","accessible","boardwalk","ramp","landings","stopping","enjoy","panorama","view","harris","beach","state_park","brookings","oregon","file","accessible","beach","ramp","coast","accessible","beach","zealand","file","park","accessible","accessible","yurt","shelter","provincial_park","ontario_canada","file","accessible","shower","accessible","shower","stall","state_park","virginia","file","wonderland","texas","morgan","wonderland","accessible","family","amusement_park","santonio_texas","designed","similar","sensory","garden","interactive","games","file","wheelchair","adaptive","tires","travelling","ski","hill","loaned","users","brief","history","europe","united_states","home","majority","thexisting","companies","niche","however","companies","worldwide","starting","appear","result","growing","need","largely","driven","senior","tourism","due","increasing","developed_countries","united_states","requires","ada","ramp","access","virtually","businesses","public","places","portugal","spain","united_kingdom","germany","france","northern","european_countries","increasingly","prepared","receive","tourists","provide","disability","equipment","wheelchair","accessible","transport","withe","growth","internet","online_travel","planning","also","becoming","common","leading","rise","online","accessibility","lonely_planet","started","offering","online","resources","country","references_externalinks","accessible_tourism","athe","open","directory","project","category","accessibility","category","accessible","transportation","category_types","tourism"],"clean_bigrams":[["jpg","thumb"],["thumb","px"],["east","german"],["german","stamp"],["stamp","showing"],["showing","disabled"],["disabled","persons"],["museum","image"],["sanctuary","trail"],["trail","entrance"],["entrance","signjpg"],["signjpg","thumb"],["thumb","px"],["sanctuary","trail"],["trail","entrance"],["wheelchair","accessible"],["accessible","sign"],["sign","accessible"],["accessible","tourism"],["ensure","tourist"],["tourist","destinations"],["destinations","products"],["people","regardless"],["encompasses","publicly"],["privately","owned"],["owned","tourist"],["tourist","locations"],["accessible","tourism"],["tourism","enables"],["enables","people"],["access","requirements"],["requirements","including"],["including","mobility"],["mobility","vision"],["vision","hearing"],["cognitive","dimensions"],["function","independently"],["universally","designed"],["designed","tourism"],["tourism","productservices"],["people","including"],["life","approach"],["approach","tourism"],["accessible","tourism"],["tourism","experiences"],["experiences","journal"],["tourismanagement","overview"],["overview","modern"],["modern","society"],["increasingly","aware"],["disabilities","issuesuch"],["accessibility","design"],["design","philosophy"],["philosophy","design"],["w","f"],["f","e"],["e","universal"],["universal","design"],["design","handbook"],["handbook","new"],["new","york"],["theuropean","commission"],["commission","europeand"],["europeand","international"],["international","associations"],["industry","tourism"],["tourism","web"],["web","page"],["page","steps"],["promote","guidelines"],["best","practice"],["greater","understanding"],["accessible","tourismarket"],["research","commissioned"],["theuropean","commission"],["stakeholder","analysis"],["v","miller"],["miller","g"],["g","accessibility"],["accessibility","market"],["stakeholder","analysis"],["analysis","one"],["one","stop"],["stop","shop"],["accessible","tourism"],["surrey","united"],["united","kingdom"],["kingdom","university"],["surrey","retrieved"],["retrieved","similarly"],["australian","sustainable"],["sustainable","tourism"],["tourism","cooperative"],["cooperative","research"],["research","centre"],["centre","funded"],["accessible","tourism"],["tourism","research"],["research","agenda"],["accessible","tourism"],["tourism","stcrc"],["stcrc","technical"],["technical","report"],["report","series"],["series","gold"],["gold","coast"],["research","base"],["supply","demand"],["demand","coordination"],["coordination","regulation"],["regulation","information"],["information","required"],["research","agenda"],["seen","three"],["funded","projects"],["projects","contribute"],["contribute","towards"],["research","base"],["tourism","industry"],["government","marketing"],["marketing","authorities"],["cameron","b"],["technical","report"],["report","developing"],["developing","business"],["business","cases"],["accessible","tourism"],["tourism","stcrc"],["stcrc","technical"],["technical","report"],["report","available"],["cameron","b"],["l","taylor"],["wong","e"],["e","thomson"],["technical","report"],["report","visitor"],["visitor","accessibility"],["small","j"],["stcrc","technical"],["technical","report"],["report","available"],["million","persons"],["million","around"],["accessible","tourism"],["number","grows"],["million","people"],["people","affected"],["europe","alone"],["social","benefits"],["market","represents"],["new","investment"],["new","service"],["service","requirements"],["requirements","rarely"],["rarely","provided"],["key","players"],["tourism","sector"],["sector","according"],["accessible","tourism"],["tourism","accessible"],["accessible","tourism"],["tourism","includes"],["includes","barrier"],["barrier","free"],["free","destinations"],["destinations","infrastructure"],["facilities","transport"],["air","land"],["land","sea"],["sea","suitable"],["users","high"],["high","quality"],["quality","services"],["services","delivered"],["trained","staff"],["staff","activities"],["activities","exhibits"],["exhibits","attractions"],["attractions","allowing"],["allowing","participation"],["everyone","marketing"],["marketing","booking"],["booking","systems"],["systems","web"],["information","accessible"],["specific","needs"],["problems","found"],["disabilities","include"],["partly","accessible"],["accessible","web"],["web","sites"],["sites","lack"],["wheelchair","accessible"],["accessible","vehicles"],["vehicles","lack"],["well","adapted"],["adapted","hotel"],["hotel","rooms"],["rooms","lack"],["professional","staff"],["staff","capable"],["accessibility","issues"],["issues","lack"],["reliable","information"],["specific","attraction"],["accessibility","lack"],["accessible","restaurants"],["restaurants","bars"],["facilities","lack"],["adapted","toilets"],["public","places"],["technical","aids"],["bath","chairs"],["picnic","table"],["campground","picnic"],["picnic","table"],["table","made"],["made","accessible"],["extended","top"],["top","file"],["file","brookings"],["brookings","oregon"],["oregon","accessible"],["accessible","coast"],["coast","ramp"],["accessible","boardwalk"],["boardwalk","ramp"],["panorama","view"],["view","harris"],["harris","beach"],["beach","state"],["state","park"],["park","brookings"],["brookings","oregon"],["oregon","file"],["file","accessible"],["accessible","beach"],["beach","ramp"],["coast","accessible"],["accessible","beach"],["zealand","file"],["park","accessible"],["accessible","yurt"],["yurt","shelter"],["provincial","park"],["park","ontario"],["ontario","canada"],["canada","file"],["file","accessible"],["accessible","shower"],["accessible","shower"],["shower","stall"],["state","park"],["virginia","file"],["wonderland","texas"],["accessible","family"],["family","amusement"],["amusement","park"],["santonio","texas"],["texas","designed"],["designed","similar"],["sensory","garden"],["interactive","games"],["games","file"],["adaptive","tires"],["ski","hill"],["users","brief"],["brief","history"],["history","europe"],["united","states"],["thexisting","companies"],["niche","however"],["however","companies"],["companies","worldwide"],["growing","need"],["need","largely"],["largely","driven"],["senior","tourism"],["tourism","due"],["developed","countries"],["united","states"],["states","requires"],["requires","ada"],["ramp","access"],["public","places"],["places","portugal"],["portugal","spain"],["united","kingdom"],["kingdom","germany"],["germany","france"],["northern","european"],["european","countries"],["increasingly","prepared"],["receive","tourists"],["provide","disability"],["disability","equipment"],["wheelchair","accessible"],["accessible","transport"],["transport","withe"],["withe","growth"],["internet","online"],["online","travel"],["travel","planning"],["also","becoming"],["common","leading"],["online","accessibility"],["lonely","planet"],["planet","started"],["started","offering"],["offering","online"],["online","resources"],["country","references"],["references","externalinks"],["externalinks","accessible"],["accessible","tourism"],["tourism","athe"],["athe","open"],["open","directory"],["directory","project"],["project","category"],["category","accessibility"],["accessibility","category"],["category","accessible"],["accessible","transportation"],["transportation","category"],["category","types"]],"all_collocations":["east german","german stamp","stamp showing","showing disabled","disabled persons","museum image","sanctuary trail","trail entrance","entrance signjpg","signjpg thumb","sanctuary trail","trail entrance","wheelchair accessible","accessible sign","sign accessible","accessible tourism","ensure tourist","tourist destinations","destinations products","people regardless","encompasses publicly","privately owned","owned tourist","tourist locations","accessible tourism","tourism enables","enables people","access requirements","requirements including","including mobility","mobility vision","vision hearing","cognitive dimensions","function independently","universally designed","designed tourism","tourism productservices","people including","life approach","approach tourism","accessible tourism","tourism experiences","experiences journal","tourismanagement overview","overview modern","modern society","increasingly aware","disabilities issuesuch","accessibility design","design philosophy","philosophy design","w f","f e","e universal","universal design","design handbook","handbook new","new york","theuropean commission","commission europeand","europeand international","international associations","industry tourism","tourism web","web page","page steps","promote guidelines","best practice","greater understanding","accessible tourismarket","research commissioned","theuropean commission","stakeholder analysis","v miller","miller g","g accessibility","accessibility market","stakeholder analysis","analysis one","one stop","stop shop","accessible tourism","surrey united","united kingdom","kingdom university","surrey retrieved","retrieved similarly","australian sustainable","sustainable tourism","tourism cooperative","cooperative research","research centre","centre funded","accessible tourism","tourism research","research agenda","accessible tourism","tourism stcrc","stcrc technical","technical report","report series","series gold","gold coast","research base","supply demand","demand coordination","coordination regulation","regulation information","information required","research agenda","seen three","funded projects","projects contribute","contribute towards","research base","tourism industry","government marketing","marketing authorities","cameron b","technical report","report developing","developing business","business cases","accessible tourism","tourism stcrc","stcrc technical","technical report","report available","cameron b","l taylor","wong e","e thomson","technical report","report visitor","visitor accessibility","small j","stcrc technical","technical report","report available","million persons","million around","accessible tourism","number grows","million people","people affected","europe alone","social benefits","market represents","new investment","new service","service requirements","requirements rarely","rarely provided","key players","tourism sector","sector according","accessible tourism","tourism accessible","accessible tourism","tourism includes","includes barrier","barrier free","free destinations","destinations infrastructure","facilities transport","air land","land sea","sea suitable","users high","high quality","quality services","services delivered","trained staff","staff activities","activities exhibits","exhibits attractions","attractions allowing","allowing participation","everyone marketing","marketing booking","booking systems","systems web","information accessible","specific needs","problems found","disabilities include","partly accessible","accessible web","web sites","sites lack","wheelchair accessible","accessible vehicles","vehicles lack","well adapted","adapted hotel","hotel rooms","rooms lack","professional staff","staff capable","accessibility issues","issues lack","reliable information","specific attraction","accessibility lack","accessible restaurants","restaurants bars","facilities lack","adapted toilets","public places","technical aids","bath chairs","picnic table","campground picnic","picnic table","table made","made accessible","extended top","top file","file brookings","brookings oregon","oregon accessible","accessible coast","coast ramp","accessible boardwalk","boardwalk ramp","panorama view","view harris","harris beach","beach state","state park","park brookings","brookings oregon","oregon file","file accessible","accessible beach","beach ramp","coast accessible","accessible beach","zealand file","park accessible","accessible yurt","yurt shelter","provincial park","park ontario","ontario canada","canada file","file accessible","accessible shower","accessible shower","shower stall","state park","virginia file","wonderland texas","accessible family","family amusement","amusement park","santonio texas","texas designed","designed similar","sensory garden","interactive games","games file","adaptive tires","ski hill","users brief","brief history","history europe","united states","thexisting companies","niche however","however companies","companies worldwide","growing need","need largely","largely driven","senior tourism","tourism due","developed countries","united states","states requires","requires ada","ramp access","public places","places portugal","portugal spain","united kingdom","kingdom germany","germany france","northern european","european countries","increasingly prepared","receive tourists","provide disability","disability equipment","wheelchair accessible","accessible transport","transport withe","withe growth","internet online","online travel","travel planning","also becoming","common leading","online accessibility","lonely planet","planet started","started offering","offering online","online resources","country references","references externalinks","externalinks accessible","accessible tourism","tourism athe","athe open","open directory","directory project","project category","category accessibility","accessibility category","category accessible","accessible transportation","transportation category","category types"],"new_description":"image germany jpg thumb px east german stamp showing disabled persons museum image trail sanctuary trail entrance signjpg thumb px trail sanctuary trail entrance wheelchair accessible sign accessible_tourism ongoing ensure tourist_destinations products services accessible people regardless disabilities age encompasses publicly privately_owned tourist locations term defined p accessible_tourism enables people access requirements including mobility vision hearing cognitive dimensions access function independently equity delivery universally designed tourism productservices environments definition inclusive people including travelling children people disabilities seniors dickson whole life approach tourism case accessible_tourism experiences journal hospitality_tourismanagement overview modern society increasingly aware concept integration people disabilities issuesuch accessibility design design philosophy design universal w f e e universal design handbook new_york hill featured international theuropean_commission europeand international_associations commission enterprise industry tourism web_page steps taken promote guidelines best practice dedicated field greater understanding accessible_tourismarket promoted research commissioned theuropean_commission stakeholder analysis provided insight accessible v miller g accessibility market stakeholder analysis one stop shop accessible_tourism europe surrey united_kingdom university surrey retrieved similarly australian sustainable_tourism cooperative research centre funded accessible_tourism research setting research agenda accessible_tourism stcrc technical report series gold_coast research base develop supply demand coordination regulation information required develop market research agenda seen three funded projects contribute towards research base tourism_industry government marketing authorities make cameron b technical report developing business cases accessible_tourism stcrc technical report available cameron b l taylor wong e thomson technical report visitor accessibility urban available small j technical experiences individuals vision stcrc technical report available million persons disabilities europe million around world expanded include beneficiaries accessible_tourism defined number grows million_people affected europe alone addition social benefits market represents opportunity new investment new service requirements rarely provided key players tourism_sector according accessible_tourism accessible_tourism includes barrier free destinations infrastructure facilities transport air land sea suitable users high_quality_services delivered trained staff activities exhibits attractions allowing participation tourism everyone marketing booking systems web information accessible specific needs problems found travellers tourists disabilities include partly accessible web_sites lack accessible lack wheelchair accessible vehicles lack well adapted hotel_rooms lack professional staff capable dealing accessibility issues lack reliable information specific attraction level accessibility lack accessible restaurants bars facilities lack adapted toilets restaurants public places streets lack technical aids equipment bath chairs toilet picnic table campground picnic table made accessible walkers extended top file brookings oregon accessible coast ramp accessible boardwalk ramp landings stopping enjoy panorama view harris beach state_park brookings oregon file accessible beach ramp coast accessible beach zealand file park accessible accessible yurt shelter provincial_park ontario_canada file accessible shower accessible shower stall state_park virginia file wonderland texas morgan wonderland accessible family amusement_park santonio_texas designed similar sensory garden interactive games file wheelchair adaptive tires travelling ski hill loaned users brief history europe united_states home majority thexisting companies niche however companies worldwide starting appear result growing need largely driven senior tourism due increasing developed_countries united_states requires ada ramp access virtually businesses public places portugal spain united_kingdom germany france northern european_countries increasingly prepared receive tourists provide disability equipment wheelchair accessible transport withe growth internet online_travel planning also becoming common leading rise online accessibility lonely_planet started offering online resources country references_externalinks accessible_tourism athe open directory project category accessibility category accessible transportation category_types tourism"},{"title":"Advance provisioning allowance","description":"advance provisioning allowance or apa is an advance payment required to be made to fund boarding costs typically amounting to of the charter price used to cover the costs of yacht preparation requested supplies port mooring and other legal charges and fees diesel and fuel communications crew gratuities extras andepends on guest particularequest for services itinerary food beverages etc in case apa is not entirely used athend of the cruise sail the remaining part is returned to the person chartering a yacht in case the spending exceeds the apa guests can be asked to pay the additional part category tourism","main_words":["advance","allowance","apa","advance","payment","required","made","fund","boarding","costs","typically","charter","price","used","cover","costs","yacht","preparation","requested","supplies","port","legal","charges","fees","diesel","fuel","communications","crew","gratuities","guest","services","itinerary","food","beverages","etc","case","apa","entirely","used","athend","cruise","sail","remaining","part","returned","person","yacht","case","spending","exceeds","apa","guests","asked","pay","additional","part","category_tourism"],"clean_bigrams":[["advance","payment"],["payment","required"],["fund","boarding"],["boarding","costs"],["costs","typically"],["charter","price"],["price","used"],["yacht","preparation"],["preparation","requested"],["requested","supplies"],["supplies","port"],["legal","charges"],["fees","diesel"],["fuel","communications"],["communications","crew"],["crew","gratuities"],["services","itinerary"],["itinerary","food"],["food","beverages"],["beverages","etc"],["case","apa"],["entirely","used"],["used","athend"],["cruise","sail"],["remaining","part"],["spending","exceeds"],["apa","guests"],["additional","part"],["part","category"],["category","tourism"]],"all_collocations":["advance payment","payment required","fund boarding","boarding costs","costs typically","charter price","price used","yacht preparation","preparation requested","requested supplies","supplies port","legal charges","fees diesel","fuel communications","communications crew","crew gratuities","services itinerary","itinerary food","food beverages","beverages etc","case apa","entirely used","used athend","cruise sail","remaining part","spending exceeds","apa guests","additional part","part category","category tourism"],"new_description":"advance allowance apa advance payment required made fund boarding costs typically charter price used cover costs yacht preparation requested supplies port legal charges fees diesel fuel communications crew gratuities guest services itinerary food beverages etc case apa entirely used athend cruise sail remaining part returned person yacht case spending exceeds apa guests asked pay additional part category_tourism"},{"title":"Adventure travel","description":"imagexpedition shopjpg thumb right px an outdoor travel and adventure outfitter in ottawa ontario canada image tour to the quebrada de las conchasjpg thumb px rightrekking in quebrada de las conchas cafayate salta province argentinadventure travel is a type of niche market niche tourism involving exploration of travel in an unusual exotic remote or wilderness destination wwwtruca travelers are highly engaged involvement with activities that include perceived and possibly actual risk and potentially requiring specialized skills and physical exertion adventure tourism has grown in recent decades as touristseek out of the ordinary oroads less traveled types of vacations but measurement of market size and growth is hampered by the lack of a clear operationalization operational definition according to the us based adventure travel trade association adventure travel may be any tourist activity that includes the following three components a physical activity a culture cultural exchange and connection with nature thompson rivers university describes adventure tourists as explorers of both an outer world especially the unspoiled exotic parts of our planet and an inner world of personal challenge self perception and self mastery wwwtrucadventure tourists may be motivated to achieve mood psychology mental states characterized as rush psychology rush or flow psychology flow resulting from stepping outside of their comfort zone this may be from experiencing culture shock or through the performance of acts that require significant effort and involve some degree of risk real or perceived and or physical danger seextreme sport s this may include activitiesuch as mountaineering backpacking wilderness trekking bungee jumping mountain biking canoeing scuba diving rafting kayaking zip line zip lining paragliding hiking exploration exploring sandboarding caving and rock climbing some obscure forms of adventure travel include disaster tourism disaster and ghettourism otherising forms of adventure travel include jungle tourism access to inexpensive consumer technology with respecto global positioning system s backpacking travel flashpacking social networking service social networking and photography have increased the worldwide interest in adventure travel the development of social network analysis vancouver empirical press the interest independent adventure travel has also increased as more specialistravel websites emerge offering previously niche locations and sports types of adventure travel accessible tourism there is a trend for developing tourism specifically for the disabled adventure travel for the disabled has become a billion usd a year industry inorth america stan hagen tourisminister of british columbia some adventure travel destinations offer diverse programs and job opportunities developed specifically for the disability disabled thequity esprit rafting to be featured in commercial wednesday may th print edition cultural tourism cultural tourism is the act of travelling to a place to see that location s culture including the lifestyle sociology lifestyle of the people in that area the history of those people their art architectureligions and other factors that shaped their way of life disaster tourism disaster tourism is the act of traveling to a disaster areas a matter of curiosity the behavior can be a nuisance if it hinders rescue relief and recovery operations if not done because of pure curiosity it can be cataloged as disaster learning ecotourism is now defined as responsible travel to natural areas that conserves thenvironment sustains the well being of the local people and involves interpretation and education ties the objective of ecotourism is to protecthenvironment from detrimental impactsuch as human traffic and to provideducational information by promoting the unique qualities of thenvironment additionally ecotourism should attempto moveco tourists from a passive role where theirecreation isimply based on the natural environmento a more active role where their activities actually contribute to thealth and viability of thosenvironments orams pg ethno tourism ethno tourism refers to visiting a foreign location for the sake of observing the indigenous members of itsociety for the sake of non scientific gain somextreme forms of this include attempting to make first contact with tribes that are protected from outside visitors two controversial issues associated with ethno tourism include bringing natives into contact with diseases they do not have immunities for and the possible degradation or destruction of a unique culture and or languagextreme tourism extreme tourism involves travel to dangerous extreme locations or participation in dangerous events or activities this form of tourism can overlap with extreme sport ghettourism ghettourism includes all forms of entertainment gangsta rap video games movies tv and other forms that allow consumers to traffic in the inner city without leaving home jungle tourism jungle tourism is a rising subcategory of adventure travel defined by active multifaceted physical means of travel in the jungle regions of thearth although similar in many respects to adventure travel jungle tourism pertainspecifically to the context of region culture and activity according to the glossary of tourism terms jungle tours have become a major component of green tourism in tropical destinations and are a relatively recent phenomenon of western international tourism overland travel overland travel or overlanding refers to an overland journey perhaps originating with marco polo s first overland expedition in the th century from venice to the mongolian court of kublai khan today overlanding is a form of extended adventure holiday embarking on a long journey often in a group overland companies provide a converted truck or a bus plus a tour leader and the group travels together overland for a period of weeks or monthsince the s overlanding has been a popular means of travel between destinations across africa europe asia particularly india the americas and australia the hippie trail of the s and saw thousands of young westerners travelling through the middleasto indiand nepal many of the older traditional routes are still active along with neweroutes like iceland to south africa overland central asian post soviet states urban exploration urban exploration often shortened as urbex or ue is thexamination of the normally unseen or off limits parts of urban areas or industrial facilities urban exploration is also commonly referred to as infiltration although some people consider infiltration to be more closely associated withexploration of active or inhabited sites it may also be referred to as draining when exploring drains urban spelunking urban caving or building hacking the nature of this activity presents various risks including both physical danger and the possibility of arrest and punishment many but not all of the activities associated with urban exploration could be considered trespassing or other violations of local oregionalawsee also adventure life momentum adventure canoeing backpacking travel backpacking wilderness backcountry skiing backcountry snowboarding splitboard bicycle touring bungee jumping disaster tourism experimental travel experiential travel exploration ghettourism globe trekker hiking jungle tourism long distance motorcycle riding mountain biking mountaineering navigation outdoor education outdoorecreation parachuting paragliding rafting recreation rock climbing safari shark tourism travel documentary travel writing zip line zip lining notes and references furthereading externalinkscuba diverswim among the sharks fayetteville observer category adventure travel category outdoor education category types of travel category travel category tourist activities","main_words":["thumb","right","px","outdoor","travel_adventure","ottawa","ontario_canada","image","thumb","px","de_las","province","travel","type","niche","market","niche","tourism_involving","exploration","travel","unusual","exotic","remote","wilderness","destination","travelers","highly","engaged","involvement","activities","include","perceived","possibly","actual","risk","potentially","requiring","specialized","skills","physical","adventure_tourism","grown","recent","decades","ordinary","less","traveled","types","vacations","measurement","market","size","growth","hampered","lack","clear","operational","definition","according","us","based","adventure_travel","trade","association","adventure_travel","may","tourist","activity","includes","following","three","components","physical","activity","culture","cultural_exchange","connection","nature","thompson","rivers","university","describes","adventure","tourists","explorers","outer","world","especially","exotic","parts","planet","inner","world","personal","challenge","self","perception","self","tourists_may","motivated","achieve","mood","psychology","mental","states","characterized","rush","psychology","rush","flow","psychology","flow","resulting","outside","comfort","zone","may","experiencing","culture","shock","performance","acts","require","significant","effort","involve","degree","risk","real","perceived","physical","danger","sport","may_include","activitiesuch","mountaineering","backpacking_wilderness","trekking","bungee","jumping","mountain_biking","canoeing","scuba","diving","rafting","kayaking","zip_line","zip","lining","paragliding","hiking","exploration","exploring","caving","rock_climbing","obscure","forms","adventure_travel","include","disaster_tourism","disaster","ghettourism","forms","adventure_travel","include","jungle_tourism","access","inexpensive","consumer","technology","respecto","global","positioning","system","backpacking_travel","flashpacking","social_networking","service","social_networking","photography","increased","worldwide","interest","adventure_travel","development","social","network","analysis","vancouver","empirical","press","interest","independent","adventure_travel","also","increased","websites","emerge","offering","previously","niche","locations","sports","types","adventure_travel","accessible_tourism","trend","developing","tourism","specifically","disabled","adventure_travel","disabled","become","billion","usd","year","industry","inorth_america","stan","british_columbia","adventure_travel","destinations","offer","diverse","programs","job","opportunities","developed","specifically","disability","disabled","rafting","featured","commercial","wednesday","may","th","print","edition","cultural_tourism","cultural_tourism","act","travelling","place","see","location","culture","including","lifestyle","sociology","lifestyle","people","area","history","people","art","factors","shaped","way","life","disaster_tourism","disaster_tourism","act","traveling","disaster","areas","matter","curiosity","behavior","nuisance","rescue","relief","recovery","operations","done","pure","curiosity","disaster","learning","ecotourism","defined","responsible_travel","natural","areas","conserves","thenvironment","sustains","well","local_people","involves","interpretation","education","ties","objective","ecotourism","detrimental","human","traffic","information","promoting","unique","qualities","thenvironment","additionally","ecotourism","attempto","tourists","passive","role","based","active","role","activities","actually","contribute","thealth","viability","ethno","tourism","ethno","tourism","refers","visiting","foreign","location","sake","observing","indigenous","members","sake","non","scientific","gain","forms","include","attempting","make","first","contact","tribes","protected","outside","visitors","two","controversial","issues","associated","ethno","tourism","include","bringing","natives","contact","diseases","possible","degradation","destruction","unique","culture_tourism","extreme","tourism","involves","travel","dangerous","extreme","locations","participation","dangerous","events","activities","form","tourism","overlap","extreme","sport","ghettourism","ghettourism","includes","forms","entertainment","video_games","movies","forms","allow","consumers","traffic","inner","city","without","leaving","home","jungle_tourism","jungle_tourism","rising","subcategory","adventure_travel","defined","active","physical","means","travel","jungle","regions","thearth","although","similar","many","respects","adventure_travel","jungle_tourism","context","region","culture","activity","according","glossary","tourism","terms","jungle","tours","become","major","component","green","tourism","tropical","destinations","relatively","recent","phenomenon","western","international_tourism","overland","travel","overland","travel","overlanding","refers","overland","journey","perhaps","originating","marco","polo","first","overland","expedition","th_century","venice","mongolian","court","khan","today","overlanding","form","extended","adventure","holiday","long","journey","often","group","overland","companies","provide","converted","truck","bus","plus","tour","leader","group","travels","together","overland","period","weeks","overlanding","popular","means","travel_destinations","across","africa","europe","asia","particularly","india","americas","australia","hippie_trail","saw","thousands","young","westerners","travelling","indiand","nepal","many","older","traditional","routes","still","active","along","like","iceland","south_africa","overland","central","asian","post","soviet","states","urban_exploration","urban_exploration","often","shortened","urbex","normally","limits","parts","urban_areas","industrial","facilities","urban_exploration","also_commonly_referred","infiltration","although","people","consider","infiltration","closely","associated","active","inhabited","sites","may_also","referred","draining","exploring","drains","urban","urban","caving","building","hacking","nature","activity","presents","various","risks","including","physical","danger","possibility","arrest","punishment","many","activities","associated","urban_exploration","could","considered","trespassing","violations","local","also","adventure","life","momentum","adventure","canoeing","backpacking_travel","backpacking_wilderness","backcountry","skiing","backcountry","snowboarding","bicycle_touring","bungee","jumping","disaster_tourism","experimental","travel","experiential","travel","exploration","ghettourism","globe","trekker","hiking","jungle_tourism","long_distance","motorcycle","riding","mountain_biking","mountaineering","navigation","outdoor","education","outdoorecreation","parachuting","paragliding","rafting","recreation","rock_climbing","safari","shark","tourism_travel","documentary","travel_writing","zip_line","zip","lining","notes","references_furthereading","among","observer","category_adventure_travel_category","outdoor","education","category_types","category_tourist","activities"],"clean_bigrams":[["thumb","right"],["right","px"],["outdoor","travel"],["ottawa","ontario"],["ontario","canada"],["canada","image"],["image","tour"],["de","las"],["thumb","px"],["de","las"],["niche","market"],["market","niche"],["niche","tourism"],["tourism","involving"],["involving","exploration"],["unusual","exotic"],["exotic","remote"],["wilderness","destination"],["highly","engaged"],["engaged","involvement"],["include","perceived"],["possibly","actual"],["actual","risk"],["potentially","requiring"],["requiring","specialized"],["specialized","skills"],["adventure","tourism"],["recent","decades"],["less","traveled"],["traveled","types"],["market","size"],["operational","definition"],["definition","according"],["us","based"],["based","adventure"],["adventure","travel"],["travel","trade"],["trade","association"],["association","adventure"],["adventure","travel"],["travel","may"],["tourist","activity"],["following","three"],["three","components"],["physical","activity"],["culture","cultural"],["cultural","exchange"],["nature","thompson"],["thompson","rivers"],["rivers","university"],["university","describes"],["describes","adventure"],["adventure","tourists"],["outer","world"],["world","especially"],["exotic","parts"],["inner","world"],["personal","challenge"],["challenge","self"],["self","perception"],["tourists","may"],["achieve","mood"],["mood","psychology"],["psychology","mental"],["mental","states"],["states","characterized"],["rush","psychology"],["psychology","rush"],["flow","psychology"],["psychology","flow"],["flow","resulting"],["comfort","zone"],["experiencing","culture"],["culture","shock"],["require","significant"],["significant","effort"],["risk","real"],["physical","danger"],["may","include"],["include","activitiesuch"],["mountaineering","backpacking"],["backpacking","wilderness"],["wilderness","trekking"],["trekking","bungee"],["bungee","jumping"],["jumping","mountain"],["mountain","biking"],["biking","canoeing"],["canoeing","scuba"],["scuba","diving"],["diving","rafting"],["rafting","kayaking"],["kayaking","zip"],["zip","line"],["line","zip"],["zip","lining"],["lining","paragliding"],["paragliding","hiking"],["hiking","exploration"],["exploration","exploring"],["rock","climbing"],["obscure","forms"],["adventure","travel"],["travel","include"],["include","disaster"],["disaster","tourism"],["tourism","disaster"],["adventure","travel"],["travel","include"],["include","jungle"],["jungle","tourism"],["tourism","access"],["inexpensive","consumer"],["consumer","technology"],["respecto","global"],["global","positioning"],["positioning","system"],["backpacking","travel"],["travel","flashpacking"],["flashpacking","social"],["social","networking"],["networking","service"],["service","social"],["social","networking"],["worldwide","interest"],["adventure","travel"],["social","network"],["network","analysis"],["analysis","vancouver"],["vancouver","empirical"],["empirical","press"],["interest","independent"],["independent","adventure"],["adventure","travel"],["also","increased"],["websites","emerge"],["emerge","offering"],["offering","previously"],["previously","niche"],["niche","locations"],["sports","types"],["adventure","travel"],["travel","accessible"],["accessible","tourism"],["developing","tourism"],["tourism","specifically"],["disabled","adventure"],["adventure","travel"],["billion","usd"],["year","industry"],["industry","inorth"],["inorth","america"],["america","stan"],["british","columbia"],["adventure","travel"],["travel","destinations"],["destinations","offer"],["offer","diverse"],["diverse","programs"],["job","opportunities"],["opportunities","developed"],["developed","specifically"],["disability","disabled"],["commercial","wednesday"],["wednesday","may"],["may","th"],["th","print"],["print","edition"],["edition","cultural"],["cultural","tourism"],["tourism","cultural"],["cultural","tourism"],["culture","including"],["lifestyle","sociology"],["sociology","lifestyle"],["life","disaster"],["disaster","tourism"],["tourism","disaster"],["disaster","tourism"],["disaster","areas"],["rescue","relief"],["recovery","operations"],["pure","curiosity"],["disaster","learning"],["learning","ecotourism"],["responsible","travel"],["natural","areas"],["conserves","thenvironment"],["thenvironment","sustains"],["local","people"],["involves","interpretation"],["education","ties"],["human","traffic"],["unique","qualities"],["thenvironment","additionally"],["additionally","ecotourism"],["passive","role"],["natural","environmento"],["active","role"],["activities","actually"],["actually","contribute"],["ethno","tourism"],["tourism","ethno"],["ethno","tourism"],["tourism","refers"],["foreign","location"],["indigenous","members"],["non","scientific"],["scientific","gain"],["include","attempting"],["make","first"],["first","contact"],["outside","visitors"],["visitors","two"],["two","controversial"],["controversial","issues"],["issues","associated"],["ethno","tourism"],["tourism","include"],["include","bringing"],["bringing","natives"],["possible","degradation"],["unique","culture"],["tourism","extreme"],["extreme","tourism"],["tourism","involves"],["involves","travel"],["dangerous","extreme"],["extreme","locations"],["dangerous","events"],["extreme","sport"],["sport","ghettourism"],["ghettourism","ghettourism"],["ghettourism","includes"],["video","games"],["games","movies"],["movies","tv"],["allow","consumers"],["inner","city"],["city","without"],["without","leaving"],["leaving","home"],["home","jungle"],["jungle","tourism"],["tourism","jungle"],["jungle","tourism"],["rising","subcategory"],["adventure","travel"],["travel","defined"],["physical","means"],["travel","jungle"],["jungle","regions"],["thearth","although"],["although","similar"],["many","respects"],["adventure","travel"],["travel","jungle"],["jungle","tourism"],["region","culture"],["activity","according"],["tourism","terms"],["terms","jungle"],["jungle","tours"],["major","component"],["green","tourism"],["tropical","destinations"],["relatively","recent"],["recent","phenomenon"],["western","international"],["international","tourism"],["tourism","overland"],["overland","travel"],["travel","overland"],["overland","travel"],["overlanding","refers"],["overland","journey"],["journey","perhaps"],["perhaps","originating"],["marco","polo"],["first","overland"],["overland","expedition"],["th","century"],["mongolian","court"],["khan","today"],["today","overlanding"],["extended","adventure"],["adventure","holiday"],["long","journey"],["journey","often"],["group","overland"],["overland","companies"],["companies","provide"],["converted","truck"],["bus","plus"],["tour","leader"],["group","travels"],["travels","together"],["together","overland"],["popular","means"],["travel","destinations"],["destinations","across"],["across","africa"],["africa","europe"],["europe","asia"],["asia","particularly"],["particularly","india"],["hippie","trail"],["saw","thousands"],["young","westerners"],["westerners","travelling"],["indiand","nepal"],["nepal","many"],["older","traditional"],["traditional","routes"],["still","active"],["active","along"],["like","iceland"],["south","africa"],["africa","overland"],["overland","central"],["central","asian"],["asian","post"],["post","soviet"],["soviet","states"],["states","urban"],["urban","exploration"],["exploration","urban"],["urban","exploration"],["exploration","often"],["often","shortened"],["limits","parts"],["urban","areas"],["industrial","facilities"],["facilities","urban"],["urban","exploration"],["also","commonly"],["commonly","referred"],["infiltration","although"],["people","consider"],["consider","infiltration"],["closely","associated"],["inhabited","sites"],["may","also"],["exploring","drains"],["drains","urban"],["urban","caving"],["building","hacking"],["activity","presents"],["presents","various"],["various","risks"],["risks","including"],["physical","danger"],["punishment","many"],["activities","associated"],["urban","exploration"],["exploration","could"],["considered","trespassing"],["also","adventure"],["adventure","life"],["life","momentum"],["momentum","adventure"],["adventure","canoeing"],["canoeing","backpacking"],["backpacking","travel"],["travel","backpacking"],["backpacking","wilderness"],["wilderness","backcountry"],["backcountry","skiing"],["skiing","backcountry"],["backcountry","snowboarding"],["bicycle","touring"],["touring","bungee"],["bungee","jumping"],["jumping","disaster"],["disaster","tourism"],["tourism","experimental"],["experimental","travel"],["travel","experiential"],["experiential","travel"],["travel","exploration"],["exploration","ghettourism"],["ghettourism","globe"],["globe","trekker"],["trekker","hiking"],["hiking","jungle"],["jungle","tourism"],["tourism","long"],["long","distance"],["distance","motorcycle"],["motorcycle","riding"],["riding","mountain"],["mountain","biking"],["biking","mountaineering"],["mountaineering","navigation"],["navigation","outdoor"],["outdoor","education"],["education","outdoorecreation"],["outdoorecreation","parachuting"],["parachuting","paragliding"],["paragliding","rafting"],["rafting","recreation"],["recreation","rock"],["rock","climbing"],["climbing","safari"],["safari","shark"],["shark","tourism"],["tourism","travel"],["travel","documentary"],["documentary","travel"],["travel","writing"],["writing","zip"],["zip","line"],["line","zip"],["zip","lining"],["lining","notes"],["references","furthereading"],["observer","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","outdoor"],["outdoor","education"],["education","category"],["category","types"],["travel","category"],["category","travel"],["travel","category"],["category","tourist"],["tourist","activities"]],"all_collocations":["outdoor travel","ottawa ontario","ontario canada","canada image","image tour","de las","de las","niche market","market niche","niche tourism","tourism involving","involving exploration","unusual exotic","exotic remote","wilderness destination","highly engaged","engaged involvement","include perceived","possibly actual","actual risk","potentially requiring","requiring specialized","specialized skills","adventure tourism","recent decades","less traveled","traveled types","market size","operational definition","definition according","us based","based adventure","adventure travel","travel trade","trade association","association adventure","adventure travel","travel may","tourist activity","following three","three components","physical activity","culture cultural","cultural exchange","nature thompson","thompson rivers","rivers university","university describes","describes adventure","adventure tourists","outer world","world especially","exotic parts","inner world","personal challenge","challenge self","self perception","tourists may","achieve mood","mood psychology","psychology mental","mental states","states characterized","rush psychology","psychology rush","flow psychology","psychology flow","flow resulting","comfort zone","experiencing culture","culture shock","require significant","significant effort","risk real","physical danger","may include","include activitiesuch","mountaineering backpacking","backpacking wilderness","wilderness trekking","trekking bungee","bungee jumping","jumping mountain","mountain biking","biking canoeing","canoeing scuba","scuba diving","diving rafting","rafting kayaking","kayaking zip","zip line","line zip","zip lining","lining paragliding","paragliding hiking","hiking exploration","exploration exploring","rock climbing","obscure forms","adventure travel","travel include","include disaster","disaster tourism","tourism disaster","adventure travel","travel include","include jungle","jungle tourism","tourism access","inexpensive consumer","consumer technology","respecto global","global positioning","positioning system","backpacking travel","travel flashpacking","flashpacking social","social networking","networking service","service social","social networking","worldwide interest","adventure travel","social network","network analysis","analysis vancouver","vancouver empirical","empirical press","interest independent","independent adventure","adventure travel","also increased","websites emerge","emerge offering","offering previously","previously niche","niche locations","sports types","adventure travel","travel accessible","accessible tourism","developing tourism","tourism specifically","disabled adventure","adventure travel","billion usd","year industry","industry inorth","inorth america","america stan","british columbia","adventure travel","travel destinations","destinations offer","offer diverse","diverse programs","job opportunities","opportunities developed","developed specifically","disability disabled","commercial wednesday","wednesday may","may th","th print","print edition","edition cultural","cultural tourism","tourism cultural","cultural tourism","culture including","lifestyle sociology","sociology lifestyle","life disaster","disaster tourism","tourism disaster","disaster tourism","disaster areas","rescue relief","recovery operations","pure curiosity","disaster learning","learning ecotourism","responsible travel","natural areas","conserves thenvironment","thenvironment sustains","local people","involves interpretation","education ties","human traffic","unique qualities","thenvironment additionally","additionally ecotourism","passive role","natural environmento","active role","activities actually","actually contribute","ethno tourism","tourism ethno","ethno tourism","tourism refers","foreign location","indigenous members","non scientific","scientific gain","include attempting","make first","first contact","outside visitors","visitors two","two controversial","controversial issues","issues associated","ethno tourism","tourism include","include bringing","bringing natives","possible degradation","unique culture","tourism extreme","extreme tourism","tourism involves","involves travel","dangerous extreme","extreme locations","dangerous events","extreme sport","sport ghettourism","ghettourism ghettourism","ghettourism includes","video games","games movies","movies tv","allow consumers","inner city","city without","without leaving","leaving home","home jungle","jungle tourism","tourism jungle","jungle tourism","rising subcategory","adventure travel","travel defined","physical means","travel jungle","jungle regions","thearth although","although similar","many respects","adventure travel","travel jungle","jungle tourism","region culture","activity according","tourism terms","terms jungle","jungle tours","major component","green tourism","tropical destinations","relatively recent","recent phenomenon","western international","international tourism","tourism overland","overland travel","travel overland","overland travel","overlanding refers","overland journey","journey perhaps","perhaps originating","marco polo","first overland","overland expedition","th century","mongolian court","khan today","today overlanding","extended adventure","adventure holiday","long journey","journey often","group overland","overland companies","companies provide","converted truck","bus plus","tour leader","group travels","travels together","together overland","popular means","travel destinations","destinations across","across africa","africa europe","europe asia","asia particularly","particularly india","hippie trail","saw thousands","young westerners","westerners travelling","indiand nepal","nepal many","older traditional","traditional routes","still active","active along","like iceland","south africa","africa overland","overland central","central asian","asian post","post soviet","soviet states","states urban","urban exploration","exploration urban","urban exploration","exploration often","often shortened","limits parts","urban areas","industrial facilities","facilities urban","urban exploration","also commonly","commonly referred","infiltration although","people consider","consider infiltration","closely associated","inhabited sites","may also","exploring drains","drains urban","urban caving","building hacking","activity presents","presents various","various risks","risks including","physical danger","punishment many","activities associated","urban exploration","exploration could","considered trespassing","also adventure","adventure life","life momentum","momentum adventure","adventure canoeing","canoeing backpacking","backpacking travel","travel backpacking","backpacking wilderness","wilderness backcountry","backcountry skiing","skiing backcountry","backcountry snowboarding","bicycle touring","touring bungee","bungee jumping","jumping disaster","disaster tourism","tourism experimental","experimental travel","travel experiential","experiential travel","travel exploration","exploration ghettourism","ghettourism globe","globe trekker","trekker hiking","hiking jungle","jungle tourism","tourism long","long distance","distance motorcycle","motorcycle riding","riding mountain","mountain biking","biking mountaineering","mountaineering navigation","navigation outdoor","outdoor education","education outdoorecreation","outdoorecreation parachuting","parachuting paragliding","paragliding rafting","rafting recreation","recreation rock","rock climbing","climbing safari","safari shark","shark tourism","tourism travel","travel documentary","documentary travel","travel writing","writing zip","zip line","line zip","zip lining","lining notes","references furthereading","observer category","category adventure","adventure travel","travel category","category outdoor","outdoor education","education category","category types","travel category","category travel","travel category","category tourist","tourist activities"],"new_description":"thumb right px outdoor travel_adventure ottawa ontario_canada image tour_de_las thumb px de_las province travel type niche market niche tourism_involving exploration travel unusual exotic remote wilderness destination travelers highly engaged involvement activities include perceived possibly actual risk potentially requiring specialized skills physical adventure_tourism grown recent decades ordinary less traveled types vacations measurement market size growth hampered lack clear operational definition according us based adventure_travel trade association adventure_travel may tourist activity includes following three components physical activity culture cultural_exchange connection nature thompson rivers university describes adventure tourists explorers outer world especially exotic parts planet inner world personal challenge self perception self tourists_may motivated achieve mood psychology mental states characterized rush psychology rush flow psychology flow resulting outside comfort zone may experiencing culture shock performance acts require significant effort involve degree risk real perceived physical danger sport may_include activitiesuch mountaineering backpacking_wilderness trekking bungee jumping mountain_biking canoeing scuba diving rafting kayaking zip_line zip lining paragliding hiking exploration exploring caving rock_climbing obscure forms adventure_travel include disaster_tourism disaster ghettourism forms adventure_travel include jungle_tourism access inexpensive consumer technology respecto global positioning system backpacking_travel flashpacking social_networking service social_networking photography increased worldwide interest adventure_travel development social network analysis vancouver empirical press interest independent adventure_travel also increased websites emerge offering previously niche locations sports types adventure_travel accessible_tourism trend developing tourism specifically disabled adventure_travel disabled become billion usd year industry inorth_america stan british_columbia adventure_travel destinations offer diverse programs job opportunities developed specifically disability disabled rafting featured commercial wednesday may th print edition cultural_tourism cultural_tourism act travelling place see location culture including lifestyle sociology lifestyle people area history people art factors shaped way life disaster_tourism disaster_tourism act traveling disaster areas matter curiosity behavior nuisance rescue relief recovery operations done pure curiosity disaster learning ecotourism defined responsible_travel natural areas conserves thenvironment sustains well local_people involves interpretation education ties objective ecotourism detrimental human traffic information promoting unique qualities thenvironment additionally ecotourism attempto tourists passive role based natural_environmento active role activities actually contribute thealth viability ethno tourism ethno tourism refers visiting foreign location sake observing indigenous members sake non scientific gain forms include attempting make first contact tribes protected outside visitors two controversial issues associated ethno tourism include bringing natives contact diseases possible degradation destruction unique culture_tourism extreme tourism involves travel dangerous extreme locations participation dangerous events activities form tourism overlap extreme sport ghettourism ghettourism includes forms entertainment video_games movies tv forms allow consumers traffic inner city without leaving home jungle_tourism jungle_tourism rising subcategory adventure_travel defined active physical means travel jungle regions thearth although similar many respects adventure_travel jungle_tourism context region culture activity according glossary tourism terms jungle tours become major component green tourism tropical destinations relatively recent phenomenon western international_tourism overland travel overland travel overlanding refers overland journey perhaps originating marco polo first overland expedition th_century venice mongolian court khan today overlanding form extended adventure holiday long journey often group overland companies provide converted truck bus plus tour leader group travels together overland period weeks overlanding popular means travel_destinations across africa europe asia particularly india americas australia hippie_trail saw thousands young westerners travelling indiand nepal many older traditional routes still active along like iceland south_africa overland central asian post soviet states urban_exploration urban_exploration often shortened urbex normally limits parts urban_areas industrial facilities urban_exploration also_commonly_referred infiltration although people consider infiltration closely associated active inhabited sites may_also referred draining exploring drains urban urban caving building hacking nature activity presents various risks including physical danger possibility arrest punishment many activities associated urban_exploration could considered trespassing violations local also adventure life momentum adventure canoeing backpacking_travel backpacking_wilderness backcountry skiing backcountry snowboarding bicycle_touring bungee jumping disaster_tourism experimental travel experiential travel exploration ghettourism globe trekker hiking jungle_tourism long_distance motorcycle riding mountain_biking mountaineering navigation outdoor education outdoorecreation parachuting paragliding rafting recreation rock_climbing safari shark tourism_travel documentary travel_writing zip_line zip lining notes references_furthereading among observer category_adventure_travel_category outdoor education category_types travel_category_travel category_tourist activities"},{"title":"Afar (magazine)","description":"company afar media country united states based san francisco california languagenglish website issn oclc afar is a publication focused on experiential travel the company alsoperates a non profit foundation providing scholarships for educational journeys for students the magazine was launched in by greg sullivand joseph diaz after a six week trip to indiafar is headquartered in san francisco californiand has an office inew york city afar the huffington posthe magazine was featured on the martha stewart show about afar and has received awards in the travel writing and journalism industry lowell thomas awards about afar about afar the magazine also has a website afarcom and a mobile application externalinks official website category american magazines category magazinestablished in category magazines published in california category media in the san francisco bay area category tourismagazines","main_words":["company","afar","media","country_united","states_based","san_francisco_california","languagenglish_website_issn_oclc","afar","publication","focused","experiential","non_profit","foundation","providing","scholarships","educational","journeys","students","magazine","launched","greg","joseph","diaz","six","week","trip","headquartered","office","inew_york_city","afar","magazine","featured","martha","stewart","show","afar","received","awards","travel_writing","journalism","industry","lowell","thomas","awards","afar","afar","magazine","also","website","mobile_application","externalinks_official_website_category","american","magazines_category_magazinestablished","category_magazines_published"],"clean_bigrams":[["company","afar"],["afar","media"],["media","country"],["country","united"],["united","states"],["states","based"],["based","san"],["san","francisco"],["francisco","california"],["california","languagenglish"],["languagenglish","website"],["website","issn"],["issn","oclc"],["oclc","afar"],["publication","focused"],["experiential","travel"],["company","alsoperates"],["non","profit"],["profit","foundation"],["foundation","providing"],["providing","scholarships"],["educational","journeys"],["joseph","diaz"],["six","week"],["week","trip"],["san","francisco"],["francisco","californiand"],["office","inew"],["inew","york"],["york","city"],["city","afar"],["huffington","posthe"],["posthe","magazine"],["martha","stewart"],["stewart","show"],["received","awards"],["travel","writing"],["journalism","industry"],["industry","lowell"],["lowell","thomas"],["thomas","awards"],["magazine","also"],["mobile","application"],["application","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","american"],["american","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["california","category"],["category","media"],["san","francisco"],["francisco","bay"],["bay","area"],["area","category"],["category","tourismagazines"]],"all_collocations":["company afar","afar media","media country","country united","united states","states based","based san","san francisco","francisco california","california languagenglish","languagenglish website","website issn","issn oclc","oclc afar","publication focused","experiential travel","company alsoperates","non profit","profit foundation","foundation providing","providing scholarships","educational journeys","joseph diaz","six week","week trip","san francisco","francisco californiand","office inew","inew york","york city","city afar","huffington posthe","posthe magazine","martha stewart","stewart show","received awards","travel writing","journalism industry","industry lowell","lowell thomas","thomas awards","magazine also","mobile application","application externalinks","externalinks official","official website","website category","category american","american magazines","magazines category","category magazinestablished","category magazines","magazines published","california category","category media","san francisco","francisco bay","bay area","area category","category tourismagazines"],"new_description":"company afar media country_united states_based san_francisco_california languagenglish_website_issn_oclc afar publication focused experiential travel_company_alsoperates non_profit foundation providing scholarships educational journeys students magazine launched greg joseph diaz six week trip headquartered san_francisco_californiand office inew_york_city afar huffington_posthe magazine featured martha stewart show afar received awards travel_writing journalism industry lowell thomas awards afar afar magazine also website mobile_application externalinks_official_website_category american magazines_category_magazinestablished category_magazines_published california_category_media san_francisco_bay_area_category_tourismagazines"},{"title":"Africa Travel Association","description":"africa travel association ata is a non profit international travel industry trade association established in ata defines its mission as to promote travel tourism and transporto and within africand to strengthen intrafrica partnerships ata serves bothe public and private sectors of the international travel and tourism industry ata membership comprises african governments their tourisministers tourism bureaus and boards airlines cruise lines hotels resorts front line travel sellers and providers tour operators and travel agents mediand affiliate members ata partners withe african union commission auc to promote the sustainable development of tourism to and across africata s annual events in africand the united states bring together industry leaders to shape africa s tourism agendata is registered as a c non profitrade association in the united states usa with its headquarters in washington dc and chapters around the world ata is overseen by an international board of directors and managedaily by an executive director and managementeam advocate for africas a leadinglobal travel destination raise awareness of africas a destination with rich andiverse tourism opportunities and products promote positive news on africa develop and promote travel programs to and across africassist country and private sector members with marketing serve as a liaison tourismatters in africa between member countries present opportunities for members to market and showcase their products and services offer members continuing education training and learning opportunities help members increase business through exposure networking and referrals organizevents where tourism stakeholders meeto discuss issues of common interest and concern conduct research with partner organizations on tourismatters in africa events the presidential forum ata s annual presidential forums on tourism which are hosted by new york university s africa house take place inew york every september in parallel withe united nations general assembly meetings this one day event offers africa s leaders an important opportunity to speak about how travel and tourism contributes to a country s economy andevelopmenten african leaders from the african union commission benin burundi ghana the gambia liberia malawi morocco tanzaniand the world bank addressed the forum the us africa tourism seminar ata s leading industry event in the usa takes place in conjunction with a leading travel trade show attracting tourism industry professionals andiplomatic representatives eager to learn about possible policy choices related tourism in africa participants also explore key growth trends that have helped african tourism grow steadily in recent years and help connectother companies to develop strategic business partnerships promotional road shows ata increases the visibility of africas a destination in the north american marketplace by showcasing the destination and its private sector partners products in largely untapped metropolitan marketplaces like phoenix arizona phoenix and montreal as well as in major cities like new york los angeles and atlantatalso participates in global industry travel trade shows in europe asiand africa theco and cultural tourism symposium tourism professionalspecializing in sustainable tourism art culture heritage travel responsible tourism green travel and conservation movement conservation come together to explore africa s emerging ecotourism eco and cultural tourism industries countries hosting symposiumshare their travel products with delegates through on site field visits and case studies past symposium djibouti city djibouti calabar nigeria luandangola kampala uganda zanzibar tanzania fez morocco yaound cameroon abuja nigeria marrakech morocco cape town south africa saly dakar senegal annual world congress ata signaturevent in africa provides a networking learning and agenda shaping platform for travel professionals from around the world thevenr addresses timely industry topics and offers professional development opportunities delegates also participate in roundtables for tourisministers an african bazaar for buyers and sellers networking events host country day s gala dinners and pre and post country tours ata convenes th annual world congress in uganda rwanda will host ata st annual world congress in spring the young professionals program the mission of the africa travel association s young professionals program ypp is to engage tourism and hospitality students and young industry professionals in africa s tourism industry and to cultivate future ata membership to achieve this mission ypp offers two programs that serve young people at different points in their education and professional developmenthe ata student union and the ata young professionals network through these two programs ypp aims to help future industry leaders gain access tourism professionals focusing on africa in order to help them build the relationships and networks now that will serve the industry and ata later by encouraging thexchange of knowledge ideas and interests and by providing opportunities for training and travel to destination africa ypp also connects a new generation to atand its members who are accomplished tourism professionals africa diasporafrica diaspora is a critical resource for tourism promotion and investmento encourage the participation in the industry ata has launched the atafrican diaspora initiative withe goal of engaging african diaspora leaders entrepreneurs and media in tourism promotion to africa strategic partnership withe african union commission in may the african union commission auc and the africa travel association ata signed a memorandum of understanding supporting the promotion of the sustainable development of tourism in africa the mou wasigned withe understanding that majoregions of the world havestablished effective regional tourism bodies like the pacific asia travel association patand the caribbean tourism organization cto and that africa has yeto formally adopt as a continent an organization asuch to service its tourismarketing research and advocacy references externalinks category articles created via the article wizard category tourism agencies category tourism in africategory business organizations of africa","main_words":["africa","travel_association","ata","non_profit","international_travel","industry_trade","association","established","ata","defines","mission","promote","travel_tourism","transporto","within","africand","strengthen","partnerships","ata","serves","bothe","international_travel","tourism_industry","ata","membership","comprises","african","governments","tourism","bureaus","boards","airlines","cruise_lines","hotels_resorts","front","line","travel","sellers","providers","tour_operators","travel_agents","mediand","affiliate","members","ata","partners","withe","african","union","commission","promote","sustainable_development","tourism","across","annual","events","africand","united_states","bring","together","industry","leaders","shape","africa","tourism","registered","c","non","association","united_states","usa","headquarters","washington","chapters","around","world","ata","overseen","international","board","directors","executive_director","managementeam","advocate","africas","travel_destination","raise","awareness","africas","destination","rich","tourism","opportunities","products","promote","positive","news","africa","develop","promote","travel","programs","across","country","private_sector","members","marketing","serve","liaison","africa","member_countries","present","opportunities","members","market","showcase","products","services","offer","members","continuing","education","training","learning","opportunities","help","members","increase","business","exposure","networking","tourism","stakeholders","discuss","issues","common","interest","concern","conduct","research","partner","organizations","africa","events","presidential","forum","ata","annual","presidential","forums","tourism","hosted","new_york","university","africa","house","take_place","inew_york","every","september","parallel","withe","united_nations","general_assembly","meetings","one_day","event","offers","africa","leaders","important","opportunity","speak","travel_tourism","contributes","country","economy","african","leaders","african","union","commission","benin","burundi","ghana","gambia","liberia","malawi","morocco","world","bank","addressed","forum","us","africa","tourism","ata","leading","industry","event","usa","takes_place","conjunction","leading","travel_trade","show","attracting","tourism_industry","professionals","representatives","eager","learn","possible","policy","choices","related_tourism","africa","participants","also","explore","key","growth","trends","helped","african","tourism","grow","steadily","recent_years","help","companies","develop","strategic","business","partnerships","promotional","road","shows","ata","increases","visibility","africas","destination","north_american","marketplace","showcasing","destination","private_sector","partners","products","largely","metropolitan","like","phoenix_arizona","phoenix","montreal","well","major_cities","like","new_york","los_angeles","participates","global","industry","travel_trade","shows","europe","asiand","africa","cultural_tourism","symposium","tourism","sustainable_tourism","art","culture_heritage","travel","responsible_tourism","green","travel","conservation","movement","conservation","come","together","explore","africa","emerging","ecotourism","eco","cultural_tourism","industries","countries","hosting","travel","products","delegates","site","field","visits","case_studies","past","symposium","city","calabar","nigeria","kampala","uganda","zanzibar","tanzania","morocco","cameroon","abuja","nigeria","marrakech","morocco","cape_town","south_africa","senegal","annual","world","congress","ata","africa","provides","networking","learning","agenda","shaping","platform","travel","professionals","around","world","addresses","timely","industry","topics","offers","professional","development","opportunities","delegates","also","participate","african","bazaar","buyers","sellers","networking","events","host","country","day","dinners","pre","post","country","tours","ata","th_annual","world","congress","uganda","rwanda","host","ata","st","annual","world","congress","spring","young","professionals","program","mission","africa","travel_association","young","professionals","program","ypp","engage","tourism_hospitality","students","young","industry","professionals","africa","tourism_industry","future","ata","membership","achieve","mission","ypp","offers","two","programs","serve","young_people","different","points","education","professional","developmenthe","ata","student","union","ata","young","professionals","network","two","programs","ypp","aims","help","future","industry","leaders","gain","access","tourism","professionals","focusing","africa","order","help","build","relationships","networks","serve","industry","ata","later","encouraging","thexchange","knowledge","ideas","interests","providing","opportunities","training","travel_destination","africa","ypp","also","connects","new","generation","members","accomplished","tourism","professionals","africa","diaspora","critical","resource","tourism_promotion","investmento","encourage","participation","industry","ata","launched","diaspora","initiative","withe_goal","engaging","african","diaspora","leaders","entrepreneurs","media","tourism_promotion","africa","strategic","partnership","withe","african","union","commission","may","african","union","commission","africa","travel_association","ata","signed","memorandum","understanding","supporting","promotion","sustainable_development","tourism","africa","withe","understanding","world","effective","regional_tourism","bodies","like","pacific","asia","travel_association","caribbean_tourism","organization","cto","africa","yeto","formally","adopt","continent","organization","asuch","service","tourismarketing","research","advocacy","references_externalinks","category_articles_created_via","agencies_category_tourism","business","organizations","africa"],"clean_bigrams":[["africa","travel"],["travel","association"],["association","ata"],["non","profit"],["profit","international"],["international","travel"],["travel","industry"],["industry","trade"],["trade","association"],["association","established"],["ata","defines"],["promote","travel"],["travel","tourism"],["within","africand"],["partnerships","ata"],["ata","serves"],["serves","bothe"],["bothe","public"],["private","sectors"],["international","travel"],["travel","tourism"],["tourism","industry"],["industry","ata"],["ata","membership"],["membership","comprises"],["comprises","african"],["african","governments"],["tourism","bureaus"],["boards","airlines"],["airlines","cruise"],["cruise","lines"],["lines","hotels"],["hotels","resorts"],["resorts","front"],["front","line"],["line","travel"],["travel","sellers"],["providers","tour"],["tour","operators"],["travel","agents"],["agents","mediand"],["mediand","affiliate"],["affiliate","members"],["members","ata"],["ata","partners"],["partners","withe"],["withe","african"],["african","union"],["union","commission"],["sustainable","development"],["annual","events"],["united","states"],["states","bring"],["bring","together"],["together","industry"],["industry","leaders"],["shape","africa"],["africa","tourism"],["c","non"],["united","states"],["states","usa"],["chapters","around"],["world","ata"],["international","board"],["executive","director"],["managementeam","advocate"],["travel","destination"],["destination","raise"],["raise","awareness"],["tourism","opportunities"],["products","promote"],["promote","positive"],["positive","news"],["africa","develop"],["promote","travel"],["travel","programs"],["private","sector"],["sector","members"],["marketing","serve"],["member","countries"],["countries","present"],["present","opportunities"],["services","offer"],["offer","members"],["members","continuing"],["continuing","education"],["education","training"],["learning","opportunities"],["opportunities","help"],["help","members"],["members","increase"],["increase","business"],["exposure","networking"],["tourism","stakeholders"],["discuss","issues"],["common","interest"],["concern","conduct"],["conduct","research"],["partner","organizations"],["africa","events"],["presidential","forum"],["forum","ata"],["annual","presidential"],["presidential","forums"],["new","york"],["york","university"],["africa","house"],["house","take"],["take","place"],["place","inew"],["inew","york"],["york","every"],["every","september"],["parallel","withe"],["withe","united"],["united","nations"],["nations","general"],["general","assembly"],["assembly","meetings"],["one","day"],["day","event"],["event","offers"],["offers","africa"],["important","opportunity"],["travel","tourism"],["tourism","contributes"],["african","leaders"],["african","union"],["union","commission"],["commission","benin"],["benin","burundi"],["burundi","ghana"],["gambia","liberia"],["liberia","malawi"],["malawi","morocco"],["world","bank"],["bank","addressed"],["us","africa"],["africa","tourism"],["leading","industry"],["industry","event"],["usa","takes"],["takes","place"],["leading","travel"],["travel","trade"],["trade","show"],["show","attracting"],["attracting","tourism"],["tourism","industry"],["industry","professionals"],["representatives","eager"],["possible","policy"],["policy","choices"],["choices","related"],["related","tourism"],["africa","participants"],["participants","also"],["also","explore"],["explore","key"],["key","growth"],["growth","trends"],["helped","african"],["african","tourism"],["tourism","grow"],["grow","steadily"],["recent","years"],["develop","strategic"],["strategic","business"],["business","partnerships"],["partnerships","promotional"],["promotional","road"],["road","shows"],["shows","ata"],["ata","increases"],["north","american"],["american","marketplace"],["private","sector"],["sector","partners"],["partners","products"],["like","phoenix"],["phoenix","arizona"],["arizona","phoenix"],["major","cities"],["cities","like"],["like","new"],["new","york"],["york","los"],["los","angeles"],["global","industry"],["industry","travel"],["travel","trade"],["trade","shows"],["europe","asiand"],["asiand","africa"],["cultural","tourism"],["tourism","symposium"],["symposium","tourism"],["sustainable","tourism"],["tourism","art"],["art","culture"],["culture","heritage"],["heritage","travel"],["travel","responsible"],["responsible","tourism"],["tourism","green"],["green","travel"],["conservation","movement"],["movement","conservation"],["conservation","come"],["come","together"],["explore","africa"],["emerging","ecotourism"],["ecotourism","eco"],["cultural","tourism"],["tourism","industries"],["industries","countries"],["countries","hosting"],["travel","products"],["site","field"],["field","visits"],["case","studies"],["studies","past"],["past","symposium"],["calabar","nigeria"],["kampala","uganda"],["uganda","zanzibar"],["zanzibar","tanzania"],["cameroon","abuja"],["abuja","nigeria"],["nigeria","marrakech"],["marrakech","morocco"],["morocco","cape"],["cape","town"],["town","south"],["south","africa"],["senegal","annual"],["annual","world"],["world","congress"],["congress","ata"],["africa","provides"],["networking","learning"],["agenda","shaping"],["shaping","platform"],["travel","professionals"],["addresses","timely"],["timely","industry"],["industry","topics"],["offers","professional"],["professional","development"],["development","opportunities"],["opportunities","delegates"],["delegates","also"],["also","participate"],["african","bazaar"],["sellers","networking"],["networking","events"],["events","host"],["host","country"],["country","day"],["post","country"],["country","tours"],["tours","ata"],["th","annual"],["annual","world"],["world","congress"],["uganda","rwanda"],["host","ata"],["ata","st"],["st","annual"],["annual","world"],["world","congress"],["young","professionals"],["professionals","program"],["africa","travel"],["travel","association"],["young","professionals"],["professionals","program"],["program","ypp"],["engage","tourism"],["hospitality","students"],["young","industry"],["industry","professionals"],["professionals","africa"],["africa","tourism"],["tourism","industry"],["future","ata"],["ata","membership"],["mission","ypp"],["ypp","offers"],["offers","two"],["two","programs"],["serve","young"],["young","people"],["different","points"],["professional","developmenthe"],["developmenthe","ata"],["ata","student"],["student","union"],["ata","young"],["young","professionals"],["professionals","network"],["two","programs"],["programs","ypp"],["ypp","aims"],["help","future"],["future","industry"],["industry","leaders"],["leaders","gain"],["gain","access"],["access","tourism"],["tourism","professionals"],["professionals","focusing"],["industry","ata"],["ata","later"],["encouraging","thexchange"],["knowledge","ideas"],["providing","opportunities"],["travel","destination"],["destination","africa"],["africa","ypp"],["ypp","also"],["also","connects"],["new","generation"],["accomplished","tourism"],["tourism","professionals"],["professionals","africa"],["critical","resource"],["tourism","promotion"],["investmento","encourage"],["industry","ata"],["diaspora","initiative"],["initiative","withe"],["withe","goal"],["engaging","african"],["african","diaspora"],["diaspora","leaders"],["leaders","entrepreneurs"],["tourism","promotion"],["africa","strategic"],["strategic","partnership"],["partnership","withe"],["withe","african"],["african","union"],["union","commission"],["african","union"],["union","commission"],["africa","travel"],["travel","association"],["association","ata"],["ata","signed"],["understanding","supporting"],["sustainable","development"],["withe","understanding"],["effective","regional"],["regional","tourism"],["tourism","bodies"],["bodies","like"],["pacific","asia"],["asia","travel"],["travel","association"],["caribbean","tourism"],["tourism","organization"],["organization","cto"],["yeto","formally"],["formally","adopt"],["organization","asuch"],["tourismarketing","research"],["advocacy","references"],["references","externalinks"],["externalinks","category"],["category","articles"],["articles","created"],["created","via"],["article","wizard"],["wizard","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["africategory","business"],["business","organizations"]],"all_collocations":["africa travel","travel association","association ata","non profit","profit international","international travel","travel industry","industry trade","trade association","association established","ata defines","promote travel","travel tourism","within africand","partnerships ata","ata serves","serves bothe","bothe public","private sectors","international travel","travel tourism","tourism industry","industry ata","ata membership","membership comprises","comprises african","african governments","tourism bureaus","boards airlines","airlines cruise","cruise lines","lines hotels","hotels resorts","resorts front","front line","line travel","travel sellers","providers tour","tour operators","travel agents","agents mediand","mediand affiliate","affiliate members","members ata","ata partners","partners withe","withe african","african union","union commission","sustainable development","annual events","united states","states bring","bring together","together industry","industry leaders","shape africa","africa tourism","c non","united states","states usa","chapters around","world ata","international board","executive director","managementeam advocate","travel destination","destination raise","raise awareness","tourism opportunities","products promote","promote positive","positive news","africa develop","promote travel","travel programs","private sector","sector members","marketing serve","member countries","countries present","present opportunities","services offer","offer members","members continuing","continuing education","education training","learning opportunities","opportunities help","help members","members increase","increase business","exposure networking","tourism stakeholders","discuss issues","common interest","concern conduct","conduct research","partner organizations","africa events","presidential forum","forum ata","annual presidential","presidential forums","new york","york university","africa house","house take","take place","place inew","inew york","york every","every september","parallel withe","withe united","united nations","nations general","general assembly","assembly meetings","one day","day event","event offers","offers africa","important opportunity","travel tourism","tourism contributes","african leaders","african union","union commission","commission benin","benin burundi","burundi ghana","gambia liberia","liberia malawi","malawi morocco","world bank","bank addressed","us africa","africa tourism","leading industry","industry event","usa takes","takes place","leading travel","travel trade","trade show","show attracting","attracting tourism","tourism industry","industry professionals","representatives eager","possible policy","policy choices","choices related","related tourism","africa participants","participants also","also explore","explore key","key growth","growth trends","helped african","african tourism","tourism grow","grow steadily","recent years","develop strategic","strategic business","business partnerships","partnerships promotional","promotional road","road shows","shows ata","ata increases","north american","american marketplace","private sector","sector partners","partners products","like phoenix","phoenix arizona","arizona phoenix","major cities","cities like","like new","new york","york los","los angeles","global industry","industry travel","travel trade","trade shows","europe asiand","asiand africa","cultural tourism","tourism symposium","symposium tourism","sustainable tourism","tourism art","art culture","culture heritage","heritage travel","travel responsible","responsible tourism","tourism green","green travel","conservation movement","movement conservation","conservation come","come together","explore africa","emerging ecotourism","ecotourism eco","cultural tourism","tourism industries","industries countries","countries hosting","travel products","site field","field visits","case studies","studies past","past symposium","calabar nigeria","kampala uganda","uganda zanzibar","zanzibar tanzania","cameroon abuja","abuja nigeria","nigeria marrakech","marrakech morocco","morocco cape","cape town","town south","south africa","senegal annual","annual world","world congress","congress ata","africa provides","networking learning","agenda shaping","shaping platform","travel professionals","addresses timely","timely industry","industry topics","offers professional","professional development","development opportunities","opportunities delegates","delegates also","also participate","african bazaar","sellers networking","networking events","events host","host country","country day","post country","country tours","tours ata","th annual","annual world","world congress","uganda rwanda","host ata","ata st","st annual","annual world","world congress","young professionals","professionals program","africa travel","travel association","young professionals","professionals program","program ypp","engage tourism","hospitality students","young industry","industry professionals","professionals africa","africa tourism","tourism industry","future ata","ata membership","mission ypp","ypp offers","offers two","two programs","serve young","young people","different points","professional developmenthe","developmenthe ata","ata student","student union","ata young","young professionals","professionals network","two programs","programs ypp","ypp aims","help future","future industry","industry leaders","leaders gain","gain access","access tourism","tourism professionals","professionals focusing","industry ata","ata later","encouraging thexchange","knowledge ideas","providing opportunities","travel destination","destination africa","africa ypp","ypp also","also connects","new generation","accomplished tourism","tourism professionals","professionals africa","critical resource","tourism promotion","investmento encourage","industry ata","diaspora initiative","initiative withe","withe goal","engaging african","african diaspora","diaspora leaders","leaders entrepreneurs","tourism promotion","africa strategic","strategic partnership","partnership withe","withe african","african union","union commission","african union","union commission","africa travel","travel association","association ata","ata signed","understanding supporting","sustainable development","withe understanding","effective regional","regional tourism","tourism bodies","bodies like","pacific asia","asia travel","travel association","caribbean tourism","tourism organization","organization cto","yeto formally","formally adopt","organization asuch","tourismarketing research","advocacy references","references externalinks","externalinks category","category articles","articles created","created via","article wizard","wizard category","category tourism","tourism agencies","agencies category","category tourism","africategory business","business organizations"],"new_description":"africa travel_association ata non_profit international_travel industry_trade association established ata defines mission promote travel_tourism transporto within africand strengthen partnerships ata serves bothe public_private_sectors international_travel tourism_industry ata membership comprises african governments tourism bureaus boards airlines cruise_lines hotels_resorts front line travel sellers providers tour_operators travel_agents mediand affiliate members ata partners withe african union commission promote sustainable_development tourism across annual events africand united_states bring together industry leaders shape africa tourism registered c non association united_states usa headquarters washington chapters around world ata overseen international board directors executive_director managementeam advocate africas travel_destination raise awareness africas destination rich tourism opportunities products promote positive news africa develop promote travel programs across country private_sector members marketing serve liaison africa member_countries present opportunities members market showcase products services offer members continuing education training learning opportunities help members increase business exposure networking tourism stakeholders discuss issues common interest concern conduct research partner organizations africa events presidential forum ata annual presidential forums tourism hosted new_york university africa house take_place inew_york every september parallel withe united_nations general_assembly meetings one_day event offers africa leaders important opportunity speak travel_tourism contributes country economy african leaders african union commission benin burundi ghana gambia liberia malawi morocco world bank addressed forum us africa tourism ata leading industry event usa takes_place conjunction leading travel_trade show attracting tourism_industry professionals representatives eager learn possible policy choices related_tourism africa participants also explore key growth trends helped african tourism grow steadily recent_years help companies develop strategic business partnerships promotional road shows ata increases visibility africas destination north_american marketplace showcasing destination private_sector partners products largely metropolitan like phoenix_arizona phoenix montreal well major_cities like new_york los_angeles participates global industry travel_trade shows europe asiand africa cultural_tourism symposium tourism sustainable_tourism art culture_heritage travel responsible_tourism green travel conservation movement conservation come together explore africa emerging ecotourism eco cultural_tourism industries countries hosting travel products delegates site field visits case_studies past symposium city calabar nigeria kampala uganda zanzibar tanzania morocco cameroon abuja nigeria marrakech morocco cape_town south_africa senegal annual world congress ata africa provides networking learning agenda shaping platform travel professionals around world addresses timely industry topics offers professional development opportunities delegates also participate african bazaar buyers sellers networking events host country day dinners pre post country tours ata th_annual world congress uganda rwanda host ata st annual world congress spring young professionals program mission africa travel_association young professionals program ypp engage tourism_hospitality students young industry professionals africa tourism_industry future ata membership achieve mission ypp offers two programs serve young_people different points education professional developmenthe ata student union ata young professionals network two programs ypp aims help future industry leaders gain access tourism professionals focusing africa order help build relationships networks serve industry ata later encouraging thexchange knowledge ideas interests providing opportunities training travel_destination africa ypp also connects new generation members accomplished tourism professionals africa diaspora critical resource tourism_promotion investmento encourage participation industry ata launched diaspora initiative withe_goal engaging african diaspora leaders entrepreneurs media tourism_promotion africa strategic partnership withe african union commission may african union commission africa travel_association ata signed memorandum understanding supporting promotion sustainable_development tourism africa withe understanding world effective regional_tourism bodies like pacific asia travel_association caribbean_tourism organization cto africa yeto formally adopt continent organization asuch service tourismarketing research advocacy references_externalinks category_articles_created_via article_wizard_category_tourism agencies_category_tourism africategory business organizations africa"},{"title":"Afterhours club","description":"an afterhours club akafter hours club and afterhour club inorth americand europe is a nightclub that is open pasthe designated curfew closing time for clubs that serve alcohol which is often an hour long such clubs may ceaserving alcohol athe designated time but have special permission to remain open to customers and to sell non alcoholic sodas and typically high caffeine drinks morecently since in western europe specifically in germany spain and the united kingdom hour music andance licences have been granted and which do not necessarily have alcohol restrictions inorth americafter hours clubs are venues typically small for i professional musicians and entertainers to perform after their main gigs and ii patronseeking entertainment after theater and such selected after hours clubs europe fabriclub fabric london egg club london space club ibiza historic europe trade nightclub trade londonorth america club space miami stereo nightclub stereo montreal historic north america macomba lounge chicago catacombs nightclub philadelphia catacombs philadelphia save the robots new york city new york see also techno references category nightclubs category electronic dance music","main_words":["club","hours","club","club","inorth_americand","europe","nightclub","open","pasthe","designated","curfew","closing_time","clubs","serve","alcohol","often","hour","long","clubs","may","alcohol","athe","designated","time","special","permission","remain","open","customers","sell","non_alcoholic","typically","high","caffeine","drinks","morecently","since","western_europe","specifically","germany","spain","united_kingdom","hour","music","andance","licences","granted","necessarily","alcohol","restrictions","inorth","hours","clubs","venues","typically","small","professional","musicians","entertainers","perform","main","gigs","ii","entertainment","theater","selected","hours","clubs","europe","fabric","club","london","space","club","ibiza","historic","europe","trade","nightclub","trade","america","club","space","miami","stereo","nightclub","stereo","montreal","historic","north_america","lounge","chicago","catacombs","nightclub","philadelphia","catacombs","philadelphia","save","robots","new_york","city_new_york","see_also","techno"],"clean_bigrams":[["hours","club"],["club","inorth"],["inorth","americand"],["americand","europe"],["open","pasthe"],["pasthe","designated"],["designated","curfew"],["curfew","closing"],["closing","time"],["serve","alcohol"],["hour","long"],["clubs","may"],["alcohol","athe"],["athe","designated"],["designated","time"],["special","permission"],["remain","open"],["sell","non"],["non","alcoholic"],["typically","high"],["high","caffeine"],["caffeine","drinks"],["drinks","morecently"],["morecently","since"],["western","europe"],["europe","specifically"],["germany","spain"],["united","kingdom"],["kingdom","hour"],["hour","music"],["music","andance"],["andance","licences"],["alcohol","restrictions"],["restrictions","inorth"],["hours","clubs"],["venues","typically"],["typically","small"],["professional","musicians"],["main","gigs"],["hours","clubs"],["clubs","europe"],["fabric","london"],["london","egg"],["egg","club"],["club","london"],["london","space"],["space","club"],["club","ibiza"],["ibiza","historic"],["historic","europe"],["europe","trade"],["trade","nightclub"],["nightclub","trade"],["america","club"],["club","space"],["space","miami"],["miami","stereo"],["stereo","nightclub"],["nightclub","stereo"],["stereo","montreal"],["montreal","historic"],["historic","north"],["north","america"],["lounge","chicago"],["chicago","catacombs"],["catacombs","nightclub"],["nightclub","philadelphia"],["philadelphia","catacombs"],["catacombs","philadelphia"],["philadelphia","save"],["robots","new"],["new","york"],["york","city"],["city","new"],["new","york"],["york","see"],["see","also"],["also","techno"],["techno","references"],["references","category"],["category","nightclubs"],["nightclubs","category"],["category","electronic"],["electronic","dance"],["dance","music"]],"all_collocations":["hours club","club inorth","inorth americand","americand europe","open pasthe","pasthe designated","designated curfew","curfew closing","closing time","serve alcohol","hour long","clubs may","alcohol athe","athe designated","designated time","special permission","remain open","sell non","non alcoholic","typically high","high caffeine","caffeine drinks","drinks morecently","morecently since","western europe","europe specifically","germany spain","united kingdom","kingdom hour","hour music","music andance","andance licences","alcohol restrictions","restrictions inorth","hours clubs","venues typically","typically small","professional musicians","main gigs","hours clubs","clubs europe","fabric london","london egg","egg club","club london","london space","space club","club ibiza","ibiza historic","historic europe","europe trade","trade nightclub","nightclub trade","america club","club space","space miami","miami stereo","stereo nightclub","nightclub stereo","stereo montreal","montreal historic","historic north","north america","lounge chicago","chicago catacombs","catacombs nightclub","nightclub philadelphia","philadelphia catacombs","catacombs philadelphia","philadelphia save","robots new","new york","york city","city new","new york","york see","see also","also techno","techno references","references category","category nightclubs","nightclubs category","category electronic","electronic dance","dance music"],"new_description":"club hours club club inorth_americand europe nightclub open pasthe designated curfew closing_time clubs serve alcohol often hour long clubs may alcohol athe designated time special permission remain open customers sell non_alcoholic typically high caffeine drinks morecently since western_europe specifically germany spain united_kingdom hour music andance licences granted necessarily alcohol restrictions inorth hours clubs venues typically small professional musicians entertainers perform main gigs ii entertainment theater selected hours clubs europe fabric london_egg club london space club ibiza historic europe trade nightclub trade america club space miami stereo nightclub stereo montreal historic north_america lounge chicago catacombs nightclub philadelphia catacombs philadelphia save robots new_york city_new_york see_also techno references_category_nightclubs_category_electronic_dance_music"},{"title":"Agritourism","description":"image kretinga rural tourismjpg thumb a lodging cottage in a rural area of lithuania image covasna rural tourismjpeg thumb rural building in covasna romania image stream cliff wineryjpg thumb stream cliffarm a herb farm indiana file kansas agrotourism disclaimerpng thumb sign disclaiming legal responsibility at a kansas agritourism business agritourism or agrotourism as it is defined most broadly involves any agriculture agriculturally based operation or activity that brings visitors to a farm oranch agritourism has different definitions in different parts of the world and sometimes referspecifically to farm stay s as in italy elsewhere agritourism includes a wide variety of activities including buying produce direct from a farm stand navigating a corn maze slopping hogs picking fruit feeding animals or staying at a bed and breakfast b on a farm agritourism is a form of niche tourism that is considered a growth industry in many parts of the world including australia canada the united states and the philippines other terms associated with agritourism are agritainment value added products farm direct marketing and sustainable agriculture public awareness people have become more interested in how their food is produced they wanto meet farmers and processors and talk withem about what goes into food production for many people who visit farms especially children the visit marks the firstime they see the source of their food be it a dairy cattle dairy cow an ear of maize corn growing in a field or an apple they can pick right off a tree farmers and ranchers use this interesto develop traffic atheir farm oranch and interest in the quality of their products as well as awareness of their products volume issue accessdate february safety while revenue and education are often primary drivers for farmers to diversify their operations and invite guests onto their property safety is not always a topriority accidents involving tractors wagon rides trips falls and traffic occur at agritourism operations on a regular basis agritourism by country switzerland jucker farm in seegr ben a canton of z rich italy the country hotel scene has come on apace since when the michelin guide michelin guide to italy listed not a singlestablishment in the chianti area but even after the boom in rural accommodation in the s and s the choice wastillimited by and large to basic agriturismo farm holiday places orather stuffy country house hotels the past few years have seen the arrival of a handful of stylish luxury spa resorts and some mid range options where guests benefit from a hands on personal approach since agritourism in italy is formally regulated by a state law n year emended in law n year the law states basic requirements to claim the title of agriturismo andelegatesingle regions to furtheregulate the matter italian agritourism attract visitors from all around the globe in particular given the luxury nature of rural tourism international flows are demandriven india since agriculture tourism is operational it started in baramati agri tourism center under the guidance of pandurang taware he received the national tourism award from the president of india for the most innovative tourism product agri tourism indiatdc is pioneer in the development and marketing of agri tourism concept indiatdc as of has affiliated farmers and operates agri tourism center in theirespective villages in the state of maharashtra turkey in the province of hatay the village of vakifli has a small eco and cultural tourism industry as it is often touted as the last rural village in turkey where armenians live the small village has a guest house where visitors can buy organic products and see the life of the village there is potential for ecotourism in the aegean area of western turkey as well and is a growing industry there united states agritourism is widespread in the united states agritourists can choose from a wide range of activities that include fruit picking fruits and vegetable s riding horse s tasting honey learning about wine and cheese making or shopping in farm gift shops and farm stands for local and regional produce or hand crafted gift s according to the usda cooperative state research education and extension service cooperative stateducation and extension service tourism is becoming increasingly importanto the us economy a conservativestimate from the federal reserve board in kansas based on data shows that basic travel and tourism industries accounted for percent of all us employment even more telling data from the travel industry association of america indicate that out of every people in the us has a job directly resulting from travel expenditures economic research economic impact of travel and tourism travel industry association of america retrievedecember through the small farm center athe university of californiagricultural tourism or agritourism is one alternative for improving the incomes and potential economic viability of small farms and rural communitiesome forms of agritourism enterprises are well developed in california including fairs and festivals other possibilitiestill offer potential for developmenthe uc small farm center has developed a californiagritourism database that provides visitors and potential entrepreneurs with information about existing agritourism locations throughouthe state the publication promoting tourism in rural america explains the need for planning and marketing a rural community and weighing the pros and cons of tourism according to the publication local citizen participation is helpful and should be included in starting any kind of a tourism program citizen participation in planning tourism can contribute to building a successful program that enhances the community additional websites that promote and publicize agritourism in the united states include rural bounty founded by agritourism consultant janeckert farm stay us a nationwide directory ofarm stays and the farm stay project a blog that profiles farm stays and tracks agritourism news the agri tourism development corporation of pakistan atdcp is a non government not for profit organization aiming to connect people through food farms and education working to promote agritourism idea in pakistan atdcp educates consumers about an organic healthy life style raises awareness about food from farm to dining table and introduces agri tourism entertainment farming to explore the beauty of agri fields and farm fresh feelings atdcp also works as a training institute for agripreneurs where the latter are trained in consumer organic style needs atdcp introduces a new breed of agripreneurs to the business of agri tourism entertainment farming for agricultural students and the farming community it organises agricultural events agri themed festivals agri field trips and field activities agri field picnic parties for school kids and for the community to explore agritourism ideas in pakistan tariq tanveer is the ceo founder dude ranches guest ranch dude or guest ranches offer tourists the chance to work on cattle ranch es and sometimes participate in cattle drives the fact sheet promoting the farm and ranch recreation business gives farmers and ranchers information marketing andeveloping strategies to win tourism dollars dude ranches are common in the united states and australian outback see also agricultural show ecotourism farm stay geotourism rural tourism wwoof willing workers on organic farms references externalinks an online resource developed by the national children s center forural and agricultural health and safety nccrahs in category agriculture in society category rural tourism category types of tourism category adventure travel","main_words":["image","rural","thumb","lodging","cottage","rural","area","lithuania","image","rural","thumb","rural","building","romania","image","stream","cliff","thumb","stream","herb","farm","indiana","file","kansas","thumb","sign","legal","responsibility","kansas","agritourism","business","agritourism","defined","broadly","involves","agriculture","based","operation","activity","brings","visitors","farm","agritourism","different","definitions","different_parts","world","sometimes","farm","stay","italy","elsewhere","agritourism","includes","wide_variety","activities","including","buying","produce","direct","farm","stand","corn","maze","picking","fruit","feeding","animals","staying","bed","breakfast","b","farm","agritourism","form","niche","tourism","considered","growth","industry","many_parts","world","including","australia","canada","united_states","philippines","terms","associated","agritourism","value","added","products","farm","direct","marketing","sustainable","agriculture","public","awareness","people","become","interested","food","produced","wanto","meet","farmers","talk","withem","goes","food","production","many_people","visit","farms","especially","children","visit","marks","firstime","see","source","food","dairy","cattle","dairy","cow","maize","corn","growing","field","apple","pick","right","tree","farmers","use","interesto","develop","traffic","atheir","farm","interest","quality","products","well","awareness","products","volume_issue","accessdate","february","safety","revenue","education","often","primary","drivers","farmers","diversify","operations","invite","guests","onto","property","safety","always","accidents","involving","wagon","rides","trips","falls","traffic","occur","agritourism","operations","regular","basis","agritourism","country","switzerland","farm","ben","canton","rich","italy","country","hotel","scene","come","since","michelin_guide","michelin_guide","italy","listed","chianti","area","even","boom","rural","accommodation","choice","large","basic","farm","holiday","places","country","house","hotels","past_years","seen","arrival","handful","luxury","spa","resorts","mid","range","options","guests","benefit","hands","personal","approach","since","agritourism","italy","formally","regulated","state","law","n","year","law","n","year","law","states","basic","requirements","claim","title","regions","matter","italian","agritourism","attract","visitors","around","globe","particular","given","luxury","nature","rural_tourism","international","flows","india","since","agriculture","tourism","operational","started","agri","tourism","center","guidance","received","national_tourism","award","president","india","innovative","tourism","product","agri","tourism","pioneer","development","marketing","agri","tourism","concept","affiliated","farmers","operates","agri","tourism","center","theirespective","villages","state","maharashtra","turkey","province","village","small","eco","cultural_tourism","industry","often","last","rural","village","turkey","live","small","village","guest","house","visitors","buy","organic","products","see","life","village","potential","ecotourism","area","western","turkey","well","growing","industry","united_states","agritourism","widespread","united_states","choose","wide_range","activities","include","fruit","picking","fruits","vegetable","riding","horse","tasting","honey","learning","wine","cheese","making","shopping","farm","gift","shops","farm","stands","local","regional","produce","hand","gift","according","usda","cooperative","state","research","education","extension","service","cooperative","extension","service","tourism","becoming_increasingly","importanto","us","economy","federal","reserve","board","kansas","based","data","shows","basic","travel_tourism","industries","accounted","percent","us","employment","even","telling","data","travel_industry_association","america","indicate","every","people","us","job","directly","resulting","travel","expenditures","economic","research","economic_impact","travel_tourism","travel_industry_association","america","retrievedecember","small","farm","center","athe_university","tourism","agritourism","one","alternative","improving","incomes","potential","economic","viability","small","farms","rural","forms","agritourism","enterprises","well","developed","california","including","fairs","festivals","offer","potential","developmenthe","small","farm","center","developed","database","provides","visitors","potential","entrepreneurs","information","existing","agritourism","locations","throughouthe","state","publication","promoting_tourism","rural","america","explains","need","planning","marketing","rural","community","weighing","tourism","according","publication","local","citizen","participation","helpful","included","starting","kind","tourism","program","citizen","participation","planning","tourism","contribute","building","successful","program","enhances","community","additional","websites","promote","agritourism","united_states","include","rural","bounty","founded","agritourism","consultant","farm","stay","us","nationwide","directory","stays","farm","stay","project","blog","profiles","farm","stays","tracks","agritourism","news","agri","tourism_development","corporation","pakistan","atdcp","non","government","profit_organization","aiming","connect","people","food","farms","education","working","promote","agritourism","idea","pakistan","atdcp","consumers","organic","healthy","life","style","raises","awareness","food","farm","dining","table","introduces","agri","tourism","entertainment","farming","explore","beauty","agri","fields","farm","fresh","feelings","atdcp","also","works","training","institute","latter","trained","consumer","organic","style","needs","atdcp","introduces","new","breed","business","agri","tourism","entertainment","farming","agricultural","students","farming","community","agricultural","events","agri","themed","festivals","agri","field","trips","field","activities","agri","field","picnic","parties","school","kids","community","explore","agritourism","ideas","pakistan","ceo","founder","dude","ranches","guest","ranch","dude","guest","ranches","offer","tourists","chance","work","cattle","ranch","sometimes","participate","cattle","drives","fact","sheet","promoting","farm","ranch","recreation","business","gives","farmers","information","marketing","andeveloping","strategies","win","tourism","dollars","dude","ranches","common","united_states","australian","outback","see_also","agricultural","show","ecotourism","farm","stay","geotourism","rural_tourism","wwoof","willing","workers","organic","farms","references_externalinks","online","resource","developed","national","children","center","agricultural","health","safety","category","agriculture","society","category","rural_tourism","category_types","tourism_category","adventure_travel"],"clean_bigrams":[["lodging","cottage"],["rural","area"],["lithuania","image"],["thumb","rural"],["rural","building"],["romania","image"],["image","stream"],["stream","cliff"],["thumb","stream"],["herb","farm"],["farm","indiana"],["indiana","file"],["file","kansas"],["thumb","sign"],["legal","responsibility"],["kansas","agritourism"],["agritourism","business"],["business","agritourism"],["broadly","involves"],["based","operation"],["brings","visitors"],["farm","agritourism"],["different","definitions"],["different","parts"],["farm","stay"],["italy","elsewhere"],["elsewhere","agritourism"],["agritourism","includes"],["wide","variety"],["activities","including"],["including","buying"],["buying","produce"],["produce","direct"],["farm","stand"],["corn","maze"],["picking","fruit"],["fruit","feeding"],["feeding","animals"],["breakfast","b"],["farm","agritourism"],["niche","tourism"],["growth","industry"],["many","parts"],["world","including"],["including","australia"],["australia","canada"],["united","states"],["terms","associated"],["value","added"],["added","products"],["products","farm"],["farm","direct"],["direct","marketing"],["sustainable","agriculture"],["agriculture","public"],["public","awareness"],["awareness","people"],["wanto","meet"],["meet","farmers"],["talk","withem"],["food","production"],["many","people"],["visit","farms"],["farms","especially"],["especially","children"],["visit","marks"],["dairy","cattle"],["cattle","dairy"],["dairy","cow"],["maize","corn"],["corn","growing"],["pick","right"],["tree","farmers"],["interesto","develop"],["develop","traffic"],["traffic","atheir"],["atheir","farm"],["products","volume"],["volume","issue"],["issue","accessdate"],["accessdate","february"],["february","safety"],["often","primary"],["primary","drivers"],["invite","guests"],["guests","onto"],["property","safety"],["accidents","involving"],["wagon","rides"],["rides","trips"],["trips","falls"],["traffic","occur"],["agritourism","operations"],["regular","basis"],["basis","agritourism"],["country","switzerland"],["rich","italy"],["country","hotel"],["hotel","scene"],["michelin","guide"],["guide","michelin"],["michelin","guide"],["italy","listed"],["chianti","area"],["rural","accommodation"],["farm","holiday"],["holiday","places"],["country","house"],["house","hotels"],["luxury","spa"],["spa","resorts"],["mid","range"],["range","options"],["guests","benefit"],["personal","approach"],["approach","since"],["since","agritourism"],["formally","regulated"],["state","law"],["law","n"],["n","year"],["law","n"],["n","year"],["law","states"],["states","basic"],["basic","requirements"],["matter","italian"],["italian","agritourism"],["agritourism","attract"],["attract","visitors"],["particular","given"],["luxury","nature"],["rural","tourism"],["tourism","international"],["international","flows"],["india","since"],["since","agriculture"],["agriculture","tourism"],["agri","tourism"],["tourism","center"],["national","tourism"],["tourism","award"],["innovative","tourism"],["tourism","product"],["product","agri"],["agri","tourism"],["agri","tourism"],["tourism","concept"],["affiliated","farmers"],["operates","agri"],["agri","tourism"],["tourism","center"],["theirespective","villages"],["maharashtra","turkey"],["small","eco"],["cultural","tourism"],["tourism","industry"],["last","rural"],["rural","village"],["small","village"],["guest","house"],["buy","organic"],["organic","products"],["western","turkey"],["growing","industry"],["united","states"],["states","agritourism"],["united","states"],["wide","range"],["include","fruit"],["fruit","picking"],["picking","fruits"],["riding","horse"],["tasting","honey"],["honey","learning"],["cheese","making"],["farm","gift"],["gift","shops"],["farm","stands"],["regional","produce"],["usda","cooperative"],["cooperative","state"],["state","research"],["research","education"],["extension","service"],["service","cooperative"],["extension","service"],["service","tourism"],["becoming","increasingly"],["increasingly","importanto"],["us","economy"],["federal","reserve"],["reserve","board"],["kansas","based"],["data","shows"],["basic","travel"],["tourism","industries"],["industries","accounted"],["us","employment"],["employment","even"],["telling","data"],["travel","industry"],["industry","association"],["america","indicate"],["every","people"],["job","directly"],["directly","resulting"],["travel","expenditures"],["expenditures","economic"],["economic","research"],["research","economic"],["economic","impact"],["tourism","travel"],["travel","industry"],["industry","association"],["america","retrievedecember"],["small","farm"],["farm","center"],["center","athe"],["athe","university"],["one","alternative"],["potential","economic"],["economic","viability"],["small","farms"],["agritourism","enterprises"],["well","developed"],["california","including"],["including","fairs"],["offer","potential"],["small","farm"],["farm","center"],["provides","visitors"],["potential","entrepreneurs"],["existing","agritourism"],["agritourism","locations"],["locations","throughouthe"],["throughouthe","state"],["publication","promoting"],["promoting","tourism"],["rural","america"],["america","explains"],["rural","community"],["tourism","according"],["publication","local"],["local","citizen"],["citizen","participation"],["tourism","program"],["program","citizen"],["citizen","participation"],["planning","tourism"],["successful","program"],["community","additional"],["additional","websites"],["promote","agritourism"],["united","states"],["states","include"],["include","rural"],["rural","bounty"],["bounty","founded"],["agritourism","consultant"],["farm","stay"],["stay","us"],["nationwide","directory"],["farm","stay"],["stay","project"],["profiles","farm"],["farm","stays"],["tracks","agritourism"],["agritourism","news"],["agri","tourism"],["tourism","development"],["development","corporation"],["pakistan","atdcp"],["non","government"],["profit","organization"],["organization","aiming"],["connect","people"],["food","farms"],["education","working"],["promote","agritourism"],["agritourism","idea"],["pakistan","atdcp"],["organic","healthy"],["healthy","life"],["life","style"],["style","raises"],["raises","awareness"],["dining","table"],["introduces","agri"],["agri","tourism"],["tourism","entertainment"],["entertainment","farming"],["agri","fields"],["farm","fresh"],["fresh","feelings"],["feelings","atdcp"],["atdcp","also"],["also","works"],["training","institute"],["consumer","organic"],["organic","style"],["style","needs"],["needs","atdcp"],["atdcp","introduces"],["new","breed"],["agri","tourism"],["tourism","entertainment"],["entertainment","farming"],["agricultural","students"],["farming","community"],["agricultural","events"],["events","agri"],["agri","themed"],["themed","festivals"],["festivals","agri"],["agri","field"],["field","trips"],["field","activities"],["activities","agri"],["agri","field"],["field","picnic"],["picnic","parties"],["school","kids"],["explore","agritourism"],["agritourism","ideas"],["ceo","founder"],["founder","dude"],["dude","ranches"],["ranches","guest"],["guest","ranch"],["ranch","dude"],["guest","ranches"],["ranches","offer"],["offer","tourists"],["cattle","ranch"],["sometimes","participate"],["cattle","drives"],["fact","sheet"],["sheet","promoting"],["ranch","recreation"],["recreation","business"],["business","gives"],["gives","farmers"],["information","marketing"],["marketing","andeveloping"],["andeveloping","strategies"],["win","tourism"],["tourism","dollars"],["dollars","dude"],["dude","ranches"],["united","states"],["australian","outback"],["outback","see"],["see","also"],["also","agricultural"],["agricultural","show"],["show","ecotourism"],["ecotourism","farm"],["farm","stay"],["stay","geotourism"],["geotourism","rural"],["rural","tourism"],["tourism","wwoof"],["wwoof","willing"],["willing","workers"],["organic","farms"],["farms","references"],["references","externalinks"],["online","resource"],["resource","developed"],["national","children"],["agricultural","health"],["category","agriculture"],["society","category"],["category","rural"],["rural","tourism"],["tourism","category"],["category","types"],["tourism","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["lodging cottage","rural area","lithuania image","thumb rural","rural building","romania image","image stream","stream cliff","thumb stream","herb farm","farm indiana","indiana file","file kansas","thumb sign","legal responsibility","kansas agritourism","agritourism business","business agritourism","broadly involves","based operation","brings visitors","farm agritourism","different definitions","different parts","farm stay","italy elsewhere","elsewhere agritourism","agritourism includes","wide variety","activities including","including buying","buying produce","produce direct","farm stand","corn maze","picking fruit","fruit feeding","feeding animals","breakfast b","farm agritourism","niche tourism","growth industry","many parts","world including","including australia","australia canada","united states","terms associated","value added","added products","products farm","farm direct","direct marketing","sustainable agriculture","agriculture public","public awareness","awareness people","wanto meet","meet farmers","talk withem","food production","many people","visit farms","farms especially","especially children","visit marks","dairy cattle","cattle dairy","dairy cow","maize corn","corn growing","pick right","tree farmers","interesto develop","develop traffic","traffic atheir","atheir farm","products volume","volume issue","issue accessdate","accessdate february","february safety","often primary","primary drivers","invite guests","guests onto","property safety","accidents involving","wagon rides","rides trips","trips falls","traffic occur","agritourism operations","regular basis","basis agritourism","country switzerland","rich italy","country hotel","hotel scene","michelin guide","guide michelin","michelin guide","italy listed","chianti area","rural accommodation","farm holiday","holiday places","country house","house hotels","luxury spa","spa resorts","mid range","range options","guests benefit","personal approach","approach since","since agritourism","formally regulated","state law","law n","n year","law n","n year","law states","states basic","basic requirements","matter italian","italian agritourism","agritourism attract","attract visitors","particular given","luxury nature","rural tourism","tourism international","international flows","india since","since agriculture","agriculture tourism","agri tourism","tourism center","national tourism","tourism award","innovative tourism","tourism product","product agri","agri tourism","agri tourism","tourism concept","affiliated farmers","operates agri","agri tourism","tourism center","theirespective villages","maharashtra turkey","small eco","cultural tourism","tourism industry","last rural","rural village","small village","guest house","buy organic","organic products","western turkey","growing industry","united states","states agritourism","united states","wide range","include fruit","fruit picking","picking fruits","riding horse","tasting honey","honey learning","cheese making","farm gift","gift shops","farm stands","regional produce","usda cooperative","cooperative state","state research","research education","extension service","service cooperative","extension service","service tourism","becoming increasingly","increasingly importanto","us economy","federal reserve","reserve board","kansas based","data shows","basic travel","tourism industries","industries accounted","us employment","employment even","telling data","travel industry","industry association","america indicate","every people","job directly","directly resulting","travel expenditures","expenditures economic","economic research","research economic","economic impact","tourism travel","travel industry","industry association","america retrievedecember","small farm","farm center","center athe","athe university","one alternative","potential economic","economic viability","small farms","agritourism enterprises","well developed","california including","including fairs","offer potential","small farm","farm center","provides visitors","potential entrepreneurs","existing agritourism","agritourism locations","locations throughouthe","throughouthe state","publication promoting","promoting tourism","rural america","america explains","rural community","tourism according","publication local","local citizen","citizen participation","tourism program","program citizen","citizen participation","planning tourism","successful program","community additional","additional websites","promote agritourism","united states","states include","include rural","rural bounty","bounty founded","agritourism consultant","farm stay","stay us","nationwide directory","farm stay","stay project","profiles farm","farm stays","tracks agritourism","agritourism news","agri tourism","tourism development","development corporation","pakistan atdcp","non government","profit organization","organization aiming","connect people","food farms","education working","promote agritourism","agritourism idea","pakistan atdcp","organic healthy","healthy life","life style","style raises","raises awareness","dining table","introduces agri","agri tourism","tourism entertainment","entertainment farming","agri fields","farm fresh","fresh feelings","feelings atdcp","atdcp also","also works","training institute","consumer organic","organic style","style needs","needs atdcp","atdcp introduces","new breed","agri tourism","tourism entertainment","entertainment farming","agricultural students","farming community","agricultural events","events agri","agri themed","themed festivals","festivals agri","agri field","field trips","field activities","activities agri","agri field","field picnic","picnic parties","school kids","explore agritourism","agritourism ideas","ceo founder","founder dude","dude ranches","ranches guest","guest ranch","ranch dude","guest ranches","ranches offer","offer tourists","cattle ranch","sometimes participate","cattle drives","fact sheet","sheet promoting","ranch recreation","recreation business","business gives","gives farmers","information marketing","marketing andeveloping","andeveloping strategies","win tourism","tourism dollars","dollars dude","dude ranches","united states","australian outback","outback see","see also","also agricultural","agricultural show","show ecotourism","ecotourism farm","farm stay","stay geotourism","geotourism rural","rural tourism","tourism wwoof","wwoof willing","willing workers","organic farms","farms references","references externalinks","online resource","resource developed","national children","agricultural health","category agriculture","society category","category rural","rural tourism","tourism category","category types","tourism category","category adventure","adventure travel"],"new_description":"image rural thumb lodging cottage rural area lithuania image rural thumb rural building romania image stream cliff thumb stream herb farm indiana file kansas thumb sign legal responsibility kansas agritourism business agritourism defined broadly involves agriculture based operation activity brings visitors farm agritourism different definitions different_parts world sometimes farm stay italy elsewhere agritourism includes wide_variety activities including buying produce direct farm stand corn maze picking fruit feeding animals staying bed breakfast b farm agritourism form niche tourism considered growth industry many_parts world including australia canada united_states philippines terms associated agritourism value added products farm direct marketing sustainable agriculture public awareness people become interested food produced wanto meet farmers talk withem goes food production many_people visit farms especially children visit marks firstime see source food dairy cattle dairy cow maize corn growing field apple pick right tree farmers use interesto develop traffic atheir farm interest quality products well awareness products volume_issue accessdate february safety revenue education often primary drivers farmers diversify operations invite guests onto property safety always accidents involving wagon rides trips falls traffic occur agritourism operations regular basis agritourism country switzerland farm ben canton rich italy country hotel scene come since michelin_guide michelin_guide italy listed chianti area even boom rural accommodation choice large basic farm holiday places country house hotels past_years seen arrival handful luxury spa resorts mid range options guests benefit hands personal approach since agritourism italy formally regulated state law n year law n year law states basic requirements claim title regions matter italian agritourism attract visitors around globe particular given luxury nature rural_tourism international flows india since agriculture tourism operational started agri tourism center guidance received national_tourism award president india innovative tourism product agri tourism pioneer development marketing agri tourism concept affiliated farmers operates agri tourism center theirespective villages state maharashtra turkey province village small eco cultural_tourism industry often last rural village turkey live small village guest house visitors buy organic products see life village potential ecotourism area western turkey well growing industry united_states agritourism widespread united_states choose wide_range activities include fruit picking fruits vegetable riding horse tasting honey learning wine cheese making shopping farm gift shops farm stands local regional produce hand gift according usda cooperative state research education extension service cooperative extension service tourism becoming_increasingly importanto us economy federal reserve board kansas based data shows basic travel_tourism industries accounted percent us employment even telling data travel_industry_association america indicate every people us job directly resulting travel expenditures economic research economic_impact travel_tourism travel_industry_association america retrievedecember small farm center athe_university tourism agritourism one alternative improving incomes potential economic viability small farms rural forms agritourism enterprises well developed california including fairs festivals offer potential developmenthe small farm center developed database provides visitors potential entrepreneurs information existing agritourism locations throughouthe state publication promoting_tourism rural america explains need planning marketing rural community weighing tourism according publication local citizen participation helpful included starting kind tourism program citizen participation planning tourism contribute building successful program enhances community additional websites promote agritourism united_states include rural bounty founded agritourism consultant farm stay us nationwide directory stays farm stay project blog profiles farm stays tracks agritourism news agri tourism_development corporation pakistan atdcp non government profit_organization aiming connect people food farms education working promote agritourism idea pakistan atdcp consumers organic healthy life style raises awareness food farm dining table introduces agri tourism entertainment farming explore beauty agri fields farm fresh feelings atdcp also works training institute latter trained consumer organic style needs atdcp introduces new breed business agri tourism entertainment farming agricultural students farming community agricultural events agri themed festivals agri field trips field activities agri field picnic parties school kids community explore agritourism ideas pakistan ceo founder dude ranches guest ranch dude guest ranches offer tourists chance work cattle ranch sometimes participate cattle drives fact sheet promoting farm ranch recreation business gives farmers information marketing andeveloping strategies win tourism dollars dude ranches common united_states australian outback see_also agricultural show ecotourism farm stay geotourism rural_tourism wwoof willing workers organic farms references_externalinks online resource developed national children center agricultural health safety category agriculture society category rural_tourism category_types tourism_category adventure_travel"},{"title":"AIA Guide to New York City","description":"the aia guide to new york city by norval whitelliot willensky and fran leadon is an extensive catalogue with descriptions critique and photographs of significant and noteworthy architecture throughouthe five boroughs of new york city norval white norval willensky elliot and leadon fran aia guide to new york city th editionew york oxford university press hardcover paperback originally published in the fifth edition with new co author fran leadon was published inew york times april the grand cornice and pedimentour aia preview edition see also american institute of architects architecture of new york city to cite the fourth edition of this book in other articles to cite the fifth edition of this book in other articles references notes externalinks fifth edition google books fourth edition google books category architecture books category architecture inew york city category city guides category books about new york city","main_words":["guide","new_york","city","fran","extensive","catalogue","descriptions","critique","photographs","significant","noteworthy","architecture","throughouthe","five","boroughs","new_york","city","white","elliot","fran","guide","new_york","city","th","york","oxford_university_press","hardcover","originally_published","fifth","edition","new","author","fran","times_april","grand","preview","edition","see_also","american","institute","architects","architecture","new_york","city","cite","fourth_edition","book","articles","cite","fifth","edition","book","articles","references","notes_externalinks","fifth","edition","google_books","fourth_edition","architecture","books_category","architecture","inew_york_city","category_city_guides","category_books","new_york","city"],"clean_bigrams":[["new","york"],["york","city"],["extensive","catalogue"],["descriptions","critique"],["noteworthy","architecture"],["architecture","throughouthe"],["throughouthe","five"],["five","boroughs"],["new","york"],["york","city"],["new","york"],["york","city"],["city","th"],["york","oxford"],["oxford","university"],["university","press"],["press","hardcover"],["originally","published"],["fifth","edition"],["author","fran"],["published","inew"],["inew","york"],["york","times"],["times","april"],["preview","edition"],["edition","see"],["see","also"],["also","american"],["american","institute"],["architects","architecture"],["new","york"],["york","city"],["fourth","edition"],["fifth","edition"],["articles","references"],["references","notes"],["notes","externalinks"],["externalinks","fifth"],["fifth","edition"],["edition","google"],["google","books"],["books","fourth"],["fourth","edition"],["edition","google"],["google","books"],["books","category"],["category","architecture"],["architecture","books"],["books","category"],["category","architecture"],["architecture","inew"],["inew","york"],["york","city"],["city","category"],["category","city"],["city","guides"],["guides","category"],["category","books"],["new","york"],["york","city"]],"all_collocations":["new york","york city","extensive catalogue","descriptions critique","noteworthy architecture","architecture throughouthe","throughouthe five","five boroughs","new york","york city","new york","york city","city th","york oxford","oxford university","university press","press hardcover","originally published","fifth edition","author fran","published inew","inew york","york times","times april","preview edition","edition see","see also","also american","american institute","architects architecture","new york","york city","fourth edition","fifth edition","articles references","references notes","notes externalinks","externalinks fifth","fifth edition","edition google","google books","books fourth","fourth edition","edition google","google books","books category","category architecture","architecture books","books category","category architecture","architecture inew","inew york","york city","city category","category city","city guides","guides category","category books","new york","york city"],"new_description":"guide new_york city fran extensive catalogue descriptions critique photographs significant noteworthy architecture throughouthe five boroughs new_york city white elliot fran guide new_york city th york oxford_university_press hardcover originally_published fifth edition new author fran published_inew_york times_april grand preview edition see_also american institute architects architecture new_york city cite fourth_edition book articles cite fifth edition book articles references notes_externalinks fifth edition google_books fourth_edition google_books_category architecture books_category architecture inew_york_city category_city_guides category_books new_york city"},{"title":"Airbus Defence and Space Spaceplane","description":"imageads astrium space tourism exteriorjpg thumb right mock up of the vehicle at paris air show the airbus defence and spaceplane also called eads astrium tbn according to some sources radio interview ofrench esastronaut jean fran ois clervoy during the show of jacques pradel on europe june is a suborbital spaceplane concept for carrying space tourist s proposed by eads astrium currently airbus defence and space the space subsidiary of theuropean consortium eads currently airbus group a full size mockup was officially unveiled in paris france on june and is now on display in the concorde hall of the mus e de l air et de l espace the project is the first space tourism entry by a major aerospace contractor it is a rocket plane with a large wingspan straight rearwards wing and a pair of canard aeronautics canards astrium d voile son projet d avion fus e le figaro june page propulsion is ensured by classical turbofan jet engine s for the atmospheric phase space jet s turbofans can cope with vacuum says eads rob coppinger flightglobalcom june and a methane oxygen rocket engine for the space tourism phase it can carry a pilot and four passengers the dimensions and looks are somewhat similar to those of a business jet eads astrium hoped to start development of this rocket plane by withe objective of a first flight in there was also a possibility thathe tunisian area of tozeur might be used for the initial flights demonstrator test flight regarding conditions encountered in thend oflight phase of a return from space occurred on juneads astrium plans to raise public and private money for its project origin of the projecthe origin of the project is a proposal by a group of young french german british and spanish engineers from eads astrium it wastudied in great secrecy for two years and finally approved by the chairman of eads astrium fran ois auque the design isimilar in concepto the rocketplane xp they looked athe main concepts under development and their studieshowed that rocketplane limited inc rocketplane s jet and rocket combination made the most senseeurope s tourist rocket popular science magazine october pg in the following months a core team came up with a detailed concept and assembled the required expertise from different areas of astrium and other eadsubsidiariesuch as eadsocata socatas well aseveral external industry partners australian designer marc newson the technical challenge of making space travel easy international herald tribune june by alice rawsthorn who earned his reputation in the field of aviation as creative director of qantas was also invited to join the project planet aerospace issueads astrium planspace tourism flight profile imageads astrium tbn flight profilesvg righthumb px a ignition of rocket engine followed by turbofan shutdown b shutdown of rocket engine acceleration g start of weightlessness phase culmination d beginning of atmospheric deceleration max acceleration g e turbofan ignition transition to aeronautical mode after takeoff the plane reaches an altitude of km this classical aeronautical phase can last for minutes the pilot shuts down the jets and starts the methane oxygen rocket engine athe rear of the vehicle the plane then raises along a vertical trajectory for seconds oflight with a top speed of mach number mach the plane is rocketed upwards the maximum acceleration is g m s at an altitude of km the rocket engine ishut down and the plane continues to climb up to a maximum altitude of km this the weightlessness phase then the plane gets down to km at a high angle of attack being progressively decelerated by the atmosphere athis altitude after transition to aeronautical mode the jets areignited to bring the plane back to a classicalanding strip description of the project presentation at iac hyderabad by christophe chavagnac flight profile provided on page imageads astrium space tourism interiorjpg thumb left interior layout of the vehicle at paris air show the total mass of the vehicle is metric tons lb atakeoff the plane has two jet engines and an oxygen methanengine with a thrust of tonseads astrium se lance dans le tourisme spatial air cosmos june n pages the rocket engine uses the technology of the vulcain the main engine of ariane but is reusable thirty times and burns methane instead of hydrogen would require too much tank volume as the density of methane is kg m and the density of hydrogen is kg m the cabin has a diameter of m ft in and provides m ft of cabin space to each passenger the seats are attached to a pendular system which allows the acceleration to be perpendicular to the back of the passengers they pivot around the attachment pointso thathe passengers are aligned rearside to the spacecraft x axis body aligned on gx axis during launch acceleration and they arearside on the negative z axis during weightlessness and reentry eads reinvents rocketplane the plane is designed for ten years of service at a flight rate of once a week industrial organisation the development will be led by eads astrium its technical responsibility currently resides withe cto robert lain development cost of billion was projected by some sources eads astrium plans to raise mostly private money for its project one of the possible public investors mentioned by fran ois auque is the southern german state of bavaria where thengines are to be produced astrium could produce up to planes a year and have a fleet of planes which would require a production of rocket engines a year they do not exclude selling models tother entrepreneursuch as richard branson sirichard branson from virgin galactic the final assembly would be in france while the other industrial facilities of astrium would provide the rocket engines ottobrunn germany or the carbon fiber structurespain other european industrial partners are associated withe projecthe target of astrium is to secure of the market of space tourism by passengers a year l entreprise veut associer capitaux publics et priv s pour le financement le figaro june page the ticket price will beuros including a round trip to the spaceportraining and luxury accommodation in a theme park resorthe closest concept is the rocketplane xp of rocketplane limited inc which shares the same overall rocket plane principle other competitors include the spaceshiptwo blue originew shepard new shepard xcor lynx andream chaser burt rutan founder of scaled composites a competitor in space tourism to eads expressed scepticism towards theads project see also dream chaser new shepard rocketplane xp spaceshiptwo xcor lynx zero emission hyper sonic transport references externalinks astrium web site brochure marc newson ltd presentation of the project athe iac in hyderabad analysis of the project by the space review popsci articleadspaceplane october video animation astrium spaceplane video presentation of the space tourism project at international astronautical congress iac min category space tourism category private spaceflight category proposed spacecraft category proposed reusable space launch systems category spaceplanes category airbus defence and space","main_words":["astrium","space_tourism","thumb","right","mock","vehicle","paris","air","show","airbus","defence","spaceplane","also_called","eads_astrium","according","sources","radio","interview","ofrench","jean","fran_ois","show","jacques","europe","june","suborbital","spaceplane","concept","carrying","space_tourist","proposed","eads_astrium","currently","airbus","defence","space","space","subsidiary","theuropean","consortium","eads","currently","airbus","group","full","size","mockup","officially","unveiled","paris_france","june","display","concorde","hall","mus","e","de","l","air","de","l","project","first","space_tourism","entry","major","aerospace","contractor","rocket","plane","large","wingspan","straight","wing","pair","aeronautics","astrium","son","e","june","page","propulsion","ensured","classical","turbofan","jet","engine","atmospheric","phase","space","jet","cope","vacuum","says","eads","rob","june","methane","oxygen","rocket_engine","space_tourism","phase","carry","pilot","four","passengers","dimensions","looks","somewhat","similar","business","jet","eads_astrium","hoped","start","development","rocket","plane","withe","objective","first_flight","also","possibility","thathe","area","might","used","initial","flights","test_flight","regarding","conditions","encountered","thend","oflight","phase","return","space","occurred","astrium","plans","raise","public_private","money","project","origin","projecthe","origin","project","proposal","group","young","french","german","british","spanish","engineers","eads_astrium","great","two_years","finally","approved","chairman","eads_astrium","fran_ois","design","isimilar","concepto","rocketplane","looked","athe","main","concepts","development","rocketplane_limited","inc","rocketplane","jet","rocket","combination","made","tourist","rocket","popular_science","magazine","october","following","months","core","team","came","detailed","concept","assembled","required","expertise","different","areas","astrium","well","aseveral","external","industry","partners","australian","designer","marc","technical","challenge","making","space_travel","easy","international","herald","tribune","june","alice","earned","reputation","field","aviation","creative","director","also","invited","join","project","planet","aerospace","astrium","tourism","flight","profile","astrium","flight","righthumb_px","ignition","rocket_engine","followed","turbofan","shutdown","b","shutdown","rocket_engine","acceleration","g","start","weightlessness","phase","beginning","atmospheric","max","acceleration","g","e","turbofan","ignition","transition","aeronautical","mode","takeoff","plane","reaches","altitude","classical","aeronautical","phase","last","minutes","pilot","shuts","jets","starts","methane","oxygen","rocket_engine","athe","rear","vehicle","plane","raises","along","vertical","trajectory","seconds","oflight","top","speed","mach","number","mach","plane","upwards","maximum","acceleration","g","altitude","rocket_engine","plane","continues","climb","maximum","altitude","weightlessness","phase","plane","gets","high","angle","attack","progressively","atmosphere","athis","altitude","transition","aeronautical","mode","jets","bring","plane","back","strip","description","project","presentation","hyderabad","flight","profile","provided","page","astrium","space_tourism","interiorjpg","thumb","left","interior","layout","vehicle","paris","air","show","total","mass","vehicle","metric","tons","plane","two","jet","engines","oxygen","thrust","astrium","lance","dans","tourisme","spatial","air","cosmos","june","n","pages","rocket_engine","uses","technology","main","engine","ariane","reusable","thirty","times","burns","methane","instead","hydrogen","would","require","much","tank","volume","density","methane","density","hydrogen","cabin","diameter","provides","cabin","space","passenger","seats","attached","system","allows","acceleration","back","passengers","around","thathe","passengers","aligned","spacecraft","x","axis","body","aligned","axis","launch","acceleration","negative","axis","weightlessness","reentry","eads","rocketplane","plane","designed","ten_years","service","flight","rate","week","industrial","organisation","development","led","eads_astrium","technical","responsibility","currently","withe","cto","robert","development","cost","billion","projected","sources","eads_astrium","plans","raise","mostly","private","money","project","one","possible","public","investors","mentioned","fran_ois","southern","german","state","bavaria","produced","astrium","could","produce","planes","year","fleet","planes","would","require","production","rocket_engines","year","selling","models","tother","richard_branson","sirichard","branson","virgin_galactic","final","assembly","would","france","industrial","facilities","astrium","would","provide","rocket_engines","germany","carbon","fiber","european","industrial","partners","associated_withe","projecthe","target","astrium","secure","market","space_tourism","passengers","year","l","pour","june","page","ticket","price","including","round","trip","luxury","accommodation","theme_park","resorthe","closest","concept","rocketplane","rocketplane_limited","inc","shares","overall","rocket","plane","principle","competitors","include","spaceshiptwo","blue_originew","shepard","new_shepard","xcor_lynx","burt_rutan","founder","scaled_composites","competitor","space_tourism","eads","expressed","towards","project","see_also","dream","new_shepard","rocketplane","spaceshiptwo","xcor_lynx","zero","hyper","sonic","transport","references_externalinks","astrium","web_site","brochure","marc","ltd","presentation","project","athe","hyderabad","analysis","project","space","review","october","video","animation","astrium","spaceplane","video","presentation","space_tourism","project","international","astronautical","congress","min","category_space_tourism","category_private_spaceflight","category_proposed","spacecraft","category_proposed","reusable","space_launch_systems","category_spaceplanes","defence","space"],"clean_bigrams":[["astrium","space"],["space","tourism"],["thumb","right"],["right","mock"],["paris","air"],["air","show"],["airbus","defence"],["spaceplane","also"],["also","called"],["called","eads"],["eads","astrium"],["sources","radio"],["radio","interview"],["interview","ofrench"],["jean","fran"],["fran","ois"],["europe","june"],["suborbital","spaceplane"],["spaceplane","concept"],["carrying","space"],["space","tourist"],["eads","astrium"],["astrium","currently"],["currently","airbus"],["airbus","defence"],["space","subsidiary"],["theuropean","consortium"],["consortium","eads"],["eads","currently"],["currently","airbus"],["airbus","group"],["full","size"],["size","mockup"],["officially","unveiled"],["paris","france"],["concorde","hall"],["mus","e"],["e","de"],["de","l"],["l","air"],["de","l"],["first","space"],["space","tourism"],["tourism","entry"],["major","aerospace"],["aerospace","contractor"],["rocket","plane"],["large","wingspan"],["wingspan","straight"],["june","page"],["page","propulsion"],["classical","turbofan"],["turbofan","jet"],["jet","engine"],["atmospheric","phase"],["phase","space"],["space","jet"],["vacuum","says"],["says","eads"],["eads","rob"],["methane","oxygen"],["oxygen","rocket"],["rocket","engine"],["space","tourism"],["tourism","phase"],["four","passengers"],["somewhat","similar"],["business","jet"],["jet","eads"],["eads","astrium"],["astrium","hoped"],["start","development"],["rocket","plane"],["withe","objective"],["first","flight"],["possibility","thathe"],["initial","flights"],["test","flight"],["flight","regarding"],["regarding","conditions"],["conditions","encountered"],["thend","oflight"],["oflight","phase"],["space","occurred"],["astrium","plans"],["raise","public"],["private","money"],["project","origin"],["projecthe","origin"],["young","french"],["french","german"],["german","british"],["spanish","engineers"],["eads","astrium"],["two","years"],["finally","approved"],["eads","astrium"],["astrium","fran"],["fran","ois"],["design","isimilar"],["looked","athe"],["athe","main"],["main","concepts"],["rocketplane","limited"],["limited","inc"],["inc","rocketplane"],["rocket","combination"],["combination","made"],["tourist","rocket"],["rocket","popular"],["popular","science"],["science","magazine"],["magazine","october"],["following","months"],["core","team"],["team","came"],["detailed","concept"],["required","expertise"],["different","areas"],["well","aseveral"],["aseveral","external"],["external","industry"],["industry","partners"],["partners","australian"],["australian","designer"],["designer","marc"],["technical","challenge"],["making","space"],["space","travel"],["travel","easy"],["easy","international"],["international","herald"],["herald","tribune"],["tribune","june"],["creative","director"],["also","invited"],["project","planet"],["planet","aerospace"],["tourism","flight"],["flight","profile"],["righthumb","px"],["rocket","engine"],["engine","followed"],["turbofan","shutdown"],["shutdown","b"],["b","shutdown"],["rocket","engine"],["engine","acceleration"],["acceleration","g"],["g","start"],["weightlessness","phase"],["max","acceleration"],["acceleration","g"],["g","e"],["e","turbofan"],["turbofan","ignition"],["ignition","transition"],["aeronautical","mode"],["plane","reaches"],["classical","aeronautical"],["aeronautical","phase"],["pilot","shuts"],["methane","oxygen"],["oxygen","rocket"],["rocket","engine"],["engine","athe"],["athe","rear"],["raises","along"],["vertical","trajectory"],["seconds","oflight"],["top","speed"],["mach","number"],["number","mach"],["maximum","acceleration"],["acceleration","g"],["rocket","engine"],["plane","continues"],["maximum","altitude"],["weightlessness","phase"],["plane","gets"],["high","angle"],["atmosphere","athis"],["athis","altitude"],["aeronautical","mode"],["plane","back"],["strip","description"],["project","presentation"],["flight","profile"],["profile","provided"],["astrium","space"],["space","tourism"],["tourism","interiorjpg"],["interiorjpg","thumb"],["thumb","left"],["left","interior"],["interior","layout"],["paris","air"],["air","show"],["total","mass"],["metric","tons"],["two","jet"],["jet","engines"],["lance","dans"],["tourisme","spatial"],["spatial","air"],["air","cosmos"],["cosmos","june"],["june","n"],["n","pages"],["rocket","engine"],["engine","uses"],["main","engine"],["reusable","thirty"],["thirty","times"],["burns","methane"],["methane","instead"],["hydrogen","would"],["would","require"],["much","tank"],["tank","volume"],["cabin","space"],["thathe","passengers"],["spacecraft","x"],["x","axis"],["axis","body"],["body","aligned"],["launch","acceleration"],["reentry","eads"],["ten","years"],["flight","rate"],["week","industrial"],["industrial","organisation"],["eads","astrium"],["technical","responsibility"],["responsibility","currently"],["withe","cto"],["cto","robert"],["development","cost"],["sources","eads"],["eads","astrium"],["astrium","plans"],["raise","mostly"],["mostly","private"],["private","money"],["project","one"],["possible","public"],["public","investors"],["investors","mentioned"],["fran","ois"],["southern","german"],["german","state"],["produced","astrium"],["astrium","could"],["could","produce"],["would","require"],["rocket","engines"],["selling","models"],["models","tother"],["richard","branson"],["branson","sirichard"],["sirichard","branson"],["virgin","galactic"],["final","assembly"],["assembly","would"],["industrial","facilities"],["astrium","would"],["would","provide"],["rocket","engines"],["carbon","fiber"],["european","industrial"],["industrial","partners"],["associated","withe"],["withe","projecthe"],["projecthe","target"],["space","tourism"],["year","l"],["june","page"],["ticket","price"],["round","trip"],["luxury","accommodation"],["theme","park"],["park","resorthe"],["resorthe","closest"],["closest","concept"],["rocketplane","limited"],["limited","inc"],["overall","rocket"],["rocket","plane"],["plane","principle"],["competitors","include"],["spaceshiptwo","blue"],["blue","originew"],["originew","shepard"],["shepard","new"],["new","shepard"],["shepard","xcor"],["xcor","lynx"],["burt","rutan"],["rutan","founder"],["scaled","composites"],["space","tourism"],["eads","expressed"],["project","see"],["see","also"],["also","dream"],["new","shepard"],["shepard","rocketplane"],["spaceshiptwo","xcor"],["xcor","lynx"],["lynx","zero"],["hyper","sonic"],["sonic","transport"],["transport","references"],["references","externalinks"],["externalinks","astrium"],["astrium","web"],["web","site"],["site","brochure"],["brochure","marc"],["ltd","presentation"],["project","athe"],["hyderabad","analysis"],["space","review"],["october","video"],["video","animation"],["animation","astrium"],["astrium","spaceplane"],["spaceplane","video"],["video","presentation"],["space","tourism"],["tourism","project"],["international","astronautical"],["astronautical","congress"],["min","category"],["category","space"],["space","tourism"],["tourism","category"],["category","private"],["private","spaceflight"],["spaceflight","category"],["category","proposed"],["proposed","spacecraft"],["spacecraft","category"],["category","proposed"],["proposed","reusable"],["reusable","space"],["space","launch"],["launch","systems"],["systems","category"],["category","spaceplanes"],["spaceplanes","category"],["category","airbus"],["airbus","defence"]],"all_collocations":["astrium space","space tourism","right mock","paris air","air show","airbus defence","spaceplane also","also called","called eads","eads astrium","sources radio","radio interview","interview ofrench","jean fran","fran ois","europe june","suborbital spaceplane","spaceplane concept","carrying space","space tourist","eads astrium","astrium currently","currently airbus","airbus defence","space subsidiary","theuropean consortium","consortium eads","eads currently","currently airbus","airbus group","full size","size mockup","officially unveiled","paris france","concorde hall","mus e","e de","de l","l air","de l","first space","space tourism","tourism entry","major aerospace","aerospace contractor","rocket plane","large wingspan","wingspan straight","june page","page propulsion","classical turbofan","turbofan jet","jet engine","atmospheric phase","phase space","space jet","vacuum says","says eads","eads rob","methane oxygen","oxygen rocket","rocket engine","space tourism","tourism phase","four passengers","somewhat similar","business jet","jet eads","eads astrium","astrium hoped","start development","rocket plane","withe objective","first flight","possibility thathe","initial flights","test flight","flight regarding","regarding conditions","conditions encountered","thend oflight","oflight phase","space occurred","astrium plans","raise public","private money","project origin","projecthe origin","young french","french german","german british","spanish engineers","eads astrium","two years","finally approved","eads astrium","astrium fran","fran ois","design isimilar","looked athe","athe main","main concepts","rocketplane limited","limited inc","inc rocketplane","rocket combination","combination made","tourist rocket","rocket popular","popular science","science magazine","magazine october","following months","core team","team came","detailed concept","required expertise","different areas","well aseveral","aseveral external","external industry","industry partners","partners australian","australian designer","designer marc","technical challenge","making space","space travel","travel easy","easy international","international herald","herald tribune","tribune june","creative director","also invited","project planet","planet aerospace","tourism flight","flight profile","righthumb px","rocket engine","engine followed","turbofan shutdown","shutdown b","b shutdown","rocket engine","engine acceleration","acceleration g","g start","weightlessness phase","max acceleration","acceleration g","g e","e turbofan","turbofan ignition","ignition transition","aeronautical mode","plane reaches","classical aeronautical","aeronautical phase","pilot shuts","methane oxygen","oxygen rocket","rocket engine","engine athe","athe rear","raises along","vertical trajectory","seconds oflight","top speed","mach number","number mach","maximum acceleration","acceleration g","rocket engine","plane continues","maximum altitude","weightlessness phase","plane gets","high angle","atmosphere athis","athis altitude","aeronautical mode","plane back","strip description","project presentation","flight profile","profile provided","astrium space","space tourism","tourism interiorjpg","interiorjpg thumb","left interior","interior layout","paris air","air show","total mass","metric tons","two jet","jet engines","lance dans","tourisme spatial","spatial air","air cosmos","cosmos june","june n","n pages","rocket engine","engine uses","main engine","reusable thirty","thirty times","burns methane","methane instead","hydrogen would","would require","much tank","tank volume","cabin space","thathe passengers","spacecraft x","x axis","axis body","body aligned","launch acceleration","reentry eads","ten years","flight rate","week industrial","industrial organisation","eads astrium","technical responsibility","responsibility currently","withe cto","cto robert","development cost","sources eads","eads astrium","astrium plans","raise mostly","mostly private","private money","project one","possible public","public investors","investors mentioned","fran ois","southern german","german state","produced astrium","astrium could","could produce","would require","rocket engines","selling models","models tother","richard branson","branson sirichard","sirichard branson","virgin galactic","final assembly","assembly would","industrial facilities","astrium would","would provide","rocket engines","carbon fiber","european industrial","industrial partners","associated withe","withe projecthe","projecthe target","space tourism","year l","june page","ticket price","round trip","luxury accommodation","theme park","park resorthe","resorthe closest","closest concept","rocketplane limited","limited inc","overall rocket","rocket plane","plane principle","competitors include","spaceshiptwo blue","blue originew","originew shepard","shepard new","new shepard","shepard xcor","xcor lynx","burt rutan","rutan founder","scaled composites","space tourism","eads expressed","project see","see also","also dream","new shepard","shepard rocketplane","spaceshiptwo xcor","xcor lynx","lynx zero","hyper sonic","sonic transport","transport references","references externalinks","externalinks astrium","astrium web","web site","site brochure","brochure marc","ltd presentation","project athe","hyderabad analysis","space review","october video","video animation","animation astrium","astrium spaceplane","spaceplane video","video presentation","space tourism","tourism project","international astronautical","astronautical congress","min category","category space","space tourism","tourism category","category private","private spaceflight","spaceflight category","category proposed","proposed spacecraft","spacecraft category","category proposed","proposed reusable","reusable space","space launch","launch systems","systems category","category spaceplanes","spaceplanes category","category airbus","airbus defence"],"new_description":"astrium space_tourism thumb right mock vehicle paris air show airbus defence spaceplane also_called eads_astrium according sources radio interview ofrench jean fran_ois show jacques europe june suborbital spaceplane concept carrying space_tourist proposed eads_astrium currently airbus defence space space subsidiary theuropean consortium eads currently airbus group full size mockup officially unveiled paris_france june display concorde hall mus e de l air de l project first space_tourism entry major aerospace contractor rocket plane large wingspan straight wing pair aeronautics astrium son e june page propulsion ensured classical turbofan jet engine atmospheric phase space jet cope vacuum says eads rob june methane oxygen rocket_engine space_tourism phase carry pilot four passengers dimensions looks somewhat similar business jet eads_astrium hoped start development rocket plane withe objective first_flight also possibility thathe area might used initial flights test_flight regarding conditions encountered thend oflight phase return space occurred astrium plans raise public_private money project origin projecthe origin project proposal group young french german british spanish engineers eads_astrium great two_years finally approved chairman eads_astrium fran_ois design isimilar concepto rocketplane looked athe main concepts development rocketplane_limited inc rocketplane jet rocket combination made tourist rocket popular_science magazine october following months core team came detailed concept assembled required expertise different areas astrium well aseveral external industry partners australian designer marc technical challenge making space_travel easy international herald tribune june alice earned reputation field aviation creative director also invited join project planet aerospace astrium tourism flight profile astrium flight righthumb_px ignition rocket_engine followed turbofan shutdown b shutdown rocket_engine acceleration g start weightlessness phase beginning atmospheric max acceleration g e turbofan ignition transition aeronautical mode takeoff plane reaches altitude classical aeronautical phase last minutes pilot shuts jets starts methane oxygen rocket_engine athe rear vehicle plane raises along vertical trajectory seconds oflight top speed mach number mach plane upwards maximum acceleration g altitude rocket_engine plane continues climb maximum altitude weightlessness phase plane gets high angle attack progressively atmosphere athis altitude transition aeronautical mode jets bring plane back strip description project presentation hyderabad flight profile provided page astrium space_tourism interiorjpg thumb left interior layout vehicle paris air show total mass vehicle metric tons plane two jet engines oxygen thrust astrium lance dans tourisme spatial air cosmos june n pages rocket_engine uses technology main engine ariane reusable thirty times burns methane instead hydrogen would require much tank volume density methane density hydrogen cabin diameter provides cabin space passenger seats attached system allows acceleration back passengers around thathe passengers aligned spacecraft x axis body aligned axis launch acceleration negative axis weightlessness reentry eads rocketplane plane designed ten_years service flight rate week industrial organisation development led eads_astrium technical responsibility currently withe cto robert development cost billion projected sources eads_astrium plans raise mostly private money project one possible public investors mentioned fran_ois southern german state bavaria produced astrium could produce planes year fleet planes would require production rocket_engines year selling models tother richard_branson sirichard branson virgin_galactic final assembly would france industrial facilities astrium would provide rocket_engines germany carbon fiber european industrial partners associated_withe projecthe target astrium secure market space_tourism passengers year l pour june page ticket price including round trip luxury accommodation theme_park resorthe closest concept rocketplane rocketplane_limited inc shares overall rocket plane principle competitors include spaceshiptwo blue_originew shepard new_shepard xcor_lynx burt_rutan founder scaled_composites competitor space_tourism eads expressed towards project see_also dream new_shepard rocketplane spaceshiptwo xcor_lynx zero hyper sonic transport references_externalinks astrium web_site brochure marc ltd presentation project athe hyderabad analysis project space review october video animation astrium spaceplane video presentation space_tourism project international astronautical congress min category_space_tourism category_private_spaceflight category_proposed spacecraft category_proposed reusable space_launch_systems category_spaceplanes category_airbus defence space"},{"title":"Aircraft Nuclear Propulsion","description":"file aircraft reactors arco id jpg thumb rightre left and htre right on display athe idaho nationalaboratory nearco idaho the aircraft nuclear propulsion anprogram and the preceding nuclear energy for the propulsion of aircraft nepa project worked to develop a nuclear powered aircraft nuclear propulsion system for aircrafthe united states army air forces initiated project nepa on may after funding of million in a nuclear powered bomber url accessdate archiveurl archivedate november deadurl no nepa operated until may when the project was transferred to the joint united states atomic energy commission atomic energy commission aec usaf anp the usaf pursued two different systems for nuclear powered jet engines the direct air cycle concept which was developed by general electric and indirect air cycle which wassigned to pratt whitney the program was intended to develop and testhe convair x but was cancelled in before that aircraft was built direct air cycle image are buildingjpg righthumb aircraft reactor experiment building at ornl direct cycle nuclear engines would resemble a conventional jet enginexcepthathere would be no combustion chambers the air gained from the compressor section would be sento a plenum chamber plenum that directs the air into the nucleareactor core an exchange takes place where the reactor is cooled but ithen heats up the same air and sends ito another plenum the second plenum directs the air into a turbine which sends it outhexhausthend result is that instead of using jet fuel an aircraft could rely onucleareactions for power the general electric program which was based at evendale ohio was pursued because of its advantages in simplicity reliability suitability and quick start ability conventional jet engine gas compressor and turbine sections were used withe compressed airun through the reactor to be heated by it before being exhausted through the turbine the united states aircraft reactor experiment are was a mw thermal neutron reactor thermal nucleareactor experiment designed to attain a high power density for use as an engine in a nuclear powered bomber it used the molten fluoride salt sodium fluoride naf zirconium tetrafluoride zrf uranium tetrafluoride uf mol as nuclear fuel was neutron moderator moderated by beryllium oxide beo used liquid sodium as a secondary coolant and had a peak temperature of c it operated for a hour cycle in it was the first molten salt reactor work on this project in the united statestopped after intercontinental ballistic missile s made it obsolete the designs for its engines can currently be viewed athexperimental breedereactor i memorial building athe idaho nationalaboratory file htre jpg righthumb htre in this program produced the successful general electric j the nuclear powered x engine two modified general electric j s witheat supplied by theatransfereactor experiment htre the first full power test of the htre system onuclear power only took place in january a total of watt megawatt hours of operation was completeduring the test program the htre was replaced by the htre and eventually the htre unit powering the two j s the htre used a flightype shield system and would probably have gone on to power the x had that program been pursued on february anothereactor was made critical athe critical experiments facility of the oak ridge nationalaboratory ornl as part of the circulating fuel reactor program of the pratt and whitney aircraft company pwac this was called the pwar the pratt and whitney aircraft reactor the purpose of thexperiment was to experimentally verify theoretically predicted nuclear properties of a pwac reactor thexperiment was only run shortly by thend ofebruary all data had been taken andisassembly had begun thexperiment was run at essentially zero nuclear power the operating temperature was held constant at approximately f c which corresponds closely to the design operating temperature of the pwar l moderator this temperature was maintained by external heaters like the mwt are the pwar used naf zrf uf as the primary fuel and coolant indirect air cycle indirect cycling involves thermal exchange outside of the core the compressor air would be sento a heat exchanger the nucleareactor core would heat upressurized water or liquid metal and send ito theat exchanger as well that hot liquid would be cooled by the air the air would be heated by the liquid and sento the turbine the turbine would send the air outhexhaust providing thrusthe indirect air cycle program wassigned to pratt whitney at a facility near middletown connecticuthis concept would have produced far less radioactive pollutione or two loops of liquid metal would carry theat from the reactor to thengine this program involved a great deal of research andevelopment of many light weight systemsuitable for use in aircraft such as heat exchanger s liquid metal turbopump s and radiator s the indirect cycle program never came anywhere near producing flight ready hardware alvin m weinberg the first nuclear era the life and times of a technological fixer sprnger science business media isbn p mx project on september the usaf awarded convair a contracto fly a nucleareactor on board a modified convair b peacemaker under the mx project of the anprogram the convair nb h nb h nuclear test aircraft nta was to study shielding requirements for an airborne reactor to determine whether a nuclear aircraft was feasible this was the only known airborne reactor experiment by the us with an operational nucleareactor on board the nta flew a total of times testing the reactor over westexas and southernew mexico the reactor named the aircraft shield test reactor astr was operational but did not power the aircraft rather the primary purpose of the flight program washield testing based on the results of the nta the x and thentire nuclear aircraft program was abandoned in after numerous problems the project washut down in march only to be re opened a year later technological competition withe soviet union as represented by the launch of sputnik and continued strong support from the air force allowed the program to continue despite divided leadership between the dod and the aec thelection of john f kennedy as president changed the course kennedy wrote years and about billion have been devoted to the attemptedevelopment of a nuclear powered aircraft buthe possibility of achieving a militarily useful aircraft in the foreseeable future istill very remote in histatement officially ending the anp on march see also nuclear powered aircraft convair x georgia nuclear aircraft laboratory project pluto develop nuclear powered ramjet engines for use in cruise missiles north american xb valkyrie ws a ws a usaf requirement for supersonic bomber molten salt reactor project rover to develop a nuclear thermal rocket nerva externalinks links to a photography website with illustrations on the subject of using an atomic reactor to power an aircraft category nuclear powered aircraft category sciencexperiments category establishments in the united states category disestablishments category atomic tourism category projects of the united states air force","main_words":["file","aircraft","reactors","jpg","thumb","left","htre","right","display","athe","idaho","nationalaboratory","idaho","aircraft","nuclear","propulsion","preceding","nuclear","energy","propulsion","aircraft","project","worked","develop","nuclear_powered","aircraft","nuclear","propulsion","system","united_states","initiated","project","may","funding","million","nuclear_powered","bomber","url","accessdate","november","operated","may","project","transferred","joint","united_states","atomic_energy_commission","atomic_energy_commission","aec","usaf","usaf","pursued","two","different","systems","nuclear_powered","jet","engines","direct","air","cycle","concept","developed","general","electric","indirect","air","cycle","wassigned","pratt_whitney","program","intended","develop","testhe","convair","x","cancelled","aircraft","built","direct","air","cycle","image","righthumb","aircraft","reactor","experiment","building","direct","cycle","nuclear","engines","would","resemble","conventional","jet","would","combustion","chambers","air","gained","section","would","sento","plenum","chamber","plenum","directs","air","nucleareactor","core","exchange","takes_place","reactor","cooled","ithen","heats","air","sends","ito","another","plenum","second","plenum","directs","air","turbine","sends","result","instead","using","jet","fuel","aircraft","could","rely","power","general","electric","program","based","ohio","pursued","advantages","simplicity","reliability","quick","start","ability","conventional","jet","engine","gas","turbine","sections","used","withe","compressed","reactor","heated","turbine","united_states","aircraft","reactor","experiment","thermal","neutron","reactor","thermal","nucleareactor","experiment","designed","attain","high","power","density","use","engine","nuclear_powered","bomber","used","salt","sodium","uranium","nuclear","fuel","neutron","moderator","oxide","used","liquid","sodium","secondary","coolant","peak","temperature","c","operated","hour","cycle","first","salt","reactor","work","project","united","intercontinental","ballistic","missile","made","designs","engines","currently","viewed","memorial","building","athe","idaho","nationalaboratory","file","htre","jpg_righthumb","htre","program","produced","successful","general","electric","j","nuclear_powered","x","engine","two","modified","general","electric","j","supplied","experiment","htre","first","full","power","test","htre","system","power","took_place","january","total","hours","operation","test_program","htre","replaced","htre","eventually","htre","unit","two","j","htre","used","shield","system","would","probably","gone","power","x","program","pursued","february","made","critical","athe","critical","experiments","facility","oak_ridge","nationalaboratory","part","circulating","fuel","reactor","program","pratt_whitney","aircraft","company_called","pratt_whitney","aircraft","reactor","purpose","thexperiment","verify","theoretically","predicted","nuclear","properties","reactor","thexperiment","run","shortly","thend","ofebruary","data","taken","begun","thexperiment","run","essentially","zero","nuclear_power","operating","temperature","held","constant","approximately","f","c","closely","design","operating","temperature","l","moderator","temperature","maintained","external","like","mwt","used","primary","fuel","coolant","indirect","air","cycle","indirect","cycling","involves","thermal","exchange","outside","core","air","would","sento","heat","nucleareactor","core","would","heat","water","liquid","metal","send","ito","theat","well","hot","liquid","would","cooled","air","air","would","heated","liquid","sento","turbine","turbine","would","send","air","providing","indirect","air","cycle","program","wassigned","pratt_whitney","facility","near","concept","would","produced","far","less","radioactive","two","loops","liquid","metal","would","carry","theat","reactor","thengine","program","involved","great_deal","research_andevelopment","many","light","weight","use","aircraft","heat","liquid","metal","radiator","indirect","cycle","program","never","came","anywhere","near","producing","flight","ready","hardware","alvin","first","nuclear","era","life","times","technological","science","business","media","isbn","p","project","september","usaf","awarded","convair","contracto","fly","nucleareactor","board","modified","convair","b","project","convair","h","h","nuclear_test","aircraft","study","requirements","airborne","reactor","determine","whether","nuclear","aircraft","feasible","known","airborne","reactor","experiment","us","operational","nucleareactor","board","flew","total","times","testing","reactor","westexas","mexico","reactor","named","aircraft","shield","test","reactor","operational","power","aircraft","rather","primary","purpose","flight","program","testing","based","results","x","thentire","nuclear","aircraft","program","abandoned","numerous","problems","project","washut","march","opened","year_later","technological","competition","withe","soviet_union","represented","launch","continued","strong","support","air_force","allowed","program","continue","despite","divided","leadership","aec","thelection","john_f","kennedy","president","changed","course","kennedy","wrote","years","billion","devoted","nuclear_powered","aircraft","buthe","possibility","achieving","useful","aircraft","future","istill","remote","officially","ending","march","see_also","nuclear_powered","aircraft","convair","x","georgia","nuclear","aircraft","laboratory","project","pluto","develop","nuclear_powered","engines","use","cruise","missiles","north_american","valkyrie","usaf","requirement","supersonic","bomber","salt","reactor","project","rover","develop","nuclear","thermal","rocket","nerva","externalinks","links","photography","website","illustrations","subject","using","atomic","reactor","power","aircraft_category","nuclear_powered","aircraft_category","category_establishments","united_states","category_disestablishments","projects","united_states","air_force"],"clean_bigrams":[["file","aircraft"],["aircraft","reactors"],["jpg","thumb"],["htre","right"],["display","athe"],["athe","idaho"],["idaho","nationalaboratory"],["aircraft","nuclear"],["nuclear","propulsion"],["preceding","nuclear"],["nuclear","energy"],["project","worked"],["develop","nuclear"],["nuclear","powered"],["powered","aircraft"],["aircraft","nuclear"],["nuclear","propulsion"],["propulsion","system"],["united","states"],["states","army"],["army","air"],["air","forces"],["forces","initiated"],["initiated","project"],["nuclear","powered"],["powered","bomber"],["bomber","url"],["url","accessdate"],["joint","united"],["united","states"],["states","atomic"],["atomic","energy"],["energy","commission"],["commission","atomic"],["atomic","energy"],["energy","commission"],["commission","aec"],["aec","usaf"],["usaf","pursued"],["pursued","two"],["two","different"],["different","systems"],["nuclear","powered"],["powered","jet"],["jet","engines"],["direct","air"],["air","cycle"],["cycle","concept"],["general","electric"],["indirect","air"],["air","cycle"],["pratt","whitney"],["testhe","convair"],["convair","x"],["built","direct"],["direct","air"],["air","cycle"],["cycle","image"],["righthumb","aircraft"],["aircraft","reactor"],["reactor","experiment"],["experiment","building"],["direct","cycle"],["cycle","nuclear"],["nuclear","engines"],["engines","would"],["would","resemble"],["conventional","jet"],["combustion","chambers"],["air","gained"],["section","would"],["plenum","chamber"],["chamber","plenum"],["plenum","directs"],["nucleareactor","core"],["exchange","takes"],["takes","place"],["ithen","heats"],["sends","ito"],["ito","another"],["another","plenum"],["second","plenum"],["plenum","directs"],["using","jet"],["jet","fuel"],["aircraft","could"],["could","rely"],["general","electric"],["electric","program"],["simplicity","reliability"],["quick","start"],["start","ability"],["ability","conventional"],["conventional","jet"],["jet","engine"],["engine","gas"],["turbine","sections"],["used","withe"],["withe","compressed"],["united","states"],["states","aircraft"],["aircraft","reactor"],["reactor","experiment"],["thermal","neutron"],["neutron","reactor"],["reactor","thermal"],["thermal","nucleareactor"],["nucleareactor","experiment"],["experiment","designed"],["high","power"],["power","density"],["nuclear","powered"],["powered","bomber"],["salt","sodium"],["nuclear","fuel"],["neutron","moderator"],["used","liquid"],["liquid","sodium"],["secondary","coolant"],["peak","temperature"],["hour","cycle"],["salt","reactor"],["reactor","work"],["intercontinental","ballistic"],["ballistic","missile"],["memorial","building"],["building","athe"],["athe","idaho"],["idaho","nationalaboratory"],["nationalaboratory","file"],["file","htre"],["htre","jpg"],["jpg","righthumb"],["righthumb","htre"],["program","produced"],["successful","general"],["general","electric"],["electric","j"],["nuclear","powered"],["powered","x"],["x","engine"],["engine","two"],["two","modified"],["modified","general"],["general","electric"],["electric","j"],["experiment","htre"],["first","full"],["full","power"],["power","test"],["htre","system"],["took","place"],["test","program"],["htre","unit"],["two","j"],["htre","used"],["shield","system"],["would","probably"],["made","critical"],["critical","athe"],["athe","critical"],["critical","experiments"],["experiments","facility"],["oak","ridge"],["ridge","nationalaboratory"],["circulating","fuel"],["fuel","reactor"],["reactor","program"],["pratt","whitney"],["whitney","aircraft"],["aircraft","company"],["pratt","whitney"],["whitney","aircraft"],["aircraft","reactor"],["verify","theoretically"],["theoretically","predicted"],["predicted","nuclear"],["nuclear","properties"],["reactor","thexperiment"],["run","shortly"],["thend","ofebruary"],["begun","thexperiment"],["essentially","zero"],["zero","nuclear"],["nuclear","power"],["operating","temperature"],["held","constant"],["approximately","f"],["f","c"],["design","operating"],["operating","temperature"],["l","moderator"],["primary","fuel"],["coolant","indirect"],["indirect","air"],["air","cycle"],["cycle","indirect"],["indirect","cycling"],["cycling","involves"],["involves","thermal"],["thermal","exchange"],["exchange","outside"],["air","would"],["nucleareactor","core"],["core","would"],["would","heat"],["liquid","metal"],["send","ito"],["ito","theat"],["hot","liquid"],["liquid","would"],["air","would"],["turbine","would"],["would","send"],["indirect","air"],["air","cycle"],["cycle","program"],["program","wassigned"],["pratt","whitney"],["facility","near"],["concept","would"],["produced","far"],["far","less"],["less","radioactive"],["two","loops"],["liquid","metal"],["metal","would"],["would","carry"],["carry","theat"],["program","involved"],["great","deal"],["research","andevelopment"],["many","light"],["light","weight"],["liquid","metal"],["indirect","cycle"],["cycle","program"],["program","never"],["never","came"],["came","anywhere"],["anywhere","near"],["near","producing"],["producing","flight"],["flight","ready"],["ready","hardware"],["hardware","alvin"],["first","nuclear"],["nuclear","era"],["science","business"],["business","media"],["media","isbn"],["isbn","p"],["usaf","awarded"],["awarded","convair"],["contracto","fly"],["modified","convair"],["convair","b"],["h","nuclear"],["nuclear","test"],["test","aircraft"],["airborne","reactor"],["determine","whether"],["nuclear","aircraft"],["known","airborne"],["airborne","reactor"],["reactor","experiment"],["operational","nucleareactor"],["times","testing"],["reactor","named"],["aircraft","shield"],["shield","test"],["test","reactor"],["aircraft","rather"],["primary","purpose"],["flight","program"],["testing","based"],["thentire","nuclear"],["nuclear","aircraft"],["aircraft","program"],["numerous","problems"],["project","washut"],["year","later"],["later","technological"],["technological","competition"],["competition","withe"],["withe","soviet"],["soviet","union"],["continued","strong"],["strong","support"],["air","force"],["force","allowed"],["continue","despite"],["despite","divided"],["divided","leadership"],["aec","thelection"],["john","f"],["f","kennedy"],["president","changed"],["course","kennedy"],["kennedy","wrote"],["wrote","years"],["nuclear","powered"],["powered","aircraft"],["aircraft","buthe"],["buthe","possibility"],["useful","aircraft"],["future","istill"],["officially","ending"],["march","see"],["see","also"],["also","nuclear"],["nuclear","powered"],["powered","aircraft"],["aircraft","convair"],["convair","x"],["x","georgia"],["georgia","nuclear"],["nuclear","aircraft"],["aircraft","laboratory"],["laboratory","project"],["project","pluto"],["pluto","develop"],["develop","nuclear"],["nuclear","powered"],["cruise","missiles"],["missiles","north"],["north","american"],["usaf","requirement"],["supersonic","bomber"],["salt","reactor"],["reactor","project"],["project","rover"],["develop","nuclear"],["nuclear","thermal"],["thermal","rocket"],["rocket","nerva"],["nerva","externalinks"],["externalinks","links"],["photography","website"],["atomic","reactor"],["aircraft","category"],["category","nuclear"],["nuclear","powered"],["powered","aircraft"],["aircraft","category"],["category","establishments"],["united","states"],["states","category"],["category","disestablishments"],["disestablishments","category"],["category","atomic"],["atomic","tourism"],["tourism","category"],["category","projects"],["united","states"],["states","air"],["air","force"]],"all_collocations":["file aircraft","aircraft reactors","htre right","display athe","athe idaho","idaho nationalaboratory","aircraft nuclear","nuclear propulsion","preceding nuclear","nuclear energy","project worked","develop nuclear","nuclear powered","powered aircraft","aircraft nuclear","nuclear propulsion","propulsion system","united states","states army","army air","air forces","forces initiated","initiated project","nuclear powered","powered bomber","bomber url","url accessdate","joint united","united states","states atomic","atomic energy","energy commission","commission atomic","atomic energy","energy commission","commission aec","aec usaf","usaf pursued","pursued two","two different","different systems","nuclear powered","powered jet","jet engines","direct air","air cycle","cycle concept","general electric","indirect air","air cycle","pratt whitney","testhe convair","convair x","built direct","direct air","air cycle","cycle image","righthumb aircraft","aircraft reactor","reactor experiment","experiment building","direct cycle","cycle nuclear","nuclear engines","engines would","would resemble","conventional jet","combustion chambers","air gained","section would","plenum chamber","chamber plenum","plenum directs","nucleareactor core","exchange takes","takes place","ithen heats","sends ito","ito another","another plenum","second plenum","plenum directs","using jet","jet fuel","aircraft could","could rely","general electric","electric program","simplicity reliability","quick start","start ability","ability conventional","conventional jet","jet engine","engine gas","turbine sections","used withe","withe compressed","united states","states aircraft","aircraft reactor","reactor experiment","thermal neutron","neutron reactor","reactor thermal","thermal nucleareactor","nucleareactor experiment","experiment designed","high power","power density","nuclear powered","powered bomber","salt sodium","nuclear fuel","neutron moderator","used liquid","liquid sodium","secondary coolant","peak temperature","hour cycle","salt reactor","reactor work","intercontinental ballistic","ballistic missile","memorial building","building athe","athe idaho","idaho nationalaboratory","nationalaboratory file","file htre","htre jpg","jpg righthumb","righthumb htre","program produced","successful general","general electric","electric j","nuclear powered","powered x","x engine","engine two","two modified","modified general","general electric","electric j","experiment htre","first full","full power","power test","htre system","took place","test program","htre unit","two j","htre used","shield system","would probably","made critical","critical athe","athe critical","critical experiments","experiments facility","oak ridge","ridge nationalaboratory","circulating fuel","fuel reactor","reactor program","pratt whitney","whitney aircraft","aircraft company","pratt whitney","whitney aircraft","aircraft reactor","verify theoretically","theoretically predicted","predicted nuclear","nuclear properties","reactor thexperiment","run shortly","thend ofebruary","begun thexperiment","essentially zero","zero nuclear","nuclear power","operating temperature","held constant","approximately f","f c","design operating","operating temperature","l moderator","primary fuel","coolant indirect","indirect air","air cycle","cycle indirect","indirect cycling","cycling involves","involves thermal","thermal exchange","exchange outside","air would","nucleareactor core","core would","would heat","liquid metal","send ito","ito theat","hot liquid","liquid would","air would","turbine would","would send","indirect air","air cycle","cycle program","program wassigned","pratt whitney","facility near","concept would","produced far","far less","less radioactive","two loops","liquid metal","metal would","would carry","carry theat","program involved","great deal","research andevelopment","many light","light weight","liquid metal","indirect cycle","cycle program","program never","never came","came anywhere","anywhere near","near producing","producing flight","flight ready","ready hardware","hardware alvin","first nuclear","nuclear era","science business","business media","media isbn","isbn p","usaf awarded","awarded convair","contracto fly","modified convair","convair b","h nuclear","nuclear test","test aircraft","airborne reactor","determine whether","nuclear aircraft","known airborne","airborne reactor","reactor experiment","operational nucleareactor","times testing","reactor named","aircraft shield","shield test","test reactor","aircraft rather","primary purpose","flight program","testing based","thentire nuclear","nuclear aircraft","aircraft program","numerous problems","project washut","year later","later technological","technological competition","competition withe","withe soviet","soviet union","continued strong","strong support","air force","force allowed","continue despite","despite divided","divided leadership","aec thelection","john f","f kennedy","president changed","course kennedy","kennedy wrote","wrote years","nuclear powered","powered aircraft","aircraft buthe","buthe possibility","useful aircraft","future istill","officially ending","march see","see also","also nuclear","nuclear powered","powered aircraft","aircraft convair","convair x","x georgia","georgia nuclear","nuclear aircraft","aircraft laboratory","laboratory project","project pluto","pluto develop","develop nuclear","nuclear powered","cruise missiles","missiles north","north american","usaf requirement","supersonic bomber","salt reactor","reactor project","project rover","develop nuclear","nuclear thermal","thermal rocket","rocket nerva","nerva externalinks","externalinks links","photography website","atomic reactor","aircraft category","category nuclear","nuclear powered","powered aircraft","aircraft category","category establishments","united states","states category","category disestablishments","disestablishments category","category atomic","atomic tourism","tourism category","category projects","united states","states air","air force"],"new_description":"file aircraft reactors jpg thumb left htre right display athe idaho nationalaboratory idaho aircraft nuclear propulsion preceding nuclear energy propulsion aircraft project worked develop nuclear_powered aircraft nuclear propulsion system united_states army_air_forces initiated project may funding million nuclear_powered bomber url accessdate november operated may project transferred joint united_states atomic_energy_commission atomic_energy_commission aec usaf usaf pursued two different systems nuclear_powered jet engines direct air cycle concept developed general electric indirect air cycle wassigned pratt_whitney program intended develop testhe convair x cancelled aircraft built direct air cycle image righthumb aircraft reactor experiment building direct cycle nuclear engines would resemble conventional jet would combustion chambers air gained section would sento plenum chamber plenum directs air nucleareactor core exchange takes_place reactor cooled ithen heats air sends ito another plenum second plenum directs air turbine sends result instead using jet fuel aircraft could rely power general electric program based ohio pursued advantages simplicity reliability quick start ability conventional jet engine gas turbine sections used withe compressed reactor heated turbine united_states aircraft reactor experiment thermal neutron reactor thermal nucleareactor experiment designed attain high power density use engine nuclear_powered bomber used salt sodium uranium nuclear fuel neutron moderator oxide used liquid sodium secondary coolant peak temperature c operated hour cycle first salt reactor work project united intercontinental ballistic missile made designs engines currently viewed memorial building athe idaho nationalaboratory file htre jpg_righthumb htre program produced successful general electric j nuclear_powered x engine two modified general electric j supplied experiment htre first full power test htre system power took_place january total hours operation test_program htre replaced htre eventually htre unit two j htre used shield system would probably gone power x program pursued february made critical athe critical experiments facility oak_ridge nationalaboratory part circulating fuel reactor program pratt_whitney aircraft company_called pratt_whitney aircraft reactor purpose thexperiment verify theoretically predicted nuclear properties reactor thexperiment run shortly thend ofebruary data taken begun thexperiment run essentially zero nuclear_power operating temperature held constant approximately f c closely design operating temperature l moderator temperature maintained external like mwt used primary fuel coolant indirect air cycle indirect cycling involves thermal exchange outside core air would sento heat nucleareactor core would heat water liquid metal send ito theat well hot liquid would cooled air air would heated liquid sento turbine turbine would send air providing indirect air cycle program wassigned pratt_whitney facility near concept would produced far less radioactive two loops liquid metal would carry theat reactor thengine program involved great_deal research_andevelopment many light weight use aircraft heat liquid metal radiator indirect cycle program never came anywhere near producing flight ready hardware alvin first nuclear era life times technological science business media isbn p project september usaf awarded convair contracto fly nucleareactor board modified convair b project convair h h nuclear_test aircraft study requirements airborne reactor determine whether nuclear aircraft feasible known airborne reactor experiment us operational nucleareactor board flew total times testing reactor westexas mexico reactor named aircraft shield test reactor operational power aircraft rather primary purpose flight program testing based results x thentire nuclear aircraft program abandoned numerous problems project washut march opened year_later technological competition withe soviet_union represented launch continued strong support air_force allowed program continue despite divided leadership aec thelection john_f kennedy president changed course kennedy wrote years billion devoted nuclear_powered aircraft buthe possibility achieving useful aircraft future istill remote officially ending march see_also nuclear_powered aircraft convair x georgia nuclear aircraft laboratory project pluto develop nuclear_powered engines use cruise missiles north_american valkyrie usaf requirement supersonic bomber salt reactor project rover develop nuclear thermal rocket nerva externalinks links photography website illustrations subject using atomic reactor power aircraft_category nuclear_powered aircraft_category category_establishments united_states category_disestablishments category_atomic_tourism_category projects united_states air_force"},{"title":"Alan Rogers Guides","description":"image alan rogers logojpg frame px right alan rogers logo the alan rogers guides were started in great britain in by camp enthusiast alan rogers camping alan rogers the guides place utmost importance on the quality of the campsite s campsite s cannot pay to be in the guide the range now has expanded to include six country guide titles covering countries four themed guides and ten miniguides covering regions ofrance how the campsites are chosen the guides rely on a dedicated team of site assessors all of whom arexperienced cottagers caravanners or motorcaravanners to visit and recommend parks the popularity of the guides is based their impartiality and supported by thenthusiasm diligence and integrity of the site assessors the most important criteria used when inspecting and selecting parks is quality the assessors consider and evaluate the welcome the pitches the sanitary facilities the cleanliness the general maintenance the location the guides try to cater for a wide variety of preferences from thoseeking a small peaceful campsite in theart of the countryside to visitors looking for an all singing all dancing park in a popular seaside resort history image ar guidesjpg frame px right alan rogers logo the first guide alan rogerselected sites for caravanning and camping in europe sold for four shillings p in the introduction to the first guide alan wrote i would like to stress thathe camps which are included in this book have been chosentirely on merit and no payment of any sort is made by them for their inclusion alan rogers continued to expand until when alan rogers camping alan rogers agedecided to seek retirementhe publishing company deneway guides and traveltd was purchased by clive and lois edwards until the mark hammerton group ltd mark hammerton group took over in shortly after alan rogers death just a yearlier clivedwards remembers the negotiations with alan rogers clearly the actual business negotiations were conducted quickly what alan was really concerned about was that we would maintain the philosophy and the impartiality of the guides following alan s retirement we found that he was always willing toffer us advice and guidance in the whole business moved to its current premises in the kent countryside originally there was just a single guide to campsites in europe featuring only sites a separate guide to britain followed in featuring just short of sites and in the same year a similar edition for france was introduced the first britain guide to include ireland was published in followed by all yearound and rented accommodation guides in and the first guide to be published in dutch in further editions including separate guides for italy croatia sloveniand spain portugal were launched in along with a guide for central europe in although this was dropped in a guide for the netherlands belgium luxembourg was added in but dropped for the season themed guides were put into motion in each featuring campsites covering one of nine specific hobbies pastimes and passions including best campsites for children fishingolf spas nature walking and cycling beach dogs and active families the series waslimmedown to just four core titles in withedition of two german titles before being phased out for the season the rented accommodation all yearound award winners and naturist guides continue to be published in the mark hammerton group was acquired by the caravan club under the brand alan rogers travel group along with itsubsidiary company belle france the guides continue to recommend campsites based on strict criteriand independent assessmentsites are added where appropriate and removed if standards have fallen after the acquisition the big selection guide was introduced featuring selected campsites in european countries an introduction to glampinguide was also produced also saw the launch of digital guides for use on tablets and mobile devicesuccess the guides have been influential in the rise in popularity of camping for example drawing attention to the number of overseasites that were providing mains electricity hook ups alan rogersuggested that british caravanners and motor caravannershould take advantage of this by having their units wired to take mains electricity ino standard british caravan wasupplied with mains electricity wiring one measure of the guidesuccess is that many of the things he called for in the original guide have now become reality mains electricity connections in caravans and motor caravans marked pitches of a minimum size hot water freely available in the amenity blocks british style toilets on french campsites the use of trees and bushes to mark pitches an end to the practice of over crowding of sites during the peak summer holiday times many of the sites like camping du pavillon at bidarte in the pyrenees recommended by him in are still recommended in the current guides although all the sites have developed along the lines originally recommended by alan rogers externalinks alanrogerscom official website for the guidesee also alan rogers camping alan rogers references amazon alan rogers guides for sale on amazon towsure alan rogers guides information cordee britain and ireland guide for sale category handbooks and manuals category travel guide books category books about camping","main_words":["image","alan_rogers","frame","px","right","alan_rogers","logo","alan_rogers","guides","started","great_britain","camp","enthusiast","alan_rogers","camping","alan_rogers","guides","place","importance","quality","campsite","campsite","cannot","pay","guide","range","expanded","include","six","country","guide","titles","covering","countries","four","themed","guides","ten","covering","regions","ofrance","campsites","chosen","guides","rely","dedicated","team","site","caravanners","visit","recommend","parks","popularity","guides","based","supported","diligence","integrity","site","important","criteria","used","selecting","parks","quality","consider","evaluate","welcome","pitches","sanitary","facilities","cleanliness","general","maintenance","location","guides","try","cater","wide_variety","preferences","small","peaceful","campsite","theart","countryside","visitors","looking","singing","dancing","park","popular","seaside_resort","history","image","frame","px","right","alan_rogers","logo","first","guide","alan","sites","caravanning","camping","europe","sold","four","shillings","p","introduction","first","guide","alan","wrote","would","like","stress","thathe","camps","included","book","merit","payment","sort","made","inclusion","alan_rogers","continued","expand","alan_rogers","camping","alan_rogers","seek","publishing_company","guides","purchased","clive","edwards","mark","group","ltd","mark","group","took","shortly","alan_rogers","death","negotiations","alan_rogers","clearly","actual","business","negotiations","conducted","quickly","alan","really","concerned","would","maintain","philosophy","guides","following","alan","retirement","found","always","willing","toffer","us","advice","guidance","whole","business","moved","current","premises","kent","countryside","originally","single","guide","campsites","europe","featuring","sites","separate","guide","britain","followed","featuring","short","sites","year","similar","edition","france","introduced","first","britain","guide","include","ireland","published","followed","yearound","rented","accommodation","guides","first","guide","published","dutch","editions","including","separate","guides","italy","croatia","spain","portugal","launched","along","guide","central_europe","although","dropped","guide","netherlands","belgium","luxembourg","added","dropped","season","themed","guides","put","motion","featuring","campsites","covering","one","nine","specific","including","best","campsites","children","spas","nature","walking","cycling","beach","dogs","active","families","series","four","core","titles","two","german","titles","season","rented","accommodation","yearound","award","winners","guides","continue","published","mark","group","acquired","caravan","club","brand","alan_rogers","travel","group","along","company","belle","france","guides","continue","recommend","campsites","based","strict","independent","added","appropriate","removed","standards","fallen","acquisition","big","selection","guide","introduced","featuring","selected","campsites","european_countries","introduction","also","produced","also","saw","launch","digital","guides","use","tablets","mobile","guides","influential","rise","popularity","camping","example","drawing","attention","number","providing","mains","electricity","hook","ups","alan","british","caravanners","motor","take_advantage","units","wired","take","mains","electricity","standard","british","caravan","wasupplied","mains","electricity","one","measure","many","things","called","original","guide","become","reality","mains","electricity","connections","caravans","motor","caravans","marked","pitches","minimum","size","hot","water","freely","available","amenity","blocks","british","style","toilets","french","campsites","use","trees","mark","pitches","end","practice","sites","peak","summer","holiday","times","many","sites","like","camping","recommended","still","recommended","current","guides","although","sites","developed","along","lines","originally","recommended","alan_rogers","externalinks_official_website","also","alan_rogers","camping","alan_rogers","references","amazon","alan_rogers","guides","sale","amazon","alan_rogers","guides","information","britain","ireland","guide","sale","category","handbooks","category_travel_guide_books","category_books","camping"],"clean_bigrams":[["image","alan"],["alan","rogers"],["frame","px"],["px","right"],["right","alan"],["alan","rogers"],["rogers","logo"],["alan","rogers"],["rogers","guides"],["great","britain"],["camp","enthusiast"],["enthusiast","alan"],["alan","rogers"],["rogers","camping"],["camping","alan"],["alan","rogers"],["rogers","guides"],["guides","place"],["include","six"],["six","country"],["country","guide"],["guide","titles"],["titles","covering"],["covering","countries"],["countries","four"],["four","themed"],["themed","guides"],["covering","regions"],["regions","ofrance"],["guides","rely"],["dedicated","team"],["recommend","parks"],["important","criteria"],["criteria","used"],["selecting","parks"],["sanitary","facilities"],["general","maintenance"],["guides","try"],["wide","variety"],["small","peaceful"],["peaceful","campsite"],["visitors","looking"],["dancing","park"],["popular","seaside"],["seaside","resort"],["resort","history"],["history","image"],["frame","px"],["px","right"],["right","alan"],["alan","rogers"],["rogers","logo"],["first","guide"],["guide","alan"],["europe","sold"],["four","shillings"],["shillings","p"],["first","guide"],["guide","alan"],["alan","wrote"],["would","like"],["stress","thathe"],["thathe","camps"],["inclusion","alan"],["alan","rogers"],["rogers","continued"],["alan","rogers"],["rogers","camping"],["camping","alan"],["alan","rogers"],["publishing","company"],["group","ltd"],["ltd","mark"],["group","took"],["alan","rogers"],["rogers","death"],["alan","rogers"],["rogers","clearly"],["actual","business"],["business","negotiations"],["conducted","quickly"],["really","concerned"],["would","maintain"],["guides","following"],["following","alan"],["always","willing"],["willing","toffer"],["toffer","us"],["us","advice"],["whole","business"],["business","moved"],["current","premises"],["kent","countryside"],["countryside","originally"],["single","guide"],["europe","featuring"],["separate","guide"],["britain","followed"],["similar","edition"],["first","britain"],["britain","guide"],["include","ireland"],["rented","accommodation"],["accommodation","guides"],["first","guide"],["editions","including"],["including","separate"],["separate","guides"],["italy","croatia"],["spain","portugal"],["central","europe"],["netherlands","belgium"],["belgium","luxembourg"],["season","themed"],["themed","guides"],["featuring","campsites"],["campsites","covering"],["covering","one"],["nine","specific"],["including","best"],["best","campsites"],["spas","nature"],["nature","walking"],["cycling","beach"],["beach","dogs"],["active","families"],["four","core"],["core","titles"],["two","german"],["german","titles"],["rented","accommodation"],["yearound","award"],["award","winners"],["guides","continue"],["caravan","club"],["brand","alan"],["alan","rogers"],["rogers","travel"],["travel","group"],["group","along"],["company","belle"],["belle","france"],["guides","continue"],["recommend","campsites"],["campsites","based"],["big","selection"],["selection","guide"],["introduced","featuring"],["featuring","selected"],["selected","campsites"],["european","countries"],["also","produced"],["produced","also"],["also","saw"],["digital","guides"],["example","drawing"],["drawing","attention"],["providing","mains"],["mains","electricity"],["electricity","hook"],["hook","ups"],["ups","alan"],["british","caravanners"],["take","advantage"],["units","wired"],["take","mains"],["mains","electricity"],["standard","british"],["british","caravan"],["caravan","wasupplied"],["mains","electricity"],["one","measure"],["original","guide"],["become","reality"],["reality","mains"],["mains","electricity"],["electricity","connections"],["motor","caravans"],["caravans","marked"],["marked","pitches"],["minimum","size"],["size","hot"],["hot","water"],["water","freely"],["freely","available"],["amenity","blocks"],["blocks","british"],["british","style"],["style","toilets"],["french","campsites"],["mark","pitches"],["peak","summer"],["summer","holiday"],["holiday","times"],["times","many"],["sites","like"],["like","camping"],["still","recommended"],["current","guides"],["guides","although"],["developed","along"],["lines","originally"],["originally","recommended"],["alan","rogers"],["rogers","externalinks"],["official","website"],["also","alan"],["alan","rogers"],["rogers","camping"],["camping","alan"],["alan","rogers"],["rogers","references"],["references","amazon"],["amazon","alan"],["alan","rogers"],["rogers","guides"],["amazon","alan"],["alan","rogers"],["rogers","guides"],["guides","information"],["ireland","guide"],["sale","category"],["category","handbooks"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","books"]],"all_collocations":["image alan","alan rogers","frame px","right alan","alan rogers","rogers logo","alan rogers","rogers guides","great britain","camp enthusiast","enthusiast alan","alan rogers","rogers camping","camping alan","alan rogers","rogers guides","guides place","include six","six country","country guide","guide titles","titles covering","covering countries","countries four","four themed","themed guides","covering regions","regions ofrance","guides rely","dedicated team","recommend parks","important criteria","criteria used","selecting parks","sanitary facilities","general maintenance","guides try","wide variety","small peaceful","peaceful campsite","visitors looking","dancing park","popular seaside","seaside resort","resort history","history image","frame px","right alan","alan rogers","rogers logo","first guide","guide alan","europe sold","four shillings","shillings p","first guide","guide alan","alan wrote","would like","stress thathe","thathe camps","inclusion alan","alan rogers","rogers continued","alan rogers","rogers camping","camping alan","alan rogers","publishing company","group ltd","ltd mark","group took","alan rogers","rogers death","alan rogers","rogers clearly","actual business","business negotiations","conducted quickly","really concerned","would maintain","guides following","following alan","always willing","willing toffer","toffer us","us advice","whole business","business moved","current premises","kent countryside","countryside originally","single guide","europe featuring","separate guide","britain followed","similar edition","first britain","britain guide","include ireland","rented accommodation","accommodation guides","first guide","editions including","including separate","separate guides","italy croatia","spain portugal","central europe","netherlands belgium","belgium luxembourg","season themed","themed guides","featuring campsites","campsites covering","covering one","nine specific","including best","best campsites","spas nature","nature walking","cycling beach","beach dogs","active families","four core","core titles","two german","german titles","rented accommodation","yearound award","award winners","guides continue","caravan club","brand alan","alan rogers","rogers travel","travel group","group along","company belle","belle france","guides continue","recommend campsites","campsites based","big selection","selection guide","introduced featuring","featuring selected","selected campsites","european countries","also produced","produced also","also saw","digital guides","example drawing","drawing attention","providing mains","mains electricity","electricity hook","hook ups","ups alan","british caravanners","take advantage","units wired","take mains","mains electricity","standard british","british caravan","caravan wasupplied","mains electricity","one measure","original guide","become reality","reality mains","mains electricity","electricity connections","motor caravans","caravans marked","marked pitches","minimum size","size hot","hot water","water freely","freely available","amenity blocks","blocks british","british style","style toilets","french campsites","mark pitches","peak summer","summer holiday","holiday times","times many","sites like","like camping","still recommended","current guides","guides although","developed along","lines originally","originally recommended","alan rogers","rogers externalinks","official website","also alan","alan rogers","rogers camping","camping alan","alan rogers","rogers references","references amazon","amazon alan","alan rogers","rogers guides","amazon alan","alan rogers","rogers guides","guides information","ireland guide","sale category","category handbooks","category travel","travel guide","guide books","books category","category books"],"new_description":"image alan_rogers frame px right alan_rogers logo alan_rogers guides started great_britain camp enthusiast alan_rogers camping alan_rogers guides place importance quality campsite campsite cannot pay guide range expanded include six country guide titles covering countries four themed guides ten covering regions ofrance campsites chosen guides rely dedicated team site caravanners visit recommend parks popularity guides based supported diligence integrity site important criteria used selecting parks quality consider evaluate welcome pitches sanitary facilities cleanliness general maintenance location guides try cater wide_variety preferences small peaceful campsite theart countryside visitors looking singing dancing park popular seaside_resort history image frame px right alan_rogers logo first guide alan sites caravanning camping europe sold four shillings p introduction first guide alan wrote would like stress thathe camps included book merit payment sort made inclusion alan_rogers continued expand alan_rogers camping alan_rogers seek publishing_company guides purchased clive edwards mark group ltd mark group took shortly alan_rogers death negotiations alan_rogers clearly actual business negotiations conducted quickly alan really concerned would maintain philosophy guides following alan retirement found always willing toffer us advice guidance whole business moved current premises kent countryside originally single guide campsites europe featuring sites separate guide britain followed featuring short sites year similar edition france introduced first britain guide include ireland published followed yearound rented accommodation guides first guide published dutch editions including separate guides italy croatia spain portugal launched along guide central_europe although dropped guide netherlands belgium luxembourg added dropped season themed guides put motion featuring campsites covering one nine specific including best campsites children spas nature walking cycling beach dogs active families series four core titles two german titles season rented accommodation yearound award winners guides continue published mark group acquired caravan club brand alan_rogers travel group along company belle france guides continue recommend campsites based strict independent added appropriate removed standards fallen acquisition big selection guide introduced featuring selected campsites european_countries introduction also produced also saw launch digital guides use tablets mobile guides influential rise popularity camping example drawing attention number providing mains electricity hook ups alan british caravanners motor take_advantage units wired take mains electricity standard british caravan wasupplied mains electricity one measure many things called original guide become reality mains electricity connections caravans motor caravans marked pitches minimum size hot water freely available amenity blocks british style toilets french campsites use trees mark pitches end practice sites peak summer holiday times many sites like camping recommended still recommended current guides although sites developed along lines originally recommended alan_rogers externalinks_official_website also alan_rogers camping alan_rogers references amazon alan_rogers guides sale amazon alan_rogers guides information britain ireland guide sale category handbooks category_travel_guide_books category_books camping"},{"title":"Alberta Culture and Tourism","description":"alberta culture and tourism is a ministry of thexecutive council of alberta executive council of alberta it was created on september and is responsible for alberta s cultural industries tourism the arts heritage and nonprofit voluntary sector as well asport and recreation administrative history the culture tourism and recreation functions of alberta s government have on several occasions in past been overseen by separate ministers they have also been more than once sections within the portfoliof the same minister they have also each been joined to still other government departments at various points a separate tourisministry goes back at leasto when allen r patrick was named minister of industry and tourism from tourism as an issue wassigned to a minister without a portfolio and there was no separate tourism department in tourism and small business became a separate ministry renamed simply tourism in the majorestructuring of tourism was reunited with economic development parks and recreation was added as well thisituation was mostly static for the nextwo decades the ministry was known as alberta tourism parks and recreation tpr from to culture and recreation were along with youth issues together under the purview of the ministry of culture youth and recreation from to after which recreation moved to alberta recreation parks and wildlife which was its own ministry from to before being merged intourism during the majorestructuring of that year the cultural affairs department was founded in by order in council under the authority of the public service administrative transfers acthe ministeresponsible for this was known as the ministeresponsible for culture minister of culture and minister of culture and multiculturalism agencies which reported to the minister included the alberta cultural heritage foundation alberta multiculturalism commission albertart foundation alberta foundation for the performing arts alberta foundation for the literary arts alberta foundation for the arts alberta library board and albertadvisory council on the status of women during this time the minister was responsible for implementing the following legislation albertacademy act albertart foundation act alberta emblems act alberta foundation for the arts act alberta heritage day act alberta historical resources act alberta order of excellence act alberta women s bureau act amusements act albertamusements act part cultural development act cultural foundations act department of culture act department of culture and multiculturalism act foreign cultural property immunity act glenbow alberta institute act government house act libraries act and registered music teachers association act during the restructuring the former department of culture and multiculturalism and former department of tourism parks and recreation were dissolved and replaced by the ministry of community developmenthis contained all of the current components of the ministry along with parks from to this ministry was renamed alberta tourism parks recreation and culture on march culture was broken out in a new ministry called alberta culture and community spirit was renamed simply alberta culture on may in culture was reunited with tourism including recreation buthis time without alberta parks which moved to the ministry of environment and parks ministry structure the ministry includes travel alberta the tourismarketing agency of the ministry the alberta sport recreation parks and wildlife foundation also known as alberta sport connection as a non profit crown corporations of canada crown corporation the alberta foundation for the arts alberta historical resources foundation and government house foundation tourism regions of travel alberta travel alberta divided the province into five tourism regions canadian badlands canadian rockies centralberta northern alberta southern alberta see also list of alberta provincial parks references category alberta government departments and agencies culture and tourism category culture ministries category tourisministries category sports ministries","main_words":["alberta","culture_tourism","ministry","thexecutive","council","alberta","executive","council","alberta","created","september","responsible","alberta","cultural","industries","tourism","arts","heritage","nonprofit","voluntary","sector","well","recreation","administrative","history","culture_tourism","recreation","functions","alberta","government","several","occasions","past","overseen","separate","ministers","also","sections","within","portfoliof","minister","also","joined","still","government_departments","various","points","separate","tourisministry","goes","back","allen","r","patrick","named","minister","industry","tourism","tourism","issue","wassigned","minister","without","portfolio","separate","tourism","department","tourism","small","business","became","separate","ministry","renamed","simply","tourism","tourism","economic_development","parks","recreation","added","well","mostly","static","decades","ministry","known","alberta","tourism","parks","recreation","culture","recreation","along","youth","issues","together","ministry","culture","youth","recreation","recreation","moved","alberta","recreation","parks","wildlife","ministry","merged","year","cultural","affairs","department","founded","order","council","authority","public","service","administrative","acthe","known","culture","minister","culture","minister","culture","multiculturalism","agencies","reported","minister","included","alberta","cultural_heritage","foundation","alberta","multiculturalism","commission","foundation","alberta","foundation","performing","arts","alberta","foundation","literary","arts","alberta","foundation","arts","alberta","library","board","council","status","women","time","minister","responsible","implementing","following","legislation","act","foundation","act","alberta","act","alberta","foundation","arts","act","alberta","heritage","day","act","alberta","historical","resources","act","alberta","order","excellence","act","alberta","women","bureau","act","amusements","act","act","part","cultural","development","act","cultural","foundations","act","department","culture","act","department","culture","multiculturalism","act","foreign","cultural","property","immunity","act","alberta","institute","act","government","house","act","libraries","act","registered","music","teachers","association","act","restructuring","former","department","culture","multiculturalism","former","department","tourism","parks","recreation","dissolved","replaced","ministry","community","contained","current","components","ministry","along","parks","ministry","renamed","alberta","tourism","parks","recreation","culture","march","culture","broken","new","ministry","called","alberta","culture","community","spirit","renamed","simply","alberta","culture","may","culture_tourism","including","recreation","buthis","time","without","alberta","parks","moved","ministry","environment","parks","ministry","structure","ministry","includes","travel","alberta","tourismarketing","agency","ministry","alberta","sport","recreation","parks","wildlife","foundation","also_known","alberta","sport","connection","non_profit","crown","corporations","canada","crown","corporation","alberta","foundation","arts","alberta","historical","resources","foundation","government","house","foundation","tourism_regions","travel","alberta","travel","alberta","divided","province","five","tourism_regions","canadian","canadian_rockies","northern","alberta","southern","alberta","see_also","list","alberta","references_category","alberta","government_departments","agencies","culture_tourism","category_culture_ministries","category_tourisministries","category_sports","ministries"],"clean_bigrams":[["alberta","culture"],["culture","tourism"],["thexecutive","council"],["alberta","executive"],["executive","council"],["alberta","cultural"],["cultural","industries"],["industries","tourism"],["arts","heritage"],["nonprofit","voluntary"],["voluntary","sector"],["recreation","administrative"],["administrative","history"],["culture","tourism"],["recreation","functions"],["alberta","government"],["several","occasions"],["separate","ministers"],["sections","within"],["government","departments"],["various","points"],["separate","tourisministry"],["tourisministry","goes"],["goes","back"],["allen","r"],["r","patrick"],["named","minister"],["issue","wassigned"],["minister","without"],["separate","tourism"],["tourism","department"],["small","business"],["business","became"],["separate","ministry"],["ministry","renamed"],["renamed","simply"],["simply","tourism"],["economic","development"],["development","parks"],["parks","recreation"],["mostly","static"],["alberta","tourism"],["tourism","parks"],["parks","recreation"],["youth","issues"],["issues","together"],["culture","youth"],["recreation","moved"],["alberta","recreation"],["recreation","parks"],["cultural","affairs"],["affairs","department"],["public","service"],["service","administrative"],["culture","minister"],["culture","minister"],["multiculturalism","agencies"],["minister","included"],["alberta","cultural"],["cultural","heritage"],["heritage","foundation"],["foundation","alberta"],["alberta","multiculturalism"],["multiculturalism","commission"],["foundation","alberta"],["alberta","foundation"],["performing","arts"],["arts","alberta"],["alberta","foundation"],["literary","arts"],["arts","alberta"],["alberta","foundation"],["arts","alberta"],["alberta","library"],["library","board"],["following","legislation"],["foundation","act"],["act","alberta"],["act","alberta"],["alberta","foundation"],["arts","act"],["act","alberta"],["alberta","heritage"],["heritage","day"],["day","act"],["act","alberta"],["alberta","historical"],["historical","resources"],["resources","act"],["act","alberta"],["alberta","order"],["excellence","act"],["act","alberta"],["alberta","women"],["bureau","act"],["act","amusements"],["amusements","act"],["act","part"],["part","cultural"],["cultural","development"],["development","act"],["act","cultural"],["cultural","foundations"],["foundations","act"],["act","department"],["culture","act"],["act","department"],["multiculturalism","act"],["act","foreign"],["foreign","cultural"],["cultural","property"],["property","immunity"],["immunity","act"],["act","alberta"],["alberta","institute"],["institute","act"],["act","government"],["government","house"],["house","act"],["act","libraries"],["libraries","act"],["registered","music"],["music","teachers"],["teachers","association"],["association","act"],["former","department"],["former","department"],["tourism","parks"],["parks","recreation"],["current","components"],["ministry","along"],["parks","ministry"],["ministry","renamed"],["renamed","alberta"],["alberta","tourism"],["tourism","parks"],["parks","recreation"],["march","culture"],["new","ministry"],["ministry","called"],["called","alberta"],["alberta","culture"],["community","spirit"],["renamed","simply"],["simply","alberta"],["alberta","culture"],["culture","tourism"],["tourism","including"],["including","recreation"],["recreation","buthis"],["buthis","time"],["time","without"],["without","alberta"],["alberta","parks"],["parks","ministry"],["ministry","structure"],["ministry","includes"],["includes","travel"],["travel","alberta"],["tourismarketing","agency"],["alberta","sport"],["sport","recreation"],["recreation","parks"],["wildlife","foundation"],["foundation","also"],["also","known"],["alberta","sport"],["sport","connection"],["non","profit"],["profit","crown"],["crown","corporations"],["canada","crown"],["crown","corporation"],["alberta","foundation"],["arts","alberta"],["alberta","historical"],["historical","resources"],["resources","foundation"],["government","house"],["house","foundation"],["foundation","tourism"],["tourism","regions"],["travel","alberta"],["alberta","travel"],["travel","alberta"],["alberta","divided"],["five","tourism"],["tourism","regions"],["regions","canadian"],["canadian","rockies"],["northern","alberta"],["alberta","southern"],["southern","alberta"],["alberta","see"],["see","also"],["also","list"],["alberta","provincial"],["provincial","parks"],["parks","references"],["references","category"],["category","alberta"],["alberta","government"],["government","departments"],["agencies","culture"],["culture","tourism"],["tourism","category"],["category","culture"],["culture","ministries"],["ministries","category"],["category","tourisministries"],["tourisministries","category"],["category","sports"],["sports","ministries"]],"all_collocations":["alberta culture","culture tourism","thexecutive council","alberta executive","executive council","alberta cultural","cultural industries","industries tourism","arts heritage","nonprofit voluntary","voluntary sector","recreation administrative","administrative history","culture tourism","recreation functions","alberta government","several occasions","separate ministers","sections within","government departments","various points","separate tourisministry","tourisministry goes","goes back","allen r","r patrick","named minister","issue wassigned","minister without","separate tourism","tourism department","small business","business became","separate ministry","ministry renamed","renamed simply","simply tourism","economic development","development parks","parks recreation","mostly static","alberta tourism","tourism parks","parks recreation","youth issues","issues together","culture youth","recreation moved","alberta recreation","recreation parks","cultural affairs","affairs department","public service","service administrative","culture minister","culture minister","multiculturalism agencies","minister included","alberta cultural","cultural heritage","heritage foundation","foundation alberta","alberta multiculturalism","multiculturalism commission","foundation alberta","alberta foundation","performing arts","arts alberta","alberta foundation","literary arts","arts alberta","alberta foundation","arts alberta","alberta library","library board","following legislation","foundation act","act alberta","act alberta","alberta foundation","arts act","act alberta","alberta heritage","heritage day","day act","act alberta","alberta historical","historical resources","resources act","act alberta","alberta order","excellence act","act alberta","alberta women","bureau act","act amusements","amusements act","act part","part cultural","cultural development","development act","act cultural","cultural foundations","foundations act","act department","culture act","act department","multiculturalism act","act foreign","foreign cultural","cultural property","property immunity","immunity act","act alberta","alberta institute","institute act","act government","government house","house act","act libraries","libraries act","registered music","music teachers","teachers association","association act","former department","former department","tourism parks","parks recreation","current components","ministry along","parks ministry","ministry renamed","renamed alberta","alberta tourism","tourism parks","parks recreation","march culture","new ministry","ministry called","called alberta","alberta culture","community spirit","renamed simply","simply alberta","alberta culture","culture tourism","tourism including","including recreation","recreation buthis","buthis time","time without","without alberta","alberta parks","parks ministry","ministry structure","ministry includes","includes travel","travel alberta","tourismarketing agency","alberta sport","sport recreation","recreation parks","wildlife foundation","foundation also","also known","alberta sport","sport connection","non profit","profit crown","crown corporations","canada crown","crown corporation","alberta foundation","arts alberta","alberta historical","historical resources","resources foundation","government house","house foundation","foundation tourism","tourism regions","travel alberta","alberta travel","travel alberta","alberta divided","five tourism","tourism regions","regions canadian","canadian rockies","northern alberta","alberta southern","southern alberta","alberta see","see also","also list","alberta provincial","provincial parks","parks references","references category","category alberta","alberta government","government departments","agencies culture","culture tourism","tourism category","category culture","culture ministries","ministries category","category tourisministries","tourisministries category","category sports","sports ministries"],"new_description":"alberta culture_tourism ministry thexecutive council alberta executive council alberta created september responsible alberta cultural industries tourism arts heritage nonprofit voluntary sector well recreation administrative history culture_tourism recreation functions alberta government several occasions past overseen separate ministers also sections within portfoliof minister also joined still government_departments various points separate tourisministry goes back allen r patrick named minister industry tourism tourism issue wassigned minister without portfolio separate tourism department tourism small business became separate ministry renamed simply tourism tourism economic_development parks recreation added well mostly static decades ministry known alberta tourism parks recreation culture recreation along youth issues together ministry culture youth recreation recreation moved alberta recreation parks wildlife ministry merged year cultural affairs department founded order council authority public service administrative acthe known culture minister culture minister culture multiculturalism agencies reported minister included alberta cultural_heritage foundation alberta multiculturalism commission foundation alberta foundation performing arts alberta foundation literary arts alberta foundation arts alberta library board council status women time minister responsible implementing following legislation act foundation act alberta act alberta foundation arts act alberta heritage day act alberta historical resources act alberta order excellence act alberta women bureau act amusements act act part cultural development act cultural foundations act department culture act department culture multiculturalism act foreign cultural property immunity act alberta institute act government house act libraries act registered music teachers association act restructuring former department culture multiculturalism former department tourism parks recreation dissolved replaced ministry community contained current components ministry along parks ministry renamed alberta tourism parks recreation culture march culture broken new ministry called alberta culture community spirit renamed simply alberta culture may culture_tourism including recreation buthis time without alberta parks moved ministry environment parks ministry structure ministry includes travel alberta tourismarketing agency ministry alberta sport recreation parks wildlife foundation also_known alberta sport connection non_profit crown corporations canada crown corporation alberta foundation arts alberta historical resources foundation government house foundation tourism_regions travel alberta travel alberta divided province five tourism_regions canadian canadian_rockies northern alberta southern alberta see_also list alberta provincial_parks references_category alberta government_departments agencies culture_tourism category_culture_ministries category_tourisministries category_sports ministries"},{"title":"Alcohol-free bar","description":"an alcohol free bar also known as a dry bar is a bar that does not serve alcoholic beverage s an alcohol free bar can be a business establishment or located in a non business environment or event such as at a wedding alcohol free bars typically serve non alcoholic beverage such as non alcoholicocktails known as mocktails alcohol free beer or low alcohol beer alcohol free wine juice soft drinks and water various foods may also be served by country in the th century coffee palace s werestablished as alcohol free hotels in australia new zealand in the first alcohol free bar inew zealand located in auckland named tap bar went out of business five weeks after opening due to a lack of consumer interest in which few patronshowed upatrons that did show up often only consumed water after paying the cover charge for entry united kingdom some cities in the united kingdom have alcohol free bars and public house s the popularity of alcohol free bars has increased in the united kingdom and they are often funded by anti alcoholism charities file fitzpatricks temperance barjpg thumb right fitzpatrick s temperance barawtenstallancashirestablished temperance bar s werestablished in many places during the th century in support of the temperance movement among the drinks they offered were dandelion and burdock and sarsaparilla soft drink sarsaparilla fitzpatrick s in rawtenstallancashirestablished in is described as the uk s only remaining temperance bar and re opened in march after a closure of two months the first modern alcohol free bar in england opened in is named the brink and is located in liverpool the brink is also a drug free bar and is run by the charity action addiction with support from the big lottery fund it also serves food and hosts various eventsuch as live music and film showings an alcohol free bar named redemption is located athe base of the trellick tower inorth kensington london england it originated as a pop up restaurant and opened as a permanent establishment in july redemption also serves vegan food that is locally sourced and its menu is based upon providing nutritional foods and beverages its owners have stated that it is a sober and cruelty free baredemption also utilizes a zero waste policy the netil house is another alcohol free bar located in london sobar inottingham is an alcohol free bar operated by a charity double impact which works with both alcohol andrug addiction it received funding from the big lottery fund and employs people who have been addicts an alcohol free bar named universexists in coventry england near coventry university actor kevin kennedy actor kevin kennedy a recovering alcoholic stated in that he had plans topen an alcohol free bar in brighton england in leeds there are plans to develop an alcohol free bar and restaurant called inclucid pop up events of that brand have already taken place and a crowd funding appeal is in progress its promoters aim to create a bar in leeds free from alcohol which provides a safe and sociablenvironment for the increasing diverse customer baseeking new abstinent alternativenues united states the other side is an alcohol free bar located in crystalake illinois a chicago suburb that strives to provide a place that is exactly like a bar forecovering alcoholicsee also alcohol free zone non alcoholic mixedrink list of non alcoholicocktails list of non alcoholicocktails oxygen bar smart drinks index of drinking establishment related articles types of drinking establishmentypes of drinking establishments furthereading externalinks category types of drinking establishment category bartending category types of restaurants category non alcoholic drinks","main_words":["alcohol","known","dry","bar","bar","alcohol_free_bar","business","establishment","located","non","business","environment","event","wedding","alcohol_free_bars","typically","serve","non_alcoholic","beverage","non","known","alcohol_free","beer","low","alcohol","beer","alcohol_free","wine","juice","soft_drinks","water","various","foods","may_also","served","country","th_century","coffee","palace","werestablished","alcohol_free","hotels","australia","new_zealand","first","alcohol_free_bar","inew_zealand","located","auckland","named","tap","bar","went","business","five","weeks","opening","due","lack","consumer","interest","show","often","consumed","water","paying","cover_charge","entry","united_kingdom","cities","united_kingdom","alcohol_free_bars","public_house","popularity","alcohol_free_bars","increased","united_kingdom","often","funded","anti","alcoholism","charities","file","temperance","barjpg","thumb","right","fitzpatrick","temperance","temperance","bar","werestablished","many","places","th_century","support","temperance","movement","among","drinks","offered","soft_drink","fitzpatrick","described","uk","remaining","temperance","bar","opened","march","closure","two","months","first","modern","alcohol_free_bar","england","opened","named","located","liverpool","also","drug","run","charity","action","addiction","support","big","lottery","fund","also_serves","food","hosts","various","eventsuch","live_music","film","alcohol_free_bar","named","redemption","located_athe","base","tower","inorth","kensington","london_england","originated","pop","restaurant","opened","permanent","establishment","july","redemption","also_serves","vegan","food","locally","sourced","menu","based_upon","providing","nutritional","foods","beverages","owners","stated","cruelty","free","also","utilizes","zero","waste","policy","house","another","london","inottingham","alcohol_free_bar","operated","charity","double","impact","works","alcohol","andrug","addiction","received","funding","big","lottery","fund","employs","people","alcohol_free_bar","named","coventry","england","near","coventry","university","actor","kevin","kennedy","actor","kevin","kennedy","recovering","alcoholic","stated","plans","topen","alcohol_free_bar","brighton","england","leeds","plans","develop","alcohol_free_bar","restaurant","called","pop","events","brand","already","taken_place","crowd","funding","appeal","progress","promoters","aim","create","bar","leeds","free","alcohol","provides","safe","increasing","diverse","customer","new","united_states","side","illinois","chicago","suburb","strives","provide","place","exactly","like","bar_also","alcohol_free","zone","non_alcoholic","list","non","list","non","oxygen","bar","smart","drinks","index","drinking_establishment","related_articles","types","drinking","drinking_establishments","furthereading_externalinks","category_types","drinking_establishment_category","bartending","category_types","drinks"],"clean_bigrams":[["alcohol","free"],["free","bar"],["bar","also"],["also","known"],["dry","bar"],["serve","alcoholic"],["alcoholic","beverage"],["alcohol","free"],["free","bar"],["business","establishment"],["non","business"],["business","environment"],["wedding","alcohol"],["alcohol","free"],["free","bars"],["bars","typically"],["typically","serve"],["serve","non"],["non","alcoholic"],["alcoholic","beverage"],["alcohol","free"],["free","beer"],["low","alcohol"],["alcohol","beer"],["beer","alcohol"],["alcohol","free"],["free","wine"],["wine","juice"],["juice","soft"],["soft","drinks"],["water","various"],["various","foods"],["foods","may"],["may","also"],["th","century"],["century","coffee"],["coffee","palace"],["alcohol","free"],["free","hotels"],["australia","new"],["new","zealand"],["first","alcohol"],["alcohol","free"],["free","bar"],["bar","inew"],["inew","zealand"],["zealand","located"],["auckland","named"],["named","tap"],["tap","bar"],["bar","went"],["business","five"],["five","weeks"],["opening","due"],["consumer","interest"],["consumed","water"],["cover","charge"],["entry","united"],["united","kingdom"],["united","kingdom"],["alcohol","free"],["free","bars"],["public","house"],["alcohol","free"],["free","bars"],["united","kingdom"],["often","funded"],["anti","alcoholism"],["alcoholism","charities"],["charities","file"],["temperance","barjpg"],["barjpg","thumb"],["thumb","right"],["right","fitzpatrick"],["temperance","bar"],["many","places"],["th","century"],["temperance","movement"],["movement","among"],["soft","drink"],["remaining","temperance"],["temperance","bar"],["two","months"],["first","modern"],["modern","alcohol"],["alcohol","free"],["free","bar"],["england","opened"],["drug","free"],["free","bar"],["charity","action"],["action","addiction"],["big","lottery"],["lottery","fund"],["also","serves"],["serves","food"],["hosts","various"],["various","eventsuch"],["live","music"],["alcohol","free"],["free","bar"],["bar","named"],["named","redemption"],["located","athe"],["athe","base"],["tower","inorth"],["inorth","kensington"],["kensington","london"],["london","england"],["permanent","establishment"],["july","redemption"],["redemption","also"],["also","serves"],["serves","vegan"],["vegan","food"],["locally","sourced"],["based","upon"],["upon","providing"],["providing","nutritional"],["nutritional","foods"],["cruelty","free"],["also","utilizes"],["zero","waste"],["waste","policy"],["another","alcohol"],["alcohol","free"],["free","bar"],["bar","located"],["alcohol","free"],["free","bar"],["bar","operated"],["charity","double"],["double","impact"],["alcohol","andrug"],["andrug","addiction"],["received","funding"],["big","lottery"],["lottery","fund"],["employs","people"],["alcohol","free"],["free","bar"],["bar","named"],["coventry","england"],["england","near"],["near","coventry"],["coventry","university"],["university","actor"],["actor","kevin"],["kevin","kennedy"],["kennedy","actor"],["actor","kevin"],["kevin","kennedy"],["recovering","alcoholic"],["alcoholic","stated"],["plans","topen"],["alcohol","free"],["free","bar"],["brighton","england"],["alcohol","free"],["free","bar"],["restaurant","called"],["already","taken"],["taken","place"],["crowd","funding"],["funding","appeal"],["promoters","aim"],["leeds","free"],["increasing","diverse"],["diverse","customer"],["united","states"],["alcohol","free"],["free","bar"],["bar","located"],["chicago","suburb"],["exactly","like"],["bar","also"],["also","alcohol"],["alcohol","free"],["free","zone"],["zone","non"],["non","alcoholic"],["oxygen","bar"],["bar","smart"],["smart","drinks"],["drinks","index"],["drinking","establishment"],["establishment","related"],["related","articles"],["articles","types"],["drinking","establishments"],["establishments","furthereading"],["furthereading","externalinks"],["externalinks","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","bartending"],["bartending","category"],["category","types"],["restaurants","category"],["category","non"],["non","alcoholic"],["alcoholic","drinks"]],"all_collocations":["alcohol free","free bar","bar also","also known","dry bar","serve alcoholic","alcoholic beverage","alcohol free","free bar","business establishment","non business","business environment","wedding alcohol","alcohol free","free bars","bars typically","typically serve","serve non","non alcoholic","alcoholic beverage","alcohol free","free beer","low alcohol","alcohol beer","beer alcohol","alcohol free","free wine","wine juice","juice soft","soft drinks","water various","various foods","foods may","may also","th century","century coffee","coffee palace","alcohol free","free hotels","australia new","new zealand","first alcohol","alcohol free","free bar","bar inew","inew zealand","zealand located","auckland named","named tap","tap bar","bar went","business five","five weeks","opening due","consumer interest","consumed water","cover charge","entry united","united kingdom","united kingdom","alcohol free","free bars","public house","alcohol free","free bars","united kingdom","often funded","anti alcoholism","alcoholism charities","charities file","temperance barjpg","barjpg thumb","right fitzpatrick","temperance bar","many places","th century","temperance movement","movement among","soft drink","remaining temperance","temperance bar","two months","first modern","modern alcohol","alcohol free","free bar","england opened","drug free","free bar","charity action","action addiction","big lottery","lottery fund","also serves","serves food","hosts various","various eventsuch","live music","alcohol free","free bar","bar named","named redemption","located athe","athe base","tower inorth","inorth kensington","kensington london","london england","permanent establishment","july redemption","redemption also","also serves","serves vegan","vegan food","locally sourced","based upon","upon providing","providing nutritional","nutritional foods","cruelty free","also utilizes","zero waste","waste policy","another alcohol","alcohol free","free bar","bar located","alcohol free","free bar","bar operated","charity double","double impact","alcohol andrug","andrug addiction","received funding","big lottery","lottery fund","employs people","alcohol free","free bar","bar named","coventry england","england near","near coventry","coventry university","university actor","actor kevin","kevin kennedy","kennedy actor","actor kevin","kevin kennedy","recovering alcoholic","alcoholic stated","plans topen","alcohol free","free bar","brighton england","alcohol free","free bar","restaurant called","already taken","taken place","crowd funding","funding appeal","promoters aim","leeds free","increasing diverse","diverse customer","united states","alcohol free","free bar","bar located","chicago suburb","exactly like","bar also","also alcohol","alcohol free","free zone","zone non","non alcoholic","oxygen bar","bar smart","smart drinks","drinks index","drinking establishment","establishment related","related articles","articles types","drinking establishments","establishments furthereading","furthereading externalinks","externalinks category","category types","drinking establishment","establishment category","category bartending","bartending category","category types","restaurants category","category non","non alcoholic","alcoholic drinks"],"new_description":"alcohol free_bar_also known dry bar bar serve_alcoholic_beverage alcohol_free_bar business establishment located non business environment event wedding alcohol_free_bars typically serve non_alcoholic beverage non known alcohol_free beer low alcohol beer alcohol_free wine juice soft_drinks water various foods may_also served country th_century coffee palace werestablished alcohol_free hotels australia new_zealand first alcohol_free_bar inew_zealand located auckland named tap bar went business five weeks opening due lack consumer interest show often consumed water paying cover_charge entry united_kingdom cities united_kingdom alcohol_free_bars public_house popularity alcohol_free_bars increased united_kingdom often funded anti alcoholism charities file temperance barjpg thumb right fitzpatrick temperance temperance bar werestablished many places th_century support temperance movement among drinks offered soft_drink fitzpatrick described uk remaining temperance bar opened march closure two months first modern alcohol_free_bar england opened named located liverpool also drug free_bar run charity action addiction support big lottery fund also_serves food hosts various eventsuch live_music film alcohol_free_bar named redemption located_athe base tower inorth kensington london_england originated pop restaurant opened permanent establishment july redemption also_serves vegan food locally sourced menu based_upon providing nutritional foods beverages owners stated cruelty free also utilizes zero waste policy house another alcohol_free_bar_located london inottingham alcohol_free_bar operated charity double impact works alcohol andrug addiction received funding big lottery fund employs people alcohol_free_bar named coventry england near coventry university actor kevin kennedy actor kevin kennedy recovering alcoholic stated plans topen alcohol_free_bar brighton england leeds plans develop alcohol_free_bar restaurant called pop events brand already taken_place crowd funding appeal progress promoters aim create bar leeds free alcohol provides safe increasing diverse customer new united_states side alcohol_free_bar_located illinois chicago suburb strives provide place exactly like bar_also alcohol_free zone non_alcoholic list non list non oxygen bar smart drinks index drinking_establishment related_articles types drinking drinking_establishments furthereading_externalinks category_types drinking_establishment_category bartending category_types restaurants_category_non_alcoholic drinks"},{"title":"Allegro (restaurant)","description":"michelin guide country seating capacity reservations website allegro was a top restaurant in prague four seasons hotel prague four seasons hotel it is now closed in it became the first restaurant from the post communist bloc tobtain the star from the prestigious michelin guide in and allegro retained itstar it was the only restaurant in prague withe accolade although in a restaurant in hungary was awarded the star ending allego s claim as the only restaurant from theastern bloc to have the star thead chef was andreaccordi externalinks official site category michelin guide starred restaurants category defunct restaurants category restaurants in prague","main_words":["michelin","guide","country","website","top","restaurant","prague","four","seasons","hotel","prague","four","seasons","hotel","closed","became","first","restaurant","post","communist","tobtain","star","prestigious","michelin_guide","retained","restaurant","prague","withe","although","restaurant","hungary","awarded","star","ending","claim","restaurant","theastern","star","thead","chef","externalinks_official","site_category","michelin_guide","starred_restaurants","category_defunct","restaurants_category_restaurants","prague"],"clean_bigrams":[["michelin","guide"],["guide","country"],["country","seating"],["seating","capacity"],["capacity","reservations"],["reservations","website"],["top","restaurant"],["prague","four"],["four","seasons"],["seasons","hotel"],["hotel","prague"],["prague","four"],["four","seasons"],["seasons","hotel"],["first","restaurant"],["post","communist"],["prestigious","michelin"],["michelin","guide"],["prague","withe"],["star","ending"],["star","thead"],["thead","chef"],["externalinks","official"],["official","site"],["site","category"],["category","michelin"],["michelin","guide"],["guide","starred"],["starred","restaurants"],["restaurants","category"],["category","defunct"],["defunct","restaurants"],["restaurants","category"],["category","restaurants"]],"all_collocations":["michelin guide","guide country","country seating","seating capacity","capacity reservations","reservations website","top restaurant","prague four","four seasons","seasons hotel","hotel prague","prague four","four seasons","seasons hotel","first restaurant","post communist","prestigious michelin","michelin guide","prague withe","star ending","star thead","thead chef","externalinks official","official site","site category","category michelin","michelin guide","guide starred","starred restaurants","restaurants category","category defunct","defunct restaurants","restaurants category","category restaurants"],"new_description":"michelin guide country seating_capacity_reservations website top restaurant prague four seasons hotel prague four seasons hotel closed became first restaurant post communist tobtain star prestigious michelin_guide retained restaurant prague withe although restaurant hungary awarded star ending claim restaurant theastern star thead chef externalinks_official site_category michelin_guide starred_restaurants category_defunct restaurants_category_restaurants prague"},{"title":"Allotment (travel industry)","description":"allotments in the tourism industry are used to designate a certain block of pre negotiated common carrier seats or hotel rooms whichave been bought out and held by a travel organizer with a huge buying power like a wholesaler tour operator hotel consolidator and more rarely by a retail travel agent allotments can be purchased for a specific period of time such as a whole season part of a season or for any single dates and then resold to travel partners and final customers around the globe a couple of days prior to carrier departure hotel check in any unsold seats rooms may be released back to the supplier if such an agreement exists between the two parties an allotment release back period is also negotiated as part of the allotment contract eg four days prior to check in departure negotiating allotments can be negotiated between a tour operator and a travel service supplier such as airline company hotel chain or between two travel organizersuch as a tour operator and a retail travel agent either way the buyer needs to prove a consistent level of business because allotments are hardly granted without any previousales history rooms or seats that have not been contracted between the travel company and the product supplier are handled as on request whereach booking of an airline seat or hotel room needs to be confirmed withe supplier before being confirmed withe clienthe allotment or allocation contracthe amount of the contracted roomseats to be specified in the allotment contract is a result of thestimateduring the negotiation volume of sales to be realized by the tour operator tour operators book a certainumber of rooms in hotels or seats on carriers and have the righto use them by a given date also known as a release date that usually isome days prior tourist s arrival hotels departure carriers the allotment contract reduces the risk of any unsold products by the supplier and grants relative price advantage to the travel organizer helping him to stay competitive on the market by offering extra discounts tour operators obtain discounts through allotment or commitment contracts primarily depend on the firm size and the bargaining power exercised they can vary from to according to the period of the year the destination the quantity and quality of services contracted upon some big tour operators are able tobtain up tof discount category service industries category tourism category travel agencies","main_words":["allotments","tourism_industry","used","designate","certain","block","pre","negotiated","common","carrier","seats","hotel_rooms","whichave","bought","held","travel","organizer","huge","buying","power","like","wholesaler","tour_operator","hotel","consolidator","rarely","retail","travel_agent","allotments","purchased","specific","period","time","whole","season","part","season","single","dates","travel","partners","final","customers","around","globe","couple","days","prior","carrier","departure","hotel","check","unsold","seats","rooms","may","released","back","supplier","agreement","exists","two","parties","allotment","release","back","period","also","negotiated","part","allotment","contract","four","days","prior","check","departure","negotiating","allotments","negotiated","tour_operator","travel","service","supplier","airline","company","hotel_chain","two","travel","tour_operator","retail","travel_agent","either","way","needs","prove","consistent","level","business","allotments","hardly","granted","without","history","rooms","seats","contracted","travel_company","product","supplier","handled","request","booking","airline","seat","hotel_room","needs","confirmed","withe","supplier","confirmed","withe","allotment","allocation","amount","contracted","specified","allotment","contract","result","volume","sales","realized","tour_operator","tour_operators","book","certainumber","rooms","hotels","seats","carriers","righto","use","given","date","also_known","release","date","usually","days","prior","tourist","arrival","hotels","departure","carriers","allotment","contract","reduces","risk","unsold","products","supplier","grants","relative","price","advantage","travel","organizer","helping","stay","competitive","market","offering","extra","discounts","tour_operators","obtain","discounts","allotment","commitment","contracts","primarily","depend","firm","size","power","vary","according","period","year","destination","quantity","quality_services","contracted","upon","big","tour_operators","able","tobtain","tof","discount","category","service","industries","category_tourism","category_travel","agencies"],"clean_bigrams":[["tourism","industry"],["certain","block"],["pre","negotiated"],["negotiated","common"],["common","carrier"],["carrier","seats"],["hotel","rooms"],["rooms","whichave"],["travel","organizer"],["huge","buying"],["buying","power"],["power","like"],["wholesaler","tour"],["tour","operator"],["operator","hotel"],["hotel","consolidator"],["retail","travel"],["travel","agent"],["agent","allotments"],["specific","period"],["whole","season"],["season","part"],["single","dates"],["travel","partners"],["final","customers"],["customers","around"],["days","prior"],["carrier","departure"],["departure","hotel"],["hotel","check"],["unsold","seats"],["seats","rooms"],["rooms","may"],["released","back"],["agreement","exists"],["two","parties"],["allotment","release"],["release","back"],["back","period"],["also","negotiated"],["allotment","contract"],["four","days"],["days","prior"],["departure","negotiating"],["negotiating","allotments"],["tour","operator"],["travel","service"],["service","supplier"],["airline","company"],["company","hotel"],["hotel","chain"],["two","travel"],["tour","operator"],["retail","travel"],["travel","agent"],["agent","either"],["either","way"],["consistent","level"],["hardly","granted"],["granted","without"],["history","rooms"],["travel","company"],["product","supplier"],["airline","seat"],["hotel","room"],["room","needs"],["confirmed","withe"],["withe","supplier"],["confirmed","withe"],["allotment","contract"],["tour","operator"],["operator","tour"],["tour","operators"],["operators","book"],["righto","use"],["given","date"],["date","also"],["also","known"],["release","date"],["days","prior"],["prior","tourist"],["arrival","hotels"],["hotels","departure"],["departure","carriers"],["allotment","contract"],["contract","reduces"],["unsold","products"],["grants","relative"],["relative","price"],["price","advantage"],["travel","organizer"],["organizer","helping"],["stay","competitive"],["offering","extra"],["extra","discounts"],["discounts","tour"],["tour","operators"],["operators","obtain"],["obtain","discounts"],["commitment","contracts"],["contracts","primarily"],["primarily","depend"],["firm","size"],["services","contracted"],["contracted","upon"],["big","tour"],["tour","operators"],["able","tobtain"],["tof","discount"],["discount","category"],["category","service"],["service","industries"],["industries","category"],["category","tourism"],["tourism","category"],["category","travel"],["travel","agencies"]],"all_collocations":["tourism industry","certain block","pre negotiated","negotiated common","common carrier","carrier seats","hotel rooms","rooms whichave","travel organizer","huge buying","buying power","power like","wholesaler tour","tour operator","operator hotel","hotel consolidator","retail travel","travel agent","agent allotments","specific period","whole season","season part","single dates","travel partners","final customers","customers around","days prior","carrier departure","departure hotel","hotel check","unsold seats","seats rooms","rooms may","released back","agreement exists","two parties","allotment release","release back","back period","also negotiated","allotment contract","four days","days prior","departure negotiating","negotiating allotments","tour operator","travel service","service supplier","airline company","company hotel","hotel chain","two travel","tour operator","retail travel","travel agent","agent either","either way","consistent level","hardly granted","granted without","history rooms","travel company","product supplier","airline seat","hotel room","room needs","confirmed withe","withe supplier","confirmed withe","allotment contract","tour operator","operator tour","tour operators","operators book","righto use","given date","date also","also known","release date","days prior","prior tourist","arrival hotels","hotels departure","departure carriers","allotment contract","contract reduces","unsold products","grants relative","relative price","price advantage","travel organizer","organizer helping","stay competitive","offering extra","extra discounts","discounts tour","tour operators","operators obtain","obtain discounts","commitment contracts","contracts primarily","primarily depend","firm size","services contracted","contracted upon","big tour","tour operators","able tobtain","tof discount","discount category","category service","service industries","industries category","category tourism","tourism category","category travel","travel agencies"],"new_description":"allotments tourism_industry used designate certain block pre negotiated common carrier seats hotel_rooms whichave bought held travel organizer huge buying power like wholesaler tour_operator hotel consolidator rarely retail travel_agent allotments purchased specific period time whole season part season single dates travel partners final customers around globe couple days prior carrier departure hotel check unsold seats rooms may released back supplier agreement exists two parties allotment release back period also negotiated part allotment contract four days prior check departure negotiating allotments negotiated tour_operator travel service supplier airline company hotel_chain two travel tour_operator retail travel_agent either way needs prove consistent level business allotments hardly granted without history rooms seats contracted travel_company product supplier handled request booking airline seat hotel_room needs confirmed withe supplier confirmed withe allotment allocation amount contracted specified allotment contract result volume sales realized tour_operator tour_operators book certainumber rooms hotels seats carriers righto use given date also_known release date usually days prior tourist arrival hotels departure carriers allotment contract reduces risk unsold products supplier grants relative price advantage travel organizer helping stay competitive market offering extra discounts tour_operators obtain discounts allotment commitment contracts primarily depend firm size power vary according period year destination quantity quality_services contracted upon big tour_operators able tobtain tof discount category service industries category_tourism category_travel agencies"},{"title":"Alternative tourism","description":"alternative tourism combines tourist products or individual tourist services different from the mass tourism by means of supply organization and themployee human resource involved the term is often referred as trendy expression replacing other semantical termsuch as different or other tourism intelligent or motivated tourism anti tourism or participative tourism justo name few of them forms the term alternative tourism tries to include the concepts of active tourism as well as explorer and encounter travel even withe concept of committed tourism the following lists try to enumerate some of the styles of alternative tourism sources that state a number of different styles are vagionis n alternative tourism in bulgaria diversification and sustainability and cazes g h alternative tourism reflections on an ambiguous concept in singh t v theuns h l go f m towards appropriate tourism the case of developing countries frankfurt amain p active tourism rambling hiking trekking biking adventure tourism adventure traveling snowshoeing ski mountaineering rafting diving caving climbing horseback riding explore and encounter travel historical places archeological sites foreign communities foreign cultures rural tourism ecotourism cultural heritage cultural and historical heritage wine traditional cuisinethnography traditional music handicrafts committed tourism voluntary service overseas aid and assistance archeological digs international work camps justice tourism justice solidarity tourism religion terminology critiquesince the term alternative is ambiguous there are numerous critical remarkstating thathe concept is only a fashionable ideamong those who are dissatisfied withe nature of mass tourism cohen e alternative tourism a critique in singh t v theuns h l go f m towards appropriate tourism the case of developing countries frankfurt amain p the criticstate that alternative tourism lacks a clear definition of what is the tourism style alternative to the origins of the term can be found in two alternating concepts rejection of modern mass consumerism concern abouthe social impact in third world countries others express their critical opinions regarding the term as fetish adjective miracle word mythical term see also alternative tourism group in palestine region palestine references externalinks bulgarian association for alternative tourism green olive tours travel agency for alternative tourism in palestine israel arttours artists exploring alternative tourism in stuttgart category types of tourism","main_words":["alternative","tourism","combines","tourist","products","individual","tourist","services","different","mass_tourism","means","supply","organization","themployee","human_resource","involved","term","often_referred","expression","replacing","termsuch","different","tourism","intelligent","motivated","tourism","anti","tourism","tourism","justo","name","forms","term","alternative_tourism","tries","include","concepts","active","tourism","well","explorer","encounter","travel","even","withe","concept","committed","tourism","following","lists","try","styles","alternative_tourism","sources","state","number","different","styles","n","alternative_tourism","bulgaria","diversification","sustainability","g","h","alternative_tourism","reflections","concept","singh","v","h","l","go","f","towards","appropriate","tourism","case","developing_countries","frankfurt_amain","p","active","tourism","hiking","trekking","biking","adventure_tourism","ski","mountaineering","rafting","diving","caving","climbing","horseback","riding","explore","encounter","travel","historical","places","archeological","sites","foreign","communities","foreign","cultures","rural_tourism","ecotourism","cultural_heritage","cultural","historical","heritage","wine","traditional","traditional","music","handicrafts","committed","tourism","voluntary","service","overseas","aid","assistance","archeological","international","work","camps","justice","tourism","justice","solidarity","tourism","religion","terminology","term","alternative","numerous","critical","thathe","concept","fashionable","dissatisfied","withe","nature","mass_tourism","cohen","e","alternative_tourism","critique","singh","v","h","l","go","f","towards","appropriate","tourism","case","developing_countries","frankfurt_amain","p","alternative_tourism","lacks","clear","definition","tourism","style","alternative","origins","term","found","two","alternating","concepts","modern","mass","consumerism","concern","abouthe","social","impact","third_world","countries","others","express","critical","opinions","regarding","term","fetish","miracle","word","mythical","term","see_also","alternative_tourism","group","palestine","region","palestine","references_externalinks","association","alternative_tourism","green","olive","tours","travel_agency","alternative_tourism","palestine","israel","artists","exploring","alternative_tourism","stuttgart","category_types","tourism"],"clean_bigrams":[["alternative","tourism"],["tourism","combines"],["combines","tourist"],["tourist","products"],["individual","tourist"],["tourist","services"],["services","different"],["mass","tourism"],["supply","organization"],["themployee","human"],["human","resource"],["resource","involved"],["often","referred"],["expression","replacing"],["tourism","intelligent"],["motivated","tourism"],["tourism","anti"],["anti","tourism"],["tourism","justo"],["justo","name"],["term","alternative"],["alternative","tourism"],["tourism","tries"],["active","tourism"],["encounter","travel"],["travel","even"],["even","withe"],["withe","concept"],["committed","tourism"],["following","lists"],["lists","try"],["alternative","tourism"],["tourism","sources"],["different","styles"],["n","alternative"],["alternative","tourism"],["bulgaria","diversification"],["g","h"],["h","alternative"],["alternative","tourism"],["tourism","reflections"],["h","l"],["l","go"],["go","f"],["towards","appropriate"],["appropriate","tourism"],["developing","countries"],["countries","frankfurt"],["frankfurt","amain"],["amain","p"],["p","active"],["active","tourism"],["hiking","trekking"],["trekking","biking"],["biking","adventure"],["adventure","tourism"],["tourism","adventure"],["adventure","traveling"],["ski","mountaineering"],["mountaineering","rafting"],["rafting","diving"],["diving","caving"],["caving","climbing"],["climbing","horseback"],["horseback","riding"],["riding","explore"],["encounter","travel"],["travel","historical"],["historical","places"],["places","archeological"],["archeological","sites"],["sites","foreign"],["foreign","communities"],["communities","foreign"],["foreign","cultures"],["cultures","rural"],["rural","tourism"],["tourism","ecotourism"],["ecotourism","cultural"],["cultural","heritage"],["heritage","cultural"],["historical","heritage"],["heritage","wine"],["wine","traditional"],["traditional","music"],["music","handicrafts"],["handicrafts","committed"],["committed","tourism"],["tourism","voluntary"],["voluntary","service"],["service","overseas"],["overseas","aid"],["assistance","archeological"],["international","work"],["work","camps"],["camps","justice"],["justice","tourism"],["tourism","justice"],["justice","solidarity"],["solidarity","tourism"],["tourism","religion"],["religion","terminology"],["term","alternative"],["numerous","critical"],["thathe","concept"],["dissatisfied","withe"],["withe","nature"],["mass","tourism"],["tourism","cohen"],["cohen","e"],["e","alternative"],["alternative","tourism"],["h","l"],["l","go"],["go","f"],["towards","appropriate"],["appropriate","tourism"],["developing","countries"],["countries","frankfurt"],["frankfurt","amain"],["amain","p"],["alternative","tourism"],["tourism","lacks"],["clear","definition"],["tourism","style"],["style","alternative"],["two","alternating"],["alternating","concepts"],["modern","mass"],["mass","consumerism"],["consumerism","concern"],["concern","abouthe"],["abouthe","social"],["social","impact"],["third","world"],["world","countries"],["countries","others"],["others","express"],["critical","opinions"],["opinions","regarding"],["miracle","word"],["word","mythical"],["mythical","term"],["term","see"],["see","also"],["also","alternative"],["alternative","tourism"],["tourism","group"],["palestine","region"],["region","palestine"],["palestine","references"],["references","externalinks"],["alternative","tourism"],["tourism","green"],["green","olive"],["olive","tours"],["tours","travel"],["travel","agency"],["alternative","tourism"],["palestine","israel"],["artists","exploring"],["exploring","alternative"],["alternative","tourism"],["stuttgart","category"],["category","types"]],"all_collocations":["alternative tourism","tourism combines","combines tourist","tourist products","individual tourist","tourist services","services different","mass tourism","supply organization","themployee human","human resource","resource involved","often referred","expression replacing","tourism intelligent","motivated tourism","tourism anti","anti tourism","tourism justo","justo name","term alternative","alternative tourism","tourism tries","active tourism","encounter travel","travel even","even withe","withe concept","committed tourism","following lists","lists try","alternative tourism","tourism sources","different styles","n alternative","alternative tourism","bulgaria diversification","g h","h alternative","alternative tourism","tourism reflections","h l","l go","go f","towards appropriate","appropriate tourism","developing countries","countries frankfurt","frankfurt amain","amain p","p active","active tourism","hiking trekking","trekking biking","biking adventure","adventure tourism","tourism adventure","adventure traveling","ski mountaineering","mountaineering rafting","rafting diving","diving caving","caving climbing","climbing horseback","horseback riding","riding explore","encounter travel","travel historical","historical places","places archeological","archeological sites","sites foreign","foreign communities","communities foreign","foreign cultures","cultures rural","rural tourism","tourism ecotourism","ecotourism cultural","cultural heritage","heritage cultural","historical heritage","heritage wine","wine traditional","traditional music","music handicrafts","handicrafts committed","committed tourism","tourism voluntary","voluntary service","service overseas","overseas aid","assistance archeological","international work","work camps","camps justice","justice tourism","tourism justice","justice solidarity","solidarity tourism","tourism religion","religion terminology","term alternative","numerous critical","thathe concept","dissatisfied withe","withe nature","mass tourism","tourism cohen","cohen e","e alternative","alternative tourism","h l","l go","go f","towards appropriate","appropriate tourism","developing countries","countries frankfurt","frankfurt amain","amain p","alternative tourism","tourism lacks","clear definition","tourism style","style alternative","two alternating","alternating concepts","modern mass","mass consumerism","consumerism concern","concern abouthe","abouthe social","social impact","third world","world countries","countries others","others express","critical opinions","opinions regarding","miracle word","word mythical","mythical term","term see","see also","also alternative","alternative tourism","tourism group","palestine region","region palestine","palestine references","references externalinks","alternative tourism","tourism green","green olive","olive tours","tours travel","travel agency","alternative tourism","palestine israel","artists exploring","exploring alternative","alternative tourism","stuttgart category","category types"],"new_description":"alternative tourism combines tourist products individual tourist services different mass_tourism means supply organization themployee human_resource involved term often_referred expression replacing termsuch different tourism intelligent motivated tourism anti tourism tourism justo name forms term alternative_tourism tries include concepts active tourism well explorer encounter travel even withe concept committed tourism following lists try styles alternative_tourism sources state number different styles n alternative_tourism bulgaria diversification sustainability g h alternative_tourism reflections concept singh v h l go f towards appropriate tourism case developing_countries frankfurt_amain p active tourism hiking trekking biking adventure_tourism adventure_traveling ski mountaineering rafting diving caving climbing horseback riding explore encounter travel historical places archeological sites foreign communities foreign cultures rural_tourism ecotourism cultural_heritage cultural historical heritage wine traditional traditional music handicrafts committed tourism voluntary service overseas aid assistance archeological international work camps justice tourism justice solidarity tourism religion terminology term alternative numerous critical thathe concept fashionable dissatisfied withe nature mass_tourism cohen e alternative_tourism critique singh v h l go f towards appropriate tourism case developing_countries frankfurt_amain p alternative_tourism lacks clear definition tourism style alternative origins term found two alternating concepts modern mass consumerism concern abouthe social impact third_world countries others express critical opinions regarding term fetish miracle word mythical term see_also alternative_tourism group palestine region palestine references_externalinks association alternative_tourism green olive tours travel_agency alternative_tourism palestine israel artists exploring alternative_tourism stuttgart category_types tourism"},{"title":"American Guide Series","description":"file illinois a descriptive and historical guide lccn tif thumb cover of the illinoistate guide the american guide series was a group of books and pamphlets published in under the auspices of the federal writers project fwp a great depression era works program in the united states the american guide series books were compiled by the fwp but printed by individual states and containedetailed histories of each of then states of the union with descriptions of every major city and town in total the project employed over writers the format was uniform comprising essays on the state s history and culture descriptions of its major cities automobile tours of important attractions and a portfoliof photographs many books in the project have been updated by private companies orepublished without updating alaskand hawaii were not ustates during the period and thus were not covered by the project class wikitable style font size state title google books hathitrust internet archive alabama google books hathitrust arizona ed via google books hathitrust arkansas google books hathitrust california internet archive colorado ed via google books internet archived via internet archive connecticut google books hathitrust delaware google books florida google books internet archive georgia ustate georgia google books internet archive idaho internet archive illinois google books internet archive indiana google books hathitrust iowa google books hathitrust kansas a guide to the sunflower state google books kentucky google books hathitrust internet archive louisiana google books hathitrust maine google books hathitrust maryland google books hathitrust massachusetts google books hathitrust michigan google books minnesota state guide google books mississippi ed via google books internet archive missouri google books internet archive montana hathitrust internet archive nebraska guide to the cornhusker state google books nevada ed via google books hathitrust new hampshire google books hathitrust new jersey ed via google books hathitrust new mexico google books hathitrust new york state new york hathitrust north carolina google books internet archive north dakota google books ohio google books oklahoma google books internet archive oregon ed via google books hathitrust pennsylvania google books rhode island google books internet archive south carolina hathitrust internet archive south dakota google books internet archive tennessee google books hathitrustexas google books hathitrust internet archive utah a guide to the state google books vermont internet archive virginia google books internet archive washington ustate washington hathitrust west virginia google books google books wisconsin a guide to the badger state google books wyomingoogle books class wikitable sortable style font size state city title google books hathitrust internet archive other arkansas north little rock arkansas north little rock hathi california los angeles internet archive california san diego hathitrust california san francisco ed via hathitrust internet archive california santa barbara california santa barbara internet archive delaware newcastle delaware newcastle district of columbia washington dc washington hathitrust florida key west florida key west florida miaminternet archive florida st augustine florida st augustine hathitrust georgiatlanta georgiatlanta internet archive georgiaugusta georgiaugusta georgia savannah georgia savannahathitrust illinois galena illinois galena hathitrust illinois princeton illinois princeton hathitrust iowa dubuque iowa dubuque iowa estherville iowa estherville iowa mcgregor iowa mcgregor kentucky henderson kentucky henderson kentucky lexington kentucky lexington hathitrust kentucky louisville kentucky louisville louisiana new orleans louisiana new orleans hathitrust internet archive maine portland maine portland internet archive nebraska lincolnebraska lincolnew jersey princetonew york albany hathitrust new york new york city hathitrust internet archive new york rochester north dakota bismarck ohio cincinnati ohio cincinnati hathitrust oklahoma tulsa oklahoma tulsa pennsylvania erie pennsylvania erie hathitrust internet archive pennsylvania philadelphia pennsylvania philadelphia internet archive texas beaumontexas beaumontexas denison texas denison texas corpus christi texas corpus christi texas houston texas houston university of north texas santonio texasantonio hathitrust wisconsin portage wisconsin portage hathitrust regions and territories class wikitable sortable style font size list of regions of the united states census bureau designated regions andivisions region locale title google books hathitrust internet archive other northeastern united states northeast internet archive northeastern united states northeast berkshire hills hathitrust northeastern united states northeast cape cod western united states west death valley western united states western united states west google books midwestern united states midwest northeastern united states northeast new england southern united statesouthathitrust midwestern united states midwest arrowhead country southern united statesouthathitrust western united states west monterey peninsula northeastern united states northeast internet archive southern united statesouth ocean highway midwestern united states midwestern united states west google books puerto rico hathitrust internet archive northeastern united states northeast southern united statesouth us route hathitrust gross andrew s the american guide series patriotism as brand name identification arizona quarterly a journal of american literature culture and theory vol number powellawrence n lyle saxon and the wpa guide to new orleansouthern spaces july the american guide series united statesenate retrieved october furthereading andrew kelly kentucky by design the decorative arts and american culture university press of kentucky externalinks american guide series guidebooks for each state including alaska puerto rico and hawaii published by the federal writers project of the works progress administration titles dispersed in the division s collection from the rare book and special collections division athe library of congress category american literature category works progress administration category travel guide books category pamphlets category city guides category series of books category tourism in the united states","main_words":["file","illinois","descriptive","historical","guide","thumb","cover","guide","american","guide_series","group","published","auspices","federal","writers","project","great_depression","era","works","program","united_states","american","guide_series","books","compiled","printed","individual","states","histories","states","union","descriptions","every","major","city","town","total","project","employed","writers","format","uniform","comprising","essays","state","history","culture","descriptions","major_cities","automobile","tours","important","attractions","portfoliof","photographs","many","updated","private","companies","without","hawaii","ustates","period","thus","covered","project","class","wikitable_style","font_size","state","title","google_books","hathitrust_internet_archive","alabama","google_books","hathitrust","arizona","ed","via","google_books","hathitrust","arkansas","google_books","hathitrust","california","internet_archive","colorado","ed","via","google_books","via","internet_archive","connecticut","google_books","hathitrust","delaware","google_books","florida","google_books","internet_archive","georgia_ustate_georgia","google_books","internet_archive","idaho","internet_archive","illinois","google_books","internet_archive","indiana","google_books","hathitrust","iowa","google_books","hathitrust","kansas","guide","state","google_books","kentucky","google_books","hathitrust_internet_archive","louisiana","google_books","hathitrust","maine","google_books","hathitrust","maryland","google_books","hathitrust","massachusetts","google_books","hathitrust","michigan","google_books","minnesota","state","guide","google_books","mississippi","ed","via","google_books","internet_archive","missouri","google_books","internet_archive","montana","hathitrust_internet_archive","nebraska","guide","state","google_books","nevada","ed","via","google_books","hathitrust","new_hampshire","google_books","hathitrust","new_jersey","ed","via","google_books","hathitrust","new_mexico","google_books","hathitrust","new_york","state_new_york","hathitrust","north_carolina","google_books","internet_archive","north","dakota","google_books","ohio","google_books","oklahoma","google_books","internet_archive","oregon","ed","via","google_books","hathitrust","pennsylvania","google_books","rhode_island","google_books","internet_archive","south_carolina","hathitrust_internet_archive","south_dakota","google_books","internet_archive","tennessee","google_books","google_books","hathitrust_internet_archive","utah","guide","state","google_books","vermont","internet_archive","virginia","google_books","internet_archive","washington","ustate","washington","hathitrust","west_virginia","google_books","google_books","wisconsin","guide","badger","state","google_books","books","class","wikitable","sortable_style","font_size","state","city","title","google_books","hathitrust_internet_archive","arkansas","north","little","rock","arkansas","north","little","rock","hathi","california","los_angeles","internet_archive","california_san","diego","hathitrust","ed","via","hathitrust_internet_archive","california_santa_barbara","california_santa_barbara","internet_archive","delaware","newcastle","delaware","newcastle","district","columbia","washington","washington","hathitrust","florida","key","west","florida","key","west","florida","archive","florida","st_augustine","florida","st_augustine","hathitrust","georgiatlanta","georgiatlanta","internet_archive","georgia","savannah","georgia","illinois","galena","illinois","galena","hathitrust","illinois","princeton","illinois","princeton","hathitrust","iowa","dubuque","iowa","dubuque","iowa","estherville","iowa","estherville","iowa","mcgregor","iowa","mcgregor","kentucky","henderson","kentucky","henderson","kentucky","lexington","kentucky","lexington","hathitrust","kentucky","louisville_kentucky","louisville","louisiana","new_orleans","louisiana","new_orleans","hathitrust_internet_archive","maine","portland","maine","portland","internet_archive","nebraska","jersey","york","albany","hathitrust","new_york","new_york","city","hathitrust_internet_archive","new_york","rochester","north","dakota","ohio","cincinnati","ohio","cincinnati","hathitrust","oklahoma","tulsa","oklahoma","tulsa","pennsylvania","erie","pennsylvania","erie","hathitrust_internet_archive","pennsylvania","philadelphia_pennsylvania","philadelphia","internet_archive","texas","denison","texas","denison","texas","corpus","christi","texas","corpus","christi","texas","houston_texas","houston","university","north","texas","santonio_texasantonio","hathitrust","wisconsin","wisconsin","hathitrust","regions","territories","class","wikitable","sortable_style","font_size","list","regions","united_states","census","bureau","designated","regions","region","locale","title","google_books","hathitrust_internet_archive","northeastern_united_states","northeast","internet_archive","northeastern_united_states","northeast","berkshire","hills","hathitrust","northeastern_united_states","northeast","cape","cod","western","united_states","west","death","valley","western","united_states","western","united_states","west","google_books","midwestern","united_states","midwest","northeastern_united_states","northeast","new_england","southern_united","midwestern","united_states","midwest","country","southern_united","western","united_states","west","monterey","peninsula","northeastern_united_states","northeast","internet_archive","ocean","highway","midwestern","united_states","midwestern","united_states","west","google_books","puerto_rico","hathitrust_internet_archive","northeastern_united_states","northeast","us_route","hathitrust","gross","andrew","american","guide_series","brand_name","identification","arizona","quarterly","journal","american","literature","culture","theory","vol","number","n","saxon","wpa","guide","new","spaces","july","american","guide_series","united_statesenate","retrieved_october","furthereading","andrew","kelly","kentucky","design","decorative","arts","american_culture","university_press","kentucky","externalinks","american","guide_series","guidebooks","state","including","alaska","puerto_rico","hawaii","published","federal","writers","project","works","progress","administration","titles","division","collection","rare","book","special","collections","division","athe","library","congress","category_american","progress","administration","category_travel_guide_books","category","pamphlets","category_city_guides","category_series","books_category_tourism","united_states"],"clean_bigrams":[["file","illinois"],["historical","guide"],["thumb","cover"],["american","guide"],["guide","series"],["pamphlets","published"],["federal","writers"],["writers","project"],["great","depression"],["depression","era"],["era","works"],["works","program"],["united","states"],["american","guide"],["guide","series"],["series","books"],["individual","states"],["every","major"],["major","city"],["project","employed"],["uniform","comprising"],["comprising","essays"],["culture","descriptions"],["major","cities"],["cities","automobile"],["automobile","tours"],["important","attractions"],["portfoliof","photographs"],["photographs","many"],["many","books"],["private","companies"],["project","class"],["class","wikitable"],["wikitable","style"],["style","font"],["font","size"],["size","state"],["state","title"],["title","google"],["google","books"],["books","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","alabama"],["alabama","google"],["google","books"],["books","hathitrust"],["hathitrust","arizona"],["arizona","ed"],["ed","via"],["via","google"],["google","books"],["books","hathitrust"],["hathitrust","arkansas"],["arkansas","google"],["google","books"],["books","hathitrust"],["hathitrust","california"],["california","internet"],["internet","archive"],["archive","colorado"],["colorado","ed"],["ed","via"],["via","google"],["google","books"],["books","internet"],["internet","archived"],["archived","via"],["via","internet"],["internet","archive"],["archive","connecticut"],["connecticut","google"],["google","books"],["books","hathitrust"],["hathitrust","delaware"],["delaware","google"],["google","books"],["books","florida"],["florida","google"],["google","books"],["books","internet"],["internet","archive"],["archive","georgia"],["georgia","ustate"],["ustate","georgia"],["georgia","google"],["google","books"],["books","internet"],["internet","archive"],["archive","idaho"],["idaho","internet"],["internet","archive"],["archive","illinois"],["illinois","google"],["google","books"],["books","internet"],["internet","archive"],["archive","indiana"],["indiana","google"],["google","books"],["books","hathitrust"],["hathitrust","iowa"],["iowa","google"],["google","books"],["books","hathitrust"],["hathitrust","kansas"],["state","google"],["google","books"],["books","kentucky"],["kentucky","google"],["google","books"],["books","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","louisiana"],["louisiana","google"],["google","books"],["books","hathitrust"],["hathitrust","maine"],["maine","google"],["google","books"],["books","hathitrust"],["hathitrust","maryland"],["maryland","google"],["google","books"],["books","hathitrust"],["hathitrust","massachusetts"],["massachusetts","google"],["google","books"],["books","hathitrust"],["hathitrust","michigan"],["michigan","google"],["google","books"],["books","minnesota"],["minnesota","state"],["state","guide"],["guide","google"],["google","books"],["books","mississippi"],["mississippi","ed"],["ed","via"],["via","google"],["google","books"],["books","internet"],["internet","archive"],["archive","missouri"],["missouri","google"],["google","books"],["books","internet"],["internet","archive"],["archive","montana"],["montana","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","nebraska"],["nebraska","guide"],["state","google"],["google","books"],["books","nevada"],["nevada","ed"],["ed","via"],["via","google"],["google","books"],["books","hathitrust"],["hathitrust","new"],["new","hampshire"],["hampshire","google"],["google","books"],["books","hathitrust"],["hathitrust","new"],["new","jersey"],["jersey","ed"],["ed","via"],["via","google"],["google","books"],["books","hathitrust"],["hathitrust","new"],["new","mexico"],["mexico","google"],["google","books"],["books","hathitrust"],["hathitrust","new"],["new","york"],["york","state"],["state","new"],["new","york"],["york","hathitrust"],["hathitrust","north"],["north","carolina"],["carolina","google"],["google","books"],["books","internet"],["internet","archive"],["archive","north"],["north","dakota"],["dakota","google"],["google","books"],["books","ohio"],["ohio","google"],["google","books"],["books","oklahoma"],["oklahoma","google"],["google","books"],["books","internet"],["internet","archive"],["archive","oregon"],["oregon","ed"],["ed","via"],["via","google"],["google","books"],["books","hathitrust"],["hathitrust","pennsylvania"],["pennsylvania","google"],["google","books"],["books","rhode"],["rhode","island"],["island","google"],["google","books"],["books","internet"],["internet","archive"],["archive","south"],["south","carolina"],["carolina","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","south"],["south","dakota"],["dakota","google"],["google","books"],["books","internet"],["internet","archive"],["archive","tennessee"],["tennessee","google"],["google","books"],["books","google"],["google","books"],["books","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","utah"],["state","google"],["google","books"],["books","vermont"],["vermont","internet"],["internet","archive"],["archive","virginia"],["virginia","google"],["google","books"],["books","internet"],["internet","archive"],["archive","washington"],["washington","ustate"],["ustate","washington"],["washington","hathitrust"],["hathitrust","west"],["west","virginia"],["virginia","google"],["google","books"],["books","google"],["google","books"],["books","wisconsin"],["badger","state"],["state","google"],["google","books"],["books","class"],["class","wikitable"],["wikitable","sortable"],["sortable","style"],["style","font"],["font","size"],["size","state"],["state","city"],["city","title"],["title","google"],["google","books"],["books","hathitrust"],["hathitrust","internet"],["internet","archive"],["arkansas","north"],["north","little"],["little","rock"],["rock","arkansas"],["arkansas","north"],["north","little"],["little","rock"],["rock","hathi"],["hathi","california"],["california","los"],["los","angeles"],["angeles","internet"],["internet","archive"],["archive","california"],["california","san"],["san","diego"],["diego","hathitrust"],["hathitrust","california"],["california","san"],["san","francisco"],["francisco","ed"],["ed","via"],["via","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","california"],["california","santa"],["santa","barbara"],["barbara","california"],["california","santa"],["santa","barbara"],["barbara","internet"],["internet","archive"],["archive","delaware"],["delaware","newcastle"],["newcastle","delaware"],["delaware","newcastle"],["newcastle","district"],["columbia","washington"],["washington","hathitrust"],["hathitrust","florida"],["florida","key"],["key","west"],["west","florida"],["florida","key"],["key","west"],["west","florida"],["archive","florida"],["florida","st"],["st","augustine"],["augustine","florida"],["florida","st"],["st","augustine"],["augustine","hathitrust"],["hathitrust","georgiatlanta"],["georgiatlanta","georgiatlanta"],["georgiatlanta","internet"],["internet","archive"],["archive","georgia"],["georgia","savannah"],["savannah","georgia"],["illinois","galena"],["galena","illinois"],["illinois","galena"],["galena","hathitrust"],["hathitrust","illinois"],["illinois","princeton"],["princeton","illinois"],["illinois","princeton"],["princeton","hathitrust"],["hathitrust","iowa"],["iowa","dubuque"],["dubuque","iowa"],["iowa","dubuque"],["dubuque","iowa"],["iowa","estherville"],["estherville","iowa"],["iowa","estherville"],["estherville","iowa"],["iowa","mcgregor"],["mcgregor","iowa"],["iowa","mcgregor"],["mcgregor","kentucky"],["kentucky","henderson"],["henderson","kentucky"],["kentucky","henderson"],["henderson","kentucky"],["kentucky","lexington"],["lexington","kentucky"],["kentucky","lexington"],["lexington","hathitrust"],["hathitrust","kentucky"],["kentucky","louisville"],["louisville","kentucky"],["kentucky","louisville"],["louisville","louisiana"],["louisiana","new"],["new","orleans"],["orleans","louisiana"],["louisiana","new"],["new","orleans"],["orleans","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","maine"],["maine","portland"],["portland","maine"],["maine","portland"],["portland","internet"],["internet","archive"],["archive","nebraska"],["york","albany"],["albany","hathitrust"],["hathitrust","new"],["new","york"],["york","new"],["new","york"],["york","city"],["city","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","new"],["new","york"],["york","rochester"],["rochester","north"],["north","dakota"],["ohio","cincinnati"],["cincinnati","ohio"],["ohio","cincinnati"],["cincinnati","hathitrust"],["hathitrust","oklahoma"],["oklahoma","tulsa"],["tulsa","oklahoma"],["oklahoma","tulsa"],["tulsa","pennsylvania"],["pennsylvania","erie"],["erie","pennsylvania"],["pennsylvania","erie"],["erie","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","pennsylvania"],["pennsylvania","philadelphia"],["philadelphia","pennsylvania"],["pennsylvania","philadelphia"],["philadelphia","internet"],["internet","archive"],["archive","texas"],["texas","denison"],["denison","texas"],["texas","denison"],["denison","texas"],["texas","corpus"],["corpus","christi"],["christi","texas"],["texas","corpus"],["corpus","christi"],["christi","texas"],["texas","houston"],["houston","texas"],["texas","houston"],["houston","university"],["north","texas"],["texas","santonio"],["santonio","texasantonio"],["texasantonio","hathitrust"],["hathitrust","wisconsin"],["hathitrust","regions"],["territories","class"],["class","wikitable"],["wikitable","sortable"],["sortable","style"],["style","font"],["font","size"],["size","list"],["united","states"],["states","census"],["census","bureau"],["bureau","designated"],["designated","regions"],["region","locale"],["locale","title"],["title","google"],["google","books"],["books","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","internet"],["internet","archive"],["archive","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","berkshire"],["berkshire","hills"],["hills","hathitrust"],["hathitrust","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","cape"],["cape","cod"],["cod","western"],["western","united"],["united","states"],["states","west"],["west","death"],["death","valley"],["valley","western"],["western","united"],["united","states"],["states","western"],["western","united"],["united","states"],["states","west"],["west","google"],["google","books"],["books","midwestern"],["midwestern","united"],["united","states"],["states","midwest"],["midwest","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","new"],["new","england"],["england","southern"],["southern","united"],["midwestern","united"],["united","states"],["states","midwest"],["country","southern"],["southern","united"],["western","united"],["united","states"],["states","west"],["west","monterey"],["monterey","peninsula"],["peninsula","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","internet"],["internet","archive"],["archive","southern"],["southern","united"],["united","statesouth"],["statesouth","ocean"],["ocean","highway"],["highway","midwestern"],["midwestern","united"],["united","states"],["states","midwestern"],["midwestern","united"],["united","states"],["states","west"],["west","google"],["google","books"],["books","puerto"],["puerto","rico"],["rico","hathitrust"],["hathitrust","internet"],["internet","archive"],["archive","northeastern"],["northeastern","united"],["united","states"],["states","northeast"],["northeast","southern"],["southern","united"],["united","statesouth"],["statesouth","us"],["us","route"],["route","hathitrust"],["hathitrust","gross"],["gross","andrew"],["american","guide"],["guide","series"],["brand","name"],["name","identification"],["identification","arizona"],["arizona","quarterly"],["american","literature"],["literature","culture"],["theory","vol"],["vol","number"],["wpa","guide"],["spaces","july"],["american","guide"],["guide","series"],["series","united"],["united","statesenate"],["statesenate","retrieved"],["retrieved","october"],["october","furthereading"],["furthereading","andrew"],["andrew","kelly"],["kelly","kentucky"],["decorative","arts"],["american","culture"],["culture","university"],["university","press"],["kentucky","externalinks"],["externalinks","american"],["american","guide"],["guide","series"],["series","guidebooks"],["state","including"],["including","alaska"],["alaska","puerto"],["puerto","rico"],["hawaii","published"],["federal","writers"],["writers","project"],["works","progress"],["progress","administration"],["administration","titles"],["rare","book"],["special","collections"],["collections","division"],["division","athe"],["athe","library"],["congress","category"],["category","american"],["american","literature"],["literature","category"],["category","works"],["works","progress"],["progress","administration"],["administration","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","pamphlets"],["pamphlets","category"],["category","city"],["city","guides"],["guides","category"],["category","series"],["series","books"],["books","category"],["category","tourism"],["united","states"]],"all_collocations":["file illinois","historical guide","thumb cover","american guide","guide series","pamphlets published","federal writers","writers project","great depression","depression era","era works","works program","united states","american guide","guide series","series books","individual states","every major","major city","project employed","uniform comprising","comprising essays","culture descriptions","major cities","cities automobile","automobile tours","important attractions","portfoliof photographs","photographs many","many books","private companies","project class","wikitable style","style font","font size","size state","state title","title google","google books","books hathitrust","hathitrust internet","internet archive","archive alabama","alabama google","google books","books hathitrust","hathitrust arizona","arizona ed","ed via","via google","google books","books hathitrust","hathitrust arkansas","arkansas google","google books","books hathitrust","hathitrust california","california internet","internet archive","archive colorado","colorado ed","ed via","via google","google books","books internet","internet archived","archived via","via internet","internet archive","archive connecticut","connecticut google","google books","books hathitrust","hathitrust delaware","delaware google","google books","books florida","florida google","google books","books internet","internet archive","archive georgia","georgia ustate","ustate georgia","georgia google","google books","books internet","internet archive","archive idaho","idaho internet","internet archive","archive illinois","illinois google","google books","books internet","internet archive","archive indiana","indiana google","google books","books hathitrust","hathitrust iowa","iowa google","google books","books hathitrust","hathitrust kansas","state google","google books","books kentucky","kentucky google","google books","books hathitrust","hathitrust internet","internet archive","archive louisiana","louisiana google","google books","books hathitrust","hathitrust maine","maine google","google books","books hathitrust","hathitrust maryland","maryland google","google books","books hathitrust","hathitrust massachusetts","massachusetts google","google books","books hathitrust","hathitrust michigan","michigan google","google books","books minnesota","minnesota state","state guide","guide google","google books","books mississippi","mississippi ed","ed via","via google","google books","books internet","internet archive","archive missouri","missouri google","google books","books internet","internet archive","archive montana","montana hathitrust","hathitrust internet","internet archive","archive nebraska","nebraska guide","state google","google books","books nevada","nevada ed","ed via","via google","google books","books hathitrust","hathitrust new","new hampshire","hampshire google","google books","books hathitrust","hathitrust new","new jersey","jersey ed","ed via","via google","google books","books hathitrust","hathitrust new","new mexico","mexico google","google books","books hathitrust","hathitrust new","new york","york state","state new","new york","york hathitrust","hathitrust north","north carolina","carolina google","google books","books internet","internet archive","archive north","north dakota","dakota google","google books","books ohio","ohio google","google books","books oklahoma","oklahoma google","google books","books internet","internet archive","archive oregon","oregon ed","ed via","via google","google books","books hathitrust","hathitrust pennsylvania","pennsylvania google","google books","books rhode","rhode island","island google","google books","books internet","internet archive","archive south","south carolina","carolina hathitrust","hathitrust internet","internet archive","archive south","south dakota","dakota google","google books","books internet","internet archive","archive tennessee","tennessee google","google books","books google","google books","books hathitrust","hathitrust internet","internet archive","archive utah","state google","google books","books vermont","vermont internet","internet archive","archive virginia","virginia google","google books","books internet","internet archive","archive washington","washington ustate","ustate washington","washington hathitrust","hathitrust west","west virginia","virginia google","google books","books google","google books","books wisconsin","badger state","state google","google books","books class","sortable style","style font","font size","size state","state city","city title","title google","google books","books hathitrust","hathitrust internet","internet archive","arkansas north","north little","little rock","rock arkansas","arkansas north","north little","little rock","rock hathi","hathi california","california los","los angeles","angeles internet","internet archive","archive california","california san","san diego","diego hathitrust","hathitrust california","california san","san francisco","francisco ed","ed via","via hathitrust","hathitrust internet","internet archive","archive california","california santa","santa barbara","barbara california","california santa","santa barbara","barbara internet","internet archive","archive delaware","delaware newcastle","newcastle delaware","delaware newcastle","newcastle district","columbia washington","washington hathitrust","hathitrust florida","florida key","key west","west florida","florida key","key west","west florida","archive florida","florida st","st augustine","augustine florida","florida st","st augustine","augustine hathitrust","hathitrust georgiatlanta","georgiatlanta georgiatlanta","georgiatlanta internet","internet archive","archive georgia","georgia savannah","savannah georgia","illinois galena","galena illinois","illinois galena","galena hathitrust","hathitrust illinois","illinois princeton","princeton illinois","illinois princeton","princeton hathitrust","hathitrust iowa","iowa dubuque","dubuque iowa","iowa dubuque","dubuque iowa","iowa estherville","estherville iowa","iowa estherville","estherville iowa","iowa mcgregor","mcgregor iowa","iowa mcgregor","mcgregor kentucky","kentucky henderson","henderson kentucky","kentucky henderson","henderson kentucky","kentucky lexington","lexington kentucky","kentucky lexington","lexington hathitrust","hathitrust kentucky","kentucky louisville","louisville kentucky","kentucky louisville","louisville louisiana","louisiana new","new orleans","orleans louisiana","louisiana new","new orleans","orleans hathitrust","hathitrust internet","internet archive","archive maine","maine portland","portland maine","maine portland","portland internet","internet archive","archive nebraska","york albany","albany hathitrust","hathitrust new","new york","york new","new york","york city","city hathitrust","hathitrust internet","internet archive","archive new","new york","york rochester","rochester north","north dakota","ohio cincinnati","cincinnati ohio","ohio cincinnati","cincinnati hathitrust","hathitrust oklahoma","oklahoma tulsa","tulsa oklahoma","oklahoma tulsa","tulsa pennsylvania","pennsylvania erie","erie pennsylvania","pennsylvania erie","erie hathitrust","hathitrust internet","internet archive","archive pennsylvania","pennsylvania philadelphia","philadelphia pennsylvania","pennsylvania philadelphia","philadelphia internet","internet archive","archive texas","texas denison","denison texas","texas denison","denison texas","texas corpus","corpus christi","christi texas","texas corpus","corpus christi","christi texas","texas houston","houston texas","texas houston","houston university","north texas","texas santonio","santonio texasantonio","texasantonio hathitrust","hathitrust wisconsin","hathitrust regions","territories class","sortable style","style font","font size","size list","united states","states census","census bureau","bureau designated","designated regions","region locale","locale title","title google","google books","books hathitrust","hathitrust internet","internet archive","archive northeastern","northeastern united","united states","states northeast","northeast internet","internet archive","archive northeastern","northeastern united","united states","states northeast","northeast berkshire","berkshire hills","hills hathitrust","hathitrust northeastern","northeastern united","united states","states northeast","northeast cape","cape cod","cod western","western united","united states","states west","west death","death valley","valley western","western united","united states","states western","western united","united states","states west","west google","google books","books midwestern","midwestern united","united states","states midwest","midwest northeastern","northeastern united","united states","states northeast","northeast new","new england","england southern","southern united","midwestern united","united states","states midwest","country southern","southern united","western united","united states","states west","west monterey","monterey peninsula","peninsula northeastern","northeastern united","united states","states northeast","northeast internet","internet archive","archive southern","southern united","united statesouth","statesouth ocean","ocean highway","highway midwestern","midwestern united","united states","states midwestern","midwestern united","united states","states west","west google","google books","books puerto","puerto rico","rico hathitrust","hathitrust internet","internet archive","archive northeastern","northeastern united","united states","states northeast","northeast southern","southern united","united statesouth","statesouth us","us route","route hathitrust","hathitrust gross","gross andrew","american guide","guide series","brand name","name identification","identification arizona","arizona quarterly","american literature","literature culture","theory vol","vol number","wpa guide","spaces july","american guide","guide series","series united","united statesenate","statesenate retrieved","retrieved october","october furthereading","furthereading andrew","andrew kelly","kelly kentucky","decorative arts","american culture","culture university","university press","kentucky externalinks","externalinks american","american guide","guide series","series guidebooks","state including","including alaska","alaska puerto","puerto rico","hawaii published","federal writers","writers project","works progress","progress administration","administration titles","rare book","special collections","collections division","division athe","athe library","congress category","category american","american literature","literature category","category works","works progress","progress administration","administration category","category travel","travel guide","guide books","books category","category pamphlets","pamphlets category","category city","city guides","guides category","category series","series books","books category","category tourism","united states"],"new_description":"file illinois descriptive historical guide thumb cover guide american guide_series group books_pamphlets published auspices federal writers project great_depression era works program united_states american guide_series books compiled printed individual states histories states union descriptions every major city town total project employed writers format uniform comprising essays state history culture descriptions major_cities automobile tours important attractions portfoliof photographs many books_project updated private companies without hawaii ustates period thus covered project class wikitable_style font_size state title google_books hathitrust_internet_archive alabama google_books hathitrust arizona ed via google_books hathitrust arkansas google_books hathitrust california internet_archive colorado ed via google_books internet_archived via internet_archive connecticut google_books hathitrust delaware google_books florida google_books internet_archive georgia_ustate_georgia google_books internet_archive idaho internet_archive illinois google_books internet_archive indiana google_books hathitrust iowa google_books hathitrust kansas guide state google_books kentucky google_books hathitrust_internet_archive louisiana google_books hathitrust maine google_books hathitrust maryland google_books hathitrust massachusetts google_books hathitrust michigan google_books minnesota state guide google_books mississippi ed via google_books internet_archive missouri google_books internet_archive montana hathitrust_internet_archive nebraska guide state google_books nevada ed via google_books hathitrust new_hampshire google_books hathitrust new_jersey ed via google_books hathitrust new_mexico google_books hathitrust new_york state_new_york hathitrust north_carolina google_books internet_archive north dakota google_books ohio google_books oklahoma google_books internet_archive oregon ed via google_books hathitrust pennsylvania google_books rhode_island google_books internet_archive south_carolina hathitrust_internet_archive south_dakota google_books internet_archive tennessee google_books google_books hathitrust_internet_archive utah guide state google_books vermont internet_archive virginia google_books internet_archive washington ustate washington hathitrust west_virginia google_books google_books wisconsin guide badger state google_books books class wikitable sortable_style font_size state city title google_books hathitrust_internet_archive arkansas north little rock arkansas north little rock hathi california los_angeles internet_archive california_san diego hathitrust california_san_francisco ed via hathitrust_internet_archive california_santa_barbara california_santa_barbara internet_archive delaware newcastle delaware newcastle district columbia washington washington hathitrust florida key west florida key west florida archive florida st_augustine florida st_augustine hathitrust georgiatlanta georgiatlanta internet_archive georgia savannah georgia illinois galena illinois galena hathitrust illinois princeton illinois princeton hathitrust iowa dubuque iowa dubuque iowa estherville iowa estherville iowa mcgregor iowa mcgregor kentucky henderson kentucky henderson kentucky lexington kentucky lexington hathitrust kentucky louisville_kentucky louisville louisiana new_orleans louisiana new_orleans hathitrust_internet_archive maine portland maine portland internet_archive nebraska jersey york albany hathitrust new_york new_york city hathitrust_internet_archive new_york rochester north dakota ohio cincinnati ohio cincinnati hathitrust oklahoma tulsa oklahoma tulsa pennsylvania erie pennsylvania erie hathitrust_internet_archive pennsylvania philadelphia_pennsylvania philadelphia internet_archive texas denison texas denison texas corpus christi texas corpus christi texas houston_texas houston university north texas santonio_texasantonio hathitrust wisconsin wisconsin hathitrust regions territories class wikitable sortable_style font_size list regions united_states census bureau designated regions region locale title google_books hathitrust_internet_archive northeastern_united_states northeast internet_archive northeastern_united_states northeast berkshire hills hathitrust northeastern_united_states northeast cape cod western united_states west death valley western united_states western united_states west google_books midwestern united_states midwest northeastern_united_states northeast new_england southern_united midwestern united_states midwest country southern_united western united_states west monterey peninsula northeastern_united_states northeast internet_archive southern_united_statesouth ocean highway midwestern united_states midwestern united_states west google_books puerto_rico hathitrust_internet_archive northeastern_united_states northeast southern_united_statesouth us_route hathitrust gross andrew american guide_series brand_name identification arizona quarterly journal american literature culture theory vol number n saxon wpa guide new spaces july american guide_series united_statesenate retrieved_october furthereading andrew kelly kentucky design decorative arts american_culture university_press kentucky externalinks american guide_series guidebooks state including alaska puerto_rico hawaii published federal writers project works progress administration titles division collection rare book special collections division athe library congress category_american literature_category_works progress administration category_travel_guide_books category pamphlets category_city_guides category_series books_category_tourism united_states"},{"title":"American Travellers' Guides","description":"redirect harper s hand book for travellers category travel guide books category series of books","main_words":["redirect","harper","hand_book","travellers","category_travel_guide_books","category_series","books"],"clean_bigrams":[["redirect","harper"],["hand","book"],["travellers","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"]],"all_collocations":["redirect harper","hand book","travellers category","category travel","travel guide","guide books","books category","category series"],"new_description":"redirect harper hand_book travellers category_travel_guide_books category_series books"},{"title":"An \u00d3ige","description":"founders thekla beere marion tweedyand ce terry trench founding location dublin republic of ireland extinction type youth organization status non profit focus to encourage youths to appreciate the irish countryside throughostelling professional title headquarters dublin ireland location mountjoy street coords region servedublin and surrounding areaservices language board of directors marie mcdonnellrichard brierlytony grahamdamien o sullivanmargaret nugentpeter silvester key people main organ parent organization subsidiariesecessions affiliations hostelling international youthostel federation budget year staff year volunteers year slogan website remarks formerly footnotes an ige meaning youth or the irish youthostel association iyha is the hostelling international s association for the republic of ireland an ige was founded on may by an organising committee which included thekla beere marion tweedy and ce terry trenchonational secretary as a membership based organisation and is a member of the international youthostel federation the first youthostel was opened in lough dan irish loch deanearoundwood irish an tochar in county wicklow irish cill mhant in as of an ige operates youthostels in the republic of ireland an additional inorthern ireland to help all but especiallyoung people to a love and appreciation of the countryside particularly by providing simple hostel accommodation for them whilst on their travels externalinks an ige official website category tourism in ireland category backpacking category entities with irish names oige category environmental organisations based in ireland categoryouthostelling category hostelling international member associations","main_words":["founders","marion","terry","trench","founding","location","dublin","republic","ireland","extinction","type","youth","organization","status","non_profit","focus","encourage","appreciate","irish","countryside","professional","title","headquarters","dublin","ireland","location","street","coords","region","surrounding","language","board","directors","marie","key_people","main_organ","parent_organization","affiliations","federation","budget","year","staff","year","volunteers","year","slogan","website","remarks","formerly","footnotes","ige","meaning","youth","irish","youthostel_association","hostelling_international","association","republic","ireland","ige","founded","may","committee","included","marion","terry","secretary","membership","based","organisation","member","international_youthostel","federation","first","youthostel","opened","dan","irish","loch","irish","county","irish","ige","operates","youthostels","republic","ireland","additional","inorthern_ireland","help","people","love","appreciation","countryside","particularly","providing","simple","hostel","accommodation","whilst","travels","externalinks","ige","official_website_category","category","entities","irish","names","category","environmental","organisations_based","hostelling_international_member_associations"],"clean_bigrams":[["terry","trench"],["trench","founding"],["founding","location"],["location","dublin"],["dublin","republic"],["ireland","extinction"],["extinction","type"],["type","youth"],["youth","organization"],["organization","status"],["status","non"],["non","profit"],["profit","focus"],["irish","countryside"],["professional","title"],["title","headquarters"],["headquarters","dublin"],["dublin","ireland"],["ireland","location"],["street","coords"],["coords","region"],["language","board"],["directors","marie"],["key","people"],["people","main"],["main","organ"],["organ","parent"],["parent","organization"],["affiliations","hostelling"],["hostelling","international"],["international","youthostel"],["youthostel","federation"],["federation","budget"],["budget","year"],["year","staff"],["staff","year"],["year","volunteers"],["volunteers","year"],["year","slogan"],["slogan","website"],["website","remarks"],["remarks","formerly"],["formerly","footnotes"],["ige","meaning"],["meaning","youth"],["irish","youthostel"],["youthostel","association"],["hostelling","international"],["membership","based"],["based","organisation"],["international","youthostel"],["youthostel","federation"],["first","youthostel"],["dan","irish"],["irish","loch"],["ige","operates"],["operates","youthostels"],["additional","inorthern"],["inorthern","ireland"],["countryside","particularly"],["providing","simple"],["simple","hostel"],["hostel","accommodation"],["travels","externalinks"],["ige","official"],["official","website"],["website","category"],["category","tourism"],["ireland","category"],["category","backpacking"],["backpacking","category"],["category","entities"],["irish","names"],["category","environmental"],["environmental","organisations"],["organisations","based"],["ireland","categoryouthostelling"],["categoryouthostelling","category"],["category","hostelling"],["hostelling","international"],["international","member"],["member","associations"]],"all_collocations":["terry trench","trench founding","founding location","location dublin","dublin republic","ireland extinction","extinction type","type youth","youth organization","organization status","status non","non profit","profit focus","irish countryside","professional title","title headquarters","headquarters dublin","dublin ireland","ireland location","street coords","coords region","language board","directors marie","key people","people main","main organ","organ parent","parent organization","affiliations hostelling","hostelling international","international youthostel","youthostel federation","federation budget","budget year","year staff","staff year","year volunteers","volunteers year","year slogan","slogan website","website remarks","remarks formerly","formerly footnotes","ige meaning","meaning youth","irish youthostel","youthostel association","hostelling international","membership based","based organisation","international youthostel","youthostel federation","first youthostel","dan irish","irish loch","ige operates","operates youthostels","additional inorthern","inorthern ireland","countryside particularly","providing simple","simple hostel","hostel accommodation","travels externalinks","ige official","official website","website category","category tourism","ireland category","category backpacking","backpacking category","category entities","irish names","category environmental","environmental organisations","organisations based","ireland categoryouthostelling","categoryouthostelling category","category hostelling","hostelling international","international member","member associations"],"new_description":"founders marion terry trench founding location dublin republic ireland extinction type youth organization status non_profit focus encourage appreciate irish countryside professional title headquarters dublin ireland location street coords region surrounding language board directors marie key_people main_organ parent_organization affiliations hostelling_international_youthostel federation budget year staff year volunteers year slogan website remarks formerly footnotes ige meaning youth irish youthostel_association hostelling_international association republic ireland ige founded may committee included marion terry secretary membership based organisation member international_youthostel federation first youthostel opened dan irish loch irish county irish ige operates youthostels republic ireland additional inorthern_ireland help people love appreciation countryside particularly providing simple hostel accommodation whilst travels externalinks ige official_website_category tourism_ireland_category_backpacking category entities irish names category environmental organisations_based ireland_categoryouthostelling_category hostelling_international_member_associations"},{"title":"Andanada","description":"andanada is a spanish michelin starestaurant located at westh street between broadway manhattan broadway and ninth avenue manhattan columbus on the upper west side in manhattanew york city it is owned by chef manuel berganza the restaurant opened in andanada refers to the highest seating area in the bullfighting arena it is known for attracting the liveliest most enthusiastic bullfighting fans it provides a true spanish experience tone of spain s most famed events and a birds eye view of all the action michelin star on andanada was awarded with a michelin stareview by michelin guide inspector everything is delicious vibrant and notably personable athis unselfconsciouspanish powerhouse located below street level andanada is laid back but still formal with professional customer driven servers and a fine dining menu the crowd is livelyet very sophisticated whether seated athe date friendly bar pleasant glass atrium or brick dining room decorated with memorable bullfighting scenes like the surrounds this noteworthy cuisine arrives much more beautiful than expected clearly there is modern talent in chef manuel berganza s kitchen the menu does feature tapas but each dish is composed with an eye on innovative cooking with classic flavors here patatas bravas are a fascinating mosaic of tender slowly fried potatoes dotted with salsa bravand a oli to elevateach bite fried artichoke hearts combine perfectechnique with an enticing showering of salty manchego the simple sounding pulpo a la gallega is beguilingly complex served as tender octopus with olive oil and piment n de la vera beneath an impossibly light and almost foamy potato pur e do not skipan seared iberian pork shoulder with a pastrami style crust served hot on a sizzling cast iron platter category michelin guide starred restaurants","main_words":["andanada","spanish","michelin","located","westh","street","broadway","manhattan","broadway","ninth","avenue_manhattan","columbus","upper","west","side","manhattanew","york_city","owned","chef","manuel","restaurant","opened","andanada","refers","highest","seating","area","arena","known","attracting","enthusiastic","fans","provides","true","spanish","experience","tone","spain","famed","events","birds","eye","view","action","michelin_star","andanada","awarded","michelin","michelin_guide","inspector","everything","delicious","vibrant","notably","athis","powerhouse","located","street","level","andanada","laid","back","still","formal","professional","customer","driven","servers","fine_dining","menu","crowd","sophisticated","whether","seated","athe","date","friendly","bar","pleasant","glass","atrium","brick","dining_room","decorated","memorable","scenes","like","surrounds","noteworthy","cuisine","arrives","much","beautiful","expected","clearly","modern","talent","chef","manuel","kitchen","menu","feature","tapas","dish","composed","eye","innovative","cooking","classic","flavors","fascinating","mosaic","tender","slowly","fried","potatoes","salsa","bite","fried","hearts","combine","salty","simple","la","complex","served","tender","octopus","olive","oil","n","de_la","vera","beneath","light","almost","potato","e","pork","shoulder","pastrami","style","crust","served","hot","cast","iron","platter","category_michelin_guide","starred_restaurants"],"clean_bigrams":[["spanish","michelin"],["westh","street"],["broadway","manhattan"],["manhattan","broadway"],["ninth","avenue"],["avenue","manhattan"],["manhattan","columbus"],["upper","west"],["west","side"],["manhattanew","york"],["york","city"],["chef","manuel"],["restaurant","opened"],["andanada","refers"],["highest","seating"],["seating","area"],["true","spanish"],["spanish","experience"],["experience","tone"],["famed","events"],["birds","eye"],["eye","view"],["action","michelin"],["michelin","star"],["michelin","guide"],["guide","inspector"],["inspector","everything"],["delicious","vibrant"],["powerhouse","located"],["street","level"],["level","andanada"],["laid","back"],["still","formal"],["professional","customer"],["customer","driven"],["driven","servers"],["fine","dining"],["dining","menu"],["sophisticated","whether"],["whether","seated"],["seated","athe"],["athe","date"],["date","friendly"],["friendly","bar"],["bar","pleasant"],["pleasant","glass"],["glass","atrium"],["brick","dining"],["dining","room"],["room","decorated"],["scenes","like"],["noteworthy","cuisine"],["cuisine","arrives"],["arrives","much"],["expected","clearly"],["modern","talent"],["chef","manuel"],["feature","tapas"],["innovative","cooking"],["classic","flavors"],["fascinating","mosaic"],["tender","slowly"],["slowly","fried"],["fried","potatoes"],["bite","fried"],["hearts","combine"],["complex","served"],["tender","octopus"],["olive","oil"],["n","de"],["de","la"],["la","vera"],["vera","beneath"],["pork","shoulder"],["pastrami","style"],["style","crust"],["crust","served"],["served","hot"],["cast","iron"],["iron","platter"],["platter","category"],["category","michelin"],["michelin","guide"],["guide","starred"],["starred","restaurants"]],"all_collocations":["spanish michelin","westh street","broadway manhattan","manhattan broadway","ninth avenue","avenue manhattan","manhattan columbus","upper west","west side","manhattanew york","york city","chef manuel","restaurant opened","andanada refers","highest seating","seating area","true spanish","spanish experience","experience tone","famed events","birds eye","eye view","action michelin","michelin star","michelin guide","guide inspector","inspector everything","delicious vibrant","powerhouse located","street level","level andanada","laid back","still formal","professional customer","customer driven","driven servers","fine dining","dining menu","sophisticated whether","whether seated","seated athe","athe date","date friendly","friendly bar","bar pleasant","pleasant glass","glass atrium","brick dining","dining room","room decorated","scenes like","noteworthy cuisine","cuisine arrives","arrives much","expected clearly","modern talent","chef manuel","feature tapas","innovative cooking","classic flavors","fascinating mosaic","tender slowly","slowly fried","fried potatoes","bite fried","hearts combine","complex served","tender octopus","olive oil","n de","de la","la vera","vera beneath","pork shoulder","pastrami style","style crust","crust served","served hot","cast iron","iron platter","platter category","category michelin","michelin guide","guide starred","starred restaurants"],"new_description":"andanada spanish michelin located westh street broadway manhattan broadway ninth avenue_manhattan columbus upper west side manhattanew york_city owned chef manuel restaurant opened andanada refers highest seating area arena known attracting enthusiastic fans provides true spanish experience tone spain famed events birds eye view action michelin_star andanada awarded michelin michelin_guide inspector everything delicious vibrant notably athis powerhouse located street level andanada laid back still formal professional customer driven servers fine_dining menu crowd sophisticated whether seated athe date friendly bar pleasant glass atrium brick dining_room decorated memorable scenes like surrounds noteworthy cuisine arrives much beautiful expected clearly modern talent chef manuel kitchen menu feature tapas dish composed eye innovative cooking classic flavors fascinating mosaic tender slowly fried potatoes salsa bite fried hearts combine salty simple la complex served tender octopus olive oil n de_la vera beneath light almost potato e pork shoulder pastrami style crust served hot cast iron platter category_michelin_guide starred_restaurants"},{"title":"Andrew Harper's Hideaway Report","description":"andrew harper s hideaway report is a monthly newsletter that reviews luxury hotel s and resort s typically smaller more individual ventures the first issue appeared in andrew harper a pseudonym was concerned abouthe influence of commercial considerations on travel review so he travels anonymously and pays his own expenses each year the company conducts a opinion poll survey of subscribers favorite small hotels andrew harper llc employs full time staff with offices in austin texas austin chicago and new york city new york it alsoperates a luxury travel agency references externalinks andrew harper web site category american monthly magazines category american business magazines category magazinestablished in category tourismagazines","main_words":["andrew","harper","report","monthly","newsletter","reviews","luxury","hotel","resort","typically","smaller","individual","ventures","first_issue","appeared","andrew","harper","pseudonym","concerned","abouthe","influence","commercial","considerations","travel","review","travels","pays","expenses","year","company","opinion","poll","survey","subscribers","favorite","small","hotels","andrew","harper","llc","employs","full_time","staff","offices","austin_texas","austin","chicago","new_york","city_new_york","alsoperates","luxury","travel_agency","references_externalinks","andrew","harper","web_site_category","american_monthly_magazines_category","american","business","magazines_category_magazinestablished","category_tourismagazines"],"clean_bigrams":[["andrew","harper"],["monthly","newsletter"],["reviews","luxury"],["luxury","hotel"],["typically","smaller"],["individual","ventures"],["first","issue"],["issue","appeared"],["andrew","harper"],["concerned","abouthe"],["abouthe","influence"],["commercial","considerations"],["travel","review"],["opinion","poll"],["poll","survey"],["subscribers","favorite"],["favorite","small"],["small","hotels"],["hotels","andrew"],["andrew","harper"],["harper","llc"],["llc","employs"],["employs","full"],["full","time"],["time","staff"],["austin","texas"],["texas","austin"],["austin","chicago"],["new","york"],["york","city"],["city","new"],["new","york"],["luxury","travel"],["travel","agency"],["agency","references"],["references","externalinks"],["externalinks","andrew"],["andrew","harper"],["harper","web"],["web","site"],["site","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","american"],["american","business"],["business","magazines"],["magazines","category"],["category","magazinestablished"],["category","tourismagazines"]],"all_collocations":["andrew harper","monthly newsletter","reviews luxury","luxury hotel","typically smaller","individual ventures","first issue","issue appeared","andrew harper","concerned abouthe","abouthe influence","commercial considerations","travel review","opinion poll","poll survey","subscribers favorite","favorite small","small hotels","hotels andrew","andrew harper","harper llc","llc employs","employs full","full time","time staff","austin texas","texas austin","austin chicago","new york","york city","city new","new york","luxury travel","travel agency","agency references","references externalinks","externalinks andrew","andrew harper","harper web","web site","site category","category american","american monthly","monthly magazines","magazines category","category american","american business","business magazines","magazines category","category magazinestablished","category tourismagazines"],"new_description":"andrew harper report monthly newsletter reviews luxury hotel resort typically smaller individual ventures first_issue appeared andrew harper pseudonym concerned abouthe influence commercial considerations travel review travels pays expenses year company opinion poll survey subscribers favorite small hotels andrew harper llc employs full_time staff offices austin_texas austin chicago new_york city_new_york alsoperates luxury travel_agency references_externalinks andrew harper web_site_category american_monthly_magazines_category american business magazines_category_magazinestablished category_tourismagazines"},{"title":"Angels Global Healthcare","description":"redirect angels oflight canada medical tourism category medical tourism","main_words":["redirect","angels","oflight","canada","medical_tourism","category_medical","tourism"],"clean_bigrams":[["redirect","angels"],["angels","oflight"],["oflight","canada"],["canada","medical"],["medical","tourism"],["tourism","category"],["category","medical"],["medical","tourism"]],"all_collocations":["redirect angels","angels oflight","oflight canada","canada medical","medical tourism","tourism category","category medical","medical tourism"],"new_description":"redirect angels oflight canada medical_tourism category_medical tourism"},{"title":"Apodemica","description":"ars apodemica is guide book travel advice literature which wasignificant in the period between the mid th and the late th century travelling was becoming more and more a widespread practice so the need was felt of guidance for future travellers ars apodemica writings gave also guideline s on how to systematise the knowledge acquired by travelling in order to benefithe learned community the respublica literarum these writingseveral hundred inumber can be read as milestone s in the formation of modern scientific method ology but also as discourses on social practices of the period eg the grand tour externalinks de apodemik list of apodemica books that are available online at dewikisource ars apodemica online project description category travel guide books","main_words":["apodemica","guide_book","travel","advice","literature","period","mid_th","late_th","century","travelling","becoming","widespread","practice","need","felt","guidance","future","travellers","apodemica","writings","gave","also","knowledge","acquired","travelling","order","benefithe","learned","community","hundred","inumber","read","milestone","formation","modern","scientific","method","also","social","practices","period","grand_tour","externalinks","de","list","apodemica","books","available_online","apodemica","online","project","description","category_travel_guide_books"],"clean_bigrams":[["guide","book"],["book","travel"],["travel","advice"],["advice","literature"],["mid","th"],["late","th"],["th","century"],["century","travelling"],["widespread","practice"],["future","travellers"],["apodemica","writings"],["writings","gave"],["gave","also"],["knowledge","acquired"],["benefithe","learned"],["learned","community"],["hundred","inumber"],["modern","scientific"],["scientific","method"],["social","practices"],["grand","tour"],["tour","externalinks"],["externalinks","de"],["apodemica","books"],["available","online"],["apodemica","online"],["online","project"],["project","description"],["description","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["guide book","book travel","travel advice","advice literature","mid th","late th","th century","century travelling","widespread practice","future travellers","apodemica writings","writings gave","gave also","knowledge acquired","benefithe learned","learned community","hundred inumber","modern scientific","scientific method","social practices","grand tour","tour externalinks","externalinks de","apodemica books","available online","apodemica online","online project","project description","description category","category travel","travel guide","guide books"],"new_description":"apodemica guide_book travel advice literature period mid_th late_th century travelling becoming widespread practice need felt guidance future travellers apodemica writings gave also knowledge acquired travelling order benefithe learned community hundred inumber read milestone formation modern scientific method also social practices period grand_tour externalinks de list apodemica books available_online apodemica online project description category_travel_guide_books"},{"title":"Appletons' travel guides","description":"image appletons hand book of american travel southern tourpng thumb right appletons hand book of american travel southern tour file appleton s railway and steam navigation guidecember jpg thumb right appletons railway steam navigation guidecember appletons travel guide book s were published by d appleton company of new york the firm series of guides to railway travel in the united states began in the soon after it issued additional series of handbooks for tourists in the united states europe canadand latin america list of appletons guides by geographicoveraged p index p ed p ed p index latin america ed index united states ed index ed index ed index north east usa ed ed south west usa index index see also picturesque america externalinks category travel guide books category series of books category publications established in the s category d appleton company books category tourism in the united states","main_words":["image","appletons","hand_book","american_travel","southern","thumb","right","appletons","hand_book","american_travel","southern","tour","file","appleton","railway","steam","navigation","jpg","thumb","right","appletons","railway","steam","navigation","appletons","travel_guide_book","published","appleton","company","new_york","firm","series","guides","railway","travel","united_states","began","soon","issued","additional","series","handbooks","tourists","united_states","europe","canadand","latin_america","list","appletons","guides","p","index","p","ed","p","ed","p","index","latin_america","united_states","index_ed","index","north_east","usa","ed","ed","south_west","usa","picturesque","america","category_series","books_category","publications_established","category","appleton","company","books_category_tourism","united_states"],"clean_bigrams":[["image","appletons"],["appletons","hand"],["hand","book"],["american","travel"],["travel","southern"],["thumb","right"],["right","appletons"],["appletons","hand"],["hand","book"],["american","travel"],["travel","southern"],["southern","tour"],["tour","file"],["file","appleton"],["railway","steam"],["steam","navigation"],["jpg","thumb"],["thumb","right"],["right","appletons"],["appletons","railway"],["railway","steam"],["steam","navigation"],["appletons","travel"],["travel","guide"],["guide","book"],["appleton","company"],["new","york"],["firm","series"],["railway","travel"],["united","states"],["states","began"],["issued","additional"],["additional","series"],["united","states"],["states","europe"],["europe","canadand"],["canadand","latin"],["latin","america"],["america","list"],["appletons","guides"],["p","index"],["index","p"],["p","ed"],["ed","p"],["p","ed"],["ed","p"],["p","index"],["index","latin"],["latin","america"],["america","ed"],["ed","index"],["index","united"],["united","states"],["states","ed"],["ed","index"],["index","ed"],["ed","index"],["index","ed"],["ed","index"],["index","north"],["north","east"],["east","usa"],["usa","ed"],["ed","ed"],["ed","south"],["south","west"],["west","usa"],["usa","index"],["index","index"],["index","see"],["see","also"],["also","picturesque"],["picturesque","america"],["america","externalinks"],["externalinks","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["appleton","company"],["company","books"],["books","category"],["category","tourism"],["united","states"]],"all_collocations":["image appletons","appletons hand","hand book","american travel","travel southern","right appletons","appletons hand","hand book","american travel","travel southern","southern tour","tour file","file appleton","railway steam","steam navigation","right appletons","appletons railway","railway steam","steam navigation","appletons travel","travel guide","guide book","appleton company","new york","firm series","railway travel","united states","states began","issued additional","additional series","united states","states europe","europe canadand","canadand latin","latin america","america list","appletons guides","p index","index p","p ed","ed p","p ed","ed p","p index","index latin","latin america","america ed","ed index","index united","united states","states ed","ed index","index ed","ed index","index ed","ed index","index north","north east","east usa","usa ed","ed ed","ed south","south west","west usa","usa index","index index","index see","see also","also picturesque","picturesque america","america externalinks","externalinks category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","appleton company","company books","books category","category tourism","united states"],"new_description":"image appletons hand_book american_travel southern thumb right appletons hand_book american_travel southern tour file appleton railway steam navigation jpg thumb right appletons railway steam navigation appletons travel_guide_book published appleton company new_york firm series guides railway travel united_states began soon issued additional series handbooks tourists united_states europe canadand latin_america list appletons guides p index p ed p ed p index latin_america ed_index united_states ed_index_ed index_ed index north_east usa ed ed south_west usa index_index_see_also picturesque america externalinks_category_travel_guide_books category_series books_category publications_established category appleton company books_category_tourism united_states"},{"title":"Archaeological Seminars","description":"archaeological seminars institute is a private company based in jerusalem israel that deals with archaeology and tourism founded in by archaeologist bernie alpert and his wife fran alpert as an educational tourist facility and joined in by archaeologist dr ian stern archaeological seminars institute runs the dig for a day program in maresha beit guvrin and hires out licensed tour guides for private walking tours the company also ran official english language tour guide course for ten years dig for a day amateur archaeologists gethe dirt on the past new york times is a three hour family activity that includes participating in an official archaeological excavation licensed by the israel antiquities authority in one of the thousands of caves in the area of maresha following an introductory explanation that provides context for thexcavation the participants then descend intone of the subterranean complexes inside these caves they excavate and then above ground sifthrough the material they have dug up afterwards they gon a tour a crawl of an unexcavated cave system each group has its own guide for the duration of the activity the dig ends with a short summation describing some of the most important findsome of which are now displayed in the israel museum in jerusalem clients pay for the activity which provides funds for the ongoing excavation as well as paying for staff many participants consider the dig the highlight of their visito israel archaeological seminars institute is now run by dr ian stern and his wife heidi stern the maresha excavation project is operated as a full fledged research project under the academic umbrella of the nelson glueck school of biblical archaeology of thebrew union college jewish institute of religion see also maresha beit guvrin disambiguation externalinks archaeological seminars institute official site archaeological seminars institute social media facebook page revealing rare finds from thexcavation as well as thexcavators who found them bet guvrin maresha national park official site pictures of maresha category ancient israel and judah category archaeological sites in israel category edom category hasmonean dynasty category education companies of israel category cultural tourism","main_words":["archaeological","seminars","institute","jerusalem","israel","deals","archaeology","tourism","founded","archaeologist","wife","fran","educational","tourist","facility","joined","archaeologist","ian","stern","archaeological","seminars","institute","runs","dig","day","program","maresha","licensed","tour_guides","private","walking_tours","company_also","ran","official","english_language","tour_guide","course","ten_years","dig","day","amateur","archaeologists","gethe","dirt","past","new_york","times","three","hour","family","activity","includes","participating","official","archaeological","excavation","licensed","israel","antiquities","authority","one","thousands","caves","area","maresha","following","introductory","explanation","provides","context","thexcavation","participants","intone","complexes","inside","caves","ground","material","dug","afterwards","gon","tour","crawl","cave","system","group","guide","duration","activity","dig","ends","short","describing","important","displayed","israel","museum","jerusalem","clients","pay","activity","provides","funds","ongoing","excavation","well","paying","staff","many","participants","consider","dig","highlight","visito","israel","archaeological","seminars","institute","run","ian","stern","wife","stern","maresha","excavation","project","operated","full","research","project","academic","umbrella","nelson","school","biblical","archaeology","union","college","jewish","institute","religion","see_also","maresha","disambiguation","externalinks","archaeological","seminars","institute","official_site","archaeological","seminars","institute","social_media","facebook","page","revealing","rare","finds","thexcavation","well","found","maresha","national_park","official_site","pictures","maresha","category","ancient","israel_category","archaeological","sites","israel_category","category","dynasty","category_education","companies"],"clean_bigrams":[["archaeological","seminars"],["seminars","institute"],["private","company"],["company","based"],["jerusalem","israel"],["tourism","founded"],["wife","fran"],["educational","tourist"],["tourist","facility"],["ian","stern"],["stern","archaeological"],["archaeological","seminars"],["seminars","institute"],["institute","runs"],["day","program"],["licensed","tour"],["tour","guides"],["private","walking"],["walking","tours"],["company","also"],["also","ran"],["ran","official"],["official","english"],["english","language"],["language","tour"],["tour","guide"],["guide","course"],["ten","years"],["years","dig"],["day","amateur"],["amateur","archaeologists"],["archaeologists","gethe"],["gethe","dirt"],["past","new"],["new","york"],["york","times"],["three","hour"],["hour","family"],["family","activity"],["includes","participating"],["official","archaeological"],["archaeological","excavation"],["excavation","licensed"],["israel","antiquities"],["antiquities","authority"],["maresha","following"],["introductory","explanation"],["provides","context"],["complexes","inside"],["cave","system"],["dig","ends"],["israel","museum"],["jerusalem","clients"],["clients","pay"],["provides","funds"],["ongoing","excavation"],["staff","many"],["many","participants"],["participants","consider"],["visito","israel"],["israel","archaeological"],["archaeological","seminars"],["seminars","institute"],["ian","stern"],["maresha","excavation"],["excavation","project"],["research","project"],["academic","umbrella"],["biblical","archaeology"],["union","college"],["college","jewish"],["jewish","institute"],["religion","see"],["see","also"],["also","maresha"],["disambiguation","externalinks"],["externalinks","archaeological"],["archaeological","seminars"],["seminars","institute"],["institute","official"],["official","site"],["site","archaeological"],["archaeological","seminars"],["seminars","institute"],["institute","social"],["social","media"],["media","facebook"],["facebook","page"],["page","revealing"],["revealing","rare"],["rare","finds"],["maresha","national"],["national","park"],["park","official"],["official","site"],["site","pictures"],["maresha","category"],["category","ancient"],["ancient","israel"],["israel","category"],["category","archaeological"],["archaeological","sites"],["israel","category"],["dynasty","category"],["category","education"],["education","companies"],["israel","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["archaeological seminars","seminars institute","private company","company based","jerusalem israel","tourism founded","wife fran","educational tourist","tourist facility","ian stern","stern archaeological","archaeological seminars","seminars institute","institute runs","day program","licensed tour","tour guides","private walking","walking tours","company also","also ran","ran official","official english","english language","language tour","tour guide","guide course","ten years","years dig","day amateur","amateur archaeologists","archaeologists gethe","gethe dirt","past new","new york","york times","three hour","hour family","family activity","includes participating","official archaeological","archaeological excavation","excavation licensed","israel antiquities","antiquities authority","maresha following","introductory explanation","provides context","complexes inside","cave system","dig ends","israel museum","jerusalem clients","clients pay","provides funds","ongoing excavation","staff many","many participants","participants consider","visito israel","israel archaeological","archaeological seminars","seminars institute","ian stern","maresha excavation","excavation project","research project","academic umbrella","biblical archaeology","union college","college jewish","jewish institute","religion see","see also","also maresha","disambiguation externalinks","externalinks archaeological","archaeological seminars","seminars institute","institute official","official site","site archaeological","archaeological seminars","seminars institute","institute social","social media","media facebook","facebook page","page revealing","revealing rare","rare finds","maresha national","national park","park official","official site","site pictures","maresha category","category ancient","ancient israel","israel category","category archaeological","archaeological sites","israel category","dynasty category","category education","education companies","israel category","category cultural","cultural tourism"],"new_description":"archaeological seminars institute private_company_based jerusalem israel deals archaeology tourism founded archaeologist wife fran educational tourist facility joined archaeologist ian stern archaeological seminars institute runs dig day program maresha licensed tour_guides private walking_tours company_also ran official english_language tour_guide course ten_years dig day amateur archaeologists gethe dirt past new_york times three hour family activity includes participating official archaeological excavation licensed israel antiquities authority one thousands caves area maresha following introductory explanation provides context thexcavation participants intone complexes inside caves ground material dug afterwards gon tour crawl cave system group guide duration activity dig ends short describing important displayed israel museum jerusalem clients pay activity provides funds ongoing excavation well paying staff many participants consider dig highlight visito israel archaeological seminars institute run ian stern wife stern maresha excavation project operated full research project academic umbrella nelson school biblical archaeology union college jewish institute religion see_also maresha disambiguation externalinks archaeological seminars institute official_site archaeological seminars institute social_media facebook page revealing rare finds thexcavation well found maresha national_park official_site pictures maresha category ancient israel_category archaeological sites israel_category category dynasty category_education companies israel_category_cultural_tourism"},{"title":"Archaeological tourism","description":"file roman bath beirut lebanon jpg thumb ruins of ancient roman empire roman bathhouse in beirut central district lebanon archaeotourism or archaeological tourism is a form of cultural tourism which aims to promote public interest in archaeology and the conservation of historical sites archaeological tourism can include all products associated with public archaeological promotion including visits to archaeological site s museum s interpretation center s reenactments of historical occurrences and the rediscovery of indigenous products festival s or theater s archaeological tourism walks a fine line between promoting archaeological sites and an area s cultural heritage and causing more damage to them thus becoming invasive tourismessai hada november pompeii s house of the gladiators collapses cnncom archaeologists havexpressed concerns thatourism encourages particular ways of seeing and knowing the pastuzi baram tourism and archaeology in encyclopedia of archaeology edited by deborah m pearsall pp elsevier when archaeological sites are run by tourist boards ticket fees and souvenirevenues can become a priority and the question remains whether a site is worth opening to the public oremaining closed and keeping the site out of harm s way damage to irreplaceable archaeological materials is not only direct as when remains are disordered alteredestroyed or looted but often the indirect result of poorly plannedevelopment of tourism amenitiesuch as hotels restaurants roads and shops these can drastically alter thenvironment in ways that produce flooding landslides or undermine ancient structures references externalinksites arqueotur institutional network for the promotion of archaeological tourism and local development cordinated by the university of barcelona category cultural tourism category public archaeology","main_words":["file","roman","bath","beirut","lebanon","jpg","thumb","ruins","ancient","roman_empire","roman","beirut","central","district","lebanon","archaeological","tourism","form","cultural_tourism","aims","promote","public_interest","archaeology","conservation","historical","sites","archaeological","tourism","include","products","associated","public","archaeological","promotion","including","visits","archaeological","site","museum","interpretation","center","historical","indigenous","products","festival","theater","archaeological","tourism","walks","fine","line","promoting","archaeological","sites","area","cultural_heritage","causing","damage","thus","becoming","invasive","november","pompeii","house","archaeologists","concerns","thatourism","encourages","particular","ways","seeing","knowing","tourism","archaeology","encyclopedia","archaeology","edited","deborah","pp","elsevier","archaeological","sites","run","tourist_boards","ticket","fees","become","priority","question","remains","whether","site","worth","opening","public","closed","keeping","site","harm","way","damage","archaeological","materials","direct","remains","often","indirect","result","poorly","tourism","amenitiesuch","hotels_restaurants","roads","shops","alter","thenvironment","ways","produce","flooding","undermine","ancient","structures","references","institutional","network","promotion","archaeological","tourism","local","development","university","barcelona","category_cultural_tourism","category","public","archaeology"],"clean_bigrams":[["file","roman"],["roman","bath"],["bath","beirut"],["beirut","lebanon"],["lebanon","jpg"],["jpg","thumb"],["thumb","ruins"],["ancient","roman"],["roman","empire"],["empire","roman"],["beirut","central"],["central","district"],["district","lebanon"],["archaeological","tourism"],["cultural","tourism"],["promote","public"],["public","interest"],["historical","sites"],["sites","archaeological"],["archaeological","tourism"],["products","associated"],["public","archaeological"],["archaeological","promotion"],["promotion","including"],["including","visits"],["archaeological","site"],["interpretation","center"],["indigenous","products"],["products","festival"],["archaeological","tourism"],["tourism","walks"],["fine","line"],["promoting","archaeological"],["archaeological","sites"],["cultural","heritage"],["thus","becoming"],["becoming","invasive"],["november","pompeii"],["concerns","thatourism"],["thatourism","encourages"],["encourages","particular"],["particular","ways"],["archaeology","edited"],["pp","elsevier"],["archaeological","sites"],["tourist","boards"],["boards","ticket"],["ticket","fees"],["question","remains"],["remains","whether"],["worth","opening"],["way","damage"],["archaeological","materials"],["indirect","result"],["tourism","amenitiesuch"],["hotels","restaurants"],["restaurants","roads"],["alter","thenvironment"],["produce","flooding"],["undermine","ancient"],["ancient","structures"],["structures","references"],["institutional","network"],["archaeological","tourism"],["local","development"],["barcelona","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","public"],["public","archaeology"]],"all_collocations":["file roman","roman bath","bath beirut","beirut lebanon","lebanon jpg","thumb ruins","ancient roman","roman empire","empire roman","beirut central","central district","district lebanon","archaeological tourism","cultural tourism","promote public","public interest","historical sites","sites archaeological","archaeological tourism","products associated","public archaeological","archaeological promotion","promotion including","including visits","archaeological site","interpretation center","indigenous products","products festival","archaeological tourism","tourism walks","fine line","promoting archaeological","archaeological sites","cultural heritage","thus becoming","becoming invasive","november pompeii","concerns thatourism","thatourism encourages","encourages particular","particular ways","archaeology edited","pp elsevier","archaeological sites","tourist boards","boards ticket","ticket fees","question remains","remains whether","worth opening","way damage","archaeological materials","indirect result","tourism amenitiesuch","hotels restaurants","restaurants roads","alter thenvironment","produce flooding","undermine ancient","ancient structures","structures references","institutional network","archaeological tourism","local development","barcelona category","category cultural","cultural tourism","tourism category","category public","public archaeology"],"new_description":"file roman bath beirut lebanon jpg thumb ruins ancient roman_empire roman beirut central district lebanon archaeological tourism form cultural_tourism aims promote public_interest archaeology conservation historical sites archaeological tourism include products associated public archaeological promotion including visits archaeological site museum interpretation center historical indigenous products festival theater archaeological tourism walks fine line promoting archaeological sites area cultural_heritage causing damage thus becoming invasive november pompeii house archaeologists concerns thatourism encourages particular ways seeing knowing tourism archaeology encyclopedia archaeology edited deborah pp elsevier archaeological sites run tourist_boards ticket fees become priority question remains whether site worth opening public closed keeping site harm way damage archaeological materials direct remains often indirect result poorly tourism amenitiesuch hotels_restaurants roads shops alter thenvironment ways produce flooding undermine ancient structures references institutional network promotion archaeological tourism local development university barcelona category_cultural_tourism category public archaeology"},{"title":"Argyle Hotel Group","description":"argyle hotel group is an australian hotel management company which provides a series of hotel and resort management services and alsowns a series of hotels in china the group has a total of hotels under its management headquartered in beijing china the group operates eight hotel brands in the asia pacific region the group was first founded in australia in and started their operations in china in the first hotel opened was ausotel dayu in beijing in it was followed by huagang argyle in shanghain in the group launched its brand ausotel and ausotel smart as a midscale business hotel in the group signed its thotel the name argyle diamond mine argyle comes from an infamous pink diamond found only in australia businesses and operations the company owns manages and or franchises a portfoliof eight hotel brands catering to all market segments including argyle grand hotel argyle hotel argyle boutique argyle resorts ausotel smart and argyle suites extended stay serviced apartments in australiargyle is represented by the metro hotel group who have a portfoliof unique hotels the group alsoperates argyle academy which is a traininground for tourism college of bohai university shuigang senior technical school and zunyintermediate vocational school the hotel management services provided by argyle group include hotel consignment management franchising operations consulting services hotel management education and training argyle group hasigned management agreements in chongqing panjin liaoning and beijing representing the interests of the jufengroup chongqing panjin tian chuan group lianing beijing kangjian duhui hotel management co ltd externalinks official website category hotels","main_words":["argyle","hotel_group","australian","hotel_management","company","provides","series","hotel","resort","management","services","alsowns","series","hotels","china","group","total","hotels","management","headquartered","beijing","china","group","operates","eight","hotel","brands","asia_pacific","region","group","first","founded","australia","started","operations","china","first","hotel","opened","ausotel","beijing","followed","argyle","group","launched","brand","ausotel","ausotel","smart","business","hotel_group","signed","name","argyle","diamond","mine","argyle","comes","infamous","pink","diamond","found","australia","businesses","operations","company","owns","manages","franchises","portfoliof","eight","hotel","brands","catering","market","segments","including","argyle","grand","hotel","argyle","hotel","argyle","boutique","argyle","resorts","ausotel","smart","argyle","suites","extended_stay","serviced","apartments","represented","metro","hotel_group","portfoliof","unique","hotels","group","alsoperates","argyle","academy","tourism","college","university","senior","technical","school","school","hotel_management","services","provided","argyle","group","include","hotel_management","franchising","operations","consulting","services","hotel_management","education","training","argyle","group","management","agreements","beijing","representing","interests","chuan","group","beijing","hotel_management","ltd","externalinks_official_website_category","hotels"],"clean_bigrams":[["argyle","hotel"],["hotel","group"],["australian","hotel"],["hotel","management"],["management","company"],["resort","management"],["management","services"],["management","headquartered"],["beijing","china"],["group","operates"],["operates","eight"],["eight","hotel"],["hotel","brands"],["asia","pacific"],["pacific","region"],["first","founded"],["first","hotel"],["hotel","opened"],["argyle","group"],["group","launched"],["brand","ausotel"],["ausotel","smart"],["business","hotel"],["hotel","group"],["group","signed"],["name","argyle"],["argyle","diamond"],["diamond","mine"],["mine","argyle"],["argyle","comes"],["infamous","pink"],["pink","diamond"],["diamond","found"],["australia","businesses"],["company","owns"],["owns","manages"],["portfoliof","eight"],["eight","hotel"],["hotel","brands"],["brands","catering"],["market","segments"],["segments","including"],["including","argyle"],["argyle","grand"],["grand","hotel"],["hotel","argyle"],["argyle","hotel"],["hotel","argyle"],["argyle","boutique"],["boutique","argyle"],["argyle","resorts"],["resorts","ausotel"],["ausotel","smart"],["argyle","suites"],["suites","extended"],["extended","stay"],["stay","serviced"],["serviced","apartments"],["metro","hotel"],["hotel","group"],["portfoliof","unique"],["unique","hotels"],["group","alsoperates"],["alsoperates","argyle"],["argyle","academy"],["tourism","college"],["senior","technical"],["technical","school"],["hotel","management"],["management","services"],["services","provided"],["argyle","group"],["group","include"],["include","hotel"],["hotel","management"],["management","franchising"],["franchising","operations"],["operations","consulting"],["consulting","services"],["services","hotel"],["hotel","management"],["management","education"],["training","argyle"],["argyle","group"],["management","agreements"],["beijing","representing"],["chuan","group"],["hotel","management"],["ltd","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","hotels"]],"all_collocations":["argyle hotel","hotel group","australian hotel","hotel management","management company","resort management","management services","management headquartered","beijing china","group operates","operates eight","eight hotel","hotel brands","asia pacific","pacific region","first founded","first hotel","hotel opened","argyle group","group launched","brand ausotel","ausotel smart","business hotel","hotel group","group signed","name argyle","argyle diamond","diamond mine","mine argyle","argyle comes","infamous pink","pink diamond","diamond found","australia businesses","company owns","owns manages","portfoliof eight","eight hotel","hotel brands","brands catering","market segments","segments including","including argyle","argyle grand","grand hotel","hotel argyle","argyle hotel","hotel argyle","argyle boutique","boutique argyle","argyle resorts","resorts ausotel","ausotel smart","argyle suites","suites extended","extended stay","stay serviced","serviced apartments","metro hotel","hotel group","portfoliof unique","unique hotels","group alsoperates","alsoperates argyle","argyle academy","tourism college","senior technical","technical school","hotel management","management services","services provided","argyle group","group include","include hotel","hotel management","management franchising","franchising operations","operations consulting","consulting services","services hotel","hotel management","management education","training argyle","argyle group","management agreements","beijing representing","chuan group","hotel management","ltd externalinks","externalinks official","official website","website category","category hotels"],"new_description":"argyle hotel_group australian hotel_management company provides series hotel resort management services alsowns series hotels china group total hotels management headquartered beijing china group operates eight hotel brands asia_pacific region group first founded australia started operations china first hotel opened ausotel beijing followed argyle group launched brand ausotel ausotel smart business hotel_group signed name argyle diamond mine argyle comes infamous pink diamond found australia businesses operations company owns manages franchises portfoliof eight hotel brands catering market segments including argyle grand hotel argyle hotel argyle boutique argyle resorts ausotel smart argyle suites extended_stay serviced apartments represented metro hotel_group portfoliof unique hotels group alsoperates argyle academy tourism college university senior technical school school hotel_management services provided argyle group include hotel_management franchising operations consulting services hotel_management education training argyle group management agreements beijing representing interests chuan group beijing hotel_management ltd externalinks_official_website_category hotels"},{"title":"Arianespace","description":"euro billion operating income net incomeuro million assets equity owner num employees parent divisionsubsid homepage arianespacecom footnotes intl foundation location city courcouronnes location country france locations caption arianespace sa is a multinational company founded in as the world s first commercialaunch service provider it undertakes the production operation and marketing of the ariane rocket family ariane programme the company offers a diverse portfoliof launch vehicle s theavy lift launch vehicle heavy lift ariane for dualaunches to geostationary transfer orbithe soyuz as a medium lift launch vehicle medium lift alternative and the solid fuel rocket solid fueled vega rocket vega for lighter payloads arianespace has launched more than satellites in launches over years ariane missions minus the first flights handled by cnesoyuz missions and vega missions the first commercial flight managed by the new entity waspacenet f launched on may arianespace uses the guiana spacenter in french guianas its main launch site through shareholding in starsem it can alsoffer commercial soyuz launches from the baikonur spaceport in kazakhstan it has its headquarters in courcouronnessonne france russians french sign space contract upi science report united press international april retrieved on september near vry essonne vry contact us arianespace retrieved on september on october arianespace soyuz athe guiana spacentre inaugural flight launched the first soyuz rocket ever from outside former soviet union sovieterritory the payload was two galileo satellite navigation galileo navigation satellites company and infrastructure arianespace primary shareholders are itsupply economicsuppliers in various europeanations arianespace currently hashareholders class wikitable sortable scope col country scope col data sortype number total share scope col shareholder scope col data sortype number capital rowspan sabca thales alenia space belgium techspace aero sa christian rovsing a s rowspan airbusafran launchers holding air liquide sa clemessy cie deutsche rowspan airbusafran launchers gmbh mt aerospace ag avio spairbus defence and space bv kongsberg defence aerospace as rowspan airbus defence and space sau crisa rowspan ruag space ab gkn aerospace sweden ab ruag space company structure ruag schweiz ag arianespace shareholding has been restructured withe creation of an airbusafran launchers company that will develop and manufacture the ariane launcher airbus and safran shareholdings were pooled along withe purchase of the french governments cnestake to form a partnership company holding just under of arianespace shares while the remaining ispread across companies in ten countries including further airbusubsidiaries corporate management class wikitable positioname ceo chairman st phane isra l senior vice president programs louis laurent senior vice president sales customers jacques breton senior vice president chiefinancial officer thomas hundt vice president corporate communication isabelle veillon class wikitable location office head of branch french guiana patrick loire usa clayton mowry japan kiyoshi takamatsu singapore richard bowles arianespace inc usubsidiary arianespace singapore pte ltd asian subsidiary starsem sa european russian soyuz commercialization competition and pricing in arianespace held more than percent of the world market for boosting satellites to geostationary transfer orbit gto the disruptive force represented by new sector entrant spacex forced arianespace to cut workforce and focus on cost cutting to decrease costs to remain competitive againsthe new low cost entrant in the launch sector according to an arianespace managing director it s quite clear there is a very significant challenge coming from spacex he said therefore things have to change and the wholeuropean industry is being restructured consolidated rationalised and streamlined in the midst of competition economics pricing pressure from us company spacex arianespace made a november announcement of pricing flexibility for the lighter satellites it carries to geostationary transfer orbit geostationary orbits aboard its ariane in early arianespace requested additional subsidies from european governments to face the competition from spacex and unfavorable changes in theuro dollar exchange rate reducing pricing allowed arianespace to sign four additional contracts in september for a lower slots on an ariane sylda dispenser for the satellites that otherwise could be flown on spacex launch vehicle overall arianespace signed contracts in until september with two additional being in a late stage of negotiations arianespace has a backlog of launches worth billion with satellites to be launched on ariane on soyuz athe guiana spacentre soyuz and on vega rocket vega claiming of the global satellite launch market by november spacex had already begun to take market share from arianespace and eutelsat ceo michel de rosen a major customer of arianespace said that each year that passes will see spacex advance gain market share and furthereduce its costs through economies of scale launch vehicles currently arianespace operates launch vehicles including two versions of ariane class wikitable sortable scope col name scope col payload to low earth orbit leo including sun synchronous orbit sso scope col payload to geostationary transfer orbit gto vega rocket vega soyuz athe guiana spacentre soyuz arianecarianes additionally arianespace offers optional back up launch service on h iia through launch services alliance ariane launch vehiclesince the first launch in there have been several versions of the ariane launch vehicle ariane first successfulaunch on december ariane first successfulaunch onovember the first launch on may failed ariane first successfulaunch on august ariane first successfulaunch on june ariane first successfulaunch on october the first launch on june failed new ariane vehicle is in development it would be payload wise in league of ariane and has tentatively its firstest flight in as of see also europa rocket newspace other launch service providers united launch alliance internationalaunch servicespacex antrix corporation category aerospace companies category arianespace category space tourism category companiestablished in","main_words":["euro","billion","million","assets_equity","owner_num","employees_parent","divisionsubsid","homepage","footnotes_intl","foundation","location_city","location_country","france","locations","caption","arianespace","multinational","company","founded","world","service","provider","production","operation","marketing","ariane","rocket_family","ariane","programme","company","offers","diverse","portfoliof","launch_vehicle","theavy","lift","launch_vehicle","heavy_lift","ariane","geostationary","transfer","orbithe","soyuz","medium","lift","launch_vehicle","medium","lift","alternative","solid","fuel","rocket","solid","fueled","vega","rocket","vega","lighter","payloads","arianespace","launched","satellites","launches","years","ariane","missions","handled","missions","vega","missions","first_commercial","flight","managed","new","entity","f","launched","may","arianespace","uses","guiana","spacenter","french","main","launch_site","alsoffer","commercial","soyuz","launches","baikonur","spaceport","kazakhstan","headquarters","france","russians","french","sign","space","contract","science","report","united","press","international","april","retrieved","september","near","contact","us","arianespace","retrieved","september","october","arianespace","soyuz","athe","guiana","spacentre","inaugural","flight","launched","first","soyuz","rocket","ever","outside","former","soviet_union","payload","two","galileo","satellite","navigation","galileo","navigation","satellites","company","infrastructure","arianespace","primary","shareholders","various","arianespace","currently","class","wikitable","sortable","scope","col","country","scope","col","data","number","total","share","scope","col","shareholder","scope","col","data","number","capital","rowspan","space","belgium","aero","christian","rowspan","holding","air","cie","deutsche","rowspan","gmbh","aerospace","defence","space","defence","aerospace","rowspan","airbus","defence","space","rowspan","space","aerospace","sweden","space","company","structure","schweiz","arianespace","restructured","withe","creation","company","develop","manufacture","ariane","launcher","airbus","along_withe","purchase","french","governments","form","partnership","company","holding","arianespace","shares","remaining","across","companies","ten","countries_including","corporate","management","class","wikitable","ceo","chairman","st","l","senior","vice_president","programs","louis","senior","vice_president","sales","customers","jacques","senior","vice_president","officer","thomas","vice_president","corporate","communication","class","wikitable","location","office","head","branch","french","guiana","patrick","usa","clayton","japan","singapore","richard","arianespace","inc","arianespace","singapore","ltd","asian","subsidiary","european","russian","soyuz","commercialization","competition","pricing","arianespace","held","percent","world","market","satellites","geostationary","transfer","orbit","force","represented","new","sector","spacex","forced","arianespace","cut","workforce","focus","cost","cutting","decrease","costs","remain","competitive","againsthe","new","low_cost","launch","sector","according","arianespace","managing_director","quite","clear","significant","challenge","coming","spacex","said","therefore","things","change","industry","restructured","consolidated","streamlined","midst","competition","economics","pricing","pressure","us","company","spacex","arianespace","made","november","announcement","pricing","flexibility","lighter","satellites","carries","geostationary","transfer","orbit","geostationary","orbits","aboard","ariane","early","arianespace","requested","additional","subsidies","european","governments","face","competition","spacex","changes","dollar","exchange","rate","reducing","pricing","allowed","arianespace","sign","four","additional","contracts","september","lower","ariane","dispenser","satellites","otherwise","could","flown","spacex","launch_vehicle","overall","arianespace","signed","contracts","september","two","additional","late","stage","negotiations","arianespace","launches","worth","billion","satellites","launched","ariane","soyuz","athe","guiana","spacentre","soyuz","vega","rocket","vega","claiming","global","satellite","launch","market","november","spacex","already","begun","take","market_share","arianespace","ceo","michel","de","rosen","major","customer","arianespace","said","year","passes","see","spacex","advance","gain","market_share","costs","economies","scale","launch_vehicles","currently","arianespace","operates","launch_vehicles","including","two","versions","ariane","class","wikitable","sortable","scope","col","name","scope","col","payload","low_earth_orbit","leo","including","sun","orbit","scope","col","payload","geostationary","transfer","orbit","vega","rocket","vega","soyuz","athe","guiana","spacentre","soyuz","additionally","arianespace","offers","optional","back","launch","service","h","launch_services","alliance","ariane","launch","first_launch","several","versions","ariane","launch_vehicle","ariane","first","successfulaunch","december","ariane","first","successfulaunch","onovember","first_launch","may","failed","ariane","first","successfulaunch","august","ariane","first","successfulaunch","june","ariane","first","successfulaunch","october","first_launch","june","failed","new","ariane","vehicle","development","would","payload","wise","league","ariane","firstest","flight","see_also","europa","rocket","newspace","launch","service_providers","united_launch_alliance","corporation","category","arianespace","category_space_tourism","category_companiestablished"],"clean_bigrams":[["euro","billion"],["billion","operating"],["operating","income"],["income","net"],["million","assets"],["assets","equity"],["equity","owner"],["owner","num"],["num","employees"],["employees","parent"],["parent","divisionsubsid"],["divisionsubsid","homepage"],["footnotes","intl"],["intl","foundation"],["foundation","location"],["location","city"],["location","country"],["country","france"],["france","locations"],["locations","caption"],["caption","arianespace"],["multinational","company"],["company","founded"],["first","commercialaunch"],["commercialaunch","service"],["service","provider"],["production","operation"],["ariane","rocket"],["rocket","family"],["family","ariane"],["ariane","programme"],["company","offers"],["diverse","portfoliof"],["portfoliof","launch"],["launch","vehicle"],["theavy","lift"],["lift","launch"],["launch","vehicle"],["vehicle","heavy"],["heavy","lift"],["lift","ariane"],["geostationary","transfer"],["transfer","orbithe"],["orbithe","soyuz"],["medium","lift"],["lift","launch"],["launch","vehicle"],["vehicle","medium"],["medium","lift"],["lift","alternative"],["solid","fuel"],["fuel","rocket"],["rocket","solid"],["solid","fueled"],["fueled","vega"],["vega","rocket"],["rocket","vega"],["lighter","payloads"],["payloads","arianespace"],["years","ariane"],["ariane","missions"],["first","flights"],["flights","handled"],["vega","missions"],["first","commercial"],["commercial","flight"],["flight","managed"],["new","entity"],["f","launched"],["may","arianespace"],["arianespace","uses"],["guiana","spacenter"],["main","launch"],["launch","site"],["alsoffer","commercial"],["commercial","soyuz"],["soyuz","launches"],["baikonur","spaceport"],["france","russians"],["russians","french"],["french","sign"],["sign","space"],["space","contract"],["science","report"],["report","united"],["united","press"],["press","international"],["international","april"],["april","retrieved"],["september","near"],["contact","us"],["us","arianespace"],["arianespace","retrieved"],["october","arianespace"],["arianespace","soyuz"],["soyuz","athe"],["athe","guiana"],["guiana","spacentre"],["spacentre","inaugural"],["inaugural","flight"],["flight","launched"],["first","soyuz"],["soyuz","rocket"],["rocket","ever"],["outside","former"],["former","soviet"],["soviet","union"],["two","galileo"],["galileo","satellite"],["satellite","navigation"],["navigation","galileo"],["galileo","navigation"],["navigation","satellites"],["satellites","company"],["infrastructure","arianespace"],["arianespace","primary"],["primary","shareholders"],["arianespace","currently"],["class","wikitable"],["wikitable","sortable"],["sortable","scope"],["scope","col"],["col","country"],["country","scope"],["scope","col"],["col","data"],["number","total"],["total","share"],["share","scope"],["scope","col"],["col","shareholder"],["shareholder","scope"],["scope","col"],["col","data"],["number","capital"],["capital","rowspan"],["space","belgium"],["holding","air"],["cie","deutsche"],["deutsche","rowspan"],["defence","aerospace"],["rowspan","airbus"],["airbus","defence"],["aerospace","sweden"],["space","company"],["company","structure"],["restructured","withe"],["withe","creation"],["ariane","launcher"],["launcher","airbus"],["along","withe"],["withe","purchase"],["french","governments"],["partnership","company"],["company","holding"],["arianespace","shares"],["across","companies"],["ten","countries"],["countries","including"],["corporate","management"],["management","class"],["class","wikitable"],["ceo","chairman"],["chairman","st"],["l","senior"],["senior","vice"],["vice","president"],["president","programs"],["programs","louis"],["senior","vice"],["vice","president"],["president","sales"],["sales","customers"],["customers","jacques"],["jacques","breton"],["breton","senior"],["senior","vice"],["vice","president"],["officer","thomas"],["vice","president"],["president","corporate"],["corporate","communication"],["class","wikitable"],["wikitable","location"],["location","office"],["office","head"],["branch","french"],["french","guiana"],["guiana","patrick"],["usa","clayton"],["singapore","richard"],["arianespace","inc"],["arianespace","singapore"],["ltd","asian"],["asian","subsidiary"],["european","russian"],["russian","soyuz"],["soyuz","commercialization"],["commercialization","competition"],["arianespace","held"],["world","market"],["geostationary","transfer"],["transfer","orbit"],["force","represented"],["new","sector"],["spacex","forced"],["forced","arianespace"],["cut","workforce"],["cost","cutting"],["decrease","costs"],["remain","competitive"],["competitive","againsthe"],["againsthe","new"],["new","low"],["low","cost"],["launch","sector"],["sector","according"],["arianespace","managing"],["managing","director"],["quite","clear"],["significant","challenge"],["challenge","coming"],["said","therefore"],["therefore","things"],["restructured","consolidated"],["competition","economics"],["economics","pricing"],["pricing","pressure"],["us","company"],["company","spacex"],["spacex","arianespace"],["arianespace","made"],["november","announcement"],["pricing","flexibility"],["lighter","satellites"],["geostationary","transfer"],["transfer","orbit"],["orbit","geostationary"],["geostationary","orbits"],["orbits","aboard"],["early","arianespace"],["arianespace","requested"],["requested","additional"],["additional","subsidies"],["european","governments"],["dollar","exchange"],["exchange","rate"],["rate","reducing"],["reducing","pricing"],["pricing","allowed"],["allowed","arianespace"],["sign","four"],["four","additional"],["additional","contracts"],["otherwise","could"],["spacex","launch"],["launch","vehicle"],["vehicle","overall"],["overall","arianespace"],["arianespace","signed"],["signed","contracts"],["two","additional"],["late","stage"],["negotiations","arianespace"],["launches","worth"],["worth","billion"],["soyuz","athe"],["athe","guiana"],["guiana","spacentre"],["spacentre","soyuz"],["vega","rocket"],["rocket","vega"],["vega","claiming"],["global","satellite"],["satellite","launch"],["launch","market"],["november","spacex"],["already","begun"],["take","market"],["market","share"],["ceo","michel"],["michel","de"],["de","rosen"],["major","customer"],["arianespace","said"],["see","spacex"],["spacex","advance"],["advance","gain"],["gain","market"],["market","share"],["scale","launch"],["launch","vehicles"],["vehicles","currently"],["currently","arianespace"],["arianespace","operates"],["operates","launch"],["launch","vehicles"],["vehicles","including"],["including","two"],["two","versions"],["ariane","class"],["class","wikitable"],["wikitable","sortable"],["sortable","scope"],["scope","col"],["col","name"],["name","scope"],["scope","col"],["col","payload"],["low","earth"],["earth","orbit"],["orbit","leo"],["leo","including"],["including","sun"],["scope","col"],["col","payload"],["geostationary","transfer"],["transfer","orbit"],["vega","rocket"],["rocket","vega"],["vega","soyuz"],["soyuz","athe"],["athe","guiana"],["guiana","spacentre"],["spacentre","soyuz"],["additionally","arianespace"],["arianespace","offers"],["offers","optional"],["optional","back"],["launch","service"],["launch","services"],["services","alliance"],["alliance","ariane"],["ariane","launch"],["first","launch"],["several","versions"],["ariane","launch"],["launch","vehicle"],["vehicle","ariane"],["ariane","first"],["first","successfulaunch"],["december","ariane"],["ariane","first"],["first","successfulaunch"],["successfulaunch","onovember"],["first","launch"],["may","failed"],["failed","ariane"],["ariane","first"],["first","successfulaunch"],["august","ariane"],["ariane","first"],["first","successfulaunch"],["june","ariane"],["ariane","first"],["first","successfulaunch"],["first","launch"],["june","failed"],["failed","new"],["new","ariane"],["ariane","vehicle"],["payload","wise"],["firstest","flight"],["see","also"],["also","europa"],["europa","rocket"],["rocket","newspace"],["launch","service"],["service","providers"],["providers","united"],["united","launch"],["launch","alliance"],["corporation","category"],["category","aerospace"],["aerospace","companies"],["companies","category"],["category","arianespace"],["arianespace","category"],["category","space"],["space","tourism"],["tourism","category"],["category","companiestablished"]],"all_collocations":["euro billion","billion operating","operating income","income net","million assets","assets equity","equity owner","owner num","num employees","employees parent","parent divisionsubsid","divisionsubsid homepage","footnotes intl","intl foundation","foundation location","location city","location country","country france","france locations","locations caption","caption arianespace","multinational company","company founded","first commercialaunch","commercialaunch service","service provider","production operation","ariane rocket","rocket family","family ariane","ariane programme","company offers","diverse portfoliof","portfoliof launch","launch vehicle","theavy lift","lift launch","launch vehicle","vehicle heavy","heavy lift","lift ariane","geostationary transfer","transfer orbithe","orbithe soyuz","medium lift","lift launch","launch vehicle","vehicle medium","medium lift","lift alternative","solid fuel","fuel rocket","rocket solid","solid fueled","fueled vega","vega rocket","rocket vega","lighter payloads","payloads arianespace","years ariane","ariane missions","first flights","flights handled","vega missions","first commercial","commercial flight","flight managed","new entity","f launched","may arianespace","arianespace uses","guiana spacenter","main launch","launch site","alsoffer commercial","commercial soyuz","soyuz launches","baikonur spaceport","france russians","russians french","french sign","sign space","space contract","science report","report united","united press","press international","international april","april retrieved","september near","contact us","us arianespace","arianespace retrieved","october arianespace","arianespace soyuz","soyuz athe","athe guiana","guiana spacentre","spacentre inaugural","inaugural flight","flight launched","first soyuz","soyuz rocket","rocket ever","outside former","former soviet","soviet union","two galileo","galileo satellite","satellite navigation","navigation galileo","galileo navigation","navigation satellites","satellites company","infrastructure arianespace","arianespace primary","primary shareholders","arianespace currently","sortable scope","col country","country scope","col data","number total","total share","share scope","col shareholder","shareholder scope","col data","number capital","capital rowspan","space belgium","holding air","cie deutsche","deutsche rowspan","defence aerospace","rowspan airbus","airbus defence","aerospace sweden","space company","company structure","restructured withe","withe creation","ariane launcher","launcher airbus","along withe","withe purchase","french governments","partnership company","company holding","arianespace shares","across companies","ten countries","countries including","corporate management","management class","ceo chairman","chairman st","l senior","senior vice","vice president","president programs","programs louis","senior vice","vice president","president sales","sales customers","customers jacques","jacques breton","breton senior","senior vice","vice president","officer thomas","vice president","president corporate","corporate communication","wikitable location","location office","office head","branch french","french guiana","guiana patrick","usa clayton","singapore richard","arianespace inc","arianespace singapore","ltd asian","asian subsidiary","european russian","russian soyuz","soyuz commercialization","commercialization competition","arianespace held","world market","geostationary transfer","transfer orbit","force represented","new sector","spacex forced","forced arianespace","cut workforce","cost cutting","decrease costs","remain competitive","competitive againsthe","againsthe new","new low","low cost","launch sector","sector according","arianespace managing","managing director","quite clear","significant challenge","challenge coming","said therefore","therefore things","restructured consolidated","competition economics","economics pricing","pricing pressure","us company","company spacex","spacex arianespace","arianespace made","november announcement","pricing flexibility","lighter satellites","geostationary transfer","transfer orbit","orbit geostationary","geostationary orbits","orbits aboard","early arianespace","arianespace requested","requested additional","additional subsidies","european governments","dollar exchange","exchange rate","rate reducing","reducing pricing","pricing allowed","allowed arianespace","sign four","four additional","additional contracts","otherwise could","spacex launch","launch vehicle","vehicle overall","overall arianespace","arianespace signed","signed contracts","two additional","late stage","negotiations arianespace","launches worth","worth billion","soyuz athe","athe guiana","guiana spacentre","spacentre soyuz","vega rocket","rocket vega","vega claiming","global satellite","satellite launch","launch market","november spacex","already begun","take market","market share","ceo michel","michel de","de rosen","major customer","arianespace said","see spacex","spacex advance","advance gain","gain market","market share","scale launch","launch vehicles","vehicles currently","currently arianespace","arianespace operates","operates launch","launch vehicles","vehicles including","including two","two versions","ariane class","sortable scope","col name","name scope","col payload","low earth","earth orbit","orbit leo","leo including","including sun","col payload","geostationary transfer","transfer orbit","vega rocket","rocket vega","vega soyuz","soyuz athe","athe guiana","guiana spacentre","spacentre soyuz","additionally arianespace","arianespace offers","offers optional","optional back","launch service","launch services","services alliance","alliance ariane","ariane launch","first launch","several versions","ariane launch","launch vehicle","vehicle ariane","ariane first","first successfulaunch","december ariane","ariane first","first successfulaunch","successfulaunch onovember","first launch","may failed","failed ariane","ariane first","first successfulaunch","august ariane","ariane first","first successfulaunch","june ariane","ariane first","first successfulaunch","first launch","june failed","failed new","new ariane","ariane vehicle","payload wise","firstest flight","see also","also europa","europa rocket","rocket newspace","launch service","service providers","providers united","united launch","launch alliance","corporation category","category aerospace","aerospace companies","companies category","category arianespace","arianespace category","category space","space tourism","tourism category","category companiestablished"],"new_description":"euro billion operating_income_net million assets_equity owner_num employees_parent divisionsubsid homepage footnotes_intl foundation location_city location_country france locations caption arianespace multinational company founded world first_commercialaunch service provider production operation marketing ariane rocket_family ariane programme company offers diverse portfoliof launch_vehicle theavy lift launch_vehicle heavy_lift ariane geostationary transfer orbithe soyuz medium lift launch_vehicle medium lift alternative solid fuel rocket solid fueled vega rocket vega lighter payloads arianespace launched satellites launches years ariane missions first_flights handled missions vega missions first_commercial flight managed new entity f launched may arianespace uses guiana spacenter french main launch_site alsoffer commercial soyuz launches baikonur spaceport kazakhstan headquarters france russians french sign space contract science report united press international april retrieved september near contact us arianespace retrieved september october arianespace soyuz athe guiana spacentre inaugural flight launched first soyuz rocket ever outside former soviet_union payload two galileo satellite navigation galileo navigation satellites company infrastructure arianespace primary shareholders various arianespace currently class wikitable sortable scope col country scope col data number total share scope col shareholder scope col data number capital rowspan space belgium aero christian rowspan holding air cie deutsche rowspan gmbh aerospace defence space defence aerospace rowspan airbus defence space rowspan space aerospace sweden space company structure schweiz arianespace restructured withe creation company develop manufacture ariane launcher airbus along_withe purchase french governments form partnership company holding arianespace shares remaining across companies ten countries_including corporate management class wikitable ceo chairman st l senior vice_president programs louis senior vice_president sales customers jacques breton senior vice_president officer thomas vice_president corporate communication class wikitable location office head branch french guiana patrick usa clayton japan singapore richard arianespace inc arianespace singapore ltd asian subsidiary european russian soyuz commercialization competition pricing arianespace held percent world market satellites geostationary transfer orbit force represented new sector spacex forced arianespace cut workforce focus cost cutting decrease costs remain competitive againsthe new low_cost launch sector according arianespace managing_director quite clear significant challenge coming spacex said therefore things change industry restructured consolidated streamlined midst competition economics pricing pressure us company spacex arianespace made november announcement pricing flexibility lighter satellites carries geostationary transfer orbit geostationary orbits aboard ariane early arianespace requested additional subsidies european governments face competition spacex changes dollar exchange rate reducing pricing allowed arianespace sign four additional contracts september lower ariane dispenser satellites otherwise could flown spacex launch_vehicle overall arianespace signed contracts september two additional late stage negotiations arianespace launches worth billion satellites launched ariane soyuz athe guiana spacentre soyuz vega rocket vega claiming global satellite launch market november spacex already begun take market_share arianespace ceo michel de rosen major customer arianespace said year passes see spacex advance gain market_share costs economies scale launch_vehicles currently arianespace operates launch_vehicles including two versions ariane class wikitable sortable scope col name scope col payload low_earth_orbit leo including sun orbit scope col payload geostationary transfer orbit vega rocket vega soyuz athe guiana spacentre soyuz additionally arianespace offers optional back launch service h launch_services alliance ariane launch first_launch several versions ariane launch_vehicle ariane first successfulaunch december ariane first successfulaunch onovember first_launch may failed ariane first successfulaunch august ariane first successfulaunch june ariane first successfulaunch october first_launch june failed new ariane vehicle development would payload wise league ariane firstest flight see_also europa rocket newspace launch service_providers united_launch_alliance corporation category aerospace_companies_category arianespace category_space_tourism category_companiestablished"},{"title":"Arizona Highways","description":"issn arizona highways is a magazine that contains traveliterature travelogues and photography as an art form artistic photographs related to the state of arizona it is published monthly in phoenix arizona phoenix by a unit of the arizona department of transportation the magazine began in july by the arizona highway department now the arizona department of transportation as a page pamphlet designed to promote the development of good roads throughouthe state publication of the pamphlet ended on december after nine issues the publication was relaunched on april as a regular magazine in addition to thengineering articles cartoon s and travelogues were also included in thearly issues over the nextwo decades the magazine reduced and then stopped inclusion of the road engineering articles andedicated itself to the present format of travel tales history historical stories and humor abouthe state of arizonalways enhanced by the now legendary photography in photographer ansel adamstarted to contribute prints for the magazine photographs include arches north court mission san xavier del bac tucson arizonand saguaro cactusunrise arizona since this time the magazine has become known for its photography today arizona highways monthly circulation surpasses copies with readers in ustates and in two thirds of the world s countries although known primarily for its magazine arizona highways also publishes books calendars and other arizona related products arizona highways tv began production in arizona highways good for business externalinks arizona highways homepage arizona highways television show homepage category advertising free magazines category american monthly magazines category arizona culture category geographic magazines category government publications category local interest magazines category magazinestablished in category magazines published in arizona category media in phoenix arizona category tourismagazines","main_words":["issn","arizona","highways","magazine","contains","traveliterature","travelogues","photography","art","form","artistic","photographs","related","state","arizona","published","monthly","phoenix_arizona","phoenix","unit","arizona","department","transportation","magazine","began","july","arizona","highway","department","arizona","department","transportation","page","pamphlet","designed","promote","development","good","roads","throughouthe","state","publication","pamphlet","ended","december","nine","issues","publication","relaunched","april","regular","magazine","addition","articles","cartoon","travelogues","also_included","thearly","issues","decades","magazine","reduced","stopped","inclusion","road","engineering","articles","present","format","travel","tales","history","historical","stories","humor","abouthe","state","enhanced","legendary","photography","photographer","contribute","magazine","photographs","include","arches","north","court","mission_san","xavier","del","tucson","arizona","since","time","magazine","become","known","photography","today","arizona","highways","monthly","circulation","copies","readers","ustates","two_thirds","world","countries","although","known","primarily","magazine","arizona","highways","also","publishes","books","arizona","related","products","arizona","highways","began","production","arizona","highways","good","business","externalinks","arizona","highways","homepage","arizona","highways","television","show","homepage","category","advertising","category_american","monthly_magazines_category","arizona","culture_category","geographic","magazines_category","government","publications","category_local_interest_magazines","category_magazinestablished","category_magazines_published","arizona","category_media","phoenix_arizona","category_tourismagazines"],"clean_bigrams":[["issn","arizona"],["arizona","highways"],["contains","traveliterature"],["traveliterature","travelogues"],["art","form"],["form","artistic"],["artistic","photographs"],["photographs","related"],["published","monthly"],["phoenix","arizona"],["arizona","phoenix"],["arizona","department"],["magazine","began"],["arizona","highway"],["highway","department"],["arizona","department"],["page","pamphlet"],["pamphlet","designed"],["good","roads"],["roads","throughouthe"],["throughouthe","state"],["state","publication"],["pamphlet","ended"],["nine","issues"],["regular","magazine"],["articles","cartoon"],["also","included"],["thearly","issues"],["magazine","reduced"],["stopped","inclusion"],["road","engineering"],["engineering","articles"],["present","format"],["travel","tales"],["tales","history"],["history","historical"],["historical","stories"],["humor","abouthe"],["abouthe","state"],["legendary","photography"],["magazine","photographs"],["photographs","include"],["include","arches"],["arches","north"],["north","court"],["court","mission"],["mission","san"],["san","xavier"],["xavier","del"],["arizona","since"],["become","known"],["photography","today"],["today","arizona"],["arizona","highways"],["highways","monthly"],["monthly","circulation"],["two","thirds"],["countries","although"],["although","known"],["known","primarily"],["magazine","arizona"],["arizona","highways"],["highways","also"],["also","publishes"],["publishes","books"],["arizona","related"],["related","products"],["products","arizona"],["arizona","highways"],["highways","tv"],["tv","began"],["began","production"],["arizona","highways"],["highways","good"],["business","externalinks"],["externalinks","arizona"],["arizona","highways"],["highways","homepage"],["homepage","arizona"],["arizona","highways"],["highways","television"],["television","show"],["show","homepage"],["homepage","category"],["category","advertising"],["advertising","free"],["free","magazines"],["magazines","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","arizona"],["arizona","culture"],["culture","category"],["category","geographic"],["geographic","magazines"],["magazines","category"],["category","government"],["government","publications"],["publications","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["arizona","category"],["category","media"],["phoenix","arizona"],["arizona","category"],["category","tourismagazines"]],"all_collocations":["issn arizona","arizona highways","contains traveliterature","traveliterature travelogues","art form","form artistic","artistic photographs","photographs related","published monthly","phoenix arizona","arizona phoenix","arizona department","magazine began","arizona highway","highway department","arizona department","page pamphlet","pamphlet designed","good roads","roads throughouthe","throughouthe state","state publication","pamphlet ended","nine issues","regular magazine","articles cartoon","also included","thearly issues","magazine reduced","stopped inclusion","road engineering","engineering articles","present format","travel tales","tales history","history historical","historical stories","humor abouthe","abouthe state","legendary photography","magazine photographs","photographs include","include arches","arches north","north court","court mission","mission san","san xavier","xavier del","arizona since","become known","photography today","today arizona","arizona highways","highways monthly","monthly circulation","two thirds","countries although","although known","known primarily","magazine arizona","arizona highways","highways also","also publishes","publishes books","arizona related","related products","products arizona","arizona highways","highways tv","tv began","began production","arizona highways","highways good","business externalinks","externalinks arizona","arizona highways","highways homepage","homepage arizona","arizona highways","highways television","television show","show homepage","homepage category","category advertising","advertising free","free magazines","magazines category","category american","american monthly","monthly magazines","magazines category","category arizona","arizona culture","culture category","category geographic","geographic magazines","magazines category","category government","government publications","publications category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines published","arizona category","category media","phoenix arizona","arizona category","category tourismagazines"],"new_description":"issn arizona highways magazine contains traveliterature travelogues photography art form artistic photographs related state arizona published monthly phoenix_arizona phoenix unit arizona department transportation magazine began july arizona highway department arizona department transportation page pamphlet designed promote development good roads throughouthe state publication pamphlet ended december nine issues publication relaunched april regular magazine addition articles cartoon travelogues also_included thearly issues decades magazine reduced stopped inclusion road engineering articles present format travel tales history historical stories humor abouthe state enhanced legendary photography photographer contribute magazine photographs include arches north court mission_san xavier del tucson arizona since time magazine become known photography today arizona highways monthly circulation copies readers ustates two_thirds world countries although known primarily magazine arizona highways also publishes books arizona related products arizona highways tv began production arizona highways good business externalinks arizona highways homepage arizona highways television show homepage category advertising free_magazines category_american monthly_magazines_category arizona culture_category geographic magazines_category government publications category_local_interest_magazines category_magazinestablished category_magazines_published arizona category_media phoenix_arizona category_tourismagazines"},{"title":"Arizona Sports and Tourism Authority","description":"the arizona sports and tourism authority azsta is a corporate and political body having the rights powers and immunities of a municipal corporation it was created on april by arizona senate bill the mission of the azsta is to build and operate a university of phoenix stadiumultipurpose facility to provide funding for tourism promotion in maricopa county to improve cactus league cactus league official website spring training facilities and to build communityouth sports youth and amateur sports and recreational facilities the azsta board of directors consists of nine citizens of maricopa co who volunteer their time and accept no compensation or per diem the board members are appointed to five year terms by the governor the president of the senate and the speaker of the house and areligible to serve two terms board appointees are appointed to achieve a balanced representation of the valley s regions as well as the tourism industry cactus league and youth sports the daily operation of the azsta is overseen by thexecutive staff members file azsta entrancejpg thumb px right arizona sports and tourism authority officentrance located at university of phoenix stadium on april arizona governor jane dee hull signed arizona senate bill which created the arizona tourism and sports authority initially known as the tsa later in april the arizona tourism and sports authority was renamed to the arizona sports and tourism authority in order to avoid confusion withe similarly abbreviated transportation security administration file aztsa logopng thumb px righthe original arizona tourism and sports authority logo the first order of business for the tsa was to bring a stadium financing package to voters in maricopa county arizona maricopa county which took the form of arizona initiative proposition november voters approved the ballot initiative with a to vote for more information and history on the azsta s involvement with university of phoenix stadium see university of phoenix stadium youth sports in may the tsapproved its first youth sports project in late september the tsapproved the avondale arizona city of avondale s youth sports complex proposal the tsa hosted a youth and amateur sports town hall in april during the town hall the tsa formed an advisory committee and announced plans to develop existing youth and amateur sports facilities the advisory committee held its first meeting in may in december the tsapproved an intergovernmental agreement withe city of avondale for a field complex to be completed by december in february the tsa hosted the first annual youth and amateur sportsummit in june the tsa broke ground for the avondale regional youth sports complex the youth and amateur sports committee provided the tsa with recommendations and in february the tsapproved million for projects and programspring training in february azsta made its first spring training decision when it voted to increase the funding commitment for the surprise arizona city of surprise spring training facility in december the city of surprise held the grand opening of billy parker field in february azsta sold million of cactus league bond finance bonds andirected million to a million upgrade project for phoenix municipal stadium the million was presented in a commemorative check on march during an oakland athletics vs arizona diamondbacks game the phoenix municipal stadium project was completed in february azsta has committed million in funding forenovations to cactus league facilities in scottsdale arizona scottsdale tempe arizona tempe phoenix arizona phoenix and surprise arizona surprise it is estimated that over years azsta will contribute million to the refurbishment of cactus league facilities in maricopa county arizona maricopa county azsta has funded million to the surprise stadium kansas city royals texas rangers baseball texas rangers million to phoenix municipal stadium oakland athletics million to tempe diablo stadium los angeles angels of anaheimillion to scottsdale stadium san francisco giants upcoming cactus league projects include a stadium in goodyearizona goodyear for the cleveland indians and a stadium in glendale arizona glendale for the los angeles dodgers and the chicago white sox newspecial stadium kickoff aired pm nbc kpnx phoenix august arizona senate bill notes category sports in maricopa county arizona category tourist attractions in maricopa county arizona category cactus league category tourism agencies category state agencies of arizona category government agenciestablished in","main_words":["arizona","sports_tourism_authority","azsta","corporate","political","body","rights","powers","municipal","corporation","created","april","arizona","senate","bill","mission","azsta","build","operate","university","phoenix","facility","provide","funding","tourism_promotion","maricopa","county","improve","cactus","league","cactus","league","official_website","spring","training","facilities","build","sports","youth","amateur","sports","recreational","facilities","azsta","board","directors","consists","nine","citizens","maricopa","volunteer","time","accept","compensation","per","board","members","appointed","five","year","terms","governor","president","senate","speaker","house","serve","two","terms","board","appointed","achieve","balanced","representation","valley","regions","well","tourism_industry","cactus","league","youth","sports","daily","operation","azsta","overseen","thexecutive","staff","members","file","azsta","entrancejpg","thumb","px","right","arizona","sports_tourism_authority","located","university","phoenix","stadium","april","arizona","governor","jane","dee","hull","signed","arizona","senate","bill","created","arizona","tourism","sports","authority","initially","known","tsa","later","april","arizona","tourism","sports","authority","renamed","arizona","sports_tourism_authority","order","avoid","confusion","withe","similarly","abbreviated","transportation","security","administration","file","logopng","thumb","px","righthe","original","arizona","tourism","sports","authority","logo","first","order","business","tsa","bring","stadium","financing","package","voters","maricopa","county","arizona","maricopa","county","took","form","arizona","initiative","proposition","november","voters","approved","ballot","initiative","vote","information","history","azsta","involvement","university","phoenix","stadium","see","university","phoenix","stadium","youth","sports","may","tsapproved","first","youth","sports","project","late","september","tsapproved","avondale","arizona","city","avondale","youth","sports","complex","proposal","tsa","hosted","youth","amateur","sports","town","hall","april","town","hall","tsa","formed","advisory","committee","announced_plans","develop","existing","youth","amateur","sports","facilities","advisory","committee","held","first","meeting","may","december","tsapproved","intergovernmental","agreement","withe","city","avondale","field","complex","completed","december","february","tsa","hosted","first","annual","youth","amateur","june","tsa","broke","ground","avondale","regional","youth","sports","complex","youth","amateur","sports","committee","provided","tsa","recommendations","february","tsapproved","million","projects","training","february","azsta","made","first","spring","training","decision","voted","increase","funding","commitment","surprise","arizona","city","surprise","spring","training","facility","december","city","surprise","held","grand","opening","billy","parker","field","february","azsta","sold","million","cactus","league","bond","finance","bonds","andirected","million","million","upgrade","project","phoenix","municipal","stadium","million","presented","check","march","oakland","arizona","game","phoenix","municipal","stadium","project","completed","february","azsta","committed","million","funding","cactus","league","facilities","scottsdale","arizona","scottsdale","tempe","arizona","tempe","phoenix_arizona","phoenix","surprise","arizona","surprise","estimated","years","azsta","contribute","million","refurbishment","cactus","league","facilities","maricopa","county","arizona","maricopa","county","azsta","funded","million","surprise","stadium","kansas_city","royals","texas","rangers","baseball","texas","rangers","million","phoenix","municipal","stadium","oakland","million","tempe","stadium","los_angeles","angels","scottsdale","stadium","san_francisco","giants","upcoming","cactus","league","projects","include","stadium","cleveland","indians","stadium","glendale","arizona","glendale","los_angeles","chicago","white","stadium","aired","nbc","phoenix","august","arizona","senate","bill","notes","category_sports","maricopa","county","arizona","category_tourist","attractions","maricopa","county","arizona","category","cactus","league","category_tourism","agencies_category","state","agencies","arizona","category_government","agenciestablished"],"clean_bigrams":[["arizona","sports"],["tourism","authority"],["authority","azsta"],["political","body"],["rights","powers"],["municipal","corporation"],["april","arizona"],["arizona","senate"],["senate","bill"],["provide","funding"],["tourism","promotion"],["maricopa","county"],["improve","cactus"],["cactus","league"],["league","cactus"],["cactus","league"],["league","official"],["official","website"],["website","spring"],["spring","training"],["training","facilities"],["sports","youth"],["amateur","sports"],["recreational","facilities"],["azsta","board"],["directors","consists"],["nine","citizens"],["board","members"],["five","year"],["year","terms"],["serve","two"],["two","terms"],["terms","board"],["balanced","representation"],["tourism","industry"],["industry","cactus"],["cactus","league"],["youth","sports"],["daily","operation"],["thexecutive","staff"],["staff","members"],["members","file"],["file","azsta"],["azsta","entrancejpg"],["entrancejpg","thumb"],["thumb","px"],["px","right"],["right","arizona"],["arizona","sports"],["tourism","authority"],["phoenix","stadium"],["april","arizona"],["arizona","governor"],["governor","jane"],["jane","dee"],["dee","hull"],["hull","signed"],["signed","arizona"],["arizona","senate"],["senate","bill"],["arizona","tourism"],["sports","authority"],["authority","initially"],["initially","known"],["tsa","later"],["april","arizona"],["arizona","tourism"],["sports","authority"],["arizona","sports"],["tourism","authority"],["avoid","confusion"],["confusion","withe"],["withe","similarly"],["similarly","abbreviated"],["abbreviated","transportation"],["transportation","security"],["security","administration"],["administration","file"],["logopng","thumb"],["thumb","px"],["px","righthe"],["righthe","original"],["original","arizona"],["arizona","tourism"],["sports","authority"],["authority","logo"],["first","order"],["stadium","financing"],["financing","package"],["maricopa","county"],["county","arizona"],["arizona","maricopa"],["maricopa","county"],["arizona","initiative"],["initiative","proposition"],["proposition","november"],["november","voters"],["voters","approved"],["ballot","initiative"],["phoenix","stadium"],["stadium","see"],["see","university"],["phoenix","stadium"],["stadium","youth"],["youth","sports"],["first","youth"],["youth","sports"],["sports","project"],["late","september"],["avondale","arizona"],["arizona","city"],["youth","sports"],["sports","complex"],["complex","proposal"],["tsa","hosted"],["amateur","sports"],["sports","town"],["town","hall"],["town","hall"],["tsa","formed"],["advisory","committee"],["announced","plans"],["develop","existing"],["existing","youth"],["amateur","sports"],["sports","facilities"],["advisory","committee"],["committee","held"],["first","meeting"],["intergovernmental","agreement"],["agreement","withe"],["withe","city"],["field","complex"],["tsa","hosted"],["first","annual"],["annual","youth"],["tsa","broke"],["broke","ground"],["avondale","regional"],["regional","youth"],["youth","sports"],["sports","complex"],["amateur","sports"],["sports","committee"],["committee","provided"],["tsapproved","million"],["february","azsta"],["azsta","made"],["first","spring"],["spring","training"],["training","decision"],["funding","commitment"],["surprise","arizona"],["arizona","city"],["surprise","spring"],["spring","training"],["training","facility"],["surprise","held"],["grand","opening"],["billy","parker"],["parker","field"],["february","azsta"],["azsta","sold"],["sold","million"],["cactus","league"],["league","bond"],["bond","finance"],["finance","bonds"],["bonds","andirected"],["andirected","million"],["million","upgrade"],["upgrade","project"],["phoenix","municipal"],["municipal","stadium"],["phoenix","municipal"],["municipal","stadium"],["stadium","project"],["february","azsta"],["committed","million"],["cactus","league"],["league","facilities"],["scottsdale","arizona"],["arizona","scottsdale"],["scottsdale","tempe"],["tempe","arizona"],["arizona","tempe"],["tempe","phoenix"],["phoenix","arizona"],["arizona","phoenix"],["surprise","arizona"],["arizona","surprise"],["years","azsta"],["contribute","million"],["cactus","league"],["league","facilities"],["maricopa","county"],["county","arizona"],["arizona","maricopa"],["maricopa","county"],["county","azsta"],["funded","million"],["surprise","stadium"],["stadium","kansas"],["kansas","city"],["city","royals"],["royals","texas"],["texas","rangers"],["rangers","baseball"],["baseball","texas"],["texas","rangers"],["rangers","million"],["phoenix","municipal"],["municipal","stadium"],["stadium","oakland"],["stadium","los"],["los","angeles"],["angeles","angels"],["scottsdale","stadium"],["stadium","san"],["san","francisco"],["francisco","giants"],["giants","upcoming"],["upcoming","cactus"],["cactus","league"],["league","projects"],["projects","include"],["cleveland","indians"],["glendale","arizona"],["arizona","glendale"],["los","angeles"],["chicago","white"],["phoenix","august"],["august","arizona"],["arizona","senate"],["senate","bill"],["bill","notes"],["notes","category"],["category","sports"],["maricopa","county"],["county","arizona"],["arizona","category"],["category","tourist"],["tourist","attractions"],["maricopa","county"],["county","arizona"],["arizona","category"],["category","cactus"],["cactus","league"],["league","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","state"],["state","agencies"],["arizona","category"],["category","government"],["government","agenciestablished"]],"all_collocations":["arizona sports","tourism authority","authority azsta","political body","rights powers","municipal corporation","april arizona","arizona senate","senate bill","provide funding","tourism promotion","maricopa county","improve cactus","cactus league","league cactus","cactus league","league official","official website","website spring","spring training","training facilities","sports youth","amateur sports","recreational facilities","azsta board","directors consists","nine citizens","board members","five year","year terms","serve two","two terms","terms board","balanced representation","tourism industry","industry cactus","cactus league","youth sports","daily operation","thexecutive staff","staff members","members file","file azsta","azsta entrancejpg","entrancejpg thumb","right arizona","arizona sports","tourism authority","phoenix stadium","april arizona","arizona governor","governor jane","jane dee","dee hull","hull signed","signed arizona","arizona senate","senate bill","arizona tourism","sports authority","authority initially","initially known","tsa later","april arizona","arizona tourism","sports authority","arizona sports","tourism authority","avoid confusion","confusion withe","withe similarly","similarly abbreviated","abbreviated transportation","transportation security","security administration","administration file","logopng thumb","px righthe","righthe original","original arizona","arizona tourism","sports authority","authority logo","first order","stadium financing","financing package","maricopa county","county arizona","arizona maricopa","maricopa county","arizona initiative","initiative proposition","proposition november","november voters","voters approved","ballot initiative","phoenix stadium","stadium see","see university","phoenix stadium","stadium youth","youth sports","first youth","youth sports","sports project","late september","avondale arizona","arizona city","youth sports","sports complex","complex proposal","tsa hosted","amateur sports","sports town","town hall","town hall","tsa formed","advisory committee","announced plans","develop existing","existing youth","amateur sports","sports facilities","advisory committee","committee held","first meeting","intergovernmental agreement","agreement withe","withe city","field complex","tsa hosted","first annual","annual youth","tsa broke","broke ground","avondale regional","regional youth","youth sports","sports complex","amateur sports","sports committee","committee provided","tsapproved million","february azsta","azsta made","first spring","spring training","training decision","funding commitment","surprise arizona","arizona city","surprise spring","spring training","training facility","surprise held","grand opening","billy parker","parker field","february azsta","azsta sold","sold million","cactus league","league bond","bond finance","finance bonds","bonds andirected","andirected million","million upgrade","upgrade project","phoenix municipal","municipal stadium","phoenix municipal","municipal stadium","stadium project","february azsta","committed million","cactus league","league facilities","scottsdale arizona","arizona scottsdale","scottsdale tempe","tempe arizona","arizona tempe","tempe phoenix","phoenix arizona","arizona phoenix","surprise arizona","arizona surprise","years azsta","contribute million","cactus league","league facilities","maricopa county","county arizona","arizona maricopa","maricopa county","county azsta","funded million","surprise stadium","stadium kansas","kansas city","city royals","royals texas","texas rangers","rangers baseball","baseball texas","texas rangers","rangers million","phoenix municipal","municipal stadium","stadium oakland","stadium los","los angeles","angeles angels","scottsdale stadium","stadium san","san francisco","francisco giants","giants upcoming","upcoming cactus","cactus league","league projects","projects include","cleveland indians","glendale arizona","arizona glendale","los angeles","chicago white","phoenix august","august arizona","arizona senate","senate bill","bill notes","notes category","category sports","maricopa county","county arizona","arizona category","category tourist","tourist attractions","maricopa county","county arizona","arizona category","category cactus","cactus league","league category","category tourism","tourism agencies","agencies category","category state","state agencies","arizona category","category government","government agenciestablished"],"new_description":"arizona sports_tourism_authority azsta corporate political body rights powers municipal corporation created april arizona senate bill mission azsta build operate university phoenix facility provide funding tourism_promotion maricopa county improve cactus league cactus league official_website spring training facilities build sports youth amateur sports recreational facilities azsta board directors consists nine citizens maricopa volunteer time accept compensation per board members appointed five year terms governor president senate speaker house serve two terms board appointed achieve balanced representation valley regions well tourism_industry cactus league youth sports daily operation azsta overseen thexecutive staff members file azsta entrancejpg thumb px right arizona sports_tourism_authority located university phoenix stadium april arizona governor jane dee hull signed arizona senate bill created arizona tourism sports authority initially known tsa later april arizona tourism sports authority renamed arizona sports_tourism_authority order avoid confusion withe similarly abbreviated transportation security administration file logopng thumb px righthe original arizona tourism sports authority logo first order business tsa bring stadium financing package voters maricopa county arizona maricopa county took form arizona initiative proposition november voters approved ballot initiative vote information history azsta involvement university phoenix stadium see university phoenix stadium youth sports may tsapproved first youth sports project late september tsapproved avondale arizona city avondale youth sports complex proposal tsa hosted youth amateur sports town hall april town hall tsa formed advisory committee announced_plans develop existing youth amateur sports facilities advisory committee held first meeting may december tsapproved intergovernmental agreement withe city avondale field complex completed december february tsa hosted first annual youth amateur june tsa broke ground avondale regional youth sports complex youth amateur sports committee provided tsa recommendations february tsapproved million projects training february azsta made first spring training decision voted increase funding commitment surprise arizona city surprise spring training facility december city surprise held grand opening billy parker field february azsta sold million cactus league bond finance bonds andirected million million upgrade project phoenix municipal stadium million presented check march oakland arizona game phoenix municipal stadium project completed february azsta committed million funding cactus league facilities scottsdale arizona scottsdale tempe arizona tempe phoenix_arizona phoenix surprise arizona surprise estimated years azsta contribute million refurbishment cactus league facilities maricopa county arizona maricopa county azsta funded million surprise stadium kansas_city royals texas rangers baseball texas rangers million phoenix municipal stadium oakland million tempe stadium los_angeles angels scottsdale stadium san_francisco giants upcoming cactus league projects include stadium cleveland indians stadium glendale arizona glendale los_angeles chicago white stadium aired nbc phoenix august arizona senate bill notes category_sports maricopa county arizona category_tourist attractions maricopa county arizona category cactus league category_tourism agencies_category state agencies arizona category_government agenciestablished"},{"title":"Asia (magazine)","description":"asia was a popular united states american magazine in the s and s that featured reporting about asiand its people including the far east southeast asia south asiand the middleast from to it was edited by richard j walsh with extensive contributions from his wife pearl s buck under their influence the journal published many prominent asian literary and political figures and american authorities in after manyears ofinancial trouble it was merged into a new journal united nations world origins andevelopment asia magazine was established by the american asiatic association in as journal of the american asiatic association an editorial in the journal explained the ignorance of our people in regard to the countries of the far east is unquestionably a serious obstacle to the legitimatextension of american influence journal of the american asiatic association asia march in willardickerman straight willard straight who had been involved in promoting american trade and investment in koreand china since the turn of the century and his wife dorothy payne whitney dorothy payne whitney straight boughthe magazine and renamed it asiand continued its publication as a popular journal of commerce and travel the straights also were co founders of the new republic magazine records of asia magazine rg ppapers of pearl s buck when willard straight died of influenza in his widow took over publication of the magazine she married leonard k elmhirst in theditors included louis d froelick and john foord and associateditors gertrudemerson sen gertrudemerson and marietta neff elsie weil who joined the staff about was the long time managing editor frank h mcintosh artist frank h mcintosh painted many of the covers ask art underichard walsh and pearl s buck in january although ownership remained unchanged richard j walshead of john day company john day publishers published his first issue as editor he announced thathe magazine would no longer be a tourist handbook andespite objections from some readers the magazine washifted from advertising luxury goods travel and promotion of american commerce in the oriento discussion of international affairs and current asian culture and literature in the first editorial walsh promised readers a wide range of topics and views the magazine s political stance changed as well walsh wrote that it would look upon communism as objectively as upon art and bring to religious concepts as open a mind as we bring to economic problems walsh soon brought his newife pearl s buck into theditorial process in the following years asia underwent revolution and war walsh as publisher of john day and buck as america s most influential writer about asiattracted and recruited a new range of asiand american writers many of whom promoted anti colonial agenda such asupport for indian independence and anti racist program subscriptions rose as americans become more worried abouthe oncoming second sino japanese war writers included william ernest hocking the harvard liberal theologian hu shih leader of china s new culture movement owen lattimore themerging authority on central asia lin yutang jawaharlal nehru the indian independence leader and reportersuch as nathaniel peffer edgar snow nym wales and theodore h white who reported from the front line on china before world war ii buck wrote a regular book review column titled asia book shelf the magazine recruited corresponding editors to gather articles includingertrudemerson sen indiand harold john timperley hj timperley an australian journalist in china in walsh and buck boughthe magazine from thelmhirsts they changed the name to asiand the americas inovember and buck assumed theditorship she continued her attacks on imperialism particularly british and offered strong support for colonial independence movements withend of the war in however americans lost interest in asiand the magazine suffered a financial crisis buck resigned as editor in merged the magazine with free world and inter american to form a new journal united nations world references and furthereading chapter three the american asiatic association and the imperialist imaginary of the american pacific in externalinks newsstand asia magazine art deco magazine covers for asia magazine by frank mcintosh midori snyder in the labyrinth may category defunct magazines of the united states category magazinestablished in category magazines disestablished in category american monthly magazines category american business magazines category tourismagazines","main_words":["asia","popular","united_states","american","magazine","featured","reporting","asiand","people","including","far","east","southeast_asia","south","asiand","middleast","edited","richard","j","walsh","extensive","contributions","wife","pearl","buck","influence","journal","published","many","prominent","asian","literary","political","figures","american","authorities","manyears","ofinancial","trouble","merged","new","journal","united_nations","world","origins","andevelopment","asia","magazine","established","american","asiatic","association","journal","american","asiatic","association","editorial","journal","explained","ignorance","people","regard","countries","far","east","serious","obstacle","american","influence","journal","american","asiatic","association","asia","march","straight","willard","straight","involved","promoting","american","trade","investment","koreand","china","since","turn","century","wife","dorothy","payne","whitney","dorothy","payne","whitney","straight","boughthe","magazine","renamed","asiand","continued","publication","popular","journal","commerce","travel","new","republic","magazine","records","asia","magazine","pearl","buck","willard","straight","died","widow","took","publication","magazine","married","leonard","k","included","louis","john","elsie","joined","staff","long_time","managing_editor","frank","h","mcintosh","artist","frank","h","mcintosh","painted","many","covers","ask","art","walsh","pearl","buck","january","although","ownership","remained","unchanged","richard","j","john","day","company","john","day","publishers","published","first_issue","editor","announced_thathe","magazine","would","longer","tourist","handbook","objections","readers","magazine","advertising","luxury","goods","travel","promotion","american","commerce","discussion","international","affairs","current","asian","culture","literature","first","editorial","walsh","promised","readers","wide_range","topics","views","magazine","political","stance","changed","well","walsh","wrote","would","look","upon","upon","art","bring","religious","concepts","open","mind","bring","economic","problems","walsh","soon","brought","pearl","buck","theditorial","process","following_years","asia","underwent","revolution","war","walsh","publisher","john","day","buck","america","influential","writer","recruited","new","range","asiand","american","writers","many","promoted","anti","colonial","agenda","indian","independence","anti","racist","program","subscriptions","rose","americans","become","worried","abouthe","second","japanese","war","writers","included","william","ernest","hocking","harvard","liberal","leader","china","new","culture","movement","themerging","authority","central","asia","jawaharlal","nehru","indian","independence","leader","nathaniel","edgar","snow","wales","theodore","h","white","reported","front","line","china","world_war","ii","buck","wrote","regular","book","review","column","titled","asia","book","shelf","magazine","recruited","corresponding","editors","gather","articles","indiand","harold","john","australian","journalist","china","walsh","buck","boughthe","magazine","changed","name","asiand","americas","inovember","buck","assumed","continued","attacks","imperialism","particularly","british","offered","strong","support","colonial","independence","movements","withend","war","however","americans","lost","interest","asiand","magazine","suffered","financial","crisis","buck","resigned","editor","merged","magazine","free","world","inter","american","form","new","journal","united_nations","world","references_furthereading","chapter","three","american","asiatic","association","imaginary","american","pacific","externalinks","asia","magazine","art_deco","magazine","covers","asia","magazine","frank","mcintosh","may","category_defunct","magazines","united_states","category_magazinestablished","category_magazines","disestablished","category_american","monthly_magazines_category","american","business","magazines_category","tourismagazines"],"clean_bigrams":[["popular","united"],["united","states"],["states","american"],["american","magazine"],["featured","reporting"],["people","including"],["far","east"],["east","southeast"],["southeast","asia"],["asia","south"],["south","asiand"],["richard","j"],["j","walsh"],["extensive","contributions"],["wife","pearl"],["influence","journal"],["journal","published"],["published","many"],["many","prominent"],["prominent","asian"],["asian","literary"],["political","figures"],["american","authorities"],["manyears","ofinancial"],["ofinancial","trouble"],["new","journal"],["journal","united"],["united","nations"],["nations","world"],["world","origins"],["origins","andevelopment"],["andevelopment","asia"],["asia","magazine"],["american","asiatic"],["asiatic","association"],["american","asiatic"],["asiatic","association"],["journal","explained"],["far","east"],["serious","obstacle"],["american","influence"],["influence","journal"],["american","asiatic"],["asiatic","association"],["association","asia"],["asia","march"],["straight","willard"],["willard","straight"],["promoting","american"],["american","trade"],["koreand","china"],["china","since"],["wife","dorothy"],["dorothy","payne"],["payne","whitney"],["whitney","dorothy"],["dorothy","payne"],["payne","whitney"],["whitney","straight"],["straight","boughthe"],["boughthe","magazine"],["asiand","continued"],["popular","journal"],["new","republic"],["republic","magazine"],["magazine","records"],["asia","magazine"],["willard","straight"],["straight","died"],["widow","took"],["married","leonard"],["leonard","k"],["included","louis"],["long","time"],["time","managing"],["managing","editor"],["editor","frank"],["frank","h"],["h","mcintosh"],["mcintosh","artist"],["artist","frank"],["frank","h"],["h","mcintosh"],["mcintosh","painted"],["painted","many"],["covers","ask"],["ask","art"],["january","although"],["although","ownership"],["ownership","remained"],["remained","unchanged"],["unchanged","richard"],["richard","j"],["john","day"],["day","company"],["company","john"],["john","day"],["day","publishers"],["publishers","published"],["first","issue"],["announced","thathe"],["thathe","magazine"],["magazine","would"],["tourist","handbook"],["advertising","luxury"],["luxury","goods"],["goods","travel"],["american","commerce"],["international","affairs"],["current","asian"],["asian","culture"],["first","editorial"],["editorial","walsh"],["walsh","promised"],["promised","readers"],["wide","range"],["political","stance"],["stance","changed"],["well","walsh"],["walsh","wrote"],["would","look"],["look","upon"],["upon","art"],["religious","concepts"],["economic","problems"],["problems","walsh"],["walsh","soon"],["soon","brought"],["theditorial","process"],["following","years"],["years","asia"],["asia","underwent"],["underwent","revolution"],["war","walsh"],["john","day"],["influential","writer"],["new","range"],["asiand","american"],["american","writers"],["writers","many"],["promoted","anti"],["anti","colonial"],["colonial","agenda"],["indian","independence"],["anti","racist"],["racist","program"],["program","subscriptions"],["subscriptions","rose"],["americans","become"],["worried","abouthe"],["japanese","war"],["war","writers"],["writers","included"],["included","william"],["william","ernest"],["ernest","hocking"],["harvard","liberal"],["new","culture"],["culture","movement"],["themerging","authority"],["central","asia"],["jawaharlal","nehru"],["indian","independence"],["independence","leader"],["edgar","snow"],["theodore","h"],["h","white"],["front","line"],["world","war"],["war","ii"],["ii","buck"],["buck","wrote"],["regular","book"],["book","review"],["review","column"],["column","titled"],["titled","asia"],["asia","book"],["book","shelf"],["magazine","recruited"],["recruited","corresponding"],["corresponding","editors"],["gather","articles"],["indiand","harold"],["harold","john"],["australian","journalist"],["buck","boughthe"],["boughthe","magazine"],["americas","inovember"],["buck","assumed"],["imperialism","particularly"],["particularly","british"],["offered","strong"],["strong","support"],["colonial","independence"],["independence","movements"],["movements","withend"],["however","americans"],["americans","lost"],["lost","interest"],["magazine","suffered"],["financial","crisis"],["crisis","buck"],["buck","resigned"],["free","world"],["inter","american"],["new","journal"],["journal","united"],["united","nations"],["nations","world"],["world","references"],["furthereading","chapter"],["chapter","three"],["american","asiatic"],["asiatic","association"],["american","pacific"],["asia","magazine"],["magazine","art"],["art","deco"],["deco","magazine"],["magazine","covers"],["asia","magazine"],["frank","mcintosh"],["may","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","american"],["american","business"],["business","magazines"],["magazines","category"],["category","tourismagazines"]],"all_collocations":["popular united","united states","states american","american magazine","featured reporting","people including","far east","east southeast","southeast asia","asia south","south asiand","richard j","j walsh","extensive contributions","wife pearl","influence journal","journal published","published many","many prominent","prominent asian","asian literary","political figures","american authorities","manyears ofinancial","ofinancial trouble","new journal","journal united","united nations","nations world","world origins","origins andevelopment","andevelopment asia","asia magazine","american asiatic","asiatic association","american asiatic","asiatic association","journal explained","far east","serious obstacle","american influence","influence journal","american asiatic","asiatic association","association asia","asia march","straight willard","willard straight","promoting american","american trade","koreand china","china since","wife dorothy","dorothy payne","payne whitney","whitney dorothy","dorothy payne","payne whitney","whitney straight","straight boughthe","boughthe magazine","asiand continued","popular journal","new republic","republic magazine","magazine records","asia magazine","willard straight","straight died","widow took","married leonard","leonard k","included louis","long time","time managing","managing editor","editor frank","frank h","h mcintosh","mcintosh artist","artist frank","frank h","h mcintosh","mcintosh painted","painted many","covers ask","ask art","january although","although ownership","ownership remained","remained unchanged","unchanged richard","richard j","john day","day company","company john","john day","day publishers","publishers published","first issue","announced thathe","thathe magazine","magazine would","tourist handbook","advertising luxury","luxury goods","goods travel","american commerce","international affairs","current asian","asian culture","first editorial","editorial walsh","walsh promised","promised readers","wide range","political stance","stance changed","well walsh","walsh wrote","would look","look upon","upon art","religious concepts","economic problems","problems walsh","walsh soon","soon brought","theditorial process","following years","years asia","asia underwent","underwent revolution","war walsh","john day","influential writer","new range","asiand american","american writers","writers many","promoted anti","anti colonial","colonial agenda","indian independence","anti racist","racist program","program subscriptions","subscriptions rose","americans become","worried abouthe","japanese war","war writers","writers included","included william","william ernest","ernest hocking","harvard liberal","new culture","culture movement","themerging authority","central asia","jawaharlal nehru","indian independence","independence leader","edgar snow","theodore h","h white","front line","world war","war ii","ii buck","buck wrote","regular book","book review","review column","column titled","titled asia","asia book","book shelf","magazine recruited","recruited corresponding","corresponding editors","gather articles","indiand harold","harold john","australian journalist","buck boughthe","boughthe magazine","americas inovember","buck assumed","imperialism particularly","particularly british","offered strong","strong support","colonial independence","independence movements","movements withend","however americans","americans lost","lost interest","magazine suffered","financial crisis","crisis buck","buck resigned","free world","inter american","new journal","journal united","united nations","nations world","world references","furthereading chapter","chapter three","american asiatic","asiatic association","american pacific","asia magazine","magazine art","art deco","deco magazine","magazine covers","asia magazine","frank mcintosh","may category","category defunct","defunct magazines","united states","states category","category magazinestablished","category magazines","magazines disestablished","category american","american monthly","monthly magazines","magazines category","category american","american business","business magazines","magazines category","category tourismagazines"],"new_description":"asia popular united_states american magazine featured reporting asiand people including far east southeast_asia south asiand middleast edited richard j walsh extensive contributions wife pearl buck influence journal published many prominent asian literary political figures american authorities manyears ofinancial trouble merged new journal united_nations world origins andevelopment asia magazine established american asiatic association journal american asiatic association editorial journal explained ignorance people regard countries far east serious obstacle american influence journal american asiatic association asia march straight willard straight involved promoting american trade investment koreand china since turn century wife dorothy payne whitney dorothy payne whitney straight boughthe magazine renamed asiand continued publication popular journal commerce travel also_founders new republic magazine records asia magazine pearl buck willard straight died widow took publication magazine married leonard k included louis john elsie joined staff long_time managing_editor frank h mcintosh artist frank h mcintosh painted many covers ask art walsh pearl buck january although ownership remained unchanged richard j john day company john day publishers published first_issue editor announced_thathe magazine would longer tourist handbook objections readers magazine advertising luxury goods travel promotion american commerce discussion international affairs current asian culture literature first editorial walsh promised readers wide_range topics views magazine political stance changed well walsh wrote would look upon upon art bring religious concepts open mind bring economic problems walsh soon brought pearl buck theditorial process following_years asia underwent revolution war walsh publisher john day buck america influential writer recruited new range asiand american writers many promoted anti colonial agenda indian independence anti racist program subscriptions rose americans become worried abouthe second japanese war writers included william ernest hocking harvard liberal leader china new culture movement themerging authority central asia jawaharlal nehru indian independence leader nathaniel edgar snow wales theodore h white reported front line china world_war ii buck wrote regular book review column titled asia book shelf magazine recruited corresponding editors gather articles indiand harold john australian journalist china walsh buck boughthe magazine changed name asiand americas inovember buck assumed continued attacks imperialism particularly british offered strong support colonial independence movements withend war however americans lost interest asiand magazine suffered financial crisis buck resigned editor merged magazine free world inter american form new journal united_nations world references_furthereading chapter three american asiatic association imaginary american pacific externalinks asia magazine art_deco magazine covers asia magazine frank mcintosh may category_defunct magazines united_states category_magazinestablished category_magazines disestablished category_american monthly_magazines_category american business magazines_category tourismagazines"},{"title":"Asia Overland","description":"asia overland by mark elliott british author mark elliott and wil klass was an idiosyncratic book of the s which developed a minor cult following amongst backpackers in asiand the former soviet union although it has been out of print since the book remains a talking point amongst older travellers its unique feature was that practical information was displayed in a set of schematic treasure maps amazoncasia overland books mark elliott wil klass rather than in run on text a style latereplicated in certain other books by trailblazer travel trailblazer amazoncom trailblazer south east asia the graphic guide books mark elliott amazoncouk reviews for south east asia trailblazer books mark elliott between maps the book s writing offered a way to inspire questions and investigation more than providing answers in the style of more classic lonely planet style guides the guide gained a certainotoriety by explaining tricks for crossing ex soviet bordersemi legally foreaching iraqi kurdistan when that area wastillittle known to exist and for getting into north korea without a visa today these tips appear extremely foolhardy but athe time the book was written largely pre internethey worked and caused much excitement amongstravellers of thera despite considerable interest from the public there has beeno follow up edition and atimesecond hand copies of the original edition have been offered at relatively exorbitant prices on amazon and e bay the book containseveral hidden in jokes including towns on maps named after friends of the authors bakus danigrad etc asia overland was the first practical guide book in english to cover thex soviet caucasus region after the breakup of the ussr page count map count publisher trailblazer travel trailblazer publishing date category travel guide books category books about asia","main_words":["asia","overland","mark","elliott","british","author","mark","elliott","book","developed","minor","cult","following","amongst","backpackers","asiand","former","soviet_union","although","print","since","book","remains","talking","point","amongst","older","travellers","unique","feature","practical_information","displayed","set","treasure","maps","overland","books","mark","elliott","rather","run","text","style","certain","books","trailblazer","travel","trailblazer","amazoncom","trailblazer","south_east_asia","graphic","guide_books","mark","elliott","reviews","south_east_asia","trailblazer","books","mark","elliott","maps","book","writing","offered","way","inspire","questions","investigation","providing","answers","style","classic","lonely_planet","style","guides","guide","gained","explaining","tricks","crossing","soviet","legally","area","known","exist","getting","north_korea","without","visa","today","tips","appear","extremely","athe_time","book","written","largely","pre","worked","caused","much","thera","despite","considerable","interest","public","follow","edition","hand","copies","original","edition","offered","relatively","prices","amazon","e","bay","book","hidden","jokes","including","towns","maps","named","friends","authors","etc","asia","overland","first","practical","guide_book","english","cover","soviet","caucasus","region","ussr","page","count","map","count","publisher","trailblazer","travel","trailblazer","publishing","date","category_travel_guide_books","category_books","asia"],"clean_bigrams":[["asia","overland"],["mark","elliott"],["elliott","british"],["british","author"],["author","mark"],["mark","elliott"],["minor","cult"],["cult","following"],["following","amongst"],["amongst","backpackers"],["former","soviet"],["soviet","union"],["union","although"],["print","since"],["book","remains"],["talking","point"],["point","amongst"],["amongst","older"],["older","travellers"],["unique","feature"],["practical","information"],["treasure","maps"],["overland","books"],["books","mark"],["mark","elliott"],["trailblazer","travel"],["travel","trailblazer"],["trailblazer","amazoncom"],["amazoncom","trailblazer"],["trailblazer","south"],["south","east"],["east","asia"],["graphic","guide"],["guide","books"],["books","mark"],["mark","elliott"],["south","east"],["east","asia"],["asia","trailblazer"],["trailblazer","books"],["books","mark"],["mark","elliott"],["writing","offered"],["inspire","questions"],["providing","answers"],["classic","lonely"],["lonely","planet"],["planet","style"],["style","guides"],["guide","gained"],["explaining","tricks"],["north","korea"],["korea","without"],["visa","today"],["tips","appear"],["appear","extremely"],["athe","time"],["written","largely"],["largely","pre"],["caused","much"],["thera","despite"],["despite","considerable"],["considerable","interest"],["hand","copies"],["original","edition"],["e","bay"],["jokes","including"],["including","towns"],["maps","named"],["etc","asia"],["asia","overland"],["first","practical"],["practical","guide"],["guide","book"],["soviet","caucasus"],["caucasus","region"],["ussr","page"],["page","count"],["count","map"],["map","count"],["count","publisher"],["publisher","trailblazer"],["trailblazer","travel"],["travel","trailblazer"],["trailblazer","publishing"],["publishing","date"],["date","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","books"]],"all_collocations":["asia overland","mark elliott","elliott british","british author","author mark","mark elliott","minor cult","cult following","following amongst","amongst backpackers","former soviet","soviet union","union although","print since","book remains","talking point","point amongst","amongst older","older travellers","unique feature","practical information","treasure maps","overland books","books mark","mark elliott","trailblazer travel","travel trailblazer","trailblazer amazoncom","amazoncom trailblazer","trailblazer south","south east","east asia","graphic guide","guide books","books mark","mark elliott","south east","east asia","asia trailblazer","trailblazer books","books mark","mark elliott","writing offered","inspire questions","providing answers","classic lonely","lonely planet","planet style","style guides","guide gained","explaining tricks","north korea","korea without","visa today","tips appear","appear extremely","athe time","written largely","largely pre","caused much","thera despite","despite considerable","considerable interest","hand copies","original edition","e bay","jokes including","including towns","maps named","etc asia","asia overland","first practical","practical guide","guide book","soviet caucasus","caucasus region","ussr page","page count","count map","map count","count publisher","publisher trailblazer","trailblazer travel","travel trailblazer","trailblazer publishing","publishing date","date category","category travel","travel guide","guide books","books category","category books"],"new_description":"asia overland mark elliott british author mark elliott book developed minor cult following amongst backpackers asiand former soviet_union although print since book remains talking point amongst older travellers unique feature practical_information displayed set treasure maps overland books mark elliott rather run text style certain books trailblazer travel trailblazer amazoncom trailblazer south_east_asia graphic guide_books mark elliott reviews south_east_asia trailblazer books mark elliott maps book writing offered way inspire questions investigation providing answers style classic lonely_planet style guides guide gained explaining tricks crossing soviet legally area known exist getting north_korea without visa today tips appear extremely athe_time book written largely pre worked caused much thera despite considerable interest public follow edition hand copies original edition offered relatively prices amazon e bay book hidden jokes including towns maps named friends authors etc asia overland first practical guide_book english cover soviet caucasus region ussr page count map count publisher trailblazer travel trailblazer publishing date category_travel_guide_books category_books asia"},{"title":"Astronaute Club Europ\u00e9en","description":"the astronaute club europ en or ace is a french association created on december decree of the journal officiel de la r publique fran aise journal officiel n by jean pierre haigner cosmonaut laurent gathier director of space activities of dassault aviation and space pioneer and alain dupas physicist head of mission at cnes and whose headquarters are located in the rooms of the a roclub de france in paris its role is to promote space tourism and sub orbital spaceflight in europe and to pilothe development of private parabolic and suborbital flights and to make them available to the general public withis purpose the association is promoting the design andevelopment of the suborbital human spacecraft vehra sh since it has been created the ace has participated in the publication of space books the organisation of conferences many events conferences congresses etc the proposal of study topics to european universities the vsh projecthe vsh project is part of the aerospace student challenge which allows teams of european students through collaborative work to participate in the development of the project by addressing various aspects of the vsh system propulsion avionics flight simulation but also maintenance management legal aspects etc while complying to the overall technical framework of the vsh the name stands for vehra v hicule hypersonique r utilisable a roport suborbital habit or suborbital manned arhv airborne reusable hypersonic vehicle and the vehicle will be launched from a commercial aircraft which will reach mach and an altitude of km the limits of space this vsh will be developed in close association with aeronautical and space companies dassault aviation safran thales group thales externalinks url shows now unrelated content march the web site of the aerospace student challenge biography of jean pierre haigner on the cnes web site presentation of the vehra vsh project acrobat reader format videof an initial design of vehra by dassault model of vehra by serge gracieux category private spaceflight companies category commercial spaceflight category space tourism","main_words":["club","europ","ace","french","association","created","december","decree","journal","officiel","de_la","r","fran","aise","journal","officiel","n","jean","pierre","director","space","activities","dassault","aviation","space","pioneer","alain","physicist","head","mission","whose","headquarters","located","rooms","de_france","paris","role","promote","space_tourism","sub_orbital_spaceflight","europe","pilothe","development","private","parabolic","suborbital","flights","make","available","general_public","withis","purpose","association","promoting","design","andevelopment","suborbital","human","spacecraft","vehra","since","created","ace","participated","publication","space","books","organisation","conferences","many","events","conferences","etc","proposal","study","topics","european","universities","vsh","projecthe","vsh","project","part","aerospace","student","challenge","allows","teams","european","students","collaborative","work","participate","development","project","addressing","various","aspects","vsh","system","propulsion","avionics","flight","simulation","also","maintenance","management","legal","aspects","etc","overall","technical","framework","vsh","name","stands","vehra","v","r","suborbital","habit","suborbital","manned","airborne","reusable","vehicle","vehicle","launched","commercial","aircraft","reach","mach","altitude","limits","space","vsh","developed","close","association","aeronautical","space","companies","dassault","aviation","group","externalinks","url","shows","unrelated","content","march","web_site","aerospace","student","challenge","biography","jean","pierre","web_site","presentation","vehra","vsh","project","reader","format","videof","initial","design","vehra","dassault","model","vehra","category_private_spaceflight","category_space_tourism"],"clean_bigrams":[["club","europ"],["french","association"],["association","created"],["december","decree"],["journal","officiel"],["officiel","de"],["de","la"],["la","r"],["fran","aise"],["aise","journal"],["journal","officiel"],["officiel","n"],["jean","pierre"],["space","activities"],["dassault","aviation"],["space","pioneer"],["physicist","head"],["whose","headquarters"],["de","france"],["promote","space"],["space","tourism"],["sub","orbital"],["orbital","spaceflight"],["pilothe","development"],["private","parabolic"],["suborbital","flights"],["general","public"],["public","withis"],["withis","purpose"],["design","andevelopment"],["suborbital","human"],["human","spacecraft"],["spacecraft","vehra"],["space","books"],["conferences","many"],["many","events"],["events","conferences"],["study","topics"],["european","universities"],["vsh","projecthe"],["projecthe","vsh"],["vsh","project"],["aerospace","student"],["student","challenge"],["allows","teams"],["european","students"],["collaborative","work"],["addressing","various"],["various","aspects"],["vsh","system"],["system","propulsion"],["propulsion","avionics"],["avionics","flight"],["flight","simulation"],["also","maintenance"],["maintenance","management"],["management","legal"],["legal","aspects"],["aspects","etc"],["overall","technical"],["technical","framework"],["name","stands"],["vehra","v"],["suborbital","habit"],["suborbital","manned"],["airborne","reusable"],["commercial","aircraft"],["reach","mach"],["close","association"],["space","companies"],["companies","dassault"],["dassault","aviation"],["externalinks","url"],["url","shows"],["unrelated","content"],["content","march"],["web","site"],["aerospace","student"],["student","challenge"],["challenge","biography"],["jean","pierre"],["web","site"],["site","presentation"],["vehra","vsh"],["vsh","project"],["reader","format"],["format","videof"],["initial","design"],["dassault","model"],["category","private"],["private","spaceflight"],["spaceflight","companies"],["companies","category"],["category","commercial"],["commercial","spaceflight"],["spaceflight","category"],["category","space"],["space","tourism"]],"all_collocations":["club europ","french association","association created","december decree","journal officiel","officiel de","de la","la r","fran aise","aise journal","journal officiel","officiel n","jean pierre","space activities","dassault aviation","space pioneer","physicist head","whose headquarters","de france","promote space","space tourism","sub orbital","orbital spaceflight","pilothe development","private parabolic","suborbital flights","general public","public withis","withis purpose","design andevelopment","suborbital human","human spacecraft","spacecraft vehra","space books","conferences many","many events","events conferences","study topics","european universities","vsh projecthe","projecthe vsh","vsh project","aerospace student","student challenge","allows teams","european students","collaborative work","addressing various","various aspects","vsh system","system propulsion","propulsion avionics","avionics flight","flight simulation","also maintenance","maintenance management","management legal","legal aspects","aspects etc","overall technical","technical framework","name stands","vehra v","suborbital habit","suborbital manned","airborne reusable","commercial aircraft","reach mach","close association","space companies","companies dassault","dassault aviation","externalinks url","url shows","unrelated content","content march","web site","aerospace student","student challenge","challenge biography","jean pierre","web site","site presentation","vehra vsh","vsh project","reader format","format videof","initial design","dassault model","category private","private spaceflight","spaceflight companies","companies category","category commercial","commercial spaceflight","spaceflight category","category space","space tourism"],"new_description":"club europ ace french association created december decree journal officiel de_la r fran aise journal officiel n jean pierre director space activities dassault aviation space pioneer alain physicist head mission whose headquarters located rooms de_france paris role promote space_tourism sub_orbital_spaceflight europe pilothe development private parabolic suborbital flights make available general_public withis purpose association promoting design andevelopment suborbital human spacecraft vehra since created ace participated publication space books organisation conferences many events conferences etc proposal study topics european universities vsh projecthe vsh project part aerospace student challenge allows teams european students collaborative work participate development project addressing various aspects vsh system propulsion avionics flight simulation also maintenance management legal aspects etc overall technical framework vsh name stands vehra v r suborbital habit suborbital manned airborne reusable vehicle vehicle launched commercial aircraft reach mach altitude limits space vsh developed close association aeronautical space companies dassault aviation group externalinks url shows unrelated content march web_site aerospace student challenge biography jean pierre web_site presentation vehra vsh project reader format videof initial design vehra dassault model vehra category_private_spaceflight companies_category_commercial_spaceflight category_space_tourism"},{"title":"Aswaq","description":"aswaq is an arabic magazine in malaysia the magazine is one ofew arabic magazines in the country which is based in kuala lumpur it covers all types of malaysian businessectors and events but focuses on tourism education investment and trade related events places and organizations itargets arabic travellers to malaysia specially those coming from gulf countries the magazine is now one of the most active malaysian media partners to exhibitors and their logo can be seen in many international malaysian exhibitionsuch as intradexhibition inovember th wief world islamic economic forum file aswaq magazinesjpg thumb px september above and november under issues the magazine whichas been issued since january issued monthly it is distributed free of charge and is mainly found on malaysiairlines flights airline offices and airports in malaysiand gccountries previously the magazine was issued on the first day of the monthowever it is now issued on th of each monthe arabic english magazine is distributed in many arab countries these including saudi arabia kuwait qatar bahrain sultanate of oman qatar uae morocco libyand sudan externalinks official website category establishments in malaysia category arabic language magazines category english language magazines category magazinestablished in category malaysian magazines category media in dubai category monthly magazines category tourismagazines","main_words":["arabic","magazine","malaysia","magazine","one","arabic","magazines","country","based","kuala_lumpur","covers","types","malaysian","events","focuses","tourism","education","investment","trade","related","events","places","organizations","arabic","travellers","malaysia","specially","coming","gulf","countries","magazine","one","active","malaysian","media","partners","exhibitors","logo","seen","many","international","malaysian","inovember","th","world","islamic","economic","forum","file","thumb","px","september","november","issues","magazine","whichas","issued","since","january","issued","monthly","distributed","free","charge","mainly","found","flights","airline","offices","airports","malaysiand","previously","magazine","issued","first_day","issued","th","monthe","arabic","english","magazine","distributed","many","arab","countries_including","saudi_arabia","kuwait","qatar","bahrain","oman","qatar","uae","morocco","sudan","externalinks_official_website_category_establishments","malaysia_category","arabic","language_magazines","category_english_language_magazines","category_magazinestablished","category","malaysian","magazines_category","media","dubai","category","monthly_magazines_category","tourismagazines"],"clean_bigrams":[["arabic","magazine"],["arabic","magazines"],["kuala","lumpur"],["tourism","education"],["education","investment"],["trade","related"],["related","events"],["events","places"],["arabic","travellers"],["malaysia","specially"],["gulf","countries"],["active","malaysian"],["malaysian","media"],["media","partners"],["many","international"],["international","malaysian"],["inovember","th"],["world","islamic"],["islamic","economic"],["economic","forum"],["forum","file"],["thumb","px"],["px","september"],["magazine","whichas"],["issued","since"],["since","january"],["january","issued"],["issued","monthly"],["distributed","free"],["mainly","found"],["flights","airline"],["airline","offices"],["first","day"],["monthe","arabic"],["arabic","english"],["english","magazine"],["many","arab"],["arab","countries"],["including","saudi"],["saudi","arabia"],["arabia","kuwait"],["kuwait","qatar"],["qatar","bahrain"],["oman","qatar"],["qatar","uae"],["uae","morocco"],["sudan","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["malaysia","category"],["category","arabic"],["arabic","language"],["language","magazines"],["magazines","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","magazinestablished"],["category","malaysian"],["malaysian","magazines"],["magazines","category"],["category","media"],["dubai","category"],["category","monthly"],["monthly","magazines"],["magazines","category"],["category","tourismagazines"]],"all_collocations":["arabic magazine","arabic magazines","kuala lumpur","tourism education","education investment","trade related","related events","events places","arabic travellers","malaysia specially","gulf countries","active malaysian","malaysian media","media partners","many international","international malaysian","inovember th","world islamic","islamic economic","economic forum","forum file","px september","magazine whichas","issued since","since january","january issued","issued monthly","distributed free","mainly found","flights airline","airline offices","first day","monthe arabic","arabic english","english magazine","many arab","arab countries","including saudi","saudi arabia","arabia kuwait","kuwait qatar","qatar bahrain","oman qatar","qatar uae","uae morocco","sudan externalinks","externalinks official","official website","website category","category establishments","malaysia category","category arabic","arabic language","language magazines","magazines category","category english","english language","language magazines","magazines category","category magazinestablished","category malaysian","malaysian magazines","magazines category","category media","dubai category","category monthly","monthly magazines","magazines category","category tourismagazines"],"new_description":"arabic magazine malaysia magazine one arabic magazines country based kuala_lumpur covers types malaysian events focuses tourism education investment trade related events places organizations arabic travellers malaysia specially coming gulf countries magazine one active malaysian media partners exhibitors logo seen many international malaysian inovember th world islamic economic forum file thumb px september november issues magazine whichas issued since january issued monthly distributed free charge mainly found flights airline offices airports malaysiand previously magazine issued first_day issued th monthe arabic english magazine distributed many arab countries_including saudi_arabia kuwait qatar bahrain oman qatar uae morocco sudan externalinks_official_website_category_establishments malaysia_category arabic language_magazines category_english_language_magazines category_magazinestablished category malaysian magazines_category media dubai category monthly_magazines_category tourismagazines"},{"title":"Atlas (magazine)","description":"atlas is a popular monthly turkey turkish magazine with accentuated photographic and other imagery content covering a range of subjects from geography and environmento history and culture history and profile atlas has been published since april the magazine is part of do an media group do an holding the publisher is do an burda rizzoli theadquarters is in istanbul externalinks atlas magazine web site category establishments in turkey category geographic magazines category magazinestablished in category media in istanbul category turkish magazines category turkish language magazines category turkish monthly magazines category tourismagazines","main_words":["atlas","popular","monthly","turkey","turkish","magazine","photographic","imagery","content","covering","range","subjects","geography","environmento","history","culture","history","profile","atlas","published","since","april","magazine","part","media_group","holding","publisher","theadquarters","istanbul","externalinks","atlas","magazine","web_site_category","establishments","turkey","category","geographic","magazines_category_magazinestablished","category_media","istanbul","category","turkish","magazines_category","turkish","language_magazines","category","turkish","monthly_magazines_category","tourismagazines"],"clean_bigrams":[["popular","monthly"],["monthly","turkey"],["turkey","turkish"],["turkish","magazine"],["imagery","content"],["content","covering"],["environmento","history"],["culture","history"],["profile","atlas"],["published","since"],["since","april"],["media","group"],["istanbul","externalinks"],["externalinks","atlas"],["atlas","magazine"],["magazine","web"],["web","site"],["site","category"],["category","establishments"],["turkey","category"],["category","geographic"],["geographic","magazines"],["magazines","category"],["category","magazinestablished"],["category","media"],["istanbul","category"],["category","turkish"],["turkish","magazines"],["magazines","category"],["category","turkish"],["turkish","language"],["language","magazines"],["magazines","category"],["category","turkish"],["turkish","monthly"],["monthly","magazines"],["magazines","category"],["category","tourismagazines"]],"all_collocations":["popular monthly","monthly turkey","turkey turkish","turkish magazine","imagery content","content covering","environmento history","culture history","profile atlas","published since","since april","media group","istanbul externalinks","externalinks atlas","atlas magazine","magazine web","web site","site category","category establishments","turkey category","category geographic","geographic magazines","magazines category","category magazinestablished","category media","istanbul category","category turkish","turkish magazines","magazines category","category turkish","turkish language","language magazines","magazines category","category turkish","turkish monthly","monthly magazines","magazines category","category tourismagazines"],"new_description":"atlas popular monthly turkey turkish magazine photographic imagery content covering range subjects geography environmento history culture history profile atlas published since april magazine part media_group holding publisher theadquarters istanbul externalinks atlas magazine web_site_category establishments turkey category geographic magazines_category_magazinestablished category_media istanbul category turkish magazines_category turkish language_magazines category turkish monthly_magazines_category tourismagazines"},{"title":"Atlas Obscura","description":"slogan curious and wondrous travel destinations commercial type feature news registration languagenglish num users content license programming language owner author editor launch date revenue alexa global ip issn oclcurrent status footnotes atlas obscura is an online magazine led by american journalist david plotz it was founded in by joshua foer andylan thuras it features pieces on a variety of topics including travel and exploration history science and some news in september the site launched a spin off book of the same name published by workman publishing company externalinks category american online magazines category travel websites category magazinestablished in category tourismagazines","main_words":["slogan","curious","travel_destinations","commercial","type","feature","news","registration","languagenglish","num","users","content","license","programming","language","owner","author","editor","launch","date","revenue","alexa","global","issn","status","footnotes","atlas","online","magazine","led","american","journalist","david","founded","joshua","features","pieces","variety","topics","including","travel","exploration","history","science","news","september","site","launched","spin","book","name","published","workman","publishing_company","externalinks_category_american","online_magazines_category","travel_websites","category_magazinestablished","category_tourismagazines"],"clean_bigrams":[["slogan","curious"],["travel","destinations"],["destinations","commercial"],["commercial","type"],["type","feature"],["feature","news"],["news","registration"],["registration","languagenglish"],["languagenglish","num"],["num","users"],["users","content"],["content","license"],["license","programming"],["programming","language"],["language","owner"],["owner","author"],["author","editor"],["editor","launch"],["launch","date"],["date","revenue"],["revenue","alexa"],["alexa","global"],["status","footnotes"],["footnotes","atlas"],["online","magazine"],["magazine","led"],["american","journalist"],["journalist","david"],["features","pieces"],["topics","including"],["including","travel"],["exploration","history"],["history","science"],["site","launched"],["name","published"],["workman","publishing"],["publishing","company"],["company","externalinks"],["externalinks","category"],["category","american"],["american","online"],["online","magazines"],["magazines","category"],["category","travel"],["travel","websites"],["websites","category"],["category","magazinestablished"],["category","tourismagazines"]],"all_collocations":["slogan curious","travel destinations","destinations commercial","commercial type","type feature","feature news","news registration","registration languagenglish","languagenglish num","num users","users content","content license","license programming","programming language","language owner","owner author","author editor","editor launch","launch date","date revenue","revenue alexa","alexa global","status footnotes","footnotes atlas","online magazine","magazine led","american journalist","journalist david","features pieces","topics including","including travel","exploration history","history science","site launched","name published","workman publishing","publishing company","company externalinks","externalinks category","category american","american online","online magazines","magazines category","category travel","travel websites","websites category","category magazinestablished","category tourismagazines"],"new_description":"slogan curious travel_destinations commercial type feature news registration languagenglish num users content license programming language owner author editor launch date revenue alexa global issn status footnotes atlas online magazine led american journalist david founded joshua features pieces variety topics including travel exploration history science news september site launched spin book name published workman publishing_company externalinks_category_american online_magazines_category travel_websites category_magazinestablished category_tourismagazines"},{"title":"Atmosphere (magazine)","description":"atmosphere is the biannual inflight magazine of air transat one of the airlines operating in canada history and profile atmosphere was founded in and the first issue was published in march the magazine is published in english and in french the publisher is business class media formerly it was published on a quarterly basis but now it is published biannually category establishments in canada category air transat category biannual magazines category canadian travel magazines category canadian quarterly magazines category french language magazines in canada category inflight magazines category magazinestablished in category tourismagazines","main_words":["atmosphere","biannual","inflight_magazine","air","one","airlines","operating","canada","history","profile","atmosphere","founded","first_issue","published","march","magazine_published","english","french","publisher","business","class","media","formerly","published","quarterly","basis","published","category_establishments","category","biannual","magazines_category","canadian","canadian","quarterly","magazines_category","canada_category","inflight_magazines_category_magazinestablished","category_tourismagazines"],"clean_bigrams":[["biannual","inflight"],["inflight","magazine"],["airlines","operating"],["canada","history"],["profile","atmosphere"],["first","issue"],["business","class"],["class","media"],["media","formerly"],["quarterly","basis"],["category","establishments"],["canada","category"],["category","air"],["category","biannual"],["biannual","magazines"],["magazines","category"],["category","canadian"],["canadian","travel"],["travel","magazines"],["magazines","category"],["category","canadian"],["canadian","quarterly"],["quarterly","magazines"],["magazines","category"],["category","french"],["french","language"],["language","magazines"],["canada","category"],["category","inflight"],["inflight","magazines"],["magazines","category"],["category","magazinestablished"],["category","tourismagazines"]],"all_collocations":["biannual inflight","inflight magazine","airlines operating","canada history","profile atmosphere","first issue","business class","class media","media formerly","quarterly basis","category establishments","canada category","category air","category biannual","biannual magazines","magazines category","category canadian","canadian travel","travel magazines","magazines category","category canadian","canadian quarterly","quarterly magazines","magazines category","category french","french language","language magazines","canada category","category inflight","inflight magazines","magazines category","category magazinestablished","category tourismagazines"],"new_description":"atmosphere biannual inflight_magazine air one airlines operating canada history profile atmosphere founded first_issue published march magazine_published english french publisher business class media formerly published quarterly basis published category_establishments canada_category_air category biannual magazines_category canadian travel_magazines_category canadian quarterly magazines_category french_language_magazines canada_category inflight_magazines_category_magazinestablished category_tourismagazines"},{"title":"Atomic tourism","description":"file trinity site tourists at ground zerojpg thumb rightourists at ground zero trinity site atomic tourism is a relatively new type of tourism in which visitors learn abouthe atomic age by traveling to significant sites in atomic history such as museums with atomic weapons vehicles that carried atomic weapons or sites where atomic weapons were detonated arizona republic associated press nuke site interested spurred by japan disaster leanne italie mar the center for land use interpretation has conducted tours of the nevada test site trinity site and other historical atomic age sites to explore the cultural significance of these cold war nuclear zones the book overlook exploring the internal fringes of america describes the purpose of this tourism as windows into the american psyche landmarks that manifesthe rich ambiguities of the nation s cultural history a bureau of atomic tourism was proposed by american photographerichard misrach and writer myriam weisang misrach in file tri cities visitor and convention bureau tour of the hanford site jpg thumb tri cities visitor and convention bureau tour of the hanford site file boarding the bus fro chernobyl jpg thumboarding the bus for chernobyl file nnsa nso jpg thumb nnsa nso atomic museums research and production los alamos historical museum los alamos new mexico items from the manhattan project bradbury science museum los alamos new mexico history of the manhattan project x graphite reactor oak ridge tennessee first nucleareactor to produce plutonium savannah river site south carolina production site of plutonium and tritium experimental breedereactor i arco idaho first nucleareactor to producelectrical power first breedereactor and first reactor to use plutonium as fuel hanford site washington state washington location of the b reactor which produced some of the plutonium for the trinity nuclear testrinity test and the fat man bomb george herbert jones laboratory chicago illinois where plutonium was first isolated and characterized american museum of science and energy oak ridge tennessee bomb casings national atomic testing museum paradise nevada test site strategic missile forces museum ukraine national museum of nuclear science history albuquerque delivery vehicles tinian airfield northern mariana islands launch site for the atomic bombings of hiroshimand nagasaki japan during world war ii titan missile museum sahuaritarizona public underground missile museum nike missile site sf marin county california fully restored nike missile complex ronald reagan minuteman missile state historic site cooperstownorth dakota last surviving complete facilities from usaf st missile wing nov sep namely oscar zero missile alert facility mi n of cooperstown and november launch facility missile silo mi e of cooperstownational museum of nuclear science history albuquerque new mexico missiles and rockets national museum of the united states air force dayton ohio the nagasaki bomber bockscar and missiles national air and space museum washington dc the hiroshima bomber enola gay white sands missile range new mexico air force space missile museum cape canaveral air force station floridair force armament museum eglin air force base florida minuteman missile national historic site wall south dakota launch control facility delta with its corresponding underground launch control center and launch facility missile silo delta south dakotair and space museum ellsworth air force base box elder south dakota minuteman missile transporter truck th missile wing training launch facility training missile silo strategic air command aerospace museum ashland nebraska museum focusing on aircraft and nuclear missiles of the united states air force the greenbrier bunker greenbrier county west virginia underground bunker for the united states congress hiroshima peace memorial park hiroshima contains the hiroshima peace memorial hiroshima peace memorial museum and related memorials nagasaki peace park and nagasaki atomic bomb museum nagasaki the daigo fukury maru ship a japanese fishing boathat was contaminated after the castle bravo detonation in it is now on display in tokyo athe tokyo metropolitan daigo fukury maru exhibition hall official site cfs carp also known as the diefenbunker a cold war nuclear museum in a former underground canadian military facility outside of ottawa chernobyl museum kiev hack greenuclear bunker cheshire countryside near the town onantwich uk explosion sites trinity site socorro county new mexico socorro county new mexico site of the first artificial nuclear explosionevada test site nye county nevada us nuclear test site pacific provingrounds us nuclear test site carsonational forest rio arriba county new mexico site of project gasbuggy carlsbad new mexico site of project gnome hiroshima first wartime use of an atomic bomb nagasaki last wartime use of an atomic bombritish nuclear tests at maralinga south australia site of british nuclear tests at maralinga operation buffaloperation buffalo and british nuclear tests at maralinga operation antler operation antler pokhran rajasthan site of the pokhran ii test atomic accidents the chernobyl disaster was the worst nuclear power plant accident in history tourists can access the chernobyl nuclear power plant exclusion zonexclusion zone surrounding the plant and in particular the abandoned city of prypiat city prypiat sight in chernobyl s dead zone tourists new york times bleak o tourism welcome to chernobylonely planetravel three mile island accidenthree mile island was the site of a well publicized accidenthe most significant in the history of american commercial nuclear power the three mile island visitor center in middletown pa educates the public through exhibitions and video displays windscale fire on october the graphite core of a british nucleareactor at windscale cumbria caught fireleasing substantial amounts of radioactive contamination into the surrounding area thevent known as the windscale fire was considered the world s worst reactor accident until the three mile island accident in both incidents were dwarfed by the magnitude of the chernobyl disaster in the visitor center was closed in and the public may no longer visit has been turned into a center for supplier conferences and business events file chornobyl dsc jpg thumb chornobyl dsc literary and cinematic works on atomic tourism the novel o zone novel o zone by paul theroux involves a group of wealthy new york tourists who enter and party in a post nuclear disaster zone in the ozarks references externalinks my radioactive vacation by phil stuart hanford site tours taylor s nuke site nuclear tourism adventures in atomic tourism de atomkeller museum atomkeller museum de haigerloch germany atomic tourism exploring the world s nuclear atomic sites category nuclear war and weapons in popular culture category types of tourism category atomic tourism","main_words":["file","trinity_site","tourists","ground","thumb","ground_zero","trinity_site","atomic_tourism","relatively","new","type","tourism","visitors","learn","abouthe","atomic","age","traveling","significant","sites","atomic","history","museums","atomic","weapons","vehicles","carried","atomic","weapons","sites","atomic","weapons","detonated","arizona","republic","associated","press","nuke","site","interested","japan","disaster","italie","mar","center","land","use","interpretation","conducted","tours","nevada_test_site","trinity_site","historical","atomic","age","sites","explore","cultural","significance","cold_war","nuclear","zones","book","overlook","exploring","internal","america","describes","purpose","tourism","windows","american","landmarks","rich","nation","cultural_history","bureau","atomic_tourism","proposed","american","writer","file","tri","cities","visitor","convention_bureau","tour","hanford_site","jpg","thumb","tri","cities","visitor","convention_bureau","tour","hanford_site","file","boarding","bus","chernobyl","jpg","bus","chernobyl","file","nnsa","nso","jpg","thumb","nnsa","nso","atomic","museums","research","production","los_alamos","historical","museum","los_alamos","new_mexico","items","manhattan_project","bradbury","science","museum","los_alamos","new_mexico","history","manhattan_project","x_graphite_reactor","oak_ridge","tennessee","first","nucleareactor","produce","plutonium","savannah_river_site","south_carolina","production","site","plutonium","tritium","experimental","idaho","first","nucleareactor","power","first","first","reactor","use","plutonium","fuel","hanford_site","washington_state","washington","location","b_reactor","produced","plutonium","trinity","nuclear_test","fat","man","bomb","george","herbert","jones","laboratory","chicago_illinois","plutonium","first","isolated","characterized","american","museum","science","energy","oak_ridge","tennessee","bomb","casings","national","atomic","testing","museum","paradise","nevada_test_site","strategic","missile","forces","museum","ukraine","national_museum","nuclear","science","history","albuquerque","delivery","vehicles","airfield","northern","islands","launch_site","atomic_bombings","hiroshimand_nagasaki","japan","world_war","ii","titan","missile","museum","public","underground","missile","museum","missile","site","marin","county_california","fully","restored","missile","complex","ronald","reagan","missile","state","historic","site","dakota","last","surviving","complete","facilities","usaf","st","missile","wing","nov","sep","namely","oscar","zero","missile","alert","facility","n","november","launch_facility","missile","silo","e","museum","nuclear","science","history","albuquerque","new_mexico","missiles","rockets","national_museum","united_states","air_force","dayton","ohio","nagasaki","bomber","missiles","national_air","space_museum","washington","hiroshima","bomber","gay","white","sands","missile","range","new_mexico","air_force","space","missile","museum","cape_canaveral","air_force","station","air_force","base","florida","missile","national_historic","site","wall","south_dakota","launch","control","facility","delta","corresponding","underground","launch","control_center","launch_facility","missile","silo","delta","south","space_museum","air_force","base","box","south_dakota","missile","transporter","truck","th","missile","wing","training","launch_facility","training","missile","silo","strategic","air","command","aerospace","museum","ashland","nebraska","museum","focusing","aircraft","nuclear","missiles","united_states","air_force","bunker","county","west_virginia","underground","bunker","united_states","congress","hiroshima_peace_memorial","park","hiroshima","contains","hiroshima_peace_memorial","hiroshima_peace_memorial","museum","related","memorials","nagasaki","peace_park","nagasaki","atomic_bomb","museum","nagasaki","ship","japanese","fishing","contaminated","castle","detonation","display","tokyo","athe","tokyo","metropolitan","exhibition","hall","official_site","also_known","cold_war","nuclear","museum","former","underground","canadian","military","facility","outside","ottawa","chernobyl","museum","kiev","bunker","cheshire","countryside","near","town","uk","explosion","sites","trinity_site","socorro","county_new","mexico","socorro","county_new","mexico","site","first","artificial","nuclear_test_site","county","nevada","us","nuclear_test_site","pacific","provingrounds","us","nuclear_test_site","forest","rio","county_new","mexico","site","project","carlsbad","new_mexico","site","project","hiroshima","first","wartime","use","atomic_bomb","nagasaki","last","wartime","use","atomic","nuclear_tests","maralinga","south_australia","site","british","nuclear_tests","maralinga","operation","buffalo","british","nuclear_tests","maralinga","operation","operation","site","ii","test","atomic","accidents","chernobyl","disaster","worst","nuclear_power","plant","accident","history","tourists","access","chernobyl","nuclear_power","plant","exclusion","zone","surrounding","plant","particular","abandoned","city","city","sight","chernobyl","dead","zone","tourists","new_york","times","tourism","welcome","three","mile","island","mile","island","site","well","publicized","significant","history","american","commercial","nuclear_power","three","mile","island","visitor_center","public","exhibitions","video","displays","windscale","fire","october","graphite","core","british","nucleareactor","windscale","cumbria","caught","substantial","amounts","radioactive","contamination","surrounding","area","thevent","known","windscale","fire","considered","world","worst","reactor","accident","three","mile","island","accident","incidents","magnitude","chernobyl","disaster","visitor_center","closed","public","may","longer","visit","turned","center","supplier","conferences","business","events","file","chornobyl","jpg","thumb","chornobyl","literary","cinematic","works","atomic_tourism","novel","zone","novel","zone","paul","theroux","involves","group","wealthy","new_york","tourists","enter","party","post","nuclear","disaster","zone","references_externalinks","radioactive","vacation","phil","stuart","hanford_site","tours","taylor","nuke","site","nuclear","tourism","adventures","atomic_tourism","de","museum","museum","de","germany","atomic_tourism","exploring","world","nuclear","atomic","sites","category_nuclear","war","weapons","tourism_category","atomic_tourism"],"clean_bigrams":[["file","trinity"],["trinity","site"],["site","tourists"],["ground","zero"],["zero","trinity"],["trinity","site"],["site","atomic"],["atomic","tourism"],["relatively","new"],["new","type"],["visitors","learn"],["learn","abouthe"],["abouthe","atomic"],["atomic","age"],["significant","sites"],["atomic","history"],["atomic","weapons"],["weapons","vehicles"],["carried","atomic"],["atomic","weapons"],["atomic","weapons"],["detonated","arizona"],["arizona","republic"],["republic","associated"],["associated","press"],["press","nuke"],["nuke","site"],["site","interested"],["japan","disaster"],["italie","mar"],["land","use"],["use","interpretation"],["conducted","tours"],["nevada","test"],["test","site"],["site","trinity"],["trinity","site"],["historical","atomic"],["atomic","age"],["age","sites"],["cultural","significance"],["cold","war"],["war","nuclear"],["nuclear","zones"],["book","overlook"],["overlook","exploring"],["america","describes"],["cultural","history"],["atomic","tourism"],["file","tri"],["tri","cities"],["cities","visitor"],["convention","bureau"],["bureau","tour"],["hanford","site"],["site","jpg"],["jpg","thumb"],["thumb","tri"],["tri","cities"],["cities","visitor"],["convention","bureau"],["bureau","tour"],["hanford","site"],["site","file"],["file","boarding"],["chernobyl","jpg"],["chernobyl","file"],["file","nnsa"],["nnsa","nso"],["nso","jpg"],["jpg","thumb"],["thumb","nnsa"],["nnsa","nso"],["nso","atomic"],["atomic","museums"],["museums","research"],["production","los"],["los","alamos"],["alamos","historical"],["historical","museum"],["museum","los"],["los","alamos"],["alamos","new"],["new","mexico"],["mexico","items"],["manhattan","project"],["project","bradbury"],["bradbury","science"],["science","museum"],["museum","los"],["los","alamos"],["alamos","new"],["new","mexico"],["mexico","history"],["manhattan","project"],["project","x"],["x","graphite"],["graphite","reactor"],["reactor","oak"],["oak","ridge"],["ridge","tennessee"],["tennessee","first"],["first","nucleareactor"],["produce","plutonium"],["plutonium","savannah"],["savannah","river"],["river","site"],["site","south"],["south","carolina"],["carolina","production"],["production","site"],["tritium","experimental"],["idaho","first"],["first","nucleareactor"],["power","first"],["first","reactor"],["use","plutonium"],["fuel","hanford"],["hanford","site"],["site","washington"],["washington","state"],["state","washington"],["washington","location"],["b","reactor"],["trinity","nuclear"],["nuclear","test"],["fat","man"],["man","bomb"],["bomb","george"],["george","herbert"],["herbert","jones"],["jones","laboratory"],["laboratory","chicago"],["chicago","illinois"],["first","isolated"],["characterized","american"],["american","museum"],["energy","oak"],["oak","ridge"],["ridge","tennessee"],["tennessee","bomb"],["bomb","casings"],["casings","national"],["national","atomic"],["atomic","testing"],["testing","museum"],["museum","paradise"],["paradise","nevada"],["nevada","test"],["test","site"],["site","strategic"],["strategic","missile"],["missile","forces"],["forces","museum"],["museum","ukraine"],["ukraine","national"],["national","museum"],["nuclear","science"],["science","history"],["history","albuquerque"],["albuquerque","delivery"],["delivery","vehicles"],["airfield","northern"],["islands","launch"],["launch","site"],["site","atomic"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","japan"],["world","war"],["war","ii"],["ii","titan"],["titan","missile"],["missile","museum"],["public","underground"],["underground","missile"],["missile","museum"],["missile","site"],["marin","county"],["county","california"],["california","fully"],["fully","restored"],["missile","complex"],["complex","ronald"],["ronald","reagan"],["missile","state"],["state","historic"],["historic","site"],["dakota","last"],["last","surviving"],["surviving","complete"],["complete","facilities"],["usaf","st"],["st","missile"],["missile","wing"],["wing","nov"],["nov","sep"],["sep","namely"],["namely","oscar"],["oscar","zero"],["zero","missile"],["missile","alert"],["alert","facility"],["november","launch"],["launch","facility"],["facility","missile"],["missile","silo"],["nuclear","science"],["science","history"],["history","albuquerque"],["albuquerque","new"],["new","mexico"],["mexico","missiles"],["rockets","national"],["national","museum"],["united","states"],["states","air"],["air","force"],["force","dayton"],["dayton","ohio"],["nagasaki","bomber"],["missiles","national"],["national","air"],["space","museum"],["museum","washington"],["hiroshima","bomber"],["gay","white"],["white","sands"],["sands","missile"],["missile","range"],["range","new"],["new","mexico"],["mexico","air"],["air","force"],["force","space"],["space","missile"],["missile","museum"],["museum","cape"],["cape","canaveral"],["canaveral","air"],["air","force"],["force","station"],["air","force"],["force","base"],["base","florida"],["missile","national"],["national","historic"],["historic","site"],["site","wall"],["wall","south"],["south","dakota"],["dakota","launch"],["launch","control"],["control","facility"],["facility","delta"],["corresponding","underground"],["underground","launch"],["launch","control"],["control","center"],["launch","facility"],["facility","missile"],["missile","silo"],["silo","delta"],["delta","south"],["space","museum"],["air","force"],["force","base"],["base","box"],["south","dakota"],["missile","transporter"],["transporter","truck"],["truck","th"],["th","missile"],["missile","wing"],["wing","training"],["training","launch"],["launch","facility"],["facility","training"],["training","missile"],["missile","silo"],["silo","strategic"],["strategic","air"],["air","command"],["command","aerospace"],["aerospace","museum"],["museum","ashland"],["ashland","nebraska"],["nebraska","museum"],["museum","focusing"],["nuclear","missiles"],["united","states"],["states","air"],["air","force"],["county","west"],["west","virginia"],["virginia","underground"],["underground","bunker"],["united","states"],["states","congress"],["congress","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["park","hiroshima"],["hiroshima","contains"],["hiroshima","peace"],["peace","memorial"],["memorial","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["related","memorials"],["memorials","nagasaki"],["nagasaki","peace"],["peace","park"],["nagasaki","atomic"],["atomic","bomb"],["bomb","museum"],["museum","nagasaki"],["japanese","fishing"],["tokyo","athe"],["athe","tokyo"],["tokyo","metropolitan"],["exhibition","hall"],["hall","official"],["official","site"],["also","known"],["cold","war"],["war","nuclear"],["nuclear","museum"],["former","underground"],["underground","canadian"],["canadian","military"],["military","facility"],["facility","outside"],["ottawa","chernobyl"],["chernobyl","museum"],["museum","kiev"],["bunker","cheshire"],["cheshire","countryside"],["countryside","near"],["uk","explosion"],["explosion","sites"],["sites","trinity"],["trinity","site"],["site","socorro"],["socorro","county"],["county","new"],["new","mexico"],["mexico","socorro"],["socorro","county"],["county","new"],["new","mexico"],["mexico","site"],["first","artificial"],["artificial","nuclear"],["nuclear","test"],["test","site"],["county","nevada"],["nevada","us"],["us","nuclear"],["nuclear","test"],["test","site"],["site","pacific"],["pacific","provingrounds"],["provingrounds","us"],["us","nuclear"],["nuclear","test"],["test","site"],["forest","rio"],["county","new"],["new","mexico"],["mexico","site"],["carlsbad","new"],["new","mexico"],["mexico","site"],["hiroshima","first"],["first","wartime"],["wartime","use"],["atomic","bomb"],["bomb","nagasaki"],["nagasaki","last"],["last","wartime"],["wartime","use"],["nuclear","tests"],["maralinga","south"],["south","australia"],["australia","site"],["british","nuclear"],["nuclear","tests"],["maralinga","operation"],["british","nuclear"],["nuclear","tests"],["maralinga","operation"],["ii","test"],["test","atomic"],["atomic","accidents"],["chernobyl","disaster"],["worst","nuclear"],["nuclear","power"],["power","plant"],["plant","accident"],["history","tourists"],["chernobyl","nuclear"],["nuclear","power"],["power","plant"],["plant","exclusion"],["zone","surrounding"],["abandoned","city"],["dead","zone"],["zone","tourists"],["tourists","new"],["new","york"],["york","times"],["tourism","welcome"],["three","mile"],["mile","island"],["mile","island"],["well","publicized"],["american","commercial"],["commercial","nuclear"],["nuclear","power"],["three","mile"],["mile","island"],["island","visitor"],["visitor","center"],["video","displays"],["displays","windscale"],["windscale","fire"],["graphite","core"],["british","nucleareactor"],["windscale","cumbria"],["cumbria","caught"],["substantial","amounts"],["radioactive","contamination"],["surrounding","area"],["area","thevent"],["thevent","known"],["windscale","fire"],["worst","reactor"],["reactor","accident"],["three","mile"],["mile","island"],["island","accident"],["chernobyl","disaster"],["visitor","center"],["public","may"],["longer","visit"],["supplier","conferences"],["business","events"],["events","file"],["file","chornobyl"],["jpg","thumb"],["thumb","chornobyl"],["cinematic","works"],["atomic","tourism"],["zone","novel"],["paul","theroux"],["theroux","involves"],["wealthy","new"],["new","york"],["york","tourists"],["post","nuclear"],["nuclear","disaster"],["disaster","zone"],["references","externalinks"],["radioactive","vacation"],["phil","stuart"],["stuart","hanford"],["hanford","site"],["site","tours"],["tours","taylor"],["nuke","site"],["site","nuclear"],["nuclear","tourism"],["tourism","adventures"],["atomic","tourism"],["tourism","de"],["museum","de"],["germany","atomic"],["atomic","tourism"],["tourism","exploring"],["nuclear","atomic"],["atomic","sites"],["sites","category"],["category","nuclear"],["nuclear","war"],["popular","culture"],["culture","category"],["category","types"],["tourism","category"],["category","atomic"],["atomic","tourism"]],"all_collocations":["file trinity","trinity site","site tourists","ground zero","zero trinity","trinity site","site atomic","atomic tourism","relatively new","new type","visitors learn","learn abouthe","abouthe atomic","atomic age","significant sites","atomic history","atomic weapons","weapons vehicles","carried atomic","atomic weapons","atomic weapons","detonated arizona","arizona republic","republic associated","associated press","press nuke","nuke site","site interested","japan disaster","italie mar","land use","use interpretation","conducted tours","nevada test","test site","site trinity","trinity site","historical atomic","atomic age","age sites","cultural significance","cold war","war nuclear","nuclear zones","book overlook","overlook exploring","america describes","cultural history","atomic tourism","file tri","tri cities","cities visitor","convention bureau","bureau tour","hanford site","site jpg","thumb tri","tri cities","cities visitor","convention bureau","bureau tour","hanford site","site file","file boarding","chernobyl jpg","chernobyl file","file nnsa","nnsa nso","nso jpg","thumb nnsa","nnsa nso","nso atomic","atomic museums","museums research","production los","los alamos","alamos historical","historical museum","museum los","los alamos","alamos new","new mexico","mexico items","manhattan project","project bradbury","bradbury science","science museum","museum los","los alamos","alamos new","new mexico","mexico history","manhattan project","project x","x graphite","graphite reactor","reactor oak","oak ridge","ridge tennessee","tennessee first","first nucleareactor","produce plutonium","plutonium savannah","savannah river","river site","site south","south carolina","carolina production","production site","tritium experimental","idaho first","first nucleareactor","power first","first reactor","use plutonium","fuel hanford","hanford site","site washington","washington state","state washington","washington location","b reactor","trinity nuclear","nuclear test","fat man","man bomb","bomb george","george herbert","herbert jones","jones laboratory","laboratory chicago","chicago illinois","first isolated","characterized american","american museum","energy oak","oak ridge","ridge tennessee","tennessee bomb","bomb casings","casings national","national atomic","atomic testing","testing museum","museum paradise","paradise nevada","nevada test","test site","site strategic","strategic missile","missile forces","forces museum","museum ukraine","ukraine national","national museum","nuclear science","science history","history albuquerque","albuquerque delivery","delivery vehicles","airfield northern","islands launch","launch site","site atomic","atomic bombings","hiroshimand nagasaki","nagasaki japan","world war","war ii","ii titan","titan missile","missile museum","public underground","underground missile","missile museum","missile site","marin county","county california","california fully","fully restored","missile complex","complex ronald","ronald reagan","missile state","state historic","historic site","dakota last","last surviving","surviving complete","complete facilities","usaf st","st missile","missile wing","wing nov","nov sep","sep namely","namely oscar","oscar zero","zero missile","missile alert","alert facility","november launch","launch facility","facility missile","missile silo","nuclear science","science history","history albuquerque","albuquerque new","new mexico","mexico missiles","rockets national","national museum","united states","states air","air force","force dayton","dayton ohio","nagasaki bomber","missiles national","national air","space museum","museum washington","hiroshima bomber","gay white","white sands","sands missile","missile range","range new","new mexico","mexico air","air force","force space","space missile","missile museum","museum cape","cape canaveral","canaveral air","air force","force station","air force","force base","base florida","missile national","national historic","historic site","site wall","wall south","south dakota","dakota launch","launch control","control facility","facility delta","corresponding underground","underground launch","launch control","control center","launch facility","facility missile","missile silo","silo delta","delta south","space museum","air force","force base","base box","south dakota","missile transporter","transporter truck","truck th","th missile","missile wing","wing training","training launch","launch facility","facility training","training missile","missile silo","silo strategic","strategic air","air command","command aerospace","aerospace museum","museum ashland","ashland nebraska","nebraska museum","museum focusing","nuclear missiles","united states","states air","air force","county west","west virginia","virginia underground","underground bunker","united states","states congress","congress hiroshima","hiroshima peace","peace memorial","memorial park","park hiroshima","hiroshima contains","hiroshima peace","peace memorial","memorial hiroshima","hiroshima peace","peace memorial","memorial museum","related memorials","memorials nagasaki","nagasaki peace","peace park","nagasaki atomic","atomic bomb","bomb museum","museum nagasaki","japanese fishing","tokyo athe","athe tokyo","tokyo metropolitan","exhibition hall","hall official","official site","also known","cold war","war nuclear","nuclear museum","former underground","underground canadian","canadian military","military facility","facility outside","ottawa chernobyl","chernobyl museum","museum kiev","bunker cheshire","cheshire countryside","countryside near","uk explosion","explosion sites","sites trinity","trinity site","site socorro","socorro county","county new","new mexico","mexico socorro","socorro county","county new","new mexico","mexico site","first artificial","artificial nuclear","nuclear test","test site","county nevada","nevada us","us nuclear","nuclear test","test site","site pacific","pacific provingrounds","provingrounds us","us nuclear","nuclear test","test site","forest rio","county new","new mexico","mexico site","carlsbad new","new mexico","mexico site","hiroshima first","first wartime","wartime use","atomic bomb","bomb nagasaki","nagasaki last","last wartime","wartime use","nuclear tests","maralinga south","south australia","australia site","british nuclear","nuclear tests","maralinga operation","british nuclear","nuclear tests","maralinga operation","ii test","test atomic","atomic accidents","chernobyl disaster","worst nuclear","nuclear power","power plant","plant accident","history tourists","chernobyl nuclear","nuclear power","power plant","plant exclusion","zone surrounding","abandoned city","dead zone","zone tourists","tourists new","new york","york times","tourism welcome","three mile","mile island","mile island","well publicized","american commercial","commercial nuclear","nuclear power","three mile","mile island","island visitor","visitor center","video displays","displays windscale","windscale fire","graphite core","british nucleareactor","windscale cumbria","cumbria caught","substantial amounts","radioactive contamination","surrounding area","area thevent","thevent known","windscale fire","worst reactor","reactor accident","three mile","mile island","island accident","chernobyl disaster","visitor center","public may","longer visit","supplier conferences","business events","events file","file chornobyl","thumb chornobyl","cinematic works","atomic tourism","zone novel","paul theroux","theroux involves","wealthy new","new york","york tourists","post nuclear","nuclear disaster","disaster zone","references externalinks","radioactive vacation","phil stuart","stuart hanford","hanford site","site tours","tours taylor","nuke site","site nuclear","nuclear tourism","tourism adventures","atomic tourism","tourism de","museum de","germany atomic","atomic tourism","tourism exploring","nuclear atomic","atomic sites","sites category","category nuclear","nuclear war","popular culture","culture category","category types","tourism category","category atomic","atomic tourism"],"new_description":"file trinity_site tourists ground thumb ground_zero trinity_site atomic_tourism relatively new type tourism visitors learn abouthe atomic age traveling significant sites atomic history museums atomic weapons vehicles carried atomic weapons sites atomic weapons detonated arizona republic associated press nuke site interested japan disaster italie mar center land use interpretation conducted tours nevada_test_site trinity_site historical atomic age sites explore cultural significance cold_war nuclear zones book overlook exploring internal america describes purpose tourism windows american landmarks rich nation cultural_history bureau atomic_tourism proposed american writer file tri cities visitor convention_bureau tour hanford_site jpg thumb tri cities visitor convention_bureau tour hanford_site file boarding bus chernobyl jpg bus chernobyl file nnsa nso jpg thumb nnsa nso atomic museums research production los_alamos historical museum los_alamos new_mexico items manhattan_project bradbury science museum los_alamos new_mexico history manhattan_project x_graphite_reactor oak_ridge tennessee first nucleareactor produce plutonium savannah_river_site south_carolina production site plutonium tritium experimental idaho first nucleareactor power first first reactor use plutonium fuel hanford_site washington_state washington location b_reactor produced plutonium trinity nuclear_test fat man bomb george herbert jones laboratory chicago_illinois plutonium first isolated characterized american museum science energy oak_ridge tennessee bomb casings national atomic testing museum paradise nevada_test_site strategic missile forces museum ukraine national_museum nuclear science history albuquerque delivery vehicles airfield northern islands launch_site atomic_bombings hiroshimand_nagasaki japan world_war ii titan missile museum public underground missile museum missile site marin county_california fully restored missile complex ronald reagan missile state historic site dakota last surviving complete facilities usaf st missile wing nov sep namely oscar zero missile alert facility n november launch_facility missile silo e museum nuclear science history albuquerque new_mexico missiles rockets national_museum united_states air_force dayton ohio nagasaki bomber missiles national_air space_museum washington hiroshima bomber gay white sands missile range new_mexico air_force space missile museum cape_canaveral air_force station force_museum air_force base florida missile national_historic site wall south_dakota launch control facility delta corresponding underground launch control_center launch_facility missile silo delta south space_museum air_force base box south_dakota missile transporter truck th missile wing training launch_facility training missile silo strategic air command aerospace museum ashland nebraska museum focusing aircraft nuclear missiles united_states air_force bunker county west_virginia underground bunker united_states congress hiroshima_peace_memorial park hiroshima contains hiroshima_peace_memorial hiroshima_peace_memorial museum related memorials nagasaki peace_park nagasaki atomic_bomb museum nagasaki ship japanese fishing contaminated castle detonation display tokyo athe tokyo metropolitan exhibition hall official_site also_known cold_war nuclear museum former underground canadian military facility outside ottawa chernobyl museum kiev bunker cheshire countryside near town uk explosion sites trinity_site socorro county_new mexico socorro county_new mexico site first artificial nuclear_test_site county nevada us nuclear_test_site pacific provingrounds us nuclear_test_site forest rio county_new mexico site project carlsbad new_mexico site project hiroshima first wartime use atomic_bomb nagasaki last wartime use atomic nuclear_tests maralinga south_australia site british nuclear_tests maralinga operation buffalo british nuclear_tests maralinga operation operation site ii test atomic accidents chernobyl disaster worst nuclear_power plant accident history tourists access chernobyl nuclear_power plant exclusion zone surrounding plant particular abandoned city city sight chernobyl dead zone tourists new_york times tourism welcome three mile island mile island site well publicized significant history american commercial nuclear_power three mile island visitor_center public exhibitions video displays windscale fire october graphite core british nucleareactor windscale cumbria caught substantial amounts radioactive contamination surrounding area thevent known windscale fire considered world worst reactor accident three mile island accident incidents magnitude chernobyl disaster visitor_center closed public may longer visit turned center supplier conferences business events file chornobyl jpg thumb chornobyl literary cinematic works atomic_tourism novel zone novel zone paul theroux involves group wealthy new_york tourists enter party post nuclear disaster zone references_externalinks radioactive vacation phil stuart hanford_site tours taylor nuke site nuclear tourism adventures atomic_tourism de museum museum de germany atomic_tourism exploring world nuclear atomic sites category_nuclear war weapons popular_culture_category_types tourism_category atomic_tourism"},{"title":"Atout France","description":"atout france the france tourism development agency formerly maison de la france the french national tourist office is the organisation responsible for promoting france as a tourism destination mission set up in and operating under the supervision of the minister of state responsible for trade artisan tradesmall and medium sized enterprises tourism and services the mission of maison de la france was to promote france as a tourist destination principally in other countries as of may odit france and maison de la france have merged and become a single structure atout france it fully integrates the tasks of the original structures offices atout france has operations on all continents with offices in countries covering the offices of atout francemploy people and aresponsible for promoting france as a tourist destination in the various markets grouped into major geographical areas of operation the basis of annual action plans they are involved in all areas of tourism promotion information to the public press relations commercial promotion etc priority markets atout france gives priority to investing in the major outbound tourismarkets which are the countries of theuropean unionorth americand japan pioneering role theconomic interest group eig is also involved in themerging markets where there istrongrowth in tourism such as russia brazil china south korea indiand mexico its responsibility is to play a pioneering role in these markets and to encourage investments the international advisory board the international advisory board waset up by maison de la france athe beginning of withe collaboration of air france and under the sponsorship of the ministry of tourism this authority brings together tourism professionals from all over the world recognised for their contribution to the development ofrance as a destination the board members both play an advisory role with maison de la france and act as ambassadors of the tourist image ofrance in their particular market along withe offices of theig campaign strategy the campaign strategy is bringing inew measuresuch as the creation of the qualit france logor affinity marketing and isetting up tools for evaluating markets and campaigns french know how the quality ofrench know how is emphasised by the creation and promotion of the qualit france logo implemented by the ministry of tourism in the french markets and abroad as well as by the creation of a strong and original slogan for french tourism partnerships will be strengthened by the setting up of a new policy based on contracts running over several years withe leading institutional and private organisations long haul markets theurope approach to long haul markets takes the form of joint promotional campaigns within theuropean commission tourism and or through bilateral agreements with national tourist boards externalinks category organizations based in paris category tourism in france category tourism agencies","main_words":["atout","france","france","tourism_development","agency","formerly","maison","de_la","france","french","national_tourist","office","organisation","responsible","promoting","france","tourism_destination","mission","set","operating","supervision","minister","state","responsible","trade","artisan","medium_sized","enterprises","tourism_services","mission","maison","de_la","france","promote","france","tourist_destination","principally","countries","may","france","maison","de_la","france","merged","become","single","structure","atout","france","fully","integrates","tasks","original","structures","offices","atout","france","operations","continents","offices","countries","covering","offices","atout","people","aresponsible","promoting","france","tourist_destination","various","markets","grouped","major","geographical","areas","operation","basis","annual","action","plans","involved","areas","tourism_promotion","information","public","press","relations","commercial","promotion","etc","priority","markets","atout","france","gives","priority","investing","major","outbound","tourismarkets","countries","theuropean","americand","japan","pioneering","role","theconomic","interest","group","also","involved","themerging","markets","tourism","russia","brazil","china","south_korea","indiand","mexico","responsibility","play","pioneering","role","markets","encourage","investments","international","advisory","board","international","advisory","board","waset","maison","de_la","france","athe_beginning","withe","collaboration","air","france","sponsorship","ministry","tourism_authority","brings","together","tourism","professionals","world","recognised","contribution","development","ofrance","destination","board","members","play","advisory","role","maison","de_la","france","act","tourist","image","ofrance","particular","market","along_withe","offices","campaign","strategy","campaign","strategy","bringing","inew","creation","france","affinity","marketing","tools","evaluating","markets","campaigns","french","know","quality","ofrench","know","creation","promotion","france","logo","implemented","ministry","tourism","french","markets","abroad","well","creation","strong","original","slogan","french","setting","new","policy","based","contracts","running","several_years","withe","leading","institutional","private","organisations","long_haul","markets","approach","long_haul","markets","takes","form","joint","promotional","campaigns","within","theuropean_commission","tourism","agreements","externalinks_category","organizations_based","paris","category_tourism","agencies"],"clean_bigrams":[["atout","france"],["france","tourism"],["tourism","development"],["development","agency"],["agency","formerly"],["formerly","maison"],["maison","de"],["de","la"],["la","france"],["french","national"],["national","tourist"],["tourist","office"],["organisation","responsible"],["promoting","france"],["france","tourism"],["tourism","destination"],["destination","mission"],["mission","set"],["state","responsible"],["trade","artisan"],["medium","sized"],["sized","enterprises"],["enterprises","tourism"],["maison","de"],["de","la"],["la","france"],["promote","france"],["tourist","destination"],["destination","principally"],["maison","de"],["de","la"],["la","france"],["single","structure"],["structure","atout"],["atout","france"],["fully","integrates"],["original","structures"],["structures","offices"],["offices","atout"],["atout","france"],["countries","covering"],["offices","atout"],["promoting","france"],["tourist","destination"],["various","markets"],["markets","grouped"],["major","geographical"],["geographical","areas"],["annual","action"],["action","plans"],["tourism","promotion"],["promotion","information"],["public","press"],["press","relations"],["relations","commercial"],["commercial","promotion"],["promotion","etc"],["etc","priority"],["priority","markets"],["markets","atout"],["atout","france"],["france","gives"],["gives","priority"],["major","outbound"],["outbound","tourismarkets"],["americand","japan"],["japan","pioneering"],["pioneering","role"],["role","theconomic"],["theconomic","interest"],["interest","group"],["also","involved"],["themerging","markets"],["russia","brazil"],["brazil","china"],["china","south"],["south","korea"],["korea","indiand"],["indiand","mexico"],["pioneering","role"],["encourage","investments"],["international","advisory"],["advisory","board"],["international","advisory"],["advisory","board"],["board","waset"],["maison","de"],["de","la"],["la","france"],["france","athe"],["athe","beginning"],["withe","collaboration"],["air","france"],["authority","brings"],["brings","together"],["together","tourism"],["tourism","professionals"],["world","recognised"],["development","ofrance"],["board","members"],["advisory","role"],["maison","de"],["de","la"],["la","france"],["tourist","image"],["image","ofrance"],["particular","market"],["market","along"],["along","withe"],["withe","offices"],["campaign","strategy"],["campaign","strategy"],["bringing","inew"],["affinity","marketing"],["evaluating","markets"],["campaigns","french"],["french","know"],["quality","ofrench"],["ofrench","know"],["france","logo"],["logo","implemented"],["french","markets"],["original","slogan"],["french","tourism"],["tourism","partnerships"],["new","policy"],["policy","based"],["contracts","running"],["several","years"],["years","withe"],["withe","leading"],["leading","institutional"],["private","organisations"],["organisations","long"],["long","haul"],["haul","markets"],["long","haul"],["haul","markets"],["markets","takes"],["joint","promotional"],["promotional","campaigns"],["campaigns","within"],["within","theuropean"],["theuropean","commission"],["commission","tourism"],["national","tourist"],["tourist","boards"],["boards","externalinks"],["externalinks","category"],["category","organizations"],["organizations","based"],["paris","category"],["category","tourism"],["france","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["atout france","france tourism","tourism development","development agency","agency formerly","formerly maison","maison de","de la","la france","french national","national tourist","tourist office","organisation responsible","promoting france","france tourism","tourism destination","destination mission","mission set","state responsible","trade artisan","medium sized","sized enterprises","enterprises tourism","maison de","de la","la france","promote france","tourist destination","destination principally","maison de","de la","la france","single structure","structure atout","atout france","fully integrates","original structures","structures offices","offices atout","atout france","countries covering","offices atout","promoting france","tourist destination","various markets","markets grouped","major geographical","geographical areas","annual action","action plans","tourism promotion","promotion information","public press","press relations","relations commercial","commercial promotion","promotion etc","etc priority","priority markets","markets atout","atout france","france gives","gives priority","major outbound","outbound tourismarkets","americand japan","japan pioneering","pioneering role","role theconomic","theconomic interest","interest group","also involved","themerging markets","russia brazil","brazil china","china south","south korea","korea indiand","indiand mexico","pioneering role","encourage investments","international advisory","advisory board","international advisory","advisory board","board waset","maison de","de la","la france","france athe","athe beginning","withe collaboration","air france","authority brings","brings together","together tourism","tourism professionals","world recognised","development ofrance","board members","advisory role","maison de","de la","la france","tourist image","image ofrance","particular market","market along","along withe","withe offices","campaign strategy","campaign strategy","bringing inew","affinity marketing","evaluating markets","campaigns french","french know","quality ofrench","ofrench know","france logo","logo implemented","french markets","original slogan","french tourism","tourism partnerships","new policy","policy based","contracts running","several years","years withe","withe leading","leading institutional","private organisations","organisations long","long haul","haul markets","long haul","haul markets","markets takes","joint promotional","promotional campaigns","campaigns within","within theuropean","theuropean commission","commission tourism","national tourist","tourist boards","boards externalinks","externalinks category","category organizations","organizations based","paris category","category tourism","france category","category tourism","tourism agencies"],"new_description":"atout france france tourism_development agency formerly maison de_la france french national_tourist office organisation responsible promoting france tourism_destination mission set operating supervision minister state responsible trade artisan medium_sized enterprises tourism_services mission maison de_la france promote france tourist_destination principally countries may france maison de_la france merged become single structure atout france fully integrates tasks original structures offices atout france operations continents offices countries covering offices atout people aresponsible promoting france tourist_destination various markets grouped major geographical areas operation basis annual action plans involved areas tourism_promotion information public press relations commercial promotion etc priority markets atout france gives priority investing major outbound tourismarkets countries theuropean americand japan pioneering role theconomic interest group also involved themerging markets tourism russia brazil china south_korea indiand mexico responsibility play pioneering role markets encourage investments international advisory board international advisory board waset maison de_la france athe_beginning withe collaboration air france sponsorship ministry tourism_authority brings together tourism professionals world recognised contribution development ofrance destination board members play advisory role maison de_la france act tourist image ofrance particular market along_withe offices campaign strategy campaign strategy bringing inew creation france affinity marketing tools evaluating markets campaigns french know quality ofrench know creation promotion france logo implemented ministry tourism french markets abroad well creation strong original slogan french tourism_partnerships setting new policy based contracts running several_years withe leading institutional private organisations long_haul markets approach long_haul markets takes form joint promotional campaigns within theuropean_commission tourism agreements national_tourist_boards externalinks_category organizations_based paris category_tourism france_category_tourism agencies"},{"title":"Attract China","description":"attract china llc is an american tourism company that helps us businesses promote their hotel s restaurant s retail store s attractions andeals to chinese tourists the fastest growing and highest spending tourism tourist segment in the us through web portal digital platforms and printed map guides attract chinalso markets to chinese college students who comprised the largest segment oforeign students attending the top uschools hosting international student s during the academic term academic year attract china is headquartered in boston massachusetts and operates a chinese language chinese language website in beijing china history attract china headquartered in boston mand with operations in beijing china was co founded by evan saunders and sam goodman in saunderserves as the attract china s ceo and goodman is president of the company operations attract china is focused on connecting american businesses including hotels restaurants retailers and attractions with independent chinese travelers the fastest growing and highest spending tourist segment in the us through digital platforms and guides in standard chinese mandarin attract chinalso markets to chinese college students who comprised the largest segment oforeign students attending the top uschools hosting international students during the academic year attract china initially operated in seven us markets including new york ny boston ma las vegas nv los angeles california los angeles cand san francisco california san francisco ca in the company expanded to seattle washington seattle wa chicago illinois chicago il and hawaii also during the company announced plans to add five more markets before thend of the year attract chinalsoperates a chinese language website in beijing china the company generates revenue through advertising advertisements placed in various marketing vehicles by client brand s clients attract china currently works with some clients inorth america including the ritz carlton hotel the ritz carlton mandarin oriental hotel group sonesta collection westin hotels westin hotels and resortstuart weitzman samsonite and premium outlets products xiao yao daonline portal xiao yao dao which translates to the gateway for getaway is a china based chinese language chinese language destination web portal operated by attract china the portal provides chinese tourists with travel information about hotels restaurants retailers attractions and special deals in the us chinese language maps attract china creates and provides maps in chinese language chinese for each american city in which it operates the passport sized foldout maps featurestaurants tours attractionshopservices and more along with a map of the city and its public transit system category american companiestablished in category retail companiestablished in category travel and holiday companies of the united states category companies based in boston category city guides","main_words":["attract","china","llc","american","tourism_company","helps","us","businesses","promote","hotel","restaurant","retail","store","attractions","chinese","tourists","fastest_growing","highest","spending","tourism","tourist","segment","us","web","portal","digital","platforms","printed","map","guides","attract","markets","chinese","college_students","comprised","largest","segment","oforeign","students","attending","top","hosting","international","student","academic","term","academic","year","attract","china","headquartered","boston_massachusetts","operates","chinese_language","chinese_language","website","beijing","china","history","attract","china","headquartered","boston","mand","operations","beijing","china","founded","sam","attract","china","ceo","president","company","operations","attract","china","focused","connecting","american","businesses","including","hotels_restaurants","retailers","attractions","independent","chinese","travelers","fastest_growing","highest","spending","tourist","segment","us","digital","platforms","guides","standard","chinese","mandarin","attract","markets","chinese","college_students","comprised","largest","segment","oforeign","students","attending","top","hosting","international","students","academic","year","attract","china","initially","operated","seven","us","markets","including","new_york","boston","las_vegas","los_angeles","california","los_angeles","cand","san_francisco_california","san_francisco","company","expanded","seattle_washington","seattle","chicago_illinois","chicago","hawaii","also","add","five","markets","thend","year","attract","chinese_language","website","beijing","china","company","generates","revenue","advertising","advertisements","placed","various","marketing","vehicles","client","brand","clients","attract","china","currently","works","clients","inorth_america","including","ritz","carlton","hotel","ritz","carlton","mandarin","oriental","hotel_group","collection","westin","hotels","westin","hotels","premium","outlets","products","portal","translates","gateway","getaway","china","based","chinese_language","chinese_language","destination","web","portal","operated","attract","china","portal","provides","chinese","tourists","travel_information","hotels_restaurants","retailers","attractions","special","deals","us","chinese_language","maps","attract","china","creates","provides","maps","chinese_language","chinese","american","city","operates","passport","sized","maps","tours","along","map","city","public","transit","system","category_american","companiestablished","category","retail","companiestablished","category_travel","holiday_companies","united_states","category_companies_based","boston","category_city_guides"],"clean_bigrams":[["attract","china"],["china","llc"],["american","tourism"],["tourism","company"],["helps","us"],["us","businesses"],["businesses","promote"],["retail","store"],["chinese","tourists"],["fastest","growing"],["highest","spending"],["spending","tourism"],["tourism","tourist"],["tourist","segment"],["web","portal"],["portal","digital"],["digital","platforms"],["printed","map"],["map","guides"],["guides","attract"],["chinese","college"],["college","students"],["largest","segment"],["segment","oforeign"],["oforeign","students"],["students","attending"],["hosting","international"],["international","student"],["academic","term"],["term","academic"],["academic","year"],["year","attract"],["attract","china"],["china","headquartered"],["boston","massachusetts"],["chinese","language"],["language","chinese"],["chinese","language"],["language","website"],["beijing","china"],["china","history"],["history","attract"],["attract","china"],["china","headquartered"],["boston","mand"],["beijing","china"],["attract","china"],["company","operations"],["operations","attract"],["attract","china"],["connecting","american"],["american","businesses"],["businesses","including"],["including","hotels"],["hotels","restaurants"],["restaurants","retailers"],["retailers","attractions"],["independent","chinese"],["chinese","travelers"],["fastest","growing"],["highest","spending"],["spending","tourist"],["tourist","segment"],["digital","platforms"],["standard","chinese"],["chinese","mandarin"],["mandarin","attract"],["chinese","college"],["college","students"],["largest","segment"],["segment","oforeign"],["oforeign","students"],["students","attending"],["hosting","international"],["international","students"],["academic","year"],["year","attract"],["attract","china"],["china","initially"],["initially","operated"],["seven","us"],["us","markets"],["markets","including"],["including","new"],["new","york"],["las","vegas"],["los","angeles"],["angeles","california"],["california","los"],["los","angeles"],["angeles","cand"],["cand","san"],["san","francisco"],["francisco","california"],["california","san"],["san","francisco"],["company","expanded"],["seattle","washington"],["washington","seattle"],["chicago","illinois"],["illinois","chicago"],["hawaii","also"],["company","announced"],["announced","plans"],["add","five"],["year","attract"],["chinese","language"],["language","website"],["beijing","china"],["company","generates"],["generates","revenue"],["advertising","advertisements"],["advertisements","placed"],["various","marketing"],["marketing","vehicles"],["client","brand"],["clients","attract"],["attract","china"],["china","currently"],["currently","works"],["clients","inorth"],["inorth","america"],["america","including"],["ritz","carlton"],["carlton","hotel"],["ritz","carlton"],["carlton","mandarin"],["mandarin","oriental"],["oriental","hotel"],["hotel","group"],["collection","westin"],["westin","hotels"],["hotels","westin"],["westin","hotels"],["premium","outlets"],["outlets","products"],["china","based"],["based","chinese"],["chinese","language"],["language","chinese"],["chinese","language"],["language","destination"],["destination","web"],["web","portal"],["portal","operated"],["attract","china"],["portal","provides"],["provides","chinese"],["chinese","tourists"],["travel","information"],["hotels","restaurants"],["restaurants","retailers"],["retailers","attractions"],["special","deals"],["us","chinese"],["chinese","language"],["language","maps"],["maps","attract"],["attract","china"],["china","creates"],["provides","maps"],["chinese","language"],["language","chinese"],["american","city"],["passport","sized"],["public","transit"],["transit","system"],["system","category"],["category","american"],["american","companiestablished"],["category","retail"],["retail","companiestablished"],["category","travel"],["holiday","companies"],["united","states"],["states","category"],["category","companies"],["companies","based"],["boston","category"],["category","city"],["city","guides"]],"all_collocations":["attract china","china llc","american tourism","tourism company","helps us","us businesses","businesses promote","retail store","chinese tourists","fastest growing","highest spending","spending tourism","tourism tourist","tourist segment","web portal","portal digital","digital platforms","printed map","map guides","guides attract","chinese college","college students","largest segment","segment oforeign","oforeign students","students attending","hosting international","international student","academic term","term academic","academic year","year attract","attract china","china headquartered","boston massachusetts","chinese language","language chinese","chinese language","language website","beijing china","china history","history attract","attract china","china headquartered","boston mand","beijing china","attract china","company operations","operations attract","attract china","connecting american","american businesses","businesses including","including hotels","hotels restaurants","restaurants retailers","retailers attractions","independent chinese","chinese travelers","fastest growing","highest spending","spending tourist","tourist segment","digital platforms","standard chinese","chinese mandarin","mandarin attract","chinese college","college students","largest segment","segment oforeign","oforeign students","students attending","hosting international","international students","academic year","year attract","attract china","china initially","initially operated","seven us","us markets","markets including","including new","new york","las vegas","los angeles","angeles california","california los","los angeles","angeles cand","cand san","san francisco","francisco california","california san","san francisco","company expanded","seattle washington","washington seattle","chicago illinois","illinois chicago","hawaii also","company announced","announced plans","add five","year attract","chinese language","language website","beijing china","company generates","generates revenue","advertising advertisements","advertisements placed","various marketing","marketing vehicles","client brand","clients attract","attract china","china currently","currently works","clients inorth","inorth america","america including","ritz carlton","carlton hotel","ritz carlton","carlton mandarin","mandarin oriental","oriental hotel","hotel group","collection westin","westin hotels","hotels westin","westin hotels","premium outlets","outlets products","china based","based chinese","chinese language","language chinese","chinese language","language destination","destination web","web portal","portal operated","attract china","portal provides","provides chinese","chinese tourists","travel information","hotels restaurants","restaurants retailers","retailers attractions","special deals","us chinese","chinese language","language maps","maps attract","attract china","china creates","provides maps","chinese language","language chinese","american city","passport sized","public transit","transit system","system category","category american","american companiestablished","category retail","retail companiestablished","category travel","holiday companies","united states","states category","category companies","companies based","boston category","category city","city guides"],"new_description":"attract china llc american tourism_company helps us businesses promote hotel restaurant retail store attractions chinese tourists fastest_growing highest spending tourism tourist segment us web portal digital platforms printed map guides attract markets chinese college_students comprised largest segment oforeign students attending top hosting international student academic term academic year attract china headquartered boston_massachusetts operates chinese_language chinese_language website beijing china history attract china headquartered boston mand operations beijing china founded sam attract china ceo president company operations attract china focused connecting american businesses including hotels_restaurants retailers attractions independent chinese travelers fastest_growing highest spending tourist segment us digital platforms guides standard chinese mandarin attract markets chinese college_students comprised largest segment oforeign students attending top hosting international students academic year attract china initially operated seven us markets including new_york boston las_vegas los_angeles california los_angeles cand san_francisco_california san_francisco company expanded seattle_washington seattle chicago_illinois chicago hawaii also company_announced_plans add five markets thend year attract chinese_language website beijing china company generates revenue advertising advertisements placed various marketing vehicles client brand clients attract china currently works clients inorth_america including ritz carlton hotel ritz carlton mandarin oriental hotel_group collection westin hotels westin hotels premium outlets products portal translates gateway getaway china based chinese_language chinese_language destination web portal operated attract china portal provides chinese tourists travel_information hotels_restaurants retailers attractions special deals us chinese_language maps attract china creates provides maps chinese_language chinese american city operates passport sized maps tours along map city public transit system category_american companiestablished category retail companiestablished category_travel holiday_companies united_states category_companies_based boston category_city_guides"},{"title":"Automat","description":"file stollwerckautomatenrestaurant jpg thumb right px the first automat leipziger strasse berlin germany max sielaff bernardo friese grandson of max sielaff an automat is a fast food restaurant where simple foods andrink are served by vending machines the world s first automat was named quisisana which opened in berlin germany in by country the first automat in the world was the quisisanautomat which opened in berlin germany file bundesarchiv bild berlin alexanderplatz automatenrestaurant nachtjpg an automat in berlin germany japan in japan in addition to regular vending machines japan vending machines which sell prepared food many restaurants also use food ticket machineshokkenki where one purchases a meal ticket from a vending machine then presents the ticketo a server who then prepares and serves the meal see ja file ikea bistro ticket vending machine alljpg wikipedia in japanese for an example conveyor belt sushi restaurants are also popular netherlands file automat jpg thumb a febo snack bar in amsterdam the netherlands dutch automats provide a variety of dutch cuisine fast food typical dutch fried fast food such as frikandelen and croquette s but also hamburgers and sandwiches in vending machines that are back loaded from a kitchen their automat is called an vending machinetherlands automatiek febo is the best known chain of dutch automat snackbarsome outlets are open hours a day and are popular with locals and those leaving clubs and bars late at nighthe dutch concept has been successfully exported overseaspain file snackomatic walljpg thumb left automatic restaurant with automats in university jaume i of castell n in spain spain one can also find the typical dutch automat machines for example a complete automatic restaurant is installed in a university jaume i of castell n freshealthy hot plates are sold from the hot food vending machines the cold versions provide freshly made salads united states concept file horn hardart automatjpg thumb px a horn hardart postcard explaining how food waserved in an automat c s originally the machines in us automats took only nickel united states coinickels in the original format a cashier sat in a change booth in the center of the restaurant behind a wide marble counter with five to eight roundedepressions the diner would inserthe required number of coins in a machine and then lift a window hinged athe top and remove the meal usually wrapped in waxed paper the machines wereplenished from the kitchen behind all or most new york automats had a cafeteria style steam table where patrons could slide a tray along rails and choose foods which were ladle spoon ladled from tureen s the first automat in the us was opened june at chestnut st in philadelphia by horn hardart horn hardart became the most prominent american automat chain horn hardart automath ave between th sts th street new york city signs th to nd street inspired by automat restaurants in berlin they became among the first restaurants and the first non europeans to receive patented vending machines fromax sielaff s automat gesellschaft mit beschr nkter haftungmbh berlin factory creators of the first chocolate bar vending machine automat restaurants automat gmbh spenerstrasse berlinw trade catalogs and pamphlets oclc the automat was broughto new york city in and gradually became part of popular culture inorthern industrial cities the automats were popular with a wide variety of patrons including walter winchell irving berlin and other celebrities of thera the new york automats were popular with unemployed songwriters and actors playwright neil simon called automats the maxim s paris maxim s of the disenfranchised in article decline the format was threatened by the arrival ofast food served over the counter and with more payment flexibility than traditional automats in the s the automats remaining appeal in their core urban markets wastrictly nostalgia nostalgic another contributing factor to their demise was inflation of the s making the food too expensive to be bought conveniently with coins in a time before bill acceptors commonly appeared on vending equipment at one time there were horn hardart automats inew york city alone the last one closed in horn and hardart converted most of its new york city locations to burger king s athe time the quality of the food was described by some customers as on the decline in an attempto bring back automats inew york city a company called bamn opened a new east village manhattan east village dutch style automat store in but it closed in the shutter felled bamn to become baoguetteater ny a second attempto bring back automats to the united states is eatsa which offers quinoa basedishes file automat by berenice abbott in jpg an automat in manhattanew york city in file bamn automatpng a modern automat in manhattan s east village manhattan east village file horn hardart automat new york city th streetjpg automat sixth avenue new york city showing areas for beverages and pies at right of dining area rail transport a form of the automat was used on some passenger train s the great western railway in the united kingdom announced plans in december to introduce automat buffet car s plans were delayed by impending british rail nationalisation inationalisation and an automat was finally introduced on the cambrian coast express in the united states the pennsylvania railroad introduced an automat between pennsylvania stationew york city pennsylvania stationew york city and union station washington dc union station washington dc in southern pacific transportation company southern pacific railroad introduced automat buffet car s on the coast daylight sp train coast daylight and sunset limited in amtrak converted four buffet cars to automats in for use on the auto train the last one in use in the united states was on the short lived lake country limited in switzerland bodensee toggenburg railway bodensee toggenburg bahn introduced automat buffet cars in see also automated retail automated retailing conveyor belt sushi eatsa febo fulline vending references furthereading the last automat by james t farrell new york magazinew york may automatenrestaurant qusisana mariahilfer stra e im viennaustria from pohanka reinhard sinalco epoche kenne ich externalinks in praise of the automat slideshow by life magazine sielaff automaten berlin max sielaff automat inventor website used and new automats in the united states doris day athe automat in thatouch of mink before horn hardart european automats token from automatencafe quisisana k rntner street viennaustriautomat restaurants trade catalogs and pamphlets oclc automat restaurants over years ago my stockholm blog category fast food restaurants category types of restaurants category vending de automatenrestaurant","main_words":["file","jpg","thumb","right","px","first","automat","berlin_germany","max","sielaff","bernardo","grandson","max","sielaff","automat","fast_food_restaurant","simple","foods","andrink","served","vending_machines","world","first","automat","named","opened","berlin_germany","country","first","automat","world","opened","berlin_germany","file","bild","berlin","automat","berlin_germany","japan","japan","addition","regular","vending_machines","japan","vending_machines","sell","prepared","food","many_restaurants","also_use","food","ticket","one","purchases","meal","ticket","vending","machine","presents","server","prepares","serves","meal","see","file","bistro","ticket","vending","machine","wikipedia","japanese","example","belt","sushi","restaurants","also_popular","netherlands","file","automat","jpg","thumb","snack_bar","amsterdam","netherlands","dutch","automats","provide","variety","dutch","cuisine","fast_food","typical","dutch","fried","fast_food","also","hamburgers","sandwiches","vending_machines","back","loaded","kitchen","automat","called","vending","best_known","chain","dutch","automat","outlets","open_hours","day","popular","locals","leaving","clubs","bars","dutch","concept","successfully","file","thumb","left","automatic","restaurant","automats","university","n","spain","spain","one","also","find","typical","dutch","automat","machines","example","complete","automatic","restaurant","installed","university","n","hot","plates","sold","hot","food","vending_machines","cold","versions","provide","freshly","made","salads","united_states","concept","file","horn_hardart","thumb","px","horn_hardart","postcard","explaining","food","waserved","automat","c","originally","machines","us","automats","took","united_states","original","format","sat","change","booth","center","restaurant","behind","wide","marble","counter","five","eight","diner","would","required","number","coins","machine","lift","window","athe_top","remove","meal","usually","wrapped","paper","machines","kitchen","behind","new_york","automats","cafeteria","style","steam","table","patrons","could","slide","tray","along","choose","foods","spoon","first","automat","us","opened","june","chestnut","st","philadelphia","horn_hardart","horn_hardart","became","prominent","american","automat","chain","horn_hardart","ave","th","sts","th_street","new_york","city","signs","th_street","inspired","automat","restaurants","berlin","became","among","first","restaurants","first","non","europeans","receive","patented","vending_machines","sielaff","automat","gesellschaft","mit","berlin","factory","creators","first","chocolate","bar","vending","machine","automat","restaurants","automat","gmbh","trade","pamphlets","oclc","automat","broughto","new_york","city","gradually","became","part","popular_culture","inorthern","industrial","cities","automats","popular","wide_variety","patrons","including","walter","irving","berlin","celebrities","thera","new_york","automats","popular","unemployed","actors","playwright","neil","simon","called","automats","paris","article","decline","format","threatened","arrival","counter","payment","flexibility","traditional","automats","automats","remaining","appeal","core","urban","markets","nostalgia","nostalgic","another","contributing","factor","inflation","making","food","expensive","bought","coins","time","bill","commonly","appeared","vending","equipment","one_time","horn_hardart","automats","inew_york_city","alone","last","one","closed","horn_hardart","converted","new_york","city","locations","burger_king","athe_time","quality","food","described","customers","decline","attempto","bring","back","automats","inew_york_city","company_called","opened","new","east","village","manhattan","east","village","dutch","style","automat","store","closed","become","second","attempto","bring","back","automats","united_states","offers","file","automat","abbott","jpg","automat","manhattanew","york_city","file","modern","automat","manhattan","east","village","manhattan","east","village","file","horn_hardart","automat","new_york","city","automat","sixth","avenue","new_york","city","showing","areas","beverages","pies","right","dining","area","rail_transport","form","automat","used","passenger","train","great","western","railway","united_kingdom","announced_plans","december","introduce","automat","buffet","car","plans","delayed","british","rail","automat","finally","introduced","coast","express","united_states","pennsylvania","railroad","introduced","automat","pennsylvania","york_city","pennsylvania","york_city","union","station","washington","union","station","washington","southern","pacific","transportation","company","southern","pacific","railroad","introduced","automat","buffet","car","coast","daylight","train","coast","daylight","sunset","limited","converted","four","buffet","cars","automats","use","auto","train","last","one","use","united_states","short_lived","lake","country","limited","switzerland","bodensee","railway","bodensee","bahn","introduced","automat","buffet","cars","see_also","automated","retail","automated","retailing","belt","sushi","vending","references_furthereading","last","automat","james","farrell","new_york","magazinew","york","may","stra","e","viennaustria","externalinks","praise","automat","life_magazine","sielaff","berlin","max","sielaff","automat","inventor","website","used","new","automats","united_states","day","athe","automat","horn_hardart","european","automats","token","k","street","restaurants","trade","pamphlets","oclc","automat","restaurants","years_ago","stockholm","blog","restaurants_category","vending","de"],"clean_bigrams":[["jpg","thumb"],["thumb","right"],["right","px"],["first","automat"],["berlin","germany"],["germany","max"],["max","sielaff"],["sielaff","bernardo"],["max","sielaff"],["sielaff","automat"],["fast","food"],["food","restaurant"],["simple","foods"],["foods","andrink"],["vending","machines"],["first","automat"],["berlin","germany"],["first","automat"],["berlin","germany"],["germany","file"],["bild","berlin"],["berlin","germany"],["germany","japan"],["regular","vending"],["vending","machines"],["machines","japan"],["japan","vending"],["vending","machines"],["sell","prepared"],["prepared","food"],["food","many"],["many","restaurants"],["restaurants","also"],["also","use"],["use","food"],["food","ticket"],["one","purchases"],["meal","ticket"],["ticket","vending"],["vending","machine"],["meal","see"],["bistro","ticket"],["ticket","vending"],["vending","machine"],["belt","sushi"],["sushi","restaurants"],["restaurants","also"],["also","popular"],["popular","netherlands"],["netherlands","file"],["file","automat"],["automat","jpg"],["jpg","thumb"],["snack","bar"],["netherlands","dutch"],["dutch","automats"],["automats","provide"],["dutch","cuisine"],["cuisine","fast"],["fast","food"],["food","typical"],["typical","dutch"],["dutch","fried"],["fried","fast"],["fast","food"],["also","hamburgers"],["vending","machines"],["back","loaded"],["best","known"],["known","chain"],["dutch","automat"],["open","hours"],["leaving","clubs"],["bars","late"],["nighthe","dutch"],["dutch","concept"],["thumb","left"],["left","automatic"],["automatic","restaurant"],["spain","spain"],["spain","one"],["also","find"],["typical","dutch"],["dutch","automat"],["automat","machines"],["complete","automatic"],["automatic","restaurant"],["hot","plates"],["hot","food"],["food","vending"],["vending","machines"],["cold","versions"],["versions","provide"],["provide","freshly"],["freshly","made"],["made","salads"],["salads","united"],["united","states"],["states","concept"],["concept","file"],["file","horn"],["horn","hardart"],["thumb","px"],["horn","hardart"],["hardart","postcard"],["postcard","explaining"],["food","waserved"],["automat","c"],["us","automats"],["automats","took"],["united","states"],["original","format"],["change","booth"],["restaurant","behind"],["wide","marble"],["marble","counter"],["diner","would"],["required","number"],["athe","top"],["meal","usually"],["usually","wrapped"],["kitchen","behind"],["new","york"],["york","automats"],["cafeteria","style"],["style","steam"],["steam","table"],["patrons","could"],["could","slide"],["tray","along"],["choose","foods"],["first","automat"],["opened","june"],["chestnut","st"],["horn","hardart"],["hardart","horn"],["horn","hardart"],["hardart","became"],["prominent","american"],["american","automat"],["automat","chain"],["chain","horn"],["horn","hardart"],["th","sts"],["sts","th"],["th","street"],["street","new"],["new","york"],["york","city"],["city","signs"],["signs","th"],["th","street"],["street","inspired"],["automat","restaurants"],["became","among"],["first","restaurants"],["first","non"],["non","europeans"],["receive","patented"],["patented","vending"],["vending","machines"],["sielaff","automat"],["automat","gesellschaft"],["gesellschaft","mit"],["berlin","factory"],["factory","creators"],["first","chocolate"],["chocolate","bar"],["bar","vending"],["vending","machine"],["machine","automat"],["automat","restaurants"],["restaurants","automat"],["automat","gmbh"],["pamphlets","oclc"],["oclc","automat"],["broughto","new"],["new","york"],["york","city"],["gradually","became"],["became","part"],["popular","culture"],["culture","inorthern"],["inorthern","industrial"],["industrial","cities"],["wide","variety"],["patrons","including"],["including","walter"],["irving","berlin"],["new","york"],["york","automats"],["actors","playwright"],["playwright","neil"],["neil","simon"],["simon","called"],["called","automats"],["article","decline"],["arrival","ofast"],["ofast","food"],["food","served"],["payment","flexibility"],["traditional","automats"],["automats","remaining"],["remaining","appeal"],["core","urban"],["urban","markets"],["nostalgia","nostalgic"],["nostalgic","another"],["another","contributing"],["contributing","factor"],["commonly","appeared"],["vending","equipment"],["one","time"],["horn","hardart"],["hardart","automats"],["automats","inew"],["inew","york"],["york","city"],["city","alone"],["last","one"],["one","closed"],["horn","hardart"],["hardart","converted"],["new","york"],["york","city"],["city","locations"],["burger","king"],["athe","time"],["attempto","bring"],["bring","back"],["back","automats"],["automats","inew"],["inew","york"],["york","city"],["company","called"],["new","east"],["east","village"],["village","manhattan"],["manhattan","east"],["east","village"],["village","dutch"],["dutch","style"],["style","automat"],["automat","store"],["second","attempto"],["attempto","bring"],["bring","back"],["back","automats"],["united","states"],["file","automat"],["manhattanew","york"],["york","city"],["modern","automat"],["manhattan","east"],["east","village"],["village","manhattan"],["manhattan","east"],["east","village"],["village","file"],["file","horn"],["horn","hardart"],["hardart","automat"],["automat","new"],["new","york"],["york","city"],["city","th"],["th","streetjpg"],["streetjpg","automat"],["automat","sixth"],["sixth","avenue"],["avenue","new"],["new","york"],["york","city"],["city","showing"],["showing","areas"],["dining","area"],["area","rail"],["rail","transport"],["passenger","train"],["great","western"],["western","railway"],["united","kingdom"],["kingdom","announced"],["announced","plans"],["introduce","automat"],["automat","buffet"],["buffet","car"],["british","rail"],["finally","introduced"],["coast","express"],["united","states"],["pennsylvania","railroad"],["railroad","introduced"],["introduced","automat"],["york","city"],["city","pennsylvania"],["york","city"],["union","station"],["station","washington"],["union","station"],["station","washington"],["southern","pacific"],["pacific","transportation"],["transportation","company"],["company","southern"],["southern","pacific"],["pacific","railroad"],["railroad","introduced"],["introduced","automat"],["automat","buffet"],["buffet","car"],["coast","daylight"],["train","coast"],["coast","daylight"],["sunset","limited"],["converted","four"],["four","buffet"],["buffet","cars"],["auto","train"],["last","one"],["united","states"],["short","lived"],["lived","lake"],["lake","country"],["country","limited"],["switzerland","bodensee"],["railway","bodensee"],["bahn","introduced"],["introduced","automat"],["automat","buffet"],["buffet","cars"],["see","also"],["also","automated"],["automated","retail"],["retail","automated"],["automated","retailing"],["belt","sushi"],["vending","references"],["references","furthereading"],["last","automat"],["farrell","new"],["new","york"],["york","magazinew"],["magazinew","york"],["york","may"],["stra","e"],["life","magazine"],["magazine","sielaff"],["berlin","max"],["max","sielaff"],["sielaff","automat"],["automat","inventor"],["inventor","website"],["website","used"],["new","automats"],["united","states"],["day","athe"],["athe","automat"],["horn","hardart"],["hardart","european"],["european","automats"],["automats","token"],["restaurants","trade"],["pamphlets","oclc"],["oclc","automat"],["automat","restaurants"],["years","ago"],["stockholm","blog"],["blog","category"],["category","fast"],["fast","food"],["food","restaurants"],["restaurants","category"],["category","types"],["restaurants","category"],["category","vending"],["vending","de"]],"all_collocations":["first automat","berlin germany","germany max","max sielaff","sielaff bernardo","max sielaff","sielaff automat","fast food","food restaurant","simple foods","foods andrink","vending machines","first automat","berlin germany","first automat","berlin germany","germany file","bild berlin","berlin germany","germany japan","regular vending","vending machines","machines japan","japan vending","vending machines","sell prepared","prepared food","food many","many restaurants","restaurants also","also use","use food","food ticket","one purchases","meal ticket","ticket vending","vending machine","meal see","bistro ticket","ticket vending","vending machine","belt sushi","sushi restaurants","restaurants also","also popular","popular netherlands","netherlands file","file automat","automat jpg","snack bar","netherlands dutch","dutch automats","automats provide","dutch cuisine","cuisine fast","fast food","food typical","typical dutch","dutch fried","fried fast","fast food","also hamburgers","vending machines","back loaded","best known","known chain","dutch automat","open hours","leaving clubs","bars late","nighthe dutch","dutch concept","left automatic","automatic restaurant","spain spain","spain one","also find","typical dutch","dutch automat","automat machines","complete automatic","automatic restaurant","hot plates","hot food","food vending","vending machines","cold versions","versions provide","provide freshly","freshly made","made salads","salads united","united states","states concept","concept file","file horn","horn hardart","horn hardart","hardart postcard","postcard explaining","food waserved","automat c","us automats","automats took","united states","original format","change booth","restaurant behind","wide marble","marble counter","diner would","required number","athe top","meal usually","usually wrapped","kitchen behind","new york","york automats","cafeteria style","style steam","steam table","patrons could","could slide","tray along","choose foods","first automat","opened june","chestnut st","horn hardart","hardart horn","horn hardart","hardart became","prominent american","american automat","automat chain","chain horn","horn hardart","th sts","sts th","th street","street new","new york","york city","city signs","signs th","th street","street inspired","automat restaurants","became among","first restaurants","first non","non europeans","receive patented","patented vending","vending machines","sielaff automat","automat gesellschaft","gesellschaft mit","berlin factory","factory creators","first chocolate","chocolate bar","bar vending","vending machine","machine automat","automat restaurants","restaurants automat","automat gmbh","pamphlets oclc","oclc automat","broughto new","new york","york city","gradually became","became part","popular culture","culture inorthern","inorthern industrial","industrial cities","wide variety","patrons including","including walter","irving berlin","new york","york automats","actors playwright","playwright neil","neil simon","simon called","called automats","article decline","arrival ofast","ofast food","food served","payment flexibility","traditional automats","automats remaining","remaining appeal","core urban","urban markets","nostalgia nostalgic","nostalgic another","another contributing","contributing factor","commonly appeared","vending equipment","one time","horn hardart","hardart automats","automats inew","inew york","york city","city alone","last one","one closed","horn hardart","hardart converted","new york","york city","city locations","burger king","athe time","attempto bring","bring back","back automats","automats inew","inew york","york city","company called","new east","east village","village manhattan","manhattan east","east village","village dutch","dutch style","style automat","automat store","second attempto","attempto bring","bring back","back automats","united states","file automat","manhattanew york","york city","modern automat","manhattan east","east village","village manhattan","manhattan east","east village","village file","file horn","horn hardart","hardart automat","automat new","new york","york city","city th","th streetjpg","streetjpg automat","automat sixth","sixth avenue","avenue new","new york","york city","city showing","showing areas","dining area","area rail","rail transport","passenger train","great western","western railway","united kingdom","kingdom announced","announced plans","introduce automat","automat buffet","buffet car","british rail","finally introduced","coast express","united states","pennsylvania railroad","railroad introduced","introduced automat","york city","city pennsylvania","york city","union station","station washington","union station","station washington","southern pacific","pacific transportation","transportation company","company southern","southern pacific","pacific railroad","railroad introduced","introduced automat","automat buffet","buffet car","coast daylight","train coast","coast daylight","sunset limited","converted four","four buffet","buffet cars","auto train","last one","united states","short lived","lived lake","lake country","country limited","switzerland bodensee","railway bodensee","bahn introduced","introduced automat","automat buffet","buffet cars","see also","also automated","automated retail","retail automated","automated retailing","belt sushi","vending references","references furthereading","last automat","farrell new","new york","york magazinew","magazinew york","york may","stra e","life magazine","magazine sielaff","berlin max","max sielaff","sielaff automat","automat inventor","inventor website","website used","new automats","united states","day athe","athe automat","horn hardart","hardart european","european automats","automats token","restaurants trade","pamphlets oclc","oclc automat","automat restaurants","years ago","stockholm blog","blog category","category fast","fast food","food restaurants","restaurants category","category types","restaurants category","category vending","vending de"],"new_description":"file jpg thumb right px first automat berlin_germany max sielaff bernardo grandson max sielaff automat fast_food_restaurant simple foods andrink served vending_machines world first automat named opened berlin_germany country first automat world opened berlin_germany file bild berlin automat berlin_germany japan japan addition regular vending_machines japan vending_machines sell prepared food many_restaurants also_use food ticket one purchases meal ticket vending machine presents server prepares serves meal see file bistro ticket vending machine wikipedia japanese example belt sushi restaurants also_popular netherlands file automat jpg thumb snack_bar amsterdam netherlands dutch automats provide variety dutch cuisine fast_food typical dutch fried fast_food also hamburgers sandwiches vending_machines back loaded kitchen automat called vending best_known chain dutch automat outlets open_hours day popular locals leaving clubs bars late_nighthe dutch concept successfully file thumb left automatic restaurant automats university n spain spain one also find typical dutch automat machines example complete automatic restaurant installed university n hot plates sold hot food vending_machines cold versions provide freshly made salads united_states concept file horn_hardart thumb px horn_hardart postcard explaining food waserved automat c originally machines us automats took united_states original format sat change booth center restaurant behind wide marble counter five eight diner would required number coins machine lift window athe_top remove meal usually wrapped paper machines kitchen behind new_york automats cafeteria style steam table patrons could slide tray along choose foods spoon first automat us opened june chestnut st philadelphia horn_hardart horn_hardart became prominent american automat chain horn_hardart ave th sts th_street new_york city signs th_street inspired automat restaurants berlin became among first restaurants first non europeans receive patented vending_machines sielaff automat gesellschaft mit berlin factory creators first chocolate bar vending machine automat restaurants automat gmbh trade pamphlets oclc automat broughto new_york city gradually became part popular_culture inorthern industrial cities automats popular wide_variety patrons including walter irving berlin celebrities thera new_york automats popular unemployed actors playwright neil simon called automats paris article decline format threatened arrival ofast_food_served counter payment flexibility traditional automats automats remaining appeal core urban markets nostalgia nostalgic another contributing factor inflation making food expensive bought coins time bill commonly appeared vending equipment one_time horn_hardart automats inew_york_city alone last one closed horn_hardart converted new_york city locations burger_king athe_time quality food described customers decline attempto bring back automats inew_york_city company_called opened new east village manhattan east village dutch style automat store closed become second attempto bring back automats united_states offers file automat abbott jpg automat manhattanew york_city file modern automat manhattan east village manhattan east village file horn_hardart automat new_york city th_streetjpg automat sixth avenue new_york city showing areas beverages pies right dining area rail_transport form automat used passenger train great western railway united_kingdom announced_plans december introduce automat buffet car plans delayed british rail automat finally introduced coast express united_states pennsylvania railroad introduced automat pennsylvania york_city pennsylvania york_city union station washington union station washington southern pacific transportation company southern pacific railroad introduced automat buffet car coast daylight train coast daylight sunset limited converted four buffet cars automats use auto train last one use united_states short_lived lake country limited switzerland bodensee railway bodensee bahn introduced automat buffet cars see_also automated retail automated retailing belt sushi vending references_furthereading last automat james farrell new_york magazinew york may stra e viennaustria externalinks praise automat life_magazine sielaff berlin max sielaff automat inventor website used new automats united_states day athe automat horn_hardart european automats token k street restaurants trade pamphlets oclc automat restaurants years_ago stockholm blog category_fast_food_restaurants_category_types restaurants_category vending de"},{"title":"Automated restaurant","description":"automated restaurant orobotic restaurant is a restauranthat uses robot s to do tasksuch as delivering food andrinks to the tables and or to cook the food restaurant automation means the use of restaurant management system to automate the major operations of a restaurant establishment even in thearly s a number of restaurantserved foodsolely through vending machines called automats or in japan shokkenki customers ordered their foods directly through the machines morecently restaurants are opening that have completely or partially automated their services these may include taking of orders preparing ofood serving and billing a few fully automated restaurants operate without any human intervention whatsoeverobots are designed to help and sometimes replacemployment human labour such as waiter s and chef s automation of restaurants also allows the option for greater customization of an order automated restaurants have been opening in many countries examples include fritz s railroad restaurant in kansas city missouri fritz s railroad restaurant v topna railway restaurant a franchise of various restaurants and coffeehouses in czech republic model train delivers restaurant drinks bagger s restaurant inurembergermany fully automated restaurant opens in germany fua men restaurant a ramen restaurant located inagoya japan robot chefs run restaurant in japan hajime robot restaurant a japanese restaurant in bangkok thailand the samurai robot waiters of hajime restauranthe dalu robot restaurant in jinan china look inside china s robot restaurant haohai robot restaurant in harbin china newscontent and robot kitchen restaurant in hong kong at hong kong high tech cafeverything iserved with microchips communist robot where do you stand on the future robot chacha the first robot restaurant of india is due topen in capital city new delhi across europe mcdonald s plans on implementing touch screen kiosks that will handle cashiering dutiesee also automat externalinks manufacturer of donerobots korkmaz mechatronic s official website s baggers official website alkadurobotsystems official website ct asia robotics official website display everywherestaurant software automated restaurants concepts automated restaurants in spanish university category types of restaurants category robotics category emerging technologies","main_words":["automated","restaurant","restaurant","restauranthat","uses","robot","tasksuch","delivering","food_andrinks","tables","cook","food_restaurant","automation","means","use","restaurant","management","system","major","operations","restaurant","establishment","even","thearly","number","vending_machines","called","automats","japan","customers","ordered","foods","directly","machines","morecently","restaurants","opening","completely","partially","automated","services","may_include","taking","orders","preparing","ofood","serving","billing","fully","automated","restaurants","operate","without","human","intervention","designed","help","sometimes","human","labour","waiter","chef","automation","restaurants","also","allows","option","greater","order","automated","restaurants","opening","many_countries","examples_include","fritz","railroad","restaurant","kansas_city","missouri","fritz","railroad","restaurant","v","railway","restaurant","franchise","various","restaurants","coffeehouses","czech_republic","model","train","restaurant","drinks","restaurant","fully","automated","restaurant","opens","germany","men","restaurant","ramen","restaurant_located","japan","robot","chefs","run","restaurant","japan","robot","restaurant","japanese","restaurant","bangkok","thailand","robot","waiters","restauranthe","robot","restaurant","china","look","inside","china","robot","restaurant","robot","restaurant","china","robot","kitchen","restaurant","hong_kong","hong_kong","high","tech","iserved","communist","robot","stand","future","robot","first","robot","restaurant","india","due","topen","delhi","across_europe","mcdonald","plans","implementing","touch","screen","kiosks","handle","also","automat","externalinks","manufacturer","official_website","official_website","official_website","asia","robotics","official_website","display","software","automated","restaurants","concepts","automated","restaurants","spanish","university","category_types","restaurants_category","robotics","category","emerging","technologies"],"clean_bigrams":[["automated","restaurant"],["restauranthat","uses"],["uses","robot"],["delivering","food"],["food","andrinks"],["food","restaurant"],["restaurant","automation"],["automation","means"],["restaurant","management"],["management","system"],["major","operations"],["restaurant","establishment"],["establishment","even"],["vending","machines"],["machines","called"],["called","automats"],["customers","ordered"],["foods","directly"],["machines","morecently"],["morecently","restaurants"],["partially","automated"],["may","include"],["include","taking"],["orders","preparing"],["preparing","ofood"],["ofood","serving"],["fully","automated"],["automated","restaurants"],["restaurants","operate"],["operate","without"],["human","intervention"],["human","labour"],["restaurants","also"],["also","allows"],["order","automated"],["automated","restaurants"],["many","countries"],["countries","examples"],["examples","include"],["include","fritz"],["railroad","restaurant"],["kansas","city"],["city","missouri"],["missouri","fritz"],["railroad","restaurant"],["restaurant","v"],["railway","restaurant"],["various","restaurants"],["czech","republic"],["republic","model"],["model","train"],["restaurant","drinks"],["fully","automated"],["automated","restaurant"],["restaurant","opens"],["men","restaurant"],["ramen","restaurant"],["restaurant","located"],["japan","robot"],["robot","chefs"],["chefs","run"],["run","restaurant"],["japan","robot"],["robot","restaurant"],["japanese","restaurant"],["bangkok","thailand"],["robot","waiters"],["robot","restaurant"],["china","look"],["look","inside"],["inside","china"],["robot","restaurant"],["robot","restaurant"],["robot","kitchen"],["kitchen","restaurant"],["hong","kong"],["hong","kong"],["kong","high"],["high","tech"],["communist","robot"],["future","robot"],["first","robot"],["robot","restaurant"],["due","topen"],["capital","city"],["city","new"],["new","delhi"],["delhi","across"],["across","europe"],["europe","mcdonald"],["implementing","touch"],["touch","screen"],["screen","kiosks"],["also","automat"],["automat","externalinks"],["externalinks","manufacturer"],["official","website"],["official","website"],["official","website"],["asia","robotics"],["robotics","official"],["official","website"],["website","display"],["software","automated"],["automated","restaurants"],["restaurants","concepts"],["concepts","automated"],["automated","restaurants"],["spanish","university"],["university","category"],["category","types"],["restaurants","category"],["category","robotics"],["robotics","category"],["category","emerging"],["emerging","technologies"]],"all_collocations":["automated restaurant","restauranthat uses","uses robot","delivering food","food andrinks","food restaurant","restaurant automation","automation means","restaurant management","management system","major operations","restaurant establishment","establishment even","vending machines","machines called","called automats","customers ordered","foods directly","machines morecently","morecently restaurants","partially automated","may include","include taking","orders preparing","preparing ofood","ofood serving","fully automated","automated restaurants","restaurants operate","operate without","human intervention","human labour","restaurants also","also allows","order automated","automated restaurants","many countries","countries examples","examples include","include fritz","railroad restaurant","kansas city","city missouri","missouri fritz","railroad restaurant","restaurant v","railway restaurant","various restaurants","czech republic","republic model","model train","restaurant drinks","fully automated","automated restaurant","restaurant opens","men restaurant","ramen restaurant","restaurant located","japan robot","robot chefs","chefs run","run restaurant","japan robot","robot restaurant","japanese restaurant","bangkok thailand","robot waiters","robot restaurant","china look","look inside","inside china","robot restaurant","robot restaurant","robot kitchen","kitchen restaurant","hong kong","hong kong","kong high","high tech","communist robot","future robot","first robot","robot restaurant","due topen","capital city","city new","new delhi","delhi across","across europe","europe mcdonald","implementing touch","touch screen","screen kiosks","also automat","automat externalinks","externalinks manufacturer","official website","official website","official website","asia robotics","robotics official","official website","website display","software automated","automated restaurants","restaurants concepts","concepts automated","automated restaurants","spanish university","university category","category types","restaurants category","category robotics","robotics category","category emerging","emerging technologies"],"new_description":"automated restaurant restaurant restauranthat uses robot tasksuch delivering food_andrinks tables cook food_restaurant automation means use restaurant management system major operations restaurant establishment even thearly number vending_machines called automats japan customers ordered foods directly machines morecently restaurants opening completely partially automated services may_include taking orders preparing ofood serving billing fully automated restaurants operate without human intervention designed help sometimes human labour waiter chef automation restaurants also allows option greater order automated restaurants opening many_countries examples_include fritz railroad restaurant kansas_city missouri fritz railroad restaurant v railway restaurant franchise various restaurants coffeehouses czech_republic model train restaurant drinks restaurant fully automated restaurant opens germany men restaurant ramen restaurant_located japan robot chefs run restaurant japan robot restaurant japanese restaurant bangkok thailand robot waiters restauranthe robot restaurant china look inside china robot restaurant robot restaurant china robot kitchen restaurant hong_kong hong_kong high tech iserved communist robot stand future robot first robot restaurant india due topen capital_city_new delhi across_europe mcdonald plans implementing touch screen kiosks handle also automat externalinks manufacturer official_website official_website official_website asia robotics official_website display software automated restaurants concepts automated restaurants spanish university category_types restaurants_category robotics category emerging technologies"},{"title":"Automobile Blue Book","description":"image automobile blue book v coverpng px thumb right cover of automobile blue book volume the automobile blue book est was an american book series of road guide book guides for driving motoring travellers in the united states and canada hartford connecticut hartford businessmand automobilenthusiast charles howard gillette initiated the series by the s it became the standard publication of its type readers included f scott fitzgerald furthereading file index map automobile blue book guidebookspng thumb right index map of volumes in the automobile blue book series v new york ed v new england ed index v delaware district of columbia maryland new jersey pennsylvania virginia west virginia ed via google books via hathitrust v mississippi river to pacificoast ed v alabama florida georgia louisiana mississippi north carolina south carolina tennesseed ed index v arizonarkansas colorado kansas louisiana montana nebraska new mexico north dakota oklahoma south dakota texas wyoming ed v arizona california nevada utah ed v oregon washington etc ed v illinois iowa michigan minnesota wisconsin etc ed externalinks hathi trust automobile blue book university of south carolina library automobile blue book collection category travel guide books category series of books category publications established in category road transportation in the united states category books abouthe united states category books about canada category tourism in the united states","main_words":["image","automobile","blue","book","v","px_thumb","right","cover","automobile","blue","book","volume","automobile","blue","book","est","american","book_series","road","guide_book","guides","driving","motoring","travellers","united_states","canada","hartford","connecticut","hartford","charles","howard","initiated","series","became","standard","publication","type","readers","included","f","scott","fitzgerald","furthereading","file","index","map","automobile","blue","book","thumb","right","index","map","volumes","automobile","blue","book_series","v","new_york","ed","v","new_england","delaware","district","columbia","maryland","new_jersey","pennsylvania","virginia","west_virginia","ed","via","google_books","via","hathitrust","v","mississippi_river","pacificoast","ed","v","alabama","florida","georgia","louisiana","mississippi","north_carolina","south_carolina","colorado","kansas","louisiana","montana","nebraska","new_mexico","north","dakota","oklahoma","south_dakota","texas","wyoming","ed","v","arizona","california","nevada","utah","ed","v","oregon","washington","etc","ed","v","illinois","iowa","michigan","minnesota","wisconsin","etc","ed","externalinks","hathi","trust","automobile","blue","book","university","south_carolina","library","automobile","blue","book","collection","category_travel_guide_books","category_series","books_category","publications_established","category","road","transportation","united_states","category_books","abouthe","united_states","category_books","canada_category_tourism","united_states"],"clean_bigrams":[["image","automobile"],["automobile","blue"],["blue","book"],["book","v"],["v","coverpng"],["coverpng","px"],["px","thumb"],["thumb","right"],["right","cover"],["automobile","blue"],["blue","book"],["book","volume"],["automobile","blue"],["blue","book"],["book","est"],["american","book"],["book","series"],["road","guide"],["guide","book"],["book","guides"],["driving","motoring"],["motoring","travellers"],["united","states"],["canada","hartford"],["hartford","connecticut"],["connecticut","hartford"],["charles","howard"],["standard","publication"],["type","readers"],["readers","included"],["included","f"],["f","scott"],["scott","fitzgerald"],["fitzgerald","furthereading"],["furthereading","file"],["file","index"],["index","map"],["map","automobile"],["automobile","blue"],["blue","book"],["thumb","right"],["right","index"],["index","map"],["automobile","blue"],["blue","book"],["book","series"],["series","v"],["v","new"],["new","york"],["york","ed"],["ed","v"],["v","new"],["new","england"],["england","ed"],["ed","index"],["index","v"],["v","delaware"],["delaware","district"],["columbia","maryland"],["maryland","new"],["new","jersey"],["jersey","pennsylvania"],["pennsylvania","virginia"],["virginia","west"],["west","virginia"],["virginia","ed"],["ed","via"],["via","google"],["google","books"],["books","via"],["via","hathitrust"],["hathitrust","v"],["v","mississippi"],["mississippi","river"],["pacificoast","ed"],["ed","v"],["v","alabama"],["alabama","florida"],["florida","georgia"],["georgia","louisiana"],["louisiana","mississippi"],["mississippi","north"],["north","carolina"],["carolina","south"],["south","carolina"],["ed","index"],["index","v"],["colorado","kansas"],["kansas","louisiana"],["louisiana","montana"],["montana","nebraska"],["nebraska","new"],["new","mexico"],["mexico","north"],["north","dakota"],["dakota","oklahoma"],["oklahoma","south"],["south","dakota"],["dakota","texas"],["texas","wyoming"],["wyoming","ed"],["ed","v"],["v","arizona"],["arizona","california"],["california","nevada"],["nevada","utah"],["utah","ed"],["ed","v"],["v","oregon"],["oregon","washington"],["washington","etc"],["etc","ed"],["ed","v"],["v","illinois"],["illinois","iowa"],["iowa","michigan"],["michigan","minnesota"],["minnesota","wisconsin"],["wisconsin","etc"],["etc","ed"],["ed","externalinks"],["externalinks","hathi"],["hathi","trust"],["trust","automobile"],["automobile","blue"],["blue","book"],["book","university"],["south","carolina"],["carolina","library"],["library","automobile"],["automobile","blue"],["blue","book"],["book","collection"],["collection","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","road"],["road","transportation"],["united","states"],["states","category"],["category","books"],["books","abouthe"],["abouthe","united"],["united","states"],["states","category"],["category","books"],["canada","category"],["category","tourism"],["united","states"]],"all_collocations":["image automobile","automobile blue","blue book","book v","v coverpng","coverpng px","px thumb","right cover","automobile blue","blue book","book volume","automobile blue","blue book","book est","american book","book series","road guide","guide book","book guides","driving motoring","motoring travellers","united states","canada hartford","hartford connecticut","connecticut hartford","charles howard","standard publication","type readers","readers included","included f","f scott","scott fitzgerald","fitzgerald furthereading","furthereading file","file index","index map","map automobile","automobile blue","blue book","right index","index map","automobile blue","blue book","book series","series v","v new","new york","york ed","ed v","v new","new england","england ed","ed index","index v","v delaware","delaware district","columbia maryland","maryland new","new jersey","jersey pennsylvania","pennsylvania virginia","virginia west","west virginia","virginia ed","ed via","via google","google books","books via","via hathitrust","hathitrust v","v mississippi","mississippi river","pacificoast ed","ed v","v alabama","alabama florida","florida georgia","georgia louisiana","louisiana mississippi","mississippi north","north carolina","carolina south","south carolina","ed index","index v","colorado kansas","kansas louisiana","louisiana montana","montana nebraska","nebraska new","new mexico","mexico north","north dakota","dakota oklahoma","oklahoma south","south dakota","dakota texas","texas wyoming","wyoming ed","ed v","v arizona","arizona california","california nevada","nevada utah","utah ed","ed v","v oregon","oregon washington","washington etc","etc ed","ed v","v illinois","illinois iowa","iowa michigan","michigan minnesota","minnesota wisconsin","wisconsin etc","etc ed","ed externalinks","externalinks hathi","hathi trust","trust automobile","automobile blue","blue book","book university","south carolina","carolina library","library automobile","automobile blue","blue book","book collection","collection category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category road","road transportation","united states","states category","category books","books abouthe","abouthe united","united states","states category","category books","canada category","category tourism","united states"],"new_description":"image automobile blue book v coverpng px_thumb right cover automobile blue book volume automobile blue book est american book_series road guide_book guides driving motoring travellers united_states canada hartford connecticut hartford charles howard initiated series became standard publication type readers included f scott fitzgerald furthereading file index map automobile blue book thumb right index map volumes automobile blue book_series v new_york ed v new_england ed_index_v delaware district columbia maryland new_jersey pennsylvania virginia west_virginia ed via google_books via hathitrust v mississippi_river pacificoast ed v alabama florida georgia louisiana mississippi north_carolina south_carolina ed_index_v colorado kansas louisiana montana nebraska new_mexico north dakota oklahoma south_dakota texas wyoming ed v arizona california nevada utah ed v oregon washington etc ed v illinois iowa michigan minnesota wisconsin etc ed externalinks hathi trust automobile blue book university south_carolina library automobile blue book collection category_travel_guide_books category_series books_category publications_established category road transportation united_states category_books abouthe united_states category_books canada_category_tourism united_states"},{"title":"Aviareps","description":"aviareps group is a general sales agent gsa of airline and tourism sales representative founded in germany the corporation is now operating through a network offices in countries file aviareps headquarterjpg frame aviareps headquarters in munich germany history aviareps airline management gmbh was founded in germany in withe aim of meeting the growing demands of the aviation and tourism sales representation market four years later the aviareps airline management gmbh transitioned into a joint stock company named aviareps ag thexpansion to the global company aviareps began in when aviareps opened offices in europe and later expanded into russia united states asiaustraliand indiafrica latin americand south east asia in the german headquartered company started new businessegments like tourismanagement and further diversified its business portfolio in by entering the trade and retail promotion segment shareholdings aviarepshare finance share capital reflects a nominal registered capital of euros thereof are common shares and are non par preference shares without voting right all shares are held by private people withexception of percent owned by an investment company see also general sales agent airlines category marketing companies category aviation category tourism","main_words":["aviareps","group","general","sales","agent","airline","tourism","sales","representative","founded","germany","corporation","operating","network","offices","countries","file","aviareps","frame","aviareps","headquarters","munich","germany","history","aviareps","airline","management","gmbh","founded","germany","withe_aim","meeting","growing","demands","aviation","tourism","sales","representation","market","four_years_later","aviareps","airline","management","gmbh","joint","stock","company","named","aviareps","thexpansion","global","company","aviareps","began","aviareps","opened","offices","europe","later","expanded","russia","united_states","latin_americand","south_east_asia","german","headquartered","company","started","new","like","tourismanagement","diversified","business","portfolio","entering","trade","retail","promotion","segment","finance","share","capital","reflects","nominal","registered","capital","common","shares","non","par","preference","shares","without","voting","right","shares","held","private","people","withexception","percent","owned","investment","company","see_also","general","sales","agent","airlines","category","marketing","companies_category","aviation","category_tourism"],"clean_bigrams":[["aviareps","group"],["general","sales"],["sales","agent"],["tourism","sales"],["sales","representative"],["representative","founded"],["network","offices"],["countries","file"],["file","aviareps"],["frame","aviareps"],["aviareps","headquarters"],["munich","germany"],["germany","history"],["history","aviareps"],["aviareps","airline"],["airline","management"],["management","gmbh"],["withe","aim"],["growing","demands"],["tourism","sales"],["sales","representation"],["representation","market"],["market","four"],["four","years"],["years","later"],["aviareps","airline"],["airline","management"],["management","gmbh"],["joint","stock"],["stock","company"],["company","named"],["named","aviareps"],["global","company"],["company","aviareps"],["aviareps","began"],["aviareps","opened"],["opened","offices"],["later","expanded"],["russia","united"],["united","states"],["latin","americand"],["americand","south"],["south","east"],["east","asia"],["german","headquartered"],["headquartered","company"],["company","started"],["started","new"],["like","tourismanagement"],["business","portfolio"],["retail","promotion"],["promotion","segment"],["finance","share"],["share","capital"],["capital","reflects"],["nominal","registered"],["registered","capital"],["common","shares"],["non","par"],["par","preference"],["preference","shares"],["shares","without"],["without","voting"],["voting","right"],["private","people"],["people","withexception"],["percent","owned"],["investment","company"],["company","see"],["see","also"],["also","general"],["general","sales"],["sales","agent"],["agent","airlines"],["airlines","category"],["category","marketing"],["marketing","companies"],["companies","category"],["category","aviation"],["aviation","category"],["category","tourism"]],"all_collocations":["aviareps group","general sales","sales agent","tourism sales","sales representative","representative founded","network offices","countries file","file aviareps","frame aviareps","aviareps headquarters","munich germany","germany history","history aviareps","aviareps airline","airline management","management gmbh","withe aim","growing demands","tourism sales","sales representation","representation market","market four","four years","years later","aviareps airline","airline management","management gmbh","joint stock","stock company","company named","named aviareps","global company","company aviareps","aviareps began","aviareps opened","opened offices","later expanded","russia united","united states","latin americand","americand south","south east","east asia","german headquartered","headquartered company","company started","started new","like tourismanagement","business portfolio","retail promotion","promotion segment","finance share","share capital","capital reflects","nominal registered","registered capital","common shares","non par","par preference","preference shares","shares without","without voting","voting right","private people","people withexception","percent owned","investment company","company see","see also","also general","general sales","sales agent","agent airlines","airlines category","category marketing","marketing companies","companies category","category aviation","aviation category","category tourism"],"new_description":"aviareps group general sales agent airline tourism sales representative founded germany corporation operating network offices countries file aviareps frame aviareps headquarters munich germany history aviareps airline management gmbh founded germany withe_aim meeting growing demands aviation tourism sales representation market four_years_later aviareps airline management gmbh joint stock company named aviareps thexpansion global company aviareps began aviareps opened offices europe later expanded russia united_states latin_americand south_east_asia german headquartered company started new like tourismanagement diversified business portfolio entering trade retail promotion segment finance share capital reflects nominal registered capital common shares non par preference shares without voting right shares held private people withexception percent owned investment company see_also general sales agent airlines category marketing companies_category aviation category_tourism"},{"title":"Babymoon","description":"a babymoon is a relaxing vacation taken by couples who arexpecting a child babymoons are often taken in luxurious locations as the babymoon iseen as the last vacation thathe couple will have alone until their child leaves home when they reach legal age babymoon travel is typically taken during the second trimester of pregnancy when pre natal complications and pre term babies pre term birth risk is at its lowest first coined by social anthropologist sheila kitzinger in as a term referencing the post natal time period that ispent with parent and child the term has evolved with time to indicate a vacation period sheila kitzinger was the first person to printhe term babymoon in describing the honeymoon like phase of parenting immediately after giving birthe term took on a separate cultural meaning in thearly s when celebrity couples trips during their pregnancies were dubbed babymoons by pop culture pop culture magazines the term was picked up by travel agencies and bloggers to describe the lastriparents will take sans child in the term wasolidified as a cultural phenomenon when the babymoon film the babymoon was written andeveloped by bailey kobe as a feature length film and iseto be released february the portmanteau of honeymoon and baby has been around since thearly s its first print is traced to and it began to gain slightraction when used as a marketing tool in for a luxury resort pop culture many celebrities are indulging in the babymoon vacation taking both luxurious and low key trips to far off destinations all over the world pop culture icons william duke of cambridge catherine duchess of cambridge took a babymoon vacation to mustique in and once again babymooneduring their second pregnancy with a trip to scotland at balmoral castle celebrity couples kim kardashiand kanye west went on their first babymoon to paris in followed by several mini vacations in the babymoon trend expanded in bollywood when several celebrity couples including saif ali khand kareena kapoor khan publicly took babymoon vacations and shared them with entertainment newsources a film abouthe trend islated forelease in the babymoon is the first fullength feature film about babymoon cultural phenomena written andirected by bailey kobe it is the first film that explored the idea of taking a romantic vacation in the middle of pregnancy and whathe impact of that vacation is on the relationship of the parents unplanned birth in kim and fred spratt of jacksonew jersey took a babymoon vacation to portugal withe full medical clearance of their physician tragedy struck when kim pre maturely gave birth to twins hudson and hayden spratt only one twin survived and kim and fred were stranded in portugal until hayden spratthe surviving twin was able to be flown back to the united states on a medical flight withe outbreak of zika in the center for disease control cdc released a statement in january cautioning potential babymoon travelers the threat is continuing to be monitored by the cdc with updates being posted on their website references category types of tourism category types of travel","main_words":["babymoon","vacation","taken","couples","child","often","taken","luxurious","locations","babymoon","iseen","last","vacation","thathe","couple","alone","child","leaves","home","reach","legal","age","babymoon","travel","typically","taken","second","pregnancy","pre","natal","complications","pre","term","babies","pre","term","birth","risk","lowest","first","coined","social","anthropologist","term","post","natal","time_period","parent","child","term","evolved","time","indicate","vacation","period","first_person","term","babymoon","describing","honeymoon","like","phase","immediately","giving","term","took","separate","cultural","meaning","thearly","celebrity","couples","trips","dubbed","pop_culture","pop_culture","magazines","term","picked","travel_agencies","bloggers","describe","take","child","term","cultural","phenomenon","babymoon","film","babymoon","written","andeveloped","bailey","kobe","feature","length","film","released","february","portmanteau","honeymoon","baby","around","since_thearly","first","print","traced","began","gain","used","marketing","tool","luxury","resort","pop_culture","many","celebrities","babymoon","vacation","taking","luxurious","low","key","trips","far","destinations","world","pop_culture","william","duke","cambridge","catherine","cambridge","took","babymoon","vacation","second","pregnancy","trip","scotland","castle","celebrity","couples","kim","west","went","first","babymoon","paris","followed","several","mini","vacations","babymoon","trend","expanded","several","celebrity","couples","including","ali","khand","khan","publicly","took","babymoon","vacations","shared","entertainment","film","abouthe","trend","babymoon","first","fullength","feature","film","babymoon","cultural","phenomena","written","andirected","bailey","kobe","first","film","explored","idea","taking","romantic","vacation","middle","pregnancy","whathe","impact","vacation","relationship","parents","birth","kim","fred","jersey","took","babymoon","vacation","portugal","withe","full","medical","clearance","physician","tragedy","struck","kim","pre","gave","birth","twins","hudson","hayden","one","twin","survived","kim","fred","stranded","portugal","hayden","surviving","twin","able","flown","back","united_states","medical","flight","withe","outbreak","center","disease","control","cdc","released","statement","january","potential","babymoon","travelers","threat","continuing","monitored","cdc","updates","posted","website","references_category","types","tourism_category_types","travel"],"clean_bigrams":[["babymoon","vacation"],["vacation","taken"],["often","taken"],["luxurious","locations"],["babymoon","iseen"],["last","vacation"],["vacation","thathe"],["thathe","couple"],["child","leaves"],["leaves","home"],["reach","legal"],["legal","age"],["age","babymoon"],["babymoon","travel"],["typically","taken"],["second","pregnancy"],["pre","natal"],["natal","complications"],["pre","term"],["term","babies"],["babies","pre"],["pre","term"],["term","birth"],["birth","risk"],["lowest","first"],["first","coined"],["social","anthropologist"],["post","natal"],["natal","time"],["time","period"],["vacation","period"],["first","person"],["term","babymoon"],["honeymoon","like"],["like","phase"],["term","took"],["separate","cultural"],["cultural","meaning"],["celebrity","couples"],["couples","trips"],["pop","culture"],["culture","pop"],["pop","culture"],["culture","magazines"],["travel","agencies"],["cultural","phenomenon"],["babymoon","film"],["written","andeveloped"],["bailey","kobe"],["feature","length"],["length","film"],["released","february"],["around","since"],["since","thearly"],["first","print"],["marketing","tool"],["luxury","resort"],["resort","pop"],["pop","culture"],["culture","many"],["many","celebrities"],["babymoon","vacation"],["vacation","taking"],["low","key"],["key","trips"],["world","pop"],["pop","culture"],["william","duke"],["cambridge","catherine"],["cambridge","took"],["took","babymoon"],["babymoon","vacation"],["second","pregnancy"],["castle","celebrity"],["celebrity","couples"],["couples","kim"],["west","went"],["first","babymoon"],["several","mini"],["mini","vacations"],["babymoon","trend"],["trend","expanded"],["several","celebrity"],["celebrity","couples"],["couples","including"],["ali","khand"],["khan","publicly"],["publicly","took"],["took","babymoon"],["babymoon","vacations"],["film","abouthe"],["abouthe","trend"],["first","fullength"],["fullength","feature"],["feature","film"],["babymoon","cultural"],["cultural","phenomena"],["phenomena","written"],["written","andirected"],["bailey","kobe"],["first","film"],["romantic","vacation"],["whathe","impact"],["jersey","took"],["took","babymoon"],["babymoon","vacation"],["portugal","withe"],["withe","full"],["full","medical"],["medical","clearance"],["physician","tragedy"],["tragedy","struck"],["kim","pre"],["gave","birth"],["twins","hudson"],["one","twin"],["twin","survived"],["surviving","twin"],["flown","back"],["united","states"],["medical","flight"],["flight","withe"],["withe","outbreak"],["disease","control"],["control","cdc"],["cdc","released"],["potential","babymoon"],["babymoon","travelers"],["website","references"],["references","category"],["category","types"],["tourism","category"],["category","types"]],"all_collocations":["babymoon vacation","vacation taken","often taken","luxurious locations","babymoon iseen","last vacation","vacation thathe","thathe couple","child leaves","leaves home","reach legal","legal age","age babymoon","babymoon travel","typically taken","second pregnancy","pre natal","natal complications","pre term","term babies","babies pre","pre term","term birth","birth risk","lowest first","first coined","social anthropologist","post natal","natal time","time period","vacation period","first person","term babymoon","honeymoon like","like phase","term took","separate cultural","cultural meaning","celebrity couples","couples trips","pop culture","culture pop","pop culture","culture magazines","travel agencies","cultural phenomenon","babymoon film","written andeveloped","bailey kobe","feature length","length film","released february","around since","since thearly","first print","marketing tool","luxury resort","resort pop","pop culture","culture many","many celebrities","babymoon vacation","vacation taking","low key","key trips","world pop","pop culture","william duke","cambridge catherine","cambridge took","took babymoon","babymoon vacation","second pregnancy","castle celebrity","celebrity couples","couples kim","west went","first babymoon","several mini","mini vacations","babymoon trend","trend expanded","several celebrity","celebrity couples","couples including","ali khand","khan publicly","publicly took","took babymoon","babymoon vacations","film abouthe","abouthe trend","first fullength","fullength feature","feature film","babymoon cultural","cultural phenomena","phenomena written","written andirected","bailey kobe","first film","romantic vacation","whathe impact","jersey took","took babymoon","babymoon vacation","portugal withe","withe full","full medical","medical clearance","physician tragedy","tragedy struck","kim pre","gave birth","twins hudson","one twin","twin survived","surviving twin","flown back","united states","medical flight","flight withe","withe outbreak","disease control","control cdc","cdc released","potential babymoon","babymoon travelers","website references","references category","category types","tourism category","category types"],"new_description":"babymoon vacation taken couples child often taken luxurious locations babymoon iseen last vacation thathe couple alone child leaves home reach legal age babymoon travel typically taken second pregnancy pre natal complications pre term babies pre term birth risk lowest first coined social anthropologist term post natal time_period parent child term evolved time indicate vacation period first_person term babymoon describing honeymoon like phase immediately giving term took separate cultural meaning thearly celebrity couples trips dubbed pop_culture pop_culture magazines term picked travel_agencies bloggers describe take child term cultural phenomenon babymoon film babymoon written andeveloped bailey kobe feature length film released february portmanteau honeymoon baby around since_thearly first print traced began gain used marketing tool luxury resort pop_culture many celebrities babymoon vacation taking luxurious low key trips far destinations world pop_culture william duke cambridge catherine cambridge took babymoon vacation second pregnancy trip scotland castle celebrity couples kim west went first babymoon paris followed several mini vacations babymoon trend expanded several celebrity couples including ali khand khan publicly took babymoon vacations shared entertainment film abouthe trend babymoon first fullength feature film babymoon cultural phenomena written andirected bailey kobe first film explored idea taking romantic vacation middle pregnancy whathe impact vacation relationship parents birth kim fred jersey took babymoon vacation portugal withe full medical clearance physician tragedy struck kim pre gave birth twins hudson hayden one twin survived kim fred stranded portugal hayden surviving twin able flown back united_states medical flight withe outbreak center disease control cdc released statement january potential babymoon travelers threat continuing monitored cdc updates posted website references_category types tourism_category_types travel"},{"title":"Backpacking (travel)","description":"backpacker file urban backpackingjpg thumb px two denmark danish backpackers in front of the vienna state opera in july file berghaus vulcanjpg thumb px a large internal frame backpacks for outdoor activities backpacking is a form of low cost independentravel it includes the use of a backpack that is easily carried for long distances or long periods of time the use of public transport inexpensive lodging such as youthostel s often a longer duration of the trip when compared with conventional vacations and often an interest in meeting locals as well aseeing sights backpacking may include backpacking wilderness adventures local travel and travel to nearby countries while working from the country in which they are based the definition of a backpacker has evolved as travellers from different culture s and regions participate a paper said backpackers constituted a heterogeneous group with respecto the diversity of rationales and meanings attached to their travel experiences they also displayed a common commitmento a non institutionalised form of travel which was central to their self identification as backpackers backpacking as a lifestyle and as a business has grown considerably in the s as a result of low cost airlines and hostels or budget accommodations in many parts of the world visa laws in many countriesuch as ireland australia canada new zealand the united kingdom enable backpackers with restricted visas to work and supporthemselves while they are in those countrieseventeenth century italian adventurer gemelli careri giovanni francesco gemelli careri has been suggested as one of the world s first backpackers while people have travelled for hundreds of years witheir possessions on their backs the modern concept of backpacking can be traced at least partially to the hippie trail of the s and s which in turn followed sections of the old silk road some backpackers follow the same trail today over the past few decades backpackers have descended on south east asia in huge numbers with popular thaislands and several previously sleepy towns in thailand cambodiand laos being transformed by the influx of travellers backpacking in europe south america central americaustraliand new zealand has also become more popular and there are several well trodden routes around the world that backpackers tend to stick to technological developments and improvements have contributed to changes in backpacking traditionally backpackers did notravel with expensivelectronic equipment like laptop computers digital cameras and pda s because of concerns aboutheft damage and additionaluggage weight however the desire to stay connected coupled with breakthroughs in lightweight electronics has given rise to a trend that has been termed flashpacking backpackers have traditionally hauled their possessions in litre to litre backpacks but roller wheeled suitcases and some less traditional carrying methods have become more common and there has been a trend towards keeping pack weights under the kg carry on limit of most airlines of importance to some backpackers is a sense of authenticity philosophy authenticity backpacking is perceived as being more than a tourism holiday but a means of education backpackers wanto experience the real destination rather than the packaged version often associated with mass tourism whichas led to the assertion that backpackers are anti tourist for manyoung people inorthern europe australia new zealand israel backpacking is a rite of passage in canada it is quite common for gap year students to visit europe backpackers are less commonly from china india the united states japand south korea particularly when taking into accountheir large populations accounted for by visa restrictions but it is also gradually becoming more popular among affluent people from those countries backpacking trips were traditionally undertaken either in a gap year between high school and university or between the latter and the commencement of work however the average of backpackers has gradually increased over time and it is common for people in their s and older to backpack during an extended career break some retirees enjoy backpacking criticism backpacking has been criticised with some criticism dating back to travellers behaviour along the hippie trail for example the host countries and other travellers may disagree withe actions of backpackers however the perception of backpackerseems to have improved as backpacking has become more mainstream another criticism is that even though one of the primary aims of backpacking is to seek the authentic the majority of backpackerspend most of their time interacting with other backpackers and interactions with locals are of secondary importance planning and research planning and research can be an important part of backpacking aided by such guides from companies like lonely planet and rough guides books by travel authorsuch as rick steves and various digital and online resourcesuch as wikivoyage resources provide information about such topics as the language culture food and history provide listings of accommodation and places to eatogether with maps of key locations digital format guidebooks are becoming more popular especially since the advent of smart phones and lightweight netbooks and laptops terms used to describe backpacking with more money and resources include flashpacking a combination oflash as in fancy with backpacking and poshpacking a combination of posh an informal adjective for upper class and backpacking a trendubbed begpacking combining begging and backpacking arose in the mid s where travelersupportheir travels by begging on the street and fundraising online the trend has drawn criticism for taking money away from people in actual need see also adventure travel grand tour hostelling international walking tour travel pack externalinks category backpacking categoryouthostelling category hitchhiking","main_words":["backpacker","file","urban","thumb","px","two","denmark","danish","backpackers","front","vienna","state","opera","july","file","thumb","px","large","internal","frame","outdoor","activities","backpacking","form","low_cost","independentravel","includes","use","backpack","easily","carried","long_distances","long_periods","time","use","public_transport","inexpensive","lodging","youthostel","often","longer","duration","trip","compared","conventional","vacations","often","interest","meeting","locals","well","sights","backpacking","may_include","backpacking_wilderness","adventures","local","travel","travel","nearby","countries","working","country","based","definition","backpacker","evolved","travellers","different","culture","regions","participate","paper","said","backpackers","constituted","group","respecto","diversity","meanings","attached","travel","experiences","also","displayed","common","commitmento","non","form","travel","central","self","identification","backpackers","backpacking","lifestyle","business","grown","considerably","result","low_cost","airlines","hostels","budget","accommodations","many_parts","world","visa","laws","many_countriesuch","ireland","australia","canada","new_zealand","united_kingdom","enable","backpackers","restricted","visas","work","century","italian","adventurer","giovanni","francesco","suggested","one","world","first","backpackers","people","travelled","hundreds","years","witheir","backs","modern","concept","backpacking","traced","least","partially","hippie_trail","turn","followed","sections","old","silk","road","backpackers","follow","trail","today","past","decades","backpackers","descended","south_east_asia","huge","numbers","popular","several","previously","towns","thailand","cambodiand","laos","transformed","influx","travellers","backpacking","europe","south_america","central","new_zealand","also","become_popular","several","well","routes","around","world","backpackers","tend","stick","technological","developments","improvements","contributed","changes","backpacking","traditionally","backpackers","equipment","like","laptop","computers","digital","cameras","concerns","damage","weight","however","desire","stay","connected","coupled","lightweight","given","rise","trend","termed","flashpacking","backpackers","traditionally","roller","less","traditional","carrying","methods","become","common","trend","towards","keeping","pack","carry","limit","airlines","importance","backpackers","sense","authenticity","philosophy","authenticity","backpacking","perceived","tourism","holiday","means","education","backpackers","wanto","experience","real","destination","rather","packaged","version","often","associated","mass_tourism","whichas","led","backpackers","anti","tourist","people","inorthern","europe","australia","new_zealand","israel","backpacking","rite","passage","canada","quite","common","gap","year","students","visit","europe","backpackers","less_commonly","china","india","united_states","japand","south_korea","particularly","taking","large","populations","accounted","visa","restrictions","also","gradually","becoming","popular_among","affluent","people","countries","backpacking","trips","traditionally","undertaken","either","gap","year","high_school","university","latter","work","however","average","backpackers","gradually","increased","time","common","people","older","backpack","extended","career","break","enjoy","backpacking","criticism","backpacking","criticised","criticism","dating_back","travellers","behaviour","along","hippie_trail","example","host","countries","travellers","may","disagree","withe","actions","backpackers","however","perception","improved","backpacking","become","mainstream","another","criticism","even_though","one","primary","aims","backpacking","seek","authentic","majority","time","interacting","backpackers","interactions","locals","secondary","importance","planning","research","planning","research","important_part","backpacking","aided","guides","companies","like","lonely_planet","rough_guides","books","travel","authorsuch","rick","steves","various","digital","online","wikivoyage","resources","provide_information","topics","language","culture","food","history","provide","listings","accommodation","places","maps","key","locations","digital","format","guidebooks","becoming","popular","especially","since","advent","smart","phones","lightweight","terms","used","describe","backpacking","money","resources","include","flashpacking","combination","fancy","backpacking","combination","informal","upper_class","backpacking","combining","backpacking","arose","mid","travels","street","fundraising","online","trend","drawn","criticism","taking","money","away","people","actual","need","see_also","adventure_travel","grand_tour","hostelling_international","walking_tour","travel","pack","categoryouthostelling_category","hitchhiking"],"clean_bigrams":[["backpacker","file"],["file","urban"],["thumb","px"],["px","two"],["two","denmark"],["denmark","danish"],["danish","backpackers"],["vienna","state"],["state","opera"],["july","file"],["thumb","px"],["large","internal"],["internal","frame"],["outdoor","activities"],["activities","backpacking"],["low","cost"],["cost","independentravel"],["easily","carried"],["long","distances"],["long","periods"],["public","transport"],["transport","inexpensive"],["inexpensive","lodging"],["longer","duration"],["conventional","vacations"],["meeting","locals"],["sights","backpacking"],["backpacking","may"],["may","include"],["include","backpacking"],["backpacking","wilderness"],["wilderness","adventures"],["adventures","local"],["local","travel"],["nearby","countries"],["different","culture"],["regions","participate"],["paper","said"],["said","backpackers"],["backpackers","constituted"],["meanings","attached"],["travel","experiences"],["also","displayed"],["common","commitmento"],["self","identification"],["backpackers","backpacking"],["grown","considerably"],["low","cost"],["cost","airlines"],["budget","accommodations"],["many","parts"],["world","visa"],["visa","laws"],["many","countriesuch"],["ireland","australia"],["australia","canada"],["canada","new"],["new","zealand"],["united","kingdom"],["kingdom","enable"],["enable","backpackers"],["restricted","visas"],["century","italian"],["italian","adventurer"],["giovanni","francesco"],["first","backpackers"],["years","witheir"],["modern","concept"],["least","partially"],["hippie","trail"],["turn","followed"],["followed","sections"],["old","silk"],["silk","road"],["backpackers","follow"],["trail","today"],["decades","backpackers"],["south","east"],["east","asia"],["huge","numbers"],["several","previously"],["thailand","cambodiand"],["cambodiand","laos"],["travellers","backpacking"],["europe","south"],["south","america"],["america","central"],["new","zealand"],["also","become"],["several","well"],["routes","around"],["backpackers","tend"],["technological","developments"],["backpacking","traditionally"],["traditionally","backpackers"],["equipment","like"],["like","laptop"],["laptop","computers"],["computers","digital"],["digital","cameras"],["weight","however"],["stay","connected"],["connected","coupled"],["given","rise"],["termed","flashpacking"],["flashpacking","backpackers"],["less","traditional"],["traditional","carrying"],["carrying","methods"],["trend","towards"],["towards","keeping"],["keeping","pack"],["authenticity","philosophy"],["philosophy","authenticity"],["authenticity","backpacking"],["tourism","holiday"],["education","backpackers"],["backpackers","wanto"],["wanto","experience"],["real","destination"],["destination","rather"],["packaged","version"],["version","often"],["often","associated"],["mass","tourism"],["tourism","whichas"],["whichas","led"],["anti","tourist"],["people","inorthern"],["inorthern","europe"],["europe","australia"],["australia","new"],["new","zealand"],["zealand","israel"],["israel","backpacking"],["quite","common"],["gap","year"],["year","students"],["visit","europe"],["europe","backpackers"],["less","commonly"],["china","india"],["united","states"],["states","japand"],["japand","south"],["south","korea"],["korea","particularly"],["large","populations"],["populations","accounted"],["visa","restrictions"],["also","gradually"],["gradually","becoming"],["popular","among"],["among","affluent"],["affluent","people"],["countries","backpacking"],["backpacking","trips"],["traditionally","undertaken"],["undertaken","either"],["gap","year"],["high","school"],["work","however"],["gradually","increased"],["extended","career"],["career","break"],["enjoy","backpacking"],["backpacking","criticism"],["criticism","backpacking"],["criticism","dating"],["dating","back"],["travellers","behaviour"],["behaviour","along"],["hippie","trail"],["host","countries"],["travellers","may"],["may","disagree"],["disagree","withe"],["withe","actions"],["backpackers","however"],["mainstream","another"],["another","criticism"],["even","though"],["though","one"],["primary","aims"],["time","interacting"],["secondary","importance"],["importance","planning"],["research","planning"],["important","part"],["backpacking","aided"],["companies","like"],["like","lonely"],["lonely","planet"],["rough","guides"],["guides","books"],["travel","authorsuch"],["rick","steves"],["various","digital"],["wikivoyage","resources"],["resources","provide"],["provide","information"],["language","culture"],["culture","food"],["history","provide"],["provide","listings"],["key","locations"],["locations","digital"],["digital","format"],["format","guidebooks"],["popular","especially"],["especially","since"],["smart","phones"],["terms","used"],["describe","backpacking"],["resources","include"],["include","flashpacking"],["upper","class"],["backpacking","arose"],["fundraising","online"],["drawn","criticism"],["taking","money"],["money","away"],["actual","need"],["need","see"],["see","also"],["also","adventure"],["adventure","travel"],["travel","grand"],["grand","tour"],["tour","hostelling"],["hostelling","international"],["international","walking"],["walking","tour"],["tour","travel"],["travel","pack"],["pack","externalinks"],["externalinks","category"],["category","backpacking"],["backpacking","categoryouthostelling"],["categoryouthostelling","category"],["category","hitchhiking"]],"all_collocations":["backpacker file","file urban","px two","two denmark","denmark danish","danish backpackers","vienna state","state opera","july file","large internal","internal frame","outdoor activities","activities backpacking","low cost","cost independentravel","easily carried","long distances","long periods","public transport","transport inexpensive","inexpensive lodging","longer duration","conventional vacations","meeting locals","sights backpacking","backpacking may","may include","include backpacking","backpacking wilderness","wilderness adventures","adventures local","local travel","nearby countries","different culture","regions participate","paper said","said backpackers","backpackers constituted","meanings attached","travel experiences","also displayed","common commitmento","self identification","backpackers backpacking","grown considerably","low cost","cost airlines","budget accommodations","many parts","world visa","visa laws","many countriesuch","ireland australia","australia canada","canada new","new zealand","united kingdom","kingdom enable","enable backpackers","restricted visas","century italian","italian adventurer","giovanni francesco","first backpackers","years witheir","modern concept","least partially","hippie trail","turn followed","followed sections","old silk","silk road","backpackers follow","trail today","decades backpackers","south east","east asia","huge numbers","several previously","thailand cambodiand","cambodiand laos","travellers backpacking","europe south","south america","america central","new zealand","also become","several well","routes around","backpackers tend","technological developments","backpacking traditionally","traditionally backpackers","equipment like","like laptop","laptop computers","computers digital","digital cameras","weight however","stay connected","connected coupled","given rise","termed flashpacking","flashpacking backpackers","less traditional","traditional carrying","carrying methods","trend towards","towards keeping","keeping pack","authenticity philosophy","philosophy authenticity","authenticity backpacking","tourism holiday","education backpackers","backpackers wanto","wanto experience","real destination","destination rather","packaged version","version often","often associated","mass tourism","tourism whichas","whichas led","anti tourist","people inorthern","inorthern europe","europe australia","australia new","new zealand","zealand israel","israel backpacking","quite common","gap year","year students","visit europe","europe backpackers","less commonly","china india","united states","states japand","japand south","south korea","korea particularly","large populations","populations accounted","visa restrictions","also gradually","gradually becoming","popular among","among affluent","affluent people","countries backpacking","backpacking trips","traditionally undertaken","undertaken either","gap year","high school","work however","gradually increased","extended career","career break","enjoy backpacking","backpacking criticism","criticism backpacking","criticism dating","dating back","travellers behaviour","behaviour along","hippie trail","host countries","travellers may","may disagree","disagree withe","withe actions","backpackers however","mainstream another","another criticism","even though","though one","primary aims","time interacting","secondary importance","importance planning","research planning","important part","backpacking aided","companies like","like lonely","lonely planet","rough guides","guides books","travel authorsuch","rick steves","various digital","wikivoyage resources","resources provide","provide information","language culture","culture food","history provide","provide listings","key locations","locations digital","digital format","format guidebooks","popular especially","especially since","smart phones","terms used","describe backpacking","resources include","include flashpacking","upper class","backpacking arose","fundraising online","drawn criticism","taking money","money away","actual need","need see","see also","also adventure","adventure travel","travel grand","grand tour","tour hostelling","hostelling international","international walking","walking tour","tour travel","travel pack","pack externalinks","externalinks category","category backpacking","backpacking categoryouthostelling","categoryouthostelling category","category hitchhiking"],"new_description":"backpacker file urban thumb px two denmark danish backpackers front vienna state opera july file thumb px large internal frame outdoor activities backpacking form low_cost independentravel includes use backpack easily carried long_distances long_periods time use public_transport inexpensive lodging youthostel often longer duration trip compared conventional vacations often interest meeting locals well sights backpacking may_include backpacking_wilderness adventures local travel travel nearby countries working country based definition backpacker evolved travellers different culture regions participate paper said backpackers constituted group respecto diversity meanings attached travel experiences also displayed common commitmento non form travel central self identification backpackers backpacking lifestyle business grown considerably result low_cost airlines hostels budget accommodations many_parts world visa laws many_countriesuch ireland australia canada new_zealand united_kingdom enable backpackers restricted visas work century italian adventurer giovanni francesco suggested one world first backpackers people travelled hundreds years witheir backs modern concept backpacking traced least partially hippie_trail turn followed sections old silk road backpackers follow trail today past decades backpackers descended south_east_asia huge numbers popular several previously towns thailand cambodiand laos transformed influx travellers backpacking europe south_america central new_zealand also become_popular several well routes around world backpackers tend stick technological developments improvements contributed changes backpacking traditionally backpackers equipment like laptop computers digital cameras concerns damage weight however desire stay connected coupled lightweight given rise trend termed flashpacking backpackers traditionally roller less traditional carrying methods become common trend towards keeping pack carry limit airlines importance backpackers sense authenticity philosophy authenticity backpacking perceived tourism holiday means education backpackers wanto experience real destination rather packaged version often associated mass_tourism whichas led backpackers anti tourist people inorthern europe australia new_zealand israel backpacking rite passage canada quite common gap year students visit europe backpackers less_commonly china india united_states japand south_korea particularly taking large populations accounted visa restrictions also gradually becoming popular_among affluent people countries backpacking trips traditionally undertaken either gap year high_school university latter work however average backpackers gradually increased time common people older backpack extended career break enjoy backpacking criticism backpacking criticised criticism dating_back travellers behaviour along hippie_trail example host countries travellers may disagree withe actions backpackers however perception improved backpacking become mainstream another criticism even_though one primary aims backpacking seek authentic majority time interacting backpackers interactions locals secondary importance planning research planning research important_part backpacking aided guides companies like lonely_planet rough_guides books travel authorsuch rick steves various digital online wikivoyage resources provide_information topics language culture food history provide listings accommodation places maps key locations digital format guidebooks becoming popular especially since advent smart phones lightweight terms used describe backpacking money resources include flashpacking combination fancy backpacking combination informal upper_class backpacking combining backpacking arose mid travels street fundraising online trend drawn criticism taking money away people actual need see_also adventure_travel grand_tour hostelling_international walking_tour travel pack externalinks_category_backpacking categoryouthostelling_category hitchhiking"},{"title":"Baedeker","description":"image baedekergb png thumb right upright baedeker s great britain guide for is typical of most of the different country guides produced verlag karl baedeker founded by karl baedeker on july is a german publisher and pioneer in the business of worldwide travel guide s the guides often referred to simply as baedeker guides baedekers a term sometimes used to refer to similar works from other publishers or travel guides in general contain among other things maps and introductions information about routes and travel facilities andescriptions of noteworthy buildingsights attractions and museums written by specialists history karl baedeker karl baedeker see article had three sons ernst karl and fritz and after his death each in turn dictated by events took over the running of the firm ernst baedeker following the death of karl baedeker his eldest son ernst baedeker became thead of the firm after his training as a bookseller in braunschweig leipzig and stuttgart he had spent some time athenglish publishing house williams norgate in london new year s day he had joined his father s publishing firm as a partner and justen months later he was running it on his own his tenure athelm of the firm saw the publication of three new travel guides in viz the first baedeker travel guide in english the handbook on the rhine from switzerland to holland a guide in german on italy ober italien the first of a series on italy whichis father had planned and one in french alson italy italie septentrionalernst baedeker died unexpectedly on july of sunstroke in egypt and his younger brother karl assumed charge of the publishing house karl baedeker ii karl baedeker ii continued the work started by his brothernst in addition to the ongoing revision of existinguides he published new guides four in german seven in english and three in french viz new german titles london italien zweiter teil mittel italien und rom italien dritter teil unter italien sizilien undie liparischen inselnew english titleswitzerland paris central italy and rome southern italy including sicily the lipary islandsouthern germany and the austrian empire northern italy as far as leghorn florence and anconand the island of corsica new french titles paris londres l itale deuxi me partie l italie centralet rome l italie troisi me partie l italie du sud la sicillet les lipari karl baedeker ii worked withis younger brother fritz who joined the firm in as a partner and became the general manager in according to the source cited here karl afflicted with an incurable mental condition moved to a sanatorium near esslingen am neckar where he remained for the rest of his life fritz baedeker under fritz baedeker the company grew rapidly in the baedeker bookselling business wasold in he moved the company s headquarters from koblenz to leipzig a major move forward as most of the reputable major german publishing houses were located there he also persuadeduard wagner the baedeker cartographer in darmstadto move to leipzig and establish a new company with ernst debes a talented cartographer from justus perthes a leading cartography firm in gotha the new company was named wagner andebes with offices adjacento the new baedeker address herbert warren wind the author of the house of baedeker wrote file schweiz karte baedeker jpg thumb right map of switzerland published in a baedeker travel guide he added michael wild the baedeker chroniclerefers to the baedeker maps as a feast for theye thexpansion was fast and furious new editions were now printed by severaleipzig printers buthe bulk of the reviseditions of pre guides continued to be printed where all baedeker guides had been produced before the gd baedeker printing works in essen fritz ventured into territory none of his predecessors had covered before inside and outsideuropeg russia swedenorway palestine syria egypt greece the mediterranean usa canada indiand south east asia plans to publish guides on chinand japan had to be abandoned when war broke out in at home the list of guides on german regions and cities continued to grow his was the golden age of baedeker travel guides fritz also had the good fortune to have three of his four sons hans ernst andietrich beside him in the firm as editors and writers karl baedeker scientist karl baedeker iii the fourth son entered academiand rose to become a professor of physics athe university of jena but he was killed in action athe battle of li ge in august it was hison karl friedrich who revived verlag karl baedeker after the second world war during his reign which lasted over years fritz produced new baedekers as they came to be known universally the baedeker travel guides became so popular that baedekering became an english language term for the purpose of traveling in a country to write a travel guide or travelogue about it fritz baedeker became the most successful travel guide publisher of all time and turned the publishing house into the most famous and reputable publisher of travel guides in the world in leipzig university conferred an honorary phd a rare honour athe time on him at its th anniversary convocation this era in its history was broughto an end by the outbreak of world war i after which the house of baedeker went into decline the victim of the post war international geopolitical and economiconditions consequently in fritz broke with tradition and for some time thereafter baedeker guides to german cities and regions carried a limited amount of advertising fritz baedeker s released guidebooks in german from to and in english from to twelve french titles were published between and hans baedeker hans baedeker theldest son ofritz baedeker took charge of the company in difficultimes his two brothers ernst andietrich were withim running the company the firm had lost heavily by investing in government bonds during the first world war the war had not only wreaked havoc on tourism it had also resulted in anti german sentiments around the world particularly in americand france where the guidebooks had been very popular and from where tourists had come in droves rising inflation too played its part in affecting tourism and the balance sheet of the publishing house the great depression put paid to any hopes of an early recovery in its fortunes the arrival of nazismade things even worse for anything connected with tourism for the baedeker publishing house it culminated in the destruction of their headquarters in leipzig with totaloss of the firm s archives in thearly hours of december when britain s royal air force bombarded the city see also baedeker blitz for baedekeraids hans was extremely proud of whathe baedeker clan had achieved and not one to give up trying to revive the firm he received a loan from allen unwin the london publishing house which represented baedeker in britain and continued to do whatever he could to rejuvenate the firm at home on july hans celebrated the centenary of its foundation by holding a reception athe leipzig harmonie a popular venue for such events the firm did make some progress and he managed to produce twelve new titles in germand five in english though these included those commissioned by the nazi regime he also published the one volumeighth and revised german edition of egypt and in its eighth english edition which many travel guidebooks connoisseurs and collectors consider to be the two finest baedeker travel guides ever published hans baedeker s released guidebooks in german between and several were commissioned by the nazis who had been vetting baedeker guides proposing and effecting changes in the text as they saw fit and laying down to whom certain guides could be sold baedeker wasked to publish a guidebook for the german army of occupation in poland withistory written as the nazis wished ito be written as the introduction to the book das generalgouvernement reveals the leipzig was the first post world war ii baedeker and the last one to be published in leipzig which was now in the russian zone the russians had not granted baedeker a publishing licence hans got round this by having copies printed by the bibliographisches institut however after some copies had been sold the russiansaid the guidebook contained military secrets in the form of a map showing the site of their kommandant urand confiscated the remaining copies new english titles during this time were s tyrol and the dolomites the riviera including south eastern france and corsican edition of germany for the summer olympics olympic games and s madeira canary islands azores western morocco history since karl friedrich baedeker karl friedrich baedeker was the son of karl baedeker scientist karl baedeker iii who was killed in action athe battle of li ge in he had worked as an editor athe firm before the outbreak of the second world war during the war he saw active service and rose to the rank of captain towards the closing stages of the war he was taken prisoner in austria by the americans after the war he moved to malente gremsm hlen in schleswig holstein where his wife and sister were living and which was in the british zone here he worked in local government untilatterly sorting outhe schleswig holstein archives when he decided to revive the family publishing business under the name of karl baedeker his uncle hans hadecided to stay on in leipzig which was now under the jurisdiction of the russians who had not granted him a publishing licence however they were very close and karl couldraw on his uncle s experience to gethings going even before the outbreak of war hans used to tell him some american british and german publishers had tried hard to buy the baedeker name which wastill a world brand thinking that karl friedrich would be only too pleased to sell however as he said to herbert warren wind in december he published his first offering copies of schleswig holstein this was printed in gl ckstadt near hamburg and contained some advertising to balance the books as did some of his other contemperaneous titles allen unwin the london publisher once again helped the baedeker firm with another loand he published more city and regional guides in the years that followed in karl friedrich and oskar steinheil a pre war baedeker editor signed an agreement with shell ag the subsidiary of royal dutch shell and kurt mair the german printer and publisher based in stuttgarto produce a series of motoringuides baedeker would provide the text and mair the finished producthe baedeker autof hrer verlag stuttgart was born the slim guides called baedeker shell guides were designed to fit into a man s jacket pocket or in the glove compartment of a car the first ones covered germany and were a huge success guides on other european countries followed in both germand english karl friedrich was now operating on two fronts he continued to produce city and regional guides fromalente and withe publication of his berlin guide in german english and french the baedeker brand had been well and truly restablished florian his only son was by hiside and his cousin hans the son of his uncle dietrich was engaged in producing the motoringuides from stuttgart dietrich s other son otto also helped run the firm until when he lefto join another publishing house in karl friedrich moved his field of operations fromalente to freiburg im breisgau in the stuttgart operation moved tostfildern kemnat in thesslingen district of esslingen where volkmar mair the son of kurt mair was now in charge withe rise of air travel in the s and s baedeker entered a new era in the first post war international guidebook appeared financed largely by the german airline lufthansa the voluminous page baedekers usa in german whichad the look of traditional pre war baedekers florian baedeker florian baedeker the only son of karl friedrich baedeker succeeded him when he died in after completing histudies in munich in he hadevoted himself to matters relating to book publishing under the guidance of his father and had helped him withe preparation of the munich guide released for the munich olympic games florian also carried out most of the work involved in preparing the city guides titled baden constance strasbourg and wiesbaden published in the mid s he also produced several short city guides basel the switzerland swiss city which was first covered in a baedeker guidebook by karl baedeker himself in his most celebrated guidebook schweiz first published in was the title oflorian s own guide published in it is considered by many to be one of his best city guides florian baedeker a keen parachute jumper was killed in a parachuting accident on october he was eva baedeker following the death oflorian his mother karl friedrich s widow eva baedeker n e konitz piloted the firm until she died in she was the last baedeker to play an active role in running the baedeker publishing house founded in and negotiated the sale of the freiburg branch to langenscheidt before she died however the karl baedeker brand name has been retained by all subsequent owners of the company in one form or another since baedeker travel guides have appeared as baedeker allianz reisef hrer travel guides published in collaboration withe german insurance group allianz multi coloured with copious illustrations and in many languages they now cover most of the popular tourist destinations in the world over guides have been published already and the list keeps growing as well as the number of languages in which they are published in britain the guides have been published in collaboration withe british automobile association the aand in the usa by macmillan travel a simon schuster macmillan company the freiburg baedeker branch was acquired by the german publisher langenscheidt following the death of eva baedeker in both baedeker branches the langenscheidt operation in freiburg and the baedeker autof hrer verlag in stuttgart operated by the mairs publishingroup were merged and housed together in ostfildern kemnat as karl baedeker gmbh with a branch in munich the ownership of the new venture wasplit down the middle between langenscheidt and mairs in mairs geographischer verlag now known as became the owner of verlag karl baedeker along with all rights attached to karl baedeker s name and firm the new english baedekers produced by mairdumont dispensed withe allianz logo in the title withe german editions doing the same in this marked the beginning of a new era in the appearance and content of modern baedekers under the catchphrase wissen ffnet welten knowledge opens worlds the previous german editions had four main sections background tours destinations from a to z and practical information from a to z mairdumont added a fifth section in each guidebook entitled erleben und geniessen experience and enjoy these new baedeker guides were the first such guidebooks to incorporate infographic s baedeker english editions from the outset karl baedekerecognised the importance of publishing his guides in english as well hison ernst had worked in london before joining verlag baedeker in and was entrusted withe task of preparing the first baedeker in english the rhine appeared in james and findlay muirhead the scottish brothers james francis muirhead and findlay muirhead played a significant role in popularising thenglish guidebooks worldwide james thelder brother had been taken on as editor of thenglish editions by fritz baedeker in at age findlay joined him later as joint editor they weresponsible for all the baedeker editions in english for almost fortyears james findlay is given the credit for two thirds of the content in the canada guidebook first published in the canada guide is the sole classic baedeker to have been published only in english james muirhead s worked on thedition of the united states which ran to four editions while he was withe firm herbert warren wind wrote it had taken james muirhead two and a half years to research and write the united states in the preface to the united states the publishers acknowledged muirhead s work in producing the travel guide the page fourth edition published included excursions to cuba puerto rico and alaska in addition to mexico after the first world war findlay launched his own series of the famous blue guide s published in london by ernest benn his brother joined him in the venture shortly afterwards hermann augustine piehler hermann augustine piehler better known as ha piehler in the publishing world was an englishman of german descent who became the chief editor of thenglish editions after the muirheads left during histudent days karl friedrich baedeker had spent a year in england had lived with piehler at his london residence in when karl friedrich decided to restablish the baedeker firm in malente british zone in germany his publishing licence was endorsed by piehler who was then a colonel in british intelligence and thead of the books and publications division in the district upon his return to england piehler continuediting thenglish guides well into his eighties in the meantime his brother had been editing the new baedeker london guide the baedekers acknowledged the commitment of the muirheads and piehler to their firm and the contribution they had made to the success of verlag karl baedeker see also karl baedeker list of baedeker guides furthereading externalinks baedeker bdkrcom a resource for collectors category book publishing companies of germany category publishing companies of germany category travel guide books","main_words":["image","png_thumb","right_upright","baedeker","great_britain","guide","typical","different","country","guides","produced","verlag","karl_baedeker","founded","karl_baedeker","july","german","publisher","pioneer","business","worldwide","travel_guide","guides","often_referred","simply","baedeker_guides","baedekers","term","sometimes","used","refer","similar","works","publishers","travel_guides","general","contain","among","things","maps","introductions","information","routes","travel","facilities","noteworthy","attractions","museums","written","specialists","history","karl_baedeker","karl_baedeker","see","article","three","sons","ernst","karl","fritz","death","turn","events","took","running","firm","ernst","baedeker","following","death","karl_baedeker","son","ernst","baedeker","became","thead","firm","training","leipzig","stuttgart","spent","time","publishing_house","williams","london","new","year","day","joined","father","publishing","firm","partner","months_later","running","tenure","firm","saw","publication","three","new","travel_guides","viz","first","baedeker","travel_guide","english","handbook","rhine","switzerland","holland","guide","german","italy","italien","first","series","italy","father","planned","one","french","alson","italy","italie","baedeker","died","unexpectedly","july","egypt","younger","brother","karl","assumed","charge","publishing_house","karl_baedeker","ii","karl_baedeker","ii","continued","work","started","addition","ongoing","revision","published","new","guides","four","german","seven","english","three","french","viz","new","german","titles","london","italien","italien","und","rom","italien","italien","undie","english","paris","central","italy","rome","southern","italy","including","sicily","germany","austrian","empire","northern_italy","far","florence","island","corsica","new","french","titles","paris","londres","l","l","italie","rome","l","italie","l","italie","sud","la","les","karl_baedeker","ii","worked","withis","younger","brother","fritz","joined","firm","partner","became","general_manager","according","source","cited","karl","mental","condition","moved","near","remained","rest","life","fritz","baedeker","fritz","baedeker","company","grew","rapidly","baedeker","business","wasold","moved","company","headquarters","leipzig","major","move","forward","major","german","located","also","wagner","baedeker","cartographer","move","leipzig","establish","new_company","ernst","talented","cartographer","leading","firm","new_company","named","wagner","offices","adjacento","new","baedeker","address","herbert","warren","wind","author","house","baedeker","wrote","file","schweiz","baedeker","jpg","thumb","right","map","switzerland","published","baedeker","travel_guide","added","michael","wild","baedeker","baedeker","maps","feast","thexpansion","fast","new","editions","printed","printers","buthe","bulk","reviseditions","pre","guides","continued","printed","baedeker_guides","produced","baedeker","printing","works","fritz","ventured","territory","none","predecessors","covered","inside","russia","palestine","syria","egypt","greece","mediterranean","usa","canada","indiand","south_east_asia","plans","publish","guides","chinand","japan","abandoned","war","broke","home","list","guides","german","regions","cities","continued","grow","golden_age","baedeker","travel_guides","fritz","also","good","fortune","three","four","sons","hans","ernst","beside","firm","editors","writers","karl_baedeker","scientist","karl_baedeker","iii","fourth","son","entered","rose","become","professor","physics","athe_university","killed","action","athe","battle","august","hison","karl_friedrich","revived","verlag","karl_baedeker","second_world_war","reign","lasted","years","fritz","produced","new","baedekers","came","known","universally","baedeker","travel_guides","became_popular","became","english_language","term","purpose","traveling","country","write","travel_guide","travelogue","fritz","baedeker","became","successful","travel_guide","publisher","time","turned","publishing_house","famous","publisher","travel_guides","world","leipzig","university","conferred","honorary","phd","rare","honour","athe_time","th_anniversary","era","history","broughto","end","outbreak","world_war","house","baedeker","went","decline","victim","post_war","international","economiconditions","consequently","fritz","broke","tradition","time","thereafter","baedeker_guides","german","cities","regions","carried","limited","amount","advertising","fritz","baedeker","released","guidebooks","german","english","twelve","french","titles","published","hans","baedeker","hans","baedeker","son","baedeker","took","charge","company","two","brothers","ernst","withim","running","company","firm","lost","heavily","investing","government","bonds","first_world_war","resulted","anti","german","around","world","particularly","americand","france","guidebooks","come","rising","inflation","played","part","affecting","tourism","balance","sheet","publishing_house","great_depression","put","paid","hopes","early","recovery","arrival","things","even","worse","anything","connected","tourism","baedeker","publishing_house","destruction","headquarters","leipzig","firm","archives","thearly","hours","december","britain","royal","air_force","city","see_also","baedeker","blitz","hans","extremely","proud","whathe","baedeker","achieved","one","give","trying","revive","firm","received","loan","allen","unwin","london","publishing_house","represented","baedeker","britain","continued","whatever","could","firm","home","july","hans","celebrated","centenary","foundation","holding","reception","athe","leipzig","popular","venue","events","firm","make","progress","managed","produce","twelve","new","titles","germand","five","english","though","included","commissioned","nazi","regime","also_published","one","revised","german","edition","egypt","eighth","english","edition","many","travel_guidebooks","collectors","consider","two","finest","baedeker","travel_guides","ever","published","hans","baedeker","released","guidebooks","german","several","commissioned","nazis","baedeker_guides","proposing","changes","text","saw","fit","laying","certain","guides","could","sold","baedeker","wasked","publish","guidebook","german","army","occupation","poland","written","nazis","wished","ito","written","introduction","book","das","reveals","leipzig","first","post","world_war","ii","baedeker","last","one","published","leipzig","russian","zone","russians","granted","baedeker","publishing","licence","hans","got","round","copies","printed","institut","however","copies","sold","guidebook","contained","military","secrets","form","map","showing","site","confiscated","remaining","copies","new","english","titles","time","tyrol","riviera","including","france","edition","germany","summer","olympics","olympic","games","madeira","canary","islands","azores","western","morocco","history","since","karl_friedrich","baedeker","karl_friedrich","baedeker","son","karl_baedeker","scientist","karl_baedeker","iii","killed","action","athe","battle","worked","editor","athe","firm","outbreak","second_world_war","war","saw","active","service","rose","rank","captain","towards","closing","stages","war","taken","prisoner","austria","americans","war","moved","holstein","wife","sister","living","british","zone","worked","local_government","outhe","holstein","archives","decided","revive","family","publishing","business","name","karl_baedeker","uncle","hans","stay","leipzig","jurisdiction","russians","granted","publishing","licence","however","close","karl","uncle","experience","going","even","outbreak","war","hans","used","tell","american","british","german","publishers","tried","hard","buy","baedeker","name","wastill","world","brand","thinking","karl_friedrich","would","pleased","sell","however","said","herbert","warren","wind","december","published","first","offering","copies","holstein","printed","near","hamburg","contained","advertising","balance","books","titles","allen","unwin","london","publisher","helped","baedeker","firm","another","published","city","regional","guides","years","followed","karl_friedrich","pre_war","baedeker","editor","signed","agreement","shell","subsidiary","royal","dutch","shell","kurt","mair","german","printer","publisher","based","produce","series","baedeker","would","provide","text","mair","finished","baedeker","hrer","verlag","stuttgart","born","guides","called","baedeker","shell","guides","designed","fit","man","jacket","pocket","compartment","car","first","ones","covered","germany","huge","success","guides","european_countries","followed","germand","english","karl_friedrich","operating","two","fronts","continued","produce","city","regional","guides","withe","publication","berlin","guide","german","english","french","baedeker","brand","well","truly","florian","son","cousin","hans","son","uncle","dietrich","engaged","producing","stuttgart","dietrich","son","otto","also","helped","run","firm","lefto","join","another","publishing_house","karl_friedrich","moved","field","operations","freiburg","breisgau","stuttgart","operation","moved","district","mair","son","kurt","mair","charge","withe","rise","air_travel","baedeker","entered","new","era","first","post_war","international","guidebook","appeared","financed","largely","german","airline","page","baedekers","usa","german","whichad","look","traditional","pre_war","baedekers","florian","baedeker","florian","baedeker","son","karl_friedrich","baedeker","succeeded","died","completing","histudies","munich","matters","relating","guidance","father","helped","withe","preparation","munich","guide","released","munich","olympic","games","florian","also","carried","work","involved","preparing","city_guides","titled","baden","constance","published","mid","also","produced","several","short","city_guides","basel","switzerland","swiss","city","first","covered","baedeker","guidebook","karl_baedeker","celebrated","guidebook","schweiz","first_published","title","guide","published","considered","many","one","best","city_guides","florian","baedeker","keen","parachute","killed","parachuting","accident","october","eva","baedeker","following","death","mother","karl_friedrich","widow","eva","baedeker","n","e","firm","died","last","baedeker","play","active","role","running","baedeker","publishing_house","founded","negotiated","sale","freiburg","branch","langenscheidt","died","however","karl_baedeker","brand_name","retained","subsequent","owners","company","one","form","another","since","baedeker","travel_guides","appeared","baedeker","hrer","travel_guides","published","collaboration","withe","german","insurance","group","multi","coloured","illustrations","many","languages","cover","world","guides","published","already","list","keeps","growing","well","number","languages","published","britain","guides","published","collaboration","withe","british","automobile_association","usa","macmillan","travel","simon","schuster","macmillan","company","freiburg","baedeker","branch","acquired","german","publisher","langenscheidt","following","death","eva","baedeker","baedeker","branches","langenscheidt","operation","freiburg","baedeker","hrer","verlag","stuttgart","operated","publishingroup","merged","housed","together","karl_baedeker","gmbh","branch","munich","ownership","new","venture","middle","langenscheidt","verlag","known","became","owner","verlag","karl_baedeker","along","rights","attached","karl_baedeker","name","firm","new","english","baedekers","produced","withe","logo","title","withe","german","editions","marked","beginning","new","era","appearance","content","modern","baedekers","knowledge","opens","worlds","previous","german","editions","four","main","sections","background","tours","destinations","practical_information","added","fifth","section","guidebook","entitled","und","experience","enjoy","new","baedeker_guides","first","guidebooks","incorporate","baedeker","english","editions","outset","karl","importance","publishing","guides","english","well","hison","ernst","worked","london","joining","verlag","baedeker","withe","task","preparing","first","baedeker","english","rhine","appeared","james","findlay","muirhead","scottish","brothers","james","francis","muirhead","findlay","muirhead","played","significant","role","thenglish","guidebooks","worldwide","james","brother","taken","editor","thenglish","editions","fritz","baedeker","age","findlay","joined","later","joint","editor","weresponsible","baedeker","editions","english","almost","fortyears","james","findlay","given","credit","two_thirds","content","canada","guidebook","first_published","canada","guide","sole","classic","baedeker","published","english","james","muirhead","worked","thedition","united_states","ran","four","editions","withe","firm","herbert","warren","wind","wrote","taken","james","muirhead","two","half","years","research","write","united_states","preface","united_states","publishers","acknowledged","muirhead","work","producing","travel_guide","page","fourth_edition","published","included","excursions","cuba","puerto_rico","alaska","addition","mexico","first_world_war","findlay","launched","series","famous","blue_guide","published","brother","joined","venture","shortly","afterwards","augustine","piehler","augustine","piehler","better_known","piehler","publishing","world","englishman","german","descent","became","chief","editor","thenglish","editions","left","days","karl_friedrich","baedeker","spent","year","england","lived","piehler","london","residence","karl_friedrich","decided","baedeker","firm","british","zone","germany","publishing","licence","endorsed","piehler","colonel","british","intelligence","thead","division","district","upon","return","england","piehler","thenglish","guides","well","brother","editing","new","baedeker","london","guide","baedekers","acknowledged","commitment","piehler","firm","contribution","made","success","verlag","karl_baedeker","see_also","karl_baedeker","list","baedeker_guides","furthereading_externalinks","baedeker","resource","collectors","category","book_publishing_companies","germany_category","germany_category","travel_guide_books"],"clean_bigrams":[["png","thumb"],["thumb","right"],["right","upright"],["upright","baedeker"],["great","britain"],["britain","guide"],["different","country"],["country","guides"],["guides","produced"],["produced","verlag"],["verlag","karl"],["karl","baedeker"],["baedeker","founded"],["karl","baedeker"],["german","publisher"],["worldwide","travel"],["travel","guide"],["guides","often"],["often","referred"],["baedeker","guides"],["guides","baedekers"],["term","sometimes"],["sometimes","used"],["similar","works"],["travel","guides"],["general","contain"],["contain","among"],["things","maps"],["introductions","information"],["travel","facilities"],["museums","written"],["specialists","history"],["history","karl"],["karl","baedeker"],["baedeker","karl"],["karl","baedeker"],["baedeker","see"],["see","article"],["three","sons"],["sons","ernst"],["ernst","karl"],["events","took"],["firm","ernst"],["ernst","baedeker"],["baedeker","following"],["karl","baedeker"],["son","ernst"],["ernst","baedeker"],["baedeker","became"],["became","thead"],["publishing","house"],["house","williams"],["london","new"],["new","year"],["publishing","firm"],["months","later"],["firm","saw"],["three","new"],["new","travel"],["travel","guides"],["first","baedeker"],["baedeker","travel"],["travel","guide"],["french","alson"],["alson","italy"],["italy","italie"],["baedeker","died"],["died","unexpectedly"],["younger","brother"],["brother","karl"],["karl","assumed"],["assumed","charge"],["publishing","house"],["house","karl"],["karl","baedeker"],["baedeker","ii"],["ii","karl"],["karl","baedeker"],["baedeker","ii"],["ii","continued"],["work","started"],["ongoing","revision"],["published","new"],["new","guides"],["guides","four"],["german","seven"],["french","viz"],["viz","new"],["new","german"],["german","titles"],["titles","london"],["london","italien"],["italien","und"],["und","rom"],["rom","italien"],["paris","central"],["central","italy"],["rome","southern"],["southern","italy"],["italy","including"],["including","sicily"],["austrian","empire"],["empire","northern"],["northern","italy"],["corsica","new"],["new","french"],["french","titles"],["titles","paris"],["paris","londres"],["londres","l"],["partie","l"],["l","italie"],["rome","l"],["l","italie"],["partie","l"],["l","italie"],["sud","la"],["karl","baedeker"],["baedeker","ii"],["ii","worked"],["worked","withis"],["withis","younger"],["younger","brother"],["brother","fritz"],["general","manager"],["source","cited"],["mental","condition"],["condition","moved"],["life","fritz"],["fritz","baedeker"],["fritz","baedeker"],["company","grew"],["grew","rapidly"],["business","wasold"],["major","move"],["move","forward"],["major","german"],["german","publishing"],["publishing","houses"],["baedeker","cartographer"],["new","company"],["talented","cartographer"],["new","company"],["named","wagner"],["offices","adjacento"],["new","baedeker"],["baedeker","address"],["address","herbert"],["herbert","warren"],["warren","wind"],["baedeker","wrote"],["wrote","file"],["file","schweiz"],["baedeker","jpg"],["jpg","thumb"],["thumb","right"],["right","map"],["switzerland","published"],["baedeker","travel"],["travel","guide"],["added","michael"],["michael","wild"],["baedeker","maps"],["new","editions"],["printers","buthe"],["buthe","bulk"],["pre","guides"],["guides","continued"],["baedeker","guides"],["guides","produced"],["baedeker","printing"],["printing","works"],["fritz","ventured"],["territory","none"],["palestine","syria"],["syria","egypt"],["egypt","greece"],["mediterranean","usa"],["usa","canada"],["canada","indiand"],["indiand","south"],["south","east"],["east","asia"],["asia","plans"],["publish","guides"],["chinand","japan"],["war","broke"],["german","regions"],["cities","continued"],["golden","age"],["baedeker","travel"],["travel","guides"],["guides","fritz"],["fritz","also"],["good","fortune"],["four","sons"],["sons","hans"],["hans","ernst"],["writers","karl"],["karl","baedeker"],["baedeker","scientist"],["scientist","karl"],["karl","baedeker"],["baedeker","iii"],["fourth","son"],["son","entered"],["physics","athe"],["athe","university"],["action","athe"],["athe","battle"],["hison","karl"],["karl","friedrich"],["revived","verlag"],["verlag","karl"],["karl","baedeker"],["second","world"],["world","war"],["years","fritz"],["fritz","produced"],["produced","new"],["new","baedekers"],["known","universally"],["baedeker","travel"],["travel","guides"],["guides","became"],["english","language"],["language","term"],["travel","guide"],["fritz","baedeker"],["baedeker","became"],["successful","travel"],["travel","guide"],["guide","publisher"],["publishing","house"],["travel","guides"],["leipzig","university"],["university","conferred"],["honorary","phd"],["rare","honour"],["honour","athe"],["athe","time"],["th","anniversary"],["world","war"],["baedeker","went"],["post","war"],["war","international"],["economiconditions","consequently"],["fritz","broke"],["time","thereafter"],["thereafter","baedeker"],["baedeker","guides"],["german","cities"],["regions","carried"],["limited","amount"],["advertising","fritz"],["fritz","baedeker"],["released","guidebooks"],["german","english"],["twelve","french"],["french","titles"],["published","hans"],["hans","baedeker"],["baedeker","hans"],["hans","baedeker"],["baedeker","took"],["took","charge"],["two","brothers"],["brothers","ernst"],["withim","running"],["lost","heavily"],["government","bonds"],["first","world"],["world","war"],["also","resulted"],["anti","german"],["world","particularly"],["americand","france"],["rising","inflation"],["affecting","tourism"],["balance","sheet"],["publishing","house"],["great","depression"],["depression","put"],["put","paid"],["early","recovery"],["things","even"],["even","worse"],["anything","connected"],["baedeker","publishing"],["publishing","house"],["thearly","hours"],["royal","air"],["air","force"],["city","see"],["see","also"],["also","baedeker"],["baedeker","blitz"],["extremely","proud"],["whathe","baedeker"],["allen","unwin"],["london","publishing"],["publishing","house"],["represented","baedeker"],["july","hans"],["hans","celebrated"],["reception","athe"],["athe","leipzig"],["popular","venue"],["produce","twelve"],["twelve","new"],["new","titles"],["germand","five"],["english","though"],["nazi","regime"],["also","published"],["revised","german"],["german","edition"],["eighth","english"],["english","edition"],["many","travel"],["travel","guidebooks"],["collectors","consider"],["two","finest"],["finest","baedeker"],["baedeker","travel"],["travel","guides"],["guides","ever"],["ever","published"],["published","hans"],["hans","baedeker"],["released","guidebooks"],["baedeker","guides"],["guides","proposing"],["saw","fit"],["certain","guides"],["guides","could"],["sold","baedeker"],["baedeker","wasked"],["german","army"],["nazis","wished"],["wished","ito"],["book","das"],["first","post"],["post","world"],["world","war"],["war","ii"],["ii","baedeker"],["last","one"],["russian","zone"],["granted","baedeker"],["baedeker","publishing"],["publishing","licence"],["licence","hans"],["hans","got"],["got","round"],["copies","printed"],["institut","however"],["guidebook","contained"],["contained","military"],["military","secrets"],["map","showing"],["remaining","copies"],["copies","new"],["new","english"],["english","titles"],["riviera","including"],["including","south"],["south","eastern"],["eastern","france"],["summer","olympics"],["olympics","olympic"],["olympic","games"],["madeira","canary"],["canary","islands"],["islands","azores"],["azores","western"],["western","morocco"],["morocco","history"],["history","since"],["since","karl"],["karl","friedrich"],["friedrich","baedeker"],["baedeker","karl"],["karl","friedrich"],["friedrich","baedeker"],["karl","baedeker"],["baedeker","scientist"],["scientist","karl"],["karl","baedeker"],["baedeker","iii"],["action","athe"],["athe","battle"],["editor","athe"],["athe","firm"],["second","world"],["world","war"],["saw","active"],["active","service"],["captain","towards"],["closing","stages"],["taken","prisoner"],["british","zone"],["local","government"],["holstein","archives"],["family","publishing"],["publishing","business"],["karl","baedeker"],["uncle","hans"],["publishing","licence"],["licence","however"],["going","even"],["war","hans"],["hans","used"],["american","british"],["german","publishers"],["tried","hard"],["baedeker","name"],["world","brand"],["brand","thinking"],["karl","friedrich"],["friedrich","would"],["sell","however"],["herbert","warren"],["warren","wind"],["first","offering"],["offering","copies"],["near","hamburg"],["titles","allen"],["allen","unwin"],["london","publisher"],["baedeker","firm"],["regional","guides"],["karl","friedrich"],["pre","war"],["war","baedeker"],["baedeker","editor"],["editor","signed"],["royal","dutch"],["dutch","shell"],["kurt","mair"],["german","printer"],["publisher","based"],["baedeker","would"],["would","provide"],["hrer","verlag"],["verlag","stuttgart"],["guides","called"],["called","baedeker"],["baedeker","shell"],["shell","guides"],["jacket","pocket"],["first","ones"],["ones","covered"],["covered","germany"],["huge","success"],["success","guides"],["european","countries"],["countries","followed"],["germand","english"],["english","karl"],["karl","friedrich"],["two","fronts"],["produce","city"],["regional","guides"],["withe","publication"],["berlin","guide"],["german","english"],["baedeker","brand"],["cousin","hans"],["uncle","dietrich"],["stuttgart","dietrich"],["son","otto"],["otto","also"],["also","helped"],["helped","run"],["lefto","join"],["join","another"],["another","publishing"],["publishing","house"],["house","karl"],["karl","friedrich"],["friedrich","moved"],["stuttgart","operation"],["operation","moved"],["kurt","mair"],["charge","withe"],["withe","rise"],["air","travel"],["baedeker","entered"],["new","era"],["first","post"],["post","war"],["war","international"],["international","guidebook"],["guidebook","appeared"],["appeared","financed"],["financed","largely"],["german","airline"],["page","baedekers"],["baedekers","usa"],["german","whichad"],["traditional","pre"],["pre","war"],["war","baedekers"],["baedekers","florian"],["florian","baedeker"],["baedeker","florian"],["florian","baedeker"],["karl","friedrich"],["friedrich","baedeker"],["baedeker","succeeded"],["completing","histudies"],["matters","relating"],["book","publishing"],["withe","preparation"],["munich","guide"],["guide","released"],["munich","olympic"],["olympic","games"],["games","florian"],["florian","also"],["also","carried"],["work","involved"],["city","guides"],["guides","titled"],["titled","baden"],["baden","constance"],["also","produced"],["produced","several"],["several","short"],["short","city"],["city","guides"],["guides","basel"],["switzerland","swiss"],["swiss","city"],["first","covered"],["baedeker","guidebook"],["karl","baedeker"],["celebrated","guidebook"],["guidebook","schweiz"],["schweiz","first"],["first","published"],["guide","published"],["best","city"],["city","guides"],["guides","florian"],["florian","baedeker"],["keen","parachute"],["parachuting","accident"],["eva","baedeker"],["baedeker","following"],["mother","karl"],["karl","friedrich"],["widow","eva"],["eva","baedeker"],["baedeker","n"],["n","e"],["last","baedeker"],["active","role"],["baedeker","publishing"],["publishing","house"],["house","founded"],["freiburg","branch"],["died","however"],["karl","baedeker"],["baedeker","brand"],["brand","name"],["subsequent","owners"],["one","form"],["another","since"],["since","baedeker"],["baedeker","travel"],["travel","guides"],["hrer","travel"],["travel","guides"],["guides","published"],["collaboration","withe"],["withe","german"],["german","insurance"],["insurance","group"],["multi","coloured"],["many","languages"],["popular","tourist"],["tourist","destinations"],["guides","published"],["published","already"],["list","keeps"],["keeps","growing"],["guides","published"],["collaboration","withe"],["withe","british"],["british","automobile"],["automobile","association"],["macmillan","travel"],["simon","schuster"],["schuster","macmillan"],["macmillan","company"],["freiburg","baedeker"],["baedeker","branch"],["german","publisher"],["publisher","langenscheidt"],["langenscheidt","following"],["eva","baedeker"],["baedeker","branches"],["langenscheidt","operation"],["freiburg","baedeker"],["hrer","verlag"],["verlag","stuttgart"],["stuttgart","operated"],["housed","together"],["karl","baedeker"],["baedeker","gmbh"],["new","venture"],["verlag","karl"],["karl","baedeker"],["baedeker","along"],["rights","attached"],["karl","baedeker"],["baedeker","name"],["new","english"],["english","baedekers"],["baedekers","produced"],["title","withe"],["withe","german"],["german","editions"],["new","era"],["modern","baedekers"],["knowledge","opens"],["opens","worlds"],["previous","german"],["german","editions"],["four","main"],["main","sections"],["sections","background"],["background","tours"],["tours","destinations"],["practical","information"],["fifth","section"],["guidebook","entitled"],["new","baedeker"],["baedeker","guides"],["baedeker","english"],["english","editions"],["outset","karl"],["well","hison"],["hison","ernst"],["joining","verlag"],["verlag","baedeker"],["withe","task"],["first","baedeker"],["baedeker","english"],["rhine","appeared"],["james","findlay"],["findlay","muirhead"],["scottish","brothers"],["brothers","james"],["james","francis"],["francis","muirhead"],["findlay","muirhead"],["muirhead","played"],["significant","role"],["thenglish","guidebooks"],["guidebooks","worldwide"],["worldwide","james"],["thenglish","editions"],["fritz","baedeker"],["age","findlay"],["findlay","joined"],["joint","editor"],["baedeker","editions"],["almost","fortyears"],["fortyears","james"],["james","findlay"],["two","thirds"],["canada","guidebook"],["guidebook","first"],["first","published"],["canada","guide"],["sole","classic"],["classic","baedeker"],["english","james"],["james","muirhead"],["united","states"],["four","editions"],["withe","firm"],["firm","herbert"],["herbert","warren"],["warren","wind"],["wind","wrote"],["taken","james"],["james","muirhead"],["muirhead","two"],["half","years"],["united","states"],["united","states"],["publishers","acknowledged"],["acknowledged","muirhead"],["travel","guide"],["page","fourth"],["fourth","edition"],["edition","published"],["published","included"],["included","excursions"],["cuba","puerto"],["puerto","rico"],["first","world"],["world","war"],["war","findlay"],["findlay","launched"],["famous","blue"],["blue","guide"],["guide","published"],["brother","joined"],["venture","shortly"],["shortly","afterwards"],["augustine","piehler"],["augustine","piehler"],["piehler","better"],["better","known"],["publishing","world"],["german","descent"],["chief","editor"],["thenglish","editions"],["days","karl"],["karl","friedrich"],["friedrich","baedeker"],["london","residence"],["karl","friedrich"],["friedrich","decided"],["baedeker","firm"],["british","zone"],["publishing","licence"],["british","intelligence"],["publications","division"],["district","upon"],["england","piehler"],["thenglish","guides"],["guides","well"],["new","baedeker"],["baedeker","london"],["london","guide"],["baedekers","acknowledged"],["verlag","karl"],["karl","baedeker"],["baedeker","see"],["see","also"],["also","karl"],["karl","baedeker"],["baedeker","list"],["baedeker","guides"],["guides","furthereading"],["furthereading","externalinks"],["externalinks","baedeker"],["collectors","category"],["category","book"],["book","publishing"],["publishing","companies"],["germany","category"],["category","publishing"],["publishing","companies"],["germany","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["png thumb","right upright","upright baedeker","great britain","britain guide","different country","country guides","guides produced","produced verlag","verlag karl","karl baedeker","baedeker founded","karl baedeker","german publisher","worldwide travel","travel guide","guides often","often referred","baedeker guides","guides baedekers","term sometimes","sometimes used","similar works","travel guides","general contain","contain among","things maps","introductions information","travel facilities","museums written","specialists history","history karl","karl baedeker","baedeker karl","karl baedeker","baedeker see","see article","three sons","sons ernst","ernst karl","events took","firm ernst","ernst baedeker","baedeker following","karl baedeker","son ernst","ernst baedeker","baedeker became","became thead","publishing house","house williams","london new","new year","publishing firm","months later","firm saw","three new","new travel","travel guides","first baedeker","baedeker travel","travel guide","french alson","alson italy","italy italie","baedeker died","died unexpectedly","younger brother","brother karl","karl assumed","assumed charge","publishing house","house karl","karl baedeker","baedeker ii","ii karl","karl baedeker","baedeker ii","ii continued","work started","ongoing revision","published new","new guides","guides four","german seven","french viz","viz new","new german","german titles","titles london","london italien","italien und","und rom","rom italien","paris central","central italy","rome southern","southern italy","italy including","including sicily","austrian empire","empire northern","northern italy","corsica new","new french","french titles","titles paris","paris londres","londres l","partie l","l italie","rome l","l italie","partie l","l italie","sud la","karl baedeker","baedeker ii","ii worked","worked withis","withis younger","younger brother","brother fritz","general manager","source cited","mental condition","condition moved","life fritz","fritz baedeker","fritz baedeker","company grew","grew rapidly","business wasold","major move","move forward","major german","german publishing","publishing houses","baedeker cartographer","new company","talented cartographer","new company","named wagner","offices adjacento","new baedeker","baedeker address","address herbert","herbert warren","warren wind","baedeker wrote","wrote file","file schweiz","baedeker jpg","right map","switzerland published","baedeker travel","travel guide","added michael","michael wild","baedeker maps","new editions","printers buthe","buthe bulk","pre guides","guides continued","baedeker guides","guides produced","baedeker printing","printing works","fritz ventured","territory none","palestine syria","syria egypt","egypt greece","mediterranean usa","usa canada","canada indiand","indiand south","south east","east asia","asia plans","publish guides","chinand japan","war broke","german regions","cities continued","golden age","baedeker travel","travel guides","guides fritz","fritz also","good fortune","four sons","sons hans","hans ernst","writers karl","karl baedeker","baedeker scientist","scientist karl","karl baedeker","baedeker iii","fourth son","son entered","physics athe","athe university","action athe","athe battle","hison karl","karl friedrich","revived verlag","verlag karl","karl baedeker","second world","world war","years fritz","fritz produced","produced new","new baedekers","known universally","baedeker travel","travel guides","guides became","english language","language term","travel guide","fritz baedeker","baedeker became","successful travel","travel guide","guide publisher","publishing house","travel guides","leipzig university","university conferred","honorary phd","rare honour","honour athe","athe time","th anniversary","world war","baedeker went","post war","war international","economiconditions consequently","fritz broke","time thereafter","thereafter baedeker","baedeker guides","german cities","regions carried","limited amount","advertising fritz","fritz baedeker","released guidebooks","german english","twelve french","french titles","published hans","hans baedeker","baedeker hans","hans baedeker","baedeker took","took charge","two brothers","brothers ernst","withim running","lost heavily","government bonds","first world","world war","also resulted","anti german","world particularly","americand france","rising inflation","affecting tourism","balance sheet","publishing house","great depression","depression put","put paid","early recovery","things even","even worse","anything connected","baedeker publishing","publishing house","thearly hours","royal air","air force","city see","see also","also baedeker","baedeker blitz","extremely proud","whathe baedeker","allen unwin","london publishing","publishing house","represented baedeker","july hans","hans celebrated","reception athe","athe leipzig","popular venue","produce twelve","twelve new","new titles","germand five","english though","nazi regime","also published","revised german","german edition","eighth english","english edition","many travel","travel guidebooks","collectors consider","two finest","finest baedeker","baedeker travel","travel guides","guides ever","ever published","published hans","hans baedeker","released guidebooks","baedeker guides","guides proposing","saw fit","certain guides","guides could","sold baedeker","baedeker wasked","german army","nazis wished","wished ito","book das","first post","post world","world war","war ii","ii baedeker","last one","russian zone","granted baedeker","baedeker publishing","publishing licence","licence hans","hans got","got round","copies printed","institut however","guidebook contained","contained military","military secrets","map showing","remaining copies","copies new","new english","english titles","riviera including","including south","south eastern","eastern france","summer olympics","olympics olympic","olympic games","madeira canary","canary islands","islands azores","azores western","western morocco","morocco history","history since","since karl","karl friedrich","friedrich baedeker","baedeker karl","karl friedrich","friedrich baedeker","karl baedeker","baedeker scientist","scientist karl","karl baedeker","baedeker iii","action athe","athe battle","editor athe","athe firm","second world","world war","saw active","active service","captain towards","closing stages","taken prisoner","british zone","local government","holstein archives","family publishing","publishing business","karl baedeker","uncle hans","publishing licence","licence however","going even","war hans","hans used","american british","german publishers","tried hard","baedeker name","world brand","brand thinking","karl friedrich","friedrich would","sell however","herbert warren","warren wind","first offering","offering copies","near hamburg","titles allen","allen unwin","london publisher","baedeker firm","regional guides","karl friedrich","pre war","war baedeker","baedeker editor","editor signed","royal dutch","dutch shell","kurt mair","german printer","publisher based","baedeker would","would provide","hrer verlag","verlag stuttgart","guides called","called baedeker","baedeker shell","shell guides","jacket pocket","first ones","ones covered","covered germany","huge success","success guides","european countries","countries followed","germand english","english karl","karl friedrich","two fronts","produce city","regional guides","withe publication","berlin guide","german english","baedeker brand","cousin hans","uncle dietrich","stuttgart dietrich","son otto","otto also","also helped","helped run","lefto join","join another","another publishing","publishing house","house karl","karl friedrich","friedrich moved","stuttgart operation","operation moved","kurt mair","charge withe","withe rise","air travel","baedeker entered","new era","first post","post war","war international","international guidebook","guidebook appeared","appeared financed","financed largely","german airline","page baedekers","baedekers usa","german whichad","traditional pre","pre war","war baedekers","baedekers florian","florian baedeker","baedeker florian","florian baedeker","karl friedrich","friedrich baedeker","baedeker succeeded","completing histudies","matters relating","book publishing","withe preparation","munich guide","guide released","munich olympic","olympic games","games florian","florian also","also carried","work involved","city guides","guides titled","titled baden","baden constance","also produced","produced several","several short","short city","city guides","guides basel","switzerland swiss","swiss city","first covered","baedeker guidebook","karl baedeker","celebrated guidebook","guidebook schweiz","schweiz first","first published","guide published","best city","city guides","guides florian","florian baedeker","keen parachute","parachuting accident","eva baedeker","baedeker following","mother karl","karl friedrich","widow eva","eva baedeker","baedeker n","n e","last baedeker","active role","baedeker publishing","publishing house","house founded","freiburg branch","died however","karl baedeker","baedeker brand","brand name","subsequent owners","one form","another since","since baedeker","baedeker travel","travel guides","hrer travel","travel guides","guides published","collaboration withe","withe german","german insurance","insurance group","multi coloured","many languages","popular tourist","tourist destinations","guides published","published already","list keeps","keeps growing","guides published","collaboration withe","withe british","british automobile","automobile association","macmillan travel","simon schuster","schuster macmillan","macmillan company","freiburg baedeker","baedeker branch","german publisher","publisher langenscheidt","langenscheidt following","eva baedeker","baedeker branches","langenscheidt operation","freiburg baedeker","hrer verlag","verlag stuttgart","stuttgart operated","housed together","karl baedeker","baedeker gmbh","new venture","verlag karl","karl baedeker","baedeker along","rights attached","karl baedeker","baedeker name","new english","english baedekers","baedekers produced","title withe","withe german","german editions","new era","modern baedekers","knowledge opens","opens worlds","previous german","german editions","four main","main sections","sections background","background tours","tours destinations","practical information","fifth section","guidebook entitled","new baedeker","baedeker guides","baedeker english","english editions","outset karl","well hison","hison ernst","joining verlag","verlag baedeker","withe task","first baedeker","baedeker english","rhine appeared","james findlay","findlay muirhead","scottish brothers","brothers james","james francis","francis muirhead","findlay muirhead","muirhead played","significant role","thenglish guidebooks","guidebooks worldwide","worldwide james","thenglish editions","fritz baedeker","age findlay","findlay joined","joint editor","baedeker editions","almost fortyears","fortyears james","james findlay","two thirds","canada guidebook","guidebook first","first published","canada guide","sole classic","classic baedeker","english james","james muirhead","united states","four editions","withe firm","firm herbert","herbert warren","warren wind","wind wrote","taken james","james muirhead","muirhead two","half years","united states","united states","publishers acknowledged","acknowledged muirhead","travel guide","page fourth","fourth edition","edition published","published included","included excursions","cuba puerto","puerto rico","first world","world war","war findlay","findlay launched","famous blue","blue guide","guide published","brother joined","venture shortly","shortly afterwards","augustine piehler","augustine piehler","piehler better","better known","publishing world","german descent","chief editor","thenglish editions","days karl","karl friedrich","friedrich baedeker","london residence","karl friedrich","friedrich decided","baedeker firm","british zone","publishing licence","british intelligence","publications division","district upon","england piehler","thenglish guides","guides well","new baedeker","baedeker london","london guide","baedekers acknowledged","verlag karl","karl baedeker","baedeker see","see also","also karl","karl baedeker","baedeker list","baedeker guides","guides furthereading","furthereading externalinks","externalinks baedeker","collectors category","category book","book publishing","publishing companies","germany category","category publishing","publishing companies","germany category","category travel","travel guide","guide books"],"new_description":"image png_thumb right_upright baedeker great_britain guide typical different country guides produced verlag karl_baedeker founded karl_baedeker july german publisher pioneer business worldwide travel_guide guides often_referred simply baedeker_guides baedekers term sometimes used refer similar works publishers travel_guides general contain among things maps introductions information routes travel facilities noteworthy attractions museums written specialists history karl_baedeker karl_baedeker see article three sons ernst karl fritz death turn events took running firm ernst baedeker following death karl_baedeker son ernst baedeker became thead firm training leipzig stuttgart spent time publishing_house williams london new year day joined father publishing firm partner months_later running tenure firm saw publication three new travel_guides viz first baedeker travel_guide english handbook rhine switzerland holland guide german italy italien first series italy father planned one french alson italy italie baedeker died unexpectedly july egypt younger brother karl assumed charge publishing_house karl_baedeker ii karl_baedeker ii continued work started addition ongoing revision published new guides four german seven english three french viz new german titles london italien italien und rom italien italien undie english paris central italy rome southern italy including sicily germany austrian empire northern_italy far florence island corsica new french titles paris londres l partie l italie rome l italie partie l italie sud la les karl_baedeker ii worked withis younger brother fritz joined firm partner became general_manager according source cited karl mental condition moved near remained rest life fritz baedeker fritz baedeker company grew rapidly baedeker business wasold moved company headquarters leipzig major move forward major german publishing_houses located also wagner baedeker cartographer move leipzig establish new_company ernst talented cartographer leading firm new_company named wagner offices adjacento new baedeker address herbert warren wind author house baedeker wrote file schweiz baedeker jpg thumb right map switzerland published baedeker travel_guide added michael wild baedeker baedeker maps feast thexpansion fast new editions printed printers buthe bulk reviseditions pre guides continued printed baedeker_guides produced baedeker printing works fritz ventured territory none predecessors covered inside russia palestine syria egypt greece mediterranean usa canada indiand south_east_asia plans publish guides chinand japan abandoned war broke home list guides german regions cities continued grow golden_age baedeker travel_guides fritz also good fortune three four sons hans ernst beside firm editors writers karl_baedeker scientist karl_baedeker iii fourth son entered rose become professor physics athe_university killed action athe battle august hison karl_friedrich revived verlag karl_baedeker second_world_war reign lasted years fritz produced new baedekers came known universally baedeker travel_guides became_popular became english_language term purpose traveling country write travel_guide travelogue fritz baedeker became successful travel_guide publisher time turned publishing_house famous publisher travel_guides world leipzig university conferred honorary phd rare honour athe_time th_anniversary era history broughto end outbreak world_war house baedeker went decline victim post_war international economiconditions consequently fritz broke tradition time thereafter baedeker_guides german cities regions carried limited amount advertising fritz baedeker released guidebooks german english twelve french titles published hans baedeker hans baedeker son baedeker took charge company two brothers ernst withim running company firm lost heavily investing government bonds first_world_war war_tourism_also resulted anti german around world particularly americand france guidebooks popular_tourists come rising inflation played part affecting tourism balance sheet publishing_house great_depression put paid hopes early recovery arrival things even worse anything connected tourism baedeker publishing_house destruction headquarters leipzig firm archives thearly hours december britain royal air_force city see_also baedeker blitz hans extremely proud whathe baedeker achieved one give trying revive firm received loan allen unwin london publishing_house represented baedeker britain continued whatever could firm home july hans celebrated centenary foundation holding reception athe leipzig popular venue events firm make progress managed produce twelve new titles germand five english though included commissioned nazi regime also_published one revised german edition egypt eighth english edition many travel_guidebooks collectors consider two finest baedeker travel_guides ever published hans baedeker released guidebooks german several commissioned nazis baedeker_guides proposing changes text saw fit laying certain guides could sold baedeker wasked publish guidebook german army occupation poland written nazis wished ito written introduction book das reveals leipzig first post world_war ii baedeker last one published leipzig russian zone russians granted baedeker publishing licence hans got round copies printed institut however copies sold guidebook contained military secrets form map showing site confiscated remaining copies new english titles time tyrol riviera including south_eastern france edition germany summer olympics olympic games madeira canary islands azores western morocco history since karl_friedrich baedeker karl_friedrich baedeker son karl_baedeker scientist karl_baedeker iii killed action athe battle worked editor athe firm outbreak second_world_war war saw active service rose rank captain towards closing stages war taken prisoner austria americans war moved holstein wife sister living british zone worked local_government outhe holstein archives decided revive family publishing business name karl_baedeker uncle hans stay leipzig jurisdiction russians granted publishing licence however close karl uncle experience going even outbreak war hans used tell american british german publishers tried hard buy baedeker name wastill world brand thinking karl_friedrich would pleased sell however said herbert warren wind december published first offering copies holstein printed near hamburg contained advertising balance books titles allen unwin london publisher helped baedeker firm another published city regional guides years followed karl_friedrich pre_war baedeker editor signed agreement shell subsidiary royal dutch shell kurt mair german printer publisher based produce series baedeker would provide text mair finished baedeker hrer verlag stuttgart born guides called baedeker shell guides designed fit man jacket pocket compartment car first ones covered germany huge success guides european_countries followed germand english karl_friedrich operating two fronts continued produce city regional guides withe publication berlin guide german english french baedeker brand well truly florian son cousin hans son uncle dietrich engaged producing stuttgart dietrich son otto also helped run firm lefto join another publishing_house karl_friedrich moved field operations freiburg breisgau stuttgart operation moved district mair son kurt mair charge withe rise air_travel baedeker entered new era first post_war international guidebook appeared financed largely german airline page baedekers usa german whichad look traditional pre_war baedekers florian baedeker florian baedeker son karl_friedrich baedeker succeeded died completing histudies munich matters relating book_publishing guidance father helped withe preparation munich guide released munich olympic games florian also carried work involved preparing city_guides titled baden constance published mid also produced several short city_guides basel switzerland swiss city first covered baedeker guidebook karl_baedeker celebrated guidebook schweiz first_published title guide published considered many one best city_guides florian baedeker keen parachute killed parachuting accident october eva baedeker following death mother karl_friedrich widow eva baedeker n e firm died last baedeker play active role running baedeker publishing_house founded negotiated sale freiburg branch langenscheidt died however karl_baedeker brand_name retained subsequent owners company one form another since baedeker travel_guides appeared baedeker hrer travel_guides published collaboration withe german insurance group multi coloured illustrations many languages cover popular_tourist_destinations world guides published already list keeps growing well number languages published britain guides published collaboration withe british automobile_association usa macmillan travel simon schuster macmillan company freiburg baedeker branch acquired german publisher langenscheidt following death eva baedeker baedeker branches langenscheidt operation freiburg baedeker hrer verlag stuttgart operated publishingroup merged housed together karl_baedeker gmbh branch munich ownership new venture middle langenscheidt verlag known became owner verlag karl_baedeker along rights attached karl_baedeker name firm new english baedekers produced withe logo title withe german editions marked beginning new era appearance content modern baedekers knowledge opens worlds previous german editions four main sections background tours destinations practical_information added fifth section guidebook entitled und experience enjoy new baedeker_guides first guidebooks incorporate baedeker english editions outset karl importance publishing guides english well hison ernst worked london joining verlag baedeker withe task preparing first baedeker english rhine appeared james findlay muirhead scottish brothers james francis muirhead findlay muirhead played significant role thenglish guidebooks worldwide james brother taken editor thenglish editions fritz baedeker age findlay joined later joint editor weresponsible baedeker editions english almost fortyears james findlay given credit two_thirds content canada guidebook first_published canada guide sole classic baedeker published english james muirhead worked thedition united_states ran four editions withe firm herbert warren wind wrote taken james muirhead two half years research write united_states preface united_states publishers acknowledged muirhead work producing travel_guide page fourth_edition published included excursions cuba puerto_rico alaska addition mexico first_world_war findlay launched series famous blue_guide published london_ernest brother joined venture shortly afterwards augustine piehler augustine piehler better_known piehler publishing world englishman german descent became chief editor thenglish editions left days karl_friedrich baedeker spent year england lived piehler london residence karl_friedrich decided baedeker firm british zone germany publishing licence endorsed piehler colonel british intelligence thead books_publications division district upon return england piehler thenglish guides well brother editing new baedeker london guide baedekers acknowledged commitment piehler firm contribution made success verlag karl_baedeker see_also karl_baedeker list baedeker_guides furthereading_externalinks baedeker resource collectors category book_publishing_companies germany_category publishing_companies germany_category travel_guide_books"},{"title":"Bahamas Ministry of Tourism","description":"the bahamas ministry of tourism and aviation is a government agency of the bahamas agencies government of the bahamas retrieved on february george st bolam house its head office is athe bolam house inassau bahamas nassau the agency has other offices inew providence contacts bahamas ministry of tourism retrieved on february ministry of tourism s offices new providence bolam house george king streets headquarters externalinks ministry of tourism aviation category civil aviation authorities inorth america bahamas category government ministries of the bahamas tourism category tourisministries","main_words":["bahamas","ministry","tourism","aviation","government","agency","bahamas","agencies","government","bahamas","retrieved_february","george","st","house","head_office","athe","house","bahamas","nassau","agency","offices","inew","providence","contacts","bahamas","ministry","tourism","retrieved_february","ministry","tourism","offices","new","providence","house","george","headquarters","externalinks","ministry","tourism","aviation","category","civil_aviation","authorities","inorth_america","bahamas","category_government","ministries","bahamas","tourism_category_tourisministries"],"clean_bigrams":[["bahamas","ministry"],["tourism","aviation"],["government","agency"],["bahamas","agencies"],["agencies","government"],["bahamas","retrieved"],["february","george"],["george","st"],["head","office"],["bahamas","nassau"],["offices","inew"],["inew","providence"],["providence","contacts"],["contacts","bahamas"],["bahamas","ministry"],["tourism","retrieved"],["february","ministry"],["offices","new"],["new","providence"],["house","george"],["george","king"],["king","streets"],["streets","headquarters"],["headquarters","externalinks"],["externalinks","ministry"],["tourism","aviation"],["aviation","category"],["category","civil"],["civil","aviation"],["aviation","authorities"],["authorities","inorth"],["inorth","america"],["america","bahamas"],["bahamas","category"],["category","government"],["government","ministries"],["bahamas","tourism"],["tourism","category"],["category","tourisministries"]],"all_collocations":["bahamas ministry","tourism aviation","government agency","bahamas agencies","agencies government","bahamas retrieved","february george","george st","head office","bahamas nassau","offices inew","inew providence","providence contacts","contacts bahamas","bahamas ministry","tourism retrieved","february ministry","offices new","new providence","house george","george king","king streets","streets headquarters","headquarters externalinks","externalinks ministry","tourism aviation","aviation category","category civil","civil aviation","aviation authorities","authorities inorth","inorth america","america bahamas","bahamas category","category government","government ministries","bahamas tourism","tourism category","category tourisministries"],"new_description":"bahamas ministry tourism aviation government agency bahamas agencies government bahamas retrieved_february george st house head_office athe house bahamas nassau agency offices inew providence contacts bahamas ministry tourism retrieved_february ministry tourism offices new providence house george king_streets headquarters externalinks ministry tourism aviation category civil_aviation authorities inorth_america bahamas category_government ministries bahamas tourism_category_tourisministries"},{"title":"Baker","description":"file the baker circa by job adriaensz berckheyde img jpg thumb the baker c oil on canvas painting by job adriaensz berckheyde now held by the worcester art museum image uss john c stennis bakerjpg thumb a united states navy us navy baker aboard the uss john c stennis uss john c stennis aircraft carrier moves a tray of hot freshly baked bread rolls onto a cooling rack a baker isomeone who baking bakes and sometimesalesells bread s and other products made using an oven or other concentrated heat source the place where a baker employment work s is called a bakery since grain s have been a staple food for millennia the activity of baking is a very old one control of yeast however is relatively recentwayne gisslen professional baking th ed john wiley sons p by the fifth and sixth centuries bce the ancient greek civilization ancient greeks used enclosed oven s heated by wood fires communities usually baked bread in a large communal oven greeks bakedozens and possibly hundreds of types of bread athenaeus described seventy two varieties in ancient rome several centuries later the first mass production of breads occurred and the baking profession can be said to have started athatime ancient roman bakers used honey and oil in their products creating pastries rather than breads in ancient rome bakers latin pistor were sometimeslavery in ancient rome slaves who were like other slave artisan sometimes manumission manumitted sandra r joshel work identity and legal status at rome a study of the occupational inscriptions university of oklahoma press pp large households in rome normally had their own bakersjoshel p the gauls are credited with discovering thathe addition of beer froth to breadough made welleavened bread marking the use of controlled yeast for breadoughwayne gisslen professional baking th ed john wiley sons p in medieval europe baking ovens were often separated from other buildings and sometimes located outside city wall s to mitigate the risk ofire because bread was an important staple food bakers production factor such as bolting yields ingredients and loaf sizes were heavily regulated for example henry iii of england promulgated the assize of bread and ale in subjecting all commercial bakers and brewers to various fees in order to practice their trade and imposing various regulationsuch as inspection and verification of weights and measures quality control and price control sian spencer hornsey a history of beer and brewing royal society of chemistry p soon after thenactment of the assize baking became a very stable industry and was executed much more professionally than brewing resulting in towns and villages having fewer bakers than brewers because ovens werexpensive capital investment s and required careful operation specialized bakeries opened bakers were often part of the guild system which was well established by the sixteenth century master bakers instructed apprentices and were assisted by journeymen in amsterdam in for example the cake bakers pie bakers and rusk bakerseparated from an earlier bread bakers guild and formed their own guild regulating the tradejoop witteveen rye a daily bread and a daily treat in oxford symposium on food cookery staple foods prospect p a fraternity of bakers in london existed as early as according to records of payments to thexchequer the worshipful company of bakers was formed by charters dated and the guild still exists today with mostly ceremonial and charitable functions five bakers have served as lord mayor of london john kennedy melling london s guilds and liverieshire publications p the columbian exchange which began in had a profound influence on the baking occupation access to sugar greatly increased as a result of new cultivation in the caribbeand ingredientsuch as cocoa solids cocoand chocolate became available in the old world in theighteenth century processors learned how to refine sugar from sugar beet s allowing europeans to grow sugar locally these developments led to an increase in the sophistication of baking and pastries and the development of new productsuch as puff pastries andanish dough image lankckorona piekarniajpg thumb a traditional baker in poland removes fresh bread from an oven with a long wooden peel tool peel and places it on a cooling rack two important books on bread baking were published in the s paul jacques malaouin published l art du meinier du boulanger et du vermicellier the art of the miller the bread baker and the pasta maker in and antoine augustin parmentier published le parfair boulanger the perfect bread baker in a study of thenglish city of manchester from during the industrial revolution determined that baker and shopkeeper was the third most common occupation with male bakers female bakers and eight bakers of unknown sex in the city athatimejoyce burnette gender work and wages industrial revolution britain cambridge university press p table this occupation was less common thatextile manufacture during the industrial revolution cloth manufacturer and tavern public house worker but more common than cotton spinning machinery cotton spinner merchant calico printer or grocer in the new york state assembly passed a reformist bakeshop lawhich included protections for bakery workers the law banned employees from sleeping in the bakeriespecified the drainage plumbing and maintenance necessary to keep the bakeriesanitary cat s were specifically allowed to stay on the premise presumably to deal withe rats limited the daily and weekly maximum of hours worked and established an inspectorate to make sure these conditions were met maria balinska the bagel the surprising history of a modest bread yale university press p gary r hartman roy mersky cindy l tate landmark supreme court cases the most influential decisions of the supreme court of the united states infobase p the legislation wasoon replicated in other ustate states balinska p joseph lochner a bakery owner in utica new york wasubsequently convicted of violating the law forcing his employees to work more than sixty hours a week he appealed his case to the supreme court of the united states usupreme court which decided in the highly influential case of lochner v new york over a dissent from justice oliver wendell holmes jr oliver wendell holmes thathe labor law violated a constitutional righto freedom of contract balinska p this case marked the beginning of a pro employer laissez fairera later known as the lochnera lochnera which would cast a long shadow over american law society and politics until the late s when lochner was repudiatedbalinska p frustrated withe rapideterioration of working conditions bakery workers inew york went on strike in august balinska p in roman catholichurch roman catholic tradition the patron saint of bakers and pastry chefs is honoratus of amiens honor a sixth century bishop of amiens inorthern france for whom the st honor cake is nameddeena prichep thank the patron saint of bakers for this cake today npr may lazarus of bethany lazare was originally a competitor to honor for the title of patron saint of bakers but in the th century the french bakers guild settled in favor of honor as a surname baker is an easily recognizablenglish surname of medieval occupational origin baxster is the female formgregory clark the son also risesurnames and the history of social mobility princeton university press p elsdon colesmith american surnames genealogical publishing co p equivalent family names of occupational origin meaning baker exist in other languages boulanger bulinger dufour and fournier in french surname french pfister and becker in german surname germand piekarz in polish surname polish duties and occupational hazards according to the occupational outlook handbook ooh published by the bureau of labor statistics of the united states department of labor bakers encounter a number of occupational hazard s ooh reports that bakeriespecially large manufacturing facilities are filled with potential dangersuch as hot ovens mixing machines andough cutters as a result bakers have a higherate of injuries and illnesses than the national average although their work is generally safe bakers may endure back strains caused by lifting or moving heavy bags oflour or other products other common risks include cutscrapes and burns to reduce these risks bakers often wear back supports apron s and gloves baker s asthma commonly caused by flour allergen s and the microbial enzyme s often aspergillus derived used to facilitate breadmaking is one of the common causes of occupational asthma worldwidepaul cullinan torben sigsgaard rolf merget occupational asmtha in the baking industry in asthma in the workplaceds jean luc malo moira chan yeung david i bernstein th ed crc press p comparison with pastry chef both bakers and pastry chef s make desserts and breads in some restaurants and shops a single individual serves in both roles in other environments there is a distinction between the two positions with bakers making breads rolls and muffins and pastry chefs making dessertsuch as cakes pies tarts and cookies even when both bakers and pastry chefs work in the same place however there may be overlapsimone payment careers in restaurants rosen p file work doughjpg px thumb right a rolling pin is used to work dough a variety of equipment is used by bakers including baker s peel tool peel a large flat paddleither wood or metal used to slide loaves into and out of an ovenrose levy beranbaum the bread bible w norton p rolling pin used to roll dough flour scoops used to add remove or measure flour brushes used to brush off excess flour from dough and for glazing flour mills used to mill grains may beither hand cranked or mechanical employment statistics united states according to the occupational outlook handbook published by the bureau of labor statistics of the united states department of labor there were bakers in the us in with median pay of per year or per hour about of us bakers work in stand alone bakeries or in tortilla manufacturing work in grocery store s work in restaurant s and other eating places and were self employment self employed about of us bakers worked partime in file walraversijde jpg a bakery c also used for baking hardtack s or sea biscuits file baker oslojpg a baker shop in oslo norway with a variety ofresh baked goods on display file bakery in riyadhjpg bakery in riyadh with traditional afghan bread tameesee also bagel bakers local baker percentage baker s percentage baker s yeast what bakers commonly use to make doughs rise bakers food and allied workers union bakery confectionery tobacco workers and grain millers international union bread machine a home appliance to make single basic loaves of bread cake shop chorleywood bread process a process developed to make breadough from the lower protein wheats of england coffee cake simple cakes made for everyday use such as for breakfast or asnacks list of baked goods list of bakers list of restauranterminology pastry chef someone who specializes in the making and baking of pastries desserts and other elaborate sweets p tisserie a bakery that specializes in pastries and sweets in some countries this a legal distinction proofing baking technique sliced bread involves the industrial development of bread slicing machines vienna breadeveloped with processes that werearly steps in the modernization of bread production white bread august zang austrian soldier who started a bakery in paris and introduced viennese steam ovens and pastries there category artisans category baking category chefs category food services occupations category restauranterminology category culinary terminology","main_words":["file","baker","circa","job","img_jpg","thumb","baker","c","oil","canvas","painting","job","held","worcester","art","museum","image","uss","john_c","stennis","thumb","united_states","navy","us_navy","baker","aboard","uss","john_c","stennis","uss","john_c","stennis","aircraft","carrier","moves","tray","hot","freshly","baked","bread","rolls","onto","cooling","baker","baking","bread","products","made","using","oven","concentrated","heat","source","place","baker","employment","work","called","bakery","since","grain","staple","food","activity","baking","old","one","control","yeast","however","relatively","professional","baking","th_ed","john","wiley","sons","p","fifth","sixth","centuries","bce","ancient_greek","civilization","used","enclosed","oven","heated","wood","fires","communities","usually","baked","bread","large","communal","oven","greeks","possibly","hundreds","types","bread","described","two","varieties","ancient_rome","several","centuries","later","first","mass","production","breads","occurred","baking","profession","said","started","athatime","ancient","roman","bakers","used","honey","oil","products","creating","pastries","rather","breads","ancient_rome","bakers","latin","ancient_rome","slaves","like","slave","artisan","sometimes","sandra","r","work","identity","legal","status","rome","study","occupational","university","oklahoma","press_pp","large","households","rome","normally","p","credited","discovering","thathe","addition","beer","breadough","made","bread","marking","use","controlled","yeast","professional","baking","th_ed","john","wiley","sons","p","medieval_europe","baking","ovens","often","separated","buildings","sometimes","located","outside","city","wall","mitigate","risk","ofire","bread","important","staple","food","bakers","production","factor","yields","ingredients","sizes","heavily","regulated","example","henry","iii","england","bread","ale","commercial","bakers","brewers","various","fees","order","practice","trade","imposing","various","inspection","verification","measures","quality","control","price","control","spencer","hornsey","history","beer","brewing","royal","society","chemistry","p","soon","baking","became","stable","industry","executed","much","professionally","brewing","resulting","towns","villages","fewer","bakers","brewers","ovens","capital","investment","required","careful","operation","specialized","bakeries","opened","bakers","often","part","guild","system","well_established","sixteenth","century","master","bakers","instructed","assisted","amsterdam","example","cake","bakers","pie","bakers","earlier","bread","bakers","guild","formed","guild","regulating","rye","daily","bread","daily","treat","oxford","symposium","food","cookery","staple","foods","prospect","p","bakers","early","according","records","payments","company","bakers","formed","charters","dated","guild","still","exists","today","mostly","ceremonial","charitable","functions","five","bakers","served","lord","mayor","london","john","kennedy","london","guilds","publications","p","exchange","began","profound","influence","baking","occupation","access","sugar","greatly","increased","result","new","cultivation","caribbeand","chocolate","became","available","old","world","theighteenth","century","learned","refine","sugar","sugar","allowing","europeans","grow","sugar","locally","developments","led","increase","sophistication","baking","pastries","development","pastries","dough","image","thumb","traditional","baker","poland","fresh","bread","oven","long","wooden","peel","tool","peel","places","cooling","two","important","books","bread","baking","published","paul","jacques","published","l","art","boulanger","art","miller","bread","baker","pasta","maker","antoine","published","boulanger","perfect","bread","baker","study","thenglish","city","manchester","industrial_revolution","determined","baker","third","common","occupation","male","bakers","female","bakers","eight","bakers","unknown","sex","city","gender","work","wages","industrial_revolution","britain","cambridge","university_press_p","table","occupation","less_common","manufacture","industrial_revolution","cloth","manufacturer","tavern","public_house","worker","common","cotton","spinning","machinery","cotton","merchant","calico","printer","new_york","state","assembly","passed","bakeshop","included","protections","bakery","workers","law","banned","employees","sleeping","plumbing","maintenance","necessary","keep","cat","specifically","allowed","stay","premise","presumably","deal","withe","rats","limited","daily","weekly","maximum","hours","worked","established","make_sure","conditions","met","maria","balinska","bagel","surprising","history","modest","bread","gary","r","roy","l","tate","landmark","supreme_court","cases","influential","decisions","supreme_court","united_states","p","legislation","wasoon","ustate","states","balinska","p","joseph","bakery","owner","new_york","wasubsequently","convicted","violating","law","forcing","employees","work","sixty","hours","week","appealed","case","supreme_court","united_states","court","decided","highly","influential","case","v","new_york","justice","oliver","holmes","oliver","holmes","thathe","labor","law","violated","constitutional","righto","freedom","contract","balinska","p","case","marked","beginning","pro","employer","later","known","would","cast","long","shadow","american","law","society","politics","late","p","frustrated","withe","working","conditions","bakery","workers","inew_york","went","strike","august","balinska","p","roman","catholichurch","roman","catholic","tradition","patron","saint","bakers","pastry_chefs","honor","sixth","century","bishop","inorthern","france","st","honor","cake","patron","saint","bakers","cake","today","npr","may","originally","competitor","honor","title","patron","saint","bakers","th_century","french","bakers","guild","settled","favor","honor","surname","baker","easily","surname","medieval","occupational","origin","female","clark","son","also","history","social","mobility","princeton","university_press_p","american","publishing","p","equivalent","family","names","occupational","origin","meaning","baker","exist","languages","boulanger","french","surname","french","german","surname","germand","polish","surname","polish","duties","occupational","hazards","according","occupational","outlook","handbook","published","bureau","labor","statistics","united_states","department","labor","bakers","encounter","number","occupational","hazard","reports","large","manufacturing","facilities","filled","potential","hot","ovens","mixing","machines","result","bakers","injuries","illnesses","national","average","although","work","generally","safe","bakers","may","endure","back","strains","caused","lifting","moving","heavy","bags","products","common","risks","include","burns","reduce","risks","bakers","often","wear","back","supports","apron","gloves","baker","asthma","commonly","caused","flour","often","derived","used","facilitate","one","common","causes","occupational","asthma","occupational","baking","industry","asthma","jean","chan","david","th_ed","crc","press_p","comparison","pastry_chef","bakers","pastry_chef","make","desserts","breads","restaurants","shops","single","individual","serves","roles","environments","distinction","two","positions","bakers","making","breads","rolls","pastry_chefs","making","cakes","pies","cookies","even","bakers","pastry_chefs","work","place","however","may","payment","careers","restaurants","rosen","p","file","work","px_thumb","right","rolling","pin","used","work","dough","variety","equipment","used","bakers","including","baker","peel","tool","peel","large","flat","wood","metal","used","slide","levy","bread","bible","w","norton","p","rolling","pin","used","roll","dough","flour","used","add","remove","measure","flour","used","brush","excess","flour","dough","flour","mills","used","mill","grains","may","beither","hand","mechanical","employment","statistics","united_states","according","occupational","outlook","handbook","published","bureau","labor","statistics","united_states","department","labor","bakers","us","median","per_hour","us","bakers","work","stand","alone","bakeries","tortilla","manufacturing","work","grocery","store","work","restaurant","eating","places","self","employment","self","employed","us","bakers","worked","partime","file_jpg","bakery","c","also_used","baking","sea","biscuits","file","baker","baker","shop","oslo","norway","variety","ofresh","baked_goods","display","file","bakery","bakery","traditional","afghan","bread","also","bagel","bakers","local","baker","percentage","baker","percentage","baker","yeast","bakers","commonly","use","make","rise","bakers","food","allied","workers","union","bakery","confectionery","tobacco","workers","grain","international","union","bread","machine","home","make","single","basic","bread","cake","shop","bread","process","process","developed","make","breadough","lower","protein","england","coffee","cake","simple","cakes","made","everyday","use","breakfast","list","baked_goods","list","bakers","list","restauranterminology","pastry_chef","someone","specializes","making","baking","pastries","desserts","elaborate","sweets","p","bakery","specializes","pastries","sweets","countries","legal","distinction","baking","technique","sliced","bread","involves","industrial","development","bread","machines","vienna","processes","steps","modernization","bread","production","white","bread","august","austrian","soldier","started","bakery","paris","introduced","steam","ovens","pastries","category","artisans","category","baking","category","chefs","category_food_services","occupations_category_restauranterminology","category","culinary","terminology"],"clean_bigrams":[["file","baker"],["baker","circa"],["img","jpg"],["jpg","thumb"],["baker","c"],["c","oil"],["canvas","painting"],["worcester","art"],["art","museum"],["museum","image"],["image","uss"],["uss","john"],["john","c"],["c","stennis"],["united","states"],["states","navy"],["navy","us"],["us","navy"],["navy","baker"],["baker","aboard"],["uss","john"],["john","c"],["c","stennis"],["stennis","uss"],["uss","john"],["john","c"],["c","stennis"],["stennis","aircraft"],["aircraft","carrier"],["carrier","moves"],["hot","freshly"],["freshly","baked"],["baked","bread"],["bread","rolls"],["rolls","onto"],["products","made"],["made","using"],["concentrated","heat"],["heat","source"],["baker","employment"],["employment","work"],["bakery","since"],["since","grain"],["staple","food"],["old","one"],["one","control"],["yeast","however"],["professional","baking"],["baking","th"],["th","ed"],["ed","john"],["john","wiley"],["wiley","sons"],["sons","p"],["sixth","centuries"],["centuries","bce"],["ancient","greek"],["greek","civilization"],["civilization","ancient"],["ancient","greeks"],["greeks","used"],["used","enclosed"],["enclosed","oven"],["wood","fires"],["fires","communities"],["communities","usually"],["usually","baked"],["baked","bread"],["large","communal"],["communal","oven"],["oven","greeks"],["possibly","hundreds"],["two","varieties"],["ancient","rome"],["rome","several"],["several","centuries"],["centuries","later"],["first","mass"],["mass","production"],["breads","occurred"],["baking","profession"],["started","athatime"],["athatime","ancient"],["ancient","roman"],["roman","bakers"],["bakers","used"],["used","honey"],["products","creating"],["creating","pastries"],["pastries","rather"],["ancient","rome"],["rome","bakers"],["bakers","latin"],["ancient","rome"],["rome","slaves"],["slave","artisan"],["artisan","sometimes"],["sandra","r"],["work","identity"],["legal","status"],["oklahoma","press"],["press","pp"],["pp","large"],["large","households"],["rome","normally"],["discovering","thathe"],["thathe","addition"],["breadough","made"],["bread","marking"],["controlled","yeast"],["professional","baking"],["baking","th"],["th","ed"],["ed","john"],["john","wiley"],["wiley","sons"],["sons","p"],["medieval","europe"],["europe","baking"],["baking","ovens"],["often","separated"],["sometimes","located"],["located","outside"],["outside","city"],["city","wall"],["risk","ofire"],["important","staple"],["staple","food"],["food","bakers"],["bakers","production"],["production","factor"],["yields","ingredients"],["heavily","regulated"],["example","henry"],["henry","iii"],["commercial","bakers"],["various","fees"],["imposing","various"],["measures","quality"],["quality","control"],["price","control"],["spencer","hornsey"],["brewing","royal"],["royal","society"],["chemistry","p"],["p","soon"],["baking","became"],["stable","industry"],["executed","much"],["brewing","resulting"],["fewer","bakers"],["capital","investment"],["required","careful"],["careful","operation"],["operation","specialized"],["specialized","bakeries"],["bakeries","opened"],["opened","bakers"],["bakers","often"],["often","part"],["guild","system"],["well","established"],["sixteenth","century"],["century","master"],["master","bakers"],["bakers","instructed"],["cake","bakers"],["bakers","pie"],["pie","bakers"],["earlier","bread"],["bread","bakers"],["bakers","guild"],["guild","regulating"],["daily","bread"],["daily","treat"],["oxford","symposium"],["food","cookery"],["cookery","staple"],["staple","foods"],["foods","prospect"],["prospect","p"],["london","existed"],["charters","dated"],["guild","still"],["still","exists"],["exists","today"],["mostly","ceremonial"],["charitable","functions"],["functions","five"],["five","bakers"],["lord","mayor"],["london","john"],["john","kennedy"],["publications","p"],["columbian","exchange"],["profound","influence"],["baking","occupation"],["occupation","access"],["sugar","greatly"],["greatly","increased"],["new","cultivation"],["chocolate","became"],["became","available"],["old","world"],["theighteenth","century"],["refine","sugar"],["allowing","europeans"],["grow","sugar"],["sugar","locally"],["developments","led"],["new","productsuch"],["dough","image"],["traditional","baker"],["fresh","bread"],["long","wooden"],["wooden","peel"],["peel","tool"],["tool","peel"],["two","important"],["important","books"],["bread","baking"],["paul","jacques"],["published","l"],["l","art"],["bread","baker"],["pasta","maker"],["perfect","bread"],["bread","baker"],["thenglish","city"],["industrial","revolution"],["revolution","determined"],["common","occupation"],["male","bakers"],["bakers","female"],["female","bakers"],["eight","bakers"],["unknown","sex"],["gender","work"],["wages","industrial"],["industrial","revolution"],["revolution","britain"],["britain","cambridge"],["cambridge","university"],["university","press"],["press","p"],["p","table"],["less","common"],["industrial","revolution"],["revolution","cloth"],["cloth","manufacturer"],["tavern","public"],["public","house"],["house","worker"],["cotton","spinning"],["spinning","machinery"],["machinery","cotton"],["merchant","calico"],["calico","printer"],["new","york"],["york","state"],["state","assembly"],["assembly","passed"],["included","protections"],["bakery","workers"],["law","banned"],["banned","employees"],["maintenance","necessary"],["specifically","allowed"],["premise","presumably"],["deal","withe"],["withe","rats"],["rats","limited"],["weekly","maximum"],["hours","worked"],["make","sure"],["met","maria"],["maria","balinska"],["surprising","history"],["modest","bread"],["bread","yale"],["yale","university"],["university","press"],["press","p"],["p","gary"],["gary","r"],["l","tate"],["tate","landmark"],["landmark","supreme"],["supreme","court"],["court","cases"],["influential","decisions"],["supreme","court"],["united","states"],["legislation","wasoon"],["ustate","states"],["states","balinska"],["balinska","p"],["p","joseph"],["bakery","owner"],["new","york"],["york","wasubsequently"],["wasubsequently","convicted"],["law","forcing"],["sixty","hours"],["supreme","court"],["united","states"],["highly","influential"],["influential","case"],["v","new"],["new","york"],["justice","oliver"],["holmes","thathe"],["thathe","labor"],["labor","law"],["law","violated"],["constitutional","righto"],["righto","freedom"],["contract","balinska"],["balinska","p"],["case","marked"],["pro","employer"],["later","known"],["would","cast"],["long","shadow"],["american","law"],["law","society"],["p","frustrated"],["frustrated","withe"],["working","conditions"],["conditions","bakery"],["bakery","workers"],["workers","inew"],["inew","york"],["york","went"],["august","balinska"],["balinska","p"],["roman","catholichurch"],["catholichurch","roman"],["roman","catholic"],["catholic","tradition"],["patron","saint"],["pastry","chefs"],["sixth","century"],["century","bishop"],["inorthern","france"],["st","honor"],["honor","cake"],["patron","saint"],["cake","today"],["today","npr"],["npr","may"],["patron","saint"],["th","century"],["french","bakers"],["bakers","guild"],["guild","settled"],["surname","baker"],["medieval","occupational"],["occupational","origin"],["son","also"],["social","mobility"],["mobility","princeton"],["princeton","university"],["university","press"],["press","p"],["p","equivalent"],["equivalent","family"],["family","names"],["occupational","origin"],["origin","meaning"],["meaning","baker"],["baker","exist"],["languages","boulanger"],["french","surname"],["surname","french"],["german","surname"],["surname","germand"],["polish","surname"],["surname","polish"],["polish","duties"],["occupational","hazards"],["hazards","according"],["occupational","outlook"],["outlook","handbook"],["handbook","published"],["labor","statistics"],["statistics","united"],["united","states"],["states","department"],["labor","bakers"],["bakers","encounter"],["occupational","hazard"],["large","manufacturing"],["manufacturing","facilities"],["hot","ovens"],["ovens","mixing"],["mixing","machines"],["result","bakers"],["national","average"],["average","although"],["generally","safe"],["safe","bakers"],["bakers","may"],["may","endure"],["endure","back"],["back","strains"],["strains","caused"],["moving","heavy"],["heavy","bags"],["common","risks"],["risks","include"],["risks","bakers"],["bakers","often"],["often","wear"],["wear","back"],["back","supports"],["supports","apron"],["gloves","baker"],["asthma","commonly"],["commonly","caused"],["derived","used"],["common","causes"],["occupational","asthma"],["baking","industry"],["th","ed"],["ed","crc"],["crc","press"],["press","p"],["p","comparison"],["pastry","chef"],["pastry","chef"],["make","desserts"],["single","individual"],["individual","serves"],["two","positions"],["bakers","making"],["making","breads"],["breads","rolls"],["pastry","chefs"],["chefs","making"],["cakes","pies"],["cookies","even"],["pastry","chefs"],["chefs","work"],["place","however"],["payment","careers"],["restaurants","rosen"],["rosen","p"],["p","file"],["file","work"],["px","thumb"],["thumb","right"],["rolling","pin"],["pin","used"],["work","dough"],["bakers","including"],["including","baker"],["peel","tool"],["tool","peel"],["large","flat"],["metal","used"],["bread","bible"],["bible","w"],["w","norton"],["norton","p"],["p","rolling"],["rolling","pin"],["pin","used"],["roll","dough"],["dough","flour"],["add","remove"],["measure","flour"],["excess","flour"],["dough","flour"],["flour","mills"],["mills","used"],["mill","grains"],["grains","may"],["may","beither"],["beither","hand"],["mechanical","employment"],["employment","statistics"],["statistics","united"],["united","states"],["states","according"],["occupational","outlook"],["outlook","handbook"],["handbook","published"],["labor","statistics"],["statistics","united"],["united","states"],["states","department"],["labor","bakers"],["median","pay"],["per","year"],["per","hour"],["us","bakers"],["bakers","work"],["stand","alone"],["alone","bakeries"],["tortilla","manufacturing"],["manufacturing","work"],["grocery","store"],["eating","places"],["self","employment"],["employment","self"],["self","employed"],["us","bakers"],["bakers","worked"],["worked","partime"],["bakery","c"],["c","also"],["also","used"],["sea","biscuits"],["biscuits","file"],["file","baker"],["baker","shop"],["oslo","norway"],["variety","ofresh"],["ofresh","baked"],["baked","goods"],["display","file"],["file","bakery"],["traditional","afghan"],["afghan","bread"],["also","bagel"],["bagel","bakers"],["bakers","local"],["local","baker"],["baker","percentage"],["percentage","baker"],["baker","percentage"],["percentage","baker"],["bakers","commonly"],["commonly","use"],["rise","bakers"],["bakers","food"],["allied","workers"],["workers","union"],["union","bakery"],["bakery","confectionery"],["confectionery","tobacco"],["tobacco","workers"],["international","union"],["union","bread"],["bread","machine"],["make","single"],["single","basic"],["bread","cake"],["cake","shop"],["bread","process"],["process","developed"],["make","breadough"],["lower","protein"],["england","coffee"],["coffee","cake"],["cake","simple"],["simple","cakes"],["cakes","made"],["everyday","use"],["baked","goods"],["goods","list"],["bakers","list"],["restauranterminology","pastry"],["pastry","chef"],["chef","someone"],["pastries","desserts"],["elaborate","sweets"],["sweets","p"],["legal","distinction"],["baking","technique"],["technique","sliced"],["sliced","bread"],["bread","involves"],["industrial","development"],["machines","vienna"],["bread","production"],["production","white"],["white","bread"],["bread","august"],["austrian","soldier"],["steam","ovens"],["category","artisans"],["artisans","category"],["category","baking"],["baking","category"],["category","chefs"],["chefs","category"],["category","food"],["food","services"],["services","occupations"],["occupations","category"],["category","restauranterminology"],["restauranterminology","category"],["category","culinary"],["culinary","terminology"]],"all_collocations":["file baker","baker circa","img jpg","baker c","c oil","canvas painting","worcester art","art museum","museum image","image uss","uss john","john c","c stennis","united states","states navy","navy us","us navy","navy baker","baker aboard","uss john","john c","c stennis","stennis uss","uss john","john c","c stennis","stennis aircraft","aircraft carrier","carrier moves","hot freshly","freshly baked","baked bread","bread rolls","rolls onto","products made","made using","concentrated heat","heat source","baker employment","employment work","bakery since","since grain","staple food","old one","one control","yeast however","professional baking","baking th","th ed","ed john","john wiley","wiley sons","sons p","sixth centuries","centuries bce","ancient greek","greek civilization","civilization ancient","ancient greeks","greeks used","used enclosed","enclosed oven","wood fires","fires communities","communities usually","usually baked","baked bread","large communal","communal oven","oven greeks","possibly hundreds","two varieties","ancient rome","rome several","several centuries","centuries later","first mass","mass production","breads occurred","baking profession","started athatime","athatime ancient","ancient roman","roman bakers","bakers used","used honey","products creating","creating pastries","pastries rather","ancient rome","rome bakers","bakers latin","ancient rome","rome slaves","slave artisan","artisan sometimes","sandra r","work identity","legal status","oklahoma press","press pp","pp large","large households","rome normally","discovering thathe","thathe addition","breadough made","bread marking","controlled yeast","professional baking","baking th","th ed","ed john","john wiley","wiley sons","sons p","medieval europe","europe baking","baking ovens","often separated","sometimes located","located outside","outside city","city wall","risk ofire","important staple","staple food","food bakers","bakers production","production factor","yields ingredients","heavily regulated","example henry","henry iii","commercial bakers","various fees","imposing various","measures quality","quality control","price control","spencer hornsey","brewing royal","royal society","chemistry p","p soon","baking became","stable industry","executed much","brewing resulting","fewer bakers","capital investment","required careful","careful operation","operation specialized","specialized bakeries","bakeries opened","opened bakers","bakers often","often part","guild system","well established","sixteenth century","century master","master bakers","bakers instructed","cake bakers","bakers pie","pie bakers","earlier bread","bread bakers","bakers guild","guild regulating","daily bread","daily treat","oxford symposium","food cookery","cookery staple","staple foods","foods prospect","prospect p","london existed","charters dated","guild still","still exists","exists today","mostly ceremonial","charitable functions","functions five","five bakers","lord mayor","london john","john kennedy","publications p","columbian exchange","profound influence","baking occupation","occupation access","sugar greatly","greatly increased","new cultivation","chocolate became","became available","old world","theighteenth century","refine sugar","allowing europeans","grow sugar","sugar locally","developments led","new productsuch","dough image","traditional baker","fresh bread","long wooden","wooden peel","peel tool","tool peel","two important","important books","bread baking","paul jacques","published l","l art","bread baker","pasta maker","perfect bread","bread baker","thenglish city","industrial revolution","revolution determined","common occupation","male bakers","bakers female","female bakers","eight bakers","unknown sex","gender work","wages industrial","industrial revolution","revolution britain","britain cambridge","cambridge university","university press","press p","p table","less common","industrial revolution","revolution cloth","cloth manufacturer","tavern public","public house","house worker","cotton spinning","spinning machinery","machinery cotton","merchant calico","calico printer","new york","york state","state assembly","assembly passed","included protections","bakery workers","law banned","banned employees","maintenance necessary","specifically allowed","premise presumably","deal withe","withe rats","rats limited","weekly maximum","hours worked","make sure","met maria","maria balinska","surprising history","modest bread","bread yale","yale university","university press","press p","p gary","gary r","l tate","tate landmark","landmark supreme","supreme court","court cases","influential decisions","supreme court","united states","legislation wasoon","ustate states","states balinska","balinska p","p joseph","bakery owner","new york","york wasubsequently","wasubsequently convicted","law forcing","sixty hours","supreme court","united states","highly influential","influential case","v new","new york","justice oliver","holmes thathe","thathe labor","labor law","law violated","constitutional righto","righto freedom","contract balinska","balinska p","case marked","pro employer","later known","would cast","long shadow","american law","law society","p frustrated","frustrated withe","working conditions","conditions bakery","bakery workers","workers inew","inew york","york went","august balinska","balinska p","roman catholichurch","catholichurch roman","roman catholic","catholic tradition","patron saint","pastry chefs","sixth century","century bishop","inorthern france","st honor","honor cake","patron saint","cake today","today npr","npr may","patron saint","th century","french bakers","bakers guild","guild settled","surname baker","medieval occupational","occupational origin","son also","social mobility","mobility princeton","princeton university","university press","press p","p equivalent","equivalent family","family names","occupational origin","origin meaning","meaning baker","baker exist","languages boulanger","french surname","surname french","german surname","surname germand","polish surname","surname polish","polish duties","occupational hazards","hazards according","occupational outlook","outlook handbook","handbook published","labor statistics","statistics united","united states","states department","labor bakers","bakers encounter","occupational hazard","large manufacturing","manufacturing facilities","hot ovens","ovens mixing","mixing machines","result bakers","national average","average although","generally safe","safe bakers","bakers may","may endure","endure back","back strains","strains caused","moving heavy","heavy bags","common risks","risks include","risks bakers","bakers often","often wear","wear back","back supports","supports apron","gloves baker","asthma commonly","commonly caused","derived used","common causes","occupational asthma","baking industry","th ed","ed crc","crc press","press p","p comparison","pastry chef","pastry chef","make desserts","single individual","individual serves","two positions","bakers making","making breads","breads rolls","pastry chefs","chefs making","cakes pies","cookies even","pastry chefs","chefs work","place however","payment careers","restaurants rosen","rosen p","p file","file work","px thumb","rolling pin","pin used","work dough","bakers including","including baker","peel tool","tool peel","large flat","metal used","bread bible","bible w","w norton","norton p","p rolling","rolling pin","pin used","roll dough","dough flour","add remove","measure flour","excess flour","dough flour","flour mills","mills used","mill grains","grains may","may beither","beither hand","mechanical employment","employment statistics","statistics united","united states","states according","occupational outlook","outlook handbook","handbook published","labor statistics","statistics united","united states","states department","labor bakers","median pay","per year","per hour","us bakers","bakers work","stand alone","alone bakeries","tortilla manufacturing","manufacturing work","grocery store","eating places","self employment","employment self","self employed","us bakers","bakers worked","worked partime","bakery c","c also","also used","sea biscuits","biscuits file","file baker","baker shop","oslo norway","variety ofresh","ofresh baked","baked goods","display file","file bakery","traditional afghan","afghan bread","also bagel","bagel bakers","bakers local","local baker","baker percentage","percentage baker","baker percentage","percentage baker","bakers commonly","commonly use","rise bakers","bakers food","allied workers","workers union","union bakery","bakery confectionery","confectionery tobacco","tobacco workers","international union","union bread","bread machine","make single","single basic","bread cake","cake shop","bread process","process developed","make breadough","lower protein","england coffee","coffee cake","cake simple","simple cakes","cakes made","everyday use","baked goods","goods list","bakers list","restauranterminology pastry","pastry chef","chef someone","pastries desserts","elaborate sweets","sweets p","legal distinction","baking technique","technique sliced","sliced bread","bread involves","industrial development","machines vienna","bread production","production white","white bread","bread august","austrian soldier","steam ovens","category artisans","artisans category","category baking","baking category","category chefs","chefs category","category food","food services","services occupations","occupations category","category restauranterminology","restauranterminology category","category culinary","culinary terminology"],"new_description":"file baker circa job img_jpg thumb baker c oil canvas painting job held worcester art museum image uss john_c stennis thumb united_states navy us_navy baker aboard uss john_c stennis uss john_c stennis aircraft carrier moves tray hot freshly baked bread rolls onto cooling baker baking bread products made using oven concentrated heat source place baker employment work called bakery since grain staple food activity baking old one control yeast however relatively professional baking th_ed john wiley sons p fifth sixth centuries bce ancient_greek civilization ancient_greeks used enclosed oven heated wood fires communities usually baked bread large communal oven greeks possibly hundreds types bread described two varieties ancient_rome several centuries later first mass production breads occurred baking profession said started athatime ancient roman bakers used honey oil products creating pastries rather breads ancient_rome bakers latin ancient_rome slaves like slave artisan sometimes sandra r work identity legal status rome study occupational university oklahoma press_pp large households rome normally p credited discovering thathe addition beer breadough made bread marking use controlled yeast professional baking th_ed john wiley sons p medieval_europe baking ovens often separated buildings sometimes located outside city wall mitigate risk ofire bread important staple food bakers production factor yields ingredients sizes heavily regulated example henry iii england bread ale commercial bakers brewers various fees order practice trade imposing various inspection verification measures quality control price control spencer hornsey history beer brewing royal society chemistry p soon baking became stable industry executed much professionally brewing resulting towns villages fewer bakers brewers ovens capital investment required careful operation specialized bakeries opened bakers often part guild system well_established sixteenth century master bakers instructed assisted amsterdam example cake bakers pie bakers earlier bread bakers guild formed guild regulating rye daily bread daily treat oxford symposium food cookery staple foods prospect p bakers london_existed early according records payments company bakers formed charters dated guild still exists today mostly ceremonial charitable functions five bakers served lord mayor london john kennedy london guilds publications p columbian exchange began profound influence baking occupation access sugar greatly increased result new cultivation caribbeand chocolate became available old world theighteenth century learned refine sugar sugar allowing europeans grow sugar locally developments led increase sophistication baking pastries development new_productsuch pastries dough image thumb traditional baker poland fresh bread oven long wooden peel tool peel places cooling two important books bread baking published paul jacques published l art boulanger art miller bread baker pasta maker antoine published boulanger perfect bread baker study thenglish city manchester industrial_revolution determined baker third common occupation male bakers female bakers eight bakers unknown sex city gender work wages industrial_revolution britain cambridge university_press_p table occupation less_common manufacture industrial_revolution cloth manufacturer tavern public_house worker common cotton spinning machinery cotton merchant calico printer new_york state assembly passed bakeshop included protections bakery workers law banned employees sleeping plumbing maintenance necessary keep cat specifically allowed stay premise presumably deal withe rats limited daily weekly maximum hours worked established make_sure conditions met maria balinska bagel surprising history modest bread yale_university_press_p gary r roy l tate landmark supreme_court cases influential decisions supreme_court united_states p legislation wasoon ustate states balinska p joseph bakery owner new_york wasubsequently convicted violating law forcing employees work sixty hours week appealed case supreme_court united_states court decided highly influential case v new_york justice oliver holmes oliver holmes thathe labor law violated constitutional righto freedom contract balinska p case marked beginning pro employer later known would cast long shadow american law society politics late p frustrated withe working conditions bakery workers inew_york went strike august balinska p roman catholichurch roman catholic tradition patron saint bakers pastry_chefs honor sixth century bishop inorthern france st honor cake patron saint bakers cake today npr may originally competitor honor title patron saint bakers th_century french bakers guild settled favor honor surname baker easily surname medieval occupational origin female clark son also history social mobility princeton university_press_p american publishing p equivalent family names occupational origin meaning baker exist languages boulanger french surname french german surname germand polish surname polish duties occupational hazards according occupational outlook handbook published bureau labor statistics united_states department labor bakers encounter number occupational hazard reports large manufacturing facilities filled potential hot ovens mixing machines result bakers injuries illnesses national average although work generally safe bakers may endure back strains caused lifting moving heavy bags products common risks include burns reduce risks bakers often wear back supports apron gloves baker asthma commonly caused flour often derived used facilitate one common causes occupational asthma occupational baking industry asthma jean chan david th_ed crc press_p comparison pastry_chef bakers pastry_chef make desserts breads restaurants shops single individual serves roles environments distinction two positions bakers making breads rolls pastry_chefs making cakes pies cookies even bakers pastry_chefs work place however may payment careers restaurants rosen p file work px_thumb right rolling pin used work dough variety equipment used bakers including baker peel tool peel large flat wood metal used slide levy bread bible w norton p rolling pin used roll dough flour used add remove measure flour used brush excess flour dough flour mills used mill grains may beither hand mechanical employment statistics united_states according occupational outlook handbook published bureau labor statistics united_states department labor bakers us median pay_per_year per_hour us bakers work stand alone bakeries tortilla manufacturing work grocery store work restaurant eating places self employment self employed us bakers worked partime file_jpg bakery c also_used baking sea biscuits file baker baker shop oslo norway variety ofresh baked_goods display file bakery bakery traditional afghan bread also bagel bakers local baker percentage baker percentage baker yeast bakers commonly use make rise bakers food allied workers union bakery confectionery tobacco workers grain international union bread machine home make single basic bread cake shop bread process process developed make breadough lower protein england coffee cake simple cakes made everyday use breakfast list baked_goods list bakers list restauranterminology pastry_chef someone specializes making baking pastries desserts elaborate sweets p bakery specializes pastries sweets countries legal distinction baking technique sliced bread involves industrial development bread machines vienna processes steps modernization bread production white bread august austrian soldier started bakery paris introduced steam ovens pastries category artisans category baking category chefs category_food_services occupations_category_restauranterminology category culinary terminology"},{"title":"Bakery","description":"image bake on mahne yehudajpg thumb right bakery in mahane yehuda market file bakery jpg thumb a woman working with a commercial oven at a bakery a bakery aka baker shop or bake shop is an business establishmenthat produces and sells flour based food baking baked in an oven such as bread cookie s cake s pastry pastries and pie some retail bakeries are also coffeehouse caf serving coffee and tea to customers who wish to consume the baked goods on the premises file braubach baker plaque jpg thumb pub for a bakery in germany since image city bakeries bridgeton jpg thumb right bakery windowith breads and cakes on display baked goods have been around for thousands of years the art of baking was developed early during the roman empire it was a highly famous art as roman citizens loved baked goods andemanded for them frequently for important occasionsuch as feasts and weddings etc due to the fame andesire thathe art of baking received around bc baking was introduced as an occupation and respectable profession foromans the bakers began to prepare bread at home in an oven using mills to grind grainto the flour for their breads the oncoming demand for baked goods vigorously continued and the first bakers guild was established in bc in rome this drastic appeal for baked goods promoted baking all throughout europe and expanded into theastern parts of asia bakerstarted baking breads and goods at home and selling them out on the streets this trend became common and soon baked products were getting sold in streets of rome germany london and many more this resulted in a system of delivering the goods to households as the demand for baked breads and goodsignificantly increased this provoked the bakers to establish a place where people could purchase baked goods for themselves therefore in paris the first open air bakery of baked goods was developed and since then bakeries became a common place to purchase delicious goods and getogether around the world by the colonial era bakeries were commonly viewed as places to gather and socialize world war ii directly affected bread industries in the uk baking schools closeduring this time so when the war did eventually end there was an absence of skilled bakers this resulted inew methods being developed to satisfy the world s desire for bread methods like adding chemicals to dough premixes and specialised machinery unfortunately these old methods of baking were almost completely eradicated when these new methods were introduced and became industrialised the old methods were seen as unnecessary and financially unsounduring this period there were not many traditional bakeries left products bread roll flatbread s bagel s muffin s pizza s bun s pastries pie s tart s chocolate brownie s cake s cupcake s cookie scone s barmbrack soda bread biscuit bread cracker food cracker s biscuit s pretzel s biscotti cornbread pandesal pumpkin bread pita sourdough potato bread specialitiesome bakeries provide services for special occasionsuch as wedding s birthday parties anniversaries or even business events or for people who have allergies or sensitivities to certain foodsuch as nut fruit nuts peanut s dairy product dairy or gluten bakeries can provide a wide range of cakes designsuch asheet cake s layer cake s tiered cakes and wedding cake s other bakeries may specialize in traditional or hand made types of bread made with locally gristmilled flour without flour bleaching agent s or flour treatment agent s baking what isometimes referred to as artisan bread grocery stores and supermarkets in many countriesell prepackaged or sliced bread pre sliced bread cakes and other pastries they can alsoffer in store baking and basicake decorationonetheless many people still prefer to getheir baked goods from a small artisanal bakery either out of tradition the availability of a greater variety of baked goods or due to the higher quality products characteristic of the trade of baking see also baker a person who produces baked goods baking cake decorating cake shop coffeehouse konditorei a german shop that makesells and serves cakes pastries coffee and tea in mornings and afternoons list of baked goods list of bakeries list of bakery caf s list of doughnut shops p tisserie a french or belgian establishmenthat specializes in pastriesliced bread before bread slicing machines were invented people would buy whole loaves of bread and cuthem at home tea house greggs a british fast food bakery externalinks category bakeries category types of restaurants","main_words":["image","thumb","right","bakery","market","file","bakery","jpg","thumb","woman","working","commercial","oven","bakery","bakery","aka","baker","shop","shop","business","establishmenthat","produces","sells","flour","based","food","baking","baked","oven","bread","cookie","cake","pastry","pastries","pie","retail","bakeries","also","coffeehouse","caf","serving","coffee","tea","customers","wish","consume","baked_goods","premises","file","baker","plaque","jpg","thumb","pub","bakery","germany","since","image","city","bakeries","jpg","thumb","right","bakery","breads","cakes","display","baked_goods","around","thousands","years","art","baking","developed","early","roman_empire","highly","famous","art","roman","citizens","loved","baked_goods","frequently","important","weddings","etc","due","fame","thathe","art","baking","received","around","baking","introduced","occupation","respectable","profession","bakers","began","prepare","bread","home","oven","using","mills","flour","breads","demand","baked_goods","continued","first","bakers","guild","established","rome","appeal","baked_goods","promoted","baking","throughout","europe","expanded","theastern","parts","asia","baking","breads","goods","home","selling","streets","trend","became","common","soon","baked","products","getting","sold","streets","rome","germany","london","many","resulted","system","delivering","goods","households","demand","baked","breads","increased","provoked","bakers","establish","place","people","could","purchase","baked_goods","therefore","paris","first","open_air","bakery","baked_goods","developed","since","bakeries","became","common","place","purchase","delicious","goods","around","world","colonial","era","bakeries","commonly","viewed","places","gather","socialize","world_war","ii","directly","affected","bread","industries","uk","baking","schools","time","war","eventually","end","absence","skilled","bakers","resulted","inew","methods","developed","satisfy","world","desire","bread","methods","like","adding","chemicals","dough","specialised","machinery","unfortunately","old","methods","baking","almost","completely","new","methods","introduced","became","old","methods","seen","financially","period","many","traditional","bakeries","left","products","bread","roll","flatbread","bagel","pizza","bun","pastries","pie","tart","chocolate","cake","cookie","soda","bread","bread","cracker","food","cracker","bread","pita","sourdough","potato","bread","bakeries","provide","services","special","wedding","birthday","parties","even","business","events","people","certain","foodsuch","nut","fruit","nuts","peanut","dairy","product","dairy","bakeries","provide","wide_range","cakes","cake","layer","cake","cakes","wedding","cake","bakeries","may","specialize","traditional","hand","made","types","bread","made","locally","flour","without","flour","bleaching","agent","flour","treatment","agent","baking","isometimes","referred","artisan","bread","grocery","stores","supermarkets","many","sliced","bread","pre","sliced","bread","cakes","pastries","alsoffer","store","baking","many_people","still","prefer","getheir","baked_goods","small","bakery","either","tradition","availability","greater","variety","baked_goods","due","higher","quality","products","characteristic","trade","baking","see_also","baker","person","produces","baked_goods","baking","cake","cake","shop","coffeehouse","german","shop","serves","cakes","pastries","coffee","tea","mornings","list","baked_goods","list","bakeries","list","bakery","caf","list","doughnut","shops","p","french","belgian","establishmenthat","specializes","bread","bread","machines","invented","people","would","buy","whole","bread","home","tea_house","british","fast_food","bakery","externalinks_category","bakeries","category_types","restaurants"],"clean_bigrams":[["thumb","right"],["right","bakery"],["market","file"],["file","bakery"],["bakery","jpg"],["jpg","thumb"],["woman","working"],["commercial","oven"],["bakery","aka"],["aka","baker"],["baker","shop"],["business","establishmenthat"],["establishmenthat","produces"],["sells","flour"],["flour","based"],["based","food"],["food","baking"],["baking","baked"],["bread","cookie"],["pastry","pastries"],["pastries","pie"],["retail","bakeries"],["also","coffeehouse"],["coffeehouse","caf"],["caf","serving"],["serving","coffee"],["baked","goods"],["premises","file"],["baker","plaque"],["plaque","jpg"],["jpg","thumb"],["thumb","pub"],["germany","since"],["since","image"],["image","city"],["city","bakeries"],["jpg","thumb"],["thumb","right"],["right","bakery"],["display","baked"],["baked","goods"],["developed","early"],["roman","empire"],["highly","famous"],["famous","art"],["roman","citizens"],["citizens","loved"],["loved","baked"],["baked","goods"],["weddings","etc"],["etc","due"],["thathe","art"],["baking","received"],["received","around"],["respectable","profession"],["bakers","began"],["prepare","bread"],["oven","using"],["using","mills"],["baked","goods"],["first","bakers"],["bakers","guild"],["baked","goods"],["goods","promoted"],["promoted","baking"],["throughout","europe"],["theastern","parts"],["baking","breads"],["trend","became"],["became","common"],["soon","baked"],["baked","products"],["getting","sold"],["rome","germany"],["germany","london"],["baked","breads"],["people","could"],["could","purchase"],["purchase","baked"],["baked","goods"],["first","open"],["open","air"],["air","bakery"],["baked","goods"],["bakeries","became"],["became","common"],["common","place"],["purchase","delicious"],["delicious","goods"],["colonial","era"],["era","bakeries"],["commonly","viewed"],["socialize","world"],["world","war"],["war","ii"],["ii","directly"],["directly","affected"],["affected","bread"],["bread","industries"],["uk","baking"],["baking","schools"],["eventually","end"],["skilled","bakers"],["resulted","inew"],["inew","methods"],["bread","methods"],["methods","like"],["like","adding"],["adding","chemicals"],["specialised","machinery"],["machinery","unfortunately"],["old","methods"],["almost","completely"],["new","methods"],["old","methods"],["many","traditional"],["traditional","bakeries"],["bakeries","left"],["left","products"],["products","bread"],["bread","roll"],["roll","flatbread"],["pastries","pie"],["soda","bread"],["bread","cracker"],["cracker","food"],["food","cracker"],["bread","pita"],["pita","sourdough"],["sourdough","potato"],["potato","bread"],["bakeries","provide"],["provide","services"],["birthday","parties"],["even","business"],["business","events"],["certain","foodsuch"],["nut","fruit"],["fruit","nuts"],["nuts","peanut"],["dairy","product"],["product","dairy"],["bakeries","provide"],["wide","range"],["layer","cake"],["wedding","cake"],["bakeries","may"],["may","specialize"],["hand","made"],["made","types"],["bread","made"],["flour","without"],["without","flour"],["flour","bleaching"],["bleaching","agent"],["flour","treatment"],["treatment","agent"],["isometimes","referred"],["artisan","bread"],["bread","grocery"],["grocery","stores"],["sliced","bread"],["bread","pre"],["pre","sliced"],["sliced","bread"],["bread","cakes"],["cakes","pastries"],["store","baking"],["many","people"],["people","still"],["still","prefer"],["getheir","baked"],["baked","goods"],["bakery","either"],["greater","variety"],["baked","goods"],["higher","quality"],["quality","products"],["products","characteristic"],["baking","see"],["see","also"],["also","baker"],["produces","baked"],["baked","goods"],["goods","baking"],["baking","cake"],["cake","shop"],["shop","coffeehouse"],["german","shop"],["serves","cakes"],["cakes","pastries"],["pastries","coffee"],["baked","goods"],["goods","list"],["bakeries","list"],["bakery","caf"],["doughnut","shops"],["shops","p"],["belgian","establishmenthat"],["establishmenthat","specializes"],["invented","people"],["people","would"],["would","buy"],["buy","whole"],["home","tea"],["tea","house"],["british","fast"],["fast","food"],["food","bakery"],["bakery","externalinks"],["externalinks","category"],["category","bakeries"],["bakeries","category"],["category","types"]],"all_collocations":["right bakery","market file","file bakery","bakery jpg","woman working","commercial oven","bakery aka","aka baker","baker shop","business establishmenthat","establishmenthat produces","sells flour","flour based","based food","food baking","baking baked","bread cookie","pastry pastries","pastries pie","retail bakeries","also coffeehouse","coffeehouse caf","caf serving","serving coffee","baked goods","premises file","baker plaque","plaque jpg","thumb pub","germany since","since image","image city","city bakeries","right bakery","display baked","baked goods","developed early","roman empire","highly famous","famous art","roman citizens","citizens loved","loved baked","baked goods","weddings etc","etc due","thathe art","baking received","received around","respectable profession","bakers began","prepare bread","oven using","using mills","baked goods","first bakers","bakers guild","baked goods","goods promoted","promoted baking","throughout europe","theastern parts","baking breads","trend became","became common","soon baked","baked products","getting sold","rome germany","germany london","baked breads","people could","could purchase","purchase baked","baked goods","first open","open air","air bakery","baked goods","bakeries became","became common","common place","purchase delicious","delicious goods","colonial era","era bakeries","commonly viewed","socialize world","world war","war ii","ii directly","directly affected","affected bread","bread industries","uk baking","baking schools","eventually end","skilled bakers","resulted inew","inew methods","bread methods","methods like","like adding","adding chemicals","specialised machinery","machinery unfortunately","old methods","almost completely","new methods","old methods","many traditional","traditional bakeries","bakeries left","left products","products bread","bread roll","roll flatbread","pastries pie","soda bread","bread cracker","cracker food","food cracker","bread pita","pita sourdough","sourdough potato","potato bread","bakeries provide","provide services","birthday parties","even business","business events","certain foodsuch","nut fruit","fruit nuts","nuts peanut","dairy product","product dairy","bakeries provide","wide range","layer cake","wedding cake","bakeries may","may specialize","hand made","made types","bread made","flour without","without flour","flour bleaching","bleaching agent","flour treatment","treatment agent","isometimes referred","artisan bread","bread grocery","grocery stores","sliced bread","bread pre","pre sliced","sliced bread","bread cakes","cakes pastries","store baking","many people","people still","still prefer","getheir baked","baked goods","bakery either","greater variety","baked goods","higher quality","quality products","products characteristic","baking see","see also","also baker","produces baked","baked goods","goods baking","baking cake","cake shop","shop coffeehouse","german shop","serves cakes","cakes pastries","pastries coffee","baked goods","goods list","bakeries list","bakery caf","doughnut shops","shops p","belgian establishmenthat","establishmenthat specializes","invented people","people would","would buy","buy whole","home tea","tea house","british fast","fast food","food bakery","bakery externalinks","externalinks category","category bakeries","bakeries category","category types"],"new_description":"image thumb right bakery market file bakery jpg thumb woman working commercial oven bakery bakery aka baker shop shop business establishmenthat produces sells flour based food baking baked oven bread cookie cake pastry pastries pie retail bakeries also coffeehouse caf serving coffee tea customers wish consume baked_goods premises file baker plaque jpg thumb pub bakery germany since image city bakeries jpg thumb right bakery breads cakes display baked_goods around thousands years art baking developed early roman_empire highly famous art roman citizens loved baked_goods frequently important weddings etc due fame thathe art baking received around baking introduced occupation respectable profession bakers began prepare bread home oven using mills flour breads demand baked_goods continued first bakers guild established rome appeal baked_goods promoted baking throughout europe expanded theastern parts asia baking breads goods home selling streets trend became common soon baked products getting sold streets rome germany london many resulted system delivering goods households demand baked breads increased provoked bakers establish place people could purchase baked_goods therefore paris first open_air bakery baked_goods developed since bakeries became common place purchase delicious goods around world colonial era bakeries commonly viewed places gather socialize world_war ii directly affected bread industries uk baking schools time war eventually end absence skilled bakers resulted inew methods developed satisfy world desire bread methods like adding chemicals dough specialised machinery unfortunately old methods baking almost completely new methods introduced became old methods seen financially period many traditional bakeries left products bread roll flatbread bagel pizza bun pastries pie tart chocolate cake cookie soda bread bread cracker food cracker bread pita sourdough potato bread bakeries provide services special wedding birthday parties even business events people certain foodsuch nut fruit nuts peanut dairy product dairy bakeries provide wide_range cakes cake layer cake cakes wedding cake bakeries may specialize traditional hand made types bread made locally flour without flour bleaching agent flour treatment agent baking isometimes referred artisan bread grocery stores supermarkets many sliced bread pre sliced bread cakes pastries alsoffer store baking many_people still prefer getheir baked_goods small bakery either tradition availability greater variety baked_goods due higher quality products characteristic trade baking see_also baker person produces baked_goods baking cake cake shop coffeehouse german shop serves cakes pastries coffee tea mornings list baked_goods list bakeries list bakery caf list doughnut shops p french belgian establishmenthat specializes bread bread machines invented people would buy whole bread home tea_house british fast_food bakery externalinks_category bakeries category_types restaurants"},{"title":"Ballarat Regional Tourism","description":"ballarat regional tourism is the separate relatively autonomous tourism arm of the city of ballarathe board was created on january to enable the local tourism sector to take ownership of destination promotion of greater ballarathe new organisation commenced operations on february which is when itook over key tourismanagement responsibilities formerly handled by the ballarat city council responsibilities of the new tourism arm include promotion of ballarat and surrounding areas a tourist destination providing visitor information through the visitor information center andeveloping and attracting tourism and business events during its first year the organisation was managed by a private sector board withe city council retaining ownership on march the city council voted to transfer ballarat regional tourism s ownership to the private sector the council will still continue to fund the board contingent on it meeting key performance indicators ballarat s tourism industry generates million annually and accounts for approximately local jobs another million is created for other local businesses from the tourist activities generated in the city events promoted begonia festival victorian rowing masters championships ballarat heritage weekend organs of the ballarat goldfields mars cycling australia road national cycling championships ballarat beer festival ballarat spokes festival victorian pga golf championship ballarat antique fair clunes back to booktown royal south street eisteddfod ballarat festival of motoring jayco herald sun bike tour springfest market sunday ballarat by the glassee also tourism in australia externalinks official website city of ballarat category tourism in australia category ballarat category tourism agencies","main_words":["ballarat","regional_tourism","separate","relatively","autonomous","tourism","arm","city","board","created","january","enable","local","tourism_sector","take","ownership","destination","promotion","greater","new","organisation","commenced","operations","february","itook","key","tourismanagement","responsibilities","formerly","handled","ballarat","city_council","responsibilities","new","tourism","arm","include","promotion","ballarat","surrounding","areas","tourist_destination","providing","visitor_information","visitor_information_center","andeveloping","attracting","tourism_business","events","first_year","organisation","managed","private_sector","board","withe","city_council","retaining","ownership","march","city_council","voted","transfer","ballarat","regional_tourism","ownership","private_sector","council","still","continue","fund","board","contingent","meeting","key","performance","indicators","ballarat","tourism_industry","generates","million","annually","accounts","approximately","local","jobs","another","million","created","local_businesses","tourist_activities","generated","city","events","promoted","festival","victorian","rowing","masters","championships","ballarat","heritage","weekend","organs","ballarat","mars","cycling","australia","road","national","cycling","championships","ballarat","beer","festival","ballarat","festival","victorian","golf","championship","ballarat","antique","fair","back","royal","south","street","ballarat","festival","motoring","herald","sun","bike","tour","market","sunday","ballarat","also_tourism","australia","externalinks_official_website","city","ballarat","category_tourism","australia_category","ballarat","category_tourism","agencies"],"clean_bigrams":[["ballarat","regional"],["regional","tourism"],["separate","relatively"],["relatively","autonomous"],["autonomous","tourism"],["tourism","arm"],["local","tourism"],["tourism","sector"],["take","ownership"],["destination","promotion"],["new","organisation"],["organisation","commenced"],["commenced","operations"],["key","tourismanagement"],["tourismanagement","responsibilities"],["responsibilities","formerly"],["formerly","handled"],["ballarat","city"],["city","council"],["council","responsibilities"],["new","tourism"],["tourism","arm"],["arm","include"],["include","promotion"],["surrounding","areas"],["tourist","destination"],["destination","providing"],["providing","visitor"],["visitor","information"],["visitor","information"],["information","center"],["center","andeveloping"],["attracting","tourism"],["business","events"],["first","year"],["private","sector"],["sector","board"],["board","withe"],["withe","city"],["city","council"],["council","retaining"],["retaining","ownership"],["city","council"],["council","voted"],["transfer","ballarat"],["ballarat","regional"],["regional","tourism"],["private","sector"],["still","continue"],["board","contingent"],["meeting","key"],["key","performance"],["performance","indicators"],["indicators","ballarat"],["tourism","industry"],["industry","generates"],["generates","million"],["million","annually"],["approximately","local"],["local","jobs"],["jobs","another"],["another","million"],["local","businesses"],["tourist","activities"],["activities","generated"],["city","events"],["events","promoted"],["festival","victorian"],["victorian","rowing"],["rowing","masters"],["masters","championships"],["championships","ballarat"],["ballarat","heritage"],["heritage","weekend"],["weekend","organs"],["mars","cycling"],["cycling","australia"],["australia","road"],["road","national"],["national","cycling"],["cycling","championships"],["championships","ballarat"],["ballarat","beer"],["beer","festival"],["festival","ballarat"],["ballarat","festival"],["festival","victorian"],["golf","championship"],["championship","ballarat"],["ballarat","antique"],["antique","fair"],["royal","south"],["south","street"],["ballarat","festival"],["herald","sun"],["sun","bike"],["bike","tour"],["market","sunday"],["sunday","ballarat"],["also","tourism"],["australia","externalinks"],["externalinks","official"],["official","website"],["website","city"],["ballarat","category"],["category","tourism"],["australia","category"],["category","ballarat"],["ballarat","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["ballarat regional","regional tourism","separate relatively","relatively autonomous","autonomous tourism","tourism arm","local tourism","tourism sector","take ownership","destination promotion","new organisation","organisation commenced","commenced operations","key tourismanagement","tourismanagement responsibilities","responsibilities formerly","formerly handled","ballarat city","city council","council responsibilities","new tourism","tourism arm","arm include","include promotion","surrounding areas","tourist destination","destination providing","providing visitor","visitor information","visitor information","information center","center andeveloping","attracting tourism","business events","first year","private sector","sector board","board withe","withe city","city council","council retaining","retaining ownership","city council","council voted","transfer ballarat","ballarat regional","regional tourism","private sector","still continue","board contingent","meeting key","key performance","performance indicators","indicators ballarat","tourism industry","industry generates","generates million","million annually","approximately local","local jobs","jobs another","another million","local businesses","tourist activities","activities generated","city events","events promoted","festival victorian","victorian rowing","rowing masters","masters championships","championships ballarat","ballarat heritage","heritage weekend","weekend organs","mars cycling","cycling australia","australia road","road national","national cycling","cycling championships","championships ballarat","ballarat beer","beer festival","festival ballarat","ballarat festival","festival victorian","golf championship","championship ballarat","ballarat antique","antique fair","royal south","south street","ballarat festival","herald sun","sun bike","bike tour","market sunday","sunday ballarat","also tourism","australia externalinks","externalinks official","official website","website city","ballarat category","category tourism","australia category","category ballarat","ballarat category","category tourism","tourism agencies"],"new_description":"ballarat regional_tourism separate relatively autonomous tourism arm city board created january enable local tourism_sector take ownership destination promotion greater new organisation commenced operations february itook key tourismanagement responsibilities formerly handled ballarat city_council responsibilities new tourism arm include promotion ballarat surrounding areas tourist_destination providing visitor_information visitor_information_center andeveloping attracting tourism_business events first_year organisation managed private_sector board withe city_council retaining ownership march city_council voted transfer ballarat regional_tourism ownership private_sector council still continue fund board contingent meeting key performance indicators ballarat tourism_industry generates million annually accounts approximately local jobs another million created local_businesses tourist_activities generated city events promoted festival victorian rowing masters championships ballarat heritage weekend organs ballarat mars cycling australia road national cycling championships ballarat beer festival ballarat festival victorian golf championship ballarat antique fair back royal south street ballarat festival motoring herald sun bike tour market sunday ballarat also_tourism australia externalinks_official_website city ballarat category_tourism australia_category ballarat category_tourism agencies"},{"title":"Bangkok Girl","description":"narrator starring musicinematography editing studio distributoreleased novemberuntime minutes country cinema of canada languagenglish languagenglish budget gross bangkok girl is a documentary film that was both film producer produced and film director directed by jordan clark it is a low budget film having costo produce and takesex tourism in bangkok as itsubject bangkok girl is minutes long and focuses on pla bargirl who is years old and who guides clark through the city the film explores pla s background and how she came to be where she is pla began working as a bargirl athe age of and while she had managed to avoid being forced into prostitution up until the pointhathe documentary was filmed the film suggests that she will eventually be forced prostitution forcibly prostituted inovember the film aired on the lens a program on canada s cbc television sweden sveriges television also aired the film externalinks category films category canadian films category canadian biographical films category documentary films about women category s documentary films category documentary films about prostitution category canadian documentary television films category filmset in bangkok category filmshot in bangkok category english language films category canadian television films category documentary films about child abuse category directorial debut films category human rights in thailand category sex industry in thailand category films about child prostitution category forced prostitution category works about human trafficking category human trafficking in thailand category sex tourism","main_words":["narrator","starring","editing","studio","minutes_country","cinema","canada","languagenglish","languagenglish","budget","gross","bangkok","girl","documentary_film","film","producer","produced","film","director","directed","jordan","clark","low","budget","film","costo","produce","tourism","bangkok","bangkok","girl","minutes","long","focuses","pla","years_old","guides","clark","city","film","explores","pla","background","came","pla","began","working","athe_age","managed","avoid","forced","prostitution","film","suggests","eventually","forced","prostitution","inovember","film","aired","lens","program","canada","cbc","television","sweden","television","also","aired","film","externalinks_category","films_category_canadian","films_category_canadian","biographical","films_category_documentary_films","women","category_documentary_films","category_documentary_films","prostitution","category_canadian","documentary","television","bangkok","category_filmshot","bangkok","category_english_language","films_category_canadian","television","films_category_documentary_films","child","abuse","category","debut","thailand_category","sex","industry","thailand_category","films","child_prostitution","category","forced","prostitution","category_works","human_trafficking","thailand_category","sex_tourism"],"clean_bigrams":[["narrator","starring"],["editing","studio"],["minutes","country"],["country","cinema"],["canada","languagenglish"],["languagenglish","languagenglish"],["languagenglish","budget"],["budget","gross"],["gross","bangkok"],["bangkok","girl"],["documentary","film"],["film","producer"],["producer","produced"],["film","director"],["director","directed"],["jordan","clark"],["low","budget"],["budget","film"],["costo","produce"],["bangkok","girl"],["minutes","long"],["years","old"],["guides","clark"],["film","explores"],["explores","pla"],["pla","began"],["began","working"],["athe","age"],["forced","prostitution"],["film","suggests"],["forced","prostitution"],["film","aired"],["cbc","television"],["television","sweden"],["television","also"],["also","aired"],["film","externalinks"],["externalinks","category"],["category","films"],["films","category"],["category","canadian"],["canadian","films"],["films","category"],["category","canadian"],["canadian","biographical"],["biographical","films"],["films","category"],["category","documentary"],["documentary","films"],["women","category"],["category","documentary"],["documentary","films"],["films","category"],["category","documentary"],["documentary","films"],["prostitution","category"],["category","canadian"],["canadian","documentary"],["documentary","television"],["television","films"],["films","category"],["category","filmset"],["bangkok","category"],["category","filmshot"],["bangkok","category"],["category","english"],["english","language"],["language","films"],["films","category"],["category","canadian"],["canadian","television"],["television","films"],["films","category"],["category","documentary"],["documentary","films"],["child","abuse"],["abuse","category"],["debut","films"],["films","category"],["category","human"],["human","rights"],["thailand","category"],["category","sex"],["sex","industry"],["thailand","category"],["category","films"],["child","prostitution"],["prostitution","category"],["category","forced"],["forced","prostitution"],["prostitution","category"],["category","works"],["human","trafficking"],["trafficking","category"],["category","human"],["human","trafficking"],["thailand","category"],["category","sex"],["sex","tourism"]],"all_collocations":["narrator starring","editing studio","minutes country","country cinema","canada languagenglish","languagenglish languagenglish","languagenglish budget","budget gross","gross bangkok","bangkok girl","documentary film","film producer","producer produced","film director","director directed","jordan clark","low budget","budget film","costo produce","bangkok girl","minutes long","years old","guides clark","film explores","explores pla","pla began","began working","athe age","forced prostitution","film suggests","forced prostitution","film aired","cbc television","television sweden","television also","also aired","film externalinks","externalinks category","category films","films category","category canadian","canadian films","films category","category canadian","canadian biographical","biographical films","films category","category documentary","documentary films","women category","category documentary","documentary films","films category","category documentary","documentary films","prostitution category","category canadian","canadian documentary","documentary television","television films","films category","category filmset","bangkok category","category filmshot","bangkok category","category english","english language","language films","films category","category canadian","canadian television","television films","films category","category documentary","documentary films","child abuse","abuse category","debut films","films category","category human","human rights","thailand category","category sex","sex industry","thailand category","category films","child prostitution","prostitution category","category forced","forced prostitution","prostitution category","category works","human trafficking","trafficking category","category human","human trafficking","thailand category","category sex","sex tourism"],"new_description":"narrator starring editing studio minutes_country cinema canada languagenglish languagenglish budget gross bangkok girl documentary_film film producer produced film director directed jordan clark low budget film costo produce tourism bangkok bangkok girl minutes long focuses pla years_old guides clark city film explores pla background came pla began working athe_age managed avoid forced prostitution documentary_filmed film suggests eventually forced prostitution inovember film aired lens program canada cbc television sweden television also aired film externalinks_category films_category_canadian films_category_canadian biographical films_category_documentary_films women category_documentary_films category_documentary_films prostitution category_canadian documentary television films_category_filmset bangkok category_filmshot bangkok category_english_language films_category_canadian television films_category_documentary_films child abuse category debut films_category_human_rights thailand_category sex industry thailand_category films child_prostitution category forced prostitution category_works human_trafficking category_human_trafficking thailand_category sex_tourism"},{"title":"Bar","description":"file bar p jpg thumb upright a bar in switzerland a bar also known as a saloon or a tavern or sometimes a pub or club referring to the actual establishment as in pubar or savage club etc is a retail business establishmenthat serves alcoholic beverage such as beer wine distilled beverage liquor cocktail s and other beveragesuch as mineral water and soft drink s and often sell snack foodsuch as crisps potato chipotato chips or peanut s for consumption premises cocktailounge definition from the free dictionary some types of barsuch as pubs may also serve food from a restaurant menu the term bar also refers to the countertop and area where drinks are served bars provide bar stools or chairs that are placed atables or counters for their patrons bars that offer entertainment or live music are often referred to as music bars livenues or nightclubs types of bars range from inexpensive dive bar stoddayton accessdate to elegant places of entertainment often accompanying restaurants for dining many bars have a discount periodesignated a happy hour to encourage off peak time patronage bars that fill to capacity sometimes implement a cover charge or a minimum drink purchase requirement during their peak hours bars may have bouncer doorman bouncers to ensure patrons are of legal age to eject drunk or belligerent patrons and to collect cover chargesuch bars often featurentertainment which may be a musical band live band vocalist comedian or disc jockey playing recorded music the term bar is derived from the bar counter specialized counter on which drinks are served patrons may sit or stand athe bar and be served by the bartender depending on the size of a bar and its approach alcohol may be served athe bar by bartenders atables by waiting staff server s or by a combination of the two the back bar is a set of shelves of glasses and bottles behind that counter in somestablishments the back bar is elaborately decorated with woodwork etched glass mirrors and lights file a cross roadstore bar juke joint and gastation in melrose louisiana jpg thumb left a great depression era bar in melrose louisiana there have been many different names for public drinking spaces throughout history in the colonial era of the united states taverns were an important meeting place as most other institutions were weak during the th century saloons were very importanto the leisure time of the working classjohn m kingsdale the poor man s club social functions of the urban working classaloon in american quarterly vol noctoday even when an establishment uses a different name such as tavern or saloon the area of thestablishment where the bartender pours or mixes beverages is normally called the bar the sale and or consumption of alcoholic beverages was prohibited in the first half of the th century in several countries including finland iceland norway and the united states in the united states illegal bars during prohibition in the united states prohibition were called speakeasy speakeasies blind pigs and blind tigers legal restrictions laws in many jurisdictions prohibit minor law minors from entering a bar if those under legal drinking age are allowed to enter as is the case with pubs that serve food they are not allowed to drink in some jurisdictions bars cannot serve a patron who is already intoxicated cities and towns usually have legal restrictions on where bars may be located and on the types of alcohol they may serve to their customersome bars may have a license to serve beer and wine but not hard liquor in some jurisdictions patrons buying alcohol must alsorder food in some jurisdictions bar owners have a legaliability for the conduct of patrons who they serve this liability may arise in cases of driving under the influence which cause injuries or deaths many islamicountries prohibit bars as well as the possession or sale of alcohol foreligious reasons while others including qatar and the united arab emirates allow bars in some specific areas but only permit non muslims to drink in them a bar s owners and managers choose the bar s name d cor drink menu lighting and other elements which they think will attract a certain kind of patron however they have only limited influence over who patronizes their establishmenthus a bar originally intended for one demographic profile can become popular with another for example a gay bar gay or lesbian bars lesbian bar with a dance or disco floor might over time attract an increasingly heterosexual clientele or a blues bar may become a biker bar if most its patrons are bikers a cocktailounge is an upscale bar that is typically located within a hotel restaurant or airport a full bar serves liquor cocktails wine and beer a wine bar is an elegant bar that focuses on wine rather than on beer or liquor patrons of these bars may wine tasting taste wines before deciding to buy them some wine bars also serve small plates ofood or other snacks a beer bar focuses on beer particularly craft beerather than on wine or liquor a brew pub has an on site brewery and serves craft beers fern bar is an american slang term for an upscale or preppy or yuppie bar a music bar is a bar that presents live music as an attraction a dive bar often referred to simply as a dive is a very informal bar which may be considered by some to be disreputable alcohol free bar non alcoholic bar is a bar that does not serve alcoholic beverages a bar and grill is also a restaurant some persons may designateither a room or an area of a room as a home bar furniture and arrangements vary from efficiento full bars that could be suited as businesses file home bar examplejpg thumb example of a typical home bar inew york city usa bars categorized by the kind of entertainmenthey offer blues barspecializing in the live bluestyle of musicomedy club comedy barspecializing in stand up comedy entertainment dance bar s whichave a dance floor where patrons dance to recorded music typically if a venue has a large dance floor focuses primarily on dancing rather than seatedrinking and hires professional dj s it is considered to be a nightclub or discoth que rather than a bar karaoke bars with nightly karaoke as entertainment music barspecializing in live music ie concerts drag bars which specialize in drag clothing drag performances as entertainment salsa bars where patrons dance to latin salsa music sports bars which are furnished with sports related memorabiliand theming and typically contain a large number of television s used to broadcast major sporting events for their patrons topless bars where toplessness topless femalemployees dance or serve drinks india these bars are calledance bar india dance bars which is distinct from the type of dance bar discussed above bars categorized by the kind of patrons who frequenthem bicycle messenger bars where bike messengers congregate these are found only in cities with large bike messenger communities biker bars which are bars frequented by motorcyclenthusiasts and in some regions motorcycle club members cop bars where off duty law enforcement agents gather college bars usually located in or near universities where most of the patrons are students gay bar s where gay men or women dance and socialize lesbian bars mixed gay straight bars mainly targeting bisexual s neighborhood bars a bar that most of the patrons know each other it is generally close to home and is frequented regularly old man bars whose clientele are mainly long time male patrons who know each other well since most patrons aretired they often begin drinking much earlier in the day consume inexpensive beer whisky and may spend much of the day chatting reading the newspaper and watching tv sailor bars usually located in waterfront areas near commercial docks or naval basesingles bars where mostly unmarried people of both sexes can meet and socialize sports bars where sports fans gather to cheer on their favoriteams with other like minded fans women s bars bar counter file bar hard rock cafe praguepng thumb right a row of distilled beverage liquor bottles behind a bar ie counter file liquor and wine bottles behind a bar in baden austriajpg thumb liquor and wine bottles behind a bar in baden austria the countertop counter at which drinks are served by a bartender is called the bar this term is applied as a synecdoche to drinking establishments called bars this counter typically stores a variety of beer s wine s distilled beverage liquors and non alcoholic ingredients and is organized to facilitate the bartender s work the word bar in this context was already in use in when robert greene dramatist robert greene a dramatist referred tone in his a notable discovery of coosnage counters for serving other types ofood andrink may also be called bars examples of this usage of the word include snack bar sushi bars juice bar juice barsalad bar s milk bar dairy bars and sundae bars in australia the major form of licensed commercialcohol outlet from the colonial period to the present was the pub a local variant of thenglish original until the s australian pubs were traditionally organised into gender segregatedrinking areas the public bar was only open to men while the lounge bar or saloon bar served both men and women ie mixedrinking this distinction was gradually eliminated as anti discrimination legislation and women s rights activism broke down the concept of a public drinking areaccessible tonly men where two barstill exist in the onestablishment one that derived from the public bar will be more downmarket while the other deriving from the lounge bar will be more upmarket over time withe introduction of slot machine gaming machines into hotels many lounge bars have or are being converted into gaming rooms beginning in the mid s the formerly strict state liquor licensing laws were progressively relaxed and reformed withe resulthat pub trading hours werextended this was in parto eliminate the social problems associated with early closing times notably the infamousix o clock swill and the thriving trade in sly grog illicit alcohol sales more licensed liquor outlets began to appear including retail bottle shops over the counter bottle sales were previously only available at pubs and were strictly controlled particularly in sydney a new class of licensed premises the wine bar appeared there alcohol could be served on the proviso that it was provided in tandem with a meal these venues became very popular in the late s and early s and many offered freentertainment becoming an important facet of the sydney music scene in that period in the major australian cities today there is a large andiverse bar scene with a range of ambiences modes and styles catering for every echelon of cosmopolitan society public drinking began withestablishment of colonial taverns in bothe us and canada while the term changed to public housespecially in the uk the term tavern continued to be used instead of pub in bothe us and canada public drinking establishments were banned by the prohibition of alcohol which was and is a provincial jurisdiction prohibition was repealed province by province in the s there was not a universal righto consume alcohol and only males of legal age were permitted to do so beer parlours were common in the wake of prohibition with localaws oftenot permitting entertainment such as the playing of games or music in thesestablishments which were set aside for the purpose solely of consuming alcohol since thend of the second world war and exposure by roughly one million canadians to the public house traditions common in the uk by servicemen and women serving there those traditions became more common in canada these traditions include the drinking of dark ales and stouts the pub as a social gathering place for both sexes and the playing of gamesuch as dartsnooker or pool tavern becamextremely popular during the s and s especially for working class people canadian taverns which can still be found in remote regions of northern canada have long tables with benches lining the sides patrons in these taverns often order beer in large quart bottles andrink inexpensive bar brand canadian rye whisky in some provinces taverns used to have separatentrances for men and women even in a large city like toronto the separatentrances existed into thearly s canada has adopted some of the newer us bar traditionsuch as the sports bar of the last decades as a resulthe term bar has come to be differentiated from the term pub in that bars are usually themed and sometimes have a dance floor bars with dance floors are usually relegated to small or suburban communities in larger cities bars with large dance floors are usually referred to as clubs and are strictly for dancing establishments which call themselves pubs are often much more similar to a british pub in style before the s most bars wereferred to simply as tavern often bars and pubs in canada will cater to supporters of a local sporting team usually a hockey team there is a difference between the sports bar and the pub sports bars focus on tv screenshowingames and showcasing uniforms equipment etc pubs will generally also show games but do not exclusively focus on them the tavern was popular until thearly s when american style bars as we know them today became popular in the s imitation british and irish style pubs become popular and adopted names like the fox and fiddle and the queen and beavereflect naming trends in britain tavern or pub style mixed food andrink establishment are generally more common than bars in canadalthough both can be found legal restrictions on bars are set by the canadian provinces and territories whichas led to a great deal of variety while some provinces have been very restrictive witheir baregulation setting strict closing times and banning the removal of alcohol from the premises other provinces have been more liberal closing times generally run from to am inova scotia particularly in city of halifax there was until the s a very distinct system of gender based laws were in effect for decades taverns bars halls and other classifications differentiated whether it was exclusively for men or women with invited women vice versa or mixed after this fell by the wayside there was the issue of water closet s this led to many taverns adding on powderoomsometimes they were constructed later or used parts of kitchens or upstairs halls if plumbing allowed this was also true of conversions in former sitting rooms for men s facilities file bar bus terminaljpg thumb the bar in the coach terminal at udine italy in italy a bar is a place more similar to a caf where people go during the morning or the afternoon usually to drink a coffee a cappuccinor a hot chocolate and eat some kind of snack such asandwiches panini sandwich panini or tramezzino tramezzini or pastries however any kind of alcoholic beverages are served opening hours vary somestablishments are open very early in the morning and close relatively early in thevening others especially if nexto a theater or a cinemay be open untilate at night many larger bars are also restaurants andisco clubs many italian bars have introduced a so called ap ritif andigestif aperitivo time in thevening in which everyone who purchases an alcoholic drink then has free access to a usually abundant buffet of coldishesuch as pasta salads vegetables and various appetizers file pasztecik szczeci ski barjpg thumb lefthe oldest bar serving pasztecik szczeci skin szczecin typical polish barserve alcoholic drink s bartender accepts orders most bars are open late in thevening bar mleczny literally milk bar is a bar with cafeteria where customers can have a wide range of dishes of everyday cuisine not only dairy dishes this a popular place for lunch in many cities in poland usually prices of meals are low in catering establishments of this type andecor of rooms is more modesthan in the restaurant another type of polish catering facilities is bar szybkiej obs ugi fast service bar also called from english language fast food bar with dinner dishes a special type of bar is one that serves only one type of meal thexample are barserving pasztecik szczeci ski a traditional specialty of the city of szczecin served as fast food customers can consume pasztecik szczeci skin a bar or take ito home or for a walk through the city bars are common in spain and form an important part in spanish culture in spain it is common for a town to have many bars and even to have severalined up in the same street most bars have a section of the street or plaza outside with tables and chairs with parasols if the weather allows it spanish bars are also known for serving a wide range of sandwiches bocadillos as well asnacks called tapas or pincho s tapas and pinchos may be offered to customers in two ways either complementary torder a drink or in some cases there are charged independently either case this usually clearly indicated to bar customers by display of wall information menus and price lists the anti smoking law has entered in effect january and since that date it is prohibited to smoke in bars and restaurants as well as all other indoor areas closed commercial and state owned facilities are now smoke free areaspain is the country withe highest ratiof bars population with almost bars per thousand inhabitants that is times uk s ratio and times germany s and it alone has double the number of bars than the oldest of the members of theuropean union the meaning of the word bar in spain however does not have the negative connotation inherent in the same word in many other languages for spanish people a bar is essentially a meeting place and not necessarily a place to engage in the consumption of alcoholic beverages as a result children are normally allowed into bars and it is common to see families in bars during week ends of thend of the day in small towns the bar may constitute the very center of socialife and it is customary that after social events people go to bars including seniors and children alike united kingdom file chapel bar tunbridge wells geographorguk jpg thumb uprighthe chapel bar in england in the uk bars areither areas that serve alcoholic drinks within establishmentsuch as hotels restaurants universities or are a particular type of establishment which serves alcoholic drinksuch as wine barstyle bars private membership only bars however the main type of establishment selling alcohol for consumption the premises is the public house or pub some bars are similar to nightclubs in thathey feature loud music subdued lighting or operate a dress code and admissions policy with inner city bars generally having door staff athentrance bar also designates a separate drinking area within a pub until recent years most pubs had twor more bars very often the public bar or tap room and the saloon bar or lounge where the decor was better and prices were sometimes higher the designations of the bars varied regionally in the lastwo decades many pub interiors have been opened up into single spaces which some people regret as it loses the flexibility intimacy and traditional feel of a multi roomed public house one of the last dive bar s in london was underneathe kings head pub in gerrard street soho united states file club moderne bar anaconda montanajpg thumb lefthe bar of the club moderne in anaconda montanaconda montana in the united states legal distinctions often exist between restaurants and bars and even between types of bars these distinctions vary from state to state and even among municipalities beer barsometimes called tavern s or pub s are legally restricted to selling only beer and possibly wine or cider liquor bars also simply called bars also sell distilled beverage hard liquor bars are sometimes exempt from smoking ban s that restaurants are subjecto even if those restaurants have liquor licenses the distinction between a restauranthat serves liquor and a bar is usually made by the percentage of revenuearned from selling liquor although increasingly smoking bans include bars too file bar inew haven ct march jpg thumb upright a bar named bar inew haven connecticut in most places bars are prohibited from selling alcoholic beverages to go and this makes them clearly different from liquor store some brewpubs and wineries can serve alcohol to go but under the rules applied to a liquor store in some areasuch as new orleans and parts of las vegas valley las vegas and savannah georgia open containers of alcohol may be prepared to go this kind of restriction is usually dependent on an open container law in pennsylvaniand ohio bars may sell six pack s of beer to go in original sealed containers by obtaining a take out license new jersey permits all forms of packaged goods to be sold at bars and permits packaged beer and wine to be sold at any time on premisesales of alcoholic beverages are alloweduring the th century drinking establishments were called saloons in the american old westhe most popular establishment in town was usually the western saloon many of these western saloonsurvive though their services and features have changed withe times newer establishments have sometimes been built in western saloon style for a nostalgic effect in american cities there were also numerousaloons which allowed only male patrons and were usually owned by one of the major breweries drunkenness fights and alcoholismade the saloon into a powerful symbol of all that was wrong with alcoholburns ken and novick lynn prohibition saloons were the primary target of the temperance movement and the anti saloon league founded in was the most powerfulobby in favor of prohibition in the united states prohibition when prohibition was repealed president franklin d roosevelt asked the states noto permithe return of saloons prohibition repeal is ratified at pm new york times december many irish or british themed pub s existhroughout united states and canadand in some continental european countries as of may pittsburgh pennsylvania had the most bars per capita in the united states former yugoslavia in bosniand herzegovina croatia montenegro and serbia modern bars overlap with coffeehouse s and larger ones are sometimes also nightclub since the s they have become similar in social function to the bars of italy spain and greece as meeting places for people in a city file kinmanbarjpg interior of seth kinman s table bluff hotel and saloon in table bluff california file chiang mai bars at night kayess jpeg touristsit outside a bar in chiang mai thailand file nightbar erfurtjpg night view of a bar located opposite to the central railroad station in erfurt germany file original drifter s reef bar wake islandjpg the original drifter s reef bar at wake island file bar in bristoljpg a bar in bristol england file bartender at marblejpg a bartender at work in a pub in jerusalem israel filet dire dawa ethiopia jpg a bar in dire dawa ethiopia see also alcohol free bar beer garden cellarette liquor cabinet dive bar drinking culture honky tonk hostess bar izakaya juke joint last call bar term list of bartenders list of public house topics pub shebeen speakeasy tavern tiki bar western saloon a humorous account of the drinking culture of madison avenue advertising industry madison avenue advertising executives during the s originally published in as the hour drink book a guide to executive survival externalinks bar database category types of drinking establishment category bartending category types of restaurants","main_words":["file","bar","p","jpg","thumb","upright","bar","switzerland","bar_also","known","saloon","tavern","sometimes","pub","club","referring","actual","establishment","club","etc","retail","business","establishmenthat","serves","alcoholic_beverage","beer","wine","distilled","beverage","liquor","cocktail","beveragesuch","mineral","water","soft_drink","often","sell","snack","foodsuch","potato","chips","peanut","consumption","premises","cocktailounge","definition","free","dictionary","types","pubs","may_also","menu","term","bar_also","refers","area","drinks","served","bars","provide","bar","stools","chairs","placed","atables","counters","patrons","bars","offer","entertainment","live_music","often_referred","music","bars","nightclubs","types","bars","range","inexpensive","dive_bar","accessdate","elegant","places","entertainment","often","accompanying","restaurants","dining","many","bars","discount","happy_hour","encourage","peak","time","patronage","bars","fill","capacity","sometimes","implement","cover_charge","minimum","drink","purchase","requirement","peak","hours","bars_may","bouncer_doorman","bouncers","ensure","patrons","legal","age","drunk","patrons","collect","cover","bars","often","may","musical","band","live","band","comedian","disc","jockey","playing","recorded","music","term","bar","derived","bar","counter","specialized","counter","drinks","served","patrons","may","sit","stand","athe","bar","served","bartender","depending","size","bar","approach","alcohol","athe","bar","bartenders","atables","waiting_staff","server","combination","two","back","bar","set","shelves","glasses","bottles","behind","counter","somestablishments","back","bar","decorated","glass","mirrors","lights","file","cross","bar","juke_joint","gastation","melrose","louisiana","jpg","thumb","left","great_depression","era","bar","melrose","louisiana","many_different","names","public","drinking","spaces","throughout","history","colonial","era","united_states","taverns","important","meeting_place","institutions","weak","th_century","saloons","importanto","leisure","time","working","poor","man","club","social","functions","urban","working","american","quarterly","vol","even","establishment","uses","different","name","tavern","saloon","area","thestablishment","bartender","beverages","normally","called","bar","sale","consumption","alcoholic_beverages","prohibited","first_half","th_century","several","countries_including","finland","iceland","norway","united_states","united_states","illegal","bars","prohibition","united_states_prohibition","called","speakeasy","speakeasies","blind","pigs","blind","tigers","legal","restrictions","laws","many","jurisdictions","prohibit","minor","law","minors","entering","bar","legal","drinking_age","allowed","enter","case","pubs","serve_food","allowed","drink","jurisdictions","bars","cannot","serve","patron","already","intoxicated","cities","towns","usually","legal","restrictions","bars_may","located","types","alcohol","may_serve","bars_may","license","serve","beer","wine","hard","liquor","jurisdictions","patrons","buying","alcohol","must","food","jurisdictions","bar","owners","conduct","patrons","serve","liability","may","arise","cases","driving","influence","cause","injuries","deaths","many","prohibit","bars","well","possession","sale","alcohol","reasons","others","including","qatar","united_arab_emirates","allow","bars","specific","areas","permit","non","muslims","drink","bar","owners","managers","choose","bar","name","cor","drink","menu","lighting","elements","think","attract","certain","kind","patron","however","limited","influence","bar","originally_intended","one","demographic","profile","become_popular","another","example","gay","bar","gay_lesbian","bars","lesbian","bar","dance","disco","floor","might","time","attract","increasingly","clientele","blues","bar","may","become","biker","bar","patrons","bikers","cocktailounge","upscale","bar","typically","located","within","hotel","restaurant","airport","full","bar","serves","liquor","cocktails","wine","beer","wine","bar","elegant","bar","focuses","wine","rather","beer","liquor","patrons","bars_may","wine","tasting","taste","wines","buy","wine","small","plates","ofood","snacks","beer","bar","focuses","beer","particularly","craft","wine","liquor","brew","pub","site","brewery","serves","craft","beers","bar","american","slang_term","upscale","bar","music","bar","bar","presents","live_music","attraction","dive_bar","often_referred","simply","dive","informal","bar","may","considered","disreputable","alcohol_free_bar","non_alcoholic","bar","bar","serve_alcoholic_beverages","bar","grill","also","restaurant","persons","may","room","area","room","home","bar","furniture","arrangements","vary","full","bars","could","suited","businesses","file","home","bar","thumb","example","typical","home","bar","inew_york_city","usa","bars","categorized","kind","offer","blues","live","club","comedy","stand","comedy","entertainment","dance_bar","whichave","dance_floor","patrons","dance","recorded","music","typically","venue","large","dance_floor","focuses","primarily","dancing","rather","professional","considered","nightclub","discoth_que","rather","bar","karaoke","bars","nightly","karaoke","entertainment","music","live_music","concerts","drag","bars","specialize","drag","clothing","drag","performances","entertainment","salsa","bars","patrons","dance","latin","salsa","music","sports","bars","furnished","sports","related","theming","typically","contain","large_number","television","used","broadcast","major","sporting_events","patrons","topless","bars","topless","dance","serve","drinks","india","bars","bar","india","dance_bars","distinct","type","dance_bar","discussed","bars","categorized","kind","patrons","bicycle","bars","bike","congregate","found","cities","large","bike","communities","biker","bars","bars","frequented","regions","motorcycle","club","members","cop","bars","duty","law_enforcement","agents","gather","college","bars","usually_located","near","universities","patrons","students","gay","bar","gay","men","women","dance","socialize","lesbian","bars","mixed","gay","straight","bars","mainly","targeting","bisexual","neighborhood","bars","bar","patrons","know","generally","close","home","frequented","regularly","old","man","bars","whose","clientele","mainly","long_time","male","patrons","know","well","since","patrons","often","begin","drinking","much","earlier","day","consume","inexpensive","beer","whisky","may","spend","much","day","reading","newspaper","watching","bars","usually_located","waterfront","areas","near","commercial","naval","bars","mostly","people","sexes","meet","socialize","sports","bars","sports","fans","gather","like","minded","fans","women","bars","bar","counter","file","bar","hard","rock","cafe","thumb","right","row","distilled","beverage","liquor","bottles","behind","bar","counter","file","liquor","wine","bottles","behind","bar","baden","thumb","liquor","wine","bottles","behind","bar","baden","austria","counter","drinks","served","bartender","called","bar","term","applied","drinking_establishments","called","bars","counter","typically","stores","variety","beer","wine","distilled","beverage","liquors","non_alcoholic","ingredients","organized","facilitate","bartender","work","word","bar","context","already","use","robert","greene","robert","greene","referred","tone","notable","discovery","counters","serving","types_ofood","andrink","may_also","called","bars","examples","usage","word","include","snack_bar","sushi","bars","juice","bar","juice","bar","milk_bar","dairy","bars","bars","australia","major","form","licensed","outlet","colonial","period","present","pub","local","variant","thenglish","original","australian","pubs","traditionally","organised","gender","areas","public_bar","open","men","lounge","bar","saloon","bar","served","men","women","distinction","gradually","eliminated","anti","discrimination","legislation","women","rights","activism","broke","concept","public","drinking","tonly","men","two","exist","one","derived","public_bar","lounge","bar","upmarket","time","withe","introduction","machine","gaming","machines","hotels","many","lounge","bars","converted","gaming","rooms","beginning","mid","formerly","strict","state","liquor","licensing_laws","progressively","relaxed","withe","pub","trading","hours","parto","eliminate","social","problems","associated","early","closing_times","notably","clock","thriving","trade","illicit","alcohol","sales","licensed","liquor","outlets","began","appear","including","retail","bottle","shops","counter","bottle","sales","previously","available","pubs","strictly","controlled","particularly","sydney","new","class","licensed","premises","wine","bar","appeared","alcohol","could","served","provided","tandem","meal","venues","became_popular","late","early","many","offered","becoming","important","sydney","music","scene","period","major","australian","cities","today","large","bar","scene","range","modes","styles","catering","every","cosmopolitan","society","public","drinking","began","withestablishment","colonial","taverns","bothe","us","canada","term","changed","public","uk","term","tavern","continued","used","instead","pub","bothe","us","canada","public","drinking_establishments","banned","prohibition","alcohol","provincial","jurisdiction","prohibition","repealed","province","province","universal","righto","consume","alcohol","males","legal","age","permitted","beer","parlours","common","wake","prohibition","oftenot","entertainment","playing","games","music","thesestablishments","set","aside","purpose","solely","consuming","alcohol","since","thend","second_world_war","exposure","roughly","one_million","canadians","public_house","traditions","common","uk","servicemen","women","serving","traditions","became","common","canada","traditions","include","drinking","dark","ales","pub","social","gathering","place","sexes","playing","gamesuch","pool","tavern","popular","especially","working_class","people","canadian","taverns","still","found","remote","regions","northern","canada","long","tables","benches","lining","sides","patrons","taverns","often","order","beer","large","bottles","andrink","inexpensive","bar","brand","canadian","rye","whisky","provinces","taverns","used","men","women","even","large","city","like","toronto","existed","thearly","canada","adopted","newer","us","bar","sports","bar","last","decades","resulthe","term","bar","come","term","pub","bars","usually","themed","sometimes","dance_floor","bars","dance_floors","usually","small","suburban","communities","larger","cities","bars","large","dance_floors","usually","referred","clubs","strictly","dancing","establishments","call","pubs","often","much","similar","british","pub","style","bars","simply","tavern","often","bars","pubs","canada","cater","supporters","local","sporting","team","usually","hockey","team","difference","sports","bar","pub","sports","bars","focus","showcasing","uniforms","equipment","etc","pubs","generally","also","show","games","exclusively","focus","tavern","popular","thearly","american","style","bars","know","today","became_popular","imitation","british","irish","style","pubs","become_popular","adopted","names","like","fox","fiddle","queen","naming","trends","britain","tavern","pub","style","mixed","food_andrink","establishment","generally","common","bars","found","legal","restrictions","bars","set","canadian","provinces","territories","whichas","led","great_deal","variety","provinces","restrictive","witheir","setting","strict","closing_times","banning","removal","alcohol","premises","provinces","liberal","closing_times","generally","run","inova","scotia","particularly","city","halifax","distinct","system","gender","based","laws","effect","decades","taverns","bars","halls","whether","exclusively","men","women","invited","women","vice","versa","mixed","fell","wayside","issue","water","led","many","taverns","adding","constructed","later","used","parts","kitchens","upstairs","halls","plumbing","allowed","also","true","former","sitting","rooms","men","facilities","file","bar","bus","thumb","bar","coach","terminal","italy","italy","bar","place","similar","caf","people","go","morning","afternoon","usually","drink","coffee","hot","chocolate","eat","kind","snack","sandwich","pastries","however","kind","alcoholic_beverages","served","opening","hours","vary","somestablishments","open","early","morning","close","relatively","others","especially","nexto","theater","open","night","many","larger","bars_also","restaurants","clubs","many","italian","bars","introduced","called","time","thevening","everyone","purchases","alcoholic","drink","free","access","usually","abundant","buffet","pasta","salads","vegetables","various","appetizers","file","pasztecik","szczeci","ski","barjpg","thumb","lefthe","oldest","bar","serving","pasztecik","szczeci","skin","szczecin","typical","polish","alcoholic","drink","bartender","accepts","orders","bars","open","bar","mleczny","literally","milk_bar","bar","cafeteria","customers","wide_range","dishes","everyday","cuisine","dairy","dishes","popular","place","lunch","many","cities","poland","usually","prices","meals","low","catering","establishments","type","rooms","restaurant","another","type","polish","catering","facilities","bar","fast","service","bar_also","called","english_language","fast_food","bar","dinner","dishes","special","type","bar_one","serves","one","type","meal","thexample","pasztecik","szczeci","ski","traditional","specialty","city","szczecin","served","fast_food","customers","consume","pasztecik","szczeci","skin","bar","take","ito","home","walk","city","bars","common","spain","form","important_part","spanish","culture","spain","common","town","many","bars","even","street","bars","section","street","plaza","outside","tables","chairs","weather","allows","spanish","serving","wide_range","sandwiches","well","called","tapas","pincho","tapas","may_offered","customers","two","ways","either","torder","drink","cases","charged","independently","either","case","usually","clearly","indicated","bar","customers","display","wall","information","menus","price","lists","anti","smoking","law","entered","effect","january","since","date","prohibited","smoke","bars","restaurants","well","indoor","areas","closed","commercial","state_owned","facilities","smoke","free","country","withe","highest","ratiof","bars","population","almost","bars","per","thousand","inhabitants","times","uk","ratio","times","germany","alone","double","number","bars","oldest","members","theuropean_union","meaning","word","bar","spain","however","negative","inherent","word","many","languages","spanish","people","bar","essentially","meeting_place","necessarily","place","engage","consumption","alcoholic_beverages","result","children","normally","allowed","bars","common","see","families","bars","week","ends","thend","day","small_towns","bar","may","constitute","center","socialife","customary","social","events","people","go","bars","including","seniors","children","alike","united_kingdom","file","chapel","bar","wells","geographorguk_jpg","thumb_uprighthe","chapel","bar","england","uk","bars","areither","areas","within","hotels_restaurants","universities","particular","type","establishment","serves","wine","bars","private","membership","bars","however","main","type","establishment","selling","alcohol","consumption","premises","public_house_pub","bars","similar","nightclubs","thathey","feature","loud","music","lighting","operate","dress_code","admissions","policy","inner","city","bars","generally","door","staff","athentrance","bar_also","separate","drinking","area","within","pub","recent_years","pubs","twor","bars","often","public_bar","tap","room","saloon","bar","lounge","decor","better","prices","sometimes","higher","designations","bars","varied","decades","many","opened","single","spaces","people","loses","flexibility","traditional","feel","multi","public_house","one","last","dive_bar","london","underneathe","kings","head","pub","street","soho","united_states","file","club","bar","anaconda","thumb","lefthe","bar","club","anaconda","montana","united_states","legal","distinctions","often","exist","restaurants","bars","even","types","bars","distinctions","vary","state","state","even","among","municipalities","beer","called","tavern","pub","legally","restricted","selling","beer","possibly","wine","cider","liquor","bars_also","simply","called","bars_also","sell","distilled","beverage","hard","liquor","bars","sometimes","smoking","ban","restaurants","subjecto","even","restaurants","liquor","licenses","distinction","restauranthat","serves","liquor","bar","usually_made","percentage","selling","liquor","although","increasingly","smoking","include","bars","file","bar","inew","march","jpg","thumb","upright","bar","named","bar","inew","connecticut","places","bars","prohibited","selling","alcoholic_beverages","go","makes","clearly","different","liquor","store","wineries","serve","alcohol","go","rules","applied","liquor","store","areasuch","new_orleans","parts","las_vegas","valley","las_vegas","savannah","georgia","open","containers","alcohol","may","prepared","go","kind","restriction","usually","dependent","open","container","law","pennsylvaniand","ohio","bars_may","sell","six","pack","beer","go","original","sealed","containers","obtaining","take","license","new_jersey","permits","forms","packaged","goods","sold","bars","permits","packaged","beer","wine","sold","time","alcoholic_beverages","th_century","drinking_establishments","called","saloons","american","old","westhe","popular","establishment","town","usually","western","saloon","many","western","though","services","features","changed","withe","times","newer","establishments","sometimes","built","western","saloon","style","nostalgic","effect","american","cities","also","allowed","male","patrons","usually","owned","one","major","breweries","drunkenness","fights","saloon","powerful","symbol","wrong","ken","lynn","prohibition","saloons","primary","target","temperance","movement","anti","saloon","league","founded","favor","prohibition","united_states_prohibition","prohibition","repealed","president","franklin","roosevelt","asked","states","noto","return","saloons","prohibition","repeal","ratified","new_york","times","december","many","irish","british","themed","pub","united_states","canadand","may","pittsburgh","pennsylvania","bars","per","capita","united_states","former","yugoslavia","bosniand","herzegovina","croatia","montenegro","serbia","modern","bars","overlap","coffeehouse","larger","ones","sometimes","also","nightclub","since","become","similar","social","function","bars","italy","spain","greece","meeting_places","people","city","file","interior","seth","table","bluff","hotel","saloon","table","bluff","california","file","chiang","mai","bars","night","outside","bar","chiang","mai","thailand","file","night","view","bar_located","opposite","central","railroad","station","germany","file","original","drifter","reef","bar","wake","original","drifter","reef","bar","wake","island","file","bar","bar","bristol","england","file","bartender","bartender","work","pub","jerusalem","israel","ethiopia","jpg","bar","ethiopia","see_also","alcohol_free_bar","beer_garden","liquor","cabinet","dive_bar","drinking_culture","honky","tonk","hostess","bar","izakaya","juke_joint","last","call","bar","term","list","bartenders","list","public_house_topics","pub","shebeen","speakeasy","tavern","tiki","bar","western","saloon","humorous","account","drinking_culture","madison","avenue","advertising","industry","madison","avenue","advertising","executives","originally_published","hour","drink","book","guide","executive","survival","externalinks","bar","database","category_types","drinking_establishment_category","bartending","category_types","restaurants"],"clean_bigrams":[["file","bar"],["bar","p"],["p","jpg"],["jpg","thumb"],["thumb","upright"],["bar","also"],["also","known"],["club","referring"],["actual","establishment"],["club","etc"],["retail","business"],["business","establishmenthat"],["establishmenthat","serves"],["serves","alcoholic"],["alcoholic","beverage"],["beer","wine"],["wine","distilled"],["distilled","beverage"],["beverage","liquor"],["liquor","cocktail"],["mineral","water"],["soft","drink"],["often","sell"],["sell","snack"],["snack","foodsuch"],["consumption","premises"],["premises","cocktailounge"],["cocktailounge","definition"],["free","dictionary"],["pubs","may"],["may","also"],["also","serve"],["serve","food"],["restaurant","menu"],["term","bar"],["bar","also"],["also","refers"],["served","bars"],["bars","provide"],["provide","bar"],["bar","stools"],["placed","atables"],["patrons","bars"],["offer","entertainment"],["live","music"],["often","referred"],["music","bars"],["nightclubs","types"],["bars","range"],["inexpensive","dive"],["dive","bar"],["elegant","places"],["entertainment","often"],["often","accompanying"],["accompanying","restaurants"],["dining","many"],["many","bars"],["happy","hour"],["peak","time"],["time","patronage"],["patronage","bars"],["capacity","sometimes"],["sometimes","implement"],["cover","charge"],["minimum","drink"],["drink","purchase"],["purchase","requirement"],["peak","hours"],["hours","bars"],["bars","may"],["bouncer","doorman"],["doorman","bouncers"],["ensure","patrons"],["legal","age"],["collect","cover"],["bars","often"],["musical","band"],["band","live"],["live","band"],["disc","jockey"],["jockey","playing"],["playing","recorded"],["recorded","music"],["term","bar"],["bar","counter"],["counter","specialized"],["specialized","counter"],["served","patrons"],["patrons","may"],["may","sit"],["stand","athe"],["athe","bar"],["bar","served"],["bartender","depending"],["approach","alcohol"],["alcohol","may"],["served","athe"],["athe","bar"],["bartenders","atables"],["waiting","staff"],["staff","server"],["back","bar"],["bottles","behind"],["back","bar"],["glass","mirrors"],["lights","file"],["bar","juke"],["juke","joint"],["melrose","louisiana"],["louisiana","jpg"],["jpg","thumb"],["thumb","left"],["great","depression"],["depression","era"],["era","bar"],["melrose","louisiana"],["many","different"],["different","names"],["public","drinking"],["drinking","spaces"],["spaces","throughout"],["throughout","history"],["colonial","era"],["united","states"],["states","taverns"],["important","meeting"],["meeting","place"],["th","century"],["century","saloons"],["leisure","time"],["poor","man"],["club","social"],["social","functions"],["urban","working"],["american","quarterly"],["quarterly","vol"],["establishment","uses"],["different","name"],["normally","called"],["alcoholic","beverages"],["first","half"],["th","century"],["several","countries"],["countries","including"],["including","finland"],["finland","iceland"],["iceland","norway"],["united","states"],["united","states"],["states","illegal"],["illegal","bars"],["united","states"],["states","prohibition"],["called","speakeasy"],["speakeasy","speakeasies"],["speakeasies","blind"],["blind","pigs"],["blind","tigers"],["tigers","legal"],["legal","restrictions"],["restrictions","laws"],["many","jurisdictions"],["jurisdictions","prohibit"],["prohibit","minor"],["minor","law"],["law","minors"],["legal","drinking"],["drinking","age"],["serve","food"],["jurisdictions","bars"],["already","intoxicated"],["intoxicated","cities"],["towns","usually"],["legal","restrictions"],["bars","may"],["alcohol","may"],["may","serve"],["bars","may"],["serve","beer"],["beer","wine"],["hard","liquor"],["jurisdictions","patrons"],["patrons","buying"],["buying","alcohol"],["alcohol","must"],["jurisdictions","bar"],["bar","owners"],["liability","may"],["may","arise"],["cause","injuries"],["deaths","many"],["prohibit","bars"],["others","including"],["including","qatar"],["united","arab"],["arab","emirates"],["emirates","allow"],["allow","bars"],["specific","areas"],["permit","non"],["non","muslims"],["bar","owners"],["managers","choose"],["cor","drink"],["drink","menu"],["menu","lighting"],["certain","kind"],["patron","however"],["limited","influence"],["bar","originally"],["originally","intended"],["one","demographic"],["demographic","profile"],["become","popular"],["gay","bar"],["bar","gay"],["lesbian","bars"],["bars","lesbian"],["lesbian","bar"],["disco","floor"],["floor","might"],["time","attract"],["blues","bar"],["bar","may"],["may","become"],["biker","bar"],["upscale","bar"],["typically","located"],["located","within"],["hotel","restaurant"],["full","bar"],["bar","serves"],["serves","liquor"],["liquor","cocktails"],["cocktails","wine"],["beer","wine"],["wine","bar"],["elegant","bar"],["bar","focuses"],["wine","rather"],["liquor","patrons"],["patrons","bars"],["bars","may"],["may","wine"],["wine","tasting"],["tasting","taste"],["taste","wines"],["wine","bars"],["bars","also"],["also","serve"],["serve","small"],["small","plates"],["plates","ofood"],["beer","bar"],["bar","focuses"],["beer","particularly"],["particularly","craft"],["brew","pub"],["site","brewery"],["serves","craft"],["craft","beers"],["american","slang"],["slang","term"],["upscale","bar"],["music","bar"],["presents","live"],["live","music"],["dive","bar"],["bar","often"],["often","referred"],["informal","bar"],["bar","may"],["disreputable","alcohol"],["alcohol","free"],["free","bar"],["bar","non"],["non","alcoholic"],["alcoholic","bar"],["serve","alcoholic"],["alcoholic","beverages"],["persons","may"],["home","bar"],["bar","furniture"],["arrangements","vary"],["full","bars"],["businesses","file"],["file","home"],["home","bar"],["thumb","example"],["typical","home"],["home","bar"],["bar","inew"],["inew","york"],["york","city"],["city","usa"],["usa","bars"],["bars","categorized"],["offer","blues"],["club","comedy"],["comedy","entertainment"],["entertainment","dance"],["dance","bar"],["dance","floor"],["patrons","dance"],["recorded","music"],["music","typically"],["large","dance"],["dance","floor"],["floor","focuses"],["focuses","primarily"],["dancing","rather"],["discoth","que"],["que","rather"],["bar","karaoke"],["karaoke","bars"],["nightly","karaoke"],["entertainment","music"],["live","music"],["concerts","drag"],["drag","bars"],["drag","clothing"],["clothing","drag"],["drag","performances"],["entertainment","salsa"],["salsa","bars"],["patrons","dance"],["latin","salsa"],["salsa","music"],["music","sports"],["sports","bars"],["sports","related"],["typically","contain"],["large","number"],["broadcast","major"],["major","sporting"],["sporting","events"],["patrons","topless"],["topless","bars"],["serve","drinks"],["drinks","india"],["bars","bar"],["bar","india"],["india","dance"],["dance","bars"],["dance","bar"],["bar","discussed"],["bars","categorized"],["large","bike"],["communities","biker"],["biker","bars"],["bars","frequented"],["regions","motorcycle"],["motorcycle","club"],["club","members"],["members","cop"],["cop","bars"],["duty","law"],["law","enforcement"],["enforcement","agents"],["agents","gather"],["gather","college"],["college","bars"],["bars","usually"],["usually","located"],["near","universities"],["students","gay"],["gay","bar"],["bar","gay"],["gay","men"],["women","dance"],["socialize","lesbian"],["lesbian","bars"],["bars","mixed"],["mixed","gay"],["gay","straight"],["straight","bars"],["bars","mainly"],["mainly","targeting"],["targeting","bisexual"],["neighborhood","bars"],["bars","bar"],["patrons","know"],["generally","close"],["frequented","regularly"],["regularly","old"],["old","man"],["man","bars"],["bars","whose"],["whose","clientele"],["mainly","long"],["long","time"],["time","male"],["male","patrons"],["patrons","know"],["well","since"],["often","begin"],["begin","drinking"],["drinking","much"],["much","earlier"],["day","consume"],["consume","inexpensive"],["inexpensive","beer"],["beer","whisky"],["may","spend"],["spend","much"],["watching","tv"],["bars","usually"],["usually","located"],["waterfront","areas"],["areas","near"],["near","commercial"],["socialize","sports"],["sports","bars"],["sports","fans"],["fans","gather"],["like","minded"],["minded","fans"],["fans","women"],["bars","bar"],["bar","counter"],["counter","file"],["file","bar"],["bar","hard"],["hard","rock"],["rock","cafe"],["thumb","right"],["distilled","beverage"],["beverage","liquor"],["liquor","bottles"],["bottles","behind"],["bar","counter"],["counter","file"],["file","liquor"],["wine","bottles"],["bottles","behind"],["thumb","liquor"],["wine","bottles"],["bottles","behind"],["baden","austria"],["bar","term"],["drinking","establishments"],["establishments","called"],["called","bars"],["counter","typically"],["typically","stores"],["beer","wine"],["wine","distilled"],["distilled","beverage"],["beverage","liquors"],["non","alcoholic"],["alcoholic","ingredients"],["word","bar"],["robert","greene"],["robert","greene"],["referred","tone"],["notable","discovery"],["types","ofood"],["ofood","andrink"],["andrink","may"],["may","also"],["also","called"],["called","bars"],["bars","examples"],["word","include"],["include","snack"],["snack","bar"],["bar","sushi"],["sushi","bars"],["bars","juice"],["juice","bar"],["bar","juice"],["juice","bar"],["milk","bar"],["bar","dairy"],["dairy","bars"],["major","form"],["colonial","period"],["local","variant"],["thenglish","original"],["australian","pubs"],["traditionally","organised"],["public","bar"],["lounge","bar"],["saloon","bar"],["bar","served"],["gradually","eliminated"],["anti","discrimination"],["discrimination","legislation"],["rights","activism"],["activism","broke"],["public","drinking"],["tonly","men"],["public","bar"],["lounge","bar"],["time","withe"],["withe","introduction"],["machine","gaming"],["gaming","machines"],["hotels","many"],["many","lounge"],["lounge","bars"],["gaming","rooms"],["rooms","beginning"],["formerly","strict"],["strict","state"],["state","liquor"],["liquor","licensing"],["licensing","laws"],["progressively","relaxed"],["pub","trading"],["trading","hours"],["parto","eliminate"],["social","problems"],["problems","associated"],["early","closing"],["closing","times"],["times","notably"],["thriving","trade"],["illicit","alcohol"],["alcohol","sales"],["licensed","liquor"],["liquor","outlets"],["outlets","began"],["appear","including"],["including","retail"],["retail","bottle"],["bottle","shops"],["counter","bottle"],["bottle","sales"],["strictly","controlled"],["controlled","particularly"],["new","class"],["licensed","premises"],["wine","bar"],["bar","appeared"],["alcohol","could"],["venues","became"],["became","popular"],["many","offered"],["sydney","music"],["music","scene"],["major","australian"],["australian","cities"],["cities","today"],["bar","scene"],["styles","catering"],["cosmopolitan","society"],["society","public"],["public","drinking"],["drinking","began"],["began","withestablishment"],["colonial","taverns"],["bothe","us"],["term","changed"],["term","tavern"],["tavern","continued"],["used","instead"],["bothe","us"],["canada","public"],["public","drinking"],["drinking","establishments"],["provincial","jurisdiction"],["jurisdiction","prohibition"],["repealed","province"],["universal","righto"],["righto","consume"],["consume","alcohol"],["legal","age"],["beer","parlours"],["set","aside"],["purpose","solely"],["consuming","alcohol"],["alcohol","since"],["since","thend"],["second","world"],["world","war"],["roughly","one"],["one","million"],["million","canadians"],["public","house"],["house","traditions"],["traditions","common"],["women","serving"],["traditions","became"],["traditions","include"],["dark","ales"],["social","gathering"],["gathering","place"],["pool","tavern"],["working","class"],["class","people"],["people","canadian"],["canadian","taverns"],["remote","regions"],["northern","canada"],["long","tables"],["benches","lining"],["sides","patrons"],["taverns","often"],["often","order"],["order","beer"],["bottles","andrink"],["andrink","inexpensive"],["inexpensive","bar"],["bar","brand"],["brand","canadian"],["canadian","rye"],["rye","whisky"],["provinces","taverns"],["taverns","used"],["women","even"],["large","city"],["city","like"],["like","toronto"],["newer","us"],["us","bar"],["sports","bar"],["last","decades"],["resulthe","term"],["term","bar"],["term","pub"],["bars","usually"],["usually","themed"],["dance","floor"],["floor","bars"],["dance","floors"],["suburban","communities"],["larger","cities"],["cities","bars"],["large","dance"],["dance","floors"],["usually","referred"],["dancing","establishments"],["often","much"],["british","pub"],["pub","style"],["style","bars"],["tavern","often"],["often","bars"],["local","sporting"],["sporting","team"],["team","usually"],["hockey","team"],["sports","bar"],["pub","sports"],["sports","bars"],["bars","focus"],["showcasing","uniforms"],["uniforms","equipment"],["equipment","etc"],["etc","pubs"],["generally","also"],["also","show"],["show","games"],["exclusively","focus"],["american","style"],["style","bars"],["today","became"],["became","popular"],["imitation","british"],["irish","style"],["style","pubs"],["pubs","become"],["become","popular"],["adopted","names"],["names","like"],["naming","trends"],["britain","tavern"],["pub","style"],["style","mixed"],["mixed","food"],["food","andrink"],["andrink","establishment"],["found","legal"],["legal","restrictions"],["canadian","provinces"],["territories","whichas"],["whichas","led"],["great","deal"],["restrictive","witheir"],["setting","strict"],["strict","closing"],["closing","times"],["liberal","closing"],["closing","times"],["times","generally"],["generally","run"],["inova","scotia"],["scotia","particularly"],["distinct","system"],["gender","based"],["based","laws"],["decades","taverns"],["taverns","bars"],["bars","halls"],["invited","women"],["women","vice"],["vice","versa"],["many","taverns"],["taverns","adding"],["constructed","later"],["used","parts"],["upstairs","halls"],["plumbing","allowed"],["also","true"],["former","sitting"],["sitting","rooms"],["facilities","file"],["file","bar"],["bar","bus"],["coach","terminal"],["people","go"],["afternoon","usually"],["hot","chocolate"],["pastries","however"],["alcoholic","beverages"],["served","opening"],["opening","hours"],["hours","vary"],["vary","somestablishments"],["close","relatively"],["relatively","early"],["thevening","others"],["others","especially"],["night","many"],["many","larger"],["larger","bars"],["bars","also"],["also","restaurants"],["clubs","many"],["many","italian"],["italian","bars"],["alcoholic","drink"],["free","access"],["usually","abundant"],["abundant","buffet"],["pasta","salads"],["salads","vegetables"],["various","appetizers"],["appetizers","file"],["file","pasztecik"],["pasztecik","szczeci"],["szczeci","ski"],["ski","barjpg"],["barjpg","thumb"],["thumb","lefthe"],["lefthe","oldest"],["oldest","bar"],["bar","serving"],["serving","pasztecik"],["pasztecik","szczeci"],["szczeci","skin"],["skin","szczecin"],["szczecin","typical"],["typical","polish"],["alcoholic","drink"],["bartender","accepts"],["accepts","orders"],["open","late"],["thevening","bar"],["bar","mleczny"],["mleczny","literally"],["literally","milk"],["milk","bar"],["wide","range"],["everyday","cuisine"],["dairy","dishes"],["popular","place"],["many","cities"],["poland","usually"],["usually","prices"],["catering","establishments"],["restaurant","another"],["another","type"],["polish","catering"],["catering","facilities"],["fast","service"],["service","bar"],["bar","also"],["also","called"],["english","language"],["language","fast"],["fast","food"],["food","bar"],["dinner","dishes"],["special","type"],["one","type"],["meal","thexample"],["pasztecik","szczeci"],["szczeci","ski"],["traditional","specialty"],["szczecin","served"],["fast","food"],["food","customers"],["consume","pasztecik"],["pasztecik","szczeci"],["szczeci","skin"],["take","ito"],["ito","home"],["city","bars"],["important","part"],["spanish","culture"],["many","bars"],["plaza","outside"],["weather","allows"],["spanish","bars"],["bars","also"],["also","known"],["wide","range"],["called","tapas"],["two","ways"],["ways","either"],["charged","independently"],["independently","either"],["either","case"],["usually","clearly"],["clearly","indicated"],["bar","customers"],["wall","information"],["information","menus"],["price","lists"],["anti","smoking"],["smoking","law"],["effect","january"],["indoor","areas"],["areas","closed"],["closed","commercial"],["state","owned"],["owned","facilities"],["smoke","free"],["country","withe"],["withe","highest"],["highest","ratiof"],["ratiof","bars"],["bars","population"],["almost","bars"],["bars","per"],["per","thousand"],["thousand","inhabitants"],["times","uk"],["times","germany"],["theuropean","union"],["word","bar"],["spain","however"],["spanish","people"],["meeting","place"],["alcoholic","beverages"],["result","children"],["normally","allowed"],["see","families"],["week","ends"],["small","towns"],["bar","may"],["may","constitute"],["social","events"],["events","people"],["people","go"],["bars","including"],["including","seniors"],["children","alike"],["alike","united"],["united","kingdom"],["kingdom","file"],["file","chapel"],["chapel","bar"],["wells","geographorguk"],["geographorguk","jpg"],["jpg","thumb"],["thumb","uprighthe"],["uprighthe","chapel"],["chapel","bar"],["uk","bars"],["bars","areither"],["areither","areas"],["serve","alcoholic"],["alcoholic","drinks"],["drinks","within"],["hotels","restaurants"],["restaurants","universities"],["particular","type"],["serves","alcoholic"],["alcoholic","drinksuch"],["wine","bars"],["bars","private"],["private","membership"],["bars","however"],["main","type"],["establishment","selling"],["selling","alcohol"],["consumption","premises"],["public","house"],["thathey","feature"],["feature","loud"],["loud","music"],["dress","code"],["admissions","policy"],["inner","city"],["city","bars"],["bars","generally"],["door","staff"],["staff","athentrance"],["athentrance","bar"],["bar","also"],["separate","drinking"],["drinking","area"],["area","within"],["recent","years"],["bars","often"],["public","bar"],["tap","room"],["saloon","bar"],["sometimes","higher"],["bars","varied"],["decades","many"],["many","pub"],["pub","interiors"],["single","spaces"],["traditional","feel"],["public","house"],["house","one"],["last","dive"],["dive","bar"],["underneathe","kings"],["kings","head"],["head","pub"],["street","soho"],["soho","united"],["united","states"],["states","file"],["file","club"],["bar","anaconda"],["thumb","lefthe"],["lefthe","bar"],["united","states"],["states","legal"],["legal","distinctions"],["distinctions","often"],["often","exist"],["distinctions","vary"],["even","among"],["among","municipalities"],["municipalities","beer"],["called","tavern"],["legally","restricted"],["possibly","wine"],["cider","liquor"],["liquor","bars"],["bars","also"],["also","simply"],["simply","called"],["called","bars"],["bars","also"],["also","sell"],["sell","distilled"],["distilled","beverage"],["beverage","hard"],["hard","liquor"],["liquor","bars"],["smoking","ban"],["subjecto","even"],["liquor","licenses"],["restauranthat","serves"],["serves","liquor"],["usually","made"],["selling","liquor"],["liquor","although"],["although","increasingly"],["increasingly","smoking"],["include","bars"],["file","bar"],["bar","inew"],["march","jpg"],["jpg","thumb"],["thumb","upright"],["bar","named"],["named","bar"],["bar","inew"],["places","bars"],["selling","alcoholic"],["alcoholic","beverages"],["clearly","different"],["liquor","store"],["serve","alcohol"],["rules","applied"],["liquor","store"],["new","orleans"],["las","vegas"],["vegas","valley"],["valley","las"],["las","vegas"],["savannah","georgia"],["georgia","open"],["open","containers"],["alcohol","may"],["usually","dependent"],["open","container"],["container","law"],["pennsylvaniand","ohio"],["ohio","bars"],["bars","may"],["may","sell"],["sell","six"],["six","pack"],["original","sealed"],["sealed","containers"],["license","new"],["new","jersey"],["jersey","permits"],["packaged","goods"],["permits","packaged"],["packaged","beer"],["beer","wine"],["alcoholic","beverages"],["th","century"],["century","drinking"],["drinking","establishments"],["establishments","called"],["called","saloons"],["american","old"],["old","westhe"],["popular","establishment"],["western","saloon"],["saloon","many"],["changed","withe"],["withe","times"],["times","newer"],["newer","establishments"],["western","saloon"],["saloon","style"],["nostalgic","effect"],["american","cities"],["male","patrons"],["usually","owned"],["major","breweries"],["breweries","drunkenness"],["drunkenness","fights"],["powerful","symbol"],["lynn","prohibition"],["prohibition","saloons"],["primary","target"],["temperance","movement"],["anti","saloon"],["saloon","league"],["league","founded"],["united","states"],["states","prohibition"],["repealed","president"],["president","franklin"],["roosevelt","asked"],["states","noto"],["saloons","prohibition"],["prohibition","repeal"],["new","york"],["york","times"],["times","december"],["december","many"],["many","irish"],["british","themed"],["themed","pub"],["united","states"],["continental","european"],["european","countries"],["may","pittsburgh"],["pittsburgh","pennsylvania"],["bars","per"],["per","capita"],["united","states"],["states","former"],["former","yugoslavia"],["bosniand","herzegovina"],["herzegovina","croatia"],["croatia","montenegro"],["serbia","modern"],["modern","bars"],["bars","overlap"],["larger","ones"],["sometimes","also"],["also","nightclub"],["nightclub","since"],["become","similar"],["social","function"],["italy","spain"],["meeting","places"],["city","file"],["table","bluff"],["bluff","hotel"],["table","bluff"],["bluff","california"],["california","file"],["file","chiang"],["chiang","mai"],["mai","bars"],["chiang","mai"],["mai","thailand"],["thailand","file"],["night","view"],["bar","located"],["located","opposite"],["central","railroad"],["railroad","station"],["germany","file"],["file","original"],["original","drifter"],["reef","bar"],["bar","wake"],["original","drifter"],["reef","bar"],["bar","wake"],["wake","island"],["island","file"],["file","bar"],["bristol","england"],["england","file"],["file","bartender"],["jerusalem","israel"],["ethiopia","jpg"],["ethiopia","see"],["see","also"],["also","alcohol"],["alcohol","free"],["free","bar"],["bar","beer"],["beer","garden"],["liquor","cabinet"],["cabinet","dive"],["dive","bar"],["bar","drinking"],["drinking","culture"],["culture","honky"],["honky","tonk"],["tonk","hostess"],["hostess","bar"],["bar","izakaya"],["izakaya","juke"],["juke","joint"],["joint","last"],["last","call"],["call","bar"],["bar","term"],["term","list"],["bartenders","list"],["public","house"],["house","topics"],["topics","pub"],["pub","shebeen"],["shebeen","speakeasy"],["speakeasy","tavern"],["tavern","tiki"],["tiki","bar"],["bar","western"],["western","saloon"],["humorous","account"],["drinking","culture"],["madison","avenue"],["avenue","advertising"],["advertising","industry"],["industry","madison"],["madison","avenue"],["avenue","advertising"],["advertising","executives"],["originally","published"],["hour","drink"],["drink","book"],["executive","survival"],["survival","externalinks"],["externalinks","bar"],["bar","database"],["database","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","bartending"],["bartending","category"],["category","types"]],"all_collocations":["file bar","bar p","p jpg","bar also","also known","club referring","actual establishment","club etc","retail business","business establishmenthat","establishmenthat serves","serves alcoholic","alcoholic beverage","beer wine","wine distilled","distilled beverage","beverage liquor","liquor cocktail","mineral water","soft drink","often sell","sell snack","snack foodsuch","consumption premises","premises cocktailounge","cocktailounge definition","free dictionary","pubs may","may also","also serve","serve food","restaurant menu","term bar","bar also","also refers","served bars","bars provide","provide bar","bar stools","placed atables","patrons bars","offer entertainment","live music","often referred","music bars","nightclubs types","bars range","inexpensive dive","dive bar","elegant places","entertainment often","often accompanying","accompanying restaurants","dining many","many bars","happy hour","peak time","time patronage","patronage bars","capacity sometimes","sometimes implement","cover charge","minimum drink","drink purchase","purchase requirement","peak hours","hours bars","bars may","bouncer doorman","doorman bouncers","ensure patrons","legal age","collect cover","bars often","musical band","band live","live band","disc jockey","jockey playing","playing recorded","recorded music","term bar","bar counter","counter specialized","specialized counter","served patrons","patrons may","may sit","stand athe","athe bar","bar served","bartender depending","approach alcohol","alcohol may","served athe","athe bar","bartenders atables","waiting staff","staff server","back bar","bottles behind","back bar","glass mirrors","lights file","bar juke","juke joint","melrose louisiana","louisiana jpg","great depression","depression era","era bar","melrose louisiana","many different","different names","public drinking","drinking spaces","spaces throughout","throughout history","colonial era","united states","states taverns","important meeting","meeting place","th century","century saloons","leisure time","poor man","club social","social functions","urban working","american quarterly","quarterly vol","establishment uses","different name","normally called","alcoholic beverages","first half","th century","several countries","countries including","including finland","finland iceland","iceland norway","united states","united states","states illegal","illegal bars","united states","states prohibition","called speakeasy","speakeasy speakeasies","speakeasies blind","blind pigs","blind tigers","tigers legal","legal restrictions","restrictions laws","many jurisdictions","jurisdictions prohibit","prohibit minor","minor law","law minors","legal drinking","drinking age","serve food","jurisdictions bars","already intoxicated","intoxicated cities","towns usually","legal restrictions","bars may","alcohol may","may serve","bars may","serve beer","beer wine","hard liquor","jurisdictions patrons","patrons buying","buying alcohol","alcohol must","jurisdictions bar","bar owners","liability may","may arise","cause injuries","deaths many","prohibit bars","others including","including qatar","united arab","arab emirates","emirates allow","allow bars","specific areas","permit non","non muslims","bar owners","managers choose","cor drink","drink menu","menu lighting","certain kind","patron however","limited influence","bar originally","originally intended","one demographic","demographic profile","become popular","gay bar","bar gay","lesbian bars","bars lesbian","lesbian bar","disco floor","floor might","time attract","blues bar","bar may","may become","biker bar","upscale bar","typically located","located within","hotel restaurant","full bar","bar serves","serves liquor","liquor cocktails","cocktails wine","beer wine","wine bar","elegant bar","bar focuses","wine rather","liquor patrons","patrons bars","bars may","may wine","wine tasting","tasting taste","taste wines","wine bars","bars also","also serve","serve small","small plates","plates ofood","beer bar","bar focuses","beer particularly","particularly craft","brew pub","site brewery","serves craft","craft beers","american slang","slang term","upscale bar","music bar","presents live","live music","dive bar","bar often","often referred","informal bar","bar may","disreputable alcohol","alcohol free","free bar","bar non","non alcoholic","alcoholic bar","serve alcoholic","alcoholic beverages","persons may","home bar","bar furniture","arrangements vary","full bars","businesses file","file home","home bar","thumb example","typical home","home bar","bar inew","inew york","york city","city usa","usa bars","bars categorized","offer blues","club comedy","comedy entertainment","entertainment dance","dance bar","dance floor","patrons dance","recorded music","music typically","large dance","dance floor","floor focuses","focuses primarily","dancing rather","discoth que","que rather","bar karaoke","karaoke bars","nightly karaoke","entertainment music","live music","concerts drag","drag bars","drag clothing","clothing drag","drag performances","entertainment salsa","salsa bars","patrons dance","latin salsa","salsa music","music sports","sports bars","sports related","typically contain","large number","broadcast major","major sporting","sporting events","patrons topless","topless bars","serve drinks","drinks india","bars bar","bar india","india dance","dance bars","dance bar","bar discussed","bars categorized","large bike","communities biker","biker bars","bars frequented","regions motorcycle","motorcycle club","club members","members cop","cop bars","duty law","law enforcement","enforcement agents","agents gather","gather college","college bars","bars usually","usually located","near universities","students gay","gay bar","bar gay","gay men","women dance","socialize lesbian","lesbian bars","bars mixed","mixed gay","gay straight","straight bars","bars mainly","mainly targeting","targeting bisexual","neighborhood bars","bars bar","patrons know","generally close","frequented regularly","regularly old","old man","man bars","bars whose","whose clientele","mainly long","long time","time male","male patrons","patrons know","well since","often begin","begin drinking","drinking much","much earlier","day consume","consume inexpensive","inexpensive beer","beer whisky","may spend","spend much","watching tv","bars usually","usually located","waterfront areas","areas near","near commercial","socialize sports","sports bars","sports fans","fans gather","like minded","minded fans","fans women","bars bar","bar counter","counter file","file bar","bar hard","hard rock","rock cafe","distilled beverage","beverage liquor","liquor bottles","bottles behind","bar counter","counter file","file liquor","wine bottles","bottles behind","thumb liquor","wine bottles","bottles behind","baden austria","bar term","drinking establishments","establishments called","called bars","counter typically","typically stores","beer wine","wine distilled","distilled beverage","beverage liquors","non alcoholic","alcoholic ingredients","word bar","robert greene","robert greene","referred tone","notable discovery","types ofood","ofood andrink","andrink may","may also","also called","called bars","bars examples","word include","include snack","snack bar","bar sushi","sushi bars","bars juice","juice bar","bar juice","juice bar","milk bar","bar dairy","dairy bars","major form","colonial period","local variant","thenglish original","australian pubs","traditionally organised","public bar","lounge bar","saloon bar","bar served","gradually eliminated","anti discrimination","discrimination legislation","rights activism","activism broke","public drinking","tonly men","public bar","lounge bar","time withe","withe introduction","machine gaming","gaming machines","hotels many","many lounge","lounge bars","gaming rooms","rooms beginning","formerly strict","strict state","state liquor","liquor licensing","licensing laws","progressively relaxed","pub trading","trading hours","parto eliminate","social problems","problems associated","early closing","closing times","times notably","thriving trade","illicit alcohol","alcohol sales","licensed liquor","liquor outlets","outlets began","appear including","including retail","retail bottle","bottle shops","counter bottle","bottle sales","strictly controlled","controlled particularly","new class","licensed premises","wine bar","bar appeared","alcohol could","venues became","became popular","many offered","sydney music","music scene","major australian","australian cities","cities today","bar scene","styles catering","cosmopolitan society","society public","public drinking","drinking began","began withestablishment","colonial taverns","bothe us","term changed","term tavern","tavern continued","used instead","bothe us","canada public","public drinking","drinking establishments","provincial jurisdiction","jurisdiction prohibition","repealed province","universal righto","righto consume","consume alcohol","legal age","beer parlours","set aside","purpose solely","consuming alcohol","alcohol since","since thend","second world","world war","roughly one","one million","million canadians","public house","house traditions","traditions common","women serving","traditions became","traditions include","dark ales","social gathering","gathering place","pool tavern","working class","class people","people canadian","canadian taverns","remote regions","northern canada","long tables","benches lining","sides patrons","taverns often","often order","order beer","bottles andrink","andrink inexpensive","inexpensive bar","bar brand","brand canadian","canadian rye","rye whisky","provinces taverns","taverns used","women even","large city","city like","like toronto","newer us","us bar","sports bar","last decades","resulthe term","term bar","term pub","bars usually","usually themed","dance floor","floor bars","dance floors","suburban communities","larger cities","cities bars","large dance","dance floors","usually referred","dancing establishments","often much","british pub","pub style","style bars","tavern often","often bars","local sporting","sporting team","team usually","hockey team","sports bar","pub sports","sports bars","bars focus","showcasing uniforms","uniforms equipment","equipment etc","etc pubs","generally also","also show","show games","exclusively focus","american style","style bars","today became","became popular","imitation british","irish style","style pubs","pubs become","become popular","adopted names","names like","naming trends","britain tavern","pub style","style mixed","mixed food","food andrink","andrink establishment","found legal","legal restrictions","canadian provinces","territories whichas","whichas led","great deal","restrictive witheir","setting strict","strict closing","closing times","liberal closing","closing times","times generally","generally run","inova scotia","scotia particularly","distinct system","gender based","based laws","decades taverns","taverns bars","bars halls","invited women","women vice","vice versa","many taverns","taverns adding","constructed later","used parts","upstairs halls","plumbing allowed","also true","former sitting","sitting rooms","facilities file","file bar","bar bus","coach terminal","people go","afternoon usually","hot chocolate","pastries however","alcoholic beverages","served opening","opening hours","hours vary","vary somestablishments","close relatively","relatively early","thevening others","others especially","night many","many larger","larger bars","bars also","also restaurants","clubs many","many italian","italian bars","alcoholic drink","free access","usually abundant","abundant buffet","pasta salads","salads vegetables","various appetizers","appetizers file","file pasztecik","pasztecik szczeci","szczeci ski","ski barjpg","barjpg thumb","thumb lefthe","lefthe oldest","oldest bar","bar serving","serving pasztecik","pasztecik szczeci","szczeci skin","skin szczecin","szczecin typical","typical polish","alcoholic drink","bartender accepts","accepts orders","open late","thevening bar","bar mleczny","mleczny literally","literally milk","milk bar","wide range","everyday cuisine","dairy dishes","popular place","many cities","poland usually","usually prices","catering establishments","restaurant another","another type","polish catering","catering facilities","fast service","service bar","bar also","also called","english language","language fast","fast food","food bar","dinner dishes","special type","one type","meal thexample","pasztecik szczeci","szczeci ski","traditional specialty","szczecin served","fast food","food customers","consume pasztecik","pasztecik szczeci","szczeci skin","take ito","ito home","city bars","important part","spanish culture","many bars","plaza outside","weather allows","spanish bars","bars also","also known","wide range","called tapas","two ways","ways either","charged independently","independently either","either case","usually clearly","clearly indicated","bar customers","wall information","information menus","price lists","anti smoking","smoking law","effect january","indoor areas","areas closed","closed commercial","state owned","owned facilities","smoke free","country withe","withe highest","highest ratiof","ratiof bars","bars population","almost bars","bars per","per thousand","thousand inhabitants","times uk","times germany","theuropean union","word bar","spain however","spanish people","meeting place","alcoholic beverages","result children","normally allowed","see families","week ends","small towns","bar may","may constitute","social events","events people","people go","bars including","including seniors","children alike","alike united","united kingdom","kingdom file","file chapel","chapel bar","wells geographorguk","geographorguk jpg","thumb uprighthe","uprighthe chapel","chapel bar","uk bars","bars areither","areither areas","serve alcoholic","alcoholic drinks","drinks within","hotels restaurants","restaurants universities","particular type","serves alcoholic","alcoholic drinksuch","wine bars","bars private","private membership","bars however","main type","establishment selling","selling alcohol","consumption premises","public house","thathey feature","feature loud","loud music","dress code","admissions policy","inner city","city bars","bars generally","door staff","staff athentrance","athentrance bar","bar also","separate drinking","drinking area","area within","recent years","bars often","public bar","tap room","saloon bar","sometimes higher","bars varied","decades many","many pub","pub interiors","single spaces","traditional feel","public house","house one","last dive","dive bar","underneathe kings","kings head","head pub","street soho","soho united","united states","states file","file club","bar anaconda","thumb lefthe","lefthe bar","united states","states legal","legal distinctions","distinctions often","often exist","distinctions vary","even among","among municipalities","municipalities beer","called tavern","legally restricted","possibly wine","cider liquor","liquor bars","bars also","also simply","simply called","called bars","bars also","also sell","sell distilled","distilled beverage","beverage hard","hard liquor","liquor bars","smoking ban","subjecto even","liquor licenses","restauranthat serves","serves liquor","usually made","selling liquor","liquor although","although increasingly","increasingly smoking","include bars","file bar","bar inew","march jpg","bar named","named bar","bar inew","places bars","selling alcoholic","alcoholic beverages","clearly different","liquor store","serve alcohol","rules applied","liquor store","new orleans","las vegas","vegas valley","valley las","las vegas","savannah georgia","georgia open","open containers","alcohol may","usually dependent","open container","container law","pennsylvaniand ohio","ohio bars","bars may","may sell","sell six","six pack","original sealed","sealed containers","license new","new jersey","jersey permits","packaged goods","permits packaged","packaged beer","beer wine","alcoholic beverages","th century","century drinking","drinking establishments","establishments called","called saloons","american old","old westhe","popular establishment","western saloon","saloon many","changed withe","withe times","times newer","newer establishments","western saloon","saloon style","nostalgic effect","american cities","male patrons","usually owned","major breweries","breweries drunkenness","drunkenness fights","powerful symbol","lynn prohibition","prohibition saloons","primary target","temperance movement","anti saloon","saloon league","league founded","united states","states prohibition","repealed president","president franklin","roosevelt asked","states noto","saloons prohibition","prohibition repeal","new york","york times","times december","december many","many irish","british themed","themed pub","united states","continental european","european countries","may pittsburgh","pittsburgh pennsylvania","bars per","per capita","united states","states former","former yugoslavia","bosniand herzegovina","herzegovina croatia","croatia montenegro","serbia modern","modern bars","bars overlap","larger ones","sometimes also","also nightclub","nightclub since","become similar","social function","italy spain","meeting places","city file","table bluff","bluff hotel","table bluff","bluff california","california file","file chiang","chiang mai","mai bars","chiang mai","mai thailand","thailand file","night view","bar located","located opposite","central railroad","railroad station","germany file","file original","original drifter","reef bar","bar wake","original drifter","reef bar","bar wake","wake island","island file","file bar","bristol england","england file","file bartender","jerusalem israel","ethiopia jpg","ethiopia see","see also","also alcohol","alcohol free","free bar","bar beer","beer garden","liquor cabinet","cabinet dive","dive bar","bar drinking","drinking culture","culture honky","honky tonk","tonk hostess","hostess bar","bar izakaya","izakaya juke","juke joint","joint last","last call","call bar","bar term","term list","bartenders list","public house","house topics","topics pub","pub shebeen","shebeen speakeasy","speakeasy tavern","tavern tiki","tiki bar","bar western","western saloon","humorous account","drinking culture","madison avenue","avenue advertising","advertising industry","industry madison","madison avenue","avenue advertising","advertising executives","originally published","hour drink","drink book","executive survival","survival externalinks","externalinks bar","bar database","database category","category types","drinking establishment","establishment category","category bartending","bartending category","category types"],"new_description":"file bar p jpg thumb upright bar switzerland bar_also known saloon tavern sometimes pub club referring actual establishment club etc retail business establishmenthat serves alcoholic_beverage beer wine distilled beverage liquor cocktail beveragesuch mineral water soft_drink often sell snack foodsuch potato chips peanut consumption premises cocktailounge definition free dictionary types pubs may_also serve_food_restaurant menu term bar_also refers area drinks served bars provide bar stools chairs placed atables counters patrons bars offer entertainment live_music often_referred music bars nightclubs types bars range inexpensive dive_bar accessdate elegant places entertainment often accompanying restaurants dining many bars discount happy_hour encourage peak time patronage bars fill capacity sometimes implement cover_charge minimum drink purchase requirement peak hours bars_may bouncer_doorman bouncers ensure patrons legal age drunk patrons collect cover bars often may musical band live band comedian disc jockey playing recorded music term bar derived bar counter specialized counter drinks served patrons may sit stand athe bar served bartender depending size bar approach alcohol may_served athe bar bartenders atables waiting_staff server combination two back bar set shelves glasses bottles behind counter somestablishments back bar decorated glass mirrors lights file cross bar juke_joint gastation melrose louisiana jpg thumb left great_depression era bar melrose louisiana many_different names public drinking spaces throughout history colonial era united_states taverns important meeting_place institutions weak th_century saloons importanto leisure time working poor man club social functions urban working american quarterly vol even establishment uses different name tavern saloon area thestablishment bartender beverages normally called bar sale consumption alcoholic_beverages prohibited first_half th_century several countries_including finland iceland norway united_states united_states illegal bars prohibition united_states_prohibition called speakeasy speakeasies blind pigs blind tigers legal restrictions laws many jurisdictions prohibit minor law minors entering bar legal drinking_age allowed enter case pubs serve_food allowed drink jurisdictions bars cannot serve patron already intoxicated cities towns usually legal restrictions bars_may located types alcohol may_serve bars_may license serve beer wine hard liquor jurisdictions patrons buying alcohol must food jurisdictions bar owners conduct patrons serve liability may arise cases driving influence cause injuries deaths many prohibit bars well possession sale alcohol reasons others including qatar united_arab_emirates allow bars specific areas permit non muslims drink bar owners managers choose bar name cor drink menu lighting elements think attract certain kind patron however limited influence bar originally_intended one demographic profile become_popular another example gay bar gay_lesbian bars lesbian bar dance disco floor might time attract increasingly clientele blues bar may become biker bar patrons bikers cocktailounge upscale bar typically located within hotel restaurant airport full bar serves liquor cocktails wine beer wine bar elegant bar focuses wine rather beer liquor patrons bars_may wine tasting taste wines buy wine bars_also_serve small plates ofood snacks beer bar focuses beer particularly craft wine liquor brew pub site brewery serves craft beers bar american slang_term upscale bar music bar bar presents live_music attraction dive_bar often_referred simply dive informal bar may considered disreputable alcohol_free_bar non_alcoholic bar bar serve_alcoholic_beverages bar grill also restaurant persons may room area room home bar furniture arrangements vary full bars could suited businesses file home bar thumb example typical home bar inew_york_city usa bars categorized kind offer blues live club comedy stand comedy entertainment dance_bar whichave dance_floor patrons dance recorded music typically venue large dance_floor focuses primarily dancing rather professional considered nightclub discoth_que rather bar karaoke bars nightly karaoke entertainment music live_music concerts drag bars specialize drag clothing drag performances entertainment salsa bars patrons dance latin salsa music sports bars furnished sports related theming typically contain large_number television used broadcast major sporting_events patrons topless bars topless dance serve drinks india bars bar india dance_bars distinct type dance_bar discussed bars categorized kind patrons bicycle bars bike congregate found cities large bike communities biker bars bars frequented regions motorcycle club members cop bars duty law_enforcement agents gather college bars usually_located near universities patrons students gay bar gay men women dance socialize lesbian bars mixed gay straight bars mainly targeting bisexual neighborhood bars bar patrons know generally close home frequented regularly old man bars whose clientele mainly long_time male patrons know well since patrons often begin drinking much earlier day consume inexpensive beer whisky may spend much day reading newspaper watching tv bars usually_located waterfront areas near commercial naval bars mostly people sexes meet socialize sports bars sports fans gather like minded fans women bars bar counter file bar hard rock cafe thumb right row distilled beverage liquor bottles behind bar counter file liquor wine bottles behind bar baden thumb liquor wine bottles behind bar baden austria counter drinks served bartender called bar term applied drinking_establishments called bars counter typically stores variety beer wine distilled beverage liquors non_alcoholic ingredients organized facilitate bartender work word bar context already use robert greene robert greene referred tone notable discovery counters serving types_ofood andrink may_also called bars examples usage word include snack_bar sushi bars juice bar juice bar milk_bar dairy bars bars australia major form licensed outlet colonial period present pub local variant thenglish original australian pubs traditionally organised gender areas public_bar open men lounge bar saloon bar served men women distinction gradually eliminated anti discrimination legislation women rights activism broke concept public drinking tonly men two exist one derived public_bar lounge bar upmarket time withe introduction machine gaming machines hotels many lounge bars converted gaming rooms beginning mid formerly strict state liquor licensing_laws progressively relaxed withe pub trading hours parto eliminate social problems associated early closing_times notably clock thriving trade illicit alcohol sales licensed liquor outlets began appear including retail bottle shops counter bottle sales previously available pubs strictly controlled particularly sydney new class licensed premises wine bar appeared alcohol could served provided tandem meal venues became_popular late early many offered becoming important sydney music scene period major australian cities today large bar scene range modes styles catering every cosmopolitan society public drinking began withestablishment colonial taverns bothe us canada term changed public uk term tavern continued used instead pub bothe us canada public drinking_establishments banned prohibition alcohol provincial jurisdiction prohibition repealed province province universal righto consume alcohol males legal age permitted beer parlours common wake prohibition oftenot entertainment playing games music thesestablishments set aside purpose solely consuming alcohol since thend second_world_war exposure roughly one_million canadians public_house traditions common uk servicemen women serving traditions became common canada traditions include drinking dark ales pub social gathering place sexes playing gamesuch pool tavern popular especially working_class people canadian taverns still found remote regions northern canada long tables benches lining sides patrons taverns often order beer large bottles andrink inexpensive bar brand canadian rye whisky provinces taverns used men women even large city like toronto existed thearly canada adopted newer us bar sports bar last decades resulthe term bar come term pub bars usually themed sometimes dance_floor bars dance_floors usually small suburban communities larger cities bars large dance_floors usually referred clubs strictly dancing establishments call pubs often much similar british pub style bars simply tavern often bars pubs canada cater supporters local sporting team usually hockey team difference sports bar pub sports bars focus tv showcasing uniforms equipment etc pubs generally also show games exclusively focus tavern popular thearly american style bars know today became_popular imitation british irish style pubs become_popular adopted names like fox fiddle queen naming trends britain tavern pub style mixed food_andrink establishment generally common bars found legal restrictions bars set canadian provinces territories whichas led great_deal variety provinces restrictive witheir setting strict closing_times banning removal alcohol premises provinces liberal closing_times generally run inova scotia particularly city halifax distinct system gender based laws effect decades taverns bars halls whether exclusively men women invited women vice versa mixed fell wayside issue water led many taverns adding constructed later used parts kitchens upstairs halls plumbing allowed also true former sitting rooms men facilities file bar bus thumb bar coach terminal italy italy bar place similar caf people go morning afternoon usually drink coffee hot chocolate eat kind snack sandwich pastries however kind alcoholic_beverages served opening hours vary somestablishments open early morning close relatively early_thevening others especially nexto theater open night many larger bars_also restaurants clubs many italian bars introduced called time thevening everyone purchases alcoholic drink free access usually abundant buffet pasta salads vegetables various appetizers file pasztecik szczeci ski barjpg thumb lefthe oldest bar serving pasztecik szczeci skin szczecin typical polish alcoholic drink bartender accepts orders bars open late_thevening bar mleczny literally milk_bar bar cafeteria customers wide_range dishes everyday cuisine dairy dishes popular place lunch many cities poland usually prices meals low catering establishments type rooms restaurant another type polish catering facilities bar fast service bar_also called english_language fast_food bar dinner dishes special type bar_one serves one type meal thexample pasztecik szczeci ski traditional specialty city szczecin served fast_food customers consume pasztecik szczeci skin bar take ito home walk city bars common spain form important_part spanish culture spain common town many bars even street bars section street plaza outside tables chairs weather allows spanish bars_also_known serving wide_range sandwiches well called tapas pincho tapas may_offered customers two ways either torder drink cases charged independently either case usually clearly indicated bar customers display wall information menus price lists anti smoking law entered effect january since date prohibited smoke bars restaurants well indoor areas closed commercial state_owned facilities smoke free country withe highest ratiof bars population almost bars per thousand inhabitants times uk ratio times germany alone double number bars oldest members theuropean_union meaning word bar spain however negative inherent word many languages spanish people bar essentially meeting_place necessarily place engage consumption alcoholic_beverages result children normally allowed bars common see families bars week ends thend day small_towns bar may constitute center socialife customary social events people go bars including seniors children alike united_kingdom file chapel bar wells geographorguk_jpg thumb_uprighthe chapel bar england uk bars areither areas serve_alcoholic_drinks within hotels_restaurants universities particular type establishment serves alcoholic_drinksuch wine bars private membership bars however main type establishment selling alcohol consumption premises public_house_pub bars similar nightclubs thathey feature loud music lighting operate dress_code admissions policy inner city bars generally door staff athentrance bar_also separate drinking area within pub recent_years pubs twor bars often public_bar tap room saloon bar lounge decor better prices sometimes higher designations bars varied decades many pub_interiors opened single spaces people loses flexibility traditional feel multi public_house one last dive_bar london underneathe kings head pub street soho united_states file club bar anaconda thumb lefthe bar club anaconda montana united_states legal distinctions often exist restaurants bars even types bars distinctions vary state state even among municipalities beer called tavern pub legally restricted selling beer possibly wine cider liquor bars_also simply called bars_also sell distilled beverage hard liquor bars sometimes smoking ban restaurants subjecto even restaurants liquor licenses distinction restauranthat serves liquor bar usually_made percentage selling liquor although increasingly smoking include bars file bar inew march jpg thumb upright bar named bar inew connecticut places bars prohibited selling alcoholic_beverages go makes clearly different liquor store wineries serve alcohol go rules applied liquor store areasuch new_orleans parts las_vegas valley las_vegas savannah georgia open containers alcohol may prepared go kind restriction usually dependent open container law pennsylvaniand ohio bars_may sell six pack beer go original sealed containers obtaining take license new_jersey permits forms packaged goods sold bars permits packaged beer wine sold time alcoholic_beverages th_century drinking_establishments called saloons american old westhe popular establishment town usually western saloon many western though services features changed withe times newer establishments sometimes built western saloon style nostalgic effect american cities also allowed male patrons usually owned one major breweries drunkenness fights saloon powerful symbol wrong ken lynn prohibition saloons primary target temperance movement anti saloon league founded favor prohibition united_states_prohibition prohibition repealed president franklin roosevelt asked states noto return saloons prohibition repeal ratified new_york times december many irish british themed pub united_states canadand continental_european_countries may pittsburgh pennsylvania bars per capita united_states former yugoslavia bosniand herzegovina croatia montenegro serbia modern bars overlap coffeehouse larger ones sometimes also nightclub since become similar social function bars italy spain greece meeting_places people city file interior seth table bluff hotel saloon table bluff california file chiang mai bars night outside bar chiang mai thailand file night view bar_located opposite central railroad station germany file original drifter reef bar wake original drifter reef bar wake island file bar bar bristol england file bartender bartender work pub jerusalem israel ethiopia jpg bar ethiopia see_also alcohol_free_bar beer_garden liquor cabinet dive_bar drinking_culture honky tonk hostess bar izakaya juke_joint last call bar term list bartenders list public_house_topics pub shebeen speakeasy tavern tiki bar western saloon humorous account drinking_culture madison avenue advertising industry madison avenue advertising executives originally_published hour drink book guide executive survival externalinks bar database category_types drinking_establishment_category bartending category_types restaurants"},{"title":"Bar Facal","description":"de julio centro montevideo uruguay seating capacity reservations no need other locations other information website bar facal bar facal is one of the mostraditional uruguay an coffeehouse located in the corner de julio avenue and y street centro montevideo uruguay founded in by galician manuel facal and his brothers it is the oldest uruguayan downtown bar file carlos gardel en bar facaljpg thumb px left statue of carlos gardel in bar facal file bar facal placajpg thumb px right bar facal the coffeehous which was originally a factory of chocolates and quince candy outside the bar is the sculpture of carlos gardel and a fountain where tourists leave love lock and an open tango show is performed fromonday to saturday at pm in the departmental board of montevideo recognizes the contribution of the bar facal to the national culture and the national gastronomy through a plaque that is in wall there is also a plaque of the mayor s office in medell n in a screen of led was installed the first curved screen of the country whichas mm between pixel and pixel advanced for the time references category organizations established in category coffee culture category drinking establishments category coffeehouses","main_words":["de","julio","centro","montevideo","uruguay","need","locations","information_website","bar","facal","bar","facal","one","uruguay","coffeehouse","located","corner","de","julio","avenue","street","centro","montevideo","uruguay","founded","manuel","facal","brothers","oldest","downtown","bar","file","carlos","bar","thumb","px","left","statue","carlos","bar","facal","file","bar","facal","thumb","px","right","bar","facal","originally","factory","candy","outside","bar","sculpture","carlos","fountain","tourists","leave","love","lock","open","show","performed","saturday","departmental","board","montevideo","recognizes","contribution","bar","facal","national","culture","national","gastronomy","plaque","wall","also","plaque","mayor","office","n","screen","led","installed","first","curved","screen","country","whichas","advanced","time","references_category","organizations_established","category","coffee","culture_category","drinking_establishments","category","coffeehouses"],"clean_bigrams":[["de","julio"],["julio","centro"],["centro","montevideo"],["montevideo","uruguay"],["uruguay","seating"],["seating","capacity"],["capacity","reservations"],["information","website"],["website","bar"],["bar","facal"],["facal","bar"],["bar","facal"],["coffeehouse","located"],["corner","de"],["de","julio"],["julio","avenue"],["street","centro"],["centro","montevideo"],["montevideo","uruguay"],["uruguay","founded"],["manuel","facal"],["downtown","bar"],["bar","file"],["file","carlos"],["thumb","px"],["px","left"],["left","statue"],["bar","facal"],["facal","file"],["file","bar"],["bar","facal"],["thumb","px"],["px","right"],["right","bar"],["bar","facal"],["candy","outside"],["tourists","leave"],["leave","love"],["love","lock"],["departmental","board"],["montevideo","recognizes"],["bar","facal"],["national","culture"],["national","gastronomy"],["first","curved"],["curved","screen"],["country","whichas"],["time","references"],["references","category"],["category","organizations"],["organizations","established"],["category","coffee"],["coffee","culture"],["culture","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","coffeehouses"]],"all_collocations":["de julio","julio centro","centro montevideo","montevideo uruguay","uruguay seating","seating capacity","capacity reservations","information website","website bar","bar facal","facal bar","bar facal","coffeehouse located","corner de","de julio","julio avenue","street centro","centro montevideo","montevideo uruguay","uruguay founded","manuel facal","downtown bar","bar file","file carlos","px left","left statue","bar facal","facal file","file bar","bar facal","right bar","bar facal","candy outside","tourists leave","leave love","love lock","departmental board","montevideo recognizes","bar facal","national culture","national gastronomy","first curved","curved screen","country whichas","time references","references category","category organizations","organizations established","category coffee","coffee culture","culture category","category drinking","drinking establishments","establishments category","category coffeehouses"],"new_description":"de julio centro montevideo uruguay seating_capacity_reservations need locations information_website bar facal bar facal one uruguay coffeehouse located corner de julio avenue street centro montevideo uruguay founded manuel facal brothers oldest downtown bar file carlos bar thumb px left statue carlos bar facal file bar facal thumb px right bar facal originally factory candy outside bar sculpture carlos fountain tourists leave love lock open show performed saturday departmental board montevideo recognizes contribution bar facal national culture national gastronomy plaque wall also plaque mayor office n screen led installed first curved screen country whichas advanced time references_category organizations_established category coffee culture_category drinking_establishments category coffeehouses"},{"title":"Bar joke","description":"a bar joke is a very common and basic type of joke the basic syntax of this type of joke is a man walks into a bar and the initial perception of the joke is that a man is walking into a bar to have a drink buthis only lasts a few seconds as the punchline is quickly uttered this joke has gained an incredible amount of variants over the years it is often used by comedian s and people telling jokes to friends variants the bar joke has a large number of variations the types of variations include pun s or word play s the man walks into a bar and pulls out a tiny piano and a inch pianist followed by any number of different punchlines or man with dyslexia walked into a brassiere bra oreplace the man with woman a famous person people of various occupations animals a duck walks into a bar orders a drink and tells the bartender put it on my bill or inanimate objects a sandwich walks into a bar orders a beer and is told by the bartender we do not serve food here sometimes the unexpected happens a man walks into a bar ouch another major variant involveseveral men walking into the bar together often with related professionsuch as a priest a minister christianity minister and a rabbin effecthis a merger between the bar joke and jokes involving priests ministers and rabbis or buddhist monks etc in other settings this form has become so well known that it is the subject of at least one joke abouthe popularity of the joke itself a priest a minister and a rabbi walk into a bar the bartender looks athem and says what is this a joke according to scott mcneely in the ultimate book of jokes the first bar joke was published in category joke cycles category drinking establishments","main_words":["bar","joke","common","basic","type","joke","basic","type","joke","man","walks","bar","initial","perception","joke","man","walking","bar","drink","buthis","lasts","seconds","quickly","joke","gained","incredible","amount","variants","years","often_used","comedian","people","telling","jokes","friends","variants","bar","joke","large_number","variations","types","variations","include","pun","word","play","man","walks","bar","pulls","tiny","piano","inch","followed","number","different","man","walked","bra","man","woman","famous","person","people","various","occupations","animals","duck","walks","bar","orders","drink","tells","bartender","put","bill","objects","sandwich","walks","bar","orders","beer","told","bartender","serve_food","sometimes","unexpected","happens","man","walks","bar","another","major","variant","men","walking","bar","together","often","related","priest","minister","christianity","minister","merger","bar","joke","jokes","involving","ministers","buddhist","monks","etc","settings","form","become","well_known","subject","least_one","joke","abouthe","popularity","joke","priest","minister","rabbi","walk","bar","bartender","looks","says","joke","according","scott","ultimate","book","jokes","first","bar","joke","published","category","joke","cycles","category_drinking_establishments"],"clean_bigrams":[["bar","joke"],["basic","type"],["basic","type"],["man","walks"],["initial","perception"],["drink","buthis"],["incredible","amount"],["often","used"],["people","telling"],["telling","jokes"],["friends","variants"],["bar","joke"],["large","number"],["variations","include"],["include","pun"],["word","play"],["man","walks"],["tiny","piano"],["famous","person"],["person","people"],["various","occupations"],["occupations","animals"],["duck","walks"],["bar","orders"],["bartender","put"],["sandwich","walks"],["bar","orders"],["serve","food"],["unexpected","happens"],["man","walks"],["another","major"],["major","variant"],["men","walking"],["bar","together"],["together","often"],["minister","christianity"],["christianity","minister"],["bar","joke"],["jokes","involving"],["buddhist","monks"],["monks","etc"],["well","known"],["least","one"],["one","joke"],["joke","abouthe"],["abouthe","popularity"],["rabbi","walk"],["bartender","looks"],["joke","according"],["ultimate","book"],["first","bar"],["bar","joke"],["category","joke"],["joke","cycles"],["cycles","category"],["category","drinking"],["drinking","establishments"]],"all_collocations":["bar joke","basic type","basic type","man walks","initial perception","drink buthis","incredible amount","often used","people telling","telling jokes","friends variants","bar joke","large number","variations include","include pun","word play","man walks","tiny piano","famous person","person people","various occupations","occupations animals","duck walks","bar orders","bartender put","sandwich walks","bar orders","serve food","unexpected happens","man walks","another major","major variant","men walking","bar together","together often","minister christianity","christianity minister","bar joke","jokes involving","buddhist monks","monks etc","well known","least one","one joke","joke abouthe","abouthe popularity","rabbi walk","bartender looks","joke according","ultimate book","first bar","bar joke","category joke","joke cycles","cycles category","category drinking","drinking establishments"],"new_description":"bar joke common basic type joke basic type joke man walks bar initial perception joke man walking bar drink buthis lasts seconds quickly joke gained incredible amount variants years often_used comedian people telling jokes friends variants bar joke large_number variations types variations include pun word play man walks bar pulls tiny piano inch followed number different man walked bra man woman famous person people various occupations animals duck walks bar orders drink tells bartender put bill objects sandwich walks bar orders beer told bartender serve_food sometimes unexpected happens man walks bar another major variant men walking bar together often related priest minister christianity minister merger bar joke jokes involving ministers buddhist monks etc settings form become well_known subject least_one joke abouthe popularity joke priest minister rabbi walk bar bartender looks says joke according scott ultimate book jokes first bar joke published category joke cycles category_drinking_establishments"},{"title":"Bar mleczny","description":"image bar mleczny kalina poznan pomidorowka watrobkajpg thumb right px pig s liver with sauteed onion and tomato soup at a milk bar in pozna bar mleczny literally milk bar in polish language polish though noto be confused withe australian milk bar is a polish form of cafeteria the firstypical milk bar mleczarnia nad widrza ska was established in warsaw by stanis aw d u ewski a member of polish landed gentry although the typical bar mleczny had a menu based on dairy items thesestablishments generally also served other non dairy polish cuisine traditional polish dishes as well the commercial success of the first milk bars encouraged other businessmen to copy this type of restaurant as poland regained her independence after world war i milk bars appeared in most of the country they offered relatively cheap but nourishing food and asuch achieved even more prominence during theconomic depression in the s the role of cheap restaurants carried through world war ii after the fall of germanazi regime poland became a communistate and a satellite of the soviet union the majority of the population was poor contrary tofficial propagandand expensive and even moderately priced restaurants were derided as capitalist during the post war years most restaurants were nationalized and then closedown by the communist authorities in the mid s milk bars were common as a means offering cheap meals to people working in companies that had nofficial canteen place canteen they still served mostly dairy based and vegetarian meals especially during the period of martialaw in poland martialaw in thearly s when meat was rationed the prevalent ideathatime was to provide all people with cheap meals athe place of their work atimes the price of the mealserved in the workplace canteens was included in a worker salary however there was also a large number of people working in smaller firms that had no canteen atheir disposal because of this during the tenure of w adys aw gomu ka the authorities created a network of small self serviceateries the mealsubsidy subsidized by the state were cheap and easily available to anyone apart from raw or processedairy products milk bars also served egg omelet s or egg cutlet s cereal or flour based mealsuch as pierogi after the fall of the communist system and thend of shortageconomy the majority of milk bars went bankrupt as they were superseded by regularestaurant s however some of them were preserved as part of the relics of the welfare state so as to supporthe poorer members of the polish society in early milk bars were seen to make a comeback they became small inexpensive restaurants thatook advantage of welfare state nostalgia while providingood quality food and customer service due to their good locations milk bars often fall victim to gentrification processes and are defended by protest groupsome people prefer milk bars over fast food restaurants because of the homemade style food and low prices a typical three course lunch can cost as little as euro currently every major polish city has at least one milk bar somewhere in the city center they are popular among thelderly students and working class but are generally lookedown upon by other social classesee also polish cuisine greasy spoon externalinks a list of polish bary mleczne nostalgia in a polish milk bar cnn bbc video report about bary mleczne category cafeteria style restaurants category restaurants in poland category types of restaurants","main_words":["image","bar","mleczny","thumb","right","px","pig","liver","onion","tomato","soup","milk_bar","bar","mleczny","literally","milk_bar","polish","language","polish","though","noto","confused","withe","australian","milk_bar","polish","form","cafeteria","milk_bar","nad","established","warsaw","member","polish","landed","gentry","although","typical","bar","mleczny","menu","based","dairy","items","thesestablishments","generally","also_served","non","dairy","polish","cuisine","traditional","polish","dishes","well","commercial","success","first","milk_bars","encouraged","businessmen","copy","type","restaurant","poland","independence","world_war","milk_bars","appeared","country","offered","relatively","cheap","food","asuch","achieved","even","prominence","theconomic","depression","role","cheap","restaurants","carried","world_war","ii","fall","regime","poland","became","satellite","soviet_union","majority","population","poor","contrary","expensive","even","moderately","priced","restaurants","capitalist","post_war","years","restaurants","closedown","communist","authorities","mid","milk_bars","common","means","offering","cheap","meals","people_working","companies","nofficial","canteen","place","canteen","still","served","mostly","dairy","based","vegetarian","meals","especially","period","poland","thearly","meat","prevalent","provide","people","cheap","meals","athe","place","work","atimes","price","workplace","canteens","included","worker","salary","however","also","large_number","people_working","smaller","firms","canteen","atheir","disposal","tenure","w","adys","authorities","created","network","small","self","subsidized","state","cheap","easily","available","anyone","apart","raw","products","milk_bars","also_served","egg","egg","flour","based","mealsuch","fall","communist","system","thend","majority","milk_bars","went","bankrupt","however","preserved","part","relics","welfare","state","supporthe","poorer","members","polish","society","early","milk_bars","seen","make","comeback","became","small","inexpensive","restaurants","thatook","advantage","welfare","state","nostalgia","quality","food","customer_service","due","good","locations","milk_bars","often","fall","victim","processes","defended","protest","people","prefer","milk_bars","fast_food_restaurants","homemade","style","food","low","prices","typical","three","course","lunch","cost","little","euro","currently","every","major","polish","city","least_one","milk_bar","somewhere","city","center","popular_among","students","working_class","generally","upon","social","also","polish","cuisine","greasy_spoon","externalinks","list","polish","nostalgia","polish","milk_bar","cnn","bbc","video","report","category","cafeteria","poland","category_types","restaurants"],"clean_bigrams":[["image","bar"],["bar","mleczny"],["thumb","right"],["right","px"],["px","pig"],["tomato","soup"],["milk","bar"],["bar","mleczny"],["mleczny","literally"],["literally","milk"],["milk","bar"],["polish","language"],["language","polish"],["polish","though"],["though","noto"],["confused","withe"],["withe","australian"],["australian","milk"],["milk","bar"],["polish","form"],["milk","bar"],["polish","landed"],["landed","gentry"],["gentry","although"],["typical","bar"],["bar","mleczny"],["menu","based"],["dairy","items"],["items","thesestablishments"],["thesestablishments","generally"],["generally","also"],["also","served"],["non","dairy"],["dairy","polish"],["polish","cuisine"],["cuisine","traditional"],["traditional","polish"],["polish","dishes"],["commercial","success"],["first","milk"],["milk","bars"],["bars","encouraged"],["world","war"],["milk","bars"],["bars","appeared"],["offered","relatively"],["relatively","cheap"],["asuch","achieved"],["achieved","even"],["theconomic","depression"],["cheap","restaurants"],["restaurants","carried"],["world","war"],["war","ii"],["regime","poland"],["poland","became"],["soviet","union"],["poor","contrary"],["even","moderately"],["moderately","priced"],["priced","restaurants"],["post","war"],["war","years"],["communist","authorities"],["milk","bars"],["means","offering"],["offering","cheap"],["cheap","meals"],["people","working"],["nofficial","canteen"],["canteen","place"],["place","canteen"],["still","served"],["served","mostly"],["mostly","dairy"],["dairy","based"],["vegetarian","meals"],["meals","especially"],["cheap","meals"],["meals","athe"],["athe","place"],["work","atimes"],["workplace","canteens"],["worker","salary"],["salary","however"],["large","number"],["people","working"],["smaller","firms"],["canteen","atheir"],["atheir","disposal"],["w","adys"],["authorities","created"],["small","self"],["easily","available"],["anyone","apart"],["products","milk"],["milk","bars"],["bars","also"],["also","served"],["served","egg"],["flour","based"],["based","mealsuch"],["communist","system"],["milk","bars"],["bars","went"],["went","bankrupt"],["welfare","state"],["supporthe","poorer"],["poorer","members"],["polish","society"],["early","milk"],["milk","bars"],["became","small"],["small","inexpensive"],["inexpensive","restaurants"],["restaurants","thatook"],["thatook","advantage"],["welfare","state"],["state","nostalgia"],["quality","food"],["customer","service"],["service","due"],["good","locations"],["locations","milk"],["milk","bars"],["bars","often"],["often","fall"],["fall","victim"],["people","prefer"],["prefer","milk"],["milk","bars"],["fast","food"],["food","restaurants"],["homemade","style"],["style","food"],["low","prices"],["typical","three"],["three","course"],["course","lunch"],["euro","currently"],["currently","every"],["every","major"],["major","polish"],["polish","city"],["least","one"],["one","milk"],["milk","bar"],["bar","somewhere"],["city","center"],["popular","among"],["working","class"],["also","polish"],["polish","cuisine"],["cuisine","greasy"],["greasy","spoon"],["spoon","externalinks"],["polish","milk"],["milk","bar"],["bar","cnn"],["cnn","bbc"],["bbc","video"],["video","report"],["category","cafeteria"],["cafeteria","style"],["style","restaurants"],["restaurants","category"],["category","restaurants"],["poland","category"],["category","types"]],"all_collocations":["image bar","bar mleczny","px pig","tomato soup","milk bar","bar mleczny","mleczny literally","literally milk","milk bar","polish language","language polish","polish though","though noto","confused withe","withe australian","australian milk","milk bar","polish form","milk bar","polish landed","landed gentry","gentry although","typical bar","bar mleczny","menu based","dairy items","items thesestablishments","thesestablishments generally","generally also","also served","non dairy","dairy polish","polish cuisine","cuisine traditional","traditional polish","polish dishes","commercial success","first milk","milk bars","bars encouraged","world war","milk bars","bars appeared","offered relatively","relatively cheap","asuch achieved","achieved even","theconomic depression","cheap restaurants","restaurants carried","world war","war ii","regime poland","poland became","soviet union","poor contrary","even moderately","moderately priced","priced restaurants","post war","war years","communist authorities","milk bars","means offering","offering cheap","cheap meals","people working","nofficial canteen","canteen place","place canteen","still served","served mostly","mostly dairy","dairy based","vegetarian meals","meals especially","cheap meals","meals athe","athe place","work atimes","workplace canteens","worker salary","salary however","large number","people working","smaller firms","canteen atheir","atheir disposal","w adys","authorities created","small self","easily available","anyone apart","products milk","milk bars","bars also","also served","served egg","flour based","based mealsuch","communist system","milk bars","bars went","went bankrupt","welfare state","supporthe poorer","poorer members","polish society","early milk","milk bars","became small","small inexpensive","inexpensive restaurants","restaurants thatook","thatook advantage","welfare state","state nostalgia","quality food","customer service","service due","good locations","locations milk","milk bars","bars often","often fall","fall victim","people prefer","prefer milk","milk bars","fast food","food restaurants","homemade style","style food","low prices","typical three","three course","course lunch","euro currently","currently every","every major","major polish","polish city","least one","one milk","milk bar","bar somewhere","city center","popular among","working class","also polish","polish cuisine","cuisine greasy","greasy spoon","spoon externalinks","polish milk","milk bar","bar cnn","cnn bbc","bbc video","video report","category cafeteria","cafeteria style","style restaurants","restaurants category","category restaurants","poland category","category types"],"new_description":"image bar mleczny thumb right px pig liver onion tomato soup milk_bar bar mleczny literally milk_bar polish language polish though noto confused withe australian milk_bar polish form cafeteria milk_bar nad established warsaw member polish landed gentry although typical bar mleczny menu based dairy items thesestablishments generally also_served non dairy polish cuisine traditional polish dishes well commercial success first milk_bars encouraged businessmen copy type restaurant poland independence world_war milk_bars appeared country offered relatively cheap food asuch achieved even prominence theconomic depression role cheap restaurants carried world_war ii fall regime poland became satellite soviet_union majority population poor contrary expensive even moderately priced restaurants capitalist post_war years restaurants closedown communist authorities mid milk_bars common means offering cheap meals people_working companies nofficial canteen place canteen still served mostly dairy based vegetarian meals especially period poland thearly meat prevalent provide people cheap meals athe place work atimes price workplace canteens included worker salary however also large_number people_working smaller firms canteen atheir disposal tenure w adys authorities created network small self subsidized state cheap easily available anyone apart raw products milk_bars also_served egg egg flour based mealsuch fall communist system thend majority milk_bars went bankrupt however preserved part relics welfare state supporthe poorer members polish society early milk_bars seen make comeback became small inexpensive restaurants thatook advantage welfare state nostalgia quality food customer_service due good locations milk_bars often fall victim processes defended protest people prefer milk_bars fast_food_restaurants homemade style food low prices typical three course lunch cost little euro currently every major polish city least_one milk_bar somewhere city center popular_among students working_class generally upon social also polish cuisine greasy_spoon externalinks list polish nostalgia polish milk_bar cnn bbc video report category cafeteria style_restaurants_category_restaurants poland category_types restaurants"},{"title":"Barista","description":"image wbc pouring splitjpg thumb competitor athe barista world championships a barista or from the italian for bartender is a person usually a coffeehousemployee who prepares and servespresso based coffee drinks etymology and inflection the word barista is an italian word and in italy a barista is a male or female bartender who typically works behind a counter serving hot drinksuch as espresso cold alcoholic beverage alcoholic and non alcoholic beverages and snacks the native plural in english is baristas while in italian the plural is baristi for masculine baristi barmen bartenders or bariste for feminine bariste barmaids application of the title file gwilym daviesjpg thumb left upright gwilym davies barista gwilym davies world barista championship wbchampion while the title is not regulated most coffee shops use the title to describe the preparer of coffee and operator of an espresso machine file linea doubleespressojpg thumb upright good espresso making is essential to a barista s role file latte at doppio ristretto chiang mai jpg thumb upright latte art is a visible sign of a trained baristand well frothed milk file barista ystad jpg thumb px a barista withis mobilespresso bar in ystad sweden baristas generally operate a commercial espresso machine and theirole is preparing and pulling the shothe degree to which this automated or done manually variesignificantly ranging from push button operation to an involved manual process espresso is a notoriously finicky beverage and good manual espresso making is considered a skilled task further preparation of other beverages particularly milk basedrinksuch as cappuccino s and latte s but also non espresso coffee such as drip or press pot requires additional work and skill for effective frothing pouring and most often latte arthe barista usually has been trained toperate the machine and to prepare the coffee based on the guidelines of the roaster or shop owner while morexperienced baristas may have discretion to vary preparation or experimento make the coffee well there is a series of steps needing attention includingrinding the beans extracting the coffee frothing the milk and pouring beyond the preparation of espresso and other beverages and general customer service skilled baristas acquire knowledge of thentire process of coffee to effectively prepare a desired cup of coffee including maintenance and programming of the machine grinding methods roasting and coffee plant cultivation similar to how a sommelier is familiar withentire process of wine making and consumption a barista can acquire these skills by attending training classes buthey are more commonly learned on the job formal barista competitions originated inorway wendelboe timay the future of the world barista championship coffeegeekcom retrieved on oct and today the most prestigious is the world barista championship s held annually at varied internationalocations baristas worldwide compete though they must first compete in a competition held in their own country to qualify to enter in the wbc these competitions focus on promoting and having peoplengage in the world of coffee preparation each barista representing their country prepares a series of espressos milk drinks and signature drinks and are judged based on the quality and taste preparation is also a very important part of these competitions and it can be most applied in the signature drinks portion of the competition here the baristas are able to show their skills in latte artraining there are schools providing barista training worldwide many of which belong to the specialty coffee association of europe scae proper training of a barista is important for several reasons and include anything from learning the proper technique for pulling espresso shots to customer service the barista guild of america for example is a popular source for american baristas to be properly trained in the art preparation and history of coffee they along with other institutes like it are focused on providing the public with good customer experiences as well as openingateways for new baristas to make connections with others andelve deeper into the world of coffee see also bikini barista soda jerk sommeliereferences category coffee culture category hospitality occupations category food services occupations category baristas","main_words":["image","pouring","thumb","competitor","athe","barista","barista","italian","bartender","person","usually","prepares","based","coffee","drinks","etymology","word","barista","italian","word","italy","barista","male","female","bartender","typically","works","behind","counter","serving","hot","espresso","cold","alcoholic_beverage","alcoholic","non_alcoholic","beverages","snacks","native","plural","english","baristas","italian","plural","bartenders","application","title","file","gwilym","thumb","left","upright","gwilym","davies","barista","gwilym","davies","world","barista","championship","title","regulated","coffee_shops","use","title","describe","coffee","operator","espresso","machine","file","thumb","upright","good","espresso","making","essential","barista","role","file","latte","chiang","mai","jpg","thumb","upright","latte","art","visible","sign","trained","well","milk","file","barista","jpg","thumb","px","barista","withis","bar","sweden","baristas","generally","operate","commercial","espresso","machine","preparing","pulling","degree","automated","done","manually","ranging","push","operation","involved","manual","process","espresso","notoriously","beverage","good","manual","espresso","making","considered","skilled","task","preparation","beverages","particularly","milk","cappuccino","latte","also","non","espresso","coffee","requires","additional","work","skill","effective","pouring","often","latte","arthe","barista","usually","trained","toperate","machine","prepare","coffee","based","guidelines","shop","owner","baristas","may","discretion","vary","preparation","make","coffee","well","series","steps","needing","attention","beans","coffee","milk","pouring","beyond","preparation","espresso","beverages","general","customer_service","skilled","baristas","acquire","knowledge","thentire","process","coffee","effectively","prepare","desired","cup","coffee","including","maintenance","programming","machine","grinding","methods","roasting","coffee","plant","cultivation","similar","sommelier","familiar","process","wine","making","consumption","barista","acquire","skills","attending","training","classes","buthey","commonly","learned","job","formal","barista","competitions","originated","inorway","future","world","barista","championship","retrieved","oct","today","prestigious","world","barista","championship","held","annually","varied","baristas","worldwide","compete","though","must","first","compete","competition","held","country","qualify","enter","competitions","focus","promoting","world","coffee","preparation","barista","representing","country","prepares","series","milk","drinks","signature","drinks","judged","based","quality","taste","preparation","also","important_part","competitions","applied","signature","drinks","portion","competition","baristas","able","show","skills","latte","schools","providing","barista","training","worldwide","many","belong","specialty","coffee","association","europe","proper","training","barista","important","several","reasons","include","anything","learning","proper","technique","pulling","espresso","shots","customer_service","barista","guild","america","example","popular","source","american","baristas","properly","trained","art","preparation","history","coffee","along","institutes","like","focused","providing","public","good","customer","experiences","well","new","baristas","make","connections","others","deeper","world","coffee","see_also","barista","soda","jerk","category","coffee","culture_category","hospitality_occupations_category","occupations_category","baristas"],"clean_bigrams":[["thumb","competitor"],["competitor","athe"],["athe","barista"],["barista","world"],["world","championships"],["person","usually"],["based","coffee"],["coffee","drinks"],["drinks","etymology"],["word","barista"],["italian","word"],["female","bartender"],["typically","works"],["works","behind"],["counter","serving"],["serving","hot"],["hot","drinksuch"],["espresso","cold"],["cold","alcoholic"],["alcoholic","beverage"],["beverage","alcoholic"],["non","alcoholic"],["alcoholic","beverages"],["native","plural"],["title","file"],["file","gwilym"],["thumb","left"],["left","upright"],["upright","gwilym"],["gwilym","davies"],["davies","barista"],["barista","gwilym"],["gwilym","davies"],["davies","world"],["world","barista"],["barista","championship"],["coffee","shops"],["shops","use"],["espresso","machine"],["machine","file"],["thumb","upright"],["upright","good"],["good","espresso"],["espresso","making"],["role","file"],["file","latte"],["chiang","mai"],["mai","jpg"],["jpg","thumb"],["thumb","upright"],["upright","latte"],["latte","art"],["visible","sign"],["milk","file"],["file","barista"],["jpg","thumb"],["thumb","px"],["barista","withis"],["sweden","baristas"],["baristas","generally"],["generally","operate"],["commercial","espresso"],["espresso","machine"],["done","manually"],["involved","manual"],["manual","process"],["process","espresso"],["good","manual"],["manual","espresso"],["espresso","making"],["skilled","task"],["beverages","particularly"],["particularly","milk"],["also","non"],["non","espresso"],["espresso","coffee"],["press","pot"],["pot","requires"],["requires","additional"],["additional","work"],["often","latte"],["latte","arthe"],["arthe","barista"],["barista","usually"],["trained","toperate"],["coffee","based"],["shop","owner"],["baristas","may"],["vary","preparation"],["coffee","well"],["steps","needing"],["needing","attention"],["pouring","beyond"],["general","customer"],["customer","service"],["service","skilled"],["skilled","baristas"],["baristas","acquire"],["acquire","knowledge"],["thentire","process"],["effectively","prepare"],["desired","cup"],["coffee","including"],["including","maintenance"],["machine","grinding"],["grinding","methods"],["methods","roasting"],["coffee","plant"],["plant","cultivation"],["cultivation","similar"],["wine","making"],["attending","training"],["training","classes"],["classes","buthey"],["commonly","learned"],["job","formal"],["formal","barista"],["barista","competitions"],["competitions","originated"],["originated","inorway"],["world","barista"],["barista","championship"],["world","barista"],["barista","championship"],["held","annually"],["baristas","worldwide"],["worldwide","compete"],["compete","though"],["must","first"],["first","compete"],["competition","held"],["competitions","focus"],["coffee","preparation"],["barista","representing"],["country","prepares"],["milk","drinks"],["signature","drinks"],["judged","based"],["taste","preparation"],["important","part"],["signature","drinks"],["drinks","portion"],["schools","providing"],["providing","barista"],["barista","training"],["training","worldwide"],["worldwide","many"],["specialty","coffee"],["coffee","association"],["proper","training"],["several","reasons"],["include","anything"],["proper","technique"],["pulling","espresso"],["espresso","shots"],["customer","service"],["barista","guild"],["popular","source"],["american","baristas"],["properly","trained"],["art","preparation"],["institutes","like"],["good","customer"],["customer","experiences"],["new","baristas"],["make","connections"],["coffee","see"],["see","also"],["barista","soda"],["soda","jerk"],["category","coffee"],["coffee","culture"],["culture","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","food"],["food","services"],["services","occupations"],["occupations","category"],["category","baristas"]],"all_collocations":["thumb competitor","competitor athe","athe barista","barista world","world championships","person usually","based coffee","coffee drinks","drinks etymology","word barista","italian word","female bartender","typically works","works behind","counter serving","serving hot","hot drinksuch","espresso cold","cold alcoholic","alcoholic beverage","beverage alcoholic","non alcoholic","alcoholic beverages","native plural","title file","file gwilym","left upright","upright gwilym","gwilym davies","davies barista","barista gwilym","gwilym davies","davies world","world barista","barista championship","coffee shops","shops use","espresso machine","machine file","upright good","good espresso","espresso making","role file","file latte","chiang mai","mai jpg","upright latte","latte art","visible sign","milk file","file barista","barista withis","sweden baristas","baristas generally","generally operate","commercial espresso","espresso machine","done manually","involved manual","manual process","process espresso","good manual","manual espresso","espresso making","skilled task","beverages particularly","particularly milk","also non","non espresso","espresso coffee","press pot","pot requires","requires additional","additional work","often latte","latte arthe","arthe barista","barista usually","trained toperate","coffee based","shop owner","baristas may","vary preparation","coffee well","steps needing","needing attention","pouring beyond","general customer","customer service","service skilled","skilled baristas","baristas acquire","acquire knowledge","thentire process","effectively prepare","desired cup","coffee including","including maintenance","machine grinding","grinding methods","methods roasting","coffee plant","plant cultivation","cultivation similar","wine making","attending training","training classes","classes buthey","commonly learned","job formal","formal barista","barista competitions","competitions originated","originated inorway","world barista","barista championship","world barista","barista championship","held annually","baristas worldwide","worldwide compete","compete though","must first","first compete","competition held","competitions focus","coffee preparation","barista representing","country prepares","milk drinks","signature drinks","judged based","taste preparation","important part","signature drinks","drinks portion","schools providing","providing barista","barista training","training worldwide","worldwide many","specialty coffee","coffee association","proper training","several reasons","include anything","proper technique","pulling espresso","espresso shots","customer service","barista guild","popular source","american baristas","properly trained","art preparation","institutes like","good customer","customer experiences","new baristas","make connections","coffee see","see also","barista soda","soda jerk","category coffee","coffee culture","culture category","category hospitality","hospitality occupations","occupations category","category food","food services","services occupations","occupations category","category baristas"],"new_description":"image pouring thumb competitor athe barista world_championships barista italian bartender person usually prepares based coffee drinks etymology word barista italian word italy barista male female bartender typically works behind counter serving hot drinksuch espresso cold alcoholic_beverage alcoholic non_alcoholic beverages snacks native plural english baristas italian plural bartenders application title file gwilym thumb left upright gwilym davies barista gwilym davies world barista championship title regulated coffee_shops use title describe coffee operator espresso machine file thumb upright good espresso making essential barista role file latte chiang mai jpg thumb upright latte art visible sign trained well milk file barista jpg thumb px barista withis bar sweden baristas generally operate commercial espresso machine preparing pulling degree automated done manually ranging push operation involved manual process espresso notoriously beverage good manual espresso making considered skilled task preparation beverages particularly milk cappuccino latte also non espresso coffee press_pot requires additional work skill effective pouring often latte arthe barista usually trained toperate machine prepare coffee based guidelines shop owner baristas may discretion vary preparation make coffee well series steps needing attention beans coffee milk pouring beyond preparation espresso beverages general customer_service skilled baristas acquire knowledge thentire process coffee effectively prepare desired cup coffee including maintenance programming machine grinding methods roasting coffee plant cultivation similar sommelier familiar process wine making consumption barista acquire skills attending training classes buthey commonly learned job formal barista competitions originated inorway future world barista championship retrieved oct today prestigious world barista championship held annually varied baristas worldwide compete though must first compete competition held country qualify enter competitions focus promoting world coffee preparation barista representing country prepares series milk drinks signature drinks judged based quality taste preparation also important_part competitions applied signature drinks portion competition baristas able show skills latte schools providing barista training worldwide many belong specialty coffee association europe proper training barista important several reasons include anything learning proper technique pulling espresso shots customer_service barista guild america example popular source american baristas properly trained art preparation history coffee along institutes like focused providing public good customer experiences well new baristas make connections others deeper world coffee see_also barista soda jerk category coffee culture_category hospitality_occupations_category food_services occupations_category baristas"},{"title":"Bartender","description":"file robert gold bartenderjpg thumb right a bartender pouring some vodka in to the metal cup of a cocktail shaker file ada coleman small jpg righthumb px ada coleman bartending athe savoy hotel in london circa file bar tender making a classicocktailjpg thumbnail a bartender making a classicocktail a bartender also known as a barkeep barman barmaid bar chef tapster mixologist alcohol server flairman or alcohol chef is a person who formulates and serves alcoholic beverage s behind the bar usually in a licensed bar establishment bartenders also usually maintain the supplies and inventory for the bar a bartender can generally mix classicocktailsuch as a cosmopolitan cocktail cosmopolitan manhattan cocktail manhattan old fashioned and mojito the bartending profession was generally a second occupation used as transitional work for students to gain customer experience or to save money for university fees this however is changing around the world and bartending has become a profession by choice rather thanecessity cocktail competitionsuch as world class and bacardi legacy have recognised talented bartenders in the past decade and these bartenders and otherspread the love of cocktails and hospitality throughouthe world in america where gratuity tiping is a local custom bartenders depend on tips for most of their income bartenders are also usually responsible for confirming that customers meethe legal drinking age requirements before serving them alcoholic beverages in certain countriesuch as the united kingdom and sweden bartenders are legally required to refuse more alcohol to drunk customers united kingdom in the united kingdom bar work is oftenot regarded as a long term profession except if you are also a landlord but more often as a second occupation or transitional work for students to gain customer experience or to save money for university fees asuch it lacks traditional employment protections and therefore has a high turnover the high turnover of staff due to lowages and poor employee benefits results in a shortage of skilled bartenders whereas a career bartender would know drink recipeserving techniques alcohol contents correct gas mixes licensing law and would often have cordial relations with regular customershorterm staff may lack these skillsome pub s prefer experienced staff although pub chains tend to accept inexperienced staff and provide training tipping bartenders in the united kingdom is not considered mandatory but is greatly appreciated by the bartender the appropriate way to tip a bartender in the uk is to say have one for yourself encouraging the bartender to buy themselves a drink with one s money where a bartender may instead opto add a modest amounto a bill to take in cash athend of their shift united states the bureau of labor s data on occupations in the united states including that of bartender publishes a detailedescription of the bartender s typical duties and employment and earning statistics by those so employed with of a bartender s take home pay coming in the form of tips bartenders may attend special schools or learn while on the jobartenders in the united states may work in a large variety of bar establishment bars these include hotel bars restaurant barsports bars gay bars piano bar s andive bar s also growing in popularity is the portable bar which can be moved to different venues and special eventsee also bar back a bartender s assistant hospitality list of bartenders list of public house topics list of restauranterminology tavern references externalinks category bartending category food services occupations category restauranterminology","main_words":["file","robert","gold","thumb","right","bartender","pouring","vodka","metal","cup","cocktail","shaker","file","ada","coleman","small","jpg_righthumb","px","ada","coleman","bartending","athe","savoy","hotel","london","circa","file","bar","tender","making","thumbnail","bartender","making","bartender","also_known","bar","chef","alcohol","server","alcohol","chef","person","serves","alcoholic_beverage","behind","bar","usually","licensed","also","usually","maintain","supplies","inventory","bar","bartender","generally","mix","cosmopolitan","cocktail","cosmopolitan","manhattan","cocktail","manhattan","old_fashioned","bartending","profession","generally","second","occupation","used","work","students","gain","customer","experience","save","money","university","fees","however","changing","around","world","bartending","become","profession","choice","rather","cocktail","world","class","legacy","recognised","talented","bartenders","past","decade","bartenders","love","cocktails","hospitality","throughouthe_world","america","gratuity","local","custom","bartenders","depend","tips","income","bartenders","also","usually","responsible","customers","meethe","legal","drinking_age","requirements","serving","alcoholic_beverages","certain","countriesuch","united_kingdom","sweden","bartenders","legally","required","refuse","alcohol","drunk","customers","united_kingdom","united_kingdom","bar","work","oftenot","regarded","long_term","profession","except","also","landlord","often","second","occupation","work","students","gain","customer","experience","save","money","university","fees","asuch","lacks","traditional","employment","protections","therefore","high","turnover","high","turnover","staff","due","lowages","poor","employee","benefits","results","shortage","skilled","bartenders","whereas","career","bartender","would","know","drink","techniques","alcohol","contents","correct","gas","licensing","law","would","often","relations","regular","staff","may","lack","pub","prefer","experienced","staff","although","pub_chains","tend","accept","staff","provide","training","tipping","bartenders","united_kingdom","considered","mandatory","greatly","appreciated","bartender","appropriate","way","tip","bartender","uk","say","one","encouraging","bartender","buy","drink","one","money","bartender","may","instead","add","modest","bill","take","cash","athend","shift","united_states","bureau","labor","data","occupations","united_states","including","bartender","publishes","bartender","typical","duties","employment","earning","statistics","employed","bartender","take","home","pay","coming","form","tips","bartenders","may","attend","special","schools","learn","united_states","may","work","large","variety","bar_establishment_bars","include","hotel","bars","restaurant","bars","gay","bars","piano","bar","bar_also","growing","popularity","portable","bar","moved","different","venues","special","also","bar","back","bartender","assistant","hospitality","list","bartenders","list","public_house_topics","list","restauranterminology","tavern","references_externalinks","category","bartending","category_food_services","occupations_category_restauranterminology"],"clean_bigrams":[["file","robert"],["robert","gold"],["thumb","right"],["bartender","pouring"],["metal","cup"],["cocktail","shaker"],["shaker","file"],["file","ada"],["ada","coleman"],["coleman","small"],["small","jpg"],["jpg","righthumb"],["righthumb","px"],["px","ada"],["ada","coleman"],["coleman","bartending"],["bartending","athe"],["athe","savoy"],["savoy","hotel"],["london","circa"],["circa","file"],["file","bar"],["bar","tender"],["tender","making"],["bartender","making"],["bartender","also"],["also","known"],["bar","chef"],["alcohol","server"],["alcohol","chef"],["serves","alcoholic"],["alcoholic","beverage"],["bar","usually"],["licensed","bar"],["bar","establishment"],["establishment","bartenders"],["bartenders","also"],["also","usually"],["usually","maintain"],["generally","mix"],["cosmopolitan","cocktail"],["cocktail","cosmopolitan"],["cosmopolitan","manhattan"],["manhattan","cocktail"],["cocktail","manhattan"],["manhattan","old"],["old","fashioned"],["bartending","profession"],["second","occupation"],["occupation","used"],["gain","customer"],["customer","experience"],["save","money"],["university","fees"],["changing","around"],["choice","rather"],["world","class"],["recognised","talented"],["talented","bartenders"],["past","decade"],["hospitality","throughouthe"],["throughouthe","world"],["local","custom"],["custom","bartenders"],["bartenders","depend"],["income","bartenders"],["bartenders","also"],["also","usually"],["usually","responsible"],["customers","meethe"],["meethe","legal"],["legal","drinking"],["drinking","age"],["age","requirements"],["alcoholic","beverages"],["certain","countriesuch"],["united","kingdom"],["sweden","bartenders"],["legally","required"],["drunk","customers"],["customers","united"],["united","kingdom"],["united","kingdom"],["kingdom","bar"],["bar","work"],["oftenot","regarded"],["long","term"],["term","profession"],["profession","except"],["second","occupation"],["gain","customer"],["customer","experience"],["save","money"],["university","fees"],["fees","asuch"],["lacks","traditional"],["traditional","employment"],["employment","protections"],["high","turnover"],["high","turnover"],["staff","due"],["poor","employee"],["employee","benefits"],["benefits","results"],["skilled","bartenders"],["bartenders","whereas"],["career","bartender"],["bartender","would"],["would","know"],["know","drink"],["techniques","alcohol"],["alcohol","contents"],["contents","correct"],["correct","gas"],["licensing","law"],["would","often"],["staff","may"],["may","lack"],["prefer","experienced"],["experienced","staff"],["staff","although"],["although","pub"],["pub","chains"],["chains","tend"],["provide","training"],["training","tipping"],["tipping","bartenders"],["united","kingdom"],["considered","mandatory"],["greatly","appreciated"],["appropriate","way"],["bartender","may"],["may","instead"],["cash","athend"],["shift","united"],["united","states"],["united","states"],["states","including"],["bartender","publishes"],["typical","duties"],["earning","statistics"],["take","home"],["home","pay"],["pay","coming"],["tips","bartenders"],["bartenders","may"],["may","attend"],["attend","special"],["special","schools"],["united","states"],["states","may"],["may","work"],["large","variety"],["bar","establishment"],["establishment","bars"],["include","hotel"],["hotel","bars"],["bars","restaurant"],["bars","gay"],["gay","bars"],["bars","piano"],["piano","bar"],["also","growing"],["portable","bar"],["different","venues"],["also","bar"],["bar","back"],["assistant","hospitality"],["hospitality","list"],["bartenders","list"],["public","house"],["house","topics"],["topics","list"],["restauranterminology","tavern"],["tavern","references"],["references","externalinks"],["externalinks","category"],["category","bartending"],["bartending","category"],["category","food"],["food","services"],["services","occupations"],["occupations","category"],["category","restauranterminology"]],"all_collocations":["file robert","robert gold","bartender pouring","metal cup","cocktail shaker","shaker file","file ada","ada coleman","coleman small","small jpg","jpg righthumb","righthumb px","px ada","ada coleman","coleman bartending","bartending athe","athe savoy","savoy hotel","london circa","circa file","file bar","bar tender","tender making","bartender making","bartender also","also known","bar chef","alcohol server","alcohol chef","serves alcoholic","alcoholic beverage","bar usually","licensed bar","bar establishment","establishment bartenders","bartenders also","also usually","usually maintain","generally mix","cosmopolitan cocktail","cocktail cosmopolitan","cosmopolitan manhattan","manhattan cocktail","cocktail manhattan","manhattan old","old fashioned","bartending profession","second occupation","occupation used","gain customer","customer experience","save money","university fees","changing around","choice rather","world class","recognised talented","talented bartenders","past decade","hospitality throughouthe","throughouthe world","local custom","custom bartenders","bartenders depend","income bartenders","bartenders also","also usually","usually responsible","customers meethe","meethe legal","legal drinking","drinking age","age requirements","alcoholic beverages","certain countriesuch","united kingdom","sweden bartenders","legally required","drunk customers","customers united","united kingdom","united kingdom","kingdom bar","bar work","oftenot regarded","long term","term profession","profession except","second occupation","gain customer","customer experience","save money","university fees","fees asuch","lacks traditional","traditional employment","employment protections","high turnover","high turnover","staff due","poor employee","employee benefits","benefits results","skilled bartenders","bartenders whereas","career bartender","bartender would","would know","know drink","techniques alcohol","alcohol contents","contents correct","correct gas","licensing law","would often","staff may","may lack","prefer experienced","experienced staff","staff although","although pub","pub chains","chains tend","provide training","training tipping","tipping bartenders","united kingdom","considered mandatory","greatly appreciated","appropriate way","bartender may","may instead","cash athend","shift united","united states","united states","states including","bartender publishes","typical duties","earning statistics","take home","home pay","pay coming","tips bartenders","bartenders may","may attend","attend special","special schools","united states","states may","may work","large variety","bar establishment","establishment bars","include hotel","hotel bars","bars restaurant","bars gay","gay bars","bars piano","piano bar","also growing","portable bar","different venues","also bar","bar back","assistant hospitality","hospitality list","bartenders list","public house","house topics","topics list","restauranterminology tavern","tavern references","references externalinks","externalinks category","category bartending","bartending category","category food","food services","services occupations","occupations category","category restauranterminology"],"new_description":"file robert gold thumb right bartender pouring vodka metal cup cocktail shaker file ada coleman small jpg_righthumb px ada coleman bartending athe savoy hotel london circa file bar tender making thumbnail bartender making bartender also_known bar chef alcohol server alcohol chef person serves alcoholic_beverage behind bar usually licensed bar_establishment_bartenders also usually maintain supplies inventory bar bartender generally mix cosmopolitan cocktail cosmopolitan manhattan cocktail manhattan old_fashioned bartending profession generally second occupation used work students gain customer experience save money university fees however changing around world bartending become profession choice rather cocktail world class legacy recognised talented bartenders past decade bartenders love cocktails hospitality throughouthe_world america gratuity local custom bartenders depend tips income bartenders also usually responsible customers meethe legal drinking_age requirements serving alcoholic_beverages certain countriesuch united_kingdom sweden bartenders legally required refuse alcohol drunk customers united_kingdom united_kingdom bar work oftenot regarded long_term profession except also landlord often second occupation work students gain customer experience save money university fees asuch lacks traditional employment protections therefore high turnover high turnover staff due lowages poor employee benefits results shortage skilled bartenders whereas career bartender would know drink techniques alcohol contents correct gas licensing law would often relations regular staff may lack pub prefer experienced staff although pub_chains tend accept staff provide training tipping bartenders united_kingdom considered mandatory greatly appreciated bartender appropriate way tip bartender uk say one encouraging bartender buy drink one money bartender may instead add modest bill take cash athend shift united_states bureau labor data occupations united_states including bartender publishes bartender typical duties employment earning statistics employed bartender take home pay coming form tips bartenders may attend special schools learn united_states may work large variety bar_establishment_bars include hotel bars restaurant bars gay bars piano bar bar_also growing popularity portable bar moved different venues special also bar back bartender assistant hospitality list bartenders list public_house_topics list restauranterminology tavern references_externalinks category bartending category_food_services occupations_category_restauranterminology"},{"title":"Beach","description":"file man o war cove near lulworth dorset arpjpg thumb px right a beach is a landform along a body of water it usually consists of loose particles which are often composed of rock geology rock such asand gravel shingle beach shingle pebble s or cobblestone s the particles composing a beach are occasionally biological in origin such as mollusc shell s or coralline algae some beaches have man made infrastructure such as lifeguard posts changing rooms and showers they may also have hospitality venuesuch as resorts camps hotels and restaurants nearby wild beaches also known as undeveloped or undiscovered beaches are not developed in this manner wild beaches can be valued for their untouched beauty and preserved nature beaches typically occur in areas along the coast where wind wave or ocean current action deposition geology deposits and reworksediments file beach sectionsjpg thumb px the four sections of most beaches although the shore seashore is most commonly associated withe word beaches are also found by lakes and alongside large rivers beach may refer to small systems where rock material moves onshore offshore or alongshore by the forces of waves and currents or geological units of considerable size the former are described in detail below the larger geological units are discussed elsewhere under shoal bars there are several conspicuous parts to a beach that relate to the processes that form and shape ithe part mostly above water depending upon tide and more or less actively influenced by the waves at some point in the tide is termed the beach berm the berm is the deposit of material comprising the active shoreline the berm has a crestop and a face the latter being the slope leading down towards the water from the crest athe very bottom of the face there may be a trough and further seaward one or more long shore barslightly raised underwater embankments formed where the waves firstarto break the sandeposit may extend well inland from the berm crest where there may bevidence of one or more older crests the storm beach resulting from very large storm waves and beyond the influence of the normal waves at some pointhe influence of the waves even storm waves on the material comprising the beach stops and if the particles are small enough sand size or smaller windshape the feature where wind is the force distributing the grains inland the deposit behind the beach becomes a dune these geomorphic features compose what is called the beach profile the beach profile changeseasonally due to the change in wavenergy experienceduring summer and winter months in temperate areas where summer is characterised by calmer seas and longer periods between breaking wave crests the beach profile is higher in summer the gentle wave action during thiseason tends to transport sediment up the beach towards the berm where it is deposited and remains while the waterecedes onshore winds carry it further inland forming and enhancing dunes conversely the beach profile is lower in the storm season winter in temperate areas due to the increased wavenergy and the shorter periods between breaking wave crests higher energy waves breaking in quick succession tend to mobilisediment from the shallows keeping it in suspension where it is prone to be carried along the beach by longshore currents or carried outo sea to form longshore bars especially if the longshore current meets an outflow from a river or flooding stream the removal of sediment from the beach berm andune thus decreases the beach profile in tropics tropical areas the storm season tends to be during the summer months with calmer weather commonly associated withe winter season if storms coincide with unusually high tides or with a freak wavevent such as a tidal surge or tsunami which causesignificant coastal flooding substantial quantities of material may beroded from the coastal plain or dunes behind the berm by receding water this flow may alter the shape of the coastlinenlarge the mouths of rivers and create new deltas athe mouths of streams that had not been powerful enough tovercome longshore movement of sedimenthe line between beach andune is difficulto define in the field over any significant period of time sediment is always being exchanged between them the drift line the high point of material deposited by waves is one potential demarcation this would be the point at which significant wind movement of sand could occur since the normal waves do not wethe sand beyond this area however the drift line is likely to move inland under assault by storm wavesblair andawn witherington florida s living beaches a guide for the curious beachcomber pineapple press beaches and recreation file llandudnojpeg thumb left px a popular victorian seaside resort llandudno file brighton the front and the chain pier seen in the distancejpg thumb right brighton the front and the chain pier seen in the distancearly th century the development of the beach as a popular leisuresort from the mid th century was the first manifestation of what is now the global tourist industry the first seaside resorts were opened in the th century for the aristocracy who began to frequenthe seaside as well as then fashionable spa towns forecreation and health one of thearliest such seaside resorts wascarborough north yorkshire scarborough in yorkshire during the s it had been a fashionable spa town since a stream of acidic water was discovered running from one of the cliffs to the south of the town in the th century the first rolling bathing machine s were introduced by the opening of the resort in brighton and its reception of patronage royal patronage from kingeorge iv extended the seaside as a resort for health and pleasure to the much larger london market and the beach became a centre for upper class pleasure and frivolity this trend was praised and artistically elevated by the new romanticism romantic ideal of the picturesque landscape jane austen s unfinished novel sanditon is an example of that later victoria of the united kingdom queen victoria s long standing patronage of the isle of wight and ramsgate in kent ensured that a seaside residence was considered as a highly fashionable possession for those wealthy enough to afford more than one home seaside resorts for the working class file the promenade blackpoolancashirengland ca jpg thumblackpool promenade c thextension of this form of leisure to the middle and working class began withe development of the railway s in the s which offered cheap and affordable fares to fast growing resortowns in particular the completion of a blackpool branch line branch line to the small seaside town blackpool from poultron led to a sustained economic andemographic boom a sudden influx of visitors arriving by rail provided the motivation for entrepreneurs to build accommodation and create new attractions leading to more visitors and a rapid cycle of growthroughouthe s and s the growth was intensified by the practice among the lancashire cotton mill owners of closing the factories for a week everyear to service and repair machinery these became known as wakes week s each town s mills would close for a different week allowing blackpool to manage a steady and reliable stream of visitors over a prolonged period in the summer a prominent feature of the resort was the promenade and the pleasure pier s where an eclectic variety of performances vied for the people s attention in the north pier blackpool north pier in blackpool was completed rapidly becoming a centre of attraction for elite visitors central pier blackpool central pier was completed in with a theatre and a large open air dance floor many of the popular beach resorts werequipped with bathing machine s becauseven the all covering swimsuit beachwear of the period was considered immodest by thend of the century thenglish coastline had over large resortownsome with populations exceeding expansion around the world file monte carlo casino seaside facade before bonillo p jpg thumb right seaside facade at monte carlo s the development of the seaside resort abroad wastimulated by the well developed english love of the beach the french rivieralongside the mediterranean had already become a popular destination for the british upper class by thend of the th century in the first railway to nice was completed making the rivieraccessible to visitors from all over europe by residents oforeign enclaves inice most of whom were british numbered the coastline became renowned for attracting the royalty of europe including victoria of the united kingdom queen victoriand edward vii of the united kingdom king edward vii michael nelson queen victoriand the discovery of the riviera tauris parke paperbacks continental european attitudes towards gambling and nakedness tended to be more lax than in britain so british and french entrepreneurs were quick to exploithe possibilities in the prince of monaco charles iii prince of monaco charles iii and fran ois blanc a french businessman arranged for steamship s and carriages to take visitors from nice to monaco where large luxury hotels gardens and casinos were builthe place was renamed monte carlo commercial sea bathing spread to the united states and parts of the british empire by thend of the th century by the late s henry flagler developed the florida east coast railway which linked the coastal sea resorts developing at st augustine fl and miami beach fl to winter travelers from the northern united states and canada on theast coast railway by thearly th century surfing was developed in hawaii and australiand then moving to southern california by thearly s by the s cheap and affordable air travel was the catalyst for the growth of a truly global tourismarket which benefited areasuch as the mediterranean australia south africand the coastal sun belt regions of the united states file joaqu n sorolla verano jpg thumb summer joaqu n sorolla file cousins at lincoln city beachjpg thumb children walking on a beaches can be popular on warm sunny days in the victorian era many popular seaside resort beach resorts werequipped with bathing machine s becauseven the all covering swimsuit beachwear of the period was considered immodesthisocial standard still prevails in many muslim countries athe other end of the spectrum are toplessness topfree beaches and nude beach es where clothing is optional or not allowed in most countriesocial norms are significantly different on a beach in hot weather compared to adjacent areas where similar behavior might not be tolerated and might even be prosecuted in more than thirty countries in europe south africa new zealand canada costa rica south americand the caribbean the best recreational beaches are awarded blue flag beach blue flag status based on such criterias water quality and safety provision subsequent loss of thistatus can have a severeffect on tourism revenues beaches are often dumpingrounds for waste and litter necessitating the use of beach cleaner s and other cleanuprojects more significantly many beaches are a discharge zone for untreated sewage in most underdeveloped countries even in developed countries beach closure is an occasional circumstance due to sanitary sewer overflow in these cases of marine discharge waterborne disease from feces fecal pathogen s and contamination of certain marine species are a frequent outcome artificial beachesome beaches are artificial they areither permanent or temporary for examplesee monaco paris copenhagen rotterdam nottingham toronto beaches of hong kong hong kong list of beaches of singapore and port of tianjin dongjiang port area tianjin the soothing qualities of a beach and the pleasant environment offered to the beachgoer areplicated in artificial beachesuch as beach style pools with zero depth entry and wave pools that recreate the natural waves pounding upon a beach in a zero entry swimming pool zero depth entry pool the bottom surface slopes gradually from above water down to depth another approach involveso called urban beach es a form of public park becoming common in large cities urban beaches attempto mimic natural beaches with fountains that imitate surf and mask city noises and in some cases can be used as a play park beach nourishment involves pumping sand onto beaches to improve their health beach nourishment is common for major beach cities around the world however the beaches that have beenourished can still appear quite natural and often many visitors are unaware of the works undertaken to supporthealth of the beach such beaches are oftenot recognized by consumers as artificial the surfrider foundation has debated the merits of artificial reef s with members torn between their desire to support natural coastal environments and opportunities to enhance the quality of surfing wavesimilar debatesurround beach nourishment and snow cannon in sensitivenvironments restrictions on access public access to beaches is restricted in some parts of the world for example most beaches on the jersey shore arestricted to people who can purchase beach tag samodio aimee what are beach tags visitnjshorecom some beaches also restrict dogs for some periods of the year private beaches also private beachesuch as those along the shores may belong to the neighborhood associationearby signs are usually posted thentrance a permit or special use occasion event may be granted upon executing the proper channels to legally obtain one public beaches public access to beaches is protected by law in the ustate of oregon thanks to a state law the oregon beach bill which guaranteed public access from the columbia river to the california state line so thathe public may have the free and uninterrupted use beach formation beaches are the result of wave action by which wave s or ocean currents move sand or other loosediment s of which the beach is made as these particles are held in suspension chemistry suspension alternatively sand may be moved by saltation geology saltation a bouncing movement of large particles beach materials come from erosion of rocks offshore as well as from headland erosion and slumping producing deposits of scree some of the whitest sand in the world along florida s emerald coast comes from therosion of quartz in the appalachian mountains a reef coral reef offshore is a significant source of sand particlesome species ofish that feed on algae attached to coral outcrops and rocks can create substantial quantities of sand particles over their lifetime as they nibble during feeding digesting the organic matter andiscarding the rock and coral particles which pass through their digestive tracts the composition of the beach depends upon the nature and quantity of sediments upstream of the beach and the speed oflow and turbidity of water and wind sediments are moved by moving water and wind according to their particle size and state of compaction particles tend to settle and compact in still water once compacted they are moresistanto erosion established vegetation especially species with complex network root systems will resist erosion by slowing the fluid flow athe surface layer when affected by moving water or wind particles that areroded and held in suspension will increase therosive power of the fluid that holds them by increasing the average density viscosity and volume of the moving fluid the nature of sediments found on a beach tends to indicate thenergy of the waves and wind in the locality coastlines facing very energetic wind and wave systems will tend to hold only large rocks asmaller particles will be held in suspension in the turbid water column and carried to calmer areas by longshore currents and tides coastlines that are protected from waves and winds will tend to allow finer sedimentsuch as clays and mud to precipitate creating mud flats and mangrove forests the shape of a beach depends on whether the waves are constructive or destructive and whether the material isand or shingle waves are constructive if the period between their wave crests is long enough for the breaking water to recede and the sedimento settle before the succeeding wave arrives and breaks fine sedimentransported from lower down the beach profile will compact if the receding water percolates or soaks into the beach compacted sediment is moresistanto movement by turbulent water from succeeding waves conversely waves are destructive if the period between the wave crests ishort sedimenthat remains in suspension when the following wave crest arrives will not be able to settle and compact and will be more susceptible to erosion by longshore currents and receding tides constructive waves move material up the beach while destructive waves move the material down the beach during seasons when destructive waves are prevalenthe shallows will carry an increased load of sediment and organic matter in suspension sandy beaches the turbulent backwash of destructive waves removes material forming a gently sloping beach on pebble and shingle beaches the swash is dissipated more quickly because the large particle size allows greater percolation thereby reducing the power of the backwash and the beach remainsteep compacted fine sediments will form a smooth beach surface that resists wind and waterosion during hot calm seasons a crust may form on the surface of ocean beaches as theat of the sun evaporates the water leaving the salt which crystallises around the sand particles this crust forms an additional protective layer that resists wind erosion unless disturbed by animals or dissolved by the advancing tide beach cusps and horns form where incoming waves dividepositing sand as horns and scouring out sand to form cusps this forms the uneven face on some sand shoreline s beach erosion and accretionatural erosion and accretion beaches are changed in shape chiefly by the movement of water and wind any weather eventhat is associated with turbid or fast flowing water or high winds will erodexposed beaches longshore currents will tend to replenish beach sediments and repair storm damage tidal waterways generally change the shape of their adjacent beaches by small degrees with every tidal cycle over time these changes can become substantialeading to significant changes in the size and location of the beach effects on flora changes in the shape of the beach may undermine the roots of large trees and other flora many beach adapted speciesuch as coconut palms have a fine root system and large root ball which tends to withstand wave and wind action and tends to stabilize beaches better than other trees with a lesseroot ball effects on adjacent land erosion of beaches can expose less resilient soils and rocks to wind and wave action leading to undermining of coastal headlands eventually resulting in catastrophicollapse of large quantities of overburden into the shallows this material may be distributed along the beach front leading to a change in the habitat asea grasses and corals in the shallows may be buried or deprived of light and nutrients manmaderosion and accretion coastal areasettled by man inevitably become subjecto theffects of man made structures and processes over long periods of time these influences may substantially alter the shape of the coastline and the character of the beach destruction oflora beach front flora plays a majorole in stabilizing the foredunes and preventing beachead erosion and inland movement of dunes iflora with network root systems creepers grasses and palms are able to becomestablished they provide an effective coastal defense as they trap sand particles and rainwater and enrich the surface layer of the dunes allowing other plant species to becomestablished they also protecthe berm from erosion by high winds freak waves and subsiding flood waters over long periods of time well stabilized foreshore areas will tend to accrete while unstabilized foreshores will tend to erode leading to substantial changes in the shape of the coastline these changes usually occur over periods of manyears freak waveventsuch as tsunami tidal waves and storm surges may substantially alter the shape profile and location of a beach within hours destruction oflora on the berm by the use of herbicides excessive pedestrian or vehicular traffic or disruption to fresh water flows may lead to erosion of the berm andunes while the destruction oflora may be a gradual process that is imperceptible to regular beach users it often becomes immediately apparent after storms associated withigh winds and freak wavevents that can rapidly move large volumes of exposed and unstable sandepositing them further inland or carrying them out into the permanent water forming offshore bars lagoons or increasing the area of the beach exposed at low tide large and rapid movements of exposed sand can bury and smother flora in adjacent areas aggravating the loss of habitat for faunand enlarging the area of instability if there is an adequate supply of sand weather conditions do not allow vegetation to recover and stabilize the sediment wind blown sand can continue to advancengulfing and permanently altering downwind landscapesediment moved by waves oreceding flood waters can be deposited in coastal shallows engulfing reed beds and changing the character of underwater florand fauna in the coastal shallows file hidden beach jpg thumb right px hidden beach in southern croatia burning or clearance of vegetation the land adjacento the beachead for farming and residential development changes the surface wind patterns and exposes the surface of the beach to wind erosion farming and residential development are also commonly associated with changes in local surface water flows if these flows are concentrated in storm water drains emptying onto the beachead they may erode the beach creating a lagoon or delta dense vegetation tends to absorb rainfall reducing the speed of runoff and releasing it over longer periods of time destruction by burning or clearance of the natural vegetation tends to increase the speed and erosive power of runoffrom rainfall this runoff will tend to carry more silt and organic matter from the land onto the beach and into the sea if the flow is constant runoffrom cleared land arriving athe beachead will tend to deposithis material into the sand changing its color odor and fauna creation of beach access points the concentration of pedestriand vehicular traffic accessing the beach forecreational purposes may cause increased erosion athe access points if measures are notaken to stabilize the beach surface above high water mark recognition of the dangers of loss of beach front flora has caused many local authorities responsible for managing coastal areas to restrict beach access points by physical structures or legal sanctions and fence offoredunes in an efforto protecthe flora these measures are often associated withe construction of structures athese access points to allow traffic to pass over or through the dunes without causing further damage concentration of runoff beaches provide a filter forunoffrom the coastal plain if the runoff is naturally dispersed along the beach water borne silt and organic matter will be retained on the land will feed the flora in the coastal area runoff that is dispersed along the beach will tend to percolate through the beach and may emerge from the beach at low tide the retention of the fresh water may also help to maintain underground watereserves and will resist salt water incursion if the surface flow of the runoff is diverted and concentrated by drains that create constant flows over the beach above the sea oriver level the beach will beroded and ultimately form an inlet unless longshore flows deposit sediments to repair the breach onceroded an inlet may allow tidal inflows of salt water to pollute areas inland from the beach and may also affecthe quality of underground water supplies and theight of the water table deprivation of runoff some flora naturally occurring on the beachead requires fresh waterunoffrom the landiversion ofresh waterunoff into drains may deprive these plants of their water supplies and allow sea water incursion increasing the saltiness of the ground water species that are not able to survive in salt water may die and be replaced by mangroves or other species adapted to salty environments inappropriate beach nourishment beach nourishment is the importing andeposition of sand or other sediments in an efforto restore a beach that has been damaged by erosion beach nourishment often involves excavation of sediments from riverbeds or sand quarries this excavated sediment may be substantially different in size and appearance to the naturally occurring beach sand in extreme cases beach nourishment may involve placement of large pebbles orocks in an efforto permanently restore a shoreline subjecto constant erosion and loss oforeshore this often required where the flow of new sediment caused by the longshore current has been disrupted by construction of harbors breakwaters causeways or boat ramps creating new current flows that scour the sand from behind these structures andeprive the beach of restorative sediments if the causes of therosion are not addressed beach nourishment can become a necessary and permanent feature of beach maintenance during beach nourishment activities care must be taken to place new sedimentso thathe new sediments compact and stabilize before aggressive wave or wind action can erode thematerial that is concentrated too far down the beach may form a temporary groyne that will encourage scouring behind it sediments that are too fine or too light may beroded before they have compacted or been integrated into thestablished vegetation foreign unwashed sediments may introduce flora or fauna that are not usually found in that locality brighton beach on the south coast of england is a shingle beach that has beenourished with very large pebbles in an efforto withstand erosion of the upper area of the beach these large pebbles made the beach unwelcoming for pedestrians for a period of time until natural processes integrated the naturally occurring shingle into the pebble base beach access design file art ibizajpg thumb a siren mythology siren created with sand in the beach of santa eul ria des riu spain beach access is an important consideration where substantial numbers of pedestrians or vehicles require access to the beach allowing random access across delicate foredunes iseldom considered good practice as it is likely to lead to destruction oflorand consequent erosion of the fore dunes a well designed beach accesshould provide a durable surface able to withstand the traffic flow aesthetically complementhe surrounding structures and naturalandforms be located in an area that is convenient for users and consistent with safe traffic flows be scaled to match the traffic flow ie wide and strong enough to safely carry the size and quantity of pedestrians and vehicles intended to use it be maintained appropriately and be signed and lito discourage beach users from creating their own alternative crossings that may be more destructive to the beachhead concrete ramp or steps a concrete ramp should follow the natural profile of the beach to prevent it from changing the normal flow of waves longshore currents water and wind a ramp that is below the beach profile will tend to become buried and cease to provide a good surface for vehicular traffic a ramp or stair that protrudes above the beach profile will tend to disrupt longshore currents creating deposits in front of the ramp and scouring behind concrete ramps are the most expensivehicular beach accesses to construct requiring use of a quick drying concrete or a coffer dam to protecthem from tidal water during the concrete curing process concrete is favored where traffic flows are heavy and access is required by vehicles that are not adapted to soft sand eg road registered passenger vehicles and boatrailers concrete stairs are commonly favored on beaches adjacento population centers where beach users may arrive on the beach in street shoes or where the foreshore roadway isubstantially higher than the beachead and a ramp would be too steep for safe use by pedestrians a composite stairamp may incorporate a central or side stair with one or more ramps allowing pedestrians to lead buggies or small boat dollies onto the beach withouthe aid of a powered vehicle or winch concrete ramps and stepshould be maintained to prevent buildup of moss or algae that may make their wet surfaceslippery andangerous to pedestrians and vehicles corduroy beach ladder a corduroy or beach ladder or board and chain is an array of planks usually hardwood or treated timber laid close together and perpendicular to the direction of traffic flow and secured at each end by a chain or cable to form a pathway oramp over the sandune corduroys are cheap and easy to construct and quick to deploy orelocate they are commonly used for pedestrian access paths and light duty vehicular access ways they naturally conform to the shape of the underlying beach or dune profile and adjust well to moderaterosion especially longshore drift however they can cease to be an effective accessurface if they become buried or undermined by erosion by surface runoff coming from the beachead if the corduroy is not widenough for vehicles using ithe sediment on either side may be displaced creating a spoon drain that acceleratesurface run off and can quickly lead to serious erosion significant erosion of the sediment beside and under the corduroy can render it completely ineffective and make it dangerous to pedestrian users who may fall between the planks fabric ramp fabric ramps are commonly employed by the military for temporary purposes where the underlying sediment istable and hard enough to supporthe weight of the traffic a sheet of porous fabric is laid over the sand to stabilize the surface and prevent vehicles from bogging fabric ramps usually cease to be useful after one tidal cycle as they areasily washed away or buried in sediment foliage ramp a foliage ramp is formed by planting resilient species of hardy plantsuch as grasses over a well formed sediment ramp the plants may be supported while they becomestablished by placement of layers of mesh netting or coarse organic material such as vines or branches this type of ramp is ideally suited for intermittent use by vehicles with a lowheeloading such as dune buggies or agricultural vehicles with large tyres a foliage ramp should require minimal maintenance if initially formed to follow the beach profile and not overused gravel ramp a gravel ramp is formed by excavating the underlying loosediment and filling thexcavation with layers of gravel of graduated sizes as defined by macadam john loudon mcadam the gravel is compacted to form a solid surface according to the needs of the traffic gravel ramps are less expensive to constructhan concrete ramps and are able to carry heavy road traffic provided thexcavation is deep enough to reach solid subsoil gravel ramps are subjecto erosion by water if thedges aretained with boards or walls and the profile matches the surrounding beach profile a gravel ramp may become more stable as finer sediments are deposited by percolating water longest beaches amongsthe world s longest beaches are praia do cassino in brazil ninety mile beach victoria ninety mile beach in victoriaustralia cox s bazar cox s bazar bangladesh unbrokeninety mile beach new zealand mile beach inew zealand fraser island beach about in queensland australia troia sines beach in portugal the jersey shore kmiles and long beach washington which is about padre island beach about in gulf of mexico texas playa novillera beach about in mexico beach wildlife file kemp s ridley sea turtle nestingjpg thumb left a kemp s ridley sea turtle nesting on the berm section of the beach beyond can be seen wrack seaweed plant debris in the wrack line a beach is an unstablenvironmenthat exposes plants and animals to changeable and potentially harsh conditionsome animals burrow into the sand feed on material deposited by the waves crabs insects and shorebird s feed on these beach dwellers thendangered piping plover and some tern species rely on beaches for nesting sea turtle s also bury their eggs in ocean beacheseagrass es and other beach plants grow on undisturbed areas of the beach andunes ocean beaches are habitats with organisms adapted to salt spray tidal overwash and shifting sandsome of these organisms are found only on beaches examples of these beach organisms in the southeast us include plants like sea oatsea rocket beach elder beach morninglory ipomoea pes caprae and beach peanut and animalsuch as mole crabs hippoidea coquina clams donax bivalve donax ghost crab s and white beach tiger beetlesee also beach advisory beach cleaner beach evolution coast list of beachesand art and play shore strand plain urban beach polo furthereading bascom waves and beaches anchor press doubleday garden city new york p externalinks unesco beach erosion and formation world s largest beach database category beaches category coastal and oceanic landforms category oceanographical terminology category erosion landforms category tourist attractions","main_words":["file","man","war","cove","near","dorset","thumb","px","right","beach","along","body","water","usually","consists","loose","particles","often","composed","rock","geology","rock","gravel","shingle","beach","shingle","particles","beach","occasionally","biological","origin","shell","beaches","man_made","infrastructure","posts","changing","rooms","may_also","hospitality","venuesuch","resorts","camps","hotels_restaurants","nearby","wild","beaches","also_known","undeveloped","undiscovered","beaches","developed","manner","wild","beaches","valued","untouched","beauty","preserved","nature","beaches","typically","occur","areas","along","coast","wind","wave","ocean","current","action","geology","deposits","file","beach","thumb","px","four","sections","beaches","although","shore","commonly","associated_withe","word","beaches","also_found","lakes","alongside","large","rivers","beach","may","refer","small","systems","rock","material","moves","offshore","forces","waves","currents","geological","units","considerable","size","former","described","detail","larger","geological","units","discussed","elsewhere","bars","several","parts","beach","relate","processes","form","shape","ithe","part","mostly","water","depending","upon","tide","less","actively","influenced","waves","point","tide","termed","beach","berm","berm","deposit","material","comprising","active","shoreline","berm","face","latter","slope","leading","towards","water","crest","athe_bottom","face","may","one","long","shore","raised","underwater","formed","waves","break","may","extend","well","inland","berm","crest","may","one","older","crests","storm","beach","resulting","large","storm","waves","beyond","influence","normal","waves","pointhe","influence","waves","even","storm","waves","material","comprising","beach","stops","particles","small","enough","sand","size","smaller","feature","wind","force","grains","inland","deposit","behind","beach","becomes","dune","features","called","beach_profile","beach_profile","due","change","summer","winter","months","temperate","areas","summer","characterised","calmer","seas","longer","periods","breaking","wave","crests","beach_profile","higher","summer","gentle","wave","action","thiseason","tends","transport","sediment","beach","towards","berm","deposited","remains","winds","carry","inland","forming","enhancing","dunes","conversely","beach_profile","lower","storm","season","winter","temperate","areas","due","increased","shorter","periods","breaking","wave","crests","higher","energy","waves","breaking","quick","succession","tend","shallows","keeping","suspension","prone","carried","along","beach","longshore","currents","carried","outo","sea","form","longshore","bars","especially","longshore","current","meets","river","flooding","stream","removal","sediment","beach","berm","thus","beach_profile","tropics","tropical","areas","storm","season","tends","summer","months","calmer","weather","commonly","associated_withe","winter","season","storms","coincide","unusually","high","tides","freak","tidal","tsunami","coastal","flooding","substantial","quantities","material","may","coastal","plain","dunes","behind","berm","water","flow","may","alter","shape","rivers","create","new","athe","streams","powerful","enough","longshore","movement","line","beach","difficulto","define","field","significant","period","time","sediment","always","exchanged","drift","line","high","point","material","deposited","waves","one","potential","would","point","significant","wind","movement","sand","could","occur","since","normal","waves","sand","beyond","area","however","drift","line","likely","move","inland","assault","storm","florida","living","beaches","guide","curious","pineapple","press","beaches","recreation","file","thumb","left_px","popular","victorian","seaside_resort","file","brighton","front","chain","pier","seen","thumb","right","brighton","front","chain","pier","seen","th_century","development","beach","popular","mid_th","century","first","manifestation","global","tourist_industry","first","seaside_resorts","opened","th_century","aristocracy","began","frequenthe","seaside","well","fashionable","spa","towns","forecreation","health","one","thearliest","seaside_resorts","north_yorkshire","scarborough","yorkshire","fashionable","spa","town","since","stream","water","discovered","running","one","cliffs","south","town","th_century","first","rolling","bathing","machine","introduced","opening","resort","brighton","reception","patronage","royal","patronage","kingeorge","extended","seaside_resort","health","pleasure","much_larger","london","market","beach","became","centre","upper_class","pleasure","trend","praised","elevated","new","romanticism","romantic","ideal","picturesque","landscape","jane","novel","example","later","victoria","united_kingdom","queen","victoria","long","standing","patronage","isle","wight","kent","ensured","seaside","residence","considered","highly","fashionable","possession","wealthy","enough","afford","one","home","seaside_resorts","working_class","file","promenade","jpg","promenade","c","form","leisure","middle","working_class","began","withe","development","railway","offered","cheap","affordable","fares","fast_growing","resortowns","particular","completion","blackpool","branch","line","branch","line","small","seaside","town","blackpool","led","sustained","economic","boom","sudden","influx","visitors","arriving","rail","provided","motivation","entrepreneurs","build","accommodation","create","new","attractions","leading","visitors","rapid","cycle","growth","intensified","practice","among","lancashire","cotton","mill","owners","closing","factories","week","everyear","service","repair","machinery","became_known","week","town","mills","would","close","different","week","allowing","blackpool","manage","steady","reliable","stream","visitors","period","summer","prominent","feature","resort","promenade","pleasure","pier","eclectic","variety","performances","people","attention","north","pier","blackpool","north","pier","blackpool","completed","rapidly","becoming","centre","attraction","elite","visitors","central","pier","blackpool","central","pier","completed","theatre","large","open_air","dance_floor","many","popular","beach","resorts","werequipped","bathing","machine","covering","period","considered","thend","century","thenglish","coastline","large","populations","exceeding","expansion","around","world","file","monte_carlo","casino","seaside","facade","p","jpg","thumb","right","seaside","facade","monte_carlo","development","seaside_resort","abroad","well","developed","english","love","beach","french","mediterranean","already","become_popular","destination","british","upper_class","thend","th_century","first","railway","nice","completed","making","visitors","europe","residents","oforeign","british","numbered","coastline","became","renowned","attracting","royalty","europe","including","victoria","united_kingdom","queen","victoriand","edward","vii","united_kingdom","king","edward","vii","michael","nelson","queen","victoriand","discovery","riviera","attitudes","towards","gambling","tended","lax","britain","british","french","entrepreneurs","quick","possibilities","prince","monaco","charles","iii","prince","monaco","charles","iii","fran_ois","blanc","french","businessman","arranged","steamship","carriages","take","visitors","nice","monaco","large","luxury","hotels","gardens","casinos","builthe","place","renamed","monte_carlo","commercial","sea","bathing","spread","united_states","parts","british","empire","thend","th_century","late","henry","developed","florida","east_coast","railway","linked","coastal","sea","resorts","developing","st_augustine","miami","beach","winter","travelers","northern","united_states","canada","theast_coast","railway","thearly_th","century","surfing","developed","hawaii","australiand","moving","southern_california","thearly","cheap","affordable","air_travel","catalyst","growth","truly","global","tourismarket","benefited","areasuch","mediterranean","australia","south_africand","coastal","sun","belt","regions","united_states","file","n","jpg","thumb","summer","n","file","cousins","lincoln","city","thumb","children","walking","beaches","popular","warm","sunny","days","victorian_era","many","popular","seaside_resort","beach","resorts","werequipped","bathing","machine","covering","period","considered","standard","still","many","muslim","countries","athe","end","spectrum","beaches","beach","clothing","optional","allowed","norms","significantly","different","beach","hot","weather","compared","adjacent","areas","similar","behavior","might","might","even","prosecuted","thirty","countries","europe","south_africa","new_zealand","canada","costa_rica","south_americand","caribbean","best","recreational","beaches","awarded","blue","flag","beach","blue","flag","status","based","water","quality","safety","provision","subsequent","loss","tourism","revenues","beaches","often","waste","litter","use","beach","cleaner","significantly","many","beaches","discharge","zone","sewage","underdeveloped","countries","even","developed_countries","beach","closure","occasional","due","sanitary","sewer","cases","marine","discharge","disease","contamination","certain","marine","species","frequent","outcome","artificial","beaches","artificial","areither","permanent","temporary","monaco","paris","copenhagen","rotterdam","nottingham","toronto","beaches","hong_kong","hong_kong","list","beaches","singapore","port","tianjin","port","area","tianjin","qualities","beach","pleasant","environment","offered","artificial","beach","style","pools","zero","depth","entry","wave","pools","recreate","natural","waves","upon","beach","zero","entry","swimming_pool","zero","depth","entry","pool","bottom","surface","slopes","gradually","water","depth","another","approach","called","urban","beach","form","public","park","becoming","common","large_cities","urban","beaches","attempto","natural","beaches","fountains","surf","mask","city","cases","used","play","park","beach","nourishment","involves","sand","onto","beaches","improve","health","beach","nourishment","common","major","beach","cities","around","world","however","beaches","still","appear","quite","natural","often","many","visitors","works","undertaken","beach","beaches","oftenot","recognized","consumers","artificial","foundation","artificial","reef","members","torn","desire","support","natural","coastal","environments","opportunities","enhance","quality","surfing","beach","nourishment","snow","cannon","restrictions","access","public","access","beaches","restricted","parts","world","example","beaches","jersey","shore","people","purchase","beach","tag","beach","beaches","also","restrict","dogs","periods","year","private","beaches","also","private","along","shores","may","belong","neighborhood","signs","usually","posted","thentrance","permit","special","use","occasion","event","may","granted","upon","proper","channels","legally","obtain","one","public","beaches","public","access","beaches","protected","law","ustate","oregon","thanks","state","law","oregon","beach","bill","guaranteed","public","access","columbia_river","california","state","line","thathe","public","may","free","use","beach","formation","beaches","result","wave","action","wave","ocean","currents","move","sand","beach","made","particles","held","suspension","chemistry","suspension","alternatively","sand","may","moved","geology","bouncing","movement","large","particles","beach","materials","come","erosion","rocks","offshore","well","erosion","producing","deposits","sand","world","along","florida","emerald","coast","comes","appalachian","mountains","reef","coral","reef","offshore","significant","source","sand","species","ofish","feed","attached","coral","rocks","create","substantial","quantities","sand","particles","lifetime","feeding","organic","matter","rock","coral","particles","pass","composition","beach","depends","upon","nature","quantity","sediments","beach","speed","water","wind","sediments","moved","moving","water","wind","according","particle","size","state","particles","tend","settle","compact","still","water","compacted","erosion","established","vegetation","especially","species","complex","network","root","systems","resist","erosion","fluid","flow","athe","surface","layer","affected","moving","water","wind","particles","held","suspension","increase","power","fluid","holds","increasing","average","density","volume","moving","fluid","nature","sediments","found","beach","tends","indicate","thenergy","waves","wind","locality","facing","wind","wave","systems","tend","hold","large","rocks","particles","held","suspension","water","column","carried","calmer","areas","longshore","currents","tides","protected","waves","winds","tend","allow","finer","mud","creating","mud","flats","forests","shape","beach","depends","whether","waves","constructive","destructive","whether","material","shingle","waves","constructive","period","wave","crests","long","enough","breaking","water","settle","wave","arrives","breaks","fine","lower","beach_profile","compact","water","beach","compacted","sediment","movement","turbulent","water","waves","conversely","waves","destructive","period","wave","crests","remains","suspension","following","wave","crest","arrives","able","settle","compact","susceptible","erosion","longshore","currents","tides","constructive","waves","move","material","beach","destructive","waves","move","material","beach","seasons","destructive","waves","shallows","carry","increased","load","sediment","organic","matter","suspension","sandy","beaches","turbulent","destructive","waves","material","forming","beach","shingle","beaches","quickly","large","particle","size","allows","greater","thereby","reducing","power","beach","compacted","fine","sediments","form","smooth","beach","surface","wind","hot","seasons","crust","may","form","surface","ocean","beaches","theat","sun","water","leaving","salt","around","sand","particles","crust","forms","additional","protective","layer","wind","erosion","unless","disturbed","animals","dissolved","advancing","tide","beach","horns","form","incoming","waves","sand","horns","sand","form","forms","face","sand","shoreline","beach","erosion","erosion","beaches","changed","shape","chiefly","movement","water","wind","weather","eventhat","associated","fast","flowing","water","high","winds","beaches","longshore","currents","tend","beach","sediments","repair","storm","damage","tidal","waterways","generally","change","shape","adjacent","beaches","small","degrees","every","tidal","cycle","time","changes","become","significant","changes","size","location","beach","effects","flora","changes","shape","beach","may","undermine","roots","large","trees","flora","many","beach","adapted","speciesuch","coconut","palms","fine","root","system","large","root","ball","tends","withstand","wave","wind","action","tends","stabilize","beaches","better","trees","ball","effects","adjacent","land","erosion","beaches","less","rocks","wind","wave","action","leading","coastal","eventually","resulting","large","quantities","shallows","material","may","distributed","along","beach","front","leading","change","habitat","grasses","shallows","may","buried","deprived","light","coastal","man","inevitably","become","subjecto","theffects","man_made","structures","processes","long_periods","time","influences","may","substantially","alter","shape","coastline","character","beach","destruction","oflora","beach","front","flora","plays","majorole","stabilizing","preventing","beachead","erosion","inland","movement","dunes","network","root","systems","grasses","palms","able","provide","effective","coastal","defense","trap","sand","particles","surface","layer","dunes","allowing","plant","species","also","protecthe","berm","erosion","high","winds","freak","waves","flood","waters","long_periods","time","well","stabilized","areas","tend","tend","erode","leading","substantial","changes","shape","coastline","changes","usually","occur","periods","manyears","freak","tsunami","tidal","waves","storm","may","substantially","alter","shape","profile","location","beach","within","hours","destruction","oflora","berm","use","excessive","pedestrian","vehicular","traffic","disruption","fresh","water","flows","may","lead","erosion","berm","destruction","oflora","may","gradual","process","regular","beach","users","often","becomes","immediately","apparent","storms","associated","withigh","winds","freak","rapidly","move","large","volumes","exposed","unstable","inland","carrying","permanent","water","forming","offshore","bars","increasing","area","beach","exposed","low","tide","large","rapid","movements","exposed","sand","bury","flora","adjacent","areas","loss","habitat","faunand","area","instability","adequate","supply","sand","weather","conditions","allow","vegetation","recover","stabilize","sediment","wind","blown","sand","continue","permanently","moved","waves","flood","waters","deposited","coastal","shallows","reed","beds","changing","character","underwater","florand","fauna","coastal","shallows","file","hidden","beach","jpg","thumb","right","px","hidden","beach","southern","croatia","burning","clearance","vegetation","land","adjacento","beachead","farming","residential","development","changes","surface","wind","patterns","surface","beach","wind","erosion","farming","residential","development","also_commonly","associated","changes","local","surface","water","flows","flows","concentrated","storm","water","drains","onto","beachead","may","erode","beach","creating","lagoon","delta","dense","vegetation","tends","absorb","rainfall","reducing","speed","runoff","releasing","longer","periods","time","destruction","burning","clearance","natural","vegetation","tends","increase","speed","power","rainfall","runoff","tend","carry","organic","matter","land","onto","beach","sea","flow","constant","cleared","land","arriving","athe","beachead","tend","material","sand","changing","color","fauna","creation","beach","access","points","concentration","vehicular","traffic","accessing","beach","forecreational","purposes","may","cause","increased","erosion","athe","access","points","measures","stabilize","beach","surface","high","water","mark","recognition","dangers","loss","beach","front","flora","caused","many","local_authorities","responsible","managing","coastal","areas","restrict","beach","access","points","physical","structures","legal","fence","efforto","protecthe","flora","measures","often","associated_withe","construction","structures","access","points","allow","traffic","pass","dunes","without","causing","damage","concentration","runoff","beaches","provide","filter","coastal","plain","runoff","naturally","along","beach","water","borne","organic","matter","retained","land","feed","flora","coastal","area","runoff","along","beach","tend","beach","may","emerge","beach","low","tide","retention","fresh","water","may_also","help","maintain","underground","resist","salt","water","surface","flow","runoff","diverted","concentrated","drains","create","constant","flows","beach","sea_level","beach","ultimately","form","inlet","unless","longshore","flows","deposit","sediments","repair","breach","inlet","may","allow","tidal","salt","water","areas","inland","beach","may_also","affecthe","quality","underground","water","supplies","theight","water","table","deprivation","runoff","flora","naturally","occurring","beachead","requires","fresh","ofresh","drains","may","plants","water","supplies","allow","sea","water","increasing","ground","water","species","able","survive","salt","water","may","die","replaced","species","adapted","salty","environments","inappropriate","beach","nourishment","beach","nourishment","sand","sediments","efforto","restore","beach","damaged","erosion","beach","nourishment","often","involves","excavation","sediments","sand","sediment","may","substantially","different","size","appearance","naturally","occurring","beach","sand","extreme","cases","beach","nourishment","may","involve","placement","large","efforto","permanently","restore","shoreline","subjecto","constant","erosion","loss","often","required","flow","new","sediment","caused","longshore","current","construction","boat","ramps","creating","new","current","flows","sand","behind","structures","beach","sediments","causes","addressed","beach","nourishment","become","necessary","permanent","feature","beach","maintenance","beach","nourishment","activities","care","must","taken_place","new","thathe","new","sediments","compact","stabilize","aggressive","wave","wind","action","erode","concentrated","far","beach","may","form","temporary","encourage","behind","sediments","fine","light","may","compacted","integrated","vegetation","foreign","sediments","may","introduce","flora","fauna","usually","found","locality","brighton","beach","south","coast","england","shingle","beach","large","efforto","withstand","erosion","upper","area","beach","large","made","beach","pedestrians","period","time","natural","processes","integrated","naturally","occurring","shingle","base","beach","access","design","file","art","thumb","mythology","created","sand","beach","santa","des","spain","beach","access","important","consideration","substantial","numbers","pedestrians","vehicles","require","access","beach","allowing","random","access","across","delicate","considered","good","practice","likely","lead","destruction","erosion","fore","dunes","well","designed","beach","provide","durable","surface","able","withstand","traffic","flow","aesthetically","surrounding","structures","located","area","convenient","users","consistent","safe","traffic","flows","scaled","match","traffic","flow","wide","strong","enough","safely","carry","size","quantity","pedestrians","vehicles","intended","use","maintained","signed","discourage","beach","users","creating","alternative","may","destructive","concrete","ramp","steps","concrete","ramp","follow","natural","profile","beach","prevent","changing","normal","flow","waves","longshore","currents","water","wind","ramp","beach_profile","tend","become","buried","cease","provide","good","surface","vehicular","traffic","ramp","beach_profile","tend","longshore","currents","creating","deposits","front","ramp","behind","concrete","ramps","beach","construct","requiring","use","quick","drying","concrete","dam","tidal","water","concrete","curing","process","concrete","favored","traffic","flows","heavy","access","required","vehicles","adapted","soft","sand","road","registered","passenger","vehicles","concrete","stairs","commonly","favored","beaches","adjacento","population","centers","beach","users","may","arrive","beach","street","shoes","roadway","higher","beachead","ramp","would","steep","safe","use","pedestrians","composite","may","incorporate","central","side","one","ramps","allowing","pedestrians","lead","small","boat","onto","beach","withouthe","aid","powered","vehicle","winch","concrete","ramps","maintained","prevent","buildup","moss","may","make","wet","pedestrians","vehicles","corduroy","beach","corduroy","beach","board","chain","array","usually","treated","timber","laid","close","together","direction","traffic","flow","secured","end","chain","cable","form","pathway","cheap","easy","construct","quick","deploy","commonly_used","pedestrian","access","paths","light","duty","vehicular","access","ways","naturally","conform","shape","underlying","beach","dune","profile","well","especially","longshore","drift","however","cease","effective","become","buried","erosion","surface","runoff","coming","beachead","corduroy","vehicles","using","ithe","sediment","either","side","may","displaced","creating","spoon","drain","run","quickly","lead","serious","erosion","significant","erosion","sediment","beside","corduroy","completely","make","dangerous","pedestrian","users","may","fall","fabric","ramp","fabric","ramps","commonly","employed","military","temporary","purposes","underlying","sediment","hard","enough","supporthe","weight","traffic","sheet","fabric","laid","sand","stabilize","surface","prevent","vehicles","fabric","ramps","usually","cease","useful","one","tidal","cycle","away","buried","sediment","foliage","ramp","foliage","ramp","formed","planting","species","hardy","grasses","well","formed","sediment","ramp","plants","may","supported","placement","layers","organic","material","vines","branches","type","ramp","ideally","suited","use","vehicles","dune","agricultural","vehicles","large","foliage","ramp","require","minimal","maintenance","initially","formed","follow","beach_profile","gravel","ramp","gravel","ramp","formed","underlying","filling","thexcavation","layers","gravel","graduated","sizes","defined","john","gravel","compacted","form","solid","surface","according","needs","traffic","gravel","ramps","less","expensive","concrete","ramps","able","carry","heavy","road","traffic","provided","thexcavation","deep","enough","reach","solid","gravel","ramps","subjecto","erosion","water","boards","walls","profile","matches","surrounding","beach_profile","gravel","ramp","may","become","stable","finer","sediments","deposited","water","longest","beaches","amongsthe","world","longest","beaches","brazil","ninety","mile","beach","victoria","ninety","mile","beach","victoriaustralia","cox","cox","bangladesh","mile","beach","new_zealand","mile","beach","inew_zealand","fraser","island","beach","queensland","australia","beach","portugal","jersey","shore","long_beach","washington","padre","island","beach","gulf","mexico","texas","playa","beach","mexico","beach","wildlife","file","kemp","sea","turtle","thumb","left","kemp","sea","turtle","nesting","berm","section","beach","beyond","seen","plant","debris","line","beach","plants","animals","potentially","harsh","animals","sand","feed","material","deposited","waves","insects","feed","beach","dwellers","thendangered","species","rely","beaches","nesting","sea","turtle","also","bury","eggs","ocean","beach","plants","grow","areas","beach","ocean","beaches","habitats","organisms","adapted","salt","spray","tidal","shifting","organisms","found","beaches","examples","beach","organisms","southeast","us","include","plants","like","sea","rocket","beach","beach","morninglory","beach","peanut","animalsuch","mole","clams","ghost","crab","white","beach","tiger","also","beach","advisory","beach","cleaner","beach","evolution","coast","list","art","play","shore","strand","plain","urban","beach","polo","furthereading","waves","beaches","anchor","press","garden","city_new_york","p","externalinks","unesco","beach","erosion","formation","world","largest","beach","database","category","beaches","category","coastal","landforms","category","terminology","category","erosion","landforms","category_tourist","attractions"],"clean_bigrams":[["file","man"],["war","cove"],["cove","near"],["thumb","px"],["px","right"],["usually","consists"],["loose","particles"],["often","composed"],["rock","geology"],["geology","rock"],["gravel","shingle"],["shingle","beach"],["beach","shingle"],["particles","beach"],["occasionally","biological"],["man","made"],["made","infrastructure"],["posts","changing"],["changing","rooms"],["may","also"],["hospitality","venuesuch"],["resorts","camps"],["camps","hotels"],["restaurants","nearby"],["nearby","wild"],["wild","beaches"],["beaches","also"],["also","known"],["undiscovered","beaches"],["manner","wild"],["wild","beaches"],["untouched","beauty"],["preserved","nature"],["nature","beaches"],["beaches","typically"],["typically","occur"],["areas","along"],["wind","wave"],["ocean","current"],["current","action"],["geology","deposits"],["file","beach"],["thumb","px"],["four","sections"],["beaches","although"],["commonly","associated"],["associated","withe"],["withe","word"],["word","beaches"],["beaches","also"],["also","found"],["alongside","large"],["large","rivers"],["rivers","beach"],["beach","may"],["may","refer"],["small","systems"],["rock","material"],["material","moves"],["geological","units"],["considerable","size"],["larger","geological"],["geological","units"],["discussed","elsewhere"],["shape","ithe"],["ithe","part"],["part","mostly"],["water","depending"],["depending","upon"],["upon","tide"],["less","actively"],["actively","influenced"],["beach","berm"],["material","comprising"],["active","shoreline"],["slope","leading"],["crest","athe"],["long","shore"],["raised","underwater"],["may","extend"],["extend","well"],["well","inland"],["berm","crest"],["older","crests"],["storm","beach"],["beach","resulting"],["large","storm"],["storm","waves"],["normal","waves"],["pointhe","influence"],["waves","even"],["even","storm"],["storm","waves"],["material","comprising"],["beach","stops"],["small","enough"],["enough","sand"],["sand","size"],["grains","inland"],["deposit","behind"],["beach","becomes"],["beach","profile"],["beach","profile"],["winter","months"],["temperate","areas"],["calmer","seas"],["longer","periods"],["breaking","wave"],["wave","crests"],["beach","profile"],["gentle","wave"],["wave","action"],["thiseason","tends"],["transport","sediment"],["beach","towards"],["winds","carry"],["inland","forming"],["enhancing","dunes"],["dunes","conversely"],["beach","profile"],["storm","season"],["season","winter"],["temperate","areas"],["areas","due"],["shorter","periods"],["breaking","wave"],["wave","crests"],["crests","higher"],["higher","energy"],["energy","waves"],["waves","breaking"],["quick","succession"],["succession","tend"],["shallows","keeping"],["carried","along"],["longshore","currents"],["carried","outo"],["outo","sea"],["form","longshore"],["longshore","bars"],["bars","especially"],["especially","longshore"],["longshore","current"],["current","meets"],["flooding","stream"],["beach","berm"],["beach","profile"],["tropics","tropical"],["tropical","areas"],["storm","season"],["season","tends"],["summer","months"],["calmer","weather"],["weather","commonly"],["commonly","associated"],["associated","withe"],["withe","winter"],["winter","season"],["storms","coincide"],["unusually","high"],["high","tides"],["coastal","flooding"],["flooding","substantial"],["substantial","quantities"],["material","may"],["coastal","plain"],["dunes","behind"],["flow","may"],["may","alter"],["create","new"],["powerful","enough"],["longshore","movement"],["difficulto","define"],["significant","period"],["time","sediment"],["drift","line"],["high","point"],["material","deposited"],["one","potential"],["significant","wind"],["wind","movement"],["sand","could"],["could","occur"],["occur","since"],["normal","waves"],["sand","beyond"],["area","however"],["drift","line"],["move","inland"],["living","beaches"],["pineapple","press"],["press","beaches"],["recreation","file"],["thumb","left"],["left","px"],["popular","victorian"],["victorian","seaside"],["seaside","resort"],["file","brighton"],["chain","pier"],["pier","seen"],["thumb","right"],["right","brighton"],["chain","pier"],["pier","seen"],["th","century"],["mid","th"],["th","century"],["first","manifestation"],["global","tourist"],["tourist","industry"],["first","seaside"],["seaside","resorts"],["th","century"],["frequenthe","seaside"],["fashionable","spa"],["spa","towns"],["towns","forecreation"],["health","one"],["seaside","resorts"],["north","yorkshire"],["yorkshire","scarborough"],["fashionable","spa"],["spa","town"],["town","since"],["discovered","running"],["th","century"],["first","rolling"],["rolling","bathing"],["bathing","machine"],["patronage","royal"],["royal","patronage"],["seaside","resort"],["much","larger"],["larger","london"],["london","market"],["beach","became"],["upper","class"],["class","pleasure"],["new","romanticism"],["romanticism","romantic"],["romantic","ideal"],["picturesque","landscape"],["landscape","jane"],["later","victoria"],["united","kingdom"],["kingdom","queen"],["queen","victoria"],["long","standing"],["standing","patronage"],["kent","ensured"],["seaside","residence"],["highly","fashionable"],["fashionable","possession"],["wealthy","enough"],["one","home"],["home","seaside"],["seaside","resorts"],["working","class"],["class","file"],["promenade","c"],["working","class"],["class","began"],["began","withe"],["withe","development"],["offered","cheap"],["affordable","fares"],["fast","growing"],["growing","resortowns"],["blackpool","branch"],["branch","line"],["line","branch"],["branch","line"],["small","seaside"],["seaside","town"],["town","blackpool"],["sustained","economic"],["sudden","influx"],["visitors","arriving"],["rail","provided"],["build","accommodation"],["create","new"],["new","attractions"],["attractions","leading"],["rapid","cycle"],["practice","among"],["lancashire","cotton"],["cotton","mill"],["mill","owners"],["week","everyear"],["repair","machinery"],["became","known"],["mills","would"],["would","close"],["different","week"],["week","allowing"],["allowing","blackpool"],["reliable","stream"],["prominent","feature"],["pleasure","pier"],["eclectic","variety"],["north","pier"],["pier","blackpool"],["blackpool","north"],["north","pier"],["pier","blackpool"],["completed","rapidly"],["rapidly","becoming"],["elite","visitors"],["visitors","central"],["central","pier"],["pier","blackpool"],["blackpool","central"],["central","pier"],["large","open"],["open","air"],["air","dance"],["dance","floor"],["floor","many"],["many","popular"],["popular","beach"],["beach","resorts"],["resorts","werequipped"],["bathing","machine"],["century","thenglish"],["thenglish","coastline"],["populations","exceeding"],["exceeding","expansion"],["expansion","around"],["world","file"],["file","monte"],["monte","carlo"],["carlo","casino"],["casino","seaside"],["seaside","facade"],["p","jpg"],["jpg","thumb"],["thumb","right"],["right","seaside"],["seaside","facade"],["monte","carlo"],["seaside","resort"],["resort","abroad"],["well","developed"],["developed","english"],["english","love"],["already","become"],["popular","destination"],["british","upper"],["upper","class"],["th","century"],["first","railway"],["completed","making"],["residents","oforeign"],["british","numbered"],["coastline","became"],["became","renowned"],["europe","including"],["including","victoria"],["united","kingdom"],["kingdom","queen"],["queen","victoriand"],["victoriand","edward"],["edward","vii"],["united","kingdom"],["kingdom","king"],["king","edward"],["edward","vii"],["vii","michael"],["michael","nelson"],["nelson","queen"],["queen","victoriand"],["continental","european"],["european","attitudes"],["attitudes","towards"],["towards","gambling"],["french","entrepreneurs"],["monaco","charles"],["charles","iii"],["iii","prince"],["monaco","charles"],["charles","iii"],["fran","ois"],["ois","blanc"],["french","businessman"],["businessman","arranged"],["take","visitors"],["large","luxury"],["luxury","hotels"],["hotels","gardens"],["builthe","place"],["renamed","monte"],["monte","carlo"],["carlo","commercial"],["commercial","sea"],["sea","bathing"],["bathing","spread"],["united","states"],["british","empire"],["th","century"],["florida","east"],["east","coast"],["coast","railway"],["coastal","sea"],["sea","resorts"],["resorts","developing"],["st","augustine"],["miami","beach"],["winter","travelers"],["northern","united"],["united","states"],["theast","coast"],["coast","railway"],["thearly","th"],["th","century"],["century","surfing"],["southern","california"],["affordable","air"],["air","travel"],["truly","global"],["global","tourismarket"],["benefited","areasuch"],["mediterranean","australia"],["australia","south"],["south","africand"],["coastal","sun"],["sun","belt"],["belt","regions"],["united","states"],["states","file"],["jpg","thumb"],["thumb","summer"],["file","cousins"],["lincoln","city"],["thumb","children"],["children","walking"],["warm","sunny"],["sunny","days"],["victorian","era"],["era","many"],["many","popular"],["popular","seaside"],["seaside","resort"],["resort","beach"],["beach","resorts"],["resorts","werequipped"],["bathing","machine"],["standard","still"],["many","muslim"],["muslim","countries"],["countries","athe"],["significantly","different"],["hot","weather"],["weather","compared"],["adjacent","areas"],["similar","behavior"],["behavior","might"],["might","even"],["thirty","countries"],["europe","south"],["south","africa"],["africa","new"],["new","zealand"],["zealand","canada"],["canada","costa"],["costa","rica"],["rica","south"],["south","americand"],["best","recreational"],["recreational","beaches"],["awarded","blue"],["blue","flag"],["flag","beach"],["beach","blue"],["blue","flag"],["flag","status"],["status","based"],["water","quality"],["safety","provision"],["provision","subsequent"],["subsequent","loss"],["tourism","revenues"],["revenues","beaches"],["use","beach"],["beach","cleaner"],["significantly","many"],["many","beaches"],["discharge","zone"],["underdeveloped","countries"],["countries","even"],["developed","countries"],["countries","beach"],["beach","closure"],["sanitary","sewer"],["marine","discharge"],["certain","marine"],["marine","species"],["frequent","outcome"],["outcome","artificial"],["areither","permanent"],["monaco","paris"],["paris","copenhagen"],["copenhagen","rotterdam"],["rotterdam","nottingham"],["nottingham","toronto"],["toronto","beaches"],["hong","kong"],["kong","hong"],["hong","kong"],["kong","list"],["port","area"],["area","tianjin"],["pleasant","environment"],["environment","offered"],["beach","style"],["style","pools"],["zero","depth"],["depth","entry"],["wave","pools"],["natural","waves"],["zero","entry"],["entry","swimming"],["swimming","pool"],["pool","zero"],["zero","depth"],["depth","entry"],["entry","pool"],["bottom","surface"],["surface","slopes"],["slopes","gradually"],["depth","another"],["another","approach"],["called","urban"],["urban","beach"],["public","park"],["park","becoming"],["becoming","common"],["large","cities"],["cities","urban"],["urban","beaches"],["beaches","attempto"],["natural","beaches"],["mask","city"],["play","park"],["park","beach"],["beach","nourishment"],["nourishment","involves"],["sand","onto"],["onto","beaches"],["health","beach"],["beach","nourishment"],["major","beach"],["beach","cities"],["cities","around"],["world","however"],["still","appear"],["appear","quite"],["quite","natural"],["often","many"],["many","visitors"],["works","undertaken"],["oftenot","recognized"],["artificial","reef"],["members","torn"],["support","natural"],["natural","coastal"],["coastal","environments"],["beach","nourishment"],["snow","cannon"],["access","public"],["public","access"],["jersey","shore"],["purchase","beach"],["beach","tag"],["beaches","also"],["also","restrict"],["restrict","dogs"],["year","private"],["private","beaches"],["beaches","also"],["also","private"],["shores","may"],["may","belong"],["usually","posted"],["posted","thentrance"],["special","use"],["use","occasion"],["occasion","event"],["event","may"],["granted","upon"],["proper","channels"],["legally","obtain"],["obtain","one"],["one","public"],["public","beaches"],["beaches","public"],["public","access"],["oregon","thanks"],["state","law"],["oregon","beach"],["beach","bill"],["guaranteed","public"],["public","access"],["columbia","river"],["california","state"],["state","line"],["thathe","public"],["public","may"],["use","beach"],["beach","formation"],["formation","beaches"],["wave","action"],["ocean","currents"],["currents","move"],["move","sand"],["suspension","chemistry"],["chemistry","suspension"],["suspension","alternatively"],["alternatively","sand"],["sand","may"],["bouncing","movement"],["large","particles"],["particles","beach"],["beach","materials"],["materials","come"],["rocks","offshore"],["producing","deposits"],["world","along"],["along","florida"],["emerald","coast"],["coast","comes"],["appalachian","mountains"],["reef","coral"],["coral","reef"],["reef","offshore"],["significant","source"],["species","ofish"],["create","substantial"],["substantial","quantities"],["sand","particles"],["organic","matter"],["coral","particles"],["beach","depends"],["depends","upon"],["wind","sediments"],["moving","water"],["wind","according"],["particle","size"],["particles","tend"],["still","water"],["erosion","established"],["established","vegetation"],["vegetation","especially"],["especially","species"],["complex","network"],["network","root"],["root","systems"],["resist","erosion"],["fluid","flow"],["flow","athe"],["athe","surface"],["surface","layer"],["moving","water"],["wind","particles"],["average","density"],["moving","fluid"],["sediments","found"],["beach","tends"],["indicate","thenergy"],["wind","wave"],["wave","systems"],["large","rocks"],["water","column"],["calmer","areas"],["longshore","currents"],["allow","finer"],["creating","mud"],["mud","flats"],["beach","depends"],["shingle","waves"],["wave","crests"],["long","enough"],["breaking","water"],["wave","arrives"],["breaks","fine"],["beach","profile"],["beach","compacted"],["compacted","sediment"],["turbulent","water"],["waves","conversely"],["conversely","waves"],["wave","crests"],["following","wave"],["wave","crest"],["crest","arrives"],["longshore","currents"],["tides","constructive"],["constructive","waves"],["waves","move"],["move","material"],["destructive","waves"],["waves","move"],["move","material"],["destructive","waves"],["increased","load"],["organic","matter"],["suspension","sandy"],["sandy","beaches"],["destructive","waves"],["material","forming"],["beach","shingle"],["shingle","beaches"],["large","particle"],["particle","size"],["size","allows"],["allows","greater"],["thereby","reducing"],["beach","compacted"],["compacted","fine"],["fine","sediments"],["smooth","beach"],["beach","surface"],["surface","wind"],["crust","may"],["may","form"],["ocean","beaches"],["water","leaving"],["sand","particles"],["crust","forms"],["additional","protective"],["protective","layer"],["wind","erosion"],["erosion","unless"],["unless","disturbed"],["advancing","tide"],["tide","beach"],["horns","form"],["incoming","waves"],["sand","shoreline"],["beach","erosion"],["shape","chiefly"],["weather","eventhat"],["fast","flowing"],["flowing","water"],["high","winds"],["beaches","longshore"],["longshore","currents"],["beach","sediments"],["repair","storm"],["storm","damage"],["damage","tidal"],["tidal","waterways"],["waterways","generally"],["generally","change"],["adjacent","beaches"],["small","degrees"],["every","tidal"],["tidal","cycle"],["significant","changes"],["beach","effects"],["flora","changes"],["beach","may"],["may","undermine"],["large","trees"],["flora","many"],["many","beach"],["beach","adapted"],["adapted","speciesuch"],["coconut","palms"],["fine","root"],["root","system"],["large","root"],["root","ball"],["withstand","wave"],["wind","action"],["stabilize","beaches"],["beaches","better"],["ball","effects"],["adjacent","land"],["land","erosion"],["wind","wave"],["wave","action"],["action","leading"],["eventually","resulting"],["large","quantities"],["material","may"],["distributed","along"],["beach","front"],["front","leading"],["shallows","may"],["man","inevitably"],["inevitably","become"],["become","subjecto"],["subjecto","theffects"],["man","made"],["made","structures"],["long","periods"],["influences","may"],["may","substantially"],["substantially","alter"],["beach","destruction"],["destruction","oflora"],["oflora","beach"],["beach","front"],["front","flora"],["flora","plays"],["preventing","beachead"],["beachead","erosion"],["inland","movement"],["network","root"],["root","systems"],["effective","coastal"],["coastal","defense"],["trap","sand"],["sand","particles"],["surface","layer"],["dunes","allowing"],["plant","species"],["also","protecthe"],["protecthe","berm"],["high","winds"],["winds","freak"],["freak","waves"],["flood","waters"],["long","periods"],["time","well"],["well","stabilized"],["erode","leading"],["substantial","changes"],["changes","usually"],["usually","occur"],["manyears","freak"],["tsunami","tidal"],["tidal","waves"],["may","substantially"],["substantially","alter"],["shape","profile"],["beach","within"],["within","hours"],["hours","destruction"],["destruction","oflora"],["excessive","pedestrian"],["vehicular","traffic"],["fresh","water"],["water","flows"],["flows","may"],["may","lead"],["destruction","oflora"],["oflora","may"],["gradual","process"],["regular","beach"],["beach","users"],["often","becomes"],["becomes","immediately"],["immediately","apparent"],["storms","associated"],["associated","withigh"],["withigh","winds"],["winds","freak"],["rapidly","move"],["move","large"],["large","volumes"],["permanent","water"],["water","forming"],["forming","offshore"],["offshore","bars"],["beach","exposed"],["low","tide"],["tide","large"],["rapid","movements"],["exposed","sand"],["adjacent","areas"],["adequate","supply"],["sand","weather"],["weather","conditions"],["allow","vegetation"],["sediment","wind"],["wind","blown"],["blown","sand"],["flood","waters"],["coastal","shallows"],["reed","beds"],["underwater","florand"],["florand","fauna"],["coastal","shallows"],["shallows","file"],["file","hidden"],["hidden","beach"],["beach","jpg"],["jpg","thumb"],["thumb","right"],["right","px"],["px","hidden"],["hidden","beach"],["southern","croatia"],["croatia","burning"],["land","adjacento"],["residential","development"],["development","changes"],["surface","wind"],["wind","patterns"],["wind","erosion"],["erosion","farming"],["residential","development"],["also","commonly"],["commonly","associated"],["local","surface"],["surface","water"],["water","flows"],["storm","water"],["water","drains"],["may","erode"],["beach","creating"],["delta","dense"],["dense","vegetation"],["vegetation","tends"],["absorb","rainfall"],["rainfall","reducing"],["longer","periods"],["time","destruction"],["natural","vegetation"],["vegetation","tends"],["organic","matter"],["land","onto"],["cleared","land"],["land","arriving"],["arriving","athe"],["athe","beachead"],["sand","changing"],["fauna","creation"],["beach","access"],["access","points"],["vehicular","traffic"],["traffic","accessing"],["beach","forecreational"],["forecreational","purposes"],["purposes","may"],["may","cause"],["cause","increased"],["increased","erosion"],["erosion","athe"],["athe","access"],["access","points"],["beach","surface"],["high","water"],["water","mark"],["mark","recognition"],["beach","front"],["front","flora"],["caused","many"],["many","local"],["local","authorities"],["authorities","responsible"],["managing","coastal"],["coastal","areas"],["restrict","beach"],["beach","access"],["access","points"],["physical","structures"],["efforto","protecthe"],["protecthe","flora"],["often","associated"],["associated","withe"],["withe","construction"],["access","points"],["allow","traffic"],["dunes","without"],["without","causing"],["damage","concentration"],["runoff","beaches"],["beaches","provide"],["coastal","plain"],["beach","water"],["water","borne"],["organic","matter"],["coastal","area"],["area","runoff"],["beach","may"],["may","emerge"],["low","tide"],["fresh","water"],["water","may"],["may","also"],["also","help"],["maintain","underground"],["resist","salt"],["salt","water"],["surface","flow"],["create","constant"],["constant","flows"],["ultimately","form"],["inlet","unless"],["unless","longshore"],["longshore","flows"],["flows","deposit"],["deposit","sediments"],["inlet","may"],["may","allow"],["allow","tidal"],["salt","water"],["areas","inland"],["beach","may"],["may","also"],["also","affecthe"],["affecthe","quality"],["underground","water"],["water","supplies"],["water","table"],["table","deprivation"],["flora","naturally"],["naturally","occurring"],["beachead","requires"],["requires","fresh"],["drains","may"],["water","supplies"],["allow","sea"],["sea","water"],["ground","water"],["water","species"],["salt","water"],["water","may"],["may","die"],["species","adapted"],["salty","environments"],["environments","inappropriate"],["inappropriate","beach"],["beach","nourishment"],["nourishment","beach"],["beach","nourishment"],["efforto","restore"],["erosion","beach"],["beach","nourishment"],["nourishment","often"],["often","involves"],["involves","excavation"],["sediment","may"],["may","substantially"],["substantially","different"],["naturally","occurring"],["occurring","beach"],["beach","sand"],["extreme","cases"],["cases","beach"],["beach","nourishment"],["nourishment","may"],["may","involve"],["involve","placement"],["efforto","permanently"],["permanently","restore"],["shoreline","subjecto"],["subjecto","constant"],["constant","erosion"],["often","required"],["new","sediment"],["sediment","caused"],["longshore","current"],["boat","ramps"],["ramps","creating"],["creating","new"],["new","current"],["current","flows"],["beach","sediments"],["addressed","beach"],["beach","nourishment"],["permanent","feature"],["beach","maintenance"],["beach","nourishment"],["nourishment","activities"],["activities","care"],["care","must"],["place","new"],["thathe","new"],["new","sediments"],["sediments","compact"],["aggressive","wave"],["wind","action"],["beach","may"],["may","form"],["light","may"],["vegetation","foreign"],["sediments","may"],["may","introduce"],["introduce","flora"],["usually","found"],["locality","brighton"],["brighton","beach"],["south","coast"],["shingle","beach"],["efforto","withstand"],["withstand","erosion"],["upper","area"],["natural","processes"],["processes","integrated"],["naturally","occurring"],["occurring","shingle"],["base","beach"],["beach","access"],["access","design"],["design","file"],["file","art"],["spain","beach"],["beach","access"],["important","consideration"],["substantial","numbers"],["vehicles","require"],["require","access"],["beach","allowing"],["allowing","random"],["random","access"],["access","across"],["across","delicate"],["considered","good"],["good","practice"],["fore","dunes"],["well","designed"],["designed","beach"],["durable","surface"],["surface","able"],["traffic","flow"],["flow","aesthetically"],["surrounding","structures"],["safe","traffic"],["traffic","flows"],["traffic","flow"],["strong","enough"],["safely","carry"],["vehicles","intended"],["discourage","beach"],["beach","users"],["concrete","ramp"],["concrete","ramp"],["natural","profile"],["normal","flow"],["waves","longshore"],["longshore","currents"],["currents","water"],["beach","profile"],["become","buried"],["good","surface"],["vehicular","traffic"],["beach","profile"],["longshore","currents"],["currents","creating"],["creating","deposits"],["behind","concrete"],["concrete","ramps"],["construct","requiring"],["requiring","use"],["quick","drying"],["drying","concrete"],["tidal","water"],["concrete","curing"],["curing","process"],["process","concrete"],["traffic","flows"],["soft","sand"],["road","registered"],["registered","passenger"],["passenger","vehicles"],["concrete","stairs"],["commonly","favored"],["beaches","adjacento"],["adjacento","population"],["population","centers"],["beach","users"],["users","may"],["may","arrive"],["street","shoes"],["ramp","would"],["safe","use"],["may","incorporate"],["ramps","allowing"],["allowing","pedestrians"],["small","boat"],["beach","withouthe"],["withouthe","aid"],["powered","vehicle"],["winch","concrete"],["concrete","ramps"],["prevent","buildup"],["may","make"],["vehicles","corduroy"],["corduroy","beach"],["corduroy","beach"],["treated","timber"],["timber","laid"],["laid","close"],["close","together"],["traffic","flow"],["commonly","used"],["pedestrian","access"],["access","paths"],["light","duty"],["duty","vehicular"],["vehicular","access"],["access","ways"],["naturally","conform"],["underlying","beach"],["dune","profile"],["especially","longshore"],["longshore","drift"],["drift","however"],["become","buried"],["surface","runoff"],["runoff","coming"],["vehicles","using"],["using","ithe"],["ithe","sediment"],["either","side"],["side","may"],["displaced","creating"],["spoon","drain"],["quickly","lead"],["serious","erosion"],["erosion","significant"],["significant","erosion"],["sediment","beside"],["pedestrian","users"],["users","may"],["may","fall"],["fabric","ramp"],["ramp","fabric"],["fabric","ramps"],["commonly","employed"],["temporary","purposes"],["underlying","sediment"],["hard","enough"],["supporthe","weight"],["prevent","vehicles"],["fabric","ramps"],["ramps","usually"],["usually","cease"],["one","tidal"],["tidal","cycle"],["sediment","foliage"],["foliage","ramp"],["foliage","ramp"],["well","formed"],["formed","sediment"],["sediment","ramp"],["plants","may"],["organic","material"],["ideally","suited"],["agricultural","vehicles"],["foliage","ramp"],["require","minimal"],["minimal","maintenance"],["initially","formed"],["beach","profile"],["gravel","ramp"],["gravel","ramp"],["filling","thexcavation"],["graduated","sizes"],["solid","surface"],["surface","according"],["traffic","gravel"],["gravel","ramps"],["less","expensive"],["concrete","ramps"],["carry","heavy"],["heavy","road"],["road","traffic"],["traffic","provided"],["provided","thexcavation"],["deep","enough"],["reach","solid"],["gravel","ramps"],["subjecto","erosion"],["profile","matches"],["surrounding","beach"],["beach","profile"],["gravel","ramp"],["ramp","may"],["may","become"],["finer","sediments"],["water","longest"],["longest","beaches"],["beaches","amongsthe"],["amongsthe","world"],["longest","beaches"],["brazil","ninety"],["ninety","mile"],["mile","beach"],["beach","victoria"],["victoria","ninety"],["ninety","mile"],["mile","beach"],["victoriaustralia","cox"],["mile","beach"],["beach","new"],["new","zealand"],["zealand","mile"],["mile","beach"],["beach","inew"],["inew","zealand"],["zealand","fraser"],["fraser","island"],["island","beach"],["queensland","australia"],["jersey","shore"],["long","beach"],["beach","washington"],["padre","island"],["island","beach"],["mexico","texas"],["texas","playa"],["mexico","beach"],["beach","wildlife"],["wildlife","file"],["file","kemp"],["sea","turtle"],["thumb","left"],["sea","turtle"],["turtle","nesting"],["berm","section"],["beach","beyond"],["plant","debris"],["beach","plants"],["potentially","harsh"],["sand","feed"],["material","deposited"],["beach","dwellers"],["dwellers","thendangered"],["species","rely"],["nesting","sea"],["sea","turtle"],["also","bury"],["beach","plants"],["plants","grow"],["ocean","beaches"],["organisms","adapted"],["salt","spray"],["spray","tidal"],["beaches","examples"],["beach","organisms"],["southeast","us"],["us","include"],["include","plants"],["plants","like"],["like","sea"],["rocket","beach"],["beach","morninglory"],["beach","peanut"],["ghost","crab"],["white","beach"],["beach","tiger"],["also","beach"],["beach","advisory"],["advisory","beach"],["beach","cleaner"],["cleaner","beach"],["beach","evolution"],["evolution","coast"],["coast","list"],["play","shore"],["shore","strand"],["strand","plain"],["plain","urban"],["urban","beach"],["beach","polo"],["polo","furthereading"],["beaches","anchor"],["anchor","press"],["garden","city"],["city","new"],["new","york"],["york","p"],["p","externalinks"],["externalinks","unesco"],["unesco","beach"],["beach","erosion"],["formation","world"],["largest","beach"],["beach","database"],["database","category"],["category","beaches"],["beaches","category"],["category","coastal"],["landforms","category"],["terminology","category"],["category","erosion"],["erosion","landforms"],["landforms","category"],["category","tourist"],["tourist","attractions"]],"all_collocations":["file man","war cove","cove near","usually consists","loose particles","often composed","rock geology","geology rock","gravel shingle","shingle beach","beach shingle","particles beach","occasionally biological","man made","made infrastructure","posts changing","changing rooms","may also","hospitality venuesuch","resorts camps","camps hotels","restaurants nearby","nearby wild","wild beaches","beaches also","also known","undiscovered beaches","manner wild","wild beaches","untouched beauty","preserved nature","nature beaches","beaches typically","typically occur","areas along","wind wave","ocean current","current action","geology deposits","file beach","four sections","beaches although","commonly associated","associated withe","withe word","word beaches","beaches also","also found","alongside large","large rivers","rivers beach","beach may","may refer","small systems","rock material","material moves","geological units","considerable size","larger geological","geological units","discussed elsewhere","shape ithe","ithe part","part mostly","water depending","depending upon","upon tide","less actively","actively influenced","beach berm","material comprising","active shoreline","slope leading","crest athe","long shore","raised underwater","may extend","extend well","well inland","berm crest","older crests","storm beach","beach resulting","large storm","storm waves","normal waves","pointhe influence","waves even","even storm","storm waves","material comprising","beach stops","small enough","enough sand","sand size","grains inland","deposit behind","beach becomes","beach profile","beach profile","winter months","temperate areas","calmer seas","longer periods","breaking wave","wave crests","beach profile","gentle wave","wave action","thiseason tends","transport sediment","beach towards","winds carry","inland forming","enhancing dunes","dunes conversely","beach profile","storm season","season winter","temperate areas","areas due","shorter periods","breaking wave","wave crests","crests higher","higher energy","energy waves","waves breaking","quick succession","succession tend","shallows keeping","carried along","longshore currents","carried outo","outo sea","form longshore","longshore bars","bars especially","especially longshore","longshore current","current meets","flooding stream","beach berm","beach profile","tropics tropical","tropical areas","storm season","season tends","summer months","calmer weather","weather commonly","commonly associated","associated withe","withe winter","winter season","storms coincide","unusually high","high tides","coastal flooding","flooding substantial","substantial quantities","material may","coastal plain","dunes behind","flow may","may alter","create new","powerful enough","longshore movement","difficulto define","significant period","time sediment","drift line","high point","material deposited","one potential","significant wind","wind movement","sand could","could occur","occur since","normal waves","sand beyond","area however","drift line","move inland","living beaches","pineapple press","press beaches","recreation file","left px","popular victorian","victorian seaside","seaside resort","file brighton","chain pier","pier seen","right brighton","chain pier","pier seen","th century","mid th","th century","first manifestation","global tourist","tourist industry","first seaside","seaside resorts","th century","frequenthe seaside","fashionable spa","spa towns","towns forecreation","health one","seaside resorts","north yorkshire","yorkshire scarborough","fashionable spa","spa town","town since","discovered running","th century","first rolling","rolling bathing","bathing machine","patronage royal","royal patronage","seaside resort","much larger","larger london","london market","beach became","upper class","class pleasure","new romanticism","romanticism romantic","romantic ideal","picturesque landscape","landscape jane","later victoria","united kingdom","kingdom queen","queen victoria","long standing","standing patronage","kent ensured","seaside residence","highly fashionable","fashionable possession","wealthy enough","one home","home seaside","seaside resorts","working class","class file","promenade c","working class","class began","began withe","withe development","offered cheap","affordable fares","fast growing","growing resortowns","blackpool branch","branch line","line branch","branch line","small seaside","seaside town","town blackpool","sustained economic","sudden influx","visitors arriving","rail provided","build accommodation","create new","new attractions","attractions leading","rapid cycle","practice among","lancashire cotton","cotton mill","mill owners","week everyear","repair machinery","became known","mills would","would close","different week","week allowing","allowing blackpool","reliable stream","prominent feature","pleasure pier","eclectic variety","north pier","pier blackpool","blackpool north","north pier","pier blackpool","completed rapidly","rapidly becoming","elite visitors","visitors central","central pier","pier blackpool","blackpool central","central pier","large open","open air","air dance","dance floor","floor many","many popular","popular beach","beach resorts","resorts werequipped","bathing machine","century thenglish","thenglish coastline","populations exceeding","exceeding expansion","expansion around","world file","file monte","monte carlo","carlo casino","casino seaside","seaside facade","p jpg","right seaside","seaside facade","monte carlo","seaside resort","resort abroad","well developed","developed english","english love","already become","popular destination","british upper","upper class","th century","first railway","completed making","residents oforeign","british numbered","coastline became","became renowned","europe including","including victoria","united kingdom","kingdom queen","queen victoriand","victoriand edward","edward vii","united kingdom","kingdom king","king edward","edward vii","vii michael","michael nelson","nelson queen","queen victoriand","continental european","european attitudes","attitudes towards","towards gambling","french entrepreneurs","monaco charles","charles iii","iii prince","monaco charles","charles iii","fran ois","ois blanc","french businessman","businessman arranged","take visitors","large luxury","luxury hotels","hotels gardens","builthe place","renamed monte","monte carlo","carlo commercial","commercial sea","sea bathing","bathing spread","united states","british empire","th century","florida east","east coast","coast railway","coastal sea","sea resorts","resorts developing","st augustine","miami beach","winter travelers","northern united","united states","theast coast","coast railway","thearly th","th century","century surfing","southern california","affordable air","air travel","truly global","global tourismarket","benefited areasuch","mediterranean australia","australia south","south africand","coastal sun","sun belt","belt regions","united states","states file","thumb summer","file cousins","lincoln city","thumb children","children walking","warm sunny","sunny days","victorian era","era many","many popular","popular seaside","seaside resort","resort beach","beach resorts","resorts werequipped","bathing machine","standard still","many muslim","muslim countries","countries athe","significantly different","hot weather","weather compared","adjacent areas","similar behavior","behavior might","might even","thirty countries","europe south","south africa","africa new","new zealand","zealand canada","canada costa","costa rica","rica south","south americand","best recreational","recreational beaches","awarded blue","blue flag","flag beach","beach blue","blue flag","flag status","status based","water quality","safety provision","provision subsequent","subsequent loss","tourism revenues","revenues beaches","use beach","beach cleaner","significantly many","many beaches","discharge zone","underdeveloped countries","countries even","developed countries","countries beach","beach closure","sanitary sewer","marine discharge","certain marine","marine species","frequent outcome","outcome artificial","areither permanent","monaco paris","paris copenhagen","copenhagen rotterdam","rotterdam nottingham","nottingham toronto","toronto beaches","hong kong","kong hong","hong kong","kong list","port area","area tianjin","pleasant environment","environment offered","beach style","style pools","zero depth","depth entry","wave pools","natural waves","zero entry","entry swimming","swimming pool","pool zero","zero depth","depth entry","entry pool","bottom surface","surface slopes","slopes gradually","depth another","another approach","called urban","urban beach","public park","park becoming","becoming common","large cities","cities urban","urban beaches","beaches attempto","natural beaches","mask city","play park","park beach","beach nourishment","nourishment involves","sand onto","onto beaches","health beach","beach nourishment","major beach","beach cities","cities around","world however","still appear","appear quite","quite natural","often many","many visitors","works undertaken","oftenot recognized","artificial reef","members torn","support natural","natural coastal","coastal environments","beach nourishment","snow cannon","access public","public access","jersey shore","purchase beach","beach tag","beaches also","also restrict","restrict dogs","year private","private beaches","beaches also","also private","shores may","may belong","usually posted","posted thentrance","special use","use occasion","occasion event","event may","granted upon","proper channels","legally obtain","obtain one","one public","public beaches","beaches public","public access","oregon thanks","state law","oregon beach","beach bill","guaranteed public","public access","columbia river","california state","state line","thathe public","public may","use beach","beach formation","formation beaches","wave action","ocean currents","currents move","move sand","suspension chemistry","chemistry suspension","suspension alternatively","alternatively sand","sand may","bouncing movement","large particles","particles beach","beach materials","materials come","rocks offshore","producing deposits","world along","along florida","emerald coast","coast comes","appalachian mountains","reef coral","coral reef","reef offshore","significant source","species ofish","create substantial","substantial quantities","sand particles","organic matter","coral particles","beach depends","depends upon","wind sediments","moving water","wind according","particle size","particles tend","still water","erosion established","established vegetation","vegetation especially","especially species","complex network","network root","root systems","resist erosion","fluid flow","flow athe","athe surface","surface layer","moving water","wind particles","average density","moving fluid","sediments found","beach tends","indicate thenergy","wind wave","wave systems","large rocks","water column","calmer areas","longshore currents","allow finer","creating mud","mud flats","beach depends","shingle waves","wave crests","long enough","breaking water","wave arrives","breaks fine","beach profile","beach compacted","compacted sediment","turbulent water","waves conversely","conversely waves","wave crests","following wave","wave crest","crest arrives","longshore currents","tides constructive","constructive waves","waves move","move material","destructive waves","waves move","move material","destructive waves","increased load","organic matter","suspension sandy","sandy beaches","destructive waves","material forming","beach shingle","shingle beaches","large particle","particle size","size allows","allows greater","thereby reducing","beach compacted","compacted fine","fine sediments","smooth beach","beach surface","surface wind","crust may","may form","ocean beaches","water leaving","sand particles","crust forms","additional protective","protective layer","wind erosion","erosion unless","unless disturbed","advancing tide","tide beach","horns form","incoming waves","sand shoreline","beach erosion","shape chiefly","weather eventhat","fast flowing","flowing water","high winds","beaches longshore","longshore currents","beach sediments","repair storm","storm damage","damage tidal","tidal waterways","waterways generally","generally change","adjacent beaches","small degrees","every tidal","tidal cycle","significant changes","beach effects","flora changes","beach may","may undermine","large trees","flora many","many beach","beach adapted","adapted speciesuch","coconut palms","fine root","root system","large root","root ball","withstand wave","wind action","stabilize beaches","beaches better","ball effects","adjacent land","land erosion","wind wave","wave action","action leading","eventually resulting","large quantities","material may","distributed along","beach front","front leading","shallows may","man inevitably","inevitably become","become subjecto","subjecto theffects","man made","made structures","long periods","influences may","may substantially","substantially alter","beach destruction","destruction oflora","oflora beach","beach front","front flora","flora plays","preventing beachead","beachead erosion","inland movement","network root","root systems","effective coastal","coastal defense","trap sand","sand particles","surface layer","dunes allowing","plant species","also protecthe","protecthe berm","high winds","winds freak","freak waves","flood waters","long periods","time well","well stabilized","erode leading","substantial changes","changes usually","usually occur","manyears freak","tsunami tidal","tidal waves","may substantially","substantially alter","shape profile","beach within","within hours","hours destruction","destruction oflora","excessive pedestrian","vehicular traffic","fresh water","water flows","flows may","may lead","destruction oflora","oflora may","gradual process","regular beach","beach users","often becomes","becomes immediately","immediately apparent","storms associated","associated withigh","withigh winds","winds freak","rapidly move","move large","large volumes","permanent water","water forming","forming offshore","offshore bars","beach exposed","low tide","tide large","rapid movements","exposed sand","adjacent areas","adequate supply","sand weather","weather conditions","allow vegetation","sediment wind","wind blown","blown sand","flood waters","coastal shallows","reed beds","underwater florand","florand fauna","coastal shallows","shallows file","file hidden","hidden beach","beach jpg","px hidden","hidden beach","southern croatia","croatia burning","land adjacento","residential development","development changes","surface wind","wind patterns","wind erosion","erosion farming","residential development","also commonly","commonly associated","local surface","surface water","water flows","storm water","water drains","may erode","beach creating","delta dense","dense vegetation","vegetation tends","absorb rainfall","rainfall reducing","longer periods","time destruction","natural vegetation","vegetation tends","organic matter","land onto","cleared land","land arriving","arriving athe","athe beachead","sand changing","fauna creation","beach access","access points","vehicular traffic","traffic accessing","beach forecreational","forecreational purposes","purposes may","may cause","cause increased","increased erosion","erosion athe","athe access","access points","beach surface","high water","water mark","mark recognition","beach front","front flora","caused many","many local","local authorities","authorities responsible","managing coastal","coastal areas","restrict beach","beach access","access points","physical structures","efforto protecthe","protecthe flora","often associated","associated withe","withe construction","access points","allow traffic","dunes without","without causing","damage concentration","runoff beaches","beaches provide","coastal plain","beach water","water borne","organic matter","coastal area","area runoff","beach may","may emerge","low tide","fresh water","water may","may also","also help","maintain underground","resist salt","salt water","surface flow","create constant","constant flows","ultimately form","inlet unless","unless longshore","longshore flows","flows deposit","deposit sediments","inlet may","may allow","allow tidal","salt water","areas inland","beach may","may also","also affecthe","affecthe quality","underground water","water supplies","water table","table deprivation","flora naturally","naturally occurring","beachead requires","requires fresh","drains may","water supplies","allow sea","sea water","ground water","water species","salt water","water may","may die","species adapted","salty environments","environments inappropriate","inappropriate beach","beach nourishment","nourishment beach","beach nourishment","efforto restore","erosion beach","beach nourishment","nourishment often","often involves","involves excavation","sediment may","may substantially","substantially different","naturally occurring","occurring beach","beach sand","extreme cases","cases beach","beach nourishment","nourishment may","may involve","involve placement","efforto permanently","permanently restore","shoreline subjecto","subjecto constant","constant erosion","often required","new sediment","sediment caused","longshore current","boat ramps","ramps creating","creating new","new current","current flows","beach sediments","addressed beach","beach nourishment","permanent feature","beach maintenance","beach nourishment","nourishment activities","activities care","care must","place new","thathe new","new sediments","sediments compact","aggressive wave","wind action","beach may","may form","light may","vegetation foreign","sediments may","may introduce","introduce flora","usually found","locality brighton","brighton beach","south coast","shingle beach","efforto withstand","withstand erosion","upper area","natural processes","processes integrated","naturally occurring","occurring shingle","base beach","beach access","access design","design file","file art","spain beach","beach access","important consideration","substantial numbers","vehicles require","require access","beach allowing","allowing random","random access","access across","across delicate","considered good","good practice","fore dunes","well designed","designed beach","durable surface","surface able","traffic flow","flow aesthetically","surrounding structures","safe traffic","traffic flows","traffic flow","strong enough","safely carry","vehicles intended","discourage beach","beach users","concrete ramp","concrete ramp","natural profile","normal flow","waves longshore","longshore currents","currents water","beach profile","become buried","good surface","vehicular traffic","beach profile","longshore currents","currents creating","creating deposits","behind concrete","concrete ramps","construct requiring","requiring use","quick drying","drying concrete","tidal water","concrete curing","curing process","process concrete","traffic flows","soft sand","road registered","registered passenger","passenger vehicles","concrete stairs","commonly favored","beaches adjacento","adjacento population","population centers","beach users","users may","may arrive","street shoes","ramp would","safe use","may incorporate","ramps allowing","allowing pedestrians","small boat","beach withouthe","withouthe aid","powered vehicle","winch concrete","concrete ramps","prevent buildup","may make","vehicles corduroy","corduroy beach","corduroy beach","treated timber","timber laid","laid close","close together","traffic flow","commonly used","pedestrian access","access paths","light duty","duty vehicular","vehicular access","access ways","naturally conform","underlying beach","dune profile","especially longshore","longshore drift","drift however","become buried","surface runoff","runoff coming","vehicles using","using ithe","ithe sediment","either side","side may","displaced creating","spoon drain","quickly lead","serious erosion","erosion significant","significant erosion","sediment beside","pedestrian users","users may","may fall","fabric ramp","ramp fabric","fabric ramps","commonly employed","temporary purposes","underlying sediment","hard enough","supporthe weight","prevent vehicles","fabric ramps","ramps usually","usually cease","one tidal","tidal cycle","sediment foliage","foliage ramp","foliage ramp","well formed","formed sediment","sediment ramp","plants may","organic material","ideally suited","agricultural vehicles","foliage ramp","require minimal","minimal maintenance","initially formed","beach profile","gravel ramp","gravel ramp","filling thexcavation","graduated sizes","solid surface","surface according","traffic gravel","gravel ramps","less expensive","concrete ramps","carry heavy","heavy road","road traffic","traffic provided","provided thexcavation","deep enough","reach solid","gravel ramps","subjecto erosion","profile matches","surrounding beach","beach profile","gravel ramp","ramp may","may become","finer sediments","water longest","longest beaches","beaches amongsthe","amongsthe world","longest beaches","brazil ninety","ninety mile","mile beach","beach victoria","victoria ninety","ninety mile","mile beach","victoriaustralia cox","mile beach","beach new","new zealand","zealand mile","mile beach","beach inew","inew zealand","zealand fraser","fraser island","island beach","queensland australia","jersey shore","long beach","beach washington","padre island","island beach","mexico texas","texas playa","mexico beach","beach wildlife","wildlife file","file kemp","sea turtle","sea turtle","turtle nesting","berm section","beach beyond","plant debris","beach plants","potentially harsh","sand feed","material deposited","beach dwellers","dwellers thendangered","species rely","nesting sea","sea turtle","also bury","beach plants","plants grow","ocean beaches","organisms adapted","salt spray","spray tidal","beaches examples","beach organisms","southeast us","us include","include plants","plants like","like sea","rocket beach","beach morninglory","beach peanut","ghost crab","white beach","beach tiger","also beach","beach advisory","advisory beach","beach cleaner","cleaner beach","beach evolution","evolution coast","coast list","play shore","shore strand","strand plain","plain urban","urban beach","beach polo","polo furthereading","beaches anchor","anchor press","garden city","city new","new york","york p","p externalinks","externalinks unesco","unesco beach","beach erosion","formation world","largest beach","beach database","database category","category beaches","beaches category","category coastal","landforms category","terminology category","category erosion","erosion landforms","landforms category","category tourist","tourist attractions"],"new_description":"file man war cove near dorset thumb px right beach along body water usually consists loose particles often composed rock geology rock gravel shingle beach shingle particles beach occasionally biological origin shell beaches man_made infrastructure posts changing rooms may_also hospitality venuesuch resorts camps hotels_restaurants nearby wild beaches also_known undeveloped undiscovered beaches developed manner wild beaches valued untouched beauty preserved nature beaches typically occur areas along coast wind wave ocean current action geology deposits file beach thumb px four sections beaches although shore commonly associated_withe word beaches also_found lakes alongside large rivers beach may refer small systems rock material moves offshore forces waves currents geological units considerable size former described detail larger geological units discussed elsewhere bars several parts beach relate processes form shape ithe part mostly water depending upon tide less actively influenced waves point tide termed beach berm berm deposit material comprising active shoreline berm face latter slope leading towards water crest athe_bottom face may one long shore raised underwater formed waves break may extend well inland berm crest may one older crests storm beach resulting large storm waves beyond influence normal waves pointhe influence waves even storm waves material comprising beach stops particles small enough sand size smaller feature wind force grains inland deposit behind beach becomes dune features called beach_profile beach_profile due change summer winter months temperate areas summer characterised calmer seas longer periods breaking wave crests beach_profile higher summer gentle wave action thiseason tends transport sediment beach towards berm deposited remains winds carry inland forming enhancing dunes conversely beach_profile lower storm season winter temperate areas due increased shorter periods breaking wave crests higher energy waves breaking quick succession tend shallows keeping suspension prone carried along beach longshore currents carried outo sea form longshore bars especially longshore current meets river flooding stream removal sediment beach berm thus beach_profile tropics tropical areas storm season tends summer months calmer weather commonly associated_withe winter season storms coincide unusually high tides freak tidal tsunami coastal flooding substantial quantities material may coastal plain dunes behind berm water flow may alter shape rivers create new athe streams powerful enough longshore movement line beach difficulto define field significant period time sediment always exchanged drift line high point material deposited waves one potential would point significant wind movement sand could occur since normal waves sand beyond area however drift line likely move inland assault storm florida living beaches guide curious pineapple press beaches recreation file thumb left_px popular victorian seaside_resort file brighton front chain pier seen thumb right brighton front chain pier seen th_century development beach popular mid_th century first manifestation global tourist_industry first seaside_resorts opened th_century aristocracy began frequenthe seaside well fashionable spa towns forecreation health one thearliest seaside_resorts north_yorkshire scarborough yorkshire fashionable spa town since stream water discovered running one cliffs south town th_century first rolling bathing machine introduced opening resort brighton reception patronage royal patronage kingeorge extended seaside_resort health pleasure much_larger london market beach became centre upper_class pleasure trend praised elevated new romanticism romantic ideal picturesque landscape jane novel example later victoria united_kingdom queen victoria long standing patronage isle wight kent ensured seaside residence considered highly fashionable possession wealthy enough afford one home seaside_resorts working_class file promenade jpg promenade c form leisure middle working_class began withe development railway offered cheap affordable fares fast_growing resortowns particular completion blackpool branch line branch line small seaside town blackpool led sustained economic boom sudden influx visitors arriving rail provided motivation entrepreneurs build accommodation create new attractions leading visitors rapid cycle growth intensified practice among lancashire cotton mill owners closing factories week everyear service repair machinery became_known week town mills would close different week allowing blackpool manage steady reliable stream visitors period summer prominent feature resort promenade pleasure pier eclectic variety performances people attention north pier blackpool north pier blackpool completed rapidly becoming centre attraction elite visitors central pier blackpool central pier completed theatre large open_air dance_floor many popular beach resorts werequipped bathing machine covering period considered thend century thenglish coastline large populations exceeding expansion around world file monte_carlo casino seaside facade p jpg thumb right seaside facade monte_carlo development seaside_resort abroad well developed english love beach french mediterranean already become_popular destination british upper_class thend th_century first railway nice completed making visitors europe residents oforeign british numbered coastline became renowned attracting royalty europe including victoria united_kingdom queen victoriand edward vii united_kingdom king edward vii michael nelson queen victoriand discovery riviera continental_european attitudes towards gambling tended lax britain british french entrepreneurs quick possibilities prince monaco charles iii prince monaco charles iii fran_ois blanc french businessman arranged steamship carriages take visitors nice monaco large luxury hotels gardens casinos builthe place renamed monte_carlo commercial sea bathing spread united_states parts british empire thend th_century late henry developed florida east_coast railway linked coastal sea resorts developing st_augustine miami beach winter travelers northern united_states canada theast_coast railway thearly_th century surfing developed hawaii australiand moving southern_california thearly cheap affordable air_travel catalyst growth truly global tourismarket benefited areasuch mediterranean australia south_africand coastal sun belt regions united_states file n jpg thumb summer n file cousins lincoln city thumb children walking beaches popular warm sunny days victorian_era many popular seaside_resort beach resorts werequipped bathing machine covering period considered standard still many muslim countries athe end spectrum beaches beach clothing optional allowed norms significantly different beach hot weather compared adjacent areas similar behavior might might even prosecuted thirty countries europe south_africa new_zealand canada costa_rica south_americand caribbean best recreational beaches awarded blue flag beach blue flag status based water quality safety provision subsequent loss tourism revenues beaches often waste litter use beach cleaner significantly many beaches discharge zone sewage underdeveloped countries even developed_countries beach closure occasional due sanitary sewer cases marine discharge disease contamination certain marine species frequent outcome artificial beaches artificial areither permanent temporary monaco paris copenhagen rotterdam nottingham toronto beaches hong_kong hong_kong list beaches singapore port tianjin port area tianjin qualities beach pleasant environment offered artificial beach style pools zero depth entry wave pools recreate natural waves upon beach zero entry swimming_pool zero depth entry pool bottom surface slopes gradually water depth another approach called urban beach form public park becoming common large_cities urban beaches attempto natural beaches fountains surf mask city cases used play park beach nourishment involves sand onto beaches improve health beach nourishment common major beach cities around world however beaches still appear quite natural often many visitors works undertaken beach beaches oftenot recognized consumers artificial foundation artificial reef members torn desire support natural coastal environments opportunities enhance quality surfing beach nourishment snow cannon restrictions access public access beaches restricted parts world example beaches jersey shore people purchase beach tag beach beaches also restrict dogs periods year private beaches also private along shores may belong neighborhood signs usually posted thentrance permit special use occasion event may granted upon proper channels legally obtain one public beaches public access beaches protected law ustate oregon thanks state law oregon beach bill guaranteed public access columbia_river california state line thathe public may free use beach formation beaches result wave action wave ocean currents move sand beach made particles held suspension chemistry suspension alternatively sand may moved geology bouncing movement large particles beach materials come erosion rocks offshore well erosion producing deposits sand world along florida emerald coast comes appalachian mountains reef coral reef offshore significant source sand species ofish feed attached coral rocks create substantial quantities sand particles lifetime feeding organic matter rock coral particles pass composition beach depends upon nature quantity sediments beach speed water wind sediments moved moving water wind according particle size state particles tend settle compact still water compacted erosion established vegetation especially species complex network root systems resist erosion fluid flow athe surface layer affected moving water wind particles held suspension increase power fluid holds increasing average density volume moving fluid nature sediments found beach tends indicate thenergy waves wind locality facing wind wave systems tend hold large rocks particles held suspension water column carried calmer areas longshore currents tides protected waves winds tend allow finer mud creating mud flats forests shape beach depends whether waves constructive destructive whether material shingle waves constructive period wave crests long enough breaking water settle wave arrives breaks fine lower beach_profile compact water beach compacted sediment movement turbulent water waves conversely waves destructive period wave crests remains suspension following wave crest arrives able settle compact susceptible erosion longshore currents tides constructive waves move material beach destructive waves move material beach seasons destructive waves shallows carry increased load sediment organic matter suspension sandy beaches turbulent destructive waves material forming beach shingle beaches quickly large particle size allows greater thereby reducing power beach compacted fine sediments form smooth beach surface wind hot seasons crust may form surface ocean beaches theat sun water leaving salt around sand particles crust forms additional protective layer wind erosion unless disturbed animals dissolved advancing tide beach horns form incoming waves sand horns sand form forms face sand shoreline beach erosion erosion beaches changed shape chiefly movement water wind weather eventhat associated fast flowing water high winds beaches longshore currents tend beach sediments repair storm damage tidal waterways generally change shape adjacent beaches small degrees every tidal cycle time changes become significant changes size location beach effects flora changes shape beach may undermine roots large trees flora many beach adapted speciesuch coconut palms fine root system large root ball tends withstand wave wind action tends stabilize beaches better trees ball effects adjacent land erosion beaches less rocks wind wave action leading coastal eventually resulting large quantities shallows material may distributed along beach front leading change habitat grasses shallows may buried deprived light coastal man inevitably become subjecto theffects man_made structures processes long_periods time influences may substantially alter shape coastline character beach destruction oflora beach front flora plays majorole stabilizing preventing beachead erosion inland movement dunes network root systems grasses palms able provide effective coastal defense trap sand particles surface layer dunes allowing plant species also protecthe berm erosion high winds freak waves flood waters long_periods time well stabilized areas tend tend erode leading substantial changes shape coastline changes usually occur periods manyears freak tsunami tidal waves storm may substantially alter shape profile location beach within hours destruction oflora berm use excessive pedestrian vehicular traffic disruption fresh water flows may lead erosion berm destruction oflora may gradual process regular beach users often becomes immediately apparent storms associated withigh winds freak rapidly move large volumes exposed unstable inland carrying permanent water forming offshore bars increasing area beach exposed low tide large rapid movements exposed sand bury flora adjacent areas loss habitat faunand area instability adequate supply sand weather conditions allow vegetation recover stabilize sediment wind blown sand continue permanently moved waves flood waters deposited coastal shallows reed beds changing character underwater florand fauna coastal shallows file hidden beach jpg thumb right px hidden beach southern croatia burning clearance vegetation land adjacento beachead farming residential development changes surface wind patterns surface beach wind erosion farming residential development also_commonly associated changes local surface water flows flows concentrated storm water drains onto beachead may erode beach creating lagoon delta dense vegetation tends absorb rainfall reducing speed runoff releasing longer periods time destruction burning clearance natural vegetation tends increase speed power rainfall runoff tend carry organic matter land onto beach sea flow constant cleared land arriving athe beachead tend material sand changing color fauna creation beach access points concentration vehicular traffic accessing beach forecreational purposes may cause increased erosion athe access points measures stabilize beach surface high water mark recognition dangers loss beach front flora caused many local_authorities responsible managing coastal areas restrict beach access points physical structures legal fence efforto protecthe flora measures often associated_withe construction structures access points allow traffic pass dunes without causing damage concentration runoff beaches provide filter coastal plain runoff naturally along beach water borne organic matter retained land feed flora coastal area runoff along beach tend beach may emerge beach low tide retention fresh water may_also help maintain underground resist salt water surface flow runoff diverted concentrated drains create constant flows beach sea_level beach ultimately form inlet unless longshore flows deposit sediments repair breach inlet may allow tidal salt water areas inland beach may_also affecthe quality underground water supplies theight water table deprivation runoff flora naturally occurring beachead requires fresh ofresh drains may plants water supplies allow sea water increasing ground water species able survive salt water may die replaced species adapted salty environments inappropriate beach nourishment beach nourishment sand sediments efforto restore beach damaged erosion beach nourishment often involves excavation sediments sand sediment may substantially different size appearance naturally occurring beach sand extreme cases beach nourishment may involve placement large efforto permanently restore shoreline subjecto constant erosion loss often required flow new sediment caused longshore current construction boat ramps creating new current flows sand behind structures beach sediments causes addressed beach nourishment become necessary permanent feature beach maintenance beach nourishment activities care must taken_place new thathe new sediments compact stabilize aggressive wave wind action erode concentrated far beach may form temporary encourage behind sediments fine light may compacted integrated vegetation foreign sediments may introduce flora fauna usually found locality brighton beach south coast england shingle beach large efforto withstand erosion upper area beach large made beach pedestrians period time natural processes integrated naturally occurring shingle base beach access design file art thumb mythology created sand beach santa des spain beach access important consideration substantial numbers pedestrians vehicles require access beach allowing random access across delicate considered good practice likely lead destruction erosion fore dunes well designed beach provide durable surface able withstand traffic flow aesthetically surrounding structures located area convenient users consistent safe traffic flows scaled match traffic flow wide strong enough safely carry size quantity pedestrians vehicles intended use maintained signed discourage beach users creating alternative may destructive concrete ramp steps concrete ramp follow natural profile beach prevent changing normal flow waves longshore currents water wind ramp beach_profile tend become buried cease provide good surface vehicular traffic ramp beach_profile tend longshore currents creating deposits front ramp behind concrete ramps beach construct requiring use quick drying concrete dam tidal water concrete curing process concrete favored traffic flows heavy access required vehicles adapted soft sand road registered passenger vehicles concrete stairs commonly favored beaches adjacento population centers beach users may arrive beach street shoes roadway higher beachead ramp would steep safe use pedestrians composite may incorporate central side one ramps allowing pedestrians lead small boat onto beach withouthe aid powered vehicle winch concrete ramps maintained prevent buildup moss may make wet pedestrians vehicles corduroy beach corduroy beach board chain array usually treated timber laid close together direction traffic flow secured end chain cable form pathway cheap easy construct quick deploy commonly_used pedestrian access paths light duty vehicular access ways naturally conform shape underlying beach dune profile well especially longshore drift however cease effective become buried erosion surface runoff coming beachead corduroy vehicles using ithe sediment either side may displaced creating spoon drain run quickly lead serious erosion significant erosion sediment beside corduroy completely make dangerous pedestrian users may fall fabric ramp fabric ramps commonly employed military temporary purposes underlying sediment hard enough supporthe weight traffic sheet fabric laid sand stabilize surface prevent vehicles fabric ramps usually cease useful one tidal cycle away buried sediment foliage ramp foliage ramp formed planting species hardy grasses well formed sediment ramp plants may supported placement layers organic material vines branches type ramp ideally suited use vehicles dune agricultural vehicles large foliage ramp require minimal maintenance initially formed follow beach_profile gravel ramp gravel ramp formed underlying filling thexcavation layers gravel graduated sizes defined john gravel compacted form solid surface according needs traffic gravel ramps less expensive concrete ramps able carry heavy road traffic provided thexcavation deep enough reach solid gravel ramps subjecto erosion water boards walls profile matches surrounding beach_profile gravel ramp may become stable finer sediments deposited water longest beaches amongsthe world longest beaches brazil ninety mile beach victoria ninety mile beach victoriaustralia cox cox bangladesh mile beach new_zealand mile beach inew_zealand fraser island beach queensland australia beach portugal jersey shore long_beach washington padre island beach gulf mexico texas playa beach mexico beach wildlife file kemp sea turtle thumb left kemp sea turtle nesting berm section beach beyond seen plant debris line beach plants animals potentially harsh animals sand feed material deposited waves insects feed beach dwellers thendangered species rely beaches nesting sea turtle also bury eggs ocean beach plants grow areas beach ocean beaches habitats organisms adapted salt spray tidal shifting organisms found beaches examples beach organisms southeast us include plants like sea rocket beach beach morninglory beach peanut animalsuch mole clams ghost crab white beach tiger also beach advisory beach cleaner beach evolution coast list art play shore strand plain urban beach polo furthereading waves beaches anchor press garden city_new_york p externalinks unesco beach erosion formation world largest beach database category beaches category coastal landforms category terminology category erosion landforms category_tourist attractions"},{"title":"Beach hut","description":"file cabines de bain berckjpg thumbeachuts in berck pas de calais france file badhytterjpg thumbeachuts by the baltic sea in h llviken sweden image wimereux beachutsjpg thumb right beachuts in front of modern housing development wimereux france file beachhousesmuizenbergbeachjpg thumb colourful beachuts at muizenberg beach in south africa beachut also known as a beach cabin or bathing box is a small usually wooden and often brightly coloured box above the high tide mark on popular bathing beaches they are generally used as a shelter from the sun or wind changing into and out of swimming costumes and for the safe storing of some personal belongingsome beachuts incorporate simple facilities for preparing food and hot drinks by either bottled gas or occasionally mains electricity bbc accessed february at many seaside resort s beachuts are arranged in one or more ranks along the top of the beach depending upon the location beachuts may be owned privately or may be owned by the local council or similar administrative body on popular beaches privately owned beachuts can command substantial prices due to their convenient location out of all proportion to their size and amenity a pre war wooden beachalet at west bexington dorset sold at auction for in and a beachut on mudeford spit sold for in however these werexceptional as in both cases overnight stays were possiblefrith maxine the tide turns against beachuts as charges erode seaside property prices the independent march accessed september prices in for typical huts around the uk started from in walton the naze and typically up to in january a beachut wasold in brighton victoriaustralia for a record today there are believed to be around beachuts in the uk locations where beachuts can be seen include lowestoft southwold walton the naze frinton seabersoch langland bay rotherslade rustington st helens isle of wight and mersea island locations in other countries include wimereux france cape town south africa nesodden norway and brighton victoria brighton and elsewhere around port philliport phillip australia holhiashi are small maldivians maldivian resting places usually found only in the maldives these small beachuts can be found near beaches or harbours image yarmouth jpg thumb right beachuts at great yarmouth norfolk the noted bathing boxes at brighton victoria brighton in australiare known to havexisted as far back as the bathing boxes are thoughto have been constructed and used largely as a response to the victorian morality of the age and are known to havexisted not only in australia but alson the beaches of england france and italy at around the same time they had evolved from the wheeled bathing machine s used by victorians to preserve their modesty george iii of the united kingdom george iii gave royal approval to the new fashion when he took a medicinal bath at weymouth to the musical accompaniment of god save the king while queen victoria installed one at osborne house osbourne house on the isle of wight in the s in thearly th century beachuts weregarded as holiday homes for the toiling classes but in the s their image revived george v and mary of teck queen mary spenthe day at a beachut in sussex and other owners have included the spencer family and laurence olivier during world war ii all uk beaches were closed the reopening in the late s and s led to resurgence of the british beacholiday and theyday of the beachut while many beachuts were former fishermen s huts boatsheds or converted bathing machinesome of thearliest purpose built beachuts in the uk werected at bournemouth either side of bournemouth pier in designed by f p dolamore bournemouth s borough engineer they were offered for hire for s per year huts or bungalows as they were styled were initially built before the world war i today bournemouth features around huts owned by the council there are in addition a further privately owned huts they vary in style from the traditional wooden shed like constructions to the ultra modern concreterrace style hutsuch as the s overstrand beachuts at boscombe these werenovated to designs by wayne and gerardine hemingway founders of the red or dead label as beach pods for the boscombe surf reef surf reef opened in autumnotable huts the queen s beachut inorfolk was destroyed by fire in the building had been owned by the royal family for years and was known to be much loved by the queen morecently the artistracey emin sold her whitstable beachuto the collector charlesaatchi for this hut was also destroyed by fire when the warehouse where it wastored burnt downhickman martin seaside scramble britain s beachut love affair the independent july accessed september in april bournemouth borough council bournemouth council obtained planning permission to site a beachut chapel on the sand to host wedding and civil partnership ceremonies the super beachut is located on bournemouth s beach under the west cliff lift file brighton beach vic pano jpg px center thumb the colourful bathing boxes in the melbourne suburb of brighton victoria brighton are a tourist icon of the city middle brighton pier and the city skyline are visible in the background see also bach new zealand bathing machine boatshed externalinks british seaside history bbc discovering southwold beachuts category huts category marine architecture category coastal construction category beaches hut category tourist accommodations","main_words":["file","de","de","calais","france","file","baltic","sea","h","sweden","image","thumb","right","beachuts","front","modern","housing","development","france","file","thumb","colourful","beachuts","beach","south_africa","beachut","also_known","beach","cabin","bathing","box","small","usually","wooden","often","coloured","box","high","tide","mark","popular","bathing","beaches","generally","used","shelter","sun","wind","changing","swimming","costumes","safe","storing","personal","beachuts","incorporate","simple","facilities","preparing","food","hot","drinks","either","gas","occasionally","mains","electricity","bbc","accessed","february","many","seaside_resort","beachuts","arranged","one","ranks","along","top","beach","depending","upon","location","beachuts","may","owned","privately","may","owned","local","council","similar","administrative","body","popular","beaches","privately_owned","beachuts","command","substantial","prices","due","convenient","location","proportion","size","amenity","pre_war","wooden","west","dorset","sold","auction","beachut","spit","sold","however","cases","overnight_stays","tide","turns","beachuts","charges","erode","seaside","property","prices","independent","march","accessed","september","prices","typical","huts","around","uk","started","walton","typically","january","beachut","wasold","brighton","victoriaustralia","record","today","believed","around","beachuts","uk","locations","beachuts","seen","include","walton","bay","st","helens","isle","wight","island","locations","countries","include","france","cape_town","south_africa","norway","brighton","victoria","brighton","elsewhere","around","port","phillip","australia","small","resting","places","usually","found","maldives","small","beachuts","found","near","beaches","image","yarmouth","jpg","thumb","right","beachuts","great","yarmouth","norfolk","noted","bathing","boxes","brighton","victoria","brighton","known","havexisted","far","back","bathing","boxes","thoughto","constructed","used","largely","response","victorian","age","known","havexisted","australia","alson","beaches","england","france","italy","around","time","evolved","bathing","machine","used","preserve","george","iii","united_kingdom","george","iii","gave","royal","approval","new","fashion","took","bath","musical","god","save","king","queen","victoria","installed","one","house","house","isle","wight","thearly_th","century","beachuts","holiday","homes","classes","image","revived","george","v","mary","teck","queen","mary","day","beachut","sussex","owners","included","spencer","family","laurence","world_war","ii","uk","beaches","closed","late","led","resurgence","british","beachut","many","beachuts","former","huts","converted","bathing","thearliest","purpose_built","beachuts","uk","bournemouth","either","side","bournemouth","pier","designed","f","p","bournemouth","borough","engineer","offered","hire","per_year","huts","styled","initially","built","world_war","today","bournemouth","features","around","huts","owned","council","addition","privately_owned","huts","vary","style","traditional","wooden","shed","like","ultra","modern","style","beachuts","designs","wayne","hemingway","founders","red","dead","label","beach","pods","surf","reef","surf","reef","opened","huts","queen","beachut","destroyed","fire","building","owned","royal","family","years","known","much","loved","queen","morecently","sold","hut","also","destroyed","fire","warehouse","burnt","martin","seaside","britain","beachut","love","affair","independent","july","accessed","september","april","bournemouth","borough","council","bournemouth","council","obtained","planning","permission","site","beachut","chapel","sand","host","wedding","civil","partnership","ceremonies","super","beachut","located","bournemouth","beach","west","cliff","lift","file","brighton","beach","vic","pano","jpg_px","center","thumb","colourful","bathing","boxes","melbourne","suburb","brighton","victoria","brighton","tourist","icon","city","middle","brighton","pier","city","skyline","visible","background","see_also","new_zealand","bathing","machine","externalinks","british","seaside","history","bbc","discovering","beachuts","category","huts","category","marine","architecture","category","coastal","construction","category","beaches","hut","category_tourist","accommodations"],"clean_bigrams":[["de","calais"],["calais","france"],["france","file"],["baltic","sea"],["sweden","image"],["thumb","right"],["right","beachuts"],["modern","housing"],["housing","development"],["france","file"],["thumb","colourful"],["colourful","beachuts"],["south","africa"],["africa","beachut"],["beachut","also"],["also","known"],["beach","cabin"],["bathing","box"],["small","usually"],["usually","wooden"],["coloured","box"],["high","tide"],["tide","mark"],["popular","bathing"],["bathing","beaches"],["generally","used"],["wind","changing"],["swimming","costumes"],["safe","storing"],["beachuts","incorporate"],["incorporate","simple"],["simple","facilities"],["preparing","food"],["hot","drinks"],["occasionally","mains"],["mains","electricity"],["electricity","bbc"],["bbc","accessed"],["accessed","february"],["many","seaside"],["seaside","resort"],["ranks","along"],["beach","depending"],["depending","upon"],["location","beachuts"],["beachuts","may"],["owned","privately"],["local","council"],["similar","administrative"],["administrative","body"],["popular","beaches"],["beaches","privately"],["privately","owned"],["owned","beachuts"],["command","substantial"],["substantial","prices"],["prices","due"],["convenient","location"],["pre","war"],["war","wooden"],["dorset","sold"],["spit","sold"],["cases","overnight"],["overnight","stays"],["tide","turns"],["charges","erode"],["erode","seaside"],["seaside","property"],["property","prices"],["independent","march"],["march","accessed"],["accessed","september"],["september","prices"],["typical","huts"],["huts","around"],["uk","started"],["beachut","wasold"],["brighton","victoriaustralia"],["record","today"],["around","beachuts"],["uk","locations"],["seen","include"],["st","helens"],["helens","isle"],["island","locations"],["countries","include"],["france","cape"],["cape","town"],["town","south"],["south","africa"],["brighton","victoria"],["victoria","brighton"],["elsewhere","around"],["around","port"],["phillip","australia"],["resting","places"],["places","usually"],["usually","found"],["small","beachuts"],["found","near"],["near","beaches"],["image","yarmouth"],["yarmouth","jpg"],["jpg","thumb"],["thumb","right"],["right","beachuts"],["great","yarmouth"],["yarmouth","norfolk"],["noted","bathing"],["bathing","boxes"],["brighton","victoria"],["victoria","brighton"],["far","back"],["bathing","boxes"],["used","largely"],["england","france"],["bathing","machine"],["george","iii"],["united","kingdom"],["kingdom","george"],["george","iii"],["iii","gave"],["gave","royal"],["royal","approval"],["new","fashion"],["god","save"],["queen","victoria"],["victoria","installed"],["installed","one"],["thearly","th"],["th","century"],["century","beachuts"],["holiday","homes"],["image","revived"],["revived","george"],["george","v"],["teck","queen"],["queen","mary"],["spencer","family"],["world","war"],["war","ii"],["uk","beaches"],["many","beachuts"],["converted","bathing"],["thearliest","purpose"],["purpose","built"],["built","beachuts"],["bournemouth","either"],["either","side"],["bournemouth","pier"],["f","p"],["bournemouth","borough"],["borough","engineer"],["per","year"],["year","huts"],["initially","built"],["world","war"],["today","bournemouth"],["bournemouth","features"],["features","around"],["around","huts"],["huts","owned"],["privately","owned"],["owned","huts"],["traditional","wooden"],["wooden","shed"],["shed","like"],["ultra","modern"],["hemingway","founders"],["dead","label"],["beach","pods"],["surf","reef"],["reef","surf"],["surf","reef"],["reef","opened"],["royal","family"],["much","loved"],["queen","morecently"],["also","destroyed"],["martin","seaside"],["beachut","love"],["love","affair"],["independent","july"],["july","accessed"],["accessed","september"],["april","bournemouth"],["bournemouth","borough"],["borough","council"],["council","bournemouth"],["bournemouth","council"],["council","obtained"],["obtained","planning"],["planning","permission"],["beachut","chapel"],["host","wedding"],["civil","partnership"],["partnership","ceremonies"],["super","beachut"],["west","cliff"],["cliff","lift"],["lift","file"],["file","brighton"],["brighton","beach"],["beach","vic"],["vic","pano"],["pano","jpg"],["jpg","px"],["px","center"],["center","thumb"],["thumb","colourful"],["colourful","bathing"],["bathing","boxes"],["melbourne","suburb"],["brighton","victoria"],["victoria","brighton"],["tourist","icon"],["city","middle"],["middle","brighton"],["brighton","pier"],["city","skyline"],["background","see"],["see","also"],["new","zealand"],["zealand","bathing"],["bathing","machine"],["externalinks","british"],["british","seaside"],["seaside","history"],["history","bbc"],["bbc","discovering"],["beachuts","category"],["category","huts"],["huts","category"],["category","marine"],["marine","architecture"],["architecture","category"],["category","coastal"],["coastal","construction"],["construction","category"],["category","beaches"],["beaches","hut"],["hut","category"],["category","tourist"],["tourist","accommodations"]],"all_collocations":["de calais","calais france","france file","baltic sea","sweden image","right beachuts","modern housing","housing development","france file","thumb colourful","colourful beachuts","south africa","africa beachut","beachut also","also known","beach cabin","bathing box","small usually","usually wooden","coloured box","high tide","tide mark","popular bathing","bathing beaches","generally used","wind changing","swimming costumes","safe storing","beachuts incorporate","incorporate simple","simple facilities","preparing food","hot drinks","occasionally mains","mains electricity","electricity bbc","bbc accessed","accessed february","many seaside","seaside resort","ranks along","beach depending","depending upon","location beachuts","beachuts may","owned privately","local council","similar administrative","administrative body","popular beaches","beaches privately","privately owned","owned beachuts","command substantial","substantial prices","prices due","convenient location","pre war","war wooden","dorset sold","spit sold","cases overnight","overnight stays","tide turns","charges erode","erode seaside","seaside property","property prices","independent march","march accessed","accessed september","september prices","typical huts","huts around","uk started","beachut wasold","brighton victoriaustralia","record today","around beachuts","uk locations","seen include","st helens","helens isle","island locations","countries include","france cape","cape town","town south","south africa","brighton victoria","victoria brighton","elsewhere around","around port","phillip australia","resting places","places usually","usually found","small beachuts","found near","near beaches","image yarmouth","yarmouth jpg","right beachuts","great yarmouth","yarmouth norfolk","noted bathing","bathing boxes","brighton victoria","victoria brighton","far back","bathing boxes","used largely","england france","bathing machine","george iii","united kingdom","kingdom george","george iii","iii gave","gave royal","royal approval","new fashion","god save","queen victoria","victoria installed","installed one","thearly th","th century","century beachuts","holiday homes","image revived","revived george","george v","teck queen","queen mary","spencer family","world war","war ii","uk beaches","many beachuts","converted bathing","thearliest purpose","purpose built","built beachuts","bournemouth either","either side","bournemouth pier","f p","bournemouth borough","borough engineer","per year","year huts","initially built","world war","today bournemouth","bournemouth features","features around","around huts","huts owned","privately owned","owned huts","traditional wooden","wooden shed","shed like","ultra modern","hemingway founders","dead label","beach pods","surf reef","reef surf","surf reef","reef opened","royal family","much loved","queen morecently","also destroyed","martin seaside","beachut love","love affair","independent july","july accessed","accessed september","april bournemouth","bournemouth borough","borough council","council bournemouth","bournemouth council","council obtained","obtained planning","planning permission","beachut chapel","host wedding","civil partnership","partnership ceremonies","super beachut","west cliff","cliff lift","lift file","file brighton","brighton beach","beach vic","vic pano","pano jpg","jpg px","px center","center thumb","thumb colourful","colourful bathing","bathing boxes","melbourne suburb","brighton victoria","victoria brighton","tourist icon","city middle","middle brighton","brighton pier","city skyline","background see","see also","new zealand","zealand bathing","bathing machine","externalinks british","british seaside","seaside history","history bbc","bbc discovering","beachuts category","category huts","huts category","category marine","marine architecture","architecture category","category coastal","coastal construction","construction category","category beaches","beaches hut","hut category","category tourist","tourist accommodations"],"new_description":"file de de calais france file baltic sea h sweden image thumb right beachuts front modern housing development france file thumb colourful beachuts beach south_africa beachut also_known beach cabin bathing box small usually wooden often coloured box high tide mark popular bathing beaches generally used shelter sun wind changing swimming costumes safe storing personal beachuts incorporate simple facilities preparing food hot drinks either gas occasionally mains electricity bbc accessed february many seaside_resort beachuts arranged one ranks along top beach depending upon location beachuts may owned privately may owned local council similar administrative body popular beaches privately_owned beachuts command substantial prices due convenient location proportion size amenity pre_war wooden west dorset sold auction beachut spit sold however cases overnight_stays tide turns beachuts charges erode seaside property prices independent march accessed september prices typical huts around uk started walton typically january beachut wasold brighton victoriaustralia record today believed around beachuts uk locations beachuts seen include walton bay st helens isle wight island locations countries include france cape_town south_africa norway brighton victoria brighton elsewhere around port phillip australia small resting places usually found maldives small beachuts found near beaches image yarmouth jpg thumb right beachuts great yarmouth norfolk noted bathing boxes brighton victoria brighton known havexisted far back bathing boxes thoughto constructed used largely response victorian age known havexisted australia alson beaches england france italy around time evolved bathing machine used preserve george iii united_kingdom george iii gave royal approval new fashion took bath musical god save king queen victoria installed one house house isle wight thearly_th century beachuts holiday homes classes image revived george v mary teck queen mary day beachut sussex owners included spencer family laurence world_war ii uk beaches closed late led resurgence british beachut many beachuts former huts converted bathing thearliest purpose_built beachuts uk bournemouth either side bournemouth pier designed f p bournemouth borough engineer offered hire per_year huts styled initially built world_war today bournemouth features around huts owned council addition privately_owned huts vary style traditional wooden shed like ultra modern style beachuts designs wayne hemingway founders red dead label beach pods surf reef surf reef opened huts queen beachut destroyed fire building owned royal family years known much loved queen morecently sold hut also destroyed fire warehouse burnt martin seaside britain beachut love affair independent july accessed september april bournemouth borough council bournemouth council obtained planning permission site beachut chapel sand host wedding civil partnership ceremonies super beachut located bournemouth beach west cliff lift file brighton beach vic pano jpg_px center thumb colourful bathing boxes melbourne suburb brighton victoria brighton tourist icon city middle brighton pier city skyline visible background see_also new_zealand bathing machine externalinks british seaside history bbc discovering beachuts category huts category marine architecture category coastal construction category beaches hut category_tourist accommodations"},{"title":"Beautiful England","description":"beautiful england was the title of a series of short illustrated travel guide books first published in britain by blackie and son limited blackie son around and continuing in print until the s each title featured a particularegion town or city in england was illustrated by watercolour landscape painter e w haslehust blackie son also published otherelated series beautiful scotland vols or pts in vol beautiful ireland leinster ulster munster connaught painted by alex williams described by stephen gwynn vols or pts in and beautiful switzerland chamonix lausanne and its environs lucerne villars and its environs all pictured andescribed by george flemwell book titles file w haslehusthe roman bathjpg thumb the roman bath in bath somerset bath somerset from bath and wells file w haslehust beregisjpg thumberegis dorset from theart of wessex beautiful england series bradley a g thenglish lakes danks william canterbury thomas edward windsor castle sidney heath sidney theart of wessex how frederick douglas oxford walter jerrold walter norwich and the broads mitton g e the thames jerrold walter shakespeare land barwell noel cambridge benson george york edward thomas poethomas edward the isle of wight edwards charles bennett j h e chester gilchrist murray the peak district heath sidney the cornish riviera nicklin j a dickens land godfrey elizabethe new forest heath sidney exeter jerrold walter hampton court gilchrist murray the dukeries morley george warwick and leamington salmon arthur leslie dartmoor salmon arthur leslie bath and wells heath sidney bournemouth poole and christchurcheath sidney swanage andistrict higgins walter hastings and neighbourhood jerrold walter folkestone andover jerrold walter theart of london jerrold walter through london s highways jerrold walter in london s by ways jerrold walterambles in greater london beautiful scotland series eyre todd george loch lomond loch katrine and the trossachs geddie john edinburgh geddie john the scott country geddie john the shores ofife beautiful ireland series gwynn s l ulster gwynn s leinster gwynn s l munster gwynn s l connaught gorges mary killarney externalinks beautiful england category travel guide books category geography of the united kingdom","main_words":["beautiful","england","title","series","short","illustrated","travel_guide_books","first_published","britain","blackie","son","limited","blackie","son","around","continuing","print","title","featured","particularegion","town","city","england","illustrated","landscape","painter","e","w","blackie","son","also_published","otherelated","series","beautiful","scotland","vol","beautiful","ireland","ulster","connaught","painted","alex","williams","described","stephen","gwynn","beautiful","switzerland","lausanne","environs","lucerne","environs","pictured","andescribed","titles","file","w","roman","thumb","roman","bath","bath_somerset","bath_somerset","bath","wells","file","w","dorset","theart","beautiful","england","series","bradley","g","thenglish","lakes","william","canterbury","thomas","edward","windsor","castle","sidney","heath","sidney","theart","frederick","douglas","oxford","walter","jerrold","walter","norwich","g","e","thames","jerrold","walter","shakespeare","land","noel","cambridge","benson","george","york","edward","thomas","edward","isle","wight","edwards","charles","bennett","j","h","e","chester","gilchrist","murray","peak","district","heath","sidney","riviera","j","land","godfrey","new","forest","heath","sidney","exeter","jerrold","walter","hampton","court","gilchrist","murray","george","warwick","salmon","arthur","leslie","salmon","arthur","leslie","bath","wells","heath","sidney","bournemouth","poole","sidney","walter","neighbourhood","jerrold","walter","jerrold","walter","theart","london","jerrold","walter","london","highways","jerrold","walter","jerrold","greater_london","beautiful","scotland","series","todd","george","loch","loch","john","edinburgh","john","scott","country","john","shores","beautiful","ireland","series","gwynn","l","ulster","gwynn","gwynn","l","gwynn","l","connaught","mary","externalinks","beautiful","category","geography","united_kingdom"],"clean_bigrams":[["beautiful","england"],["short","illustrated"],["illustrated","travel"],["travel","guide"],["guide","books"],["books","first"],["first","published"],["blackie","son"],["son","limited"],["limited","blackie"],["blackie","son"],["son","around"],["title","featured"],["particularegion","town"],["landscape","painter"],["painter","e"],["e","w"],["blackie","son"],["son","also"],["also","published"],["published","otherelated"],["otherelated","series"],["series","beautiful"],["beautiful","scotland"],["vol","beautiful"],["beautiful","ireland"],["connaught","painted"],["alex","williams"],["williams","described"],["stephen","gwynn"],["beautiful","switzerland"],["environs","lucerne"],["pictured","andescribed"],["book","titles"],["titles","file"],["file","w"],["roman","bath"],["bath","somerset"],["somerset","bath"],["bath","somerset"],["somerset","bath"],["wells","file"],["file","w"],["beautiful","england"],["england","series"],["series","bradley"],["g","thenglish"],["thenglish","lakes"],["william","canterbury"],["canterbury","thomas"],["thomas","edward"],["edward","windsor"],["windsor","castle"],["castle","sidney"],["sidney","heath"],["heath","sidney"],["sidney","theart"],["frederick","douglas"],["douglas","oxford"],["oxford","walter"],["walter","jerrold"],["jerrold","walter"],["walter","norwich"],["g","e"],["thames","jerrold"],["jerrold","walter"],["walter","shakespeare"],["shakespeare","land"],["noel","cambridge"],["cambridge","benson"],["benson","george"],["george","york"],["york","edward"],["edward","thomas"],["thomas","edward"],["wight","edwards"],["edwards","charles"],["charles","bennett"],["bennett","j"],["j","h"],["h","e"],["e","chester"],["chester","gilchrist"],["gilchrist","murray"],["peak","district"],["district","heath"],["heath","sidney"],["dickens","land"],["land","godfrey"],["new","forest"],["forest","heath"],["heath","sidney"],["sidney","exeter"],["exeter","jerrold"],["jerrold","walter"],["walter","hampton"],["hampton","court"],["court","gilchrist"],["gilchrist","murray"],["george","warwick"],["salmon","arthur"],["arthur","leslie"],["salmon","arthur"],["arthur","leslie"],["leslie","bath"],["wells","heath"],["heath","sidney"],["sidney","bournemouth"],["bournemouth","poole"],["neighbourhood","jerrold"],["jerrold","walter"],["walter","jerrold"],["jerrold","walter"],["walter","theart"],["london","jerrold"],["jerrold","walter"],["highways","jerrold"],["jerrold","walter"],["ways","jerrold"],["greater","london"],["london","beautiful"],["beautiful","scotland"],["scotland","series"],["todd","george"],["george","loch"],["john","edinburgh"],["scott","country"],["beautiful","ireland"],["ireland","series"],["series","gwynn"],["l","ulster"],["ulster","gwynn"],["l","connaught"],["externalinks","beautiful"],["beautiful","england"],["england","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","geography"],["united","kingdom"]],"all_collocations":["beautiful england","short illustrated","illustrated travel","travel guide","guide books","books first","first published","blackie son","son limited","limited blackie","blackie son","son around","title featured","particularegion town","landscape painter","painter e","e w","blackie son","son also","also published","published otherelated","otherelated series","series beautiful","beautiful scotland","vol beautiful","beautiful ireland","connaught painted","alex williams","williams described","stephen gwynn","beautiful switzerland","environs lucerne","pictured andescribed","book titles","titles file","file w","roman bath","bath somerset","somerset bath","bath somerset","somerset bath","wells file","file w","beautiful england","england series","series bradley","g thenglish","thenglish lakes","william canterbury","canterbury thomas","thomas edward","edward windsor","windsor castle","castle sidney","sidney heath","heath sidney","sidney theart","frederick douglas","douglas oxford","oxford walter","walter jerrold","jerrold walter","walter norwich","g e","thames jerrold","jerrold walter","walter shakespeare","shakespeare land","noel cambridge","cambridge benson","benson george","george york","york edward","edward thomas","thomas edward","wight edwards","edwards charles","charles bennett","bennett j","j h","h e","e chester","chester gilchrist","gilchrist murray","peak district","district heath","heath sidney","dickens land","land godfrey","new forest","forest heath","heath sidney","sidney exeter","exeter jerrold","jerrold walter","walter hampton","hampton court","court gilchrist","gilchrist murray","george warwick","salmon arthur","arthur leslie","salmon arthur","arthur leslie","leslie bath","wells heath","heath sidney","sidney bournemouth","bournemouth poole","neighbourhood jerrold","jerrold walter","walter jerrold","jerrold walter","walter theart","london jerrold","jerrold walter","highways jerrold","jerrold walter","ways jerrold","greater london","london beautiful","beautiful scotland","scotland series","todd george","george loch","john edinburgh","scott country","beautiful ireland","ireland series","series gwynn","l ulster","ulster gwynn","l connaught","externalinks beautiful","beautiful england","england category","category travel","travel guide","guide books","books category","category geography","united kingdom"],"new_description":"beautiful england title series short illustrated travel_guide_books first_published britain blackie son limited blackie son around continuing print title featured particularegion town city england illustrated landscape painter e w blackie son also_published otherelated series beautiful scotland vol beautiful ireland ulster connaught painted alex williams described stephen gwynn beautiful switzerland lausanne environs lucerne environs pictured andescribed george_book titles file w roman thumb roman bath bath_somerset bath_somerset bath wells file w dorset theart beautiful england series bradley g thenglish lakes william canterbury thomas edward windsor castle sidney heath sidney theart frederick douglas oxford walter jerrold walter norwich g e thames jerrold walter shakespeare land noel cambridge benson george york edward thomas edward isle wight edwards charles bennett j h e chester gilchrist murray peak district heath sidney riviera j dickens land godfrey new forest heath sidney exeter jerrold walter hampton court gilchrist murray george warwick salmon arthur leslie salmon arthur leslie bath wells heath sidney bournemouth poole sidney walter neighbourhood jerrold walter jerrold walter theart london jerrold walter london highways jerrold walter london_ways jerrold greater_london beautiful scotland series todd george loch loch john edinburgh john scott country john shores beautiful ireland series gwynn l ulster gwynn gwynn l gwynn l connaught mary externalinks beautiful england_category_travel_guide_books category geography united_kingdom"},{"title":"Beijing This Month","description":"beijing this month btm is a free monthly english language magazine published in beijing by the beijing foreign cultural exchanges centre in association withe beijing city government history and profile the magazine s first issue appeared inon audited self reported circulation of copies per monthe magazine can be found at beijing hotels office buildings and cultural sites indeed anywhere with large numbers of tourists including beijing capital international airport advertising is primarily of hotelshows and restaurants in central beijing btm primarily focuses on tourism and the promotion of beijing being an arm of the beijingovernment unusual or out of hours access to sensitive sites in the city such as the temple of heaven or the great wall is often arranged and the magazine features high quality photography of such places issues are usually dedicated to a particular theme the olympic torch relay china s eight major cuisines and beijing s many architectural styles arexamples from june august and septemberespectively externalinks official site category establishments in china category chinese magazines category city guides category english language magazines category free magazines category listings magazines category local interest magazines category magazinestablished in category magazines published in beijing","main_words":["beijing","month","free","monthly","english_language","magazine_published","beijing","beijing","foreign","centre","association_withe","beijing","city","government","history","profile","magazine","first_issue","appeared","inon","audited","self","reported","circulation","copies","per","monthe","magazine","found","beijing","hotels","office","buildings","cultural","sites","indeed","anywhere","large_numbers","tourists","including","beijing","capital","international_airport","advertising","primarily","restaurants","central","beijing","primarily","focuses","tourism_promotion","beijing","arm","unusual","hours","access","sensitive","sites","city","temple","heaven","great","wall","often","arranged","magazine","features","high_quality","photography","places","issues","usually","dedicated","particular","theme","olympic","china","eight","major","cuisines","beijing","many","architectural","styles","arexamples","june","august","externalinks_official","site_category","establishments","magazines_category_city_guides","category_english_language_magazines","category_free_magazines","category","listings","magazines_category_local_interest_magazines","category_magazinestablished","category_magazines_published","beijing"],"clean_bigrams":[["free","monthly"],["monthly","english"],["english","language"],["language","magazine"],["magazine","published"],["beijing","foreign"],["foreign","cultural"],["cultural","exchanges"],["exchanges","centre"],["association","withe"],["withe","beijing"],["beijing","city"],["city","government"],["government","history"],["first","issue"],["issue","appeared"],["appeared","inon"],["inon","audited"],["audited","self"],["self","reported"],["reported","circulation"],["copies","per"],["per","monthe"],["monthe","magazine"],["beijing","hotels"],["hotels","office"],["office","buildings"],["cultural","sites"],["sites","indeed"],["indeed","anywhere"],["large","numbers"],["tourists","including"],["including","beijing"],["beijing","capital"],["capital","international"],["international","airport"],["airport","advertising"],["central","beijing"],["primarily","focuses"],["hours","access"],["sensitive","sites"],["great","wall"],["often","arranged"],["magazine","features"],["features","high"],["high","quality"],["quality","photography"],["places","issues"],["usually","dedicated"],["particular","theme"],["eight","major"],["major","cuisines"],["many","architectural"],["architectural","styles"],["styles","arexamples"],["june","august"],["externalinks","official"],["official","site"],["site","category"],["category","establishments"],["china","category"],["category","chinese"],["chinese","magazines"],["magazines","category"],["category","city"],["city","guides"],["guides","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","free"],["free","magazines"],["magazines","category"],["category","listings"],["listings","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"]],"all_collocations":["free monthly","monthly english","english language","language magazine","magazine published","beijing foreign","foreign cultural","cultural exchanges","exchanges centre","association withe","withe beijing","beijing city","city government","government history","first issue","issue appeared","appeared inon","inon audited","audited self","self reported","reported circulation","copies per","per monthe","monthe magazine","beijing hotels","hotels office","office buildings","cultural sites","sites indeed","indeed anywhere","large numbers","tourists including","including beijing","beijing capital","capital international","international airport","airport advertising","central beijing","primarily focuses","hours access","sensitive sites","great wall","often arranged","magazine features","features high","high quality","quality photography","places issues","usually dedicated","particular theme","eight major","major cuisines","many architectural","architectural styles","styles arexamples","june august","externalinks official","official site","site category","category establishments","china category","category chinese","chinese magazines","magazines category","category city","city guides","guides category","category english","english language","language magazines","magazines category","category free","free magazines","magazines category","category listings","listings magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines published"],"new_description":"beijing month free monthly english_language magazine_published beijing beijing foreign cultural_exchanges centre association_withe beijing city government history profile magazine first_issue appeared inon audited self reported circulation copies per monthe magazine found beijing hotels office buildings cultural sites indeed anywhere large_numbers tourists including beijing capital international_airport advertising primarily restaurants central beijing primarily focuses tourism_promotion beijing arm unusual hours access sensitive sites city temple heaven great wall often arranged magazine features high_quality photography places issues usually dedicated particular theme olympic china eight major cuisines beijing many architectural styles arexamples june august externalinks_official site_category establishments china_category_chinese magazines_category_city_guides category_english_language_magazines category_free_magazines category listings magazines_category_local_interest_magazines category_magazinestablished category_magazines_published beijing"},{"title":"Bellhop","description":"image her highness and the bellboy trailerjpg thumb px robert walker actor born robert walker as a bellboy in the film her highness and the bellboy a bellhop north america or hotel porter international is a hotel porter carrier porter who helps patron s witheir luggage while check in checking in or out bellhops often wear a uniform see bell boy hat like certain other page assistance occupation page boy s or doorman profession doormen this occupation is also called bellmand bellboy inorth america image fourooms ver jpg righthumb px tim roth center as ted the bellboy from the film fourooms duties and functions the job s name is derived from the facthathe hotel s front desk clerk rang a bell to summon an employee who would hop jump to attention athe desk to receive instructions the term porter is used in the united kingdom and much of thenglish speaking world bellboy or bellhop is an american english term this employee traditionally was a boy or adolescent male hence the term bellboy today s bellhops must be quick witted good with people and outgoing bellhops will meet a variety of different peopleach day and must have the social skills to deal withem duties often include opening the front door moving luggage valet ing cars calling cabs transportinguests giving directions performing basiconcierge work and responding to the guest s needs they must be able to escort guests into theirooms while carrying luggage or help move any baggage a customer needs in many countriesuch as the united states it is customary to gratuity tip such an employee for hiservice famous bellboys image bellhop in japanjpg thumb right upright px bellboy from a hotel in kyoto japan brandon flowers born june who is the american frontman keyboardist and primary lyricist of the las vegas based rock band the killerserved as a bellhop athe gold coast hotel and casino in las vegas ted serios was a chicago bellboy who gained notoriety in the s by producing thoughtographs on polaroid film whiche claimed were produced using psychic powers karl ernst was a sturmabteilungruppenf hrer who in early was the sturmabteilung leader in berlin before joining the nazi party he had been a hotel bellboy and a bouncer doorman bouncer at a gay nightclubellhops in popular culture the belgian comic strip character spirou comicspirou was originally a bellboy throughout many of his albums he always wore a red bellhop suit in later stories this was reduced to him just wearing his bellhop cap in the comedy shorthe bell boy roscoe arbuckle and buster keaton play bell boys the bellboy is a comedy film starring jerry lewis in whiche plays the titular character the film the bellboy and the playgirls also features a bellboy the song bell boy song bell boy by the who has the character jimmy discover that someone he looked up to is now a bell boy in the film fourooms tim roth plays a bellhop who goes through some rough times in the classic i love lucy episode hollywood at last bobby the bellboy portrayed by bob jellison makes his first appearance see also porter carrier skycap bellhops moving help externalinks category hospitality occupations category personal care and service occupations","main_words":["image","highness","bellboy","thumb","px","robert","walker","actor","born","robert","walker","bellboy","film","highness","bellboy","bellhop","north_america","hotel","porter","international_hotel","porter","carrier","porter","helps","patron","witheir","luggage","check","checking","bellhops","often","wear","uniform","see","bell","boy","hat","like","certain","page","assistance","occupation","page","boy","doorman","profession","doormen","occupation","also_called","bellboy","inorth_america","image","fourooms","jpg_righthumb","px","tim","roth","center","ted","bellboy","film","fourooms","duties","functions","job","name","derived","facthathe","hotel","front_desk","clerk","bell","employee","would","hop","jump","attention","athe","desk","receive","instructions","term","porter","used","united_kingdom","much","thenglish","speaking","world","bellboy","bellhop","american_english","term","employee","traditionally","boy","adolescent","male","hence","term","bellboy","today","bellhops","must","quick","good","people","bellhops","meet","variety","different","day","must","social","skills","deal","withem","duties","often","include","opening","front","door","moving","luggage","valet","ing","cars","calling","giving","directions","performing","work","responding","guest","needs","must","able","guests","carrying","luggage","help","move","baggage","customer","needs","many_countriesuch","united_states","customary","gratuity","tip","employee","famous","bellboys","image","bellhop","thumb","right_upright","px","bellboy","hotel","kyoto","japan","flowers","born","june","american","primary","las_vegas","based","rock","band","bellhop","athe","gold_coast","hotel","casino","las_vegas","ted","chicago","bellboy","gained","notoriety","producing","film","whiche","claimed","produced","using","powers","karl","ernst","hrer","early","leader","berlin","joining","nazi","party","hotel","bellboy","bouncer_doorman","bouncer","gay","popular_culture","belgian","comic","strip","character","originally","bellboy","throughout","many","always","wore","red","bellhop","suit","later","stories","reduced","wearing","bellhop","cap","comedy","bell","boy","buster_keaton","play","bell","boys","bellboy","comedy","film","starring","jerry","lewis","whiche","plays","character","film","bellboy","also","features","bellboy","song","bell","boy","song","bell","boy","character","jimmy","discover","someone","looked","bell","boy","film","fourooms","tim","roth","plays","bellhop","goes","rough","times","classic","love","lucy","episode","hollywood","last","bobby","bellboy","portrayed","bob","makes","first","appearance","see_also","porter","carrier","bellhops","moving","help","externalinks_category","hospitality_occupations_category","personal","care","service","occupations"],"clean_bigrams":[["thumb","px"],["px","robert"],["robert","walker"],["walker","actor"],["actor","born"],["born","robert"],["robert","walker"],["bellhop","north"],["north","america"],["hotel","porter"],["porter","international"],["hotel","porter"],["porter","carrier"],["carrier","porter"],["helps","patron"],["witheir","luggage"],["bellhops","often"],["often","wear"],["uniform","see"],["see","bell"],["bell","boy"],["boy","hat"],["hat","like"],["like","certain"],["page","assistance"],["assistance","occupation"],["occupation","page"],["page","boy"],["doorman","profession"],["profession","doormen"],["also","called"],["bellboy","inorth"],["inorth","america"],["america","image"],["image","fourooms"],["jpg","righthumb"],["righthumb","px"],["px","tim"],["tim","roth"],["roth","center"],["film","fourooms"],["fourooms","duties"],["facthathe","hotel"],["front","desk"],["desk","clerk"],["would","hop"],["hop","jump"],["attention","athe"],["athe","desk"],["receive","instructions"],["term","porter"],["united","kingdom"],["thenglish","speaking"],["speaking","world"],["world","bellboy"],["american","english"],["english","term"],["employee","traditionally"],["adolescent","male"],["male","hence"],["term","bellboy"],["bellboy","today"],["bellhops","must"],["social","skills"],["deal","withem"],["withem","duties"],["duties","often"],["often","include"],["include","opening"],["front","door"],["door","moving"],["moving","luggage"],["luggage","valet"],["valet","ing"],["ing","cars"],["cars","calling"],["giving","directions"],["directions","performing"],["carrying","luggage"],["help","move"],["customer","needs"],["many","countriesuch"],["united","states"],["gratuity","tip"],["famous","bellboys"],["bellboys","image"],["image","bellhop"],["thumb","right"],["right","upright"],["upright","px"],["px","bellboy"],["kyoto","japan"],["flowers","born"],["born","june"],["las","vegas"],["vegas","based"],["based","rock"],["rock","band"],["bellhop","athe"],["athe","gold"],["gold","coast"],["coast","hotel"],["las","vegas"],["vegas","ted"],["chicago","bellboy"],["gained","notoriety"],["film","whiche"],["whiche","claimed"],["produced","using"],["powers","karl"],["karl","ernst"],["nazi","party"],["hotel","bellboy"],["bouncer","doorman"],["doorman","bouncer"],["popular","culture"],["belgian","comic"],["comic","strip"],["strip","character"],["bellboy","throughout"],["throughout","many"],["always","wore"],["red","bellhop"],["bellhop","suit"],["later","stories"],["bellhop","cap"],["bell","boy"],["buster","keaton"],["keaton","play"],["play","bell"],["bell","boys"],["comedy","film"],["film","starring"],["starring","jerry"],["jerry","lewis"],["whiche","plays"],["also","features"],["song","bell"],["bell","boy"],["boy","song"],["song","bell"],["bell","boy"],["character","jimmy"],["jimmy","discover"],["bell","boy"],["film","fourooms"],["fourooms","tim"],["tim","roth"],["roth","plays"],["rough","times"],["love","lucy"],["lucy","episode"],["episode","hollywood"],["last","bobby"],["bellboy","portrayed"],["first","appearance"],["appearance","see"],["see","also"],["also","porter"],["porter","carrier"],["bellhops","moving"],["moving","help"],["help","externalinks"],["externalinks","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","personal"],["personal","care"],["service","occupations"]],"all_collocations":["px robert","robert walker","walker actor","actor born","born robert","robert walker","bellhop north","north america","hotel porter","porter international","hotel porter","porter carrier","carrier porter","helps patron","witheir luggage","bellhops often","often wear","uniform see","see bell","bell boy","boy hat","hat like","like certain","page assistance","assistance occupation","occupation page","page boy","doorman profession","profession doormen","also called","bellboy inorth","inorth america","america image","image fourooms","jpg righthumb","righthumb px","px tim","tim roth","roth center","film fourooms","fourooms duties","facthathe hotel","front desk","desk clerk","would hop","hop jump","attention athe","athe desk","receive instructions","term porter","united kingdom","thenglish speaking","speaking world","world bellboy","american english","english term","employee traditionally","adolescent male","male hence","term bellboy","bellboy today","bellhops must","social skills","deal withem","withem duties","duties often","often include","include opening","front door","door moving","moving luggage","luggage valet","valet ing","ing cars","cars calling","giving directions","directions performing","carrying luggage","help move","customer needs","many countriesuch","united states","gratuity tip","famous bellboys","bellboys image","image bellhop","right upright","upright px","px bellboy","kyoto japan","flowers born","born june","las vegas","vegas based","based rock","rock band","bellhop athe","athe gold","gold coast","coast hotel","las vegas","vegas ted","chicago bellboy","gained notoriety","film whiche","whiche claimed","produced using","powers karl","karl ernst","nazi party","hotel bellboy","bouncer doorman","doorman bouncer","popular culture","belgian comic","comic strip","strip character","bellboy throughout","throughout many","always wore","red bellhop","bellhop suit","later stories","bellhop cap","bell boy","buster keaton","keaton play","play bell","bell boys","comedy film","film starring","starring jerry","jerry lewis","whiche plays","also features","song bell","bell boy","boy song","song bell","bell boy","character jimmy","jimmy discover","bell boy","film fourooms","fourooms tim","tim roth","roth plays","rough times","love lucy","lucy episode","episode hollywood","last bobby","bellboy portrayed","first appearance","appearance see","see also","also porter","porter carrier","bellhops moving","moving help","help externalinks","externalinks category","category hospitality","hospitality occupations","occupations category","category personal","personal care","service occupations"],"new_description":"image highness bellboy thumb px robert walker actor born robert walker bellboy film highness bellboy bellhop north_america hotel porter international_hotel porter carrier porter helps patron witheir luggage check checking bellhops often wear uniform see bell boy hat like certain page assistance occupation page boy doorman profession doormen occupation also_called bellboy inorth_america image fourooms jpg_righthumb px tim roth center ted bellboy film fourooms duties functions job name derived facthathe hotel front_desk clerk bell employee would hop jump attention athe desk receive instructions term porter used united_kingdom much thenglish speaking world bellboy bellhop american_english term employee traditionally boy adolescent male hence term bellboy today bellhops must quick good people bellhops meet variety different day must social skills deal withem duties often include opening front door moving luggage valet ing cars calling giving directions performing work responding guest needs must able guests carrying luggage help move baggage customer needs many_countriesuch united_states customary gratuity tip employee famous bellboys image bellhop thumb right_upright px bellboy hotel kyoto japan flowers born june american primary las_vegas based rock band bellhop athe gold_coast hotel casino las_vegas ted chicago bellboy gained notoriety producing film whiche claimed produced using powers karl ernst hrer early leader berlin joining nazi party hotel bellboy bouncer_doorman bouncer gay popular_culture belgian comic strip character originally bellboy throughout many always wore red bellhop suit later stories reduced wearing bellhop cap comedy bell boy buster_keaton play bell boys bellboy comedy film starring jerry lewis whiche plays character film bellboy also features bellboy song bell boy song bell boy character jimmy discover someone looked bell boy film fourooms tim roth plays bellhop goes rough times classic love lucy episode hollywood last bobby bellboy portrayed bob makes first appearance see_also porter carrier bellhops moving help externalinks_category hospitality_occupations_category personal care service occupations"},{"title":"Benedict Schools","description":"postcode ct jx lea ofsted yes urn staff enrollment gender co educational mixed lower age upper age houses colours publication free label free label free label free website name wwwbenedictch the benedict school german b n dict schule is the largest private school in switzerland it includes various types of schoolsuch as the language school the commercial school the business administration school the hotel management school health care and information technology is also a part of the benedict international education group the b n dict schools are located throughout switzerland with branches in zurich bern lucerne and st gallen young adults who have completed years oformal schooling can take up various courses here such as business administration and information technology classes are offered on adult further education language commerce medicine health and information technology history dr gaston b n dict a linguist and a former professor athe university of southern california established his first school in lausanne switzerland in the first benedict language manual appeared in the benedict school zurich was founded in the free system was introduced in the businesschool formal graduation was founded in the areas of medicine and health were added in partner schools of b n dict are bvs businesschool bhms business and hotel management schooluzern partner universities robert gordon university aberdeen uk city university of seattle wa usa languages the b n dict schools use the free system for the students language which involves the participantsetting their own content and speed of learning courseschool year the goal is to get young people to make independent career choices through deeper insight and consolidation of previous education that will allow an optimal integration into a job higher or graduateducation businesschool the businesschool offers to all b n dict schools a complete business curriculum the awards are accredited through the swiss association of commerce schools vsh with a recognized office and commerce diplomas well as a certified swiss confederate f higkeitszeugnis as businessman businesswoman thextra occupational trade school is also certified through the vsh with a certifiediploma health care continuing education courses in various medical areas are alsoffered such as dr med and hospital secretarial skills health counselor and fitness trainers information technology additional to basic it subjects recognized and certified siz ecdl diplomas are also awarded certification b n dict schools are certified by an eduqua certification swiss association for quality and management systemsqs in further education famous graduates lucien favre trainer of the fussballclub z rich fcz more benedict international education group externalinks b n dict schule business and hotel management school bhms is a member of the b n dict switzerland chain of schools category universities in switzerland category hospitality schools category organisations based in z rich category organisations based in lucerne category organisations based in bern category companies based in st gallen category businesschools in switzerland category adult education category educational institutions established in category education in z rich category education in lucerne de b n dict schulen","main_words":["postcode","lea","yes","staff","gender","educational","mixed","lower","age","upper","age","houses","colours","publication","free","label","free","label","free","label","free","website","name","benedict","school","german","b","n_dict","largest","private","school","switzerland","includes","various","types","language","school","commercial","school","business_administration","school","hotel_management","school","health_care","information_technology","also","part","benedict","international","education","group","b","n_dict","schools","located","throughout","switzerland","branches","zurich","bern","lucerne","st","gallen","young","adults","completed","years","take","various","courses","business_administration","information_technology","classes","offered","adult","education","language","commerce","medicine","health","information_technology","history","b","n_dict","former","professor","athe_university","southern_california","established","first","school","lausanne","switzerland","first","benedict","language","manual","appeared","benedict","school","zurich","founded","free","system","introduced","businesschool","formal","graduation","founded","areas","medicine","health","added","partner","schools","b","n_dict","businesschool","business","hotel_management","partner","universities","robert","gordon","university","aberdeen","uk","city","university","seattle","usa","languages","b","n_dict","schools","use","free","system","students","language","involves","content","speed","learning","year","goal","get","young_people","make","independent","career","choices","deeper","insight","consolidation","previous","education","allow","optimal","integration","job","higher","businesschool","businesschool","offers","b","n_dict","schools","complete","business","curriculum","awards","accredited","swiss","association","commerce","schools","vsh","recognized","office","commerce","well","certified","swiss","confederate","f","businessman","occupational","trade","school","also","certified","vsh","health_care","continuing","education","courses","various","medical","areas","alsoffered","hospital","skills","health","fitness","information_technology","additional","basic","subjects","recognized","certified","also","awarded","certification","b","n_dict","schools","certified","certification","swiss","association","quality","management","education","famous","graduates","trainer","rich","benedict","international","education","group","externalinks","b","n_dict","business","hotel_management","school","member","b","n_dict","switzerland","chain","schools","category","universities","switzerland_category","category_organisations_based","rich","category_organisations_based","lucerne","category_organisations_based","bern","category_companies_based","st","gallen","category","switzerland_category","adult","education","category_educational","institutions","established","category_education","rich","category_education","lucerne","de","b","n_dict"],"clean_bigrams":[["educational","mixed"],["mixed","lower"],["lower","age"],["age","upper"],["upper","age"],["age","houses"],["houses","colours"],["colours","publication"],["publication","free"],["free","label"],["label","free"],["free","label"],["label","free"],["free","label"],["label","free"],["free","website"],["website","name"],["benedict","school"],["school","german"],["german","b"],["b","n"],["n","dict"],["largest","private"],["private","school"],["includes","various"],["various","types"],["language","school"],["commercial","school"],["business","administration"],["administration","school"],["hotel","management"],["management","school"],["school","health"],["health","care"],["information","technology"],["benedict","international"],["international","education"],["education","group"],["b","n"],["n","dict"],["dict","schools"],["located","throughout"],["throughout","switzerland"],["zurich","bern"],["bern","lucerne"],["st","gallen"],["gallen","young"],["young","adults"],["completed","years"],["various","courses"],["business","administration"],["information","technology"],["technology","classes"],["adult","education"],["education","language"],["language","commerce"],["commerce","medicine"],["medicine","health"],["information","technology"],["technology","history"],["b","n"],["n","dict"],["former","professor"],["professor","athe"],["athe","university"],["southern","california"],["california","established"],["first","school"],["lausanne","switzerland"],["first","benedict"],["benedict","language"],["language","manual"],["manual","appeared"],["benedict","school"],["school","zurich"],["free","system"],["businesschool","formal"],["formal","graduation"],["medicine","health"],["partner","schools"],["b","n"],["n","dict"],["hotel","management"],["partner","universities"],["universities","robert"],["robert","gordon"],["gordon","university"],["university","aberdeen"],["aberdeen","uk"],["uk","city"],["city","university"],["usa","languages"],["b","n"],["n","dict"],["dict","schools"],["schools","use"],["free","system"],["students","language"],["get","young"],["young","people"],["make","independent"],["independent","career"],["career","choices"],["deeper","insight"],["previous","education"],["optimal","integration"],["job","higher"],["businesschool","offers"],["b","n"],["n","dict"],["dict","schools"],["complete","business"],["business","curriculum"],["swiss","association"],["commerce","schools"],["schools","vsh"],["recognized","office"],["certified","swiss"],["swiss","confederate"],["confederate","f"],["occupational","trade"],["trade","school"],["also","certified"],["health","care"],["care","continuing"],["continuing","education"],["education","courses"],["various","medical"],["medical","areas"],["skills","health"],["information","technology"],["technology","additional"],["subjects","recognized"],["also","awarded"],["awarded","certification"],["certification","b"],["b","n"],["n","dict"],["dict","schools"],["certification","swiss"],["swiss","association"],["education","famous"],["famous","graduates"],["benedict","international"],["international","education"],["education","group"],["group","externalinks"],["externalinks","b"],["b","n"],["n","dict"],["hotel","management"],["management","school"],["b","n"],["n","dict"],["dict","switzerland"],["switzerland","chain"],["schools","category"],["category","universities"],["switzerland","category"],["category","hospitality"],["hospitality","schools"],["schools","category"],["category","organisations"],["organisations","based"],["rich","category"],["category","organisations"],["organisations","based"],["lucerne","category"],["category","organisations"],["organisations","based"],["bern","category"],["category","companies"],["companies","based"],["st","gallen"],["gallen","category"],["switzerland","category"],["category","adult"],["adult","education"],["education","category"],["category","educational"],["educational","institutions"],["institutions","established"],["category","education"],["rich","category"],["category","education"],["lucerne","de"],["de","b"],["b","n"],["n","dict"]],"all_collocations":["educational mixed","mixed lower","lower age","age upper","upper age","age houses","houses colours","colours publication","publication free","free label","label free","free label","label free","free label","label free","free website","website name","benedict school","school german","german b","b n","n dict","largest private","private school","includes various","various types","language school","commercial school","business administration","administration school","hotel management","management school","school health","health care","information technology","benedict international","international education","education group","b n","n dict","dict schools","located throughout","throughout switzerland","zurich bern","bern lucerne","st gallen","gallen young","young adults","completed years","various courses","business administration","information technology","technology classes","adult education","education language","language commerce","commerce medicine","medicine health","information technology","technology history","b n","n dict","former professor","professor athe","athe university","southern california","california established","first school","lausanne switzerland","first benedict","benedict language","language manual","manual appeared","benedict school","school zurich","free system","businesschool formal","formal graduation","medicine health","partner schools","b n","n dict","hotel management","partner universities","universities robert","robert gordon","gordon university","university aberdeen","aberdeen uk","uk city","city university","usa languages","b n","n dict","dict schools","schools use","free system","students language","get young","young people","make independent","independent career","career choices","deeper insight","previous education","optimal integration","job higher","businesschool offers","b n","n dict","dict schools","complete business","business curriculum","swiss association","commerce schools","schools vsh","recognized office","certified swiss","swiss confederate","confederate f","occupational trade","trade school","also certified","health care","care continuing","continuing education","education courses","various medical","medical areas","skills health","information technology","technology additional","subjects recognized","also awarded","awarded certification","certification b","b n","n dict","dict schools","certification swiss","swiss association","education famous","famous graduates","benedict international","international education","education group","group externalinks","externalinks b","b n","n dict","hotel management","management school","b n","n dict","dict switzerland","switzerland chain","schools category","category universities","switzerland category","category hospitality","hospitality schools","schools category","category organisations","organisations based","rich category","category organisations","organisations based","lucerne category","category organisations","organisations based","bern category","category companies","companies based","st gallen","gallen category","switzerland category","category adult","adult education","education category","category educational","educational institutions","institutions established","category education","rich category","category education","lucerne de","de b","b n","n dict"],"new_description":"postcode lea yes staff gender educational mixed lower age upper age houses colours publication free label free label free label free website name benedict school german b n_dict largest private school switzerland includes various types language school commercial school business_administration school hotel_management school health_care information_technology also part benedict international education group b n_dict schools located throughout switzerland branches zurich bern lucerne st gallen young adults completed years take various courses business_administration information_technology classes offered adult education language commerce medicine health information_technology history b n_dict former professor athe_university southern_california established first school lausanne switzerland first benedict language manual appeared benedict school zurich founded free system introduced businesschool formal graduation founded areas medicine health added partner schools b n_dict businesschool business hotel_management partner universities robert gordon university aberdeen uk city university seattle usa languages b n_dict schools use free system students language involves content speed learning year goal get young_people make independent career choices deeper insight consolidation previous education allow optimal integration job higher businesschool businesschool offers b n_dict schools complete business curriculum awards accredited swiss association commerce schools vsh recognized office commerce well certified swiss confederate f businessman occupational trade school also certified vsh health_care continuing education courses various medical areas alsoffered hospital skills health fitness information_technology additional basic subjects recognized certified also awarded certification b n_dict schools certified certification swiss association quality management education famous graduates trainer rich benedict international education group externalinks b n_dict business hotel_management school member b n_dict switzerland chain schools category universities switzerland_category hospitality_schools category_organisations_based rich category_organisations_based lucerne category_organisations_based bern category_companies_based st gallen category switzerland_category adult education category_educational institutions established category_education rich category_education lucerne de b n_dict"},{"title":"Benefit tourism","description":"benefitourism is a political term coined in the s and later used for the perceived threathat a huge number of citizens from eight of the tenew nations given membership in theuropean union in thenlargement of theuropean union would move to thexisting member states to benefit from their social welfare system s rather than to work this threat was in several countries used as a reason for creating temporary work or benefit restrictions for citizens from theight new member states the guardian january leader false figures retrieved the guardian february uk seto act against benefitourism retrieved criticism claims of benefitourism by eu citizens have been described as unfounded and misleading by research organisations a major study by the centre foresearch and migration at university college london published in demonstrated that eu emigration migrant s to united kingdom britain from the new member countries were better educated more likely to be in employment and much less likely to be claiming benefits than uk bornationals financial times july wave of eu immigrants pays its way retrieved centre foresearch and migration press release july the benefit of migrationew evidence of the fiscal costs and benefits of migration to the uk from central and eastern europe retrieved scare stories of benefits tourism propagated by somedia in the uk have been described as baseless by the migrants rights network which in march pointed outhat eu migrants must meethe usual habitual residence tests in order to register for british national insurance without a national insurance number you cannot receive any benefits and are in fact moving tother areas of theu wheremployment opportunities are better migrants rights network march the latest rumours of a benefitourism fromay are unfounded and misleading retrieved in theuropean commission ordered an eu wide study on the impact of mobileu citizens onational social security systems thistudy confirmed thathe vast majority of eu migrants move to find or take up employment no evidence was found thathe main motivation of eu citizens to migrate was benefit related on average immigrant s received less benefits thanationals of the member state where they aresiding dg employment social affairs and inclusion via dg justice framework contract final report submitted by icf ghk in association with milieu ltd a fact finding analysis on the impact on the member statesocial security systems of thentitlements of non active intra eu migrants to special non contributory cash benefits and healthcare granted on the basis of residence retrieved another study conducted in concentrated on the uk specifically thistudy showed that from to eu migrants that recently arrived in the uk had paid billion in taxes to the uk treasury after deduction of the benefits they received in that same period university college london press release retrieved c dustmann and t frattini the fiscal effects of immigration to the uk theconomic journal doi ecoj retrieved euobserver uk makes billion profit from eu migrants novemberetrieved the independent european union migrants add bn to the british economy in just a decade novemberetrieved see also economic results of migration category human migration category types of tourism category words coined in the s","main_words":["benefitourism","political","term","coined","later","used","perceived","huge","number","citizens","eight","nations","given","membership","theuropean_union","theuropean_union","would","move","thexisting","member_states","benefit","social","welfare","system","rather","work","threat","several","countries","used","reason","creating","temporary","work","benefit","restrictions","citizens","theight","new","member_states","guardian","january","leader","false","figures","retrieved","guardian","february","uk","seto","act","benefitourism","retrieved","criticism","claims","benefitourism","citizens","described","misleading","research","organisations","major","study","centre","foresearch","migration","university","college","london","published","demonstrated","emigration","migrant","united_kingdom","britain","new","member_countries","better","educated","likely","employment","much","less","likely","claiming","benefits","uk","financial","times","july","wave","immigrants","pays","way","retrieved","centre","foresearch","migration","press_release","july","benefit","evidence","fiscal","costs","benefits","migration","uk","central","eastern_europe","retrieved","stories","benefits","tourism","uk","described","migrants","rights","network","march","pointed","outhat","migrants","must","meethe","usual","residence","tests","order","register","british","national","insurance","without","national","insurance","number","cannot","receive","benefits","fact","moving","tother","areas","opportunities","better","migrants","rights","network","march","latest","benefitourism","fromay","misleading","retrieved","theuropean_commission","ordered","wide","study","impact","citizens","onational","social","security","systems","confirmed","thathe","vast_majority","migrants","move","find","take","employment","evidence","found","thathe","main","motivation","citizens","benefit","related","average","immigrant","received","less","benefits","member","state","employment","social","affairs","inclusion","via","justice","framework","contract","final","report","submitted","association","ltd","fact","finding","analysis","impact","member","security","systems","non","active","migrants","special","non","cash","benefits","healthcare","granted","basis","residence","retrieved","another","study","conducted","concentrated","uk","specifically","showed","migrants","recently","arrived","uk","paid","billion","taxes","uk","treasury","deduction","benefits","received","period","university","college","london","press_release","retrieved","c","fiscal","effects","immigration","uk","theconomic","journal","retrieved","uk","makes","billion","profit","migrants","novemberetrieved","independent","european","union","migrants","add","british","economy","decade","novemberetrieved","see_also","economic","results","migration","category_human","migration","category_types","tourism_category","words","coined"],"clean_bigrams":[["political","term"],["term","coined"],["later","used"],["huge","number"],["nations","given"],["given","membership"],["theuropean","union"],["theuropean","union"],["union","would"],["would","move"],["thexisting","member"],["member","states"],["social","welfare"],["welfare","system"],["several","countries"],["countries","used"],["creating","temporary"],["temporary","work"],["benefit","restrictions"],["theight","new"],["new","member"],["member","states"],["guardian","january"],["january","leader"],["leader","false"],["false","figures"],["figures","retrieved"],["guardian","february"],["february","uk"],["uk","seto"],["seto","act"],["benefitourism","retrieved"],["retrieved","criticism"],["criticism","claims"],["research","organisations"],["major","study"],["centre","foresearch"],["university","college"],["college","london"],["london","published"],["emigration","migrant"],["united","kingdom"],["kingdom","britain"],["new","member"],["member","countries"],["better","educated"],["much","less"],["less","likely"],["claiming","benefits"],["financial","times"],["times","july"],["july","wave"],["immigrants","pays"],["way","retrieved"],["retrieved","centre"],["centre","foresearch"],["migration","press"],["press","release"],["release","july"],["fiscal","costs"],["eastern","europe"],["europe","retrieved"],["benefits","tourism"],["migrants","rights"],["rights","network"],["network","march"],["march","pointed"],["pointed","outhat"],["migrants","must"],["must","meethe"],["meethe","usual"],["residence","tests"],["british","national"],["national","insurance"],["insurance","without"],["national","insurance"],["insurance","number"],["fact","moving"],["moving","tother"],["tother","areas"],["better","migrants"],["migrants","rights"],["rights","network"],["network","march"],["benefitourism","fromay"],["misleading","retrieved"],["theuropean","commission"],["commission","ordered"],["wide","study"],["citizens","onational"],["onational","social"],["social","security"],["security","systems"],["confirmed","thathe"],["thathe","vast"],["vast","majority"],["migrants","move"],["found","thathe"],["thathe","main"],["main","motivation"],["benefit","related"],["average","immigrant"],["received","less"],["less","benefits"],["member","state"],["employment","social"],["social","affairs"],["inclusion","via"],["justice","framework"],["framework","contract"],["contract","final"],["final","report"],["report","submitted"],["fact","finding"],["finding","analysis"],["security","systems"],["non","active"],["special","non"],["cash","benefits"],["healthcare","granted"],["residence","retrieved"],["retrieved","another"],["another","study"],["study","conducted"],["uk","specifically"],["recently","arrived"],["paid","billion"],["uk","treasury"],["period","university"],["university","college"],["college","london"],["london","press"],["press","release"],["release","retrieved"],["retrieved","c"],["fiscal","effects"],["uk","theconomic"],["theconomic","journal"],["uk","makes"],["makes","billion"],["billion","profit"],["migrants","novemberetrieved"],["independent","european"],["european","union"],["union","migrants"],["migrants","add"],["british","economy"],["decade","novemberetrieved"],["novemberetrieved","see"],["see","also"],["also","economic"],["economic","results"],["migration","category"],["category","human"],["human","migration"],["migration","category"],["category","types"],["tourism","category"],["category","words"],["words","coined"]],"all_collocations":["political term","term coined","later used","huge number","nations given","given membership","theuropean union","theuropean union","union would","would move","thexisting member","member states","social welfare","welfare system","several countries","countries used","creating temporary","temporary work","benefit restrictions","theight new","new member","member states","guardian january","january leader","leader false","false figures","figures retrieved","guardian february","february uk","uk seto","seto act","benefitourism retrieved","retrieved criticism","criticism claims","research organisations","major study","centre foresearch","university college","college london","london published","emigration migrant","united kingdom","kingdom britain","new member","member countries","better educated","much less","less likely","claiming benefits","financial times","times july","july wave","immigrants pays","way retrieved","retrieved centre","centre foresearch","migration press","press release","release july","fiscal costs","eastern europe","europe retrieved","benefits tourism","migrants rights","rights network","network march","march pointed","pointed outhat","migrants must","must meethe","meethe usual","residence tests","british national","national insurance","insurance without","national insurance","insurance number","fact moving","moving tother","tother areas","better migrants","migrants rights","rights network","network march","benefitourism fromay","misleading retrieved","theuropean commission","commission ordered","wide study","citizens onational","onational social","social security","security systems","confirmed thathe","thathe vast","vast majority","migrants move","found thathe","thathe main","main motivation","benefit related","average immigrant","received less","less benefits","member state","employment social","social affairs","inclusion via","justice framework","framework contract","contract final","final report","report submitted","fact finding","finding analysis","security systems","non active","special non","cash benefits","healthcare granted","residence retrieved","retrieved another","another study","study conducted","uk specifically","recently arrived","paid billion","uk treasury","period university","university college","college london","london press","press release","release retrieved","retrieved c","fiscal effects","uk theconomic","theconomic journal","uk makes","makes billion","billion profit","migrants novemberetrieved","independent european","european union","union migrants","migrants add","british economy","decade novemberetrieved","novemberetrieved see","see also","also economic","economic results","migration category","category human","human migration","migration category","category types","tourism category","category words","words coined"],"new_description":"benefitourism political term coined later used perceived huge number citizens eight nations given membership theuropean_union theuropean_union would move thexisting member_states benefit social welfare system rather work threat several countries used reason creating temporary work benefit restrictions citizens theight new member_states guardian january leader false figures retrieved guardian february uk seto act benefitourism retrieved criticism claims benefitourism citizens described misleading research organisations major study centre foresearch migration university college london published demonstrated emigration migrant united_kingdom britain new member_countries better educated likely employment much less likely claiming benefits uk financial times july wave immigrants pays way retrieved centre foresearch migration press_release july benefit evidence fiscal costs benefits migration uk central eastern_europe retrieved stories benefits tourism uk described migrants rights network march pointed outhat migrants must meethe usual residence tests order register british national insurance without national insurance number cannot receive benefits fact moving tother areas opportunities better migrants rights network march latest benefitourism fromay misleading retrieved theuropean_commission ordered wide study impact citizens onational social security systems confirmed thathe vast_majority migrants move find take employment evidence found thathe main motivation citizens benefit related average immigrant received less benefits member state employment social affairs inclusion via justice framework contract final report submitted association ltd fact finding analysis impact member security systems non active migrants special non cash benefits healthcare granted basis residence retrieved another study conducted concentrated uk specifically showed migrants recently arrived uk paid billion taxes uk treasury deduction benefits received period university college london press_release retrieved c fiscal effects immigration uk theconomic journal retrieved uk makes billion profit migrants novemberetrieved independent european union migrants add british economy decade novemberetrieved see_also economic results migration category_human migration category_types tourism_category words coined"},{"title":"Bibliography of tourism","description":"this a bibliography of works related the subject of tourism is travel forecreation aleisure or business purposes the world tourism organization defines tourists as people traveling to and staying in places outside their usual environment for not more than one consecutive year for leisure business and other purposes dictionary of travel tourism and hospitality s medik ed butterworth a dictionary of travel and tourism terminology a beaver cabi dictionary of concepts in recreation and leisure studies smith ed greenwood press dictionary of travel tourism and hospitality terms r harris and j howard hospitality press the tourism society s dictionary for tourism industry v r collins ed cabi the travel dictionary c deruaes ed solitaire publishing the traveler s world a dictionary of industry andestination literacy n starr and s norwood prenctice hall encyclopedia of leisure and outdoorecreation jenkins and j pigram eds routledge thencyclopedia of ecotourism d weaver ed cabinternational encyclopedia of hospitality management a pizam ed elsevier encyclopedia of tourism jafari ed routledgencyclopedia of social and cultural anthropology a barnard and j spencer eds routledge research methods altinay l paraskevas a planning research in hospitality and tourism butterwortheinemann brotherton b researching hospitality and tourism a student guide sage publications jennings g tourism research john wiley sons australia veal a j research methods for leisure and tourism a practical guide rd ed prentice hall smith s practical tourism research cabi cudny w gosik b piech m rouba r praca dyplomowa z turystyki podr cznik akademicki the rules of writing master s thesis in tourism ltn lodz tourism and technology buhalis d etourism information technology for strategic tourismanagement pearson buhalis d am tjoand jafarinformation and communication technologies in tourism enter conference proceedings istanbul springer verlag wienew york buhalis d and schertler w information and communication technologies in tourism enter springer verlag wienew york fesenmaier d klein s and buhalis d information communication technologies in tourism enter springer verlag wienew york fesenmaier d werthner h wober k destination recommendation systems behavioural foundations and applications hb cabi london frew a o connor p hitz m eds information and communication technologies in tourism springer verlag vienna frew a editor information and communication technologies in tourism springer verlag vienna frew a editor information and communication technologies in tourism proceedings of the international conference innsbruck austria springer verlag vienna gary inkpen information technology for travel and tourism longman mills m and rob law editors handbook of consumer behaviour tourism and the internet haworth press inc us k rcher k reinventing package holiday business deutscheruniversitsverlag berlin laudon k e commerce business technology society case book update prentice hallawrence newton s corbitt braithwaite r parker c technology of internet business wiley australia marcussen carl h internet distribution of european travel and tourism services research centre of bornholm denmark marcussen carl h internet andistribution of european travel updates centre foregional and tourism research denmark mills m and rob law editors handbook of consumer behaviour tourism and the internet haworth press inc us nyheim p mcfadden f connolly d technology strategies for the hospitality industry pearson prentice hall new jersey o connor p electronic information distribution in tourism and hospitality oxford cab o connor p using computers in hospitality thomson learning poon a tourism technology and competitive strategies oxford cab international porter m strategy and the internet harvard business review march pp sheldon p tourism information technology cab oxford sheldon pj w ber k fesenmaier dr eds information and communication technologies in tourism proceedings of the international conference in montreal canada springer verlag vienna sheldon p tourism information technology cabi publishing oxford england werthner h and klein s information technology and tourism a challenging relationship springer new york w ber kw aj frew m hitz editors information and communication technologies in tourism springer verlag vienna wto marketing tourism destinations online strategies for the information age world tourism organization madrid wto global distribution systems in the tourism industry world tourism organisation madrid wto ebusiness for tourism practical guidelines for destinations and businesses madrid world tourism organisation history of tourism kristen r ghodsee kristen r the red riviera gender tourism and postsocialism on the black sea duke university press gyr ueli the history of tourism structures on the path to modernity european history online mainz institute of european history retrieved june boyer m le tourisme pariseuil boyer m l invention du tourisme paris gallimard boyer m histoire de l invention du tourisme la tour d aigues l aube boyer m l invention de la c te d azur l hiver dans le midi la tour d aigues l aubexternalinks category bibliographies of subcultures tourism category tourism category tourism related lists category travel books","main_words":["bibliography","works","related","subject","tourism_travel","forecreation","business","purposes","world_tourism","organization","defines","tourists","people","traveling","staying","places","outside","usual","environment","one","consecutive","year","leisure","business","purposes","dictionary","travel_tourism","hospitality","ed","dictionary","travel_tourism","terminology","cabi","dictionary","concepts","recreation","leisure","studies","smith","ed","greenwood","press","dictionary","travel_tourism","hospitality","terms","r","harris","j","howard","hospitality","press","tourism","society","dictionary","tourism_industry","v","r","collins","ed","cabi","travel","dictionary","c","ed","publishing","traveler","world","dictionary","industry","andestination","n","hall","encyclopedia","leisure","outdoorecreation","jenkins","j","eds","routledge","thencyclopedia","ecotourism","weaver","ed","encyclopedia","hospitality_management","ed","elsevier","encyclopedia","tourism","jafari","ed","social","cultural","anthropology","barnard","j","spencer","eds","routledge","research","methods","l","planning","research","hospitality_tourism","b","researching","hospitality_tourism","student","guide","sage","publications","jennings","g","tourism_research","john","wiley","sons","australia","veal","j","research","methods","leisure","tourism","practical","guide","ed","prentice","hall","smith","practical","tourism_research","cabi","w","b","r","rules","writing","master","thesis","tourism","tourism","technology","buhalis","etourism","information_technology","strategic","tourismanagement","pearson","buhalis","communication","technologies","tourism","enter","conference","proceedings","istanbul","springer_verlag","york","buhalis","w","information","communication","technologies","tourism","enter","springer_verlag","york","klein","buhalis","information","communication","technologies","tourism","enter","springer_verlag","york","h","k","destination","recommendation","systems","behavioural","foundations","applications","cabi","london","frew","connor","p","eds","information","communication","technologies","tourism","springer_verlag","vienna","frew","editor","information","communication","technologies","tourism","springer_verlag","vienna","frew","editor","information","communication","technologies","tourism","proceedings","international","conference","austria","springer_verlag","vienna","gary","information_technology","travel_tourism","longman","mills","rob","law","editors","handbook","consumer","behaviour","tourism","internet","press","inc","us","k","rcher","k","package_holiday","business","berlin","k","e_commerce","business","technology","society","case","book","update","prentice","newton","r","parker","c","technology","internet","business","wiley","australia","carl","h","internet","distribution","european_travel","tourism_services","research","centre","denmark","carl","h","internet","andistribution","european_travel","updates","centre","tourism_research","denmark","mills","rob","law","editors","handbook","consumer","behaviour","tourism","internet","press","inc","us","p","f","technology","strategies","hospitality_industry","pearson","prentice","hall","new_jersey","connor","p","electronic","information","distribution","tourism_hospitality","oxford","cab","connor","p","using","computers","hospitality","thomson","learning","tourism","technology","competitive","strategies","oxford","cab","international","porter","strategy","internet","harvard","business","review","march","pp","sheldon","p","tourism","information_technology","cab","oxford","sheldon","w","ber","k","eds","information","communication","technologies","tourism","proceedings","international","conference","montreal","canada","springer_verlag","vienna","sheldon","p","tourism","information_technology","cabi","publishing","oxford","england","h","klein","information_technology","tourism","challenging","relationship","new_york","w","ber","frew","editors","information","communication","technologies","tourism","springer_verlag","vienna","wto","marketing","tourism_destinations","online","strategies","information","age","world_tourism","organization","madrid","wto","global","distribution","systems","tourism_industry","world_tourism_organisation","madrid","wto","tourism","practical","guidelines","destinations","businesses","madrid","world_tourism_organisation","history","tourism","r","r","red","riviera","gender","tourism","black","sea","duke","university_press","history","tourism","structures","path","modernity","european","history","online","institute","european","history","retrieved","june","boyer","tourisme","boyer","l","invention","tourisme","paris","boyer","histoire","de","l","invention","tourisme","la","tour","l","boyer","l","invention","de_la","c","l","dans","la","tour","l","category","subcultures","tourism_category_tourism","category_tourism","related","lists","category_travel_books"],"clean_bigrams":[["works","related"],["travel","forecreation"],["business","purposes"],["world","tourism"],["tourism","organization"],["organization","defines"],["defines","tourists"],["people","traveling"],["places","outside"],["usual","environment"],["one","consecutive"],["consecutive","year"],["leisure","business"],["business","purposes"],["purposes","dictionary"],["travel","tourism"],["travel","tourism"],["tourism","terminology"],["cabi","dictionary"],["leisure","studies"],["studies","smith"],["smith","ed"],["ed","greenwood"],["greenwood","press"],["press","dictionary"],["travel","tourism"],["hospitality","terms"],["terms","r"],["r","harris"],["j","howard"],["howard","hospitality"],["hospitality","press"],["tourism","society"],["tourism","industry"],["industry","v"],["v","r"],["r","collins"],["collins","ed"],["ed","cabi"],["travel","dictionary"],["dictionary","c"],["industry","andestination"],["hall","encyclopedia"],["outdoorecreation","jenkins"],["eds","routledge"],["routledge","thencyclopedia"],["weaver","ed"],["hospitality","management"],["ed","elsevier"],["elsevier","encyclopedia"],["tourism","jafari"],["jafari","ed"],["cultural","anthropology"],["j","spencer"],["spencer","eds"],["eds","routledge"],["routledge","research"],["research","methods"],["planning","research"],["b","researching"],["researching","hospitality"],["student","guide"],["guide","sage"],["sage","publications"],["publications","jennings"],["jennings","g"],["g","tourism"],["tourism","research"],["research","john"],["john","wiley"],["wiley","sons"],["sons","australia"],["australia","veal"],["j","research"],["research","methods"],["tourism","practical"],["practical","guide"],["ed","prentice"],["prentice","hall"],["hall","smith"],["practical","tourism"],["tourism","research"],["research","cabi"],["writing","master"],["tourism","technology"],["technology","buhalis"],["etourism","information"],["information","technology"],["strategic","tourismanagement"],["tourismanagement","pearson"],["pearson","buhalis"],["communication","technologies"],["tourism","enter"],["enter","conference"],["conference","proceedings"],["proceedings","istanbul"],["istanbul","springer"],["springer","verlag"],["york","buhalis"],["w","information"],["information","communication"],["communication","technologies"],["tourism","enter"],["enter","springer"],["springer","verlag"],["information","communication"],["communication","technologies"],["tourism","enter"],["enter","springer"],["springer","verlag"],["k","destination"],["destination","recommendation"],["recommendation","systems"],["systems","behavioural"],["behavioural","foundations"],["cabi","london"],["london","frew"],["connor","p"],["eds","information"],["information","communication"],["communication","technologies"],["tourism","springer"],["springer","verlag"],["verlag","vienna"],["vienna","frew"],["editor","information"],["information","communication"],["communication","technologies"],["tourism","springer"],["springer","verlag"],["verlag","vienna"],["vienna","frew"],["editor","information"],["information","communication"],["communication","technologies"],["tourism","proceedings"],["international","conference"],["austria","springer"],["springer","verlag"],["verlag","vienna"],["vienna","gary"],["information","technology"],["travel","tourism"],["tourism","longman"],["longman","mills"],["rob","law"],["law","editors"],["editors","handbook"],["consumer","behaviour"],["behaviour","tourism"],["press","inc"],["inc","us"],["us","k"],["k","rcher"],["rcher","k"],["package","holiday"],["holiday","business"],["k","e"],["e","commerce"],["commerce","business"],["business","technology"],["technology","society"],["society","case"],["case","book"],["book","update"],["update","prentice"],["r","parker"],["parker","c"],["c","technology"],["internet","business"],["business","wiley"],["wiley","australia"],["carl","h"],["h","internet"],["internet","distribution"],["european","travel"],["travel","tourism"],["tourism","services"],["services","research"],["research","centre"],["carl","h"],["h","internet"],["internet","andistribution"],["european","travel"],["travel","updates"],["updates","centre"],["tourism","research"],["research","denmark"],["denmark","mills"],["rob","law"],["law","editors"],["editors","handbook"],["consumer","behaviour"],["behaviour","tourism"],["press","inc"],["inc","us"],["technology","strategies"],["hospitality","industry"],["industry","pearson"],["pearson","prentice"],["prentice","hall"],["hall","new"],["new","jersey"],["connor","p"],["p","electronic"],["electronic","information"],["information","distribution"],["hospitality","oxford"],["oxford","cab"],["connor","p"],["p","using"],["using","computers"],["hospitality","thomson"],["thomson","learning"],["tourism","technology"],["competitive","strategies"],["strategies","oxford"],["oxford","cab"],["cab","international"],["international","porter"],["internet","harvard"],["harvard","business"],["business","review"],["review","march"],["march","pp"],["pp","sheldon"],["sheldon","p"],["p","tourism"],["tourism","information"],["information","technology"],["technology","cab"],["cab","oxford"],["oxford","sheldon"],["w","ber"],["ber","k"],["eds","information"],["information","communication"],["communication","technologies"],["tourism","proceedings"],["international","conference"],["montreal","canada"],["canada","springer"],["springer","verlag"],["verlag","vienna"],["vienna","sheldon"],["sheldon","p"],["p","tourism"],["tourism","information"],["information","technology"],["technology","cabi"],["cabi","publishing"],["publishing","oxford"],["oxford","england"],["information","technology"],["challenging","relationship"],["relationship","springer"],["springer","new"],["new","york"],["york","w"],["w","ber"],["editors","information"],["information","communication"],["communication","technologies"],["tourism","springer"],["springer","verlag"],["verlag","vienna"],["vienna","wto"],["wto","marketing"],["marketing","tourism"],["tourism","destinations"],["destinations","online"],["online","strategies"],["information","age"],["age","world"],["world","tourism"],["tourism","organization"],["organization","madrid"],["madrid","wto"],["wto","global"],["global","distribution"],["distribution","systems"],["tourism","industry"],["industry","world"],["world","tourism"],["tourism","organisation"],["organisation","madrid"],["madrid","wto"],["tourism","practical"],["practical","guidelines"],["businesses","madrid"],["madrid","world"],["world","tourism"],["tourism","organisation"],["organisation","history"],["red","riviera"],["riviera","gender"],["gender","tourism"],["black","sea"],["sea","duke"],["duke","university"],["university","press"],["tourism","structures"],["modernity","european"],["european","history"],["history","online"],["european","history"],["history","retrieved"],["retrieved","june"],["june","boyer"],["l","invention"],["tourisme","paris"],["histoire","de"],["de","l"],["l","invention"],["tourisme","la"],["la","tour"],["l","invention"],["invention","de"],["de","la"],["la","c"],["la","tour"],["subcultures","tourism"],["tourism","category"],["category","tourism"],["tourism","category"],["category","tourism"],["tourism","related"],["related","lists"],["lists","category"],["category","travel"],["travel","books"]],"all_collocations":["works related","travel forecreation","business purposes","world tourism","tourism organization","organization defines","defines tourists","people traveling","places outside","usual environment","one consecutive","consecutive year","leisure business","business purposes","purposes dictionary","travel tourism","travel tourism","tourism terminology","cabi dictionary","leisure studies","studies smith","smith ed","ed greenwood","greenwood press","press dictionary","travel tourism","hospitality terms","terms r","r harris","j howard","howard hospitality","hospitality press","tourism society","tourism industry","industry v","v r","r collins","collins ed","ed cabi","travel dictionary","dictionary c","industry andestination","hall encyclopedia","outdoorecreation jenkins","eds routledge","routledge thencyclopedia","weaver ed","hospitality management","ed elsevier","elsevier encyclopedia","tourism jafari","jafari ed","cultural anthropology","j spencer","spencer eds","eds routledge","routledge research","research methods","planning research","b researching","researching hospitality","student guide","guide sage","sage publications","publications jennings","jennings g","g tourism","tourism research","research john","john wiley","wiley sons","sons australia","australia veal","j research","research methods","tourism practical","practical guide","ed prentice","prentice hall","hall smith","practical tourism","tourism research","research cabi","writing master","tourism technology","technology buhalis","etourism information","information technology","strategic tourismanagement","tourismanagement pearson","pearson buhalis","communication technologies","tourism enter","enter conference","conference proceedings","proceedings istanbul","istanbul springer","springer verlag","york buhalis","w information","information communication","communication technologies","tourism enter","enter springer","springer verlag","information communication","communication technologies","tourism enter","enter springer","springer verlag","k destination","destination recommendation","recommendation systems","systems behavioural","behavioural foundations","cabi london","london frew","connor p","eds information","information communication","communication technologies","tourism springer","springer verlag","verlag vienna","vienna frew","editor information","information communication","communication technologies","tourism springer","springer verlag","verlag vienna","vienna frew","editor information","information communication","communication technologies","tourism proceedings","international conference","austria springer","springer verlag","verlag vienna","vienna gary","information technology","travel tourism","tourism longman","longman mills","rob law","law editors","editors handbook","consumer behaviour","behaviour tourism","press inc","inc us","us k","k rcher","rcher k","package holiday","holiday business","k e","e commerce","commerce business","business technology","technology society","society case","case book","book update","update prentice","r parker","parker c","c technology","internet business","business wiley","wiley australia","carl h","h internet","internet distribution","european travel","travel tourism","tourism services","services research","research centre","carl h","h internet","internet andistribution","european travel","travel updates","updates centre","tourism research","research denmark","denmark mills","rob law","law editors","editors handbook","consumer behaviour","behaviour tourism","press inc","inc us","technology strategies","hospitality industry","industry pearson","pearson prentice","prentice hall","hall new","new jersey","connor p","p electronic","electronic information","information distribution","hospitality oxford","oxford cab","connor p","p using","using computers","hospitality thomson","thomson learning","tourism technology","competitive strategies","strategies oxford","oxford cab","cab international","international porter","internet harvard","harvard business","business review","review march","march pp","pp sheldon","sheldon p","p tourism","tourism information","information technology","technology cab","cab oxford","oxford sheldon","w ber","ber k","eds information","information communication","communication technologies","tourism proceedings","international conference","montreal canada","canada springer","springer verlag","verlag vienna","vienna sheldon","sheldon p","p tourism","tourism information","information technology","technology cabi","cabi publishing","publishing oxford","oxford england","information technology","challenging relationship","relationship springer","springer new","new york","york w","w ber","editors information","information communication","communication technologies","tourism springer","springer verlag","verlag vienna","vienna wto","wto marketing","marketing tourism","tourism destinations","destinations online","online strategies","information age","age world","world tourism","tourism organization","organization madrid","madrid wto","wto global","global distribution","distribution systems","tourism industry","industry world","world tourism","tourism organisation","organisation madrid","madrid wto","tourism practical","practical guidelines","businesses madrid","madrid world","world tourism","tourism organisation","organisation history","red riviera","riviera gender","gender tourism","black sea","sea duke","duke university","university press","tourism structures","modernity european","european history","history online","european history","history retrieved","retrieved june","june boyer","l invention","tourisme paris","histoire de","de l","l invention","tourisme la","la tour","l invention","invention de","de la","la c","la tour","subcultures tourism","tourism category","category tourism","tourism category","category tourism","tourism related","related lists","lists category","category travel","travel books"],"new_description":"bibliography works related subject tourism_travel forecreation business purposes world_tourism organization defines tourists people traveling staying places outside usual environment one consecutive year leisure business purposes dictionary travel_tourism hospitality ed dictionary travel_tourism terminology cabi dictionary concepts recreation leisure studies smith ed greenwood press dictionary travel_tourism hospitality terms r harris j howard hospitality press tourism society dictionary tourism_industry v r collins ed cabi travel dictionary c ed publishing traveler world dictionary industry andestination n hall encyclopedia leisure outdoorecreation jenkins j eds routledge thencyclopedia ecotourism weaver ed encyclopedia hospitality_management ed elsevier encyclopedia tourism jafari ed social cultural anthropology barnard j spencer eds routledge research methods l planning research hospitality_tourism b researching hospitality_tourism student guide sage publications jennings g tourism_research john wiley sons australia veal j research methods leisure tourism practical guide ed prentice hall smith practical tourism_research cabi w b r rules writing master thesis tourism tourism technology buhalis etourism information_technology strategic tourismanagement pearson buhalis communication technologies tourism enter conference proceedings istanbul springer_verlag york buhalis w information communication technologies tourism enter springer_verlag york klein buhalis information communication technologies tourism enter springer_verlag york h k destination recommendation systems behavioural foundations applications cabi london frew connor p eds information communication technologies tourism springer_verlag vienna frew editor information communication technologies tourism springer_verlag vienna frew editor information communication technologies tourism proceedings international conference austria springer_verlag vienna gary information_technology travel_tourism longman mills rob law editors handbook consumer behaviour tourism internet press inc us k rcher k package_holiday business berlin k e_commerce business technology society case book update prentice newton r parker c technology internet business wiley australia carl h internet distribution european_travel tourism_services research centre denmark carl h internet andistribution european_travel updates centre tourism_research denmark mills rob law editors handbook consumer behaviour tourism internet press inc us p f technology strategies hospitality_industry pearson prentice hall new_jersey connor p electronic information distribution tourism_hospitality oxford cab connor p using computers hospitality thomson learning tourism technology competitive strategies oxford cab international porter strategy internet harvard business review march pp sheldon p tourism information_technology cab oxford sheldon w ber k eds information communication technologies tourism proceedings international conference montreal canada springer_verlag vienna sheldon p tourism information_technology cabi publishing oxford england h klein information_technology tourism challenging relationship springer new_york w ber frew editors information communication technologies tourism springer_verlag vienna wto marketing tourism_destinations online strategies information age world_tourism organization madrid wto global distribution systems tourism_industry world_tourism_organisation madrid wto tourism practical guidelines destinations businesses madrid world_tourism_organisation history tourism r r red riviera gender tourism black sea duke university_press history tourism structures path modernity european history online institute european history retrieved june boyer tourisme boyer l invention tourisme paris boyer histoire de l invention tourisme la tour l boyer l invention de_la c l dans la tour l category subcultures tourism_category_tourism category_tourism related lists category_travel_books"},{"title":"Bicycle touring","description":"image cycling torres del painejpg thumb px expedition type bicycle touring cordillera del paine bicycle tourism touring meanself contained cycling trips for pleasure adventure and autonomy rather than sport commuting or exercise touring can range from single to multi day trips even years tours may be planned by the participant organised by a holiday business a club or a charity as a fund raising venture image bicycling ca bigwheelersjpg thumb px touring the countryside filen man och en kvinna i eleganta friluftskl der velocipeddr kt med p kn ppt kjol samturistdr kt nordiska museet nma jpg thumb woman in bicycle clothes and buttoned on skirthat also can be used as raincoat historian james mcgurn speaks of bets being taken in london in the th century foriders of dandy horse hobby horses machines pushed by the feet rather than pedaled outspeeding stagecoach es one practitioner beat a four horse coach to brighton by half an hour he says mcgurn james on your bicycle john murray uk there are various accounts of to year olds draisienne touring around france in the s on february john mayall charlespencer and rowley turnerode from trafalgar square london to brighton in hours for miles the times whichad sent a reporter to follow them in a coach and paireported an extraordinary velocipede feathree riderset offrom liverpool to london a journey of three days and so more akin to modern cycle touring in march that same year a newspapereport said their bicycles caused no little astonishment on the way and the remarks passed by the natives were almost amusing at some of the villages the boys clustered round the machines and where they could caught hold of them and ran behind until they were tired out many enquiries were made as to the name of them queer horsesome called them whirligigs menageries and valparaisons between wolverhampton and birmingham attempts were made to upsethe riders by throwing stones times london march enthusiasm extended tother countries the new york timespoke of quantities of velocipedes in the united states the word included what elsewhere were called hobby horses flying like shuttles hither and thither but while british interest had less frenzy than in the united states it lasted longer thexpansion from a machine that had to be pushed or propelled through pedals on a small front wheel made longer distances feasible a rider calling himself a light dragoon told in or of a ride from lewes to salisbury acrossouthern england the title of his book wheels and woesuggests a less than event free ride but mcgurn says it seems to have been a delightful adventure despite bad road surfaces dust and lack of signposts journeys grew more adventurous thomastevens cyclisthomastevens a writer for the san francisco chronicle set off around the world april on a inch columbia bicycles columbia with a money belt a revolver two shirts and a rain cape spending two years on the road and writing articles which became a two volume page book john foster fraser and two friendset off round the world on safety bicycles in july hedward lunn and f h lowe rode miles through countries in two years and two months fraser john abridged around the world on a wheel chatto and windus uk by recreational cycling was enough established in britain to lead to formation of the bicycle touring club laterenamed cyclists touring club it is the oldest national tourism organisation in the world members like those of other clubs often rode in uniform the ctc appointed an official tailor the uniform was a dark green devonshire serge jacket knickerbockers clothing knickerbockers and a stanley helmet with a small peak the colour changed to grey when green proved impractical because it showed the dirt cycling on ray hallett dinosaur publications groups often rode with a bugler atheir head to sound changes of direction or to bring the group to a halt confusion could be caused when groups met and mistook each other signals john pinkerton int wheels ofortune bbc radio membership of the ctc inspired the frenchman paul de vivie b april to found what became the f d ration fran aise de cyclotourisme the world s largest cycling association and to coin the french word cyclo tourisme the league of american wheelmen in the us was founded inewport rhode island on may it shared an interest in leisure cycling withe administration of cycle racing membershipeaked at in the primary national bicycle touring organization in the us is now adventure cycling association adventure cycling then called bikecentennial organised a mass ride in from one side of the country to the other to mark the nation s th anniversary the bikecentennial route istill in use as the transamerica bicycle trail social significance image h g wellsandgate project gutenberg etext png thumbnail right px h g wells in athe door of his house at sandgate kent sandgate the first cyclists often aristocratic orich flirted withe bicycle and then abandoned it for the new motor car it was the lower middle class which profited from cycling and the liberation that it broughthe cyclist of august said the two sections of the community which form the majority of wheelmen are the great clerk class and the great shop assistant class h g wells described this aspirant class liberated through cycling three of his heroes in the history of mr polly kipps and the wheels of chance buy bicycles the firstwork in drapery shops the third hoopdriver goes on a cycling holiday the authors roderick watson and martin gray say hoopdriver is certainly liberated by his machine it affords him not only a country holiday in itself a remarkablevent whichenjoys immensely however ignorant of the countryside he may be but also a brush with a society girl riding on pneumatics inflatable tyres many bicycles then still having solid tyres and wearing some kind of rational dress watson roderick and gray martin the penguin book of the bicycle penguin uk the book suggests the new social mobility created by the bike which breaks the boundaries of hoopdriver s world literally and figuratively hoopdriver sets off in a spirit ofreedom finally away from his job only those who toil six long days out of the seven and all the yearound save for one brief glorious fortnight or ten days in the summer time know thexquisite sensations of the first holiday morning all the dreary uninteresting routine drops from you suddenlyour chains fall about your feetthere were thrushes in the richmond road and a lark on putney heathe freshness of dewas in the air dew or the relics of an overnight shower glittered on the leaves and grasshe wheeled his machine uputney hill and his heart sang within himwells h g wheels of chance a bicycling idyll wells puts hoopdriver in a new brown cycling suito show the importance of the venture and the freedom on whiche is embarking hoopdriver finds the bicycle raises hisocial standing at least in his imagination and he calls to himself as he rides that he is a bloomin dook london pronunciation of duke the newoman that he pursues wears rational dress of a sorthat scandalised society but made cycling much easier the victorian dress reform rational dressociety was founded in london it said the rational dressociety protests against crinolines or crinolettes of any kind as ugly andeforming it requires all to be dressed healthily comfortably and beautifully to seek what conduces to birth comfort and beauty in our dress as a duty tourselves and each other bothoopdriver and the young lady in grey as he refers to her arescaping social restraints through bicycle touring hoopdriver falls in love and rescues her from a lover who says marrying him is the only way that she having left alone for a cycling holiday can save hereputation she lowers her social status he raises his mcgurn says the shift in social perspectives as exemplified by wells cyclists led john galsworthy to claim at a later date thathe bicycle had been responsible for more movement in manners and morals thanything since charles the second the bicycle gained from the outdoor movement of the s the cyclists touring club advertised a week s all in tour staying at hotels recommended by cyclists for s the youthostel movement started in germany and spread abroad and a cycling holiday staying at hostels in the s could be had foroderick watson and martin gray estimate there were ten million bicycles in britain tone million cars a decline set in across europe particularly in britain when millions of servicemen returned from world war ii having learned to drive trips away were now for the increasing number who had one by car the decline in the united states cameven sooner mcgurn says the story of inter war cycling was characterised by lack of interest and a steady decline cycling had lost outo the automobile and to somextento the new electric transport systems in the s cumbersome fatyred balloon bombers bulbously streamlined in imitation of motorcycles or aeroplanes appealed to american children the only mass market still open to cycle manufacturers wartime austerity gave cycling a short reprieve in the industrial world the post war peace was to lay the bicycle low however between and the usa experienced a bike boom in to celebrate the bicentennial of the founding of the united states greg siple his wife june andan lys burden organized a mass bike ride bikecentennial from the pacific to the atlantic siple said my original thought was to send out ads and flyersaying show up at golden gate park in san francisco at o clock on june with your bicycle and then were going to bicycle across the country i pictured thousands of people a sea of people witheir bikes and packs all ready to go and there would be old men and people with bicycle tire balloon tire bikes and frenchmen who flew over just for this nobody would shoot a gun off or anything at o clock everybody would justart moving it would be like this crowd of locust s crossing america the rideventually ran from astoria oregon to yorktown virginia site of the first british settlements rode with completing thentire route it defined a new start for cycle touring in the united states and led to the creation of adventure cycling association adventure cycling has adventure cycling route network mapped routes across americand into canada many of the rides taking up to three months to complete on a loaded bicycle in britain the cyclists touring club grew to members by about ctc wwwctcorguk retrieved and is now the biggest body campaigning for cycling and cyclists rights in the uk it continues torganise group touring events including day rides through its local groups and ctc holidays in many countries led by experienced ctc membersince sustrans has created a national cycle network of long distance cycle routes including back roads and traffic free tracks built signed and mapped in partnership with local organisations file gvbr on gor near port campbell vic jjron jpg righthumb supported bicycle touring holidaysuch as the nine day great victorian bike ride in australia can attracthousands of ridersince there has been a growth of organised cycling holidays provided by commercial organisations in many countriesome companies provide accommodation and route information to cyclists travelling independently others focus on a group experience includinguides and support for a large number of riders cycling together a variation this holidays often in exotic locations organised in partnership with a charity in which participants arexpected to raise donation as well as cover their costs the scale of bicycle touring and its economic effects are difficulto estimate given the activity s informal nature market research indicates that in british cyclistspent m on organised cycling holidays and a further million people included some cycling activity in their annual holiday that yearmintel brits go wheely mad for cycling holidays retrieved the total economic benefito communities visiteduring the nine day longreat victorian bike ride was estimated at about australian dollar au million in which does not include costs paidirectly to ride organisers and ongoing benefits townsustrans estimate thathe total value of cycle tourism in the uk in was m and they forecast bn for the wholeu by keeling a cycle tourism information pack tt sustrans retrieved among examples of current activity given by sustrans are m cyclists using the danube cycle routeach year and of holiday visitors in germany using bicycles during their visit bicycle touring can be of any distance and time the french tourist jacquesirat speaks in lectures of how he felt proud riding round the world for five years until he met an australian who had been on the road for yearsirat jacques cyclo nomade ditions du touergue france the german rider walter stolle lost his home and living in the sudetenland in the aftermath of world war ii settled in britain and set offrom essex on january to cycle round the world he rode through countries in years denied only those with sealed bordersstolle walter the world beneath my bicycle wheels pelham london he paid his way by giving slide shows in seven languages he gave at us each in he rode through nigeria dahomey republic of upper volta upper volta ghana sierra leone ivory coast liberiand guinea woodland les cycle racing and touring pelham uk he was robbed times wore out six bicycles and had five more stolen people usa january image heinzstueckeparisjpg thumb right heinz st cke in paris another german set off three years after stolle and istill riding heinz st cke left his job as a die maker inorth rhine westphalia in when he was he has never been home since by he had cycled more thand visited countries he pays his way by selling photographs to magazines from asia gua dahao left china in may to ride acrossiberia the middleasturkey western europe scandinavia then another km across africa latin americand australiameyeric l empiren danseuse rocher france buthere are many who attempt long voyages in exceptionally short amounts of time the current around the world cycling record circumnavigation record by bicycle is just days hours by mike hall some distinguished writers have combined cycling with travel writing such as dervla murphy who made her first documented journeymurphy d full tilt ireland to india with a bicycle in from london to india on a single speed bicycle with little more than a revolver and a change of underwear in she describedmurphy d silverland a winter journey beyond the urals how aged she was held up at gunpoint and robbed while cycling in russia eric newby e round ireland in low gear eric newby london collins bettina selby and anne mustoe have all used cycling as a means to a literary end valuing the way that cycling brings the traveller closer to people and placeselby said the bicycle makes me independent in a way nother form of transport can it needs no fuel no documents and very little maintenance most importantly it goes along athe right speed for seeing everything and as it does not cut me offromy surroundings it also makes me a lot ofriendselby b riding the desertrail by bicycle to the source of the nile london chatto and windus in morecent years british adventurers alastair humphreys moods ofuture joys mark beaumonthe man who cycled the world and rob lilwall cycling home from siberia have all been on epic bicyclexpeditions and written popular books aboutheir exploits but most bicycle tourists are ordinary people out of the spotlight one of the profound economic implications of bicycle use is that it liberates the user from oil consumption ballantine the bicycle is an inexpensive fast healthy and environmentally friendly mode of transport ivan illich stated that bicycle usextended the usable physical environment for people while alternativesuch as cars and motorways degraded and confined people s environment and mobilityillich i energy and equity new york harperow global players like zetsetgo bicycle tours organize affordable and well designed worldwide voyages globally ranging all types of challenging environmentypes file slovenia ruralandscape bicyclexpedition with panniersjpg thumb triof cyclists with panniers on a tour in slovenia file loaded touring bicyclejpg thumb a loaded touring bicycle with drop bars c wheels racks panniers and bar bag distances vary considerably depending on fitnesspeed and the number of stops the rider usually covers between kilometres mi per day a shortour over a few days may cover as little as and a long tour may go right across a country or around the world there are many differentypes of bicycle touring lightweightouring informally called credit card touring a rider carries a minimum of equipment and a lot of money overnight accommodation is in youthostel s hotel s pension lodging pension s or bed breakfast b s food is bought at cafes restaurants or markets ultralightouring differs from credit card touring in thathe rider iself sufficient but carries only the baressentials and no frills fully loaded touring also known aself supported touring cyclists carry everything they need including food cooking equipment and a tent for camping recreation camping some cyclists minimize their load carrying only basic supplies food and a bivouac shelter or lightweightent expedition touring cyclists travel extensively often through developing nations oremote areas the bicycle is loaded with food spares tools and camping equipment so thathe traveller is largely self supporting mixed terrain cycle touring bikepacking also called rough riding cyclists travel over a variety of surfaces and topography on a single route with a single bicycle focusing on freedom of travel and efficiency over varied surfaces cyclists often adopt an ultralight camping approach and carry their own minimal gear bikepacking supported touring cyclists are supported by a motor vehicle which carries most equipmenthis can be organized independently by groups of cyclists or commercial holiday companies these companiesell places on guided tours including booked lodging luggage transfers route planning and often meals and rental bikes day touring these rides vary highly in their size of the group length purpose and methods of supporthey may involve solo cyclists group rides or large organized rides withundreds to thousands of riders their length can range from a few miles to century ride s of or longer their purpose can range from riding for pleasure or fitness to raising money for a charitable organization methods of support can include self supporteday rides supported by friends or small groups and organized rides where cyclists pay for support and accommodation provided by event organizers including rest and refreshment stops marshalling to aid safety and bicycling terminology sag services o sub hour overnighthe sub hour overnight is focussed less on the cycling and more on the camping typically one wouldepart on their bicycle in the late afternoon or evening ride to a campsite in a few hours camp sleep and ride home the next morning this type can require very little planning or time commitment if one lives in a large urban metropolis thisort of trip might also bextended taking a train or coach to geto a more convenient starting point and may in factake a lot longer than hours making it a weekend tour but it otherwise still works on the same planning principles touring bike image canto at niagarajpg thumb fully loaded touring recumbent image brompton remorque furkapassjpg thumb two wheel trailer cycle touring beyond the range of a day trip may need a bike capable of carrying heavy loads although many different bicycles can be used specialistouring bicycle touring bike s are builto carry appropriate loads and to be ridden more comfortably over long distances a typical bicycle would have a longer wheelbase for stability and heel clearance frame fittings for low rider bicycle luggage carrier front and rear pannier luggage carrieracks additional water bottle mounts frame fittings for front and rear mudguards fenders a broaderange of gearing to cope withe increased weight and touring bicycle tires which are wider to provide more comfort on backroads ultralightourers choose traditional road bicycle s or audax cycling audax orandonneuring randonneur bicycles for speed and simplicity however these bikes are harder to ride on unmade roads which may limit route options for some the advantages of a recumbent bicycle are particularly relevanto touring to lessen the weight carried on the bicycle or increase luggage capacity touring cyclists may use bicycle trailer s for a supported rider luggage carrying is not important and a widerange of bicycle types may be suitable depending on the terrainoted bicycle tourists mark beaumont algirdas gurevius ian hibell rob lilwall dervla murphy anne mustoe thomastevens cyclist mikael strandberg heinz stucke in fiction examples ofictional works featuring bicycle tours include the bike tour mystery by carolyn keene nancy drew mystery stories the wheels of chance by hg wellsee also audax cycling bicycle ride across georgia bicycle safety challenge riding cycleway cyclists touring club eurovelo great victorian bike ride league of american bicyclists long distance cycling route mixed terrain cycle touring national cycling route network national route argentina pacificrest bicycle trail ragbrail trail riding utility cycling references externalinks try bike camping popular science october pp category bicycle tours category cycling touring category types of tourism category sustainable transport","main_words":["image","cycling","del","thumb","px","expedition","type","bicycle_touring","cordillera","del","paine","touring","contained","cycling","trips","pleasure","adventure","autonomy","rather","sport","commuting","exercise","touring","range","single","multi","day_trips","even","years","tours","may","planned","participant","organised","holiday","business","club","charity","fund","raising","venture","image","bicycling","thumb","px","touring","countryside","man","der","p","jpg","thumb","woman","bicycle","clothes","also_used","historian","james","mcgurn","speaks","taken","london","th_century","foriders","horse","hobby","horses","machines","pushed","feet","rather","stagecoach","one","beat","four","horse","coach","brighton","half","hour","says","mcgurn","james","bicycle","john_murray","uk","various","accounts","year","touring","around","france","february","john","square","london","brighton","hours","miles","times","whichad","sent","reporter","follow","coach","extraordinary","offrom","liverpool","london","journey","three_days","akin","modern","cycle_touring","march","year","said","bicycles","caused","little","way","remarks","passed","natives","almost","villages","boys","round","machines","could","caught","hold","ran","behind","tired","many","made","name","called","menageries","birmingham","attempts","made","riders","throwing","stones","times","london","march","enthusiasm","extended","tother","countries","new_york","quantities","united_states","word","included","elsewhere","called","hobby","horses","flying","like","british","interest","less","frenzy","united_states","lasted","longer","thexpansion","machine","pushed","propelled","pedals","small","front","wheel","made","longer","distances","feasible","rider","calling","light","told","ride","salisbury","england","title","book","wheels","less","event","free","ride","mcgurn","says","seems","adventure","despite","bad","road","surfaces","dust","lack","journeys","grew","adventurous","writer","san_francisco","chronicle","set","around","world","april","inch","columbia","bicycles","columbia","money","belt","two","shirts","rain","cape","spending","two_years","road","writing","articles","became","two","volume","page","book","fraser","two","round","world","safety","bicycles","july","f","h","lowe","rode","miles","countries","two_years","two","months","fraser","john","around","world","wheel","uk","recreational","cycling","enough","established","britain","lead","formation","bicycle_touring","club","laterenamed","cyclists","touring_club","oldest","world","members","like","clubs","often","rode","uniform","ctc","appointed","official","tailor","uniform","dark","green","jacket","clothing","stanley","helmet","small","peak","colour","changed","grey","green","proved","impractical","showed","dirt","cycling","ray","dinosaur","publications","groups","often","rode","atheir","head","sound","changes","direction","bring","group","halt","confusion","could","caused","groups","met","signals","john","int","wheels","ofortune","bbc","radio","membership","ctc","inspired","paul","de","b","april","found","became","f","ration","fran","aise","de","world","largest","coin","french","word","cyclo","tourisme","league","american","us","founded","inewport","rhode_island","may","shared","interest","leisure","cycling","withe","administration","cycle","racing","primary","national","bicycle_touring","organization","us","adventure_cycling","association","adventure_cycling","called","bikecentennial","organised","mass","ride","one_side","country","mark","nation","th_anniversary","bikecentennial","route","istill","use","transamerica","bicycle","trail","social","significance","image","h","g","project","right","px","h","g","wells","athe","door","house","kent","first","cyclists","often","aristocratic","withe","bicycle","abandoned","new","motor","car","lower","middle_class","cycling","liberation","broughthe","cyclist","august","said","two","sections","community","form","majority","great","clerk","class","great","shop","assistant","class","h","g","wells","described","class","liberated","cycling","three","heroes","history","polly","wheels","chance","buy","bicycles","shops","third","hoopdriver","goes","cycling","holiday","authors","watson","martin","gray","say","hoopdriver","certainly","liberated","machine","affords","country","holiday","immensely","however","countryside","may_also","brush","society","girl","riding","inflatable","many","bicycles","still","solid","wearing","kind","rational","dress","watson","gray","martin","penguin","book","bicycle","penguin","uk","book","suggests","new","social","mobility","created","bike","breaks","boundaries","hoopdriver","world","literally","hoopdriver","sets","spirit","finally","away","job","six","long","days","seven","yearound","save","one","brief","glorious","ten","days","summer","time","know","first","holiday","morning","routine","drops","chains","fall","richmond","road","putney","freshness","air","relics","overnight","shower","leaves","machine","hill","heart","sang","within","h","g","wheels","chance","bicycling","wells","puts","hoopdriver","new","brown","cycling","show","importance","venture","freedom","whiche","hoopdriver","finds","bicycle","raises","standing","least","imagination","calls","rides","london","pronunciation","duke","rational","dress","society","made","cycling","much","easier","victorian","dress","reform","rational","founded","london","said","rational","protests","kind","ugly","requires","dressed","comfortably","seek","birth","comfort","beauty","dress","duty","young","lady","grey","refers","social","bicycle_touring","hoopdriver","falls","love","lover","says","way","left","alone","cycling","holiday","save","social","status","raises","mcgurn","says","shift","social","perspectives","wells","cyclists","led","later","date","thathe","bicycle","responsible","movement","manners","since","charles","second","bicycle","gained","outdoor","movement","cyclists","touring_club","advertised","week","tour","staying","hotels","recommended","cyclists","youthostel","movement","started","germany","spread","abroad","cycling","holiday","staying","hostels","could","watson","martin","gray","estimate","ten","million","bicycles","britain","tone","million","cars","decline","set","across_europe","particularly","britain","millions","servicemen","returned","world_war","ii","learned","drive","trips","away","increasing_number","one","car","decline","united_states","mcgurn","says","story","inter","war","cycling","characterised","lack","interest","steady","decline","cycling","lost","outo","automobile","new","electric","balloon","streamlined","imitation","appealed","american","children","mass","market","still","open","cycle","manufacturers","wartime","gave","cycling","short","industrial","world","post_war","peace","lay","bicycle","low","however","usa","experienced","bike","boom","celebrate","bicentennial","founding","united_states","greg","siple","wife","june","lys","burden","organized","mass","bike_ride","bikecentennial","pacific","atlantic","siple","said","original","thought","send","ads","show","golden_gate","park","san_francisco","clock","june","bicycle","going","bicycle","across","country","pictured","thousands","people","sea","people","witheir","bikes","packs","ready","go","would","old","men","people","bicycle","tire","balloon","tire","bikes","flew","nobody","would","shoot","gun","anything","clock","would","moving","would","like","crowd","crossing","america","ran","astoria","oregon","yorktown","virginia","site","first","british","settlements","rode","completing","thentire","route","defined","new","start","cycle_touring","united_states","led","creation","adventure_cycling","association","adventure_cycling","adventure_cycling","route","network","mapped","routes","across","americand","canada","many","rides","taking","three_months","complete","loaded","bicycle","britain","cyclists","touring_club","grew","members","ctc","retrieved","biggest","body","campaigning","cycling","cyclists","rights","uk","continues","group","touring","events","including","local","groups","ctc","holidays","many_countries","led","experienced","ctc","created","national","cycle","network","long_distance","cycle","routes","including","back","roads","traffic","free","tracks","built","signed","mapped","partnership","local","organisations","file","gvbr","near","port_campbell","vic_jjron_jpg_righthumb","supported","bicycle_touring","nine","day","great_victorian","bike_ride","australia","growth","organised","cycling","holidays","provided","commercial","organisations","companies","provide","accommodation","route","information","cyclists","travelling","independently","others","focus","group","experience","support","large_number","riders","cycling","together","variation","holidays","often","exotic","locations","organised","partnership","charity","participants","arexpected","raise","donation","well","cover","costs","scale","bicycle_touring","economic","effects","difficulto","estimate","given","activity","informal","nature","market","research","indicates","british","organised","cycling","holidays","million_people","included","cycling","activity","annual","holiday","go","mad","cycling","holidays","retrieved","total","economic","benefito","communities","nine","day","victorian","bike_ride","estimated","australian","dollar","million","include","costs","ride","organisers","ongoing","benefits","estimate","thathe","total","value","cycle","tourism","uk","forecast","cycle","tourism","information","pack","retrieved","among","examples","current","activity","given","cyclists","using","danube","cycle","year","holiday","visitors","germany","using","bicycles","visit","bicycle_touring","distance","time","french","tourist","speaks","lectures","felt","proud","riding","round","world","five_years","met","australian","road","jacques","cyclo","france","german","rider","walter","lost","home","living","aftermath","world_war","ii","settled","britain","set","offrom","essex","january","cycle","round","world","rode","countries","years","denied","sealed","walter","world","beneath","bicycle","wheels","london","paid","way","giving","slide","shows","seven","languages","gave","us","rode","nigeria","republic","upper","volta","upper","volta","ghana","sierra_leone","coast","guinea","woodland","les","cycle","racing","touring","uk","robbed","times","wore","six","bicycles","five","stolen","people","usa","january","image","thumb","right","heinz","st","cke","paris","another","german","set","three_years","istill","riding","heinz","st","cke","left","job","die","maker","inorth","rhine","westphalia","never","home","since","thand","visited","countries","pays","way","selling","photographs","magazines","asia","left","china","may","ride","western_europe","scandinavia","another","across","africa","latin_americand","l","france","buthere","many","attempt","long","voyages","exceptionally","short","amounts","time","current","around","world","cycling","record","record","bicycle","days","hours","mike","hall","distinguished","writers","combined","cycling","travel_writing","murphy","made","first","documented","full","tilt","ireland","india","bicycle","london","india","single","speed","bicycle","little","change","winter","journey","beyond","aged","held","robbed","cycling","russia","eric","newby","e","round","ireland","low","gear","eric","newby","london","collins","anne","used","cycling","means","literary","end","valuing","way","cycling","brings","traveller","closer","people","said","bicycle","makes","independent","way","nother","form","transport","needs","fuel","documents","little","maintenance","importantly","goes","along","athe","right","speed","seeing","everything","cut","surroundings","also","makes","lot","b","riding","bicycle","source","nile","london","morecent","years","british","adventurers","ofuture","mark","man","world","rob","cycling","home","epic","written","popular","books","aboutheir","exploits","ordinary","people","spotlight","one","profound","economic","implications","bicycle","use","user","oil","consumption","bicycle","inexpensive","fast","healthy","environmentally","friendly","mode","transport","ivan","stated","bicycle","physical","environment","people","cars","motorways","degraded","confined","people","environment","energy","equity","new_york","global","players","like","bicycle_tours","organize","affordable","well","designed","worldwide","voyages","globally","ranging","types","challenging","file","slovenia","thumb","cyclists","tour","slovenia","file","loaded","touring","thumb","loaded","touring","bicycle","drop","bars","c","wheels","bar","bag","distances","vary","considerably","depending","number","stops","rider","usually","covers","kilometres","per_day","days","may","cover","little","long","tour","may","go","right","across","country","around","world","bicycle_touring","informally","called","credit_card","touring","rider","carries","minimum","equipment","lot","money","overnight","accommodation","youthostel","hotel","pension","lodging","pension","bed","breakfast","b","food","bought","cafes","restaurants","markets","differs","credit_card","touring","thathe","rider","iself","sufficient","carries","fully","loaded","touring","also_known","supported","touring","cyclists","carry","everything","need","including","food","cooking","equipment","tent","camping","recreation","camping","cyclists","minimize","load","carrying","basic","supplies","food","bivouac","shelter","expedition","touring","cyclists","travel","extensively","often","developing","nations","areas","bicycle","loaded","food","tools","camping_equipment","thathe","traveller","largely","self","supporting","mixed_terrain","cycle_touring","bikepacking","also_called","rough","riding","cyclists","travel","variety","surfaces","topography","single","route","single","bicycle","focusing","freedom","travel","efficiency","varied","surfaces","cyclists","often","adopt","ultralight","camping","approach","carry","minimal","gear","bikepacking","supported","touring","cyclists","supported","motor_vehicle","carries","organized","independently","groups","cyclists","commercial","holiday_companies","places","guided_tours","including","booked","lodging","luggage","route","planning","often","meals","rental","bikes","day","touring","rides","vary","highly","size","group","length","purpose","methods","may","involve","solo","cyclists","group","rides","large","organized","rides","thousands","riders","length","range","miles","century_ride","longer","purpose","range","riding","pleasure","fitness","raising","money","charitable","organization","methods","support","include","self","rides","supported","friends","small","groups","organized","rides","cyclists","pay","support","accommodation","provided","event","organizers","including","rest","refreshment","stops","aid","safety","bicycling","terminology","sag","services","sub","hour","sub","hour","overnight","less","cycling","camping","typically","one","bicycle","late","afternoon","evening","ride","campsite","hours","camp","sleep","ride","home","next","morning","type","require","little","planning","time","commitment","one","lives","large","urban","metropolis","trip","might","also","bextended","taking","train","coach","geto","convenient","starting_point","may","lot","longer","hours","making","weekend","tour","otherwise","still","works","planning","principles","touring","bike","image","thumb","fully","loaded","touring","image","brompton","thumb","two","wheel","trailer","cycle_touring","beyond","range","day","trip","may","need","bike","capable","carrying","heavy","loads","although_many","different","bicycles","used","bicycle_touring","bike","builto","carry","appropriate","loads","ridden","comfortably","long_distances","typical","bicycle","would","longer","stability","clearance","frame","fittings","low","rider","bicycle","luggage","carrier","front","rear","luggage","additional","water","bottle","frame","fittings","front","rear","cope","withe","increased","weight","touring","bicycle","tires","wider","provide","comfort","choose","traditional","road","bicycle","cycling","bicycles","speed","simplicity","however","bikes","harder","ride","roads","may","limit","route","options","advantages","bicycle","particularly","relevanto","touring","weight","carried","bicycle","increase","luggage","capacity","touring","cyclists","may","use","bicycle","trailer","supported","rider","luggage","carrying","important","bicycle","types","may","suitable","depending","mark","ian","rob","murphy","anne","cyclist","heinz","fiction","examples","ofictional","works","featuring","bicycle_tours","include","bike","tour","mystery","carolyn","nancy","drew","mystery","stories","wheels","chance","also","cycling","bicycle_ride_across","georgia","bicycle","safety","challenge","riding","cyclists","touring_club","great_victorian","bike_ride","league","american","bicyclists","long_distance","cycling","route","mixed_terrain","cycle_touring","national","cycling","route","network","national","route","argentina","bicycle","trail","trail","riding","utility","cycling","references_externalinks","try","bike","camping","popular_science","october","pp","category_bicycle_tours","category_cycling","touring","category_types","tourism_category","sustainable","transport"],"clean_bigrams":[["image","cycling"],["thumb","px"],["px","expedition"],["expedition","type"],["type","bicycle"],["bicycle","touring"],["touring","cordillera"],["cordillera","del"],["del","paine"],["paine","bicycle"],["bicycle","tourism"],["tourism","touring"],["contained","cycling"],["cycling","trips"],["pleasure","adventure"],["autonomy","rather"],["sport","commuting"],["exercise","touring"],["multi","day"],["day","trips"],["trips","even"],["even","years"],["years","tours"],["tours","may"],["participant","organised"],["holiday","business"],["fund","raising"],["raising","venture"],["venture","image"],["image","bicycling"],["thumb","px"],["px","touring"],["jpg","thumb"],["thumb","woman"],["bicycle","clothes"],["historian","james"],["james","mcgurn"],["mcgurn","speaks"],["th","century"],["century","foriders"],["horse","hobby"],["hobby","horses"],["horses","machines"],["machines","pushed"],["feet","rather"],["four","horse"],["horse","coach"],["says","mcgurn"],["mcgurn","james"],["bicycle","john"],["john","murray"],["murray","uk"],["various","accounts"],["touring","around"],["around","france"],["february","john"],["square","london"],["times","whichad"],["whichad","sent"],["offrom","liverpool"],["three","days"],["modern","cycle"],["cycle","touring"],["bicycles","caused"],["remarks","passed"],["could","caught"],["caught","hold"],["ran","behind"],["birmingham","attempts"],["throwing","stones"],["stones","times"],["times","london"],["london","march"],["march","enthusiasm"],["enthusiasm","extended"],["extended","tother"],["tother","countries"],["new","york"],["united","states"],["word","included"],["called","hobby"],["hobby","horses"],["horses","flying"],["flying","like"],["british","interest"],["less","frenzy"],["united","states"],["lasted","longer"],["longer","thexpansion"],["small","front"],["front","wheel"],["wheel","made"],["made","longer"],["longer","distances"],["distances","feasible"],["rider","calling"],["book","wheels"],["event","free"],["free","ride"],["mcgurn","says"],["adventure","despite"],["despite","bad"],["bad","road"],["road","surfaces"],["surfaces","dust"],["journeys","grew"],["san","francisco"],["francisco","chronicle"],["chronicle","set"],["world","april"],["inch","columbia"],["columbia","bicycles"],["bicycles","columbia"],["money","belt"],["two","shirts"],["rain","cape"],["cape","spending"],["spending","two"],["two","years"],["writing","articles"],["two","volume"],["volume","page"],["page","book"],["book","john"],["john","foster"],["foster","fraser"],["safety","bicycles"],["f","h"],["h","lowe"],["lowe","rode"],["rode","miles"],["two","years"],["two","months"],["months","fraser"],["fraser","john"],["recreational","cycling"],["enough","established"],["bicycle","touring"],["touring","club"],["club","laterenamed"],["laterenamed","cyclists"],["cyclists","touring"],["touring","club"],["oldest","national"],["national","tourism"],["tourism","organisation"],["world","members"],["members","like"],["clubs","often"],["often","rode"],["ctc","appointed"],["official","tailor"],["dark","green"],["stanley","helmet"],["small","peak"],["colour","changed"],["green","proved"],["proved","impractical"],["dirt","cycling"],["dinosaur","publications"],["publications","groups"],["groups","often"],["often","rode"],["atheir","head"],["sound","changes"],["halt","confusion"],["confusion","could"],["groups","met"],["signals","john"],["int","wheels"],["wheels","ofortune"],["ofortune","bbc"],["bbc","radio"],["radio","membership"],["ctc","inspired"],["paul","de"],["b","april"],["ration","fran"],["fran","aise"],["aise","de"],["largest","cycling"],["cycling","association"],["french","word"],["word","cyclo"],["cyclo","tourisme"],["founded","inewport"],["inewport","rhode"],["rhode","island"],["leisure","cycling"],["cycling","withe"],["withe","administration"],["cycle","racing"],["primary","national"],["national","bicycle"],["bicycle","touring"],["touring","organization"],["adventure","cycling"],["cycling","association"],["association","adventure"],["adventure","cycling"],["called","bikecentennial"],["bikecentennial","organised"],["mass","ride"],["one","side"],["th","anniversary"],["bikecentennial","route"],["route","istill"],["transamerica","bicycle"],["bicycle","trail"],["trail","social"],["social","significance"],["significance","image"],["image","h"],["h","g"],["png","thumbnail"],["thumbnail","right"],["right","px"],["px","h"],["h","g"],["g","wells"],["athe","door"],["first","cyclists"],["cyclists","often"],["often","aristocratic"],["withe","bicycle"],["new","motor"],["motor","car"],["lower","middle"],["middle","class"],["broughthe","cyclist"],["august","said"],["two","sections"],["great","clerk"],["clerk","class"],["great","shop"],["shop","assistant"],["assistant","class"],["class","h"],["h","g"],["g","wells"],["wells","described"],["class","liberated"],["cycling","three"],["chance","buy"],["buy","bicycles"],["third","hoopdriver"],["hoopdriver","goes"],["cycling","holiday"],["martin","gray"],["gray","say"],["say","hoopdriver"],["certainly","liberated"],["country","holiday"],["immensely","however"],["society","girl"],["girl","riding"],["many","bicycles"],["rational","dress"],["dress","watson"],["gray","martin"],["penguin","book"],["bicycle","penguin"],["penguin","uk"],["book","suggests"],["new","social"],["social","mobility"],["mobility","created"],["world","literally"],["hoopdriver","sets"],["finally","away"],["six","long"],["long","days"],["yearound","save"],["one","brief"],["brief","glorious"],["ten","days"],["summer","time"],["time","know"],["first","holiday"],["holiday","morning"],["routine","drops"],["chains","fall"],["richmond","road"],["overnight","shower"],["heart","sang"],["sang","within"],["h","g"],["g","wheels"],["wells","puts"],["puts","hoopdriver"],["new","brown"],["brown","cycling"],["hoopdriver","finds"],["bicycle","raises"],["london","pronunciation"],["rational","dress"],["made","cycling"],["cycling","much"],["much","easier"],["victorian","dress"],["dress","reform"],["reform","rational"],["birth","comfort"],["young","lady"],["bicycle","touring"],["touring","hoopdriver"],["hoopdriver","falls"],["left","alone"],["cycling","holiday"],["social","status"],["mcgurn","says"],["social","perspectives"],["wells","cyclists"],["cyclists","led"],["led","john"],["later","date"],["date","thathe"],["thathe","bicycle"],["since","charles"],["bicycle","gained"],["outdoor","movement"],["cyclists","touring"],["touring","club"],["club","advertised"],["tour","staying"],["hotels","recommended"],["youthostel","movement"],["movement","started"],["spread","abroad"],["cycling","holiday"],["holiday","staying"],["martin","gray"],["gray","estimate"],["ten","million"],["million","bicycles"],["britain","tone"],["tone","million"],["million","cars"],["decline","set"],["across","europe"],["europe","particularly"],["servicemen","returned"],["world","war"],["war","ii"],["drive","trips"],["trips","away"],["increasing","number"],["united","states"],["mcgurn","says"],["inter","war"],["war","cycling"],["steady","decline"],["decline","cycling"],["lost","outo"],["new","electric"],["electric","transport"],["transport","systems"],["american","children"],["mass","market"],["market","still"],["still","open"],["cycle","manufacturers"],["manufacturers","wartime"],["gave","cycling"],["industrial","world"],["post","war"],["war","peace"],["bicycle","low"],["low","however"],["usa","experienced"],["bike","boom"],["united","states"],["states","greg"],["greg","siple"],["wife","june"],["lys","burden"],["burden","organized"],["mass","bike"],["bike","ride"],["ride","bikecentennial"],["atlantic","siple"],["siple","said"],["original","thought"],["golden","gate"],["gate","park"],["san","francisco"],["bicycle","across"],["pictured","thousands"],["people","witheir"],["witheir","bikes"],["old","men"],["bicycle","tire"],["tire","balloon"],["balloon","tire"],["tire","bikes"],["nobody","would"],["would","shoot"],["crossing","america"],["astoria","oregon"],["yorktown","virginia"],["virginia","site"],["first","british"],["british","settlements"],["settlements","rode"],["completing","thentire"],["thentire","route"],["new","start"],["cycle","touring"],["united","states"],["adventure","cycling"],["cycling","association"],["association","adventure"],["adventure","cycling"],["adventure","cycling"],["cycling","route"],["route","network"],["network","mapped"],["mapped","routes"],["routes","across"],["across","americand"],["canada","many"],["rides","taking"],["three","months"],["loaded","bicycle"],["cyclists","touring"],["touring","club"],["club","grew"],["biggest","body"],["body","campaigning"],["cyclists","rights"],["group","touring"],["touring","events"],["events","including"],["including","day"],["day","rides"],["local","groups"],["ctc","holidays"],["many","countries"],["countries","led"],["experienced","ctc"],["national","cycle"],["cycle","network"],["long","distance"],["distance","cycle"],["cycle","routes"],["routes","including"],["including","back"],["back","roads"],["traffic","free"],["free","tracks"],["tracks","built"],["built","signed"],["local","organisations"],["organisations","file"],["file","gvbr"],["near","port"],["port","campbell"],["campbell","vic"],["vic","jjron"],["jjron","jpg"],["jpg","righthumb"],["righthumb","supported"],["supported","bicycle"],["bicycle","touring"],["nine","day"],["day","great"],["great","victorian"],["victorian","bike"],["bike","ride"],["organised","cycling"],["cycling","holidays"],["holidays","provided"],["commercial","organisations"],["many","countriesome"],["countriesome","companies"],["companies","provide"],["provide","accommodation"],["route","information"],["cyclists","travelling"],["travelling","independently"],["independently","others"],["others","focus"],["group","experience"],["large","number"],["riders","cycling"],["cycling","together"],["holidays","often"],["exotic","locations"],["locations","organised"],["participants","arexpected"],["raise","donation"],["bicycle","touring"],["economic","effects"],["difficulto","estimate"],["estimate","given"],["informal","nature"],["nature","market"],["market","research"],["research","indicates"],["organised","cycling"],["cycling","holidays"],["million","people"],["people","included"],["cycling","activity"],["annual","holiday"],["cycling","holidays"],["holidays","retrieved"],["total","economic"],["economic","benefito"],["benefito","communities"],["nine","day"],["victorian","bike"],["bike","ride"],["australian","dollar"],["include","costs"],["ride","organisers"],["ongoing","benefits"],["estimate","thathe"],["thathe","total"],["total","value"],["cycle","tourism"],["cycle","tourism"],["tourism","information"],["information","pack"],["retrieved","among"],["among","examples"],["current","activity"],["activity","given"],["cyclists","using"],["danube","cycle"],["holiday","visitors"],["germany","using"],["using","bicycles"],["visit","bicycle"],["bicycle","touring"],["french","tourist"],["felt","proud"],["proud","riding"],["riding","round"],["five","years"],["jacques","cyclo"],["german","rider"],["rider","walter"],["world","war"],["war","ii"],["ii","settled"],["set","offrom"],["offrom","essex"],["cycle","round"],["years","denied"],["world","beneath"],["bicycle","wheels"],["giving","slide"],["slide","shows"],["seven","languages"],["upper","volta"],["volta","upper"],["upper","volta"],["volta","ghana"],["ghana","sierra"],["sierra","leone"],["guinea","woodland"],["woodland","les"],["les","cycle"],["cycle","racing"],["robbed","times"],["times","wore"],["six","bicycles"],["stolen","people"],["people","usa"],["usa","january"],["january","image"],["thumb","right"],["right","heinz"],["heinz","st"],["st","cke"],["paris","another"],["another","german"],["german","set"],["three","years"],["istill","riding"],["riding","heinz"],["heinz","st"],["st","cke"],["cke","left"],["die","maker"],["maker","inorth"],["inorth","rhine"],["rhine","westphalia"],["home","since"],["thand","visited"],["visited","countries"],["selling","photographs"],["left","china"],["western","europe"],["europe","scandinavia"],["across","africa"],["africa","latin"],["latin","americand"],["france","buthere"],["attempt","long"],["long","voyages"],["exceptionally","short"],["short","amounts"],["current","around"],["world","cycling"],["cycling","record"],["days","hours"],["mike","hall"],["distinguished","writers"],["combined","cycling"],["travel","writing"],["first","documented"],["full","tilt"],["tilt","ireland"],["single","speed"],["speed","bicycle"],["winter","journey"],["journey","beyond"],["russia","eric"],["eric","newby"],["newby","e"],["e","round"],["round","ireland"],["low","gear"],["gear","eric"],["eric","newby"],["newby","london"],["london","collins"],["used","cycling"],["literary","end"],["end","valuing"],["cycling","brings"],["traveller","closer"],["bicycle","makes"],["way","nother"],["nother","form"],["little","maintenance"],["goes","along"],["along","athe"],["athe","right"],["right","speed"],["seeing","everything"],["also","makes"],["b","riding"],["nile","london"],["morecent","years"],["years","british"],["british","adventurers"],["cycling","home"],["written","popular"],["popular","books"],["books","aboutheir"],["aboutheir","exploits"],["bicycle","tourists"],["ordinary","people"],["spotlight","one"],["profound","economic"],["economic","implications"],["bicycle","use"],["oil","consumption"],["inexpensive","fast"],["fast","healthy"],["environmentally","friendly"],["friendly","mode"],["transport","ivan"],["physical","environment"],["motorways","degraded"],["confined","people"],["equity","new"],["new","york"],["global","players"],["players","like"],["bicycle","tours"],["tours","organize"],["organize","affordable"],["well","designed"],["designed","worldwide"],["worldwide","voyages"],["voyages","globally"],["globally","ranging"],["file","slovenia"],["slovenia","file"],["file","loaded"],["loaded","touring"],["loaded","touring"],["touring","bicycle"],["drop","bars"],["bars","c"],["c","wheels"],["bar","bag"],["bag","distances"],["distances","vary"],["vary","considerably"],["considerably","depending"],["rider","usually"],["usually","covers"],["per","day"],["days","may"],["may","cover"],["long","tour"],["tour","may"],["may","go"],["go","right"],["right","across"],["many","differentypes"],["bicycle","touring"],["informally","called"],["called","credit"],["credit","card"],["card","touring"],["rider","carries"],["money","overnight"],["overnight","accommodation"],["pension","lodging"],["lodging","pension"],["bed","breakfast"],["breakfast","b"],["cafes","restaurants"],["credit","card"],["card","touring"],["thathe","rider"],["rider","iself"],["iself","sufficient"],["fully","loaded"],["loaded","touring"],["touring","also"],["also","known"],["supported","touring"],["touring","cyclists"],["cyclists","carry"],["carry","everything"],["need","including"],["including","food"],["food","cooking"],["cooking","equipment"],["camping","recreation"],["recreation","camping"],["cyclists","minimize"],["load","carrying"],["basic","supplies"],["supplies","food"],["bivouac","shelter"],["expedition","touring"],["touring","cyclists"],["cyclists","travel"],["travel","extensively"],["extensively","often"],["developing","nations"],["camping","equipment"],["thathe","traveller"],["largely","self"],["self","supporting"],["supporting","mixed"],["mixed","terrain"],["terrain","cycle"],["cycle","touring"],["touring","bikepacking"],["bikepacking","also"],["also","called"],["called","rough"],["rough","riding"],["riding","cyclists"],["cyclists","travel"],["single","route"],["single","bicycle"],["bicycle","focusing"],["varied","surfaces"],["surfaces","cyclists"],["cyclists","often"],["often","adopt"],["ultralight","camping"],["camping","approach"],["minimal","gear"],["gear","bikepacking"],["bikepacking","supported"],["supported","touring"],["touring","cyclists"],["motor","vehicle"],["organized","independently"],["commercial","holiday"],["holiday","companies"],["guided","tours"],["tours","including"],["including","booked"],["booked","lodging"],["lodging","luggage"],["route","planning"],["often","meals"],["rental","bikes"],["bikes","day"],["day","touring"],["rides","vary"],["vary","highly"],["group","length"],["length","purpose"],["may","involve"],["involve","solo"],["solo","cyclists"],["cyclists","group"],["group","rides"],["large","organized"],["organized","rides"],["century","ride"],["raising","money"],["charitable","organization"],["organization","methods"],["include","self"],["rides","supported"],["small","groups"],["organized","rides"],["cyclists","pay"],["accommodation","provided"],["event","organizers"],["organizers","including"],["including","rest"],["refreshment","stops"],["aid","safety"],["bicycling","terminology"],["terminology","sag"],["sag","services"],["sub","hour"],["sub","hour"],["hour","overnight"],["camping","typically"],["typically","one"],["late","afternoon"],["evening","ride"],["hours","camp"],["camp","sleep"],["ride","home"],["next","morning"],["little","planning"],["time","commitment"],["one","lives"],["large","urban"],["urban","metropolis"],["trip","might"],["might","also"],["also","bextended"],["bextended","taking"],["convenient","starting"],["starting","point"],["lot","longer"],["hours","making"],["weekend","tour"],["otherwise","still"],["still","works"],["planning","principles"],["principles","touring"],["touring","bike"],["bike","image"],["thumb","fully"],["fully","loaded"],["loaded","touring"],["image","brompton"],["thumb","two"],["two","wheel"],["wheel","trailer"],["trailer","cycle"],["cycle","touring"],["touring","beyond"],["day","trip"],["trip","may"],["may","need"],["bike","capable"],["carrying","heavy"],["heavy","loads"],["loads","although"],["although","many"],["many","different"],["different","bicycles"],["bicycle","touring"],["touring","bike"],["builto","carry"],["carry","appropriate"],["appropriate","loads"],["long","distances"],["typical","bicycle"],["bicycle","would"],["clearance","frame"],["frame","fittings"],["low","rider"],["rider","bicycle"],["bicycle","luggage"],["luggage","carrier"],["carrier","front"],["additional","water"],["water","bottle"],["frame","fittings"],["cope","withe"],["withe","increased"],["increased","weight"],["touring","bicycle"],["bicycle","tires"],["choose","traditional"],["traditional","road"],["road","bicycle"],["simplicity","however"],["may","limit"],["limit","route"],["route","options"],["particularly","relevanto"],["relevanto","touring"],["weight","carried"],["increase","luggage"],["luggage","capacity"],["capacity","touring"],["touring","cyclists"],["cyclists","may"],["may","use"],["use","bicycle"],["bicycle","trailer"],["supported","rider"],["rider","luggage"],["luggage","carrying"],["bicycle","types"],["types","may"],["suitable","depending"],["bicycle","tourists"],["tourists","mark"],["murphy","anne"],["fiction","examples"],["examples","ofictional"],["ofictional","works"],["works","featuring"],["featuring","bicycle"],["bicycle","tours"],["tours","include"],["bike","tour"],["tour","mystery"],["nancy","drew"],["drew","mystery"],["mystery","stories"],["cycling","bicycle"],["bicycle","ride"],["ride","across"],["across","georgia"],["georgia","bicycle"],["bicycle","safety"],["safety","challenge"],["challenge","riding"],["riding","cyclists"],["cyclists","touring"],["touring","club"],["great","victorian"],["victorian","bike"],["bike","ride"],["ride","league"],["american","bicyclists"],["bicyclists","long"],["long","distance"],["distance","cycling"],["cycling","route"],["route","mixed"],["mixed","terrain"],["terrain","cycle"],["cycle","touring"],["touring","national"],["national","cycling"],["cycling","route"],["route","network"],["network","national"],["national","route"],["route","argentina"],["bicycle","trail"],["trail","riding"],["riding","utility"],["utility","cycling"],["cycling","references"],["references","externalinks"],["externalinks","try"],["try","bike"],["bike","camping"],["camping","popular"],["popular","science"],["science","october"],["october","pp"],["pp","category"],["category","bicycle"],["bicycle","tours"],["tours","category"],["category","cycling"],["cycling","touring"],["touring","category"],["category","types"],["tourism","category"],["category","sustainable"],["sustainable","transport"]],"all_collocations":["image cycling","px expedition","expedition type","type bicycle","bicycle touring","touring cordillera","cordillera del","del paine","paine bicycle","bicycle tourism","tourism touring","contained cycling","cycling trips","pleasure adventure","autonomy rather","sport commuting","exercise touring","multi day","day trips","trips even","even years","years tours","tours may","participant organised","holiday business","fund raising","raising venture","venture image","image bicycling","px touring","thumb woman","bicycle clothes","historian james","james mcgurn","mcgurn speaks","th century","century foriders","horse hobby","hobby horses","horses machines","machines pushed","feet rather","four horse","horse coach","says mcgurn","mcgurn james","bicycle john","john murray","murray uk","various accounts","touring around","around france","february john","square london","times whichad","whichad sent","offrom liverpool","three days","modern cycle","cycle touring","bicycles caused","remarks passed","could caught","caught hold","ran behind","birmingham attempts","throwing stones","stones times","times london","london march","march enthusiasm","enthusiasm extended","extended tother","tother countries","new york","united states","word included","called hobby","hobby horses","horses flying","flying like","british interest","less frenzy","united states","lasted longer","longer thexpansion","small front","front wheel","wheel made","made longer","longer distances","distances feasible","rider calling","book wheels","event free","free ride","mcgurn says","adventure despite","despite bad","bad road","road surfaces","surfaces dust","journeys grew","san francisco","francisco chronicle","chronicle set","world april","inch columbia","columbia bicycles","bicycles columbia","money belt","two shirts","rain cape","cape spending","spending two","two years","writing articles","two volume","volume page","page book","book john","john foster","foster fraser","safety bicycles","f h","h lowe","lowe rode","rode miles","two years","two months","months fraser","fraser john","recreational cycling","enough established","bicycle touring","touring club","club laterenamed","laterenamed cyclists","cyclists touring","touring club","oldest national","national tourism","tourism organisation","world members","members like","clubs often","often rode","ctc appointed","official tailor","dark green","stanley helmet","small peak","colour changed","green proved","proved impractical","dirt cycling","dinosaur publications","publications groups","groups often","often rode","atheir head","sound changes","halt confusion","confusion could","groups met","signals john","int wheels","wheels ofortune","ofortune bbc","bbc radio","radio membership","ctc inspired","paul de","b april","ration fran","fran aise","aise de","largest cycling","cycling association","french word","word cyclo","cyclo tourisme","founded inewport","inewport rhode","rhode island","leisure cycling","cycling withe","withe administration","cycle racing","primary national","national bicycle","bicycle touring","touring organization","adventure cycling","cycling association","association adventure","adventure cycling","called bikecentennial","bikecentennial organised","mass ride","one side","th anniversary","bikecentennial route","route istill","transamerica bicycle","bicycle trail","trail social","social significance","significance image","image h","h g","png thumbnail","thumbnail right","px h","h g","g wells","athe door","first cyclists","cyclists often","often aristocratic","withe bicycle","new motor","motor car","lower middle","middle class","broughthe cyclist","august said","two sections","great clerk","clerk class","great shop","shop assistant","assistant class","class h","h g","g wells","wells described","class liberated","cycling three","chance buy","buy bicycles","third hoopdriver","hoopdriver goes","cycling holiday","martin gray","gray say","say hoopdriver","certainly liberated","country holiday","immensely however","society girl","girl riding","many bicycles","rational dress","dress watson","gray martin","penguin book","bicycle penguin","penguin uk","book suggests","new social","social mobility","mobility created","world literally","hoopdriver sets","finally away","six long","long days","yearound save","one brief","brief glorious","ten days","summer time","time know","first holiday","holiday morning","routine drops","chains fall","richmond road","overnight shower","heart sang","sang within","h g","g wheels","wells puts","puts hoopdriver","new brown","brown cycling","hoopdriver finds","bicycle raises","london pronunciation","rational dress","made cycling","cycling much","much easier","victorian dress","dress reform","reform rational","birth comfort","young lady","bicycle touring","touring hoopdriver","hoopdriver falls","left alone","cycling holiday","social status","mcgurn says","social perspectives","wells cyclists","cyclists led","led john","later date","date thathe","thathe bicycle","since charles","bicycle gained","outdoor movement","cyclists touring","touring club","club advertised","tour staying","hotels recommended","youthostel movement","movement started","spread abroad","cycling holiday","holiday staying","martin gray","gray estimate","ten million","million bicycles","britain tone","tone million","million cars","decline set","across europe","europe particularly","servicemen returned","world war","war ii","drive trips","trips away","increasing number","united states","mcgurn says","inter war","war cycling","steady decline","decline cycling","lost outo","new electric","electric transport","transport systems","american children","mass market","market still","still open","cycle manufacturers","manufacturers wartime","gave cycling","industrial world","post war","war peace","bicycle low","low however","usa experienced","bike boom","united states","states greg","greg siple","wife june","lys burden","burden organized","mass bike","bike ride","ride bikecentennial","atlantic siple","siple said","original thought","golden gate","gate park","san francisco","bicycle across","pictured thousands","people witheir","witheir bikes","old men","bicycle tire","tire balloon","balloon tire","tire bikes","nobody would","would shoot","crossing america","astoria oregon","yorktown virginia","virginia site","first british","british settlements","settlements rode","completing thentire","thentire route","new start","cycle touring","united states","adventure cycling","cycling association","association adventure","adventure cycling","adventure cycling","cycling route","route network","network mapped","mapped routes","routes across","across americand","canada many","rides taking","three months","loaded bicycle","cyclists touring","touring club","club grew","biggest body","body campaigning","cyclists rights","group touring","touring events","events including","including day","day rides","local groups","ctc holidays","many countries","countries led","experienced ctc","national cycle","cycle network","long distance","distance cycle","cycle routes","routes including","including back","back roads","traffic free","free tracks","tracks built","built signed","local organisations","organisations file","file gvbr","near port","port campbell","campbell vic","vic jjron","jjron jpg","jpg righthumb","righthumb supported","supported bicycle","bicycle touring","nine day","day great","great victorian","victorian bike","bike ride","organised cycling","cycling holidays","holidays provided","commercial organisations","many countriesome","countriesome companies","companies provide","provide accommodation","route information","cyclists travelling","travelling independently","independently others","others focus","group experience","large number","riders cycling","cycling together","holidays often","exotic locations","locations organised","participants arexpected","raise donation","bicycle touring","economic effects","difficulto estimate","estimate given","informal nature","nature market","market research","research indicates","organised cycling","cycling holidays","million people","people included","cycling activity","annual holiday","cycling holidays","holidays retrieved","total economic","economic benefito","benefito communities","nine day","victorian bike","bike ride","australian dollar","include costs","ride organisers","ongoing benefits","estimate thathe","thathe total","total value","cycle tourism","cycle tourism","tourism information","information pack","retrieved among","among examples","current activity","activity given","cyclists using","danube cycle","holiday visitors","germany using","using bicycles","visit bicycle","bicycle touring","french tourist","felt proud","proud riding","riding round","five years","jacques cyclo","german rider","rider walter","world war","war ii","ii settled","set offrom","offrom essex","cycle round","years denied","world beneath","bicycle wheels","giving slide","slide shows","seven languages","upper volta","volta upper","upper volta","volta ghana","ghana sierra","sierra leone","guinea woodland","woodland les","les cycle","cycle racing","robbed times","times wore","six bicycles","stolen people","people usa","usa january","january image","right heinz","heinz st","st cke","paris another","another german","german set","three years","istill riding","riding heinz","heinz st","st cke","cke left","die maker","maker inorth","inorth rhine","rhine westphalia","home since","thand visited","visited countries","selling photographs","left china","western europe","europe scandinavia","across africa","africa latin","latin americand","france buthere","attempt long","long voyages","exceptionally short","short amounts","current around","world cycling","cycling record","days hours","mike hall","distinguished writers","combined cycling","travel writing","first documented","full tilt","tilt ireland","single speed","speed bicycle","winter journey","journey beyond","russia eric","eric newby","newby e","e round","round ireland","low gear","gear eric","eric newby","newby london","london collins","used cycling","literary end","end valuing","cycling brings","traveller closer","bicycle makes","way nother","nother form","little maintenance","goes along","along athe","athe right","right speed","seeing everything","also makes","b riding","nile london","morecent years","years british","british adventurers","cycling home","written popular","popular books","books aboutheir","aboutheir exploits","bicycle tourists","ordinary people","spotlight one","profound economic","economic implications","bicycle use","oil consumption","inexpensive fast","fast healthy","environmentally friendly","friendly mode","transport ivan","physical environment","motorways degraded","confined people","equity new","new york","global players","players like","bicycle tours","tours organize","organize affordable","well designed","designed worldwide","worldwide voyages","voyages globally","globally ranging","file slovenia","slovenia file","file loaded","loaded touring","loaded touring","touring bicycle","drop bars","bars c","c wheels","bar bag","bag distances","distances vary","vary considerably","considerably depending","rider usually","usually covers","per day","days may","may cover","long tour","tour may","may go","go right","right across","many differentypes","bicycle touring","informally called","called credit","credit card","card touring","rider carries","money overnight","overnight accommodation","pension lodging","lodging pension","bed breakfast","breakfast b","cafes restaurants","credit card","card touring","thathe rider","rider iself","iself sufficient","fully loaded","loaded touring","touring also","also known","supported touring","touring cyclists","cyclists carry","carry everything","need including","including food","food cooking","cooking equipment","camping recreation","recreation camping","cyclists minimize","load carrying","basic supplies","supplies food","bivouac shelter","expedition touring","touring cyclists","cyclists travel","travel extensively","extensively often","developing nations","camping equipment","thathe traveller","largely self","self supporting","supporting mixed","mixed terrain","terrain cycle","cycle touring","touring bikepacking","bikepacking also","also called","called rough","rough riding","riding cyclists","cyclists travel","single route","single bicycle","bicycle focusing","varied surfaces","surfaces cyclists","cyclists often","often adopt","ultralight camping","camping approach","minimal gear","gear bikepacking","bikepacking supported","supported touring","touring cyclists","motor vehicle","organized independently","commercial holiday","holiday companies","guided tours","tours including","including booked","booked lodging","lodging luggage","route planning","often meals","rental bikes","bikes day","day touring","rides vary","vary highly","group length","length purpose","may involve","involve solo","solo cyclists","cyclists group","group rides","large organized","organized rides","century ride","raising money","charitable organization","organization methods","include self","rides supported","small groups","organized rides","cyclists pay","accommodation provided","event organizers","organizers including","including rest","refreshment stops","aid safety","bicycling terminology","terminology sag","sag services","sub hour","sub hour","hour overnight","camping typically","typically one","late afternoon","evening ride","hours camp","camp sleep","ride home","next morning","little planning","time commitment","one lives","large urban","urban metropolis","trip might","might also","also bextended","bextended taking","convenient starting","starting point","lot longer","hours making","weekend tour","otherwise still","still works","planning principles","principles touring","touring bike","bike image","thumb fully","fully loaded","loaded touring","image brompton","thumb two","two wheel","wheel trailer","trailer cycle","cycle touring","touring beyond","day trip","trip may","may need","bike capable","carrying heavy","heavy loads","loads although","although many","many different","different bicycles","bicycle touring","touring bike","builto carry","carry appropriate","appropriate loads","long distances","typical bicycle","bicycle would","clearance frame","frame fittings","low rider","rider bicycle","bicycle luggage","luggage carrier","carrier front","additional water","water bottle","frame fittings","cope withe","withe increased","increased weight","touring bicycle","bicycle tires","choose traditional","traditional road","road bicycle","simplicity however","may limit","limit route","route options","particularly relevanto","relevanto touring","weight carried","increase luggage","luggage capacity","capacity touring","touring cyclists","cyclists may","may use","use bicycle","bicycle trailer","supported rider","rider luggage","luggage carrying","bicycle types","types may","suitable depending","bicycle tourists","tourists mark","murphy anne","fiction examples","examples ofictional","ofictional works","works featuring","featuring bicycle","bicycle tours","tours include","bike tour","tour mystery","nancy drew","drew mystery","mystery stories","cycling bicycle","bicycle ride","ride across","across georgia","georgia bicycle","bicycle safety","safety challenge","challenge riding","riding cyclists","cyclists touring","touring club","great victorian","victorian bike","bike ride","ride league","american bicyclists","bicyclists long","long distance","distance cycling","cycling route","route mixed","mixed terrain","terrain cycle","cycle touring","touring national","national cycling","cycling route","route network","network national","national route","route argentina","bicycle trail","trail riding","riding utility","utility cycling","cycling references","references externalinks","externalinks try","try bike","bike camping","camping popular","popular science","science october","october pp","pp category","category bicycle","bicycle tours","tours category","category cycling","cycling touring","touring category","category types","tourism category","category sustainable","sustainable transport"],"new_description":"image cycling del thumb px expedition type bicycle_touring cordillera del paine bicycle_tourism touring contained cycling trips pleasure adventure autonomy rather sport commuting exercise touring range single multi day_trips even years tours may planned participant organised holiday business club charity fund raising venture image bicycling thumb px touring countryside man der p jpg thumb woman bicycle clothes also_used historian james mcgurn speaks taken london th_century foriders horse hobby horses machines pushed feet rather stagecoach one beat four horse coach brighton half hour says mcgurn james bicycle john_murray uk various accounts year touring around france february john square london brighton hours miles times whichad sent reporter follow coach extraordinary offrom liverpool london journey three_days akin modern cycle_touring march year said bicycles caused little way remarks passed natives almost villages boys round machines could caught hold ran behind tired many made name called menageries birmingham attempts made riders throwing stones times london march enthusiasm extended tother countries new_york quantities united_states word included elsewhere called hobby horses flying like british interest less frenzy united_states lasted longer thexpansion machine pushed propelled pedals small front wheel made longer distances feasible rider calling light told ride salisbury england title book wheels less event free ride mcgurn says seems adventure despite bad road surfaces dust lack journeys grew adventurous writer san_francisco chronicle set around world april inch columbia bicycles columbia money belt two shirts rain cape spending two_years road writing articles became two volume page book john_foster fraser two round world safety bicycles july f h lowe rode miles countries two_years two months fraser john around world wheel uk recreational cycling enough established britain lead formation bicycle_touring club laterenamed cyclists touring_club oldest national_tourism_organisation world members like clubs often rode uniform ctc appointed official tailor uniform dark green jacket clothing stanley helmet small peak colour changed grey green proved impractical showed dirt cycling ray dinosaur publications groups often rode atheir head sound changes direction bring group halt confusion could caused groups met signals john int wheels ofortune bbc radio membership ctc inspired paul de b april found became f ration fran aise de world largest cycling_association coin french word cyclo tourisme league american us founded inewport rhode_island may shared interest leisure cycling withe administration cycle racing primary national bicycle_touring organization us adventure_cycling association adventure_cycling called bikecentennial organised mass ride one_side country mark nation th_anniversary bikecentennial route istill use transamerica bicycle trail social significance image h g project png_thumbnail right px h g wells athe door house kent first cyclists often aristocratic withe bicycle abandoned new motor car lower middle_class cycling liberation broughthe cyclist august said two sections community form majority great clerk class great shop assistant class h g wells described class liberated cycling three heroes history polly wheels chance buy bicycles shops third hoopdriver goes cycling holiday authors watson martin gray say hoopdriver certainly liberated machine affords country holiday immensely however countryside may_also brush society girl riding inflatable many bicycles still solid wearing kind rational dress watson gray martin penguin book bicycle penguin uk book suggests new social mobility created bike breaks boundaries hoopdriver world literally hoopdriver sets spirit finally away job six long days seven yearound save one brief glorious ten days summer time know first holiday morning routine drops chains fall richmond road putney freshness air relics overnight shower leaves machine hill heart sang within h g wheels chance bicycling wells puts hoopdriver new brown cycling show importance venture freedom whiche hoopdriver finds bicycle raises standing least imagination calls rides london pronunciation duke rational dress society made cycling much easier victorian dress reform rational founded london said rational protests kind ugly requires dressed comfortably seek birth comfort beauty dress duty young lady grey refers social bicycle_touring hoopdriver falls love lover says way left alone cycling holiday save social status raises mcgurn says shift social perspectives wells cyclists led john_claim later date thathe bicycle responsible movement manners since charles second bicycle gained outdoor movement cyclists touring_club advertised week tour staying hotels recommended cyclists youthostel movement started germany spread abroad cycling holiday staying hostels could watson martin gray estimate ten million bicycles britain tone million cars decline set across_europe particularly britain millions servicemen returned world_war ii learned drive trips away increasing_number one car decline united_states mcgurn says story inter war cycling characterised lack interest steady decline cycling lost outo automobile new electric transport_systems balloon streamlined imitation appealed american children mass market still open cycle manufacturers wartime gave cycling short industrial world post_war peace lay bicycle low however usa experienced bike boom celebrate bicentennial founding united_states greg siple wife june lys burden organized mass bike_ride bikecentennial pacific atlantic siple said original thought send ads show golden_gate park san_francisco clock june bicycle going bicycle across country pictured thousands people sea people witheir bikes packs ready go would old men people bicycle tire balloon tire bikes flew nobody would shoot gun anything clock would moving would like crowd crossing america ran astoria oregon yorktown virginia site first british settlements rode completing thentire route defined new start cycle_touring united_states led creation adventure_cycling association adventure_cycling adventure_cycling route network mapped routes across americand canada many rides taking three_months complete loaded bicycle britain cyclists touring_club grew members ctc retrieved biggest body campaigning cycling cyclists rights uk continues group touring events including day_rides local groups ctc holidays many_countries led experienced ctc created national cycle network long_distance cycle routes including back roads traffic free tracks built signed mapped partnership local organisations file gvbr near port_campbell vic_jjron_jpg_righthumb supported bicycle_touring nine day great_victorian bike_ride australia growth organised cycling holidays provided commercial organisations many_countriesome companies provide accommodation route information cyclists travelling independently others focus group experience support large_number riders cycling together variation holidays often exotic locations organised partnership charity participants arexpected raise donation well cover costs scale bicycle_touring economic effects difficulto estimate given activity informal nature market research indicates british organised cycling holidays million_people included cycling activity annual holiday go mad cycling holidays retrieved total economic benefito communities nine day victorian bike_ride estimated australian dollar million include costs ride organisers ongoing benefits estimate thathe total value cycle tourism uk forecast cycle tourism information pack retrieved among examples current activity given cyclists using danube cycle year holiday visitors germany using bicycles visit bicycle_touring distance time french tourist speaks lectures felt proud riding round world five_years met australian road jacques cyclo france german rider walter lost home living aftermath world_war ii settled britain set offrom essex january cycle round world rode countries years denied sealed walter world beneath bicycle wheels london paid way giving slide shows seven languages gave us rode nigeria republic upper volta upper volta ghana sierra_leone coast guinea woodland les cycle racing touring uk robbed times wore six bicycles five stolen people usa january image thumb right heinz st cke paris another german set three_years istill riding heinz st cke left job die maker inorth rhine westphalia never home since thand visited countries pays way selling photographs magazines asia left china may ride western_europe scandinavia another across africa latin_americand l france buthere many attempt long voyages exceptionally short amounts time current around world cycling record record bicycle days hours mike hall distinguished writers combined cycling travel_writing murphy made first documented full tilt ireland india bicycle london india single speed bicycle little change winter journey beyond aged held robbed cycling russia eric newby e round ireland low gear eric newby london collins anne used cycling means literary end valuing way cycling brings traveller closer people said bicycle makes independent way nother form transport needs fuel documents little maintenance importantly goes along athe right speed seeing everything cut surroundings also makes lot b riding bicycle source nile london morecent years british adventurers ofuture mark man world rob cycling home epic written popular books aboutheir exploits bicycle_tourists ordinary people spotlight one profound economic implications bicycle use user oil consumption bicycle inexpensive fast healthy environmentally friendly mode transport ivan stated bicycle physical environment people cars motorways degraded confined people environment energy equity new_york global players like bicycle_tours organize affordable well designed worldwide voyages globally ranging types challenging file slovenia thumb cyclists tour slovenia file loaded touring thumb loaded touring bicycle drop bars c wheels bar bag distances vary considerably depending number stops rider usually covers kilometres per_day days may cover little long tour may go right across country around world many_differentypes bicycle_touring informally called credit_card touring rider carries minimum equipment lot money overnight accommodation youthostel hotel pension lodging pension bed breakfast b food bought cafes restaurants markets differs credit_card touring thathe rider iself sufficient carries fully loaded touring also_known supported touring cyclists carry everything need including food cooking equipment tent camping recreation camping cyclists minimize load carrying basic supplies food bivouac shelter expedition touring cyclists travel extensively often developing nations areas bicycle loaded food tools camping_equipment thathe traveller largely self supporting mixed_terrain cycle_touring bikepacking also_called rough riding cyclists travel variety surfaces topography single route single bicycle focusing freedom travel efficiency varied surfaces cyclists often adopt ultralight camping approach carry minimal gear bikepacking supported touring cyclists supported motor_vehicle carries organized independently groups cyclists commercial holiday_companies places guided_tours including booked lodging luggage route planning often meals rental bikes day touring rides vary highly size group length purpose methods may involve solo cyclists group rides large organized rides thousands riders length range miles century_ride longer purpose range riding pleasure fitness raising money charitable organization methods support include self rides supported friends small groups organized rides cyclists pay support accommodation provided event organizers including rest refreshment stops aid safety bicycling terminology sag services sub hour sub hour overnight less cycling camping typically one bicycle late afternoon evening ride campsite hours camp sleep ride home next morning type require little planning time commitment one lives large urban metropolis trip might also bextended taking train coach geto convenient starting_point may lot longer hours making weekend tour otherwise still works planning principles touring bike image thumb fully loaded touring image brompton thumb two wheel trailer cycle_touring beyond range day trip may need bike capable carrying heavy loads although_many different bicycles used bicycle_touring bike builto carry appropriate loads ridden comfortably long_distances typical bicycle would longer stability clearance frame fittings low rider bicycle luggage carrier front rear luggage additional water bottle frame fittings front rear cope withe increased weight touring bicycle tires wider provide comfort choose traditional road bicycle cycling bicycles speed simplicity however bikes harder ride roads may limit route options advantages bicycle particularly relevanto touring weight carried bicycle increase luggage capacity touring cyclists may use bicycle trailer supported rider luggage carrying important bicycle types may suitable depending bicycle_tourists mark ian rob murphy anne cyclist heinz fiction examples ofictional works featuring bicycle_tours include bike tour mystery carolyn nancy drew mystery stories wheels chance also cycling bicycle_ride_across georgia bicycle safety challenge riding cyclists touring_club great_victorian bike_ride league american bicyclists long_distance cycling route mixed_terrain cycle_touring national cycling route network national route argentina bicycle trail trail riding utility cycling references_externalinks try bike camping popular_science october pp category_bicycle_tours category_cycling touring category_types tourism_category sustainable transport"},{"title":"Big Onion Walking Tours","description":"big onion walking tours is the largest walking tour company inew york city the company has offered sidewalk tours of the city since big onion shows visitors tourists alike the diverse fabric of urbaneighborhoods using as guides current doctoral students orecent phd s who are studying history or closely related fields history big onion was founded by columbia university graduate studentseth kamil and ed o donnell in big onion walking tours founded by two columbia university graduate students in john brannon albrightravel q and a new york times may found atravel section of the new york times archives article of accessed april david k randall these tour guides know the history not found on plaques new york times june corrected as of july found atravel section of the new york times archives article of as amended accessed april they were initially encouraged by kenneth t jackson a columbia professor and prominent historian of new york city for decades jackson has required histudents at columbia to explore the city on foot and even to write walking tours as academic assignments kamil and o donnell initially gave walking tours on ad hoc basis for museums and school groups as a way to help to pay for graduate school what started as an informal enterprise gradually developed into a small company as they began giving public show up tours that were listed in the newspaper soon thereafter they hired colleagues at columbia new york university and cuny and other doctoral programs to help lead tours o donnellefthe company in to pursue an academicareer kamil continues to run the organization and lead tours himself in jackson wrote in the preface to the first published collection of big onion tours new york is fundamentally a walking city so what better way is there to see ithe reason big onion walking tours hasucceeded is that it makes the city s history accessible and understandable noto mention entertaining this no small feat givenew yorkers unforgiving nature and the difficulty of running any business here let alone founded by graduate students big onion began with only three tours immigrant new york the jewish lower east side and ellisland today there are almosthirty all of which peel back the layers like an onion to reveal what is beneath kenneth t jackson foreword to seth kamil and eric wakin the big onion guide to new york city new york nyu press viiix after big onion had a markedecrease in patrons while maintaining its public touroster no groups chose to take tours from september through october they have since recovered as has other tourism inew york city as of seth kamil continues to serve as president and big onion employs more than three dozen veteran guides from universities all over the region many retired guides have moved on to successful academicareers each year big onion offers hundreds of show up tours to the public and hundreds more to schools businesses law firms non profits and families it is a programming partner with both new york historical society and brooklyn historical society big onion also provides guide services for a number of non profit groups and local bids including pbsatan seat new york during prohibition tour and the union square partnership file big onion brooklyn bridge socialjpg thumb tours big onion provides primarily historical and literary walking tours glenn collins walking for themes not exercise tours reveal the city through a variety of prisms the new york timeseptember found at new york times archives article of accessed april to show the sites not shown on plaques they also focus oneighborhoodsuch as the lower east side often missed by other operators exploring a slice of manhattan s melting pothe lower east side provides a rich glimpse of the immigrant experience pittsburgh post gazette april found at newsbank archives accessed april big onion gives tours in more than two dozeneighborhoods and parks in manhattand brooklyn every day of the year buthanksgiving day rain or shine tours meet at or near a subway stop and are typically two hours long sinceach guide is encouraged to bring her own perspective and expertise to her tour no two tours are alike guides often incorporate their academic specialities into their tours and provide listeners withistorical context as well as running commentary on architecture immigration urban development and historic figureseveral tours concentrate on the history of specific ethnic groups and neighborhoods file bo jpg thumb the latest big onion creations include america s museum art history of the metropolitan historic tribecart sex and rock roll new york on the cultural edge big onion crafts a new tour once or twice a year awards accolades big onion has been written up in over publications worldwide the company has been wonumerous best of new york awards including best of new york new york magazine may new york magazine may annual best of new york issue the world s best city walks forbescom august best place to take out of town guests the village voice october the village voice best of new york october page books two collections of big onion tours have been published by nyu press the first is the big onion guide to new york city the big onion guide to new york city on amazon published in and the second is the big onion guide to brooklyn the big onion guide to brooklyn on amazon published inotes externalinks big onion official website category adventure travel","main_words":["big","onion","walking_tours","largest","walking_tour","company","inew_york_city","company","offered","sidewalk","tours","city","since","big_onion","shows","visitors","tourists","alike","diverse","fabric","using","guides","current","doctoral","students","phd","studying","history","closely","related","fields","history","big_onion","founded","columbia","university","graduate","kamil","ed","big_onion","walking_tours","founded","two","columbia","university","graduate","students","john","new_york","times","may","found","section","new_york","times","archives","article","accessed","april","david","k","tour_guides","know","history","found","new_york","times","june","corrected","july","found","section","new_york","times","archives","article","amended","accessed","april","initially","encouraged","kenneth","jackson","columbia","professor","prominent","historian","new_york","city","decades","jackson","required","columbia","explore","city","foot","even","write","walking_tours","academic","kamil","initially","gave","walking_tours","hoc","basis","museums","school","groups","way","help","pay","graduate","school","started","informal","enterprise","gradually","developed","small","company","began","giving","public","show","tours","listed","newspaper","soon","thereafter","hired","colleagues","columbia","new_york","university","doctoral","programs","help","lead","tours","company","pursue","kamil","continues","run","organization","lead","tours","jackson","wrote","preface","first_published","collection","big_onion","tours","new_york","fundamentally","walking","city","better","way","see","ithe","reason","big_onion","walking_tours","makes","city","history","accessible","noto","mention","entertaining","small","feat","nature","difficulty","running","business","let","alone","founded","graduate","students","big_onion","began","three","tours","immigrant","new_york","jewish","lower","east","side","today","peel","back","layers","like","onion","reveal","beneath","kenneth","jackson","foreword","seth","kamil","eric","big_onion","guide","new_york","city_new_york","press","big_onion","patrons","maintaining","public","groups","chose","take","tours","september","october","since","recovered","seth","kamil","continues","serve","president","big_onion","employs","three","dozen","veteran","guides","universities","region","many","retired","guides","moved","successful","year","big_onion","offers","hundreds","show","tours","public","hundreds","schools","businesses","law","firms","families","programming","partner","new_york","historical_society","brooklyn","historical_society","big_onion","also_provides","guide","services","number","non_profit","groups","local","including","seat","new_york","prohibition","tour","union","square","partnership","file","big_onion","brooklyn","bridge","thumb","tours","big_onion","provides","primarily","historical","literary","walking_tours","glenn","collins","walking","themes","exercise","tours","reveal","city","variety","new_york","found","new_york","times","archives","article","accessed","april","show","sites","shown","also","focus","lower","east","side","often","missed","operators","exploring","manhattan","melting","lower","east","side","provides","rich","glimpse","immigrant","experience","pittsburgh","post","gazette","april","found","archives","accessed","april","big_onion","gives","tours","two","parks","brooklyn","every_day","year","day","rain","tours","meet","near","subway","stop","typically","two","hours","long","guide","encouraged","bring","perspective","expertise","tour","two","tours","alike","guides","often","incorporate","academic","specialities","tours","provide","context","well","running","commentary","architecture","immigration","urban","development","historic","tours","history","specific","ethnic_groups","neighborhoods","file_jpg","thumb","latest","big_onion","creations","include","america","museum","art","history","metropolitan","historic","sex","rock","roll","new_york","cultural","edge","big_onion","crafts","new","tour","twice","year_awards","accolades","big_onion","written","publications","worldwide","company","wonumerous","best_new_york","awards","including","best_new_york","new_york","magazine","may","new_york","magazine","may","annual","best_new_york","issue","world","best","city","walks","august","best","place","take","town","guests","village","voice","october","village","voice","best_new_york","october","page","books","two","collections","big_onion","tours","published","press","first","big_onion","guide","new_york","city","big_onion","guide","new_york","city","amazon","published","second","big_onion","guide","brooklyn","big_onion","guide","brooklyn","amazon","published","externalinks","big_onion","official_website_category","adventure_travel"],"clean_bigrams":[["big","onion"],["onion","walking"],["walking","tours"],["largest","walking"],["walking","tour"],["tour","company"],["company","inew"],["inew","york"],["york","city"],["offered","sidewalk"],["sidewalk","tours"],["city","since"],["since","big"],["big","onion"],["onion","shows"],["shows","visitors"],["visitors","tourists"],["tourists","alike"],["diverse","fabric"],["guides","current"],["current","doctoral"],["doctoral","students"],["studying","history"],["closely","related"],["related","fields"],["fields","history"],["history","big"],["big","onion"],["columbia","university"],["university","graduate"],["big","onion"],["onion","walking"],["walking","tours"],["tours","founded"],["two","columbia"],["columbia","university"],["university","graduate"],["graduate","students"],["new","york"],["york","times"],["times","may"],["may","found"],["new","york"],["york","times"],["times","archives"],["archives","article"],["accessed","april"],["april","david"],["david","k"],["tour","guides"],["guides","know"],["new","york"],["york","times"],["times","june"],["june","corrected"],["july","found"],["new","york"],["york","times"],["times","archives"],["archives","article"],["amended","accessed"],["accessed","april"],["initially","encouraged"],["columbia","professor"],["prominent","historian"],["new","york"],["york","city"],["decades","jackson"],["write","walking"],["walking","tours"],["initially","gave"],["gave","walking"],["walking","tours"],["hoc","basis"],["school","groups"],["graduate","school"],["informal","enterprise"],["enterprise","gradually"],["gradually","developed"],["small","company"],["began","giving"],["giving","public"],["public","show"],["newspaper","soon"],["soon","thereafter"],["hired","colleagues"],["columbia","new"],["new","york"],["york","university"],["doctoral","programs"],["help","lead"],["lead","tours"],["kamil","continues"],["lead","tours"],["jackson","wrote"],["first","published"],["published","collection"],["big","onion"],["onion","tours"],["tours","new"],["new","york"],["walking","city"],["better","way"],["see","ithe"],["ithe","reason"],["reason","big"],["big","onion"],["onion","walking"],["walking","tours"],["history","accessible"],["noto","mention"],["mention","entertaining"],["small","feat"],["let","alone"],["alone","founded"],["graduate","students"],["students","big"],["big","onion"],["onion","began"],["three","tours"],["tours","immigrant"],["immigrant","new"],["new","york"],["jewish","lower"],["lower","east"],["east","side"],["peel","back"],["layers","like"],["beneath","kenneth"],["jackson","foreword"],["seth","kamil"],["big","onion"],["onion","guide"],["new","york"],["york","city"],["city","new"],["new","york"],["big","onion"],["groups","chose"],["take","tours"],["since","recovered"],["tourism","inew"],["inew","york"],["york","city"],["seth","kamil"],["kamil","continues"],["big","onion"],["onion","employs"],["three","dozen"],["dozen","veteran"],["veteran","guides"],["region","many"],["many","retired"],["retired","guides"],["year","big"],["big","onion"],["onion","offers"],["offers","hundreds"],["schools","businesses"],["businesses","law"],["law","firms"],["firms","non"],["non","profits"],["programming","partner"],["new","york"],["york","historical"],["historical","society"],["brooklyn","historical"],["historical","society"],["society","big"],["big","onion"],["onion","also"],["also","provides"],["provides","guide"],["guide","services"],["non","profit"],["profit","groups"],["seat","new"],["new","york"],["prohibition","tour"],["union","square"],["square","partnership"],["partnership","file"],["file","big"],["big","onion"],["onion","brooklyn"],["brooklyn","bridge"],["thumb","tours"],["tours","big"],["big","onion"],["onion","provides"],["provides","primarily"],["primarily","historical"],["literary","walking"],["walking","tours"],["tours","glenn"],["glenn","collins"],["collins","walking"],["exercise","tours"],["tours","reveal"],["new","york"],["new","york"],["york","times"],["times","archives"],["archives","article"],["accessed","april"],["also","focus"],["lower","east"],["east","side"],["side","often"],["often","missed"],["operators","exploring"],["lower","east"],["east","side"],["side","provides"],["rich","glimpse"],["immigrant","experience"],["experience","pittsburgh"],["pittsburgh","post"],["post","gazette"],["gazette","april"],["april","found"],["archives","accessed"],["accessed","april"],["april","big"],["big","onion"],["onion","gives"],["gives","tours"],["brooklyn","every"],["every","day"],["day","rain"],["tours","meet"],["subway","stop"],["typically","two"],["two","hours"],["hours","long"],["two","tours"],["alike","guides"],["guides","often"],["often","incorporate"],["academic","specialities"],["running","commentary"],["architecture","immigration"],["immigration","urban"],["urban","development"],["specific","ethnic"],["ethnic","groups"],["neighborhoods","file"],["jpg","thumb"],["latest","big"],["big","onion"],["onion","creations"],["creations","include"],["include","america"],["museum","art"],["art","history"],["metropolitan","historic"],["rock","roll"],["roll","new"],["new","york"],["cultural","edge"],["edge","big"],["big","onion"],["onion","crafts"],["new","tour"],["year","awards"],["awards","accolades"],["accolades","big"],["big","onion"],["publications","worldwide"],["wonumerous","best"],["new","york"],["york","awards"],["awards","including"],["including","best"],["new","york"],["york","new"],["new","york"],["york","magazine"],["magazine","may"],["may","new"],["new","york"],["york","magazine"],["magazine","may"],["may","annual"],["annual","best"],["new","york"],["york","issue"],["best","city"],["city","walks"],["august","best"],["best","place"],["town","guests"],["village","voice"],["voice","october"],["village","voice"],["voice","best"],["new","york"],["york","october"],["october","page"],["page","books"],["books","two"],["two","collections"],["big","onion"],["onion","tours"],["big","onion"],["onion","guide"],["new","york"],["york","city"],["big","onion"],["onion","guide"],["new","york"],["york","city"],["amazon","published"],["big","onion"],["onion","guide"],["big","onion"],["onion","guide"],["amazon","published"],["externalinks","big"],["big","onion"],["onion","official"],["official","website"],["website","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["big onion","onion walking","walking tours","largest walking","walking tour","tour company","company inew","inew york","york city","offered sidewalk","sidewalk tours","city since","since big","big onion","onion shows","shows visitors","visitors tourists","tourists alike","diverse fabric","guides current","current doctoral","doctoral students","studying history","closely related","related fields","fields history","history big","big onion","columbia university","university graduate","big onion","onion walking","walking tours","tours founded","two columbia","columbia university","university graduate","graduate students","new york","york times","times may","may found","new york","york times","times archives","archives article","accessed april","april david","david k","tour guides","guides know","new york","york times","times june","june corrected","july found","new york","york times","times archives","archives article","amended accessed","accessed april","initially encouraged","columbia professor","prominent historian","new york","york city","decades jackson","write walking","walking tours","initially gave","gave walking","walking tours","hoc basis","school groups","graduate school","informal enterprise","enterprise gradually","gradually developed","small company","began giving","giving public","public show","newspaper soon","soon thereafter","hired colleagues","columbia new","new york","york university","doctoral programs","help lead","lead tours","kamil continues","lead tours","jackson wrote","first published","published collection","big onion","onion tours","tours new","new york","walking city","better way","see ithe","ithe reason","reason big","big onion","onion walking","walking tours","history accessible","noto mention","mention entertaining","small feat","let alone","alone founded","graduate students","students big","big onion","onion began","three tours","tours immigrant","immigrant new","new york","jewish lower","lower east","east side","peel back","layers like","beneath kenneth","jackson foreword","seth kamil","big onion","onion guide","new york","york city","city new","new york","big onion","groups chose","take tours","since recovered","tourism inew","inew york","york city","seth kamil","kamil continues","big onion","onion employs","three dozen","dozen veteran","veteran guides","region many","many retired","retired guides","year big","big onion","onion offers","offers hundreds","schools businesses","businesses law","law firms","firms non","non profits","programming partner","new york","york historical","historical society","brooklyn historical","historical society","society big","big onion","onion also","also provides","provides guide","guide services","non profit","profit groups","seat new","new york","prohibition tour","union square","square partnership","partnership file","file big","big onion","onion brooklyn","brooklyn bridge","thumb tours","tours big","big onion","onion provides","provides primarily","primarily historical","literary walking","walking tours","tours glenn","glenn collins","collins walking","exercise tours","tours reveal","new york","new york","york times","times archives","archives article","accessed april","also focus","lower east","east side","side often","often missed","operators exploring","lower east","east side","side provides","rich glimpse","immigrant experience","experience pittsburgh","pittsburgh post","post gazette","gazette april","april found","archives accessed","accessed april","april big","big onion","onion gives","gives tours","brooklyn every","every day","day rain","tours meet","subway stop","typically two","two hours","hours long","two tours","alike guides","guides often","often incorporate","academic specialities","running commentary","architecture immigration","immigration urban","urban development","specific ethnic","ethnic groups","neighborhoods file","latest big","big onion","onion creations","creations include","include america","museum art","art history","metropolitan historic","rock roll","roll new","new york","cultural edge","edge big","big onion","onion crafts","new tour","year awards","awards accolades","accolades big","big onion","publications worldwide","wonumerous best","new york","york awards","awards including","including best","new york","york new","new york","york magazine","magazine may","may new","new york","york magazine","magazine may","may annual","annual best","new york","york issue","best city","city walks","august best","best place","town guests","village voice","voice october","village voice","voice best","new york","york october","october page","page books","books two","two collections","big onion","onion tours","big onion","onion guide","new york","york city","big onion","onion guide","new york","york city","amazon published","big onion","onion guide","big onion","onion guide","amazon published","externalinks big","big onion","onion official","official website","website category","category adventure","adventure travel"],"new_description":"big onion walking_tours largest walking_tour company inew_york_city company offered sidewalk tours city since big_onion shows visitors tourists alike diverse fabric using guides current doctoral students phd studying history closely related fields history big_onion founded columbia university graduate kamil ed big_onion walking_tours founded two columbia university graduate students john new_york times may found section new_york times archives article accessed april david k tour_guides know history found new_york times june corrected july found section new_york times archives article amended accessed april initially encouraged kenneth jackson columbia professor prominent historian new_york city decades jackson required columbia explore city foot even write walking_tours academic kamil initially gave walking_tours hoc basis museums school groups way help pay graduate school started informal enterprise gradually developed small company began giving public show tours listed newspaper soon thereafter hired colleagues columbia new_york university doctoral programs help lead tours company pursue kamil continues run organization lead tours jackson wrote preface first_published collection big_onion tours new_york fundamentally walking city better way see ithe reason big_onion walking_tours makes city history accessible noto mention entertaining small feat nature difficulty running business let alone founded graduate students big_onion began three tours immigrant new_york jewish lower east side today peel back layers like onion reveal beneath kenneth jackson foreword seth kamil eric big_onion guide new_york city_new_york press big_onion patrons maintaining public groups chose take tours september october since recovered tourism_inew_york_city seth kamil continues serve president big_onion employs three dozen veteran guides universities region many retired guides moved successful year big_onion offers hundreds show tours public hundreds schools businesses law firms non_profits families programming partner new_york historical_society brooklyn historical_society big_onion also_provides guide services number non_profit groups local including seat new_york prohibition tour union square partnership file big_onion brooklyn bridge thumb tours big_onion provides primarily historical literary walking_tours glenn collins walking themes exercise tours reveal city variety new_york found new_york times archives article accessed april show sites shown also focus lower east side often missed operators exploring manhattan melting lower east side provides rich glimpse immigrant experience pittsburgh post gazette april found archives accessed april big_onion gives tours two parks brooklyn every_day year day rain tours meet near subway stop typically two hours long guide encouraged bring perspective expertise tour two tours alike guides often incorporate academic specialities tours provide context well running commentary architecture immigration urban development historic tours history specific ethnic_groups neighborhoods file_jpg thumb latest big_onion creations include america museum art history metropolitan historic sex rock roll new_york cultural edge big_onion crafts new tour twice year_awards accolades big_onion written publications worldwide company wonumerous best_new_york awards including best_new_york new_york magazine may new_york magazine may annual best_new_york issue world best city walks august best place take town guests village voice october village voice best_new_york october page books two collections big_onion tours published press first big_onion guide new_york city big_onion guide new_york city amazon published second big_onion guide brooklyn big_onion guide brooklyn amazon published externalinks big_onion official_website_category adventure_travel"},{"title":"Bigelow Aerospace","description":"founderobert bigelow founder and president location city north las vegas nevada location country united states key people industry aerospacengineering aerospace products orbital facilities commercial space stations revenue operating income net income num employees may slogan join the adventure homepage bigelowaerospacecom footnotes bigelow aerospace is an american space technology startup company based inorth las vegas nevada that manufactures andevelops inflatable space habitat expandable space station modules bigelow aerospace was founded by robert bigelow in and is funded in large part by the profit bigelow gained throughis ownership of the hotel chain budget suites of america by bigelow had invested us million in the company bigelow hastated on multiple occasions that he is prepared to fund bigelow aerospace with about us million through in order to achieve launch ofull scale hardware bigelow aerospace hastated they intend to create a modular set of space habitat s for creating or expanding space stations many journalists have commented that bigelow is taking risks by trying to compete in a capital intensive highly regulation regulated industry like spaceflight file transhab cutawayjpg px thumb right nasa s design for the now canceled transhab module bigelow originally licensed the multi layer expandable space module technology from nasa in after congress canceled the international space station iss transhab project following delays and budget constraints in the late s bigelow has three space act agreements whereby bigelow aerospace is the sole commercializer of several of nasa s key expandable module technologies bigelow continued to develop the technology for a decade redesigning the module fabric layers including adding proprietary extensions of vectran shield fabric a double strength variant of kevlar andeveloping a family of uncrewed and crewed expandable spacecraft in a variety of sizes bigelow invested us million in proprietary extensions to the nasa technology by mid and million into the technology by robert bigelow had invested us million in the company which by had grown to us million of his personal fortune bigelow stated on multiple occasions that he was prepared to fund bigelow aerospace with up to about us million through in order to achieve launch ofull scale hardware in early nasa came full circle tonce againvestigate making inflatable space station modules to make roomier lighter cheaper to launch spacecraft by announcing plans in its budget proposal released february nasa considered connecting a bigelow expandable crafto the iss for safety life support radiation shielding thermal control and communications validation and verification testing for the nexthree years and in december signed a million contract with bigelow to product development develop the bigelow expandable activity module beam then projected to fly in sincearly on bigelow has been intent on pursuing markets for a variety of users including biotech and pharmaceutical companies and university research entertainment applications and government military and civil users the business model includes leasing out small space stations or habitats made of one or more ba inflatable modules to different research communities or corporations despite these broad plans for space commercialization the space tourism destination and space hotel monikers were frequently used by many media outlets following the launches of genesis i and genesis ii robert bigelow has been explicithat he is aiming to do business in space in a neway with low cost and rapid turnaround contrary to traditional nasa iss and space shuttle operations and bureaucracy in october bigelow announced that it had agreements with six sovereign state sovereignation s to utilize on orbit facilities of the bigelow commercial space station commercial space station uk astronomy technology centre united kingdom netherlandspace office netherlands australia singapore japand swedish national space board sweden in february dubai of the united arab emirates became the seventh nation to have signed on in bigelow employed an in house team of model maker s coming from the film industry film and architecture industries to make detailed models of their space habitats and space stationscale models were sento potential customers includingovernments and corporations as a reminder of the possibilities reportedly due to delays in launch capability to transport humans to low earth orbit bigelow dramatically reduced staff in late september because crew transportation would become available years after the first ba could be ready laying off of their employees in late march bigelow began increasing staff levels once again by april bigelowasaying thathey would have ba modules ready to go to low earth orbit space by the time that commercial passenger spacecraft were available to ferry their customers to the dual balpha space station expected in and that bigelowas ready to enter into contracts with customers further staff reductions occurred athe start of estimated by industry sources to between and people of employed athe time of the layoffs this came after the company advertised more than jobs in at both its north las vegas headquarters and its newly established propulsion department in huntsville alabamas part of its reduction in workforce the company closed the huntsville facility module design and business plans file bigelow aerospace facilitiesjpg thumb a full scale mockup of bigelow aerospace space station alpha inside their facility inevada expandable module design overview file inside space station alphajpg thumb nasa deputy administrator lori garver views the inside of a full scale mockup of bigelow aerospace space station alpha bigelow aerospace anticipates that its inflatable modules will be more durable than rigid modules this partially due to the company s use of severalayers of vectran a material twice astrong as kevlar and also because in theory flexible wallshould be able to sustain micrometeoroid impacts better than rigid walls in ground based testing micrometeoroids capable of puncturing standard iss module materials penetrated only about halfway through the bigelow skin operations director mike gold commented that bigelow modules also would not suffer from the same local shattering problems likely with metallic modules this could provide as much as hours to remedy punctures in comparison to the more serious results of standard isskin micrometeoroidamagexpected uses for bigelow aerospace s expandable modules include microgravity research andevelopment and space manufacturing other potential uses include variable gravity research for gravity gradients above microgravity including moon g and mars gravity research a tether based variable gravity research facility concept kirk sorensenasa marshall space flight center jannaf journal retrievedecember space tourism such as modules forbital hotels and space transportation such as components in spaceships for moon or mars manned missions business plans the bigelow aerospace website showseveral pricing schemes including million for days on a ba space station that price covers everything including transportraining and consumables for million bigelow aerospace customers can lease a third of a b habitat roughly cubic meters for a period of days in bigelow proposed conceptual designs for expandable habitats that would be substantially larger than the ba previously its largest at habitat volume contingent onasa going forward with a comparison of orbitalaunch systemsuper heavy lifter the proposed concept would includexpandable habitats offering cubic meters cu ft of volume nearly twice the capacity available on the international space station and another providing in bigelow aerospace began building a large production facility inorth las vegas nevada to produce the space modules the facility will include three production line s for three distinct spacecraft doubling the amount ofloor space at bigelow and transitioning the focus from research andevelopment with an existing workforce of to manufacturing production bigelow expected to hire approximately new employees to staff the plant with production commencing in early in during execution of the contracto build the bigelow expandable activity module for the international space station robert bigelow indicated that his company manufactures about percent of product content in house while subcontracting outhe remainder in march bigelow signed an space act agreement with nasa to act as the centralink betweenasandozens of private spaceflight private companies that wanto play a role in the commercialization of space creation of a new economy a space civilization spaceconomy including proposals far more complex than mere space tourism research andevelopment research space manufacturing space medicine and space farming agriculture the agreement calls for bigelow to liaise betweenasand the private sector to see how federal government of the united states the us government and industry could help each other the first deliverable on that contract a report which identifies companies that wanto be a part of this effort as well as potential customers was delivered by bigelow to nasa in may module construction andeploymentimeline on july and june bigelow launched the genesis i and ii modules respectively in mid bigelow aerospace completed the galaxy spacecraft galaxy module but did not launch it due to rising launch costs and the ability to substantially validate the new galaxy technologies earth terrestrially particularly after the successful two genesis launches in and it was tested on the ground at its north las vegas facility instead as of bigelow had reserved a launch on spacex s falcon rocket but did not announce the payload the falcon would have been capable of launching a sundancer module but not a ba module bigelow also talked with lockheed martin regarding potentialaunches on the atlas v rocket no launch took place in although in april bigelow aerospace remained on spacex s list ofuture launch customers on april the spacex crs mission launched beam to the iss on april bigelow and united launch alliance announced that an atlas v rocket had been booked for a flight in to deliver a b habitato low earth orbit note dates of upcoming launches are proposed and are subjecto change cancelled projects are in italics class wikitable module type module names volume flight date launch vehicle status genesis pathfinder genesis i july utc dneprocket dnepr launch successful on orbit genesis pathfinder genesis ii june utc dneprocket dnepr launch successful on orbit galaxy spacecraft galaxy cancelled launch cancelled tests on ground sundancer cancelled launch cancelled replaced by ba bigelow expandable activity module beam bigelow expandable activity module beam april utc spacex dragon built under a millionasa contract ba nautilus in design mockup built by public goal was to have two completed and ready to launch by thend of ba olympus proposed mockup built by though too large for any rocket currently flying expandable habitat modules genesis imagenesisijpeg thumb genesis i the first bigelow aerospace module to be placed intorbit on july genesis i launched on a dneprocket dnepr booster from dombarovsky air base dombarovskiy cosmodrome in orenburg oblast russia the launch was conducted by bigelow and isc kosmotras despite ground side difficulties during launch the spacecraft performed as expected upon reaching orbit inflating deploying solarrays and starting internal systems the mission is planned to last for five years and includextensive observation of the craft s performance including testing packing deployment procedures and resistance to radiation and space debris among other space hazards and conditions michael gold attorney mike gold corporate counsel for bigelow aerospace stated in relation to this mission and the next our motto at bigelow aerospace is fly early and often regardless of the results of genesis we willaunch a follow up mission rapidly as of july the vehicle remains in orbit genesis ii on june genesis ii launched on another dnepr a converted ss icbm from dombarovsky air base dombarovskiy cosmodrome in orenburg oblast russia launched at am pdt genesis ii was inserted intorbit at am pdt at an inclination of degrees although genesis i and genesis ii are identical in size and similar in appearance there are several notable differences firstly genesis i contains video cameras whereas genesis ii containsecondly genesis iincludes a suite of additional sensors and avionics that are not present in genesis i the orbitalife is estimated to be years with a gradually decaying orbit resulting in rentry into earth s atmosphere and burn up expected as of july the vehicle remains in orbit flyour stuff program bigelow aerospace ran a flyour stuff program for the genesis ii launch the costo launch pictures or small items was around us bigelow photographed each item with internal cameras the items floated inside the craft displaying them on the company website the first image of the interior of genesis ii appeared on the company s website on june some of the pictures and other items placed aboard genesis ii as part of the flyour stuff program are clearly visible another interior image apparently taken with more of the spacecraft s internalights activated was posted on july articles from the flyour stuff program are also visible in this image test itemsupplied by bigelow aerospacemployees were sent intorbit on genesis i no new images of items floating inside genesis i have been released since shortly after the launch and initial activation of the spacecraft due to problems with a computer which controlseveral of the internal cameras the third planned bigelow launch sundancer was to bequipped with fullife support systems attitude control orbital maneuvering systems and would have been capable of reboost andeorbit burns like the genesis pathfindersundancer the outer surface would have been compacted around its central core with air expanding ito its full size after entering orbit after expansion the module would have measured in length and in diameter with of interior volume unlike previous bigelow craft it was planned to have three observation windowspacex had been contracted to provide a falcon vehicle for launch of a bigelow payload in july bigelow announced thathey will cease development on the sundancer and instead focus their efforts on the ba bigelow expandable activity module for the iss file beam press conference jpg thumb full scale mock up of an expanded beam january in december bigelow began product development work on bigelow expandable activity module beam under a millionasa contract after a number of delays beam was transported to iss arriving on april inside the unpressurized cargo trunk of a spacex dragon during the spacex crs cargo mission the spaceflight is intended to testhe beamodule structural integrity leak rate radiation dosage and temperature changes over a two year long mission athend of beam s mission the module is planned to be removed from the iss and burn up during atmospheric entry reentry the b is a full scale production module weighing approximately with dimensions of approximately in length and in diameter when expanded previous names for the b were the band the nautilus ba concept module the ba or olympus module is a concept module that would require a comparison of orbitalaunch systems heavy lift launcher and would place in orbithe complete infrastructure of a space habitat over six times as large as the ba initial estimates puthe vehicle mass between tonnes with a diameter of approximately the concept model shows docking ports at both ends delays in launch capability as a result of delays in launch capability to transport humans to the bigelow habitats bigelow laid off some of its employees in late september bigelow had expected human launch capability by or buthe prospect of domesticrew transportation of any kind is apparently going toccur years after the first ba could be ready for both business and technical reasons we cannot deploy a ba without a means of transporting crew to and from our station and the adjustmentour employment levels was necessary to reflecthis reality in april the first launch of a b habitat wascheduled for on an atlas v rocket bigelow commercial space station the bigelow next generation commercial space station is a private spaceflight private low earth orbital space complex currently under development by bigelow the space station will include both sundancer and ba expandable spacecraft modules and a central docking compartment docking node spacecraft propulsion solar panels on spacecraft solarrays and attached space capsule crew capsules initialaunch of space station components was planned for with portions of the station available for leased use as early as bigelow has publicly shown space station design configurations with up to nine ba modules containing of habitable space bigelow began to publicly refer to the initial configuration two sundancer modules and one ba module of the first bigelow station aspace complex alpha in october a second orbital station space complex bravo wascheduled to begin launches in launches will not commence until there are commercial crew transportation systems operational which will be or later bigelow announced in october that it has agreements with six sovereign state sovereignation s to utilize on orbit facilities of the commercial space station government of the united kingdom united kingdom prime minister of the netherlands government of australia government of singapore government of japan and government of sweden by february this number had risen to seven an earlier space station bigelow commercial space station csskywalker csskywalker commercial space station skywalker was bigelow s concept for the first space hotel the skywalker was to be composed of multiple ba nautilus habitat modules which would bexpanded and connected upon reaching orbit an mdpmulti directional propulsion module would allow the skywalker to be moved into interplanetary or lunar trajectories inovember bigelow indicated thathe company would like to constructen or more space stations and thathere is a substantial commercial marketo support such growth crew and passenger transport bigelow s business model requires a means of transporting humans to and from low earth orbit in bigelow established and funded a prize america space prize to stimulate development of manned vehicles the prizexpired without a winner in early in august bigelow aerospace announced the development of the orion lite orion lite spacecraft intended to be a lower cost and less capable version of the orion spacecraft orion spacecraft under development by nasa the intention would be forion lite to provide access to low earth orbit using either the atlas or falcon launch systems and carrying a crew of up to athe time bigelow aerospace s corporate counsel mike gold said we would be foolish to depend completely one capsule provider or any single launch system therefore it is vital from both a practical and business perspective to ensure that spacex andragon are nothe only options available to us hence the need for another capsule bigelow entered nasa s commercial crew development ccdev program withe cst capsule in collaboration with boeing since thenasa has awarded boeing million for initial development of a crew capsule as part of ccdev bigelow is working with boeing to refine requirements for the cst bigelow is actively pursuing bothe boeing cst united launch alliance ulatlas v and the spacex dragon falcon capsule launcher combinations for launch options bigelow offers boeing spacex and other vehicle developers the promise of a sustained large market for space transportation services withe initial bigelow commercial space station space complex alpha space complex alpha space station bigelowould need six flights a year withe launch of a second larger station that number would grow tor two a month boeing is expecting bigelow to be a customer for flights on the cst which received a contract from nasa for additional development andesign refinementhrough the critical design review phase via the ccicaprogram in may bigelow and spacex teamed up to do joint marketing to international customers of crew transport on spacex dragon falcon up to the bigelow ba space facility aspirations beyond earth orbit in february following the announcement of nasa s post review of united states human space flight plans committee augustine commission plans to reorient human torbit plans more in the direction of commercialaunch providers robert bigelow said we as a company have lunar ambitions and we also have mars ambitions as well in april bigelow suggested positioning a space station at lagrangian point he also said his proposed private moon base would consist of three ba s in march bigelow signed a space act agreement contract with nasa to look at ways for private spaceflight private ventures to contribute to human exploration missions perhaps including construction of a moon base and to act as a clearinghouse with other commercial companies to extend commercial activity at conceptualunar expeditionary bases in ways that are not a mainline part of nasa s current focus for human spaceflight which is asteroid exploration missions the bigelow report released later in identified an regime uncertainty uncertain regulatory environment as a major obstacle to commercial activities on the moon in december the faa office of commercial space transportation ast completed a review of the proposed bigelow lunar habitat and indicated that it was willing to use its authority to ensure bigelow could carry out its lunar activities without interference from other us companies licensed by the faand thathe faa would use its launch licensing authority as best it can to protect private sector assets on the moon and to provide a safenvironment for companies to conduct peaceful commercial activities without fear of harmful interference from other ast licensees bigelow aerospace has received several honors for itspaceflight efforts on october bigelow aerospace received the innovator award from the arthur clarke foundation the award recognizes initiatives or new inventions that have had recent impact on or hold particular promise for satellite communications and society and stand as distinguished examples of innovative thinking robert bigelowas presented the award athe arthur clarke awards in washington dc alongside walter cronkite who was honored on the same night withe arthur clarke lifetime achievement award on january the space foundation announced that bigelow aerospace would be the recipient of itspace achievement award bigelow aerospace joins a list of previous winners that include the titan rocket family titan launch vehicle team the inertial upper stage team the spaceshipone team the arianespace cnes ariane launch team thevolved expendable launch vehicleelv teams the nasa industry galileo spacecraft galileo space probe team the hubble space telescope team sea launch and the nasa boeing international space station team the award was presented to robert bigelow on april athe rd national space symposium in colorado springs colorado see also blue origin list of private spaceflight companies newspace adventurespace architecture virgin galactic externalinks inflatable poofs privately owned orbital facility space review article july bigelow aerospacefellowship archive space fellowship bigelow aerospace news archive us hotel tycoon reaches for the stars reuters article august holidays in space are on the horizonew scientist article september bigelow s gamble inside the bigelow inflatable module plant aviation week space technology article september the five billion star hotel popular science magazine popular science article march low earth orbit and beyond popular science magazine popular science article march showing plans for moon cruisers and space yachts progress made on inflatable private space module spacecom article march russians delay firstest flight of space hotel msnbccom article junexclusive bigelow orbital module launched into spacecom article july bigelow aerospace continues relationship with nasa jsc for space habitatechnology and private sector space development a history of the genesis i private space module space pragmatism july money backing the private space industry part robert bigelow the space monitor february newscientistcom simulation and bigelow released photographs of genesis i and genesis ii category bigelow aerospace category establishments inevada category aerospace companies of the united states category companies based inorth las vegas nevada category private spaceflight companies category privately held companies based in the las vegas valley category space tourism category transport companiestablished in","main_words":["bigelow","founder","president","location_city","north","las_vegas","nevada","location_country_united","states","key_people","industry","aerospacengineering","aerospace","products","orbital","facilities","commercial_space","stations","revenue_operating","income_net_income","num_employees","may","slogan","join","adventure","homepage","footnotes","bigelow_aerospace","american","space","technology","startup","company_based","inorth","las_vegas","nevada","manufactures","inflatable","space","habitat","expandable","space_station","modules","bigelow_aerospace","founded","robert","bigelow","funded","large","part","profit","bigelow","gained","throughis","ownership","hotel_chain","budget","suites","america","bigelow","invested","us_million","company","bigelow","hastated","multiple","occasions","prepared","fund","bigelow_aerospace","us_million","order","achieve","launch","ofull","scale","hardware","bigelow_aerospace","hastated","intend","create","modular","set","space","habitat","creating","expanding","space_stations","many","journalists","commented","bigelow","taking","risks","trying","compete","capital","intensive","highly","regulation","regulated","industry","like","spaceflight","file","transhab","px_thumb","right","nasa","design","canceled","transhab","module","bigelow","originally","licensed","multi","layer","expandable","space","module","technology","nasa","congress","canceled","international_space_station","iss","transhab","project","following","delays","budget","constraints","late","bigelow","three","space","act","agreements","whereby","bigelow_aerospace","sole","several","nasa","key","expandable","module","technologies","bigelow","continued","develop","technology","decade","module","fabric","layers","including","adding","proprietary","extensions","shield","fabric","double","strength","variant","andeveloping","family","uncrewed","crewed","expandable","spacecraft","variety","sizes","bigelow","invested","us_million","proprietary","extensions","nasa","technology","mid","million","technology","robert","bigelow","invested","us_million","company","grown","us_million","personal","fortune","bigelow","stated","multiple","occasions","prepared","fund","bigelow_aerospace","us_million","order","achieve","launch","ofull","scale","hardware","early","nasa","came","full","circle","making","inflatable","space_station","modules","make","lighter","cheaper","launch","spacecraft","announcing","plans","budget","proposal","released","february","nasa","considered","connecting","bigelow","expandable","iss","safety","life","support","radiation","thermal","control","communications","verification","testing","years","december","signed","million","contract","bigelow","product_development","develop","bigelow","expandable","activity","module","beam","projected","fly","bigelow","intent","pursuing","markets","variety","users","including","companies","university","research","entertainment","applications","government","military","civil","users","business_model","includes","leasing","small","space_stations","habitats","made","one","inflatable","modules","different","research","communities","corporations","despite","broad","plans","space","commercialization","space_tourism","destination","space","hotel","frequently","used","many","media","outlets","following","launches","genesis","genesis_ii","robert","bigelow","aiming","business","space","low_cost","rapid","contrary","traditional","nasa","iss","space_shuttle","operations","october","bigelow","announced","agreements","six","sovereign","state","utilize","orbit","facilities","bigelow","commercial_space","station","commercial_space","station","uk","astronomy","technology","centre","united_kingdom","office","netherlands","australia","singapore","japand","swedish","national","space","board","sweden","february","dubai","united_arab_emirates","became","seventh","nation","signed","bigelow","employed","house","team","model","maker","coming","film","industry","film","architecture","industries","make","detailed","models","space","habitats","space","models","sento","potential","customers","corporations","reminder","possibilities","reportedly","due","delays","launch","capability","transport","humans","low_earth_orbit","bigelow","dramatically","reduced","staff","late","september","crew","transportation","would_become","available","years","first","could","ready","laying","employees","late","march","bigelow","began","increasing","staff","levels","april","thathey_would","modules","ready","go","low_earth_orbit","space","time","commercial","passenger","spacecraft","available","ferry","customers","dual","space_station","expected","ready","enter","contracts","customers","staff","occurred","athe_start","estimated","industry","sources","people","employed","athe_time","layoffs","came","company","advertised","jobs","north","las_vegas","headquarters","newly","established","propulsion","department","huntsville","part","reduction","workforce","company","closed","huntsville","facility","module","design","business","plans","file","bigelow_aerospace","thumb","full_scale","mockup","bigelow_aerospace","space_station","alpha","inside","facility","inevada","expandable","module","design","overview","file","inside","space_station","thumb","nasa","deputy","administrator","views","inside","full_scale","mockup","bigelow_aerospace","space_station","alpha","bigelow_aerospace","inflatable","modules","durable","rigid","modules","partially","due","company","use","material","twice","also","theory","flexible","able","sustain","impacts","better","rigid","walls","ground","based","testing","capable","standard","iss","module","materials","halfway","bigelow","skin","operations","director","mike","gold","commented","bigelow","modules","also","would","suffer","local","problems","likely","metallic","modules","could","provide","much","hours","comparison","serious","results","standard","uses","bigelow_aerospace","expandable","modules","include","microgravity","research_andevelopment","space","manufacturing","potential","uses","include","variable","gravity","research","gravity","microgravity","including","moon","g","mars","gravity","research","based","variable","gravity","research","facility","concept","kirk","marshall","space","flight","center","journal","retrievedecember","space_tourism","modules","forbital","hotels","space_transportation","components","spaceships","moon","mars","manned","missions","business","plans","bigelow_aerospace","website","pricing","schemes","including","million","days","space_station","price","covers","everything","including","million","bigelow_aerospace","customers","lease","third","b","habitat","roughly","meters","period","days","bigelow","proposed","conceptual","designs","expandable","habitats","would","substantially","larger","previously","largest","habitat","volume","contingent","going","forward","comparison","orbitalaunch","heavy","proposed","concept","would","habitats","offering","meters","volume","nearly","twice","capacity","available","international_space_station","another","providing","bigelow_aerospace","began","building","large","production","facility","inorth","las_vegas","nevada","produce","space","modules","facility","include","three","production","line","three","distinct","spacecraft","doubling","amount","ofloor","space","bigelow","focus","research_andevelopment","existing","workforce","manufacturing","production","bigelow","expected","hire","approximately","new","employees","staff","plant","production","early","execution","contracto","build","bigelow","expandable","activity","module","international_space_station","robert","bigelow","indicated","company","manufactures","percent","product","content","house","outhe","remainder","march","bigelow","signed","space","act","agreement","nasa","act","private_spaceflight","private","companies","wanto","play","role","commercialization","space","creation","new","economy","space","civilization","including","proposals","far","complex","mere","space_tourism","research_andevelopment","research","space","manufacturing","space","medicine","space","farming","agriculture","agreement","calls","bigelow","private_sector","see","federal_government","united_states","us_government","industry","could","help","first","contract","report","identifies","companies","wanto","part","effort","well","potential","customers","delivered","bigelow","nasa","may","module","construction","july","june","bigelow","launched","genesis_ii","modules","respectively","mid","bigelow_aerospace","completed","galaxy","spacecraft","galaxy","module","launch","due","rising","launch","costs","ability","substantially","validate","new","galaxy","technologies","earth","particularly","successful","two","genesis","launches","tested","ground","north","las_vegas","facility","instead","bigelow","reserved","launch","spacex","falcon_rocket","announce","payload","falcon","would","capable","launching","sundancer","module","module","bigelow","also","talked","lockheed","martin","regarding","atlas","v","rocket","launch","took_place","although","april","bigelow_aerospace","remained","spacex","list","ofuture","launch","customers","april","spacex","crs","mission","launched","beam","iss","april","bigelow","united_launch_alliance","announced","atlas","v","rocket","booked","flight","deliver","b","low_earth_orbit","note","dates","upcoming","launches","proposed","subjecto","change","cancelled","projects","class","wikitable","module","type","module","names","volume","flight","date","launch_vehicle","status","genesis","pathfinder","genesis","july","utc","dnepr","launch","successful","orbit","genesis","pathfinder","genesis_ii","june","utc","dnepr","launch","successful","orbit","galaxy","spacecraft","galaxy","cancelled","launch","cancelled","tests","ground","sundancer","cancelled","launch","cancelled","replaced","bigelow","expandable","activity","module","beam","bigelow","expandable","activity","module","beam","april","utc","spacex_dragon","built","contract","design","mockup","built","public","goal","two","completed","ready","launch","thend","olympus","proposed","mockup","built","though","large","rocket","currently","flying","expandable","habitat","modules","genesis","thumb","genesis","first","bigelow_aerospace","module","placed","intorbit","july","genesis","launched","dnepr","booster","air","base","cosmodrome","oblast","russia","launch","conducted","bigelow","despite","ground","side","difficulties","launch","spacecraft","performed","expected","upon","reaching","orbit","starting","internal","systems","mission","planned","last","five_years","observation","craft","performance","including","testing","packing","deployment","procedures","resistance","radiation","space","debris","among","space","hazards","conditions","michael","gold","attorney","mike","gold","corporate","counsel","bigelow_aerospace","stated","relation","mission","next","motto","bigelow_aerospace","fly","early","often","regardless","results","genesis","willaunch","follow","mission","rapidly","july","vehicle","remains","orbit","genesis_ii","june","genesis_ii","launched","another","dnepr","converted","air","base","cosmodrome","oblast","russia","launched","genesis_ii","inserted","intorbit","degrees","although","genesis","genesis_ii","identical","size","similar","appearance","several","notable","differences","firstly","genesis","contains","video","cameras","whereas","genesis_ii","genesis","suite","additional","avionics","present","genesis","estimated","years","gradually","orbit","resulting","rentry","earth","atmosphere","burn","expected","july","vehicle","remains","orbit","flyour","stuff","program","bigelow_aerospace","ran","flyour","stuff","program","genesis_ii","launch","costo","launch","pictures","small","items","around","us","bigelow","photographed","item","internal","cameras","items","inside","craft","displaying","company","website","first","image","interior","genesis_ii","appeared","company","website","june","pictures","items","placed","aboard","genesis_ii","part","flyour","stuff","program","clearly","visible","another","interior","image","apparently","taken","spacecraft","activated","posted","july","articles","flyour","stuff","program","also","visible","image","test","bigelow","sent","intorbit","genesis","new","images","items","floating","inside","genesis","released","since","shortly","launch","initial","spacecraft","due","problems","computer","internal","cameras","third","planned","bigelow","launch","sundancer","support","systems","attitude","control","orbital","systems","would","capable","burns","like","genesis","outer","surface","would","compacted","around","central","core","air","expanding","ito","full","size","entering","orbit","expansion","module","would","measured","length","diameter","interior","volume","unlike","previous","bigelow","craft","planned","three","observation","contracted","provide","falcon","vehicle","launch","bigelow","payload","july","bigelow","announced_thathey","cease","development","sundancer","instead","focus","efforts","bigelow","expandable","activity","module","iss","file","beam","press","conference","jpg","thumb","full_scale","mock","expanded","beam","january","december","bigelow","began","product_development","work","bigelow","expandable","activity","module","beam","contract","number","delays","beam","transported","iss","arriving","april","inside","cargo","trunk","spacex_dragon","spacex","crs","cargo","mission","spaceflight","intended","testhe","structural","integrity","leak","rate","radiation","temperature","changes","two_year","long","mission","athend","beam","mission","module","planned","removed","iss","burn","atmospheric","entry","reentry","b","full_scale","production","module","weighing","approximately","dimensions","approximately","length","diameter","expanded","previous","names","b","band","concept","module","olympus","module","concept","module","would","require","comparison","orbitalaunch","systems","heavy_lift","launcher","would","place","orbithe","complete","infrastructure","space","habitat","six","times","large","initial","estimates","puthe","vehicle","mass","tonnes","diameter","approximately","concept","model","shows","docking","ports","ends","delays","launch","capability","result","delays","launch","capability","transport","humans","bigelow","habitats","bigelow","laid","employees","late","september","bigelow","expected","human","launch","capability","buthe","prospect","transportation","kind","apparently","going","years","first","could","ready","business","technical","reasons","cannot","deploy","without","means","transporting","crew","station","employment","levels","necessary","reality","april","first_launch","b","habitat","wascheduled","atlas","v","rocket","bigelow","commercial_space","station","bigelow","next_generation","commercial_space","station","private_spaceflight","private","complex","currently","development","bigelow","space_station","include","sundancer","expandable","spacecraft","modules","central","docking","compartment","docking","spacecraft","propulsion","solar","panels","spacecraft","attached","space_capsule","space_station","components","planned","portions","station","available","leased","use","early","bigelow","publicly","shown","space_station","design","configurations","nine","modules","containing","space","bigelow","began","publicly","refer","initial","configuration","two","sundancer","modules","one","module","first","bigelow","station","complex","alpha","october","second","orbital","station","space","complex","wascheduled","begin","launches","launches","commence","commercial_crew","transportation","systems","operational","later","bigelow","announced","october","agreements","six","sovereign","state","utilize","orbit","facilities","commercial_space","station","government","united_kingdom","united_kingdom","prime_minister","netherlands","government","australia","government","singapore","government","japan","government","sweden","february","number","risen","seven","earlier","space_station","bigelow","commercial_space","station","commercial_space","station","bigelow","concept","first","space","hotel","composed","multiple","habitat","modules","would","connected","upon","reaching","orbit","propulsion_module","would","allow","moved","interplanetary","lunar","inovember","bigelow","indicated","thathe_company","would","like","space_stations","thathere","substantial","commercial","marketo","support","growth","crew","passenger","transport","bigelow","business_model","requires","means","transporting","humans","low_earth_orbit","bigelow","established","funded","prize","america","space","prize","stimulate","development","manned","vehicles","without","winner","early","august","bigelow_aerospace","announced","development","orion","lite","orion","lite","spacecraft","intended","lower_cost","less","capable","version","orion","spacecraft","orion","spacecraft","development","nasa","intention","would","lite","provide","access","low_earth_orbit","using","either","atlas","falcon","carrying","crew","athe_time","bigelow_aerospace","corporate","counsel","mike","gold","said","would","depend","completely","one","capsule","provider","single","launch_system","therefore","vital","practical","business","perspective","ensure","spacex","andragon","nothe","options","available","us","hence","need","another","capsule","bigelow","entered","nasa","commercial_crew_development","ccdev","program","withe","cst","capsule","collaboration","boeing","since","awarded","boeing","million","initial","development","crew_capsule","part","ccdev","bigelow","working","boeing","refine","requirements","cst","bigelow","actively","pursuing","bothe","boeing","cst","united_launch_alliance","v","spacex_dragon","falcon","capsule","launcher","combinations","launch","options","bigelow","offers","boeing","spacex","vehicle","developers","promise","sustained","large","market","withe","initial","bigelow","commercial_space","station","space","complex","alpha","space","complex","alpha","space_station","need","six","flights","year","withe","launch","second","larger","station","number","would","grow","tor","two","month","boeing","expecting","bigelow","customer","flights","cst","received","contract","nasa","additional","development","andesign","critical","design","review","phase","via","may","bigelow","spacex","teamed","joint","marketing","international","customers","crew","transport","spacex_dragon","falcon","bigelow","space","facility","beyond","earth_orbit","february","following","announcement","nasa","post","review","united_states","human","space","flight","plans","committee","augustine","commission","plans","human","torbit","plans","direction","commercialaunch","providers","robert","bigelow","said","company","lunar","also","mars","well","april","bigelow","suggested","positioning","space_station","point","also","said","proposed","private","moon","base","would","consist","three","march","bigelow","signed","space","act","agreement","contract","nasa","look","ways","private_spaceflight","private","ventures","contribute","human","exploration","missions","perhaps","including","construction","moon","base","act","commercial","companies","extend","commercial","activity","bases","ways","part","nasa","current","focus","human_spaceflight","exploration","missions","bigelow","report","released","later","identified","regime","uncertain","regulatory","environment","major","obstacle","commercial","activities","moon","december","faa","office","commercial_space","transportation","ast","completed","review","proposed","bigelow","lunar","habitat","indicated","willing","use","authority","ensure","bigelow","could","carry","lunar","activities","without","interference","us","companies","licensed","thathe","faa","would","use","launch","licensing","authority","best","protect","private_sector","assets","moon","provide","companies","conduct","peaceful","commercial","activities","without","fear","harmful","interference","ast","licensees","bigelow_aerospace","received","several","honors","efforts","october","bigelow_aerospace","received","award","arthur","clarke","foundation","award","recognizes","initiatives","new","inventions","recent","impact","hold","particular","promise","satellite","communications","society","stand","distinguished","examples","innovative","thinking","robert","presented","award","athe","arthur","clarke","awards","washington","alongside","walter","honored","night","withe","arthur","clarke","lifetime","achievement","award","january","space","foundation","announced","bigelow_aerospace","would","recipient","achievement","award","bigelow_aerospace","joins","list","previous","winners","include","titan","rocket_family","titan","launch_vehicle","team","upper_stage","team","spaceshipone","team","arianespace","ariane","launch","team","expendable","launch","teams","nasa","industry","galileo","spacecraft","galileo","space","probe","team","hubble","space","telescope","team","sea","launch","nasa","boeing","international_space_station","team","award","presented","robert","bigelow","april","athe_national","space","symposium","colorado","springs","colorado","see_also","blue_origin","list","private_spaceflight","companies","newspace","architecture","virgin_galactic","externalinks","inflatable","privately_owned","orbital","facility","space","review","article","july","bigelow","archive","space_fellowship","bigelow_aerospace","news","archive","us","hotel","reaches","stars","reuters","article","august","holidays","space","scientist","article","september","bigelow","gamble","inside","bigelow","inflatable","module","plant","aviation","week","space","technology","article","september","five","billion","star","hotel","popular_science","magazine","popular_science","article","march","low_earth_orbit","beyond","popular_science","magazine","popular_science","article","march","showing","plans","moon","cruisers","space","yachts","progress","made","inflatable","private_space","module","spacecom","article","march","russians","delay","firstest","flight","space","hotel","article","bigelow","orbital","module","launched","spacecom","article","july","bigelow_aerospace","continues","relationship","nasa","space","private_sector","space","development","history","genesis","private_space","module","space","july","money","private_space","industry","part","robert","bigelow","space","monitor","february","simulation","bigelow","released","photographs","genesis","genesis_ii","category","bigelow_aerospace","category_establishments","inevada","category","aerospace_companies","united_states","category_companies_based","inorth","las_vegas","nevada","category_private_spaceflight","companies_category","privately","held","companies_based","las_vegas","valley","category_space_tourism","category_transport","companiestablished"],"clean_bigrams":[["bigelow","founder"],["president","location"],["location","city"],["city","north"],["north","las"],["las","vegas"],["vegas","nevada"],["nevada","location"],["location","country"],["country","united"],["united","states"],["states","key"],["key","people"],["people","industry"],["industry","aerospacengineering"],["aerospacengineering","aerospace"],["aerospace","products"],["products","orbital"],["orbital","facilities"],["facilities","commercial"],["commercial","space"],["space","stations"],["stations","revenue"],["revenue","operating"],["operating","income"],["income","net"],["net","income"],["income","num"],["num","employees"],["employees","may"],["may","slogan"],["slogan","join"],["adventure","homepage"],["footnotes","bigelow"],["bigelow","aerospace"],["american","space"],["space","technology"],["technology","startup"],["startup","company"],["company","based"],["based","inorth"],["inorth","las"],["las","vegas"],["vegas","nevada"],["inflatable","space"],["space","habitat"],["habitat","expandable"],["expandable","space"],["space","station"],["station","modules"],["modules","bigelow"],["bigelow","aerospace"],["robert","bigelow"],["large","part"],["profit","bigelow"],["bigelow","gained"],["gained","throughis"],["throughis","ownership"],["hotel","chain"],["chain","budget"],["budget","suites"],["bigelow","invested"],["invested","us"],["us","million"],["company","bigelow"],["bigelow","hastated"],["multiple","occasions"],["fund","bigelow"],["bigelow","aerospace"],["us","million"],["achieve","launch"],["launch","ofull"],["ofull","scale"],["scale","hardware"],["hardware","bigelow"],["bigelow","aerospace"],["aerospace","hastated"],["modular","set"],["space","habitat"],["expanding","space"],["space","stations"],["stations","many"],["many","journalists"],["taking","risks"],["capital","intensive"],["intensive","highly"],["highly","regulation"],["regulation","regulated"],["regulated","industry"],["industry","like"],["like","spaceflight"],["spaceflight","file"],["file","transhab"],["px","thumb"],["thumb","right"],["right","nasa"],["canceled","transhab"],["transhab","module"],["module","bigelow"],["bigelow","originally"],["originally","licensed"],["multi","layer"],["layer","expandable"],["expandable","space"],["space","module"],["module","technology"],["congress","canceled"],["international","space"],["space","station"],["station","iss"],["iss","transhab"],["transhab","project"],["project","following"],["following","delays"],["budget","constraints"],["three","space"],["space","act"],["act","agreements"],["agreements","whereby"],["whereby","bigelow"],["bigelow","aerospace"],["key","expandable"],["expandable","module"],["module","technologies"],["technologies","bigelow"],["bigelow","continued"],["module","fabric"],["fabric","layers"],["layers","including"],["including","adding"],["adding","proprietary"],["proprietary","extensions"],["shield","fabric"],["double","strength"],["strength","variant"],["crewed","expandable"],["expandable","spacecraft"],["sizes","bigelow"],["bigelow","invested"],["invested","us"],["us","million"],["proprietary","extensions"],["nasa","technology"],["robert","bigelow"],["bigelow","invested"],["invested","us"],["us","million"],["us","million"],["personal","fortune"],["fortune","bigelow"],["bigelow","stated"],["multiple","occasions"],["fund","bigelow"],["bigelow","aerospace"],["us","million"],["achieve","launch"],["launch","ofull"],["ofull","scale"],["scale","hardware"],["early","nasa"],["nasa","came"],["came","full"],["full","circle"],["making","inflatable"],["inflatable","space"],["space","station"],["station","modules"],["lighter","cheaper"],["launch","spacecraft"],["announcing","plans"],["budget","proposal"],["proposal","released"],["released","february"],["february","nasa"],["nasa","considered"],["considered","connecting"],["bigelow","expandable"],["safety","life"],["life","support"],["support","radiation"],["thermal","control"],["verification","testing"],["december","signed"],["million","contract"],["product","development"],["development","develop"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["module","beam"],["pursuing","markets"],["users","including"],["university","research"],["research","entertainment"],["entertainment","applications"],["government","military"],["civil","users"],["business","model"],["model","includes"],["includes","leasing"],["small","space"],["space","stations"],["habitats","made"],["inflatable","modules"],["different","research"],["research","communities"],["corporations","despite"],["broad","plans"],["space","commercialization"],["space","tourism"],["tourism","destination"],["space","hotel"],["frequently","used"],["many","media"],["media","outlets"],["outlets","following"],["genesis","ii"],["ii","robert"],["robert","bigelow"],["low","cost"],["traditional","nasa"],["nasa","iss"],["space","shuttle"],["shuttle","operations"],["october","bigelow"],["bigelow","announced"],["six","sovereign"],["sovereign","state"],["orbit","facilities"],["bigelow","commercial"],["commercial","space"],["space","station"],["station","commercial"],["commercial","space"],["space","station"],["station","uk"],["uk","astronomy"],["astronomy","technology"],["technology","centre"],["centre","united"],["united","kingdom"],["office","netherlands"],["netherlands","australia"],["australia","singapore"],["singapore","japand"],["japand","swedish"],["swedish","national"],["national","space"],["space","board"],["board","sweden"],["february","dubai"],["united","arab"],["arab","emirates"],["emirates","became"],["seventh","nation"],["bigelow","employed"],["house","team"],["model","maker"],["film","industry"],["industry","film"],["architecture","industries"],["make","detailed"],["detailed","models"],["space","habitats"],["sento","potential"],["potential","customers"],["possibilities","reportedly"],["reportedly","due"],["launch","capability"],["transport","humans"],["low","earth"],["earth","orbit"],["orbit","bigelow"],["bigelow","dramatically"],["dramatically","reduced"],["reduced","staff"],["late","september"],["crew","transportation"],["transportation","would"],["would","become"],["become","available"],["available","years"],["ready","laying"],["late","march"],["march","bigelow"],["bigelow","began"],["began","increasing"],["increasing","staff"],["staff","levels"],["thathey","would"],["modules","ready"],["low","earth"],["earth","orbit"],["orbit","space"],["commercial","passenger"],["passenger","spacecraft"],["space","station"],["station","expected"],["occurred","athe"],["athe","start"],["industry","sources"],["employed","athe"],["athe","time"],["company","advertised"],["north","las"],["las","vegas"],["vegas","headquarters"],["newly","established"],["established","propulsion"],["propulsion","department"],["company","closed"],["huntsville","facility"],["facility","module"],["module","design"],["business","plans"],["plans","file"],["file","bigelow"],["bigelow","aerospace"],["thumb","full"],["full","scale"],["scale","mockup"],["bigelow","aerospace"],["aerospace","space"],["space","station"],["station","alpha"],["alpha","inside"],["facility","inevada"],["inevada","expandable"],["expandable","module"],["module","design"],["design","overview"],["overview","file"],["file","inside"],["inside","space"],["space","station"],["thumb","nasa"],["nasa","deputy"],["deputy","administrator"],["full","scale"],["scale","mockup"],["bigelow","aerospace"],["aerospace","space"],["space","station"],["station","alpha"],["alpha","bigelow"],["bigelow","aerospace"],["inflatable","modules"],["rigid","modules"],["partially","due"],["material","twice"],["theory","flexible"],["impacts","better"],["rigid","walls"],["ground","based"],["based","testing"],["standard","iss"],["iss","module"],["module","materials"],["bigelow","skin"],["skin","operations"],["operations","director"],["director","mike"],["mike","gold"],["gold","commented"],["bigelow","modules"],["modules","also"],["also","would"],["problems","likely"],["metallic","modules"],["could","provide"],["serious","results"],["bigelow","aerospace"],["expandable","modules"],["modules","include"],["include","microgravity"],["microgravity","research"],["research","andevelopment"],["space","manufacturing"],["potential","uses"],["uses","include"],["include","variable"],["variable","gravity"],["gravity","research"],["microgravity","including"],["including","moon"],["moon","g"],["mars","gravity"],["gravity","research"],["based","variable"],["variable","gravity"],["gravity","research"],["research","facility"],["facility","concept"],["concept","kirk"],["marshall","space"],["space","flight"],["flight","center"],["journal","retrievedecember"],["retrievedecember","space"],["space","tourism"],["modules","forbital"],["forbital","hotels"],["space","transportation"],["mars","manned"],["manned","missions"],["missions","business"],["business","plans"],["bigelow","aerospace"],["aerospace","website"],["pricing","schemes"],["schemes","including"],["including","million"],["space","station"],["price","covers"],["covers","everything"],["everything","including"],["including","million"],["million","bigelow"],["bigelow","aerospace"],["aerospace","customers"],["b","habitat"],["habitat","roughly"],["bigelow","proposed"],["proposed","conceptual"],["conceptual","designs"],["expandable","habitats"],["substantially","larger"],["habitat","volume"],["volume","contingent"],["going","forward"],["proposed","concept"],["concept","would"],["habitats","offering"],["volume","nearly"],["nearly","twice"],["capacity","available"],["international","space"],["space","station"],["another","providing"],["bigelow","aerospace"],["aerospace","began"],["began","building"],["large","production"],["production","facility"],["facility","inorth"],["inorth","las"],["las","vegas"],["vegas","nevada"],["space","modules"],["include","three"],["three","production"],["production","line"],["three","distinct"],["distinct","spacecraft"],["spacecraft","doubling"],["amount","ofloor"],["ofloor","space"],["space","bigelow"],["research","andevelopment"],["existing","workforce"],["manufacturing","production"],["production","bigelow"],["bigelow","expected"],["hire","approximately"],["approximately","new"],["new","employees"],["contracto","build"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["international","space"],["space","station"],["station","robert"],["robert","bigelow"],["bigelow","indicated"],["company","manufactures"],["product","content"],["outhe","remainder"],["march","bigelow"],["bigelow","signed"],["space","act"],["act","agreement"],["private","spaceflight"],["spaceflight","private"],["private","companies"],["wanto","play"],["space","creation"],["new","economy"],["space","civilization"],["including","proposals"],["proposals","far"],["mere","space"],["space","tourism"],["tourism","research"],["research","andevelopment"],["andevelopment","research"],["research","space"],["space","manufacturing"],["manufacturing","space"],["space","medicine"],["space","farming"],["farming","agriculture"],["agreement","calls"],["private","sector"],["federal","government"],["united","states"],["us","government"],["industry","could"],["could","help"],["identifies","companies"],["potential","customers"],["may","module"],["module","construction"],["june","bigelow"],["bigelow","launched"],["genesis","ii"],["ii","modules"],["modules","respectively"],["mid","bigelow"],["bigelow","aerospace"],["aerospace","completed"],["galaxy","spacecraft"],["spacecraft","galaxy"],["galaxy","module"],["rising","launch"],["launch","costs"],["substantially","validate"],["new","galaxy"],["galaxy","technologies"],["technologies","earth"],["successful","two"],["two","genesis"],["genesis","launches"],["north","las"],["las","vegas"],["vegas","facility"],["facility","instead"],["falcon","rocket"],["falcon","would"],["sundancer","module"],["module","bigelow"],["bigelow","also"],["also","talked"],["lockheed","martin"],["martin","regarding"],["atlas","v"],["v","rocket"],["launch","took"],["took","place"],["april","bigelow"],["bigelow","aerospace"],["aerospace","remained"],["list","ofuture"],["ofuture","launch"],["launch","customers"],["spacex","crs"],["crs","mission"],["mission","launched"],["launched","beam"],["april","bigelow"],["united","launch"],["launch","alliance"],["alliance","announced"],["atlas","v"],["v","rocket"],["low","earth"],["earth","orbit"],["orbit","note"],["note","dates"],["upcoming","launches"],["subjecto","change"],["change","cancelled"],["cancelled","projects"],["class","wikitable"],["wikitable","module"],["module","type"],["type","module"],["module","names"],["names","volume"],["volume","flight"],["flight","date"],["date","launch"],["launch","vehicle"],["vehicle","status"],["status","genesis"],["genesis","pathfinder"],["pathfinder","genesis"],["july","utc"],["dnepr","launch"],["launch","successful"],["orbit","genesis"],["genesis","pathfinder"],["pathfinder","genesis"],["genesis","ii"],["ii","june"],["june","utc"],["dnepr","launch"],["launch","successful"],["orbit","galaxy"],["galaxy","spacecraft"],["spacecraft","galaxy"],["galaxy","cancelled"],["cancelled","launch"],["launch","cancelled"],["cancelled","tests"],["ground","sundancer"],["sundancer","cancelled"],["cancelled","launch"],["launch","cancelled"],["cancelled","replaced"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["module","beam"],["beam","bigelow"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["module","beam"],["beam","april"],["april","utc"],["utc","spacex"],["spacex","dragon"],["dragon","built"],["design","mockup"],["mockup","built"],["public","goal"],["two","completed"],["olympus","proposed"],["proposed","mockup"],["mockup","built"],["rocket","currently"],["currently","flying"],["flying","expandable"],["expandable","habitat"],["habitat","modules"],["modules","genesis"],["thumb","genesis"],["first","bigelow"],["bigelow","aerospace"],["aerospace","module"],["placed","intorbit"],["july","genesis"],["dnepr","booster"],["air","base"],["oblast","russia"],["despite","ground"],["ground","side"],["side","difficulties"],["launch","spacecraft"],["spacecraft","performed"],["expected","upon"],["upon","reaching"],["reaching","orbit"],["starting","internal"],["internal","systems"],["five","years"],["performance","including"],["including","testing"],["testing","packing"],["packing","deployment"],["deployment","procedures"],["space","debris"],["debris","among"],["space","hazards"],["conditions","michael"],["michael","gold"],["gold","attorney"],["attorney","mike"],["mike","gold"],["gold","corporate"],["corporate","counsel"],["bigelow","aerospace"],["aerospace","stated"],["bigelow","aerospace"],["fly","early"],["often","regardless"],["mission","rapidly"],["vehicle","remains"],["orbit","genesis"],["genesis","ii"],["ii","june"],["june","genesis"],["genesis","ii"],["ii","launched"],["another","dnepr"],["air","base"],["oblast","russia"],["russia","launched"],["genesis","ii"],["inserted","intorbit"],["degrees","although"],["although","genesis"],["genesis","ii"],["several","notable"],["notable","differences"],["differences","firstly"],["firstly","genesis"],["contains","video"],["video","cameras"],["cameras","whereas"],["whereas","genesis"],["genesis","ii"],["orbit","resulting"],["vehicle","remains"],["orbit","flyour"],["flyour","stuff"],["stuff","program"],["program","bigelow"],["bigelow","aerospace"],["aerospace","ran"],["flyour","stuff"],["stuff","program"],["genesis","ii"],["ii","launch"],["costo","launch"],["launch","pictures"],["small","items"],["around","us"],["us","bigelow"],["bigelow","photographed"],["internal","cameras"],["craft","displaying"],["company","website"],["first","image"],["genesis","ii"],["ii","appeared"],["company","website"],["items","placed"],["placed","aboard"],["aboard","genesis"],["genesis","ii"],["flyour","stuff"],["stuff","program"],["clearly","visible"],["visible","another"],["another","interior"],["interior","image"],["image","apparently"],["apparently","taken"],["july","articles"],["flyour","stuff"],["stuff","program"],["also","visible"],["image","test"],["sent","intorbit"],["new","images"],["items","floating"],["floating","inside"],["inside","genesis"],["released","since"],["since","shortly"],["spacecraft","due"],["internal","cameras"],["third","planned"],["planned","bigelow"],["bigelow","launch"],["launch","sundancer"],["support","systems"],["systems","attitude"],["attitude","control"],["control","orbital"],["burns","like"],["outer","surface"],["surface","would"],["compacted","around"],["central","core"],["air","expanding"],["expanding","ito"],["full","size"],["entering","orbit"],["module","would"],["interior","volume"],["volume","unlike"],["unlike","previous"],["previous","bigelow"],["bigelow","craft"],["three","observation"],["falcon","vehicle"],["bigelow","payload"],["july","bigelow"],["bigelow","announced"],["announced","thathey"],["cease","development"],["instead","focus"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["iss","file"],["file","beam"],["beam","press"],["press","conference"],["conference","jpg"],["jpg","thumb"],["thumb","full"],["full","scale"],["scale","mock"],["expanded","beam"],["beam","january"],["december","bigelow"],["bigelow","began"],["began","product"],["product","development"],["development","work"],["bigelow","expandable"],["expandable","activity"],["activity","module"],["module","beam"],["delays","beam"],["iss","arriving"],["april","inside"],["cargo","trunk"],["spacex","dragon"],["spacex","crs"],["crs","cargo"],["cargo","mission"],["structural","integrity"],["integrity","leak"],["leak","rate"],["rate","radiation"],["temperature","changes"],["two","year"],["year","long"],["long","mission"],["mission","athend"],["atmospheric","entry"],["entry","reentry"],["full","scale"],["scale","production"],["production","module"],["module","weighing"],["weighing","approximately"],["expanded","previous"],["previous","names"],["concept","module"],["olympus","module"],["concept","module"],["module","would"],["would","require"],["orbitalaunch","systems"],["systems","heavy"],["heavy","lift"],["lift","launcher"],["would","place"],["orbithe","complete"],["complete","infrastructure"],["space","habitat"],["six","times"],["initial","estimates"],["estimates","puthe"],["puthe","vehicle"],["vehicle","mass"],["concept","model"],["model","shows"],["shows","docking"],["docking","ports"],["ends","delays"],["launch","capability"],["launch","capability"],["transport","humans"],["bigelow","habitats"],["habitats","bigelow"],["bigelow","laid"],["late","september"],["september","bigelow"],["bigelow","expected"],["expected","human"],["human","launch"],["launch","capability"],["buthe","prospect"],["apparently","going"],["technical","reasons"],["transporting","crew"],["employment","levels"],["first","launch"],["b","habitat"],["habitat","wascheduled"],["atlas","v"],["v","rocket"],["rocket","bigelow"],["bigelow","commercial"],["commercial","space"],["space","station"],["station","bigelow"],["bigelow","next"],["next","generation"],["generation","commercial"],["commercial","space"],["space","station"],["private","spaceflight"],["spaceflight","private"],["private","low"],["low","earth"],["earth","orbital"],["orbital","space"],["space","complex"],["complex","currently"],["space","station"],["expandable","spacecraft"],["spacecraft","modules"],["central","docking"],["docking","compartment"],["compartment","docking"],["spacecraft","propulsion"],["propulsion","solar"],["solar","panels"],["attached","space"],["space","capsule"],["capsule","crew"],["crew","capsules"],["space","station"],["station","components"],["station","available"],["leased","use"],["publicly","shown"],["shown","space"],["space","station"],["station","design"],["design","configurations"],["modules","containing"],["space","bigelow"],["bigelow","began"],["publicly","refer"],["initial","configuration"],["configuration","two"],["two","sundancer"],["sundancer","modules"],["first","bigelow"],["bigelow","station"],["complex","alpha"],["second","orbital"],["orbital","station"],["station","space"],["space","complex"],["begin","launches"],["commercial","crew"],["crew","transportation"],["transportation","systems"],["systems","operational"],["later","bigelow"],["bigelow","announced"],["six","sovereign"],["sovereign","state"],["orbit","facilities"],["facilities","commercial"],["commercial","space"],["space","station"],["station","government"],["united","kingdom"],["kingdom","united"],["united","kingdom"],["kingdom","prime"],["prime","minister"],["netherlands","government"],["australia","government"],["singapore","government"],["earlier","space"],["space","station"],["station","bigelow"],["bigelow","commercial"],["commercial","space"],["space","station"],["station","commercial"],["commercial","space"],["space","station"],["station","bigelow"],["first","space"],["space","hotel"],["habitat","modules"],["connected","upon"],["upon","reaching"],["reaching","orbit"],["propulsion","module"],["module","would"],["would","allow"],["inovember","bigelow"],["bigelow","indicated"],["indicated","thathe"],["thathe","company"],["company","would"],["would","like"],["space","stations"],["substantial","commercial"],["commercial","marketo"],["marketo","support"],["growth","crew"],["passenger","transport"],["transport","bigelow"],["business","model"],["model","requires"],["transporting","humans"],["low","earth"],["earth","orbit"],["orbit","bigelow"],["bigelow","established"],["prize","america"],["america","space"],["space","prize"],["stimulate","development"],["manned","vehicles"],["august","bigelow"],["bigelow","aerospace"],["aerospace","announced"],["orion","lite"],["lite","orion"],["orion","lite"],["lite","spacecraft"],["spacecraft","intended"],["lower","cost"],["less","capable"],["capable","version"],["orion","spacecraft"],["spacecraft","orion"],["orion","spacecraft"],["intention","would"],["provide","access"],["low","earth"],["earth","orbit"],["orbit","using"],["using","either"],["falcon","launch"],["launch","systems"],["athe","time"],["time","bigelow"],["bigelow","aerospace"],["corporate","counsel"],["counsel","mike"],["mike","gold"],["gold","said"],["depend","completely"],["completely","one"],["one","capsule"],["capsule","provider"],["single","launch"],["launch","system"],["system","therefore"],["business","perspective"],["spacex","andragon"],["options","available"],["us","hence"],["another","capsule"],["capsule","bigelow"],["bigelow","entered"],["entered","nasa"],["commercial","crew"],["crew","development"],["development","ccdev"],["ccdev","program"],["program","withe"],["withe","cst"],["cst","capsule"],["boeing","since"],["awarded","boeing"],["boeing","million"],["initial","development"],["crew","capsule"],["ccdev","bigelow"],["refine","requirements"],["cst","bigelow"],["actively","pursuing"],["pursuing","bothe"],["bothe","boeing"],["boeing","cst"],["cst","united"],["united","launch"],["launch","alliance"],["spacex","dragon"],["dragon","falcon"],["falcon","capsule"],["capsule","launcher"],["launcher","combinations"],["launch","options"],["options","bigelow"],["bigelow","offers"],["offers","boeing"],["boeing","spacex"],["vehicle","developers"],["sustained","large"],["large","market"],["space","transportation"],["transportation","services"],["services","withe"],["withe","initial"],["initial","bigelow"],["bigelow","commercial"],["commercial","space"],["space","station"],["station","space"],["space","complex"],["complex","alpha"],["alpha","space"],["space","complex"],["complex","alpha"],["alpha","space"],["space","station"],["need","six"],["six","flights"],["year","withe"],["withe","launch"],["second","larger"],["larger","station"],["number","would"],["would","grow"],["grow","tor"],["tor","two"],["month","boeing"],["expecting","bigelow"],["additional","development"],["development","andesign"],["critical","design"],["design","review"],["review","phase"],["phase","via"],["may","bigelow"],["spacex","teamed"],["joint","marketing"],["international","customers"],["crew","transport"],["spacex","dragon"],["dragon","falcon"],["space","facility"],["beyond","earth"],["earth","orbit"],["february","following"],["post","review"],["united","states"],["states","human"],["human","space"],["space","flight"],["flight","plans"],["plans","committee"],["committee","augustine"],["augustine","commission"],["commission","plans"],["human","torbit"],["torbit","plans"],["commercialaunch","providers"],["providers","robert"],["robert","bigelow"],["bigelow","said"],["april","bigelow"],["bigelow","suggested"],["suggested","positioning"],["space","station"],["also","said"],["proposed","private"],["private","moon"],["moon","base"],["base","would"],["would","consist"],["march","bigelow"],["bigelow","signed"],["space","act"],["act","agreement"],["agreement","contract"],["private","spaceflight"],["spaceflight","private"],["private","ventures"],["human","exploration"],["exploration","missions"],["missions","perhaps"],["perhaps","including"],["including","construction"],["moon","base"],["commercial","companies"],["extend","commercial"],["commercial","activity"],["current","focus"],["human","spaceflight"],["exploration","missions"],["bigelow","report"],["report","released"],["released","later"],["uncertain","regulatory"],["regulatory","environment"],["major","obstacle"],["commercial","activities"],["faa","office"],["commercial","space"],["space","transportation"],["transportation","ast"],["ast","completed"],["proposed","bigelow"],["bigelow","lunar"],["lunar","habitat"],["ensure","bigelow"],["bigelow","could"],["could","carry"],["lunar","activities"],["activities","without"],["without","interference"],["us","companies"],["companies","licensed"],["thathe","faa"],["faa","would"],["would","use"],["launch","licensing"],["licensing","authority"],["protect","private"],["private","sector"],["sector","assets"],["conduct","peaceful"],["peaceful","commercial"],["commercial","activities"],["activities","without"],["without","fear"],["harmful","interference"],["ast","licensees"],["licensees","bigelow"],["bigelow","aerospace"],["aerospace","received"],["received","several"],["several","honors"],["october","bigelow"],["bigelow","aerospace"],["aerospace","received"],["arthur","clarke"],["clarke","foundation"],["award","recognizes"],["recognizes","initiatives"],["new","inventions"],["recent","impact"],["hold","particular"],["particular","promise"],["satellite","communications"],["distinguished","examples"],["innovative","thinking"],["thinking","robert"],["award","athe"],["athe","arthur"],["arthur","clarke"],["clarke","awards"],["alongside","walter"],["night","withe"],["withe","arthur"],["arthur","clarke"],["clarke","lifetime"],["lifetime","achievement"],["achievement","award"],["space","foundation"],["foundation","announced"],["bigelow","aerospace"],["aerospace","would"],["achievement","award"],["award","bigelow"],["bigelow","aerospace"],["aerospace","joins"],["previous","winners"],["titan","rocket"],["rocket","family"],["family","titan"],["titan","launch"],["launch","vehicle"],["vehicle","team"],["upper","stage"],["stage","team"],["spaceshipone","team"],["ariane","launch"],["launch","team"],["expendable","launch"],["nasa","industry"],["industry","galileo"],["galileo","spacecraft"],["spacecraft","galileo"],["galileo","space"],["space","probe"],["probe","team"],["hubble","space"],["space","telescope"],["telescope","team"],["team","sea"],["sea","launch"],["nasa","boeing"],["boeing","international"],["international","space"],["space","station"],["station","team"],["robert","bigelow"],["april","athe"],["national","space"],["space","symposium"],["colorado","springs"],["springs","colorado"],["colorado","see"],["see","also"],["also","blue"],["blue","origin"],["origin","list"],["private","spaceflight"],["spaceflight","companies"],["companies","newspace"],["newspace","adventurespace"],["adventurespace","architecture"],["architecture","virgin"],["virgin","galactic"],["galactic","externalinks"],["externalinks","inflatable"],["privately","owned"],["owned","orbital"],["orbital","facility"],["facility","space"],["space","review"],["review","article"],["article","july"],["july","bigelow"],["archive","space"],["space","fellowship"],["fellowship","bigelow"],["bigelow","aerospace"],["aerospace","news"],["news","archive"],["archive","us"],["us","hotel"],["stars","reuters"],["reuters","article"],["article","august"],["august","holidays"],["scientist","article"],["article","september"],["september","bigelow"],["gamble","inside"],["bigelow","inflatable"],["inflatable","module"],["module","plant"],["plant","aviation"],["aviation","week"],["week","space"],["space","technology"],["technology","article"],["article","september"],["five","billion"],["billion","star"],["star","hotel"],["hotel","popular"],["popular","science"],["science","magazine"],["magazine","popular"],["popular","science"],["science","article"],["article","march"],["march","low"],["low","earth"],["earth","orbit"],["beyond","popular"],["popular","science"],["science","magazine"],["magazine","popular"],["popular","science"],["science","article"],["article","march"],["march","showing"],["showing","plans"],["moon","cruisers"],["space","yachts"],["yachts","progress"],["progress","made"],["inflatable","private"],["private","space"],["space","module"],["module","spacecom"],["spacecom","article"],["article","march"],["march","russians"],["russians","delay"],["delay","firstest"],["firstest","flight"],["space","hotel"],["bigelow","orbital"],["orbital","module"],["module","launched"],["spacecom","article"],["article","july"],["july","bigelow"],["bigelow","aerospace"],["aerospace","continues"],["continues","relationship"],["private","sector"],["sector","space"],["space","development"],["private","space"],["space","module"],["module","space"],["july","money"],["private","space"],["space","industry"],["industry","part"],["part","robert"],["robert","bigelow"],["space","monitor"],["monitor","february"],["bigelow","released"],["released","photographs"],["genesis","ii"],["ii","category"],["category","bigelow"],["bigelow","aerospace"],["aerospace","category"],["category","establishments"],["establishments","inevada"],["inevada","category"],["category","aerospace"],["aerospace","companies"],["united","states"],["states","category"],["category","companies"],["companies","based"],["based","inorth"],["inorth","las"],["las","vegas"],["vegas","nevada"],["nevada","category"],["category","private"],["private","spaceflight"],["spaceflight","companies"],["companies","category"],["category","privately"],["privately","held"],["held","companies"],["companies","based"],["las","vegas"],["vegas","valley"],["valley","category"],["category","space"],["space","tourism"],["tourism","category"],["category","transport"],["transport","companiestablished"]],"all_collocations":["bigelow founder","president location","location city","city north","north las","las vegas","vegas nevada","nevada location","location country","country united","united states","states key","key people","people industry","industry aerospacengineering","aerospacengineering aerospace","aerospace products","products orbital","orbital facilities","facilities commercial","commercial space","space stations","stations revenue","revenue operating","operating income","income net","net income","income num","num employees","employees may","may slogan","slogan join","adventure homepage","footnotes bigelow","bigelow aerospace","american space","space technology","technology startup","startup company","company based","based inorth","inorth las","las vegas","vegas nevada","inflatable space","space habitat","habitat expandable","expandable space","space station","station modules","modules bigelow","bigelow aerospace","robert bigelow","large part","profit bigelow","bigelow gained","gained throughis","throughis ownership","hotel chain","chain budget","budget suites","bigelow invested","invested us","us million","company bigelow","bigelow hastated","multiple occasions","fund bigelow","bigelow aerospace","us million","achieve launch","launch ofull","ofull scale","scale hardware","hardware bigelow","bigelow aerospace","aerospace hastated","modular set","space habitat","expanding space","space stations","stations many","many journalists","taking risks","capital intensive","intensive highly","highly regulation","regulation regulated","regulated industry","industry like","like spaceflight","spaceflight file","file transhab","px thumb","right nasa","canceled transhab","transhab module","module bigelow","bigelow originally","originally licensed","multi layer","layer expandable","expandable space","space module","module technology","congress canceled","international space","space station","station iss","iss transhab","transhab project","project following","following delays","budget constraints","three space","space act","act agreements","agreements whereby","whereby bigelow","bigelow aerospace","key expandable","expandable module","module technologies","technologies bigelow","bigelow continued","module fabric","fabric layers","layers including","including adding","adding proprietary","proprietary extensions","shield fabric","double strength","strength variant","crewed expandable","expandable spacecraft","sizes bigelow","bigelow invested","invested us","us million","proprietary extensions","nasa technology","robert bigelow","bigelow invested","invested us","us million","us million","personal fortune","fortune bigelow","bigelow stated","multiple occasions","fund bigelow","bigelow aerospace","us million","achieve launch","launch ofull","ofull scale","scale hardware","early nasa","nasa came","came full","full circle","making inflatable","inflatable space","space station","station modules","lighter cheaper","launch spacecraft","announcing plans","budget proposal","proposal released","released february","february nasa","nasa considered","considered connecting","bigelow expandable","safety life","life support","support radiation","thermal control","verification testing","december signed","million contract","product development","development develop","bigelow expandable","expandable activity","activity module","module beam","pursuing markets","users including","university research","research entertainment","entertainment applications","government military","civil users","business model","model includes","includes leasing","small space","space stations","habitats made","inflatable modules","different research","research communities","corporations despite","broad plans","space commercialization","space tourism","tourism destination","space hotel","frequently used","many media","media outlets","outlets following","genesis ii","ii robert","robert bigelow","low cost","traditional nasa","nasa iss","space shuttle","shuttle operations","october bigelow","bigelow announced","six sovereign","sovereign state","orbit facilities","bigelow commercial","commercial space","space station","station commercial","commercial space","space station","station uk","uk astronomy","astronomy technology","technology centre","centre united","united kingdom","office netherlands","netherlands australia","australia singapore","singapore japand","japand swedish","swedish national","national space","space board","board sweden","february dubai","united arab","arab emirates","emirates became","seventh nation","bigelow employed","house team","model maker","film industry","industry film","architecture industries","make detailed","detailed models","space habitats","sento potential","potential customers","possibilities reportedly","reportedly due","launch capability","transport humans","low earth","earth orbit","orbit bigelow","bigelow dramatically","dramatically reduced","reduced staff","late september","crew transportation","transportation would","would become","become available","available years","ready laying","late march","march bigelow","bigelow began","began increasing","increasing staff","staff levels","thathey would","modules ready","low earth","earth orbit","orbit space","commercial passenger","passenger spacecraft","space station","station expected","occurred athe","athe start","industry sources","employed athe","athe time","company advertised","north las","las vegas","vegas headquarters","newly established","established propulsion","propulsion department","company closed","huntsville facility","facility module","module design","business plans","plans file","file bigelow","bigelow aerospace","thumb full","full scale","scale mockup","bigelow aerospace","aerospace space","space station","station alpha","alpha inside","facility inevada","inevada expandable","expandable module","module design","design overview","overview file","file inside","inside space","space station","thumb nasa","nasa deputy","deputy administrator","full scale","scale mockup","bigelow aerospace","aerospace space","space station","station alpha","alpha bigelow","bigelow aerospace","inflatable modules","rigid modules","partially due","material twice","theory flexible","impacts better","rigid walls","ground based","based testing","standard iss","iss module","module materials","bigelow skin","skin operations","operations director","director mike","mike gold","gold commented","bigelow modules","modules also","also would","problems likely","metallic modules","could provide","serious results","bigelow aerospace","expandable modules","modules include","include microgravity","microgravity research","research andevelopment","space manufacturing","potential uses","uses include","include variable","variable gravity","gravity research","microgravity including","including moon","moon g","mars gravity","gravity research","based variable","variable gravity","gravity research","research facility","facility concept","concept kirk","marshall space","space flight","flight center","journal retrievedecember","retrievedecember space","space tourism","modules forbital","forbital hotels","space transportation","mars manned","manned missions","missions business","business plans","bigelow aerospace","aerospace website","pricing schemes","schemes including","including million","space station","price covers","covers everything","everything including","including million","million bigelow","bigelow aerospace","aerospace customers","b habitat","habitat roughly","bigelow proposed","proposed conceptual","conceptual designs","expandable habitats","substantially larger","habitat volume","volume contingent","going forward","proposed concept","concept would","habitats offering","volume nearly","nearly twice","capacity available","international space","space station","another providing","bigelow aerospace","aerospace began","began building","large production","production facility","facility inorth","inorth las","las vegas","vegas nevada","space modules","include three","three production","production line","three distinct","distinct spacecraft","spacecraft doubling","amount ofloor","ofloor space","space bigelow","research andevelopment","existing workforce","manufacturing production","production bigelow","bigelow expected","hire approximately","approximately new","new employees","contracto build","bigelow expandable","expandable activity","activity module","international space","space station","station robert","robert bigelow","bigelow indicated","company manufactures","product content","outhe remainder","march bigelow","bigelow signed","space act","act agreement","private spaceflight","spaceflight private","private companies","wanto play","space creation","new economy","space civilization","including proposals","proposals far","mere space","space tourism","tourism research","research andevelopment","andevelopment research","research space","space manufacturing","manufacturing space","space medicine","space farming","farming agriculture","agreement calls","private sector","federal government","united states","us government","industry could","could help","identifies companies","potential customers","may module","module construction","june bigelow","bigelow launched","genesis ii","ii modules","modules respectively","mid bigelow","bigelow aerospace","aerospace completed","galaxy spacecraft","spacecraft galaxy","galaxy module","rising launch","launch costs","substantially validate","new galaxy","galaxy technologies","technologies earth","successful two","two genesis","genesis launches","north las","las vegas","vegas facility","facility instead","falcon rocket","falcon would","sundancer module","module bigelow","bigelow also","also talked","lockheed martin","martin regarding","atlas v","v rocket","launch took","took place","april bigelow","bigelow aerospace","aerospace remained","list ofuture","ofuture launch","launch customers","spacex crs","crs mission","mission launched","launched beam","april bigelow","united launch","launch alliance","alliance announced","atlas v","v rocket","low earth","earth orbit","orbit note","note dates","upcoming launches","subjecto change","change cancelled","cancelled projects","wikitable module","module type","type module","module names","names volume","volume flight","flight date","date launch","launch vehicle","vehicle status","status genesis","genesis pathfinder","pathfinder genesis","july utc","dnepr launch","launch successful","orbit genesis","genesis pathfinder","pathfinder genesis","genesis ii","ii june","june utc","dnepr launch","launch successful","orbit galaxy","galaxy spacecraft","spacecraft galaxy","galaxy cancelled","cancelled launch","launch cancelled","cancelled tests","ground sundancer","sundancer cancelled","cancelled launch","launch cancelled","cancelled replaced","bigelow expandable","expandable activity","activity module","module beam","beam bigelow","bigelow expandable","expandable activity","activity module","module beam","beam april","april utc","utc spacex","spacex dragon","dragon built","design mockup","mockup built","public goal","two completed","olympus proposed","proposed mockup","mockup built","rocket currently","currently flying","flying expandable","expandable habitat","habitat modules","modules genesis","thumb genesis","first bigelow","bigelow aerospace","aerospace module","placed intorbit","july genesis","dnepr booster","air base","oblast russia","despite ground","ground side","side difficulties","launch spacecraft","spacecraft performed","expected upon","upon reaching","reaching orbit","starting internal","internal systems","five years","performance including","including testing","testing packing","packing deployment","deployment procedures","space debris","debris among","space hazards","conditions michael","michael gold","gold attorney","attorney mike","mike gold","gold corporate","corporate counsel","bigelow aerospace","aerospace stated","bigelow aerospace","fly early","often regardless","mission rapidly","vehicle remains","orbit genesis","genesis ii","ii june","june genesis","genesis ii","ii launched","another dnepr","air base","oblast russia","russia launched","genesis ii","inserted intorbit","degrees although","although genesis","genesis ii","several notable","notable differences","differences firstly","firstly genesis","contains video","video cameras","cameras whereas","whereas genesis","genesis ii","orbit resulting","vehicle remains","orbit flyour","flyour stuff","stuff program","program bigelow","bigelow aerospace","aerospace ran","flyour stuff","stuff program","genesis ii","ii launch","costo launch","launch pictures","small items","around us","us bigelow","bigelow photographed","internal cameras","craft displaying","company website","first image","genesis ii","ii appeared","company website","items placed","placed aboard","aboard genesis","genesis ii","flyour stuff","stuff program","clearly visible","visible another","another interior","interior image","image apparently","apparently taken","july articles","flyour stuff","stuff program","also visible","image test","sent intorbit","new images","items floating","floating inside","inside genesis","released since","since shortly","spacecraft due","internal cameras","third planned","planned bigelow","bigelow launch","launch sundancer","support systems","systems attitude","attitude control","control orbital","burns like","outer surface","surface would","compacted around","central core","air expanding","expanding ito","full size","entering orbit","module would","interior volume","volume unlike","unlike previous","previous bigelow","bigelow craft","three observation","falcon vehicle","bigelow payload","july bigelow","bigelow announced","announced thathey","cease development","instead focus","bigelow expandable","expandable activity","activity module","iss file","file beam","beam press","press conference","conference jpg","thumb full","full scale","scale mock","expanded beam","beam january","december bigelow","bigelow began","began product","product development","development work","bigelow expandable","expandable activity","activity module","module beam","delays beam","iss arriving","april inside","cargo trunk","spacex dragon","spacex crs","crs cargo","cargo mission","structural integrity","integrity leak","leak rate","rate radiation","temperature changes","two year","year long","long mission","mission athend","atmospheric entry","entry reentry","full scale","scale production","production module","module weighing","weighing approximately","expanded previous","previous names","concept module","olympus module","concept module","module would","would require","orbitalaunch systems","systems heavy","heavy lift","lift launcher","would place","orbithe complete","complete infrastructure","space habitat","six times","initial estimates","estimates puthe","puthe vehicle","vehicle mass","concept model","model shows","shows docking","docking ports","ends delays","launch capability","launch capability","transport humans","bigelow habitats","habitats bigelow","bigelow laid","late september","september bigelow","bigelow expected","expected human","human launch","launch capability","buthe prospect","apparently going","technical reasons","transporting crew","employment levels","first launch","b habitat","habitat wascheduled","atlas v","v rocket","rocket bigelow","bigelow commercial","commercial space","space station","station bigelow","bigelow next","next generation","generation commercial","commercial space","space station","private spaceflight","spaceflight private","private low","low earth","earth orbital","orbital space","space complex","complex currently","space station","expandable spacecraft","spacecraft modules","central docking","docking compartment","compartment docking","spacecraft propulsion","propulsion solar","solar panels","attached space","space capsule","capsule crew","crew capsules","space station","station components","station available","leased use","publicly shown","shown space","space station","station design","design configurations","modules containing","space bigelow","bigelow began","publicly refer","initial configuration","configuration two","two sundancer","sundancer modules","first bigelow","bigelow station","complex alpha","second orbital","orbital station","station space","space complex","begin launches","commercial crew","crew transportation","transportation systems","systems operational","later bigelow","bigelow announced","six sovereign","sovereign state","orbit facilities","facilities commercial","commercial space","space station","station government","united kingdom","kingdom united","united kingdom","kingdom prime","prime minister","netherlands government","australia government","singapore government","earlier space","space station","station bigelow","bigelow commercial","commercial space","space station","station commercial","commercial space","space station","station bigelow","first space","space hotel","habitat modules","connected upon","upon reaching","reaching orbit","propulsion module","module would","would allow","inovember bigelow","bigelow indicated","indicated thathe","thathe company","company would","would like","space stations","substantial commercial","commercial marketo","marketo support","growth crew","passenger transport","transport bigelow","business model","model requires","transporting humans","low earth","earth orbit","orbit bigelow","bigelow established","prize america","america space","space prize","stimulate development","manned vehicles","august bigelow","bigelow aerospace","aerospace announced","orion lite","lite orion","orion lite","lite spacecraft","spacecraft intended","lower cost","less capable","capable version","orion spacecraft","spacecraft orion","orion spacecraft","intention would","provide access","low earth","earth orbit","orbit using","using either","falcon launch","launch systems","athe time","time bigelow","bigelow aerospace","corporate counsel","counsel mike","mike gold","gold said","depend completely","completely one","one capsule","capsule provider","single launch","launch system","system therefore","business perspective","spacex andragon","options available","us hence","another capsule","capsule bigelow","bigelow entered","entered nasa","commercial crew","crew development","development ccdev","ccdev program","program withe","withe cst","cst capsule","boeing since","awarded boeing","boeing million","initial development","crew capsule","ccdev bigelow","refine requirements","cst bigelow","actively pursuing","pursuing bothe","bothe boeing","boeing cst","cst united","united launch","launch alliance","spacex dragon","dragon falcon","falcon capsule","capsule launcher","launcher combinations","launch options","options bigelow","bigelow offers","offers boeing","boeing spacex","vehicle developers","sustained large","large market","space transportation","transportation services","services withe","withe initial","initial bigelow","bigelow commercial","commercial space","space station","station space","space complex","complex alpha","alpha space","space complex","complex alpha","alpha space","space station","need six","six flights","year withe","withe launch","second larger","larger station","number would","would grow","grow tor","tor two","month boeing","expecting bigelow","additional development","development andesign","critical design","design review","review phase","phase via","may bigelow","spacex teamed","joint marketing","international customers","crew transport","spacex dragon","dragon falcon","space facility","beyond earth","earth orbit","february following","post review","united states","states human","human space","space flight","flight plans","plans committee","committee augustine","augustine commission","commission plans","human torbit","torbit plans","commercialaunch providers","providers robert","robert bigelow","bigelow said","april bigelow","bigelow suggested","suggested positioning","space station","also said","proposed private","private moon","moon base","base would","would consist","march bigelow","bigelow signed","space act","act agreement","agreement contract","private spaceflight","spaceflight private","private ventures","human exploration","exploration missions","missions perhaps","perhaps including","including construction","moon base","commercial companies","extend commercial","commercial activity","current focus","human spaceflight","exploration missions","bigelow report","report released","released later","uncertain regulatory","regulatory environment","major obstacle","commercial activities","faa office","commercial space","space transportation","transportation ast","ast completed","proposed bigelow","bigelow lunar","lunar habitat","ensure bigelow","bigelow could","could carry","lunar activities","activities without","without interference","us companies","companies licensed","thathe faa","faa would","would use","launch licensing","licensing authority","protect private","private sector","sector assets","conduct peaceful","peaceful commercial","commercial activities","activities without","without fear","harmful interference","ast licensees","licensees bigelow","bigelow aerospace","aerospace received","received several","several honors","october bigelow","bigelow aerospace","aerospace received","arthur clarke","clarke foundation","award recognizes","recognizes initiatives","new inventions","recent impact","hold particular","particular promise","satellite communications","distinguished examples","innovative thinking","thinking robert","award athe","athe arthur","arthur clarke","clarke awards","alongside walter","night withe","withe arthur","arthur clarke","clarke lifetime","lifetime achievement","achievement award","space foundation","foundation announced","bigelow aerospace","aerospace would","achievement award","award bigelow","bigelow aerospace","aerospace joins","previous winners","titan rocket","rocket family","family titan","titan launch","launch vehicle","vehicle team","upper stage","stage team","spaceshipone team","ariane launch","launch team","expendable launch","nasa industry","industry galileo","galileo spacecraft","spacecraft galileo","galileo space","space probe","probe team","hubble space","space telescope","telescope team","team sea","sea launch","nasa boeing","boeing international","international space","space station","station team","robert bigelow","april athe","national space","space symposium","colorado springs","springs colorado","colorado see","see also","also blue","blue origin","origin list","private spaceflight","spaceflight companies","companies newspace","newspace adventurespace","adventurespace architecture","architecture virgin","virgin galactic","galactic externalinks","externalinks inflatable","privately owned","owned orbital","orbital facility","facility space","space review","review article","article july","july bigelow","archive space","space fellowship","fellowship bigelow","bigelow aerospace","aerospace news","news archive","archive us","us hotel","stars reuters","reuters article","article august","august holidays","scientist article","article september","september bigelow","gamble inside","bigelow inflatable","inflatable module","module plant","plant aviation","aviation week","week space","space technology","technology article","article september","five billion","billion star","star hotel","hotel popular","popular science","science magazine","magazine popular","popular science","science article","article march","march low","low earth","earth orbit","beyond popular","popular science","science magazine","magazine popular","popular science","science article","article march","march showing","showing plans","moon cruisers","space yachts","yachts progress","progress made","inflatable private","private space","space module","module spacecom","spacecom article","article march","march russians","russians delay","delay firstest","firstest flight","space hotel","bigelow orbital","orbital module","module launched","spacecom article","article july","july bigelow","bigelow aerospace","aerospace continues","continues relationship","private sector","sector space","space development","private space","space module","module space","july money","private space","space industry","industry part","part robert","robert bigelow","space monitor","monitor february","bigelow released","released photographs","genesis ii","ii category","category bigelow","bigelow aerospace","aerospace category","category establishments","establishments inevada","inevada category","category aerospace","aerospace companies","united states","states category","category companies","companies based","based inorth","inorth las","las vegas","vegas nevada","nevada category","category private","private spaceflight","spaceflight companies","companies category","category privately","privately held","held companies","companies based","las vegas","vegas valley","valley category","category space","space tourism","tourism category","category transport","transport companiestablished"],"new_description":"bigelow founder president location_city north las_vegas nevada location_country_united states key_people industry aerospacengineering aerospace products orbital facilities commercial_space stations revenue_operating income_net_income num_employees may slogan join adventure homepage footnotes bigelow_aerospace american space technology startup company_based inorth las_vegas nevada manufactures inflatable space habitat expandable space_station modules bigelow_aerospace founded robert bigelow funded large part profit bigelow gained throughis ownership hotel_chain budget suites america bigelow invested us_million company bigelow hastated multiple occasions prepared fund bigelow_aerospace us_million order achieve launch ofull scale hardware bigelow_aerospace hastated intend create modular set space habitat creating expanding space_stations many journalists commented bigelow taking risks trying compete capital intensive highly regulation regulated industry like spaceflight file transhab px_thumb right nasa design canceled transhab module bigelow originally licensed multi layer expandable space module technology nasa congress canceled international_space_station iss transhab project following delays budget constraints late bigelow three space act agreements whereby bigelow_aerospace sole several nasa key expandable module technologies bigelow continued develop technology decade module fabric layers including adding proprietary extensions shield fabric double strength variant andeveloping family uncrewed crewed expandable spacecraft variety sizes bigelow invested us_million proprietary extensions nasa technology mid million technology robert bigelow invested us_million company grown us_million personal fortune bigelow stated multiple occasions prepared fund bigelow_aerospace us_million order achieve launch ofull scale hardware early nasa came full circle making inflatable space_station modules make lighter cheaper launch spacecraft announcing plans budget proposal released february nasa considered connecting bigelow expandable iss safety life support radiation thermal control communications verification testing years december signed million contract bigelow product_development develop bigelow expandable activity module beam projected fly bigelow intent pursuing markets variety users including companies university research entertainment applications government military civil users business_model includes leasing small space_stations habitats made one inflatable modules different research communities corporations despite broad plans space commercialization space_tourism destination space hotel frequently used many media outlets following launches genesis genesis_ii robert bigelow aiming business space low_cost rapid contrary traditional nasa iss space_shuttle operations october bigelow announced agreements six sovereign state utilize orbit facilities bigelow commercial_space station commercial_space station uk astronomy technology centre united_kingdom office netherlands australia singapore japand swedish national space board sweden february dubai united_arab_emirates became seventh nation signed bigelow employed house team model maker coming film industry film architecture industries make detailed models space habitats space models sento potential customers corporations reminder possibilities reportedly due delays launch capability transport humans low_earth_orbit bigelow dramatically reduced staff late september crew transportation would_become available years first could ready laying employees late march bigelow began increasing staff levels april thathey_would modules ready go low_earth_orbit space time commercial passenger spacecraft available ferry customers dual space_station expected ready enter contracts customers staff occurred athe_start estimated industry sources people employed athe_time layoffs came company advertised jobs north las_vegas headquarters newly established propulsion department huntsville part reduction workforce company closed huntsville facility module design business plans file bigelow_aerospace thumb full_scale mockup bigelow_aerospace space_station alpha inside facility inevada expandable module design overview file inside space_station thumb nasa deputy administrator views inside full_scale mockup bigelow_aerospace space_station alpha bigelow_aerospace inflatable modules durable rigid modules partially due company use material twice also theory flexible able sustain impacts better rigid walls ground based testing capable standard iss module materials halfway bigelow skin operations director mike gold commented bigelow modules also would suffer local problems likely metallic modules could provide much hours comparison serious results standard uses bigelow_aerospace expandable modules include microgravity research_andevelopment space manufacturing potential uses include variable gravity research gravity microgravity including moon g mars gravity research based variable gravity research facility concept kirk marshall space flight center journal retrievedecember space_tourism modules forbital hotels space_transportation components spaceships moon mars manned missions business plans bigelow_aerospace website pricing schemes including million days space_station price covers everything including million bigelow_aerospace customers lease third b habitat roughly meters period days bigelow proposed conceptual designs expandable habitats would substantially larger previously largest habitat volume contingent going forward comparison orbitalaunch heavy proposed concept would habitats offering meters volume nearly twice capacity available international_space_station another providing bigelow_aerospace began building large production facility inorth las_vegas nevada produce space modules facility include three production line three distinct spacecraft doubling amount ofloor space bigelow focus research_andevelopment existing workforce manufacturing production bigelow expected hire approximately new employees staff plant production early execution contracto build bigelow expandable activity module international_space_station robert bigelow indicated company manufactures percent product content house outhe remainder march bigelow signed space act agreement nasa act private_spaceflight private companies wanto play role commercialization space creation new economy space civilization including proposals far complex mere space_tourism research_andevelopment research space manufacturing space medicine space farming agriculture agreement calls bigelow private_sector see federal_government united_states us_government industry could help first contract report identifies companies wanto part effort well potential customers delivered bigelow nasa may module construction july june bigelow launched genesis_ii modules respectively mid bigelow_aerospace completed galaxy spacecraft galaxy module launch due rising launch costs ability substantially validate new galaxy technologies earth particularly successful two genesis launches tested ground north las_vegas facility instead bigelow reserved launch spacex falcon_rocket announce payload falcon would capable launching sundancer module module bigelow also talked lockheed martin regarding atlas v rocket launch took_place although april bigelow_aerospace remained spacex list ofuture launch customers april spacex crs mission launched beam iss april bigelow united_launch_alliance announced atlas v rocket booked flight deliver b low_earth_orbit note dates upcoming launches proposed subjecto change cancelled projects class wikitable module type module names volume flight date launch_vehicle status genesis pathfinder genesis july utc dnepr launch successful orbit genesis pathfinder genesis_ii june utc dnepr launch successful orbit galaxy spacecraft galaxy cancelled launch cancelled tests ground sundancer cancelled launch cancelled replaced bigelow expandable activity module beam bigelow expandable activity module beam april utc spacex_dragon built contract design mockup built public goal two completed ready launch thend olympus proposed mockup built though large rocket currently flying expandable habitat modules genesis thumb genesis first bigelow_aerospace module placed intorbit july genesis launched dnepr booster air base cosmodrome oblast russia launch conducted bigelow despite ground side difficulties launch spacecraft performed expected upon reaching orbit starting internal systems mission planned last five_years observation craft performance including testing packing deployment procedures resistance radiation space debris among space hazards conditions michael gold attorney mike gold corporate counsel bigelow_aerospace stated relation mission next motto bigelow_aerospace fly early often regardless results genesis willaunch follow mission rapidly july vehicle remains orbit genesis_ii june genesis_ii launched another dnepr converted air base cosmodrome oblast russia launched genesis_ii inserted intorbit degrees although genesis genesis_ii identical size similar appearance several notable differences firstly genesis contains video cameras whereas genesis_ii genesis suite additional avionics present genesis estimated years gradually orbit resulting rentry earth atmosphere burn expected july vehicle remains orbit flyour stuff program bigelow_aerospace ran flyour stuff program genesis_ii launch costo launch pictures small items around us bigelow photographed item internal cameras items inside craft displaying company website first image interior genesis_ii appeared company website june pictures items placed aboard genesis_ii part flyour stuff program clearly visible another interior image apparently taken spacecraft activated posted july articles flyour stuff program also visible image test bigelow sent intorbit genesis new images items floating inside genesis released since shortly launch initial spacecraft due problems computer internal cameras third planned bigelow launch sundancer support systems attitude control orbital systems would capable burns like genesis outer surface would compacted around central core air expanding ito full size entering orbit expansion module would measured length diameter interior volume unlike previous bigelow craft planned three observation contracted provide falcon vehicle launch bigelow payload july bigelow announced_thathey cease development sundancer instead focus efforts bigelow expandable activity module iss file beam press conference jpg thumb full_scale mock expanded beam january december bigelow began product_development work bigelow expandable activity module beam contract number delays beam transported iss arriving april inside cargo trunk spacex_dragon spacex crs cargo mission spaceflight intended testhe structural integrity leak rate radiation temperature changes two_year long mission athend beam mission module planned removed iss burn atmospheric entry reentry b full_scale production module weighing approximately dimensions approximately length diameter expanded previous names b band concept module olympus module concept module would require comparison orbitalaunch systems heavy_lift launcher would place orbithe complete infrastructure space habitat six times large initial estimates puthe vehicle mass tonnes diameter approximately concept model shows docking ports ends delays launch capability result delays launch capability transport humans bigelow habitats bigelow laid employees late september bigelow expected human launch capability buthe prospect transportation kind apparently going years first could ready business technical reasons cannot deploy without means transporting crew station employment levels necessary reality april first_launch b habitat wascheduled atlas v rocket bigelow commercial_space station bigelow next_generation commercial_space station private_spaceflight private low_earth_orbital_space complex currently development bigelow space_station include sundancer expandable spacecraft modules central docking compartment docking spacecraft propulsion solar panels spacecraft attached space_capsule crew_capsules space_station components planned portions station available leased use early bigelow publicly shown space_station design configurations nine modules containing space bigelow began publicly refer initial configuration two sundancer modules one module first bigelow station complex alpha october second orbital station space complex wascheduled begin launches launches commence commercial_crew transportation systems operational later bigelow announced october agreements six sovereign state utilize orbit facilities commercial_space station government united_kingdom united_kingdom prime_minister netherlands government australia government singapore government japan government sweden february number risen seven earlier space_station bigelow commercial_space station commercial_space station bigelow concept first space hotel composed multiple habitat modules would connected upon reaching orbit propulsion_module would allow moved interplanetary lunar inovember bigelow indicated thathe_company would like space_stations thathere substantial commercial marketo support growth crew passenger transport bigelow business_model requires means transporting humans low_earth_orbit bigelow established funded prize america space prize stimulate development manned vehicles without winner early august bigelow_aerospace announced development orion lite orion lite spacecraft intended lower_cost less capable version orion spacecraft orion spacecraft development nasa intention would lite provide access low_earth_orbit using either atlas falcon launch_systems carrying crew athe_time bigelow_aerospace corporate counsel mike gold said would depend completely one capsule provider single launch_system therefore vital practical business perspective ensure spacex andragon nothe options available us hence need another capsule bigelow entered nasa commercial_crew_development ccdev program withe cst capsule collaboration boeing since awarded boeing million initial development crew_capsule part ccdev bigelow working boeing refine requirements cst bigelow actively pursuing bothe boeing cst united_launch_alliance v spacex_dragon falcon capsule launcher combinations launch options bigelow offers boeing spacex vehicle developers promise sustained large market space_transportation_services withe initial bigelow commercial_space station space complex alpha space complex alpha space_station need six flights year withe launch second larger station number would grow tor two month boeing expecting bigelow customer flights cst received contract nasa additional development andesign critical design review phase via may bigelow spacex teamed joint marketing international customers crew transport spacex_dragon falcon bigelow space facility beyond earth_orbit february following announcement nasa post review united_states human space flight plans committee augustine commission plans human torbit plans direction commercialaunch providers robert bigelow said company lunar also mars well april bigelow suggested positioning space_station point also said proposed private moon base would consist three march bigelow signed space act agreement contract nasa look ways private_spaceflight private ventures contribute human exploration missions perhaps including construction moon base act commercial companies extend commercial activity bases ways part nasa current focus human_spaceflight exploration missions bigelow report released later identified regime uncertain regulatory environment major obstacle commercial activities moon december faa office commercial_space transportation ast completed review proposed bigelow lunar habitat indicated willing use authority ensure bigelow could carry lunar activities without interference us companies licensed thathe faa would use launch licensing authority best protect private_sector assets moon provide companies conduct peaceful commercial activities without fear harmful interference ast licensees bigelow_aerospace received several honors efforts october bigelow_aerospace received award arthur clarke foundation award recognizes initiatives new inventions recent impact hold particular promise satellite communications society stand distinguished examples innovative thinking robert presented award athe arthur clarke awards washington alongside walter honored night withe arthur clarke lifetime achievement award january space foundation announced bigelow_aerospace would recipient achievement award bigelow_aerospace joins list previous winners include titan rocket_family titan launch_vehicle team upper_stage team spaceshipone team arianespace ariane launch team expendable launch teams nasa industry galileo spacecraft galileo space probe team hubble space telescope team sea launch nasa boeing international_space_station team award presented robert bigelow april athe_national space symposium colorado springs colorado see_also blue_origin list private_spaceflight companies newspace adventurespace architecture virgin_galactic externalinks inflatable privately_owned orbital facility space review article july bigelow archive space_fellowship bigelow_aerospace news archive us hotel reaches stars reuters article august holidays space scientist article september bigelow gamble inside bigelow inflatable module plant aviation week space technology article september five billion star hotel popular_science magazine popular_science article march low_earth_orbit beyond popular_science magazine popular_science article march showing plans moon cruisers space yachts progress made inflatable private_space module spacecom article march russians delay firstest flight space hotel article bigelow orbital module launched spacecom article july bigelow_aerospace continues relationship nasa space private_sector space development history genesis private_space module space july money private_space industry part robert bigelow space monitor february simulation bigelow released photographs genesis genesis_ii category bigelow_aerospace category_establishments inevada category aerospace_companies united_states category_companies_based inorth las_vegas nevada category_private_spaceflight companies_category privately held companies_based las_vegas valley category_space_tourism category_transport companiestablished"},{"title":"Birth tourism","description":"file jusoli worldsvg thumb px countries by jusoli birthright citizenship birth tourism is travel to another country for the purpose of childbirth giving birth in that country anchor baby is anotherelated term which can have negative connotations the main reason for birth tourism is tobtain citizenship for the child in a country with birthright citizenship jusoli othereasons include access to public schooling healthcare sponsorship for the parents in the future or even circumvention of china s two child policy china two child policy popular destinations include the united states and canadanother target for birth tourism is hong kong where mainland chinese citizens travel to give birth to gain right of abode in hong kong right of abode for their children to discourage birth tourism australia france germany ireland new zealand south africand the united kingdom have modified their citizenship laws at differentimes granting citizenship by birth only if at least one parent is a citizen of the country or a legal permanent resident who has lived in the country for several years germany has never granted unconditional birthright citizenship but has traditionally used jusanguiniso by giving up the requirement of at least one citizen parent germany hasoftened rather than tightened germanationality law its citizenship laws however unlike their children born and grown up in germany non eu and non swiss citizen parents born and grown up abroad usually cannot have dual citizenship themselves no european country presently grants unconditional birthright citizenship however most countries in the americas eg the united states canada mexico argentinand brazil do so in africa lesotho and tanzania grant unconditional birthright citizenship and so do in the asian pacific region fiji pakistand tuvalu birth tourism today north america the united states canadand mexico all grant unconditional birthright citizenship and allow dual citizenship the united states taxes its citizens and green card holders worldwideven if they have never lived in the country in mexiconly naturalized citizens can lose their mexican citizenship again eg by naturalizing in another country united states the fourteenth amendmento the united states constitution guarantees united states nationality law us citizenship to those born in the united states provided the person isubjecto the jurisdiction of the united states congress has further extended birthright citizenship to all inhabited us territories except american samoa people born in american samoa get us nationality without citizenship at birth once they reach years of age american born children as birthright citizens are able to sponsor their foreign families us citizenship and residency aj delgado instant citizens national review may there are no statistics about which countries have citizens who participate in birth tourism in the united states politically conservative lawyer and author aj delgado wrote in his article for the national review that an average of women travel from russia to florida to give birth in a single maternity hotel every monthe center for health care statistics estimates thathere were births to foreign residents in the united states in the most recent year for which statistics are available that is a small fraction of the roughly million total births that year the center for immigration studies a think tank that favors immigration reduction in the united states limits on immigration estimates thathere are approximately annual births to parents in the united states as birth tourists however total births to temporary immigrants in the united states eg touriststudents guest workers could be as high as one option for mainland chinese mothers to give birth isaipanorthern mariana islands where the cost is cheaper and travel does not require a us visa south china morning post mainland moms look west after hong kong backlash february more than of the newborns in saipan have birth tourist prc parents who take advantage of the day visa free visitation rules of the territory and the covenant of the northern mariana islands to ensure thatheir children can have american citizenship numerous maternity businesses advise pregnant mothers to hide their pregnancies from officials and even commit visa fraud lying to customs agents aboutheir true purpose in the us abby phillip inside the shadowy world of birth tourism at maternity hotels the washington post march once they give birth several birth tourism agencies aid the mothers in defrauding the us hospital taking advantage of discounts reserved for impoverished american mothersmatt sheehan born in the usa why chinese birth tourism is booming in california the world post may some mothers will refuse to pay the bill for the medical careceiveduring their hospital stay on october the north american chinese language daily world journal reported that for several weeks the immigration authorities at los angeles international airport lax had been closely questioning pregnant chinese women arriving there from chinand in many cases denying them entry to the united states and repatriating them within hours often on the same airplane on which they had flown to the united statespage world journal october in march federal agents conducted raids on a series of large scale maternity tourism operations bringing thousands of mainland chinese women intent on giving their children american citizenship congressional representativesuch as phil gingrey who have tried to put an end to birth tourism said these people are gaming the system in augusthe issue was discussed among us presidential candidates including donald trump and jebush worldwide taxation of us citizens and green card holders file individual taxation systemspng righthumb px systems of taxation personal income the united states and eritreare currently the only two countries in the world to tax their citizens worldwideven if they have never lived in the country and were born to citizens living abroad eritrea does not grant unconditional birthright citizenship at least one parent must be a citizen for a child to be granted automaticitizenship eritreans that hold citizenship from another country must first beritrean citizens from birth and second receive permission to hold citizenship from another country a baby born in the us is as a citizen automatically subjecto us taxation even if both parents are foreignerso the baby has multiple citizenships and the baby and the parents leave the us right after birth and nevereturn again the same is true for a baby born to us citizens living abroad even if he she never enters the us green card holders are also subjecto worldwide taxation to some people this worldwide taxation may be a reason for giving up their us citizenship or their green card fee forenunciation of us citizenship in the fee forenunciation of us citizenship was raised by it went from us to and is the highest fee for the renunciation of a citizenship worldwide canada s citizenship law hasince generally conferred canadian citizenship at birth to anyone born in canada regardless of the citizenship or immigration status of the parents the only exception is for children born in canada to representatives oforeign governments or international organizations the canadian government has considered limiting jusoli citizenship and continues to debate the issue but has not yet changed this part of canadian law somexpectant chinese parents who have already had one child travel to canada to give birth in order to circumvent china s one child policy additionally acquiring canadian citizenship for the child and applying for a passport beforeturning to china qu bec birth certificatentitles a student enrolled in that province to pay university tuition athe lower in province rate on average this was canadian dollar year in mexicans who are citizens by birth are individuals that were born in mexican territory regardless of parents nationality or immigration status in mexico individuals born on mexican merchant or navy ships or mexican registered aircraft regardless of parents nationality are still considered mexican citizens only naturalized mexicans can lose their mexican citizenship birth and abortion and other medical tourism between the united states canadand mexico in the canada united states border canada us borderegion the way to a hospital in the neighboring country isometimeshorter than to a hospital in the patient s own country so canadian women sometimes give birth to their children in us hospitals and us women in canadian hospitals these children sometimes called border babies are usually dual citizens of bothe country of their parents and their birth country canada has entered the medical tourism field in comparison to us health costs medical tourism patients can save to percent on health costs in canada mexican women sometimes engage in birth tourism to the united states or canada to give their children us or canadian citizenship while some non legal obstacles exist canada is one of only a few countries without legal restrictions on abortion regulations and accessibility vary between provinces in the united states different states have different abortion lawso that women in states with restrictive lawsometimes engage in abortion tourism either to the ustates with more liberalaws or to canada in mexico as in the united states abortion laws vary regionally so mexican women may sometimes engage in abortion tourism south america most south american countries grant unconditional birthright citizenship and allow dual citizenship butheir strict abortion laws make them risky birth tourism destinations in case of complications during the pregnancy in argentinabortion is restricted to cases of maternalife mental health orape in brazil abortion is restricted to cases of maternalife mental health rape or fetal defects in chile abortion is forbidden completely even if the pregnant woman s life is in danger some countries do not allow their citizens to renounce their citizenship or only if the citizenship was acquired by birthere to non citizen parents in argentina brazil ecuador peru and uruguay voting is compulsory for citizens in bolivia brazil chile colombia cuba guatemala paraguay and venezuela military service is mandatory any person born in argentine territory acquires argentine citizenship at birth excepting children of persons in the service of a foreign government eg foreign diplomats this can be also applied to people born in the falkland islands a disputed territory between argentinand the united kingdom argentine citizens cannot renounce their argentine citizenship a person born in brazil acquires brazilian citizenship at birth it isaid brazilian citizens cannot renounce their brazilian citizenship but it is possible to renounce ithrough a requirement made in the brazilian consulate if they already have acquired another citizenship voluntarily foreigners may be able tobtain a brazilian citizenship by expressing their interesto live in brazil any person born in chile acquires chilean citizenship at birthe only two exceptions apply to children of persons in the service of a foreign government like foreign diplomats and to the children oforeigners who do not reside in the country however these children can apply to acquire chileanationality hong kong as a non sovereign territory hong kong does not have its own citizenship the status akin to citizenship in hong kong is the right of abode in hong kong right of abode also known as hong kong residents permanent residence hong kong permanent residents regardless of citizenship are accorded all rights normally associated with citizenship with few exceptionsuch as the righto a hong kong special administrative region passport hksar passport and theligibility to belected as the chief executive of hong kong chief executive which are only available to chinese citizens with right of abode in hong kong according to the basic law of hong kong chinese citizens born in hong kong have the right of abode in the territory the court case director of immigration v chong fung yuen affirmed thathis right extends to the birth tourism in hong kong children of mainland chinese parents who themselves are not residents of hong kong as a resulthere has been an influx of mainland mothers giving birth in hong kong in order tobtain right of abode for the child in of babies born in hong kong were born to parents originating fromainland china this has resulted in backlash from some circles in hong kong to increased potential stress on the territory social welfare net and education system attempts to restrict benefits from such births have been struck down by the territory s courts a portion of the hong kong population has reacted negatively to the phenomenon whichas exacerbated social and cultural tensions between hong kong and mainland china the situation came to a boiling point in early hong kong protests early withong kongers taking to the streeto protesthe influx of birth tourism fromainland china birth tourism in the pastopped by changes in laws malta changed the principle of citizenship to jusanguinis on august in a move that also relaxed restrictions against multiple citizenships it joined theuropean union may because of an enormous population indiabolished jusoli on december jusoli had already been progressively weakened india since indiallows a form of overseas citizenship but no real dual citizenship irish nationality law included birth citizenship until the th amendment was passed by referendum in the amendment was preceded by media reports of heavily pregnant women right of asylum claiming political asylum who expected that even if their application was rejected they would be allowed to remain the country if their new baby was a citizen until ireland was the last european country to grant unconditional birthright citizenship dominican republic the constitutional court of the dominican republic reaffirmed in tc that children born in the republic from individuals that were in transit arexcluded from dominican citizenship as per the dominican republic s constitution the in transit clause includes those individuals residing in the country without legal documentation or with expiredocumentation tc also required the civil registry to be cleaned from anomalies going as far back as when the in transit clause was first put in place in the constitution the dominican government does not consider this a retroactive decisionly a reaffirmation of a clause that has been present in every revision of the dominican constitution as far back as birth tourism encouraged by jusoli countries in the past in former timesome countries latin american countries and canadadvertised their policy of unconditional birthright citizenship to become more attractive for immigrants despite wide acceptance of dual citizenship industrialized countries now try to protecthemselves from birth tourism and uncontrollable immigration waves birth and pregnancy tourism to non jusoli countries file maternidad subrogada situaci n legalpng px thumb legal regulation of surrogacy in the world some womengage in birth tourism noto give their children a foreign citizenship but because the other country has a better or cheaper medical system or allows procedures that are forbidden in the women s home countries eg in vitro fertilization special tests on fetuses and embryos or surrogacy buthis may lead to legal problems for the babies in the home country of their future parents for example germany like other eu countries forbidsurrogacy and a baby born abroad to a foreign surrogate mother has no righto german citizenship according to german law the woman who gives birth to a baby is its legal mother even if it is not her own baby and if the foreign surrogate mother is married her husband is regarded as the legal father many women travel abroad only for some procedures forbidden in their home countries buthen give birth to their children in their home countries pregnancy tourism see also anchor baby jusoli multiple citizenship economic results of migration category immigration category nationality law category childbirth category types of tourism","main_words":["file","jusoli","thumb","px","countries","jusoli","birthright_citizenship","birth_tourism","travel","another_country","purpose","giving","birth","country","anchor","baby","term","negative","main","reason","birth_tourism","tobtain","citizenship","child","country","birthright_citizenship","jusoli","include","access","sponsorship","parents","future","even","circumvention","china","two","child","policy","china","two","child","policy","popular_destinations","include","united_states","target","birth_tourism","hong_kong","mainland","chinese","citizens","travel","give","birth","gain","right","abode","hong_kong","right","abode","children","discourage","birth_tourism","australia","france","germany","ireland","new_zealand","south_africand","united_kingdom","modified","citizenship","laws","citizenship","birth","least_one","parent","citizen","country","legal","permanent","resident","lived","country","several_years","germany","never","granted","unconditional","birthright_citizenship","traditionally","used","giving","requirement","least_one","citizen","parent","germany","rather","law","citizenship","laws","however","unlike","children","born","grown","germany","non","non","swiss","citizen","parents","born","grown","abroad","usually","cannot","dual","citizenship","european","country","presently","grants","unconditional","birthright_citizenship","however","countries","americas","united_states","canada","mexico","argentinand","brazil","africa","tanzania","grant","unconditional","birthright_citizenship","asian","pacific","region","fiji","pakistand","birth_tourism","today","north_america","united_states","canadand","mexico","grant","unconditional","birthright_citizenship","allow","dual","citizenship","united_states","taxes","citizens","green","card","holders","never","lived","country","citizens","lose","mexican","citizenship","states","amendmento","united_states","constitution","united_states","nationality","law","us","citizenship","born","united_states","provided","person","isubjecto","jurisdiction","united_states","congress","extended","birthright_citizenship","inhabited","us","territories","except","american","samoa","people","born","american","samoa","get","without","citizenship","birth","reach","years","age","american","born","children","citizens","able","sponsor","foreign","families","us","citizenship","instant","citizens","national","review","may","statistics","countries","citizens","participate","birth_tourism","united_states","politically","conservative","lawyer","author","wrote","article","national","review","average","women","travel","russia","florida","give","birth","single","maternity","hotel","every","monthe","center","health_care","statistics","estimates","thathere","births","foreign","residents","united_states","recent","year","statistics","available","small","fraction","roughly","million","total","births","year","center","immigration","studies","think_tank","favors","immigration","reduction","united_states","limits","immigration","estimates","thathere","approximately","annual","births","parents","united_states","birth","tourists","however","total","births","temporary","immigrants","united_states","guest","workers","could","high","one","option","mainland","chinese","mothers","give","birth","islands","cost","cheaper","travel","require","us","visa","south","china","morning","post","mainland","look","west","hong_kong","backlash","february","birth","tourist","parents","take_advantage","day","visa","free","visitation","rules","territory","northern","islands","children","american","citizenship","numerous","maternity","businesses","advise","pregnant","mothers","hide","officials","even","commit","visa","fraud","lying","customs","agents","aboutheir","true","purpose","us","phillip","inside","world","birth_tourism","maternity","hotels","washington_post","march","give","birth","several","aid","mothers","us","hospital","taking","advantage","discounts","reserved","impoverished","american","born","usa","chinese","birth_tourism","booming","california","world","post","may","mothers","refuse","pay","bill","medical","hospital","stay","october","north_american","chinese_language","daily","world","journal","reported","several","weeks","immigration","authorities","los_angeles","international_airport","lax","closely","pregnant","chinese","women","arriving","chinand","many_cases","entry","united_states","within","hours","often","airplane","flown","united","world","journal","october","march","federal","agents","conducted","series","large_scale","maternity","tourism","operations","bringing","thousands","mainland","chinese","women","intent","giving","children","american","citizenship","congressional","phil","tried","put","end","birth_tourism","said","people","gaming","system","augusthe","issue","discussed","among","us","presidential","candidates","including","donald","trump","worldwide","taxation","us","citizens","green","card","holders","file","individual","taxation","righthumb_px","systems","taxation","personal","income","united_states","currently","two","countries","world","tax","citizens","never","lived","country","born","citizens","living","abroad","grant","unconditional","birthright_citizenship","least_one","parent","must","citizen","child","granted","hold","citizenship","another_country","must","first","citizens","birth","second","receive","permission","hold","citizenship","another_country","baby","born","us","citizen","automatically","subjecto","us","taxation","even","parents","baby","multiple","baby","parents","leave","us","right","birth","true","baby","born","us","citizens","living","abroad","even","never","enters","us","green","card","holders","also","subjecto","worldwide","taxation","people","worldwide","taxation","may","reason","giving","us","citizenship","green","card","fee","us","citizenship","fee","us","citizenship","raised","went","us","highest","fee","citizenship","worldwide","canada","citizenship","law","hasince","generally","conferred","canadian","citizenship","birth","anyone","born","canada","regardless","citizenship","immigration","status","parents","exception","children","born","canada","representatives","oforeign","governments","international","organizations","canadian","government","considered","limiting","jusoli","citizenship","continues","debate","issue","yet","changed","part","canadian","law","chinese","parents","already","one","child","travel","canada","give","birth","order","china","one","child","policy","additionally","acquiring","canadian","citizenship","child","applying","passport","beforeturning","china","bec","birth","student","enrolled","province","pay","university","athe","lower","province","rate","average","canadian","dollar","year","mexicans","citizens","birth","individuals","born","mexican","territory","regardless","parents","nationality","immigration","status","mexico","individuals","born","mexican","merchant","navy","ships","mexican","registered","aircraft","regardless","parents","nationality","still","considered","mexican","citizens","mexicans","lose","mexican","citizenship","birth","abortion","medical_tourism","united_states","canadand","mexico","canada","united_states","border","canada","us","way","hospital","neighboring","country","hospital","patient","country","canadian","women","sometimes","give","birth","children","us","hospitals","us","women","canadian","hospitals","children","sometimes_called","border","babies","usually","dual","citizens","bothe","country","parents","birth","country","canada","entered","medical_tourism","field","comparison","us","health","costs","medical_tourism","patients","save","percent","health","costs","canada","mexican","women","sometimes","engage","birth_tourism","united_states","canada","give","children","us","canadian","citizenship","non","legal","obstacles","exist","canada","one","countries","without","legal","restrictions","abortion","regulations","accessibility","vary","provinces","united_states","different","states","different","abortion","women","states","restrictive","engage","abortion","tourism","either","ustates","canada","mexico","united_states","abortion","laws","vary","mexican","women","may","sometimes","engage","abortion","tourism","south_america","south_american","countries","grant","unconditional","birthright_citizenship","allow","dual","citizenship","butheir","strict","abortion","laws","make","risky","case","complications","pregnancy","restricted","cases","mental","health","brazil","abortion","restricted","cases","mental","health","rape","chile","abortion","forbidden","completely","even","pregnant","woman","life","danger","countries","allow","citizens","renounce","citizenship","citizenship","acquired","non","citizen","parents","argentina","brazil","ecuador","peru","uruguay","voting","compulsory","citizens","bolivia","brazil","chile","colombia","cuba","guatemala","venezuela","military","service","mandatory","person","born","argentine","territory","acquires","argentine","citizenship","birth","children","persons","service","foreign","government","foreign","diplomats","also","applied","people","born","falkland","islands","disputed","territory","argentinand","united_kingdom","argentine","citizens","cannot","renounce","argentine","citizenship","person","born","brazil","acquires","brazilian","citizenship","birth","isaid","brazilian","citizens","cannot","renounce","brazilian","citizenship","possible","renounce","requirement","made","brazilian","already","acquired","another","citizenship","foreigners","may","able","tobtain","brazilian","citizenship","interesto","live","brazil","person","born","chile","acquires","chilean","citizenship","two","exceptions","apply","children","persons","service","foreign","government","like","foreign","diplomats","children","reside","country","however","children","apply","acquire","hong_kong","non","sovereign","territory","hong_kong","citizenship","status","akin","citizenship","hong_kong","right","abode","hong_kong","right","abode","also_known","hong_kong","residents","permanent","residence","hong_kong","permanent","residents","regardless","citizenship","rights","normally","associated","citizenship","righto","hong_kong","special","administrative","region","passport","passport","chief_executive","hong_kong","chief_executive","available","chinese","citizens","right","abode","hong_kong","according","basic","law","hong_kong","chinese","citizens","born","hong_kong","right","abode","territory","court","case","director","immigration","v","thathis","right","extends","birth_tourism","hong_kong","children","mainland","chinese","parents","residents","hong_kong","influx","mainland","mothers","giving","birth","hong_kong","order","tobtain","right","abode","child","babies","born","hong_kong","born","parents","originating","china","resulted","backlash","circles","hong_kong","increased","potential","stress","territory","social","welfare","net","education","system","attempts","restrict","benefits","births","struck","territory","courts","portion","hong_kong","population","negatively","phenomenon","whichas","social","cultural","tensions","hong_kong","mainland","china","situation","came","boiling","point","early","hong_kong","protests","early","taking","streeto","influx","birth_tourism","china","birth_tourism","changes","laws","malta","changed","principle","citizenship","august","move","also","relaxed","restrictions","multiple","joined","theuropean_union","may","enormous","population","jusoli","december","jusoli","already","progressively","india","since","form","overseas","citizenship","real","dual","citizenship","irish","nationality","law","included","birth","citizenship","th","amendment","passed","amendment","preceded","media","reports","heavily","pregnant","women","right","asylum","claiming","political","asylum","expected","even","application","rejected","would","allowed","remain","country","new","baby","citizen","ireland","last","european","country","grant","unconditional","birthright_citizenship","dominican","republic","constitutional","court","dominican","republic","children","born","republic","individuals","transit","dominican","citizenship","per","dominican","republic","constitution","transit","clause","includes","individuals","residing","country","without","legal","documentation","also","required","civil","registry","going","far","back","transit","clause","first","put","place","constitution","dominican","government","consider","clause","present","every","revision","dominican","constitution","far","back","birth_tourism","encouraged","jusoli","countries","past","former","countries","latin_american","countries","policy","unconditional","birthright_citizenship","become","attractive","immigrants","despite","wide","acceptance","dual","citizenship","countries","try","birth_tourism","immigration","waves","birth","pregnancy","tourism","non","jusoli","countries","file","n","px_thumb","legal","regulation","surrogacy","world","birth_tourism","noto","give","children","foreign","citizenship","country","better","cheaper","medical","system","allows","procedures","forbidden","women","home_countries","vitro","fertilization","special","tests","embryos","surrogacy","buthis","may","lead","legal","problems","babies","home_country","future","parents","example","germany","like","countries","baby","born","abroad","foreign","surrogate","mother","righto","german","citizenship","according","german","law","woman","gives","birth","baby","legal","mother","even","baby","foreign","surrogate","mother","married","husband","regarded","legal","father","many","women","travel","abroad","procedures","forbidden","home_countries","buthen","give","birth","children","home_countries","pregnancy","tourism","see_also","anchor","baby","jusoli","multiple","citizenship","economic","results","migration","category","immigration","law","category","category_types","tourism"],"clean_bigrams":[["file","jusoli"],["thumb","px"],["px","countries"],["jusoli","birthright"],["birthright","citizenship"],["citizenship","birth"],["birth","tourism"],["another","country"],["giving","birth"],["birth","country"],["country","anchor"],["anchor","baby"],["main","reason"],["birth","tourism"],["tobtain","citizenship"],["birthright","citizenship"],["citizenship","jusoli"],["include","access"],["healthcare","sponsorship"],["even","circumvention"],["china","two"],["two","child"],["child","policy"],["policy","china"],["china","two"],["two","child"],["child","policy"],["policy","popular"],["popular","destinations"],["destinations","include"],["united","states"],["birth","tourism"],["hong","kong"],["mainland","chinese"],["chinese","citizens"],["citizens","travel"],["give","birth"],["gain","right"],["hong","kong"],["kong","right"],["discourage","birth"],["birth","tourism"],["tourism","australia"],["australia","france"],["france","germany"],["germany","ireland"],["ireland","new"],["new","zealand"],["zealand","south"],["south","africand"],["united","kingdom"],["citizenship","laws"],["citizenship","birth"],["least","one"],["one","parent"],["legal","permanent"],["permanent","resident"],["several","years"],["years","germany"],["never","granted"],["granted","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["traditionally","used"],["least","one"],["one","citizen"],["citizen","parent"],["parent","germany"],["citizenship","laws"],["laws","however"],["however","unlike"],["children","born"],["germany","non"],["non","swiss"],["swiss","citizen"],["citizen","parents"],["parents","born"],["abroad","usually"],["dual","citizenship"],["european","country"],["country","presently"],["presently","grants"],["grants","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["citizenship","however"],["united","states"],["states","canada"],["canada","mexico"],["mexico","argentinand"],["argentinand","brazil"],["tanzania","grant"],["grant","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["asian","pacific"],["pacific","region"],["region","fiji"],["fiji","pakistand"],["birth","tourism"],["tourism","today"],["today","north"],["north","america"],["united","states"],["states","canadand"],["canadand","mexico"],["grant","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["allow","dual"],["dual","citizenship"],["united","states"],["states","taxes"],["green","card"],["card","holders"],["never","lived"],["mexican","citizenship"],["another","country"],["country","united"],["united","states"],["united","states"],["states","constitution"],["united","states"],["states","nationality"],["nationality","law"],["law","us"],["us","citizenship"],["united","states"],["states","provided"],["person","isubjecto"],["united","states"],["states","congress"],["extended","birthright"],["birthright","citizenship"],["inhabited","us"],["us","territories"],["territories","except"],["except","american"],["american","samoa"],["samoa","people"],["people","born"],["american","samoa"],["samoa","get"],["get","us"],["us","nationality"],["nationality","without"],["without","citizenship"],["citizenship","birth"],["reach","years"],["age","american"],["american","born"],["born","children"],["birthright","citizens"],["foreign","families"],["families","us"],["us","citizenship"],["instant","citizens"],["citizens","national"],["national","review"],["review","may"],["birth","tourism"],["united","states"],["states","politically"],["politically","conservative"],["conservative","lawyer"],["national","review"],["women","travel"],["give","birth"],["single","maternity"],["maternity","hotel"],["hotel","every"],["every","monthe"],["monthe","center"],["health","care"],["care","statistics"],["statistics","estimates"],["estimates","thathere"],["foreign","residents"],["united","states"],["recent","year"],["small","fraction"],["roughly","million"],["million","total"],["total","births"],["immigration","studies"],["think","tank"],["favors","immigration"],["immigration","reduction"],["united","states"],["states","limits"],["immigration","estimates"],["estimates","thathere"],["approximately","annual"],["annual","births"],["united","states"],["birth","tourists"],["tourists","however"],["however","total"],["total","births"],["temporary","immigrants"],["united","states"],["guest","workers"],["workers","could"],["one","option"],["mainland","chinese"],["chinese","mothers"],["give","birth"],["us","visa"],["visa","south"],["south","china"],["china","morning"],["morning","post"],["post","mainland"],["look","west"],["hong","kong"],["kong","backlash"],["backlash","february"],["birth","tourist"],["take","advantage"],["day","visa"],["visa","free"],["free","visitation"],["visitation","rules"],["ensure","thatheir"],["thatheir","children"],["children","american"],["american","citizenship"],["citizenship","numerous"],["numerous","maternity"],["maternity","businesses"],["businesses","advise"],["advise","pregnant"],["pregnant","mothers"],["even","commit"],["commit","visa"],["visa","fraud"],["fraud","lying"],["customs","agents"],["agents","aboutheir"],["aboutheir","true"],["true","purpose"],["phillip","inside"],["birth","tourism"],["maternity","hotels"],["washington","post"],["post","march"],["give","birth"],["birth","several"],["several","birth"],["birth","tourism"],["tourism","agencies"],["agencies","aid"],["us","hospital"],["hospital","taking"],["taking","advantage"],["discounts","reserved"],["impoverished","american"],["american","born"],["chinese","birth"],["birth","tourism"],["world","post"],["post","may"],["hospital","stay"],["north","american"],["american","chinese"],["chinese","language"],["language","daily"],["daily","world"],["world","journal"],["journal","reported"],["several","weeks"],["immigration","authorities"],["los","angeles"],["angeles","international"],["international","airport"],["airport","lax"],["pregnant","chinese"],["chinese","women"],["women","arriving"],["many","cases"],["united","states"],["within","hours"],["hours","often"],["world","journal"],["journal","october"],["march","federal"],["federal","agents"],["agents","conducted"],["large","scale"],["scale","maternity"],["maternity","tourism"],["tourism","operations"],["operations","bringing"],["bringing","thousands"],["mainland","chinese"],["chinese","women"],["women","intent"],["children","american"],["american","citizenship"],["citizenship","congressional"],["birth","tourism"],["tourism","said"],["augusthe","issue"],["discussed","among"],["among","us"],["us","presidential"],["presidential","candidates"],["candidates","including"],["including","donald"],["donald","trump"],["worldwide","taxation"],["us","citizens"],["green","card"],["card","holders"],["holders","file"],["file","individual"],["individual","taxation"],["righthumb","px"],["px","systems"],["taxation","personal"],["personal","income"],["united","states"],["two","countries"],["never","lived"],["citizens","living"],["living","abroad"],["grant","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["least","one"],["one","parent"],["parent","must"],["hold","citizenship"],["another","country"],["country","must"],["must","first"],["second","receive"],["receive","permission"],["hold","citizenship"],["another","country"],["baby","born"],["citizen","automatically"],["automatically","subjecto"],["subjecto","us"],["us","taxation"],["taxation","even"],["parents","leave"],["us","right"],["baby","born"],["us","citizens"],["citizens","living"],["living","abroad"],["abroad","even"],["never","enters"],["us","green"],["green","card"],["card","holders"],["also","subjecto"],["subjecto","worldwide"],["worldwide","taxation"],["worldwide","taxation"],["taxation","may"],["us","citizenship"],["green","card"],["card","fee"],["us","citizenship"],["us","citizenship"],["highest","fee"],["citizenship","worldwide"],["worldwide","canada"],["citizenship","law"],["law","hasince"],["hasince","generally"],["generally","conferred"],["conferred","canadian"],["canadian","citizenship"],["citizenship","birth"],["anyone","born"],["canada","regardless"],["immigration","status"],["children","born"],["representatives","oforeign"],["oforeign","governments"],["international","organizations"],["canadian","government"],["considered","limiting"],["limiting","jusoli"],["jusoli","citizenship"],["yet","changed"],["canadian","law"],["chinese","parents"],["one","child"],["child","travel"],["give","birth"],["one","child"],["child","policy"],["policy","additionally"],["additionally","acquiring"],["acquiring","canadian"],["canadian","citizenship"],["passport","beforeturning"],["bec","birth"],["student","enrolled"],["pay","university"],["athe","lower"],["province","rate"],["canadian","dollar"],["dollar","year"],["individuals","born"],["mexican","territory"],["territory","regardless"],["parents","nationality"],["immigration","status"],["mexico","individuals"],["individuals","born"],["mexican","merchant"],["navy","ships"],["mexican","registered"],["registered","aircraft"],["aircraft","regardless"],["parents","nationality"],["still","considered"],["considered","mexican"],["mexican","citizens"],["mexican","citizenship"],["citizenship","birth"],["medical","tourism"],["united","states"],["states","canadand"],["canadand","mexico"],["canada","united"],["united","states"],["states","border"],["border","canada"],["canada","us"],["neighboring","country"],["canadian","women"],["women","sometimes"],["sometimes","give"],["give","birth"],["children","us"],["us","hospitals"],["us","women"],["canadian","hospitals"],["children","sometimes"],["sometimes","called"],["called","border"],["border","babies"],["usually","dual"],["dual","citizens"],["bothe","country"],["birth","country"],["country","canada"],["medical","tourism"],["tourism","field"],["us","health"],["health","costs"],["costs","medical"],["medical","tourism"],["tourism","patients"],["health","costs"],["canada","mexican"],["mexican","women"],["women","sometimes"],["sometimes","engage"],["birth","tourism"],["united","states"],["states","canada"],["children","us"],["canadian","citizenship"],["non","legal"],["legal","obstacles"],["obstacles","exist"],["exist","canada"],["countries","without"],["without","legal"],["legal","restrictions"],["abortion","regulations"],["accessibility","vary"],["united","states"],["states","different"],["different","states"],["states","different"],["different","abortion"],["abortion","tourism"],["tourism","either"],["canada","mexico"],["united","states"],["states","abortion"],["abortion","laws"],["laws","vary"],["mexican","women"],["women","may"],["may","sometimes"],["sometimes","engage"],["abortion","tourism"],["tourism","south"],["south","america"],["south","american"],["american","countries"],["countries","grant"],["grant","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["allow","dual"],["dual","citizenship"],["citizenship","butheir"],["butheir","strict"],["strict","abortion"],["abortion","laws"],["laws","make"],["risky","birth"],["birth","tourism"],["tourism","destinations"],["mental","health"],["brazil","abortion"],["mental","health"],["health","rape"],["chile","abortion"],["forbidden","completely"],["completely","even"],["pregnant","woman"],["non","citizen"],["citizen","parents"],["argentina","brazil"],["brazil","ecuador"],["ecuador","peru"],["uruguay","voting"],["bolivia","brazil"],["brazil","chile"],["chile","colombia"],["colombia","cuba"],["cuba","guatemala"],["venezuela","military"],["military","service"],["person","born"],["argentine","territory"],["territory","acquires"],["acquires","argentine"],["argentine","citizenship"],["citizenship","birth"],["foreign","government"],["foreign","diplomats"],["also","applied"],["people","born"],["falkland","islands"],["disputed","territory"],["united","kingdom"],["kingdom","argentine"],["argentine","citizens"],["argentine","citizenship"],["person","born"],["brazil","acquires"],["acquires","brazilian"],["brazilian","citizenship"],["citizenship","birth"],["isaid","brazilian"],["brazilian","citizens"],["brazilian","citizenship"],["requirement","made"],["acquired","another"],["another","citizenship"],["foreigners","may"],["able","tobtain"],["brazilian","citizenship"],["interesto","live"],["person","born"],["chile","acquires"],["acquires","chilean"],["chilean","citizenship"],["two","exceptions"],["exceptions","apply"],["foreign","government"],["government","like"],["like","foreign"],["foreign","diplomats"],["country","however"],["hong","kong"],["non","sovereign"],["sovereign","territory"],["territory","hong"],["hong","kong"],["status","akin"],["hong","kong"],["kong","right"],["hong","kong"],["kong","right"],["abode","also"],["also","known"],["hong","kong"],["kong","residents"],["residents","permanent"],["permanent","residence"],["residence","hong"],["hong","kong"],["kong","permanent"],["permanent","residents"],["residents","regardless"],["rights","normally"],["normally","associated"],["hong","kong"],["kong","special"],["special","administrative"],["administrative","region"],["region","passport"],["chief","executive"],["hong","kong"],["kong","chief"],["chief","executive"],["chinese","citizens"],["hong","kong"],["kong","according"],["basic","law"],["hong","kong"],["kong","chinese"],["chinese","citizens"],["citizens","born"],["hong","kong"],["kong","right"],["court","case"],["case","director"],["immigration","v"],["thathis","right"],["right","extends"],["birth","tourism"],["hong","kong"],["kong","children"],["mainland","chinese"],["chinese","parents"],["hong","kong"],["mainland","mothers"],["mothers","giving"],["giving","birth"],["hong","kong"],["order","tobtain"],["tobtain","right"],["babies","born"],["hong","kong"],["parents","originating"],["hong","kong"],["increased","potential"],["potential","stress"],["territory","social"],["social","welfare"],["welfare","net"],["education","system"],["system","attempts"],["restrict","benefits"],["hong","kong"],["kong","population"],["phenomenon","whichas"],["cultural","tensions"],["hong","kong"],["mainland","china"],["situation","came"],["boiling","point"],["early","hong"],["hong","kong"],["kong","protests"],["protests","early"],["birth","tourism"],["china","birth"],["birth","tourism"],["laws","malta"],["malta","changed"],["also","relaxed"],["relaxed","restrictions"],["joined","theuropean"],["theuropean","union"],["union","may"],["enormous","population"],["december","jusoli"],["india","since"],["overseas","citizenship"],["real","dual"],["dual","citizenship"],["citizenship","irish"],["irish","nationality"],["nationality","law"],["law","included"],["included","birth"],["birth","citizenship"],["th","amendment"],["media","reports"],["heavily","pregnant"],["pregnant","women"],["women","right"],["asylum","claiming"],["claiming","political"],["political","asylum"],["new","baby"],["last","european"],["european","country"],["grant","unconditional"],["unconditional","birthright"],["birthright","citizenship"],["citizenship","dominican"],["dominican","republic"],["constitutional","court"],["dominican","republic"],["children","born"],["dominican","citizenship"],["dominican","republic"],["transit","clause"],["clause","includes"],["individuals","residing"],["country","without"],["without","legal"],["legal","documentation"],["also","required"],["civil","registry"],["far","back"],["transit","clause"],["first","put"],["dominican","government"],["every","revision"],["dominican","constitution"],["far","back"],["birth","tourism"],["tourism","encouraged"],["jusoli","countries"],["countries","latin"],["latin","american"],["american","countries"],["unconditional","birthright"],["birthright","citizenship"],["immigrants","despite"],["despite","wide"],["wide","acceptance"],["dual","citizenship"],["birth","tourism"],["immigration","waves"],["waves","birth"],["pregnancy","tourism"],["non","jusoli"],["jusoli","countries"],["countries","file"],["px","thumb"],["thumb","legal"],["legal","regulation"],["birth","tourism"],["tourism","noto"],["noto","give"],["foreign","citizenship"],["cheaper","medical"],["medical","system"],["allows","procedures"],["procedures","forbidden"],["home","countries"],["vitro","fertilization"],["fertilization","special"],["special","tests"],["surrogacy","buthis"],["buthis","may"],["may","lead"],["legal","problems"],["home","country"],["future","parents"],["example","germany"],["germany","like"],["baby","born"],["born","abroad"],["foreign","surrogate"],["surrogate","mother"],["righto","german"],["german","citizenship"],["citizenship","according"],["german","law"],["gives","birth"],["legal","mother"],["mother","even"],["foreign","surrogate"],["surrogate","mother"],["legal","father"],["father","many"],["many","women"],["women","travel"],["travel","abroad"],["procedures","forbidden"],["home","countries"],["countries","buthen"],["buthen","give"],["give","birth"],["home","countries"],["countries","pregnancy"],["pregnancy","tourism"],["tourism","see"],["see","also"],["also","anchor"],["anchor","baby"],["baby","jusoli"],["jusoli","multiple"],["multiple","citizenship"],["citizenship","economic"],["economic","results"],["migration","category"],["category","immigration"],["immigration","category"],["category","nationality"],["nationality","law"],["law","category"],["category","types"]],"all_collocations":["file jusoli","px countries","jusoli birthright","birthright citizenship","citizenship birth","birth tourism","another country","giving birth","birth country","country anchor","anchor baby","main reason","birth tourism","tobtain citizenship","birthright citizenship","citizenship jusoli","include access","healthcare sponsorship","even circumvention","china two","two child","child policy","policy china","china two","two child","child policy","policy popular","popular destinations","destinations include","united states","birth tourism","hong kong","mainland chinese","chinese citizens","citizens travel","give birth","gain right","hong kong","kong right","discourage birth","birth tourism","tourism australia","australia france","france germany","germany ireland","ireland new","new zealand","zealand south","south africand","united kingdom","citizenship laws","citizenship birth","least one","one parent","legal permanent","permanent resident","several years","years germany","never granted","granted unconditional","unconditional birthright","birthright citizenship","traditionally used","least one","one citizen","citizen parent","parent germany","citizenship laws","laws however","however unlike","children born","germany non","non swiss","swiss citizen","citizen parents","parents born","abroad usually","dual citizenship","european country","country presently","presently grants","grants unconditional","unconditional birthright","birthright citizenship","citizenship however","united states","states canada","canada mexico","mexico argentinand","argentinand brazil","tanzania grant","grant unconditional","unconditional birthright","birthright citizenship","asian pacific","pacific region","region fiji","fiji pakistand","birth tourism","tourism today","today north","north america","united states","states canadand","canadand mexico","grant unconditional","unconditional birthright","birthright citizenship","allow dual","dual citizenship","united states","states taxes","green card","card holders","never lived","mexican citizenship","another country","country united","united states","united states","states constitution","united states","states nationality","nationality law","law us","us citizenship","united states","states provided","person isubjecto","united states","states congress","extended birthright","birthright citizenship","inhabited us","us territories","territories except","except american","american samoa","samoa people","people born","american samoa","samoa get","get us","us nationality","nationality without","without citizenship","citizenship birth","reach years","age american","american born","born children","birthright citizens","foreign families","families us","us citizenship","instant citizens","citizens national","national review","review may","birth tourism","united states","states politically","politically conservative","conservative lawyer","national review","women travel","give birth","single maternity","maternity hotel","hotel every","every monthe","monthe center","health care","care statistics","statistics estimates","estimates thathere","foreign residents","united states","recent year","small fraction","roughly million","million total","total births","immigration studies","think tank","favors immigration","immigration reduction","united states","states limits","immigration estimates","estimates thathere","approximately annual","annual births","united states","birth tourists","tourists however","however total","total births","temporary immigrants","united states","guest workers","workers could","one option","mainland chinese","chinese mothers","give birth","us visa","visa south","south china","china morning","morning post","post mainland","look west","hong kong","kong backlash","backlash february","birth tourist","take advantage","day visa","visa free","free visitation","visitation rules","ensure thatheir","thatheir children","children american","american citizenship","citizenship numerous","numerous maternity","maternity businesses","businesses advise","advise pregnant","pregnant mothers","even commit","commit visa","visa fraud","fraud lying","customs agents","agents aboutheir","aboutheir true","true purpose","phillip inside","birth tourism","maternity hotels","washington post","post march","give birth","birth several","several birth","birth tourism","tourism agencies","agencies aid","us hospital","hospital taking","taking advantage","discounts reserved","impoverished american","american born","chinese birth","birth tourism","world post","post may","hospital stay","north american","american chinese","chinese language","language daily","daily world","world journal","journal reported","several weeks","immigration authorities","los angeles","angeles international","international airport","airport lax","pregnant chinese","chinese women","women arriving","many cases","united states","within hours","hours often","world journal","journal october","march federal","federal agents","agents conducted","large scale","scale maternity","maternity tourism","tourism operations","operations bringing","bringing thousands","mainland chinese","chinese women","women intent","children american","american citizenship","citizenship congressional","birth tourism","tourism said","augusthe issue","discussed among","among us","us presidential","presidential candidates","candidates including","including donald","donald trump","worldwide taxation","us citizens","green card","card holders","holders file","file individual","individual taxation","righthumb px","px systems","taxation personal","personal income","united states","two countries","never lived","citizens living","living abroad","grant unconditional","unconditional birthright","birthright citizenship","least one","one parent","parent must","hold citizenship","another country","country must","must first","second receive","receive permission","hold citizenship","another country","baby born","citizen automatically","automatically subjecto","subjecto us","us taxation","taxation even","parents leave","us right","baby born","us citizens","citizens living","living abroad","abroad even","never enters","us green","green card","card holders","also subjecto","subjecto worldwide","worldwide taxation","worldwide taxation","taxation may","us citizenship","green card","card fee","us citizenship","us citizenship","highest fee","citizenship worldwide","worldwide canada","citizenship law","law hasince","hasince generally","generally conferred","conferred canadian","canadian citizenship","citizenship birth","anyone born","canada regardless","immigration status","children born","representatives oforeign","oforeign governments","international organizations","canadian government","considered limiting","limiting jusoli","jusoli citizenship","yet changed","canadian law","chinese parents","one child","child travel","give birth","one child","child policy","policy additionally","additionally acquiring","acquiring canadian","canadian citizenship","passport beforeturning","bec birth","student enrolled","pay university","athe lower","province rate","canadian dollar","dollar year","individuals born","mexican territory","territory regardless","parents nationality","immigration status","mexico individuals","individuals born","mexican merchant","navy ships","mexican registered","registered aircraft","aircraft regardless","parents nationality","still considered","considered mexican","mexican citizens","mexican citizenship","citizenship birth","medical tourism","united states","states canadand","canadand mexico","canada united","united states","states border","border canada","canada us","neighboring country","canadian women","women sometimes","sometimes give","give birth","children us","us hospitals","us women","canadian hospitals","children sometimes","sometimes called","called border","border babies","usually dual","dual citizens","bothe country","birth country","country canada","medical tourism","tourism field","us health","health costs","costs medical","medical tourism","tourism patients","health costs","canada mexican","mexican women","women sometimes","sometimes engage","birth tourism","united states","states canada","children us","canadian citizenship","non legal","legal obstacles","obstacles exist","exist canada","countries without","without legal","legal restrictions","abortion regulations","accessibility vary","united states","states different","different states","states different","different abortion","abortion tourism","tourism either","canada mexico","united states","states abortion","abortion laws","laws vary","mexican women","women may","may sometimes","sometimes engage","abortion tourism","tourism south","south america","south american","american countries","countries grant","grant unconditional","unconditional birthright","birthright citizenship","allow dual","dual citizenship","citizenship butheir","butheir strict","strict abortion","abortion laws","laws make","risky birth","birth tourism","tourism destinations","mental health","brazil abortion","mental health","health rape","chile abortion","forbidden completely","completely even","pregnant woman","non citizen","citizen parents","argentina brazil","brazil ecuador","ecuador peru","uruguay voting","bolivia brazil","brazil chile","chile colombia","colombia cuba","cuba guatemala","venezuela military","military service","person born","argentine territory","territory acquires","acquires argentine","argentine citizenship","citizenship birth","foreign government","foreign diplomats","also applied","people born","falkland islands","disputed territory","united kingdom","kingdom argentine","argentine citizens","argentine citizenship","person born","brazil acquires","acquires brazilian","brazilian citizenship","citizenship birth","isaid brazilian","brazilian citizens","brazilian citizenship","requirement made","acquired another","another citizenship","foreigners may","able tobtain","brazilian citizenship","interesto live","person born","chile acquires","acquires chilean","chilean citizenship","two exceptions","exceptions apply","foreign government","government like","like foreign","foreign diplomats","country however","hong kong","non sovereign","sovereign territory","territory hong","hong kong","status akin","hong kong","kong right","hong kong","kong right","abode also","also known","hong kong","kong residents","residents permanent","permanent residence","residence hong","hong kong","kong permanent","permanent residents","residents regardless","rights normally","normally associated","hong kong","kong special","special administrative","administrative region","region passport","chief executive","hong kong","kong chief","chief executive","chinese citizens","hong kong","kong according","basic law","hong kong","kong chinese","chinese citizens","citizens born","hong kong","kong right","court case","case director","immigration v","thathis right","right extends","birth tourism","hong kong","kong children","mainland chinese","chinese parents","hong kong","mainland mothers","mothers giving","giving birth","hong kong","order tobtain","tobtain right","babies born","hong kong","parents originating","hong kong","increased potential","potential stress","territory social","social welfare","welfare net","education system","system attempts","restrict benefits","hong kong","kong population","phenomenon whichas","cultural tensions","hong kong","mainland china","situation came","boiling point","early hong","hong kong","kong protests","protests early","birth tourism","china birth","birth tourism","laws malta","malta changed","also relaxed","relaxed restrictions","joined theuropean","theuropean union","union may","enormous population","december jusoli","india since","overseas citizenship","real dual","dual citizenship","citizenship irish","irish nationality","nationality law","law included","included birth","birth citizenship","th amendment","media reports","heavily pregnant","pregnant women","women right","asylum claiming","claiming political","political asylum","new baby","last european","european country","grant unconditional","unconditional birthright","birthright citizenship","citizenship dominican","dominican republic","constitutional court","dominican republic","children born","dominican citizenship","dominican republic","transit clause","clause includes","individuals residing","country without","without legal","legal documentation","also required","civil registry","far back","transit clause","first put","dominican government","every revision","dominican constitution","far back","birth tourism","tourism encouraged","jusoli countries","countries latin","latin american","american countries","unconditional birthright","birthright citizenship","immigrants despite","despite wide","wide acceptance","dual citizenship","birth tourism","immigration waves","waves birth","pregnancy tourism","non jusoli","jusoli countries","countries file","px thumb","thumb legal","legal regulation","birth tourism","tourism noto","noto give","foreign citizenship","cheaper medical","medical system","allows procedures","procedures forbidden","home countries","vitro fertilization","fertilization special","special tests","surrogacy buthis","buthis may","may lead","legal problems","home country","future parents","example germany","germany like","baby born","born abroad","foreign surrogate","surrogate mother","righto german","german citizenship","citizenship according","german law","gives birth","legal mother","mother even","foreign surrogate","surrogate mother","legal father","father many","many women","women travel","travel abroad","procedures forbidden","home countries","countries buthen","buthen give","give birth","home countries","countries pregnancy","pregnancy tourism","tourism see","see also","also anchor","anchor baby","baby jusoli","jusoli multiple","multiple citizenship","citizenship economic","economic results","migration category","category immigration","immigration category","category nationality","nationality law","law category","category types"],"new_description":"file jusoli thumb px countries jusoli birthright_citizenship birth_tourism travel another_country purpose giving birth country anchor baby term negative main reason birth_tourism tobtain citizenship child country birthright_citizenship jusoli include access public_healthcare sponsorship parents future even circumvention china two child policy china two child policy popular_destinations include united_states target birth_tourism hong_kong mainland chinese citizens travel give birth gain right abode hong_kong right abode children discourage birth_tourism australia france germany ireland new_zealand south_africand united_kingdom modified citizenship laws citizenship birth least_one parent citizen country legal permanent resident lived country several_years germany never granted unconditional birthright_citizenship traditionally used giving requirement least_one citizen parent germany rather law citizenship laws however unlike children born grown germany non non swiss citizen parents born grown abroad usually cannot dual citizenship european country presently grants unconditional birthright_citizenship however countries americas united_states canada mexico argentinand brazil africa tanzania grant unconditional birthright_citizenship asian pacific region fiji pakistand birth_tourism today north_america united_states canadand mexico grant unconditional birthright_citizenship allow dual citizenship united_states taxes citizens green card holders never lived country citizens lose mexican citizenship another_country_united states amendmento united_states constitution united_states nationality law us citizenship born united_states provided person isubjecto jurisdiction united_states congress extended birthright_citizenship inhabited us territories except american samoa people born american samoa get us_nationality without citizenship birth reach years age american born children birthright citizens able sponsor foreign families us citizenship instant citizens national review may statistics countries citizens participate birth_tourism united_states politically conservative lawyer author wrote article national review average women travel russia florida give birth single maternity hotel every monthe center health_care statistics estimates thathere births foreign residents united_states recent year statistics available small fraction roughly million total births year center immigration studies think_tank favors immigration reduction united_states limits immigration estimates thathere approximately annual births parents united_states birth tourists however total births temporary immigrants united_states guest workers could high one option mainland chinese mothers give birth islands cost cheaper travel require us visa south china morning post mainland look west hong_kong backlash february birth tourist parents take_advantage day visa free visitation rules territory northern islands ensure_thatheir children american citizenship numerous maternity businesses advise pregnant mothers hide officials even commit visa fraud lying customs agents aboutheir true purpose us phillip inside world birth_tourism maternity hotels washington_post march give birth several birth_tourism_agencies aid mothers us hospital taking advantage discounts reserved impoverished american born usa chinese birth_tourism booming california world post may mothers refuse pay bill medical hospital stay october north_american chinese_language daily world journal reported several weeks immigration authorities los_angeles international_airport lax closely pregnant chinese women arriving chinand many_cases entry united_states within hours often airplane flown united world journal october march federal agents conducted series large_scale maternity tourism operations bringing thousands mainland chinese women intent giving children american citizenship congressional phil tried put end birth_tourism said people gaming system augusthe issue discussed among us presidential candidates including donald trump worldwide taxation us citizens green card holders file individual taxation righthumb_px systems taxation personal income united_states currently two countries world tax citizens never lived country born citizens living abroad grant unconditional birthright_citizenship least_one parent must citizen child granted hold citizenship another_country must first citizens birth second receive permission hold citizenship another_country baby born us citizen automatically subjecto us taxation even parents baby multiple baby parents leave us right birth true baby born us citizens living abroad even never enters us green card holders also subjecto worldwide taxation people worldwide taxation may reason giving us citizenship green card fee us citizenship fee us citizenship raised went us highest fee citizenship worldwide canada citizenship law hasince generally conferred canadian citizenship birth anyone born canada regardless citizenship immigration status parents exception children born canada representatives oforeign governments international organizations canadian government considered limiting jusoli citizenship continues debate issue yet changed part canadian law chinese parents already one child travel canada give birth order china one child policy additionally acquiring canadian citizenship child applying passport beforeturning china bec birth student enrolled province pay university athe lower province rate average canadian dollar year mexicans citizens birth individuals born mexican territory regardless parents nationality immigration status mexico individuals born mexican merchant navy ships mexican registered aircraft regardless parents nationality still considered mexican citizens mexicans lose mexican citizenship birth abortion medical_tourism united_states canadand mexico canada united_states border canada us way hospital neighboring country hospital patient country canadian women sometimes give birth children us hospitals us women canadian hospitals children sometimes_called border babies usually dual citizens bothe country parents birth country canada entered medical_tourism field comparison us health costs medical_tourism patients save percent health costs canada mexican women sometimes engage birth_tourism united_states canada give children us canadian citizenship non legal obstacles exist canada one countries without legal restrictions abortion regulations accessibility vary provinces united_states different states different abortion women states restrictive engage abortion tourism either ustates canada mexico united_states abortion laws vary mexican women may sometimes engage abortion tourism south_america south_american countries grant unconditional birthright_citizenship allow dual citizenship butheir strict abortion laws make risky birth_tourism_destinations case complications pregnancy restricted cases mental health brazil abortion restricted cases mental health rape chile abortion forbidden completely even pregnant woman life danger countries allow citizens renounce citizenship citizenship acquired non citizen parents argentina brazil ecuador peru uruguay voting compulsory citizens bolivia brazil chile colombia cuba guatemala venezuela military service mandatory person born argentine territory acquires argentine citizenship birth children persons service foreign government foreign diplomats also applied people born falkland islands disputed territory argentinand united_kingdom argentine citizens cannot renounce argentine citizenship person born brazil acquires brazilian citizenship birth isaid brazilian citizens cannot renounce brazilian citizenship possible renounce requirement made brazilian already acquired another citizenship foreigners may able tobtain brazilian citizenship interesto live brazil person born chile acquires chilean citizenship two exceptions apply children persons service foreign government like foreign diplomats children reside country however children apply acquire hong_kong non sovereign territory hong_kong citizenship status akin citizenship hong_kong right abode hong_kong right abode also_known hong_kong residents permanent residence hong_kong permanent residents regardless citizenship rights normally associated citizenship righto hong_kong special administrative region passport passport chief_executive hong_kong chief_executive available chinese citizens right abode hong_kong according basic law hong_kong chinese citizens born hong_kong right abode territory court case director immigration v thathis right extends birth_tourism hong_kong children mainland chinese parents residents hong_kong influx mainland mothers giving birth hong_kong order tobtain right abode child babies born hong_kong born parents originating china resulted backlash circles hong_kong increased potential stress territory social welfare net education system attempts restrict benefits births struck territory courts portion hong_kong population negatively phenomenon whichas social cultural tensions hong_kong mainland china situation came boiling point early hong_kong protests early taking streeto influx birth_tourism china birth_tourism changes laws malta changed principle citizenship august move also relaxed restrictions multiple joined theuropean_union may enormous population jusoli december jusoli already progressively india since form overseas citizenship real dual citizenship irish nationality law included birth citizenship th amendment passed amendment preceded media reports heavily pregnant women right asylum claiming political asylum expected even application rejected would allowed remain country new baby citizen ireland last european country grant unconditional birthright_citizenship dominican republic constitutional court dominican republic children born republic individuals transit dominican citizenship per dominican republic constitution transit clause includes individuals residing country without legal documentation also required civil registry going far back transit clause first put place constitution dominican government consider clause present every revision dominican constitution far back birth_tourism encouraged jusoli countries past former countries latin_american countries policy unconditional birthright_citizenship become attractive immigrants despite wide acceptance dual citizenship countries try birth_tourism immigration waves birth pregnancy tourism non jusoli countries file n px_thumb legal regulation surrogacy world birth_tourism noto give children foreign citizenship country better cheaper medical system allows procedures forbidden women home_countries vitro fertilization special tests embryos surrogacy buthis may lead legal problems babies home_country future parents example germany like countries baby born abroad foreign surrogate mother righto german citizenship according german law woman gives birth baby legal mother even baby foreign surrogate mother married husband regarded legal father many women travel abroad procedures forbidden home_countries buthen give birth children home_countries pregnancy tourism see_also anchor baby jusoli multiple citizenship economic results migration category immigration category_nationality law category category_types tourism"},{"title":"Bistro","description":"file jean b raud au bistrojpg thumb athe bistro jean b raud a bistror bistrot is in its original paris ian incarnation a small restaurant serving moderately priced simple meals in a modest setting bistros are defined mostly by the foods they serve frenchome style cooking and slow cooked foods like cassoulet a bean stew are typical bistros likely developed out of the basement kitchens of parisian apartment s where tenants paid for both room and board landlords could supplementheir income by opening their kitchen to the paying public menus were built around foods that were simple could be prepared in quantity and would keep over time wine and coffee were also served file bistro jpg thumbnail plaque abouthe legend of the origin of the word bistro at place du tertre paris file bistro en allemagnejpg thumb px french styled bistro in germany m nster the worderived from the russian language russian bystro quickly it entered the french language during the battle of paris russian officers or cossacks who wanted to be served quickly would shout bystro reported for example in ian kelly cooking for kings the life of antonin car me the first celebrity chef see also brasserie a slightly more formal french restauranthat may brew its own beer parisian caf centers ofrench social and culinary life sidewalk cafexternalinks merriam webster definition paris bistros the democratization of excellence category types of restaurants category french cuisine","main_words":["file","jean","b","thumb","athe","bistro","jean","b","original","paris","ian","small","restaurant","serving","moderately","priced","simple","meals","modest","setting","bistros","defined","mostly","foods","serve","style","cooking","slow","like","bean","typical","bistros","likely","developed","basement","kitchens","parisian","apartment","tenants","paid","room","board","landlords","could","income","opening","kitchen","paying","public","menus","built","around","foods","simple","could","prepared","quantity","would","keep","time","wine","coffee","also_served","file","bistro","jpg","thumbnail","plaque","abouthe","legend","origin","word","bistro","place","paris","file","bistro","thumb","px","french","styled","bistro","germany","nster","russian","language","russian","quickly","entered","french_language","battle","paris","russian","officers","wanted","served","quickly","would","reported","example","ian","kelly","cooking","kings","life","car","first","celebrity","chef","see_also","brasserie","slightly","formal","french","restauranthat","may","brew","beer","parisian","caf","centers","ofrench","social","culinary","life","sidewalk","merriam_webster","definition","paris","bistros","excellence","category_types","cuisine"],"clean_bigrams":[["file","jean"],["jean","b"],["thumb","athe"],["athe","bistro"],["bistro","jean"],["jean","b"],["original","paris"],["paris","ian"],["small","restaurant"],["restaurant","serving"],["serving","moderately"],["moderately","priced"],["priced","simple"],["simple","meals"],["modest","setting"],["setting","bistros"],["defined","mostly"],["style","cooking"],["slow","cooked"],["cooked","foods"],["foods","like"],["typical","bistros"],["bistros","likely"],["likely","developed"],["basement","kitchens"],["parisian","apartment"],["tenants","paid"],["board","landlords"],["landlords","could"],["paying","public"],["public","menus"],["built","around"],["around","foods"],["simple","could"],["would","keep"],["time","wine"],["also","served"],["served","file"],["file","bistro"],["bistro","jpg"],["jpg","thumbnail"],["thumbnail","plaque"],["plaque","abouthe"],["abouthe","legend"],["word","bistro"],["paris","file"],["file","bistro"],["thumb","px"],["px","french"],["french","styled"],["styled","bistro"],["russian","language"],["language","russian"],["french","language"],["paris","russian"],["russian","officers"],["served","quickly"],["quickly","would"],["ian","kelly"],["kelly","cooking"],["first","celebrity"],["celebrity","chef"],["chef","see"],["see","also"],["also","brasserie"],["formal","french"],["french","restauranthat"],["restauranthat","may"],["may","brew"],["beer","parisian"],["parisian","caf"],["caf","centers"],["centers","ofrench"],["ofrench","social"],["culinary","life"],["life","sidewalk"],["merriam","webster"],["webster","definition"],["definition","paris"],["paris","bistros"],["excellence","category"],["category","types"],["restaurants","category"],["category","french"],["french","cuisine"]],"all_collocations":["file jean","jean b","thumb athe","athe bistro","bistro jean","jean b","original paris","paris ian","small restaurant","restaurant serving","serving moderately","moderately priced","priced simple","simple meals","modest setting","setting bistros","defined mostly","style cooking","slow cooked","cooked foods","foods like","typical bistros","bistros likely","likely developed","basement kitchens","parisian apartment","tenants paid","board landlords","landlords could","paying public","public menus","built around","around foods","simple could","would keep","time wine","also served","served file","file bistro","bistro jpg","thumbnail plaque","plaque abouthe","abouthe legend","word bistro","paris file","file bistro","px french","french styled","styled bistro","russian language","language russian","french language","paris russian","russian officers","served quickly","quickly would","ian kelly","kelly cooking","first celebrity","celebrity chef","chef see","see also","also brasserie","formal french","french restauranthat","restauranthat may","may brew","beer parisian","parisian caf","caf centers","centers ofrench","ofrench social","culinary life","life sidewalk","merriam webster","webster definition","definition paris","paris bistros","excellence category","category types","restaurants category","category french","french cuisine"],"new_description":"file jean b thumb athe bistro jean b original paris ian small restaurant serving moderately priced simple meals modest setting bistros defined mostly foods serve style cooking slow cooked_foods like bean typical bistros likely developed basement kitchens parisian apartment tenants paid room board landlords could income opening kitchen paying public menus built around foods simple could prepared quantity would keep time wine coffee also_served file bistro jpg thumbnail plaque abouthe legend origin word bistro place paris file bistro thumb px french styled bistro germany nster russian language russian quickly entered french_language battle paris russian officers wanted served quickly would reported example ian kelly cooking kings life car first celebrity chef see_also brasserie slightly formal french restauranthat may brew beer parisian caf centers ofrench social culinary life sidewalk merriam_webster definition paris bistros excellence category_types restaurants_category_french cuisine"},{"title":"Black Sky: The Race For Space","description":"black sky the race for space is a discovery channel documentary about space ship one and how a small team backed by paul allen achieved human suborbital spaceflight and win the ansari x prize it containsights about how the rocketplane was builthe challenge they faced when they flew ithe vision of burt rutan abouthe future of this technology tier two and three and his thoughts about nasand government it won a peabody award in th annual peabody awards may see also mojave magic a turtle s eye view of spaceshipone a similar documentary orphans of apollo the tentative to privatize the station mir externalinks category documentary films about space category space tourism category documentary films abouthe space program of the united states category commercial spaceflight category mojave air and space port category peabody award winning broadcasts","main_words":["black","sky","race","space","discovery","channel","documentary","space","ship","one","small","team","backed","paul","allen","achieved","human","suborbital_spaceflight","win","ansari_x_prize","rocketplane","builthe","challenge","faced","flew","ithe","vision","burt_rutan","abouthe","future","technology","tier","two","three","thoughts","nasand","government","peabody","award","th_annual","peabody","awards","may","see_also","mojave","magic","turtle","eye","view","spaceshipone","similar","documentary","orphans","apollo","tentative","station","mir","externalinks_category","documentary_films","space","category_space_tourism","category_documentary_films","abouthe","space_program","united_states","category_commercial_spaceflight","category","mojave","air_space","port","category","peabody","award_winning","broadcasts"],"clean_bigrams":[["black","sky"],["discovery","channel"],["channel","documentary"],["space","ship"],["ship","one"],["small","team"],["team","backed"],["paul","allen"],["allen","achieved"],["achieved","human"],["human","suborbital"],["suborbital","spaceflight"],["ansari","x"],["x","prize"],["builthe","challenge"],["flew","ithe"],["ithe","vision"],["burt","rutan"],["rutan","abouthe"],["abouthe","future"],["technology","tier"],["tier","two"],["nasand","government"],["peabody","award"],["th","annual"],["annual","peabody"],["peabody","awards"],["awards","may"],["may","see"],["see","also"],["also","mojave"],["mojave","magic"],["eye","view"],["similar","documentary"],["documentary","orphans"],["station","mir"],["mir","externalinks"],["externalinks","category"],["category","documentary"],["documentary","films"],["space","category"],["category","space"],["space","tourism"],["tourism","category"],["category","documentary"],["documentary","films"],["films","abouthe"],["abouthe","space"],["space","program"],["united","states"],["states","category"],["category","commercial"],["commercial","spaceflight"],["spaceflight","category"],["category","mojave"],["mojave","air"],["space","port"],["port","category"],["category","peabody"],["peabody","award"],["award","winning"],["winning","broadcasts"]],"all_collocations":["black sky","discovery channel","channel documentary","space ship","ship one","small team","team backed","paul allen","allen achieved","achieved human","human suborbital","suborbital spaceflight","ansari x","x prize","builthe challenge","flew ithe","ithe vision","burt rutan","rutan abouthe","abouthe future","technology tier","tier two","nasand government","peabody award","th annual","annual peabody","peabody awards","awards may","may see","see also","also mojave","mojave magic","eye view","similar documentary","documentary orphans","station mir","mir externalinks","externalinks category","category documentary","documentary films","space category","category space","space tourism","tourism category","category documentary","documentary films","films abouthe","abouthe space","space program","united states","states category","category commercial","commercial spaceflight","spaceflight category","category mojave","mojave air","space port","port category","category peabody","peabody award","award winning","winning broadcasts"],"new_description":"black sky race space discovery channel documentary space ship one small team backed paul allen achieved human suborbital_spaceflight win ansari_x_prize rocketplane builthe challenge faced flew ithe vision burt_rutan abouthe future technology tier two three thoughts nasand government peabody award th_annual peabody awards may see_also mojave magic turtle eye view spaceshipone similar documentary orphans apollo tentative station mir externalinks_category documentary_films space category_space_tourism category_documentary_films abouthe space_program united_states category_commercial_spaceflight category mojave air_space port category peabody award_winning broadcasts"},{"title":"Black's Guides","description":"image blacks picturesque guide to yorkshirepng thumb right black s guide to yorkshire black s guides were travel guide book s published by the a c black adam and charles black firm of edinburgh later london beginning in the seriestyle tended towards the colloquial with fewer cultural pretensions than its leading competitor baedeker guides contributors includedavid t ansted charles bertram black and ar hope moncrieff list of black s guides by geographicoverage great britain s index s index s index s category travel guide books category series of books category publications established in category a c black books category tourism in europe","main_words":["image","blacks","picturesque","guide","thumb","right","black","guide","yorkshire","black","guides","travel_guide_book","published","c","black","adam","charles","black","firm","edinburgh","later","london","beginning","tended","towards","colloquial","fewer","cultural","leading","competitor","baedeker_guides","contributors","charles","black","hope","list","black","guides","geographicoverage","great_britain","index_index","index","category_travel_guide_books","category_series","books_category","publications_established","category","c","black","books_category_tourism","europe"],"clean_bigrams":[["image","blacks"],["blacks","picturesque"],["picturesque","guide"],["thumb","right"],["right","black"],["yorkshire","black"],["travel","guide"],["guide","book"],["c","black"],["black","adam"],["charles","black"],["black","firm"],["edinburgh","later"],["later","london"],["london","beginning"],["tended","towards"],["fewer","cultural"],["leading","competitor"],["competitor","baedeker"],["baedeker","guides"],["guides","contributors"],["charles","black"],["geographicoverage","great"],["great","britain"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["c","black"],["black","books"],["books","category"],["category","tourism"]],"all_collocations":["image blacks","blacks picturesque","picturesque guide","right black","yorkshire black","travel guide","guide book","c black","black adam","charles black","black firm","edinburgh later","later london","london beginning","tended towards","fewer cultural","leading competitor","competitor baedeker","baedeker guides","guides contributors","charles black","geographicoverage great","great britain","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","c black","black books","books category","category tourism"],"new_description":"image blacks picturesque guide thumb right black guide yorkshire black guides travel_guide_book published c black adam charles black firm edinburgh later london beginning tended towards colloquial fewer cultural leading competitor baedeker_guides contributors charles black hope list black guides geographicoverage great_britain index_index index category_travel_guide_books category_series books_category publications_established category c black books_category_tourism europe"},{"title":"Blindfolded tourism","description":"a blind tour also blindfolded tourism sightseeing or cecitourism frank bures july joel henry dean of experimental travel world hum is a contemporary concept in tourism reasons whyou should try blindfolded tourism diy explorer november a form of experimental travel it is a tour guided tour in which the tourist is blindfold ed for thentire duration of the tour while being talked through the visited areas opposed to traditional sightseeing a blind tour is a very different experience owing to the absence of one vital sense sighthereby stimulating the otherelevant senses namely hearing feel and smell the concept has been related to that of the dark restaurant where there is no light for diners to see whathey eatrobin esrock february portugal blindfolded sightseeing in lisbonew zealand herald a blindfold tour to savour the smells of the city of london was proposed as far back asheila thomas october you ll follow your nose inew tours proposed for london the montreal gazette morecently blindfolded tours have been offered in a range of mainly urban locations including tours of prague castle blindfolded tours of a castleasyprague accessed october tirana in albania the blind tourism projectrendhunter vancouver marsha lederman january why i walked blindfolded for two hours through the streets of vancouver the globe and mail and the alfama quarter of lisbon the german artist christian jankowski has undertaken two blind tours one in dubai collaboration four blindfold sightseeing bbc news magazine july and one in montevideo where he led a group of blindfolded journalists christian jankowski proyectos monclovaccessed october the activity has been featured in a list of craziesthings to do before you die craziesthings to do before you die blindfolded sightseeing list accessed october in some cases a blind tour may involve offering the tourist a videof their tour following completion of the tour see also sensory deprivation category adventure travel category tour guides","main_words":["blind","tour","also","blindfolded","tourism","sightseeing","frank","july","henry","dean","experimental","travel","world","contemporary","concept","tourism","reasons","try","blindfolded","tourism","diy","explorer","november","form","experimental","travel","tour","tourist","ed","thentire","duration","tour","talked","visited","areas","opposed","traditional","sightseeing","blind","tour","different","experience","owing","absence","one","vital","sense","stimulating","senses","namely","hearing","feel","smell","concept","related","dark","restaurant","light","diners","see","whathey","february","portugal","blindfolded","sightseeing","zealand","herald","tour","city","london","proposed","far","back","thomas","october","follow","nose","inew","tours","proposed","london","montreal","gazette","morecently","blindfolded","tours","offered","range","mainly","urban","locations","including","tours","prague","castle","blindfolded","tours","accessed_october","albania","blind","tourism","vancouver","january","walked","blindfolded","two","hours","streets","vancouver","globe","mail","quarter","lisbon","german","artist","christian","undertaken","two","blind","tours","one","dubai","collaboration","four","sightseeing","bbc_news","magazine","july","one","montevideo","led","group","blindfolded","journalists","christian","october","activity","featured","list","die","die","blindfolded","sightseeing","list","accessed_october","cases","blind","tour","may","involve","offering","tourist","videof","tour","following","completion","tour","see_also","sensory","deprivation","guides"],"clean_bigrams":[["blind","tour"],["tour","also"],["also","blindfolded"],["blindfolded","tourism"],["tourism","sightseeing"],["henry","dean"],["experimental","travel"],["travel","world"],["contemporary","concept"],["tourism","reasons"],["try","blindfolded"],["blindfolded","tourism"],["tourism","diy"],["diy","explorer"],["explorer","november"],["experimental","travel"],["tour","guided"],["guided","tour"],["thentire","duration"],["visited","areas"],["areas","opposed"],["traditional","sightseeing"],["blind","tour"],["different","experience"],["experience","owing"],["one","vital"],["vital","sense"],["senses","namely"],["namely","hearing"],["hearing","feel"],["dark","restaurant"],["see","whathey"],["february","portugal"],["portugal","blindfolded"],["blindfolded","sightseeing"],["zealand","herald"],["far","back"],["thomas","october"],["nose","inew"],["inew","tours"],["tours","proposed"],["montreal","gazette"],["gazette","morecently"],["morecently","blindfolded"],["blindfolded","tours"],["mainly","urban"],["urban","locations"],["locations","including"],["including","tours"],["prague","castle"],["castle","blindfolded"],["blindfolded","tours"],["accessed","october"],["blind","tourism"],["walked","blindfolded"],["two","hours"],["german","artist"],["artist","christian"],["undertaken","two"],["two","blind"],["blind","tours"],["tours","one"],["dubai","collaboration"],["collaboration","four"],["sightseeing","bbc"],["bbc","news"],["news","magazine"],["magazine","july"],["blindfolded","journalists"],["journalists","christian"],["die","blindfolded"],["blindfolded","sightseeing"],["sightseeing","list"],["list","accessed"],["accessed","october"],["blind","tour"],["tour","may"],["may","involve"],["involve","offering"],["tour","following"],["following","completion"],["tour","see"],["see","also"],["also","sensory"],["sensory","deprivation"],["deprivation","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","tour"],["tour","guides"]],"all_collocations":["blind tour","tour also","also blindfolded","blindfolded tourism","tourism sightseeing","henry dean","experimental travel","travel world","contemporary concept","tourism reasons","try blindfolded","blindfolded tourism","tourism diy","diy explorer","explorer november","experimental travel","tour guided","guided tour","thentire duration","visited areas","areas opposed","traditional sightseeing","blind tour","different experience","experience owing","one vital","vital sense","senses namely","namely hearing","hearing feel","dark restaurant","see whathey","february portugal","portugal blindfolded","blindfolded sightseeing","zealand herald","far back","thomas october","nose inew","inew tours","tours proposed","montreal gazette","gazette morecently","morecently blindfolded","blindfolded tours","mainly urban","urban locations","locations including","including tours","prague castle","castle blindfolded","blindfolded tours","accessed october","blind tourism","walked blindfolded","two hours","german artist","artist christian","undertaken two","two blind","blind tours","tours one","dubai collaboration","collaboration four","sightseeing bbc","bbc news","news magazine","magazine july","blindfolded journalists","journalists christian","die blindfolded","blindfolded sightseeing","sightseeing list","list accessed","accessed october","blind tour","tour may","may involve","involve offering","tour following","following completion","tour see","see also","also sensory","sensory deprivation","deprivation category","category adventure","adventure travel","travel category","category tour","tour guides"],"new_description":"blind tour also blindfolded tourism sightseeing frank july henry dean experimental travel world contemporary concept tourism reasons try blindfolded tourism diy explorer november form experimental travel tour_guided tour tourist ed thentire duration tour talked visited areas opposed traditional sightseeing blind tour different experience owing absence one vital sense stimulating senses namely hearing feel smell concept related dark restaurant light diners see whathey february portugal blindfolded sightseeing zealand herald tour city london proposed far back thomas october follow nose inew tours proposed london montreal gazette morecently blindfolded tours offered range mainly urban locations including tours prague castle blindfolded tours accessed_october albania blind tourism vancouver january walked blindfolded two hours streets vancouver globe mail quarter lisbon german artist christian undertaken two blind tours one dubai collaboration four sightseeing bbc_news magazine july one montevideo led group blindfolded journalists christian october activity featured list die die blindfolded sightseeing list accessed_october cases blind tour may involve offering tourist videof tour following completion tour see_also sensory deprivation category_adventure_travel_category_tour guides"},{"title":"Blue (tourism magazine)","description":"blue was an adventure travel magazine founded in by amy schrier with david carson graphic designer david carson as the original design consultant its focus was on global adventure travel it was published inew york city and is now out of print its last issue was february march the cover of its first issue was included in a list of the top magazine covers of the last years by the american society of magazineditors in life magazine life magazine listed it in the best magazine photos of the year the new york times characterized it as not your father s national geographic externalinks official website category establishments inew york category magazinestablished in category magazines disestablished in category defunct magazines of the united states category tourismagazines category american bi monthly magazines category disestablishments inew york category magazines published inew york city","main_words":["blue","adventure_travel","magazine","founded","amy","david","graphic","designer","david","original","design","consultant","focus","global","adventure_travel","print","last","issue","february","march","cover","first_issue","included","list","top","magazine","covers","last_years","american","society","magazineditors","life_magazine","life_magazine","listed","best","magazine","photos","year","new_york","times","characterized","father","national_geographic","externalinks_official_website_category_establishments","inew_york","category_magazinestablished","category_magazines","disestablished","category_defunct","magazines","united_states","category_tourismagazines","category_american","monthly_magazines_category","disestablishments","inew_york","category_magazines_published","inew_york_city"],"clean_bigrams":[["adventure","travel"],["travel","magazine"],["magazine","founded"],["graphic","designer"],["designer","david"],["original","design"],["design","consultant"],["global","adventure"],["adventure","travel"],["published","inew"],["inew","york"],["york","city"],["last","issue"],["february","march"],["first","issue"],["top","magazine"],["magazine","covers"],["last","years"],["american","society"],["life","magazine"],["magazine","life"],["life","magazine"],["magazine","listed"],["best","magazine"],["magazine","photos"],["new","york"],["york","times"],["times","characterized"],["national","geographic"],["geographic","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["establishments","inew"],["inew","york"],["york","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","tourismagazines"],["tourismagazines","category"],["category","american"],["monthly","magazines"],["magazines","category"],["category","disestablishments"],["disestablishments","inew"],["inew","york"],["york","category"],["category","magazines"],["magazines","published"],["published","inew"],["inew","york"],["york","city"]],"all_collocations":["adventure travel","travel magazine","magazine founded","graphic designer","designer david","original design","design consultant","global adventure","adventure travel","published inew","inew york","york city","last issue","february march","first issue","top magazine","magazine covers","last years","american society","life magazine","magazine life","life magazine","magazine listed","best magazine","magazine photos","new york","york times","times characterized","national geographic","geographic externalinks","externalinks official","official website","website category","category establishments","establishments inew","inew york","york category","category magazinestablished","category magazines","magazines disestablished","category defunct","defunct magazines","united states","states category","category tourismagazines","tourismagazines category","category american","monthly magazines","magazines category","category disestablishments","disestablishments inew","inew york","york category","category magazines","magazines published","published inew","inew york","york city"],"new_description":"blue adventure_travel magazine founded amy david graphic designer david original design consultant focus global adventure_travel published_inew_york_city print last issue february march cover first_issue included list top magazine covers last_years american society magazineditors life_magazine life_magazine listed best magazine photos year new_york times characterized father national_geographic externalinks_official_website_category_establishments inew_york category_magazinestablished category_magazines disestablished category_defunct magazines united_states category_tourismagazines category_american monthly_magazines_category disestablishments inew_york category_magazines_published inew_york_city"},{"title":"Blue Guides","description":"image blue guide book july jpg thumb px blue guide book july the blue guides are a series of highly detailed and authoritative guide book travel guidebooks focused on art architecture and wherelevant archaeology along withe history and context necessary to understand them a modicum of practical travel information with recommended restaurants and hotels is also generally included the first blue guide london and its environs was published in by the scottish brothers james fullarton muirhead james and findlay muirhead the muirheads had for manyears been thenglish languageditors of the famous german baedeker guides baedeker series when they also acquired the rights to john murray iii s famous travel murray s handbooks for travellers handbooks they established the blue guides as heir to the greath century guide book tradition in karl baedeker published his first guidebook rheinreise von mainz bis c ln and in john murray iii s first handbook was released handbook for travellers on the continenthe first baedeker in english the rhine was published jointly by baedeker and murray these handbooks were to become the standard for english travellers for the remainder of the th century james fullarton muirhead james muirhead began working for baedeker in preparing a handbook for travellers to london findlay muirhead graduate of edinburgh university left histudies at leipzig in to join his brother at baedeker for almosthe next years the brothers weresponsible for all english language baedekers including compilinguides to britain the us and canada following the outbreak of world war i the muirhead brothers found themselves out of a job they acquired the rights to murray s handbooks in from the cartographical publisher edward stanford who had boughthem years earlier from john murray publisher john murray iv in the same year they established their company muirhead s guide books limited the blue guides and the guides bleu agreement with french publisher hachette publisher hachette allowed co publication in english and french of guidebooks under the names blue guides and guides bleus respectively hachette s existinguides joannes had blue covers while baedeker s guides had red covers the first blue guide blue guide london and its environs was published in two years later hachette published guide bleu londres et ses environs the hachette relationship withe blue guides ended in the blue guides were acquired by ernest benn limited in litellus russell muirhead findlay son became the series editor in he retired in remaining a consulting editor until when the muirhead family s connection withe series ended in stuart rossiter was appointeditor and in the first of rossiter scrupulously edited guides compiled for the independent educated traveller wanting to avoid the monotony of international uniformity blue guide greece was compiled by rossiter himself and published blue guide rome and environs by alta macadam was released in her italy titles thereafter become some of the best selling blue guides and included sicily northern italy florence venice tuscany and umbriall frequently updated and re issued other key blue guide authors are and have been ian robertson writer ian robertson spain portugal ireland austria switzerland cyprus france paris and versailles john tomes writer john tomescotland wales ian ousby england paul blanchard travel guide writer paul blanchard italy to present in w norton company ww norton of new york became the united states co publisher selling all blue guides in that country two years later the blue guides were acquired by a c black publishers limited themselves later acquired by bloomsbury publishing plc publishers of the harry potter books among others in somerset books a smallondon based family owned travel publisher known for its visible cities guides acquired the blue guides a year later published its first original title blue guide northern italy history of the blue guides from the official website furthereading externalinks blue guides official website list of all blue guides published since category travel guide books category book publishing companies of the united kingdom category book publishing companies based inew york category series of books category publishing companiestablished in fr guides bleus","main_words":["image","july","jpg","thumb","px","july","blue_guides","series","highly","detailed","authoritative","guide_book","travel_guidebooks","focused","art","architecture","archaeology","along_withe","history","context","necessary","understand","practical","travel_information","recommended","restaurants_hotels","also","generally","included","first","blue_guide","published","scottish","brothers","james","muirhead","james","findlay","muirhead","manyears","thenglish","famous","german","baedeker_guides","baedeker","series","also","acquired","rights","john_murray","iii","famous","travel","murray","handbooks","travellers","handbooks","established","blue_guides","century","guide_book","tradition","karl_baedeker","published","first","guidebook","von","c","john_murray","iii","first","handbook","released","handbook","travellers","first","baedeker","english","rhine","published","jointly","baedeker","murray","handbooks","become","standard","english","travellers","remainder","th_century","james","muirhead","james","muirhead","began","working","baedeker","preparing","handbook","travellers","london","findlay","muirhead","graduate","edinburgh","university","left","histudies","leipzig","join","brother","baedeker","almosthe","next","years","brothers","weresponsible","english_language","baedekers","including","britain","us","canada","following","outbreak","world_war","muirhead","brothers","found","job","acquired","rights","murray","handbooks","publisher","edward","stanford","years","earlier","john_murray","publisher","john_murray","year","established","company","muirhead","guide_books","limited","blue_guides","guides","bleu","agreement","french","publisher","hachette","publisher","hachette","allowed","publication","english","french","guidebooks","names","blue_guides","guides","respectively","hachette","blue","covers","baedeker_guides","red","covers","first","blue_guide","blue_guide","published","two_years_later","hachette","published","guide","bleu","londres","ses","environs","hachette","relationship","withe","blue_guides","ended","blue_guides","acquired","ernest","limited","russell","muirhead","findlay","son","became","series","editor","retired","remaining","consulting","editor","muirhead","family","connection","withe","series","ended","stuart","first","edited","guides","compiled","independent","educated","traveller","wanting","avoid","international","uniformity","blue_guide","greece","compiled","published","blue_guide","rome","environs","released","italy","titles","thereafter","become","best","selling","blue_guides","included","sicily","northern_italy","florence","venice","tuscany","frequently","updated","issued","key","blue_guide","authors","ian","robertson","writer","ian","robertson","spain","portugal","ireland","austria","switzerland","cyprus","france","paris","versailles","john","writer","john","wales","ian","england","paul","blanchard","travel_guide","writer","paul","blanchard","italy","present","w","norton","company","norton","new_york","became","united_states","publisher","selling","blue_guides","country","two_years_later","blue_guides","acquired","c","black","publishers","limited","later","acquired","bloomsbury","publishing","plc","publishers","harry_potter","books","among_others","somerset","books","based","family","owned","travel","publisher","known","visible","cities","guides","acquired","blue_guides","year_later","published","first","original","title","blue_guide","northern_italy","history","blue_guides","official_website","furthereading_externalinks","blue_guides","official_website","list","blue_guides","published","since","category_travel_guide_books","category","book_publishing_companies","united_kingdom","category","inew_york","category_series","books_category","guides"],"clean_bigrams":[["image","blue"],["blue","guide"],["guide","book"],["book","july"],["july","jpg"],["jpg","thumb"],["thumb","px"],["px","blue"],["blue","guide"],["guide","book"],["book","july"],["blue","guides"],["highly","detailed"],["authoritative","guide"],["guide","book"],["book","travel"],["travel","guidebooks"],["guidebooks","focused"],["art","architecture"],["archaeology","along"],["along","withe"],["withe","history"],["context","necessary"],["practical","travel"],["travel","information"],["recommended","restaurants"],["also","generally"],["generally","included"],["first","blue"],["blue","guide"],["guide","london"],["scottish","brothers"],["brothers","james"],["james","muirhead"],["muirhead","james"],["findlay","muirhead"],["famous","german"],["german","baedeker"],["baedeker","guides"],["guides","baedeker"],["baedeker","series"],["also","acquired"],["john","murray"],["murray","iii"],["famous","travel"],["travel","murray"],["travellers","handbooks"],["blue","guides"],["century","guide"],["guide","book"],["book","tradition"],["karl","baedeker"],["baedeker","published"],["first","guidebook"],["john","murray"],["murray","iii"],["first","handbook"],["released","handbook"],["first","baedeker"],["published","jointly"],["english","travellers"],["th","century"],["century","james"],["james","muirhead"],["muirhead","james"],["james","muirhead"],["muirhead","began"],["began","working"],["london","findlay"],["findlay","muirhead"],["muirhead","graduate"],["edinburgh","university"],["university","left"],["left","histudies"],["almosthe","next"],["next","years"],["brothers","weresponsible"],["english","language"],["language","baedekers"],["baedekers","including"],["canada","following"],["world","war"],["muirhead","brothers"],["brothers","found"],["publisher","edward"],["edward","stanford"],["years","earlier"],["john","murray"],["murray","publisher"],["publisher","john"],["john","murray"],["company","muirhead"],["guide","books"],["books","limited"],["blue","guides"],["guides","bleu"],["bleu","agreement"],["french","publisher"],["publisher","hachette"],["hachette","publisher"],["publisher","hachette"],["hachette","allowed"],["names","blue"],["blue","guides"],["respectively","hachette"],["blue","covers"],["baedeker","guides"],["red","covers"],["first","blue"],["blue","guide"],["guide","blue"],["blue","guide"],["guide","london"],["two","years"],["years","later"],["later","hachette"],["hachette","published"],["published","guide"],["guide","bleu"],["bleu","londres"],["ses","environs"],["hachette","relationship"],["relationship","withe"],["withe","blue"],["blue","guides"],["guides","ended"],["blue","guides"],["guides","acquired"],["russell","muirhead"],["muirhead","findlay"],["findlay","son"],["son","became"],["series","editor"],["consulting","editor"],["muirhead","family"],["connection","withe"],["withe","series"],["series","ended"],["edited","guides"],["guides","compiled"],["independent","educated"],["educated","traveller"],["traveller","wanting"],["international","uniformity"],["uniformity","blue"],["blue","guide"],["guide","greece"],["published","blue"],["blue","guide"],["guide","rome"],["italy","titles"],["titles","thereafter"],["thereafter","become"],["best","selling"],["selling","blue"],["blue","guides"],["included","sicily"],["sicily","northern"],["northern","italy"],["italy","florence"],["florence","venice"],["venice","tuscany"],["frequently","updated"],["key","blue"],["blue","guide"],["guide","authors"],["ian","robertson"],["robertson","writer"],["writer","ian"],["ian","robertson"],["robertson","spain"],["spain","portugal"],["portugal","ireland"],["ireland","austria"],["austria","switzerland"],["switzerland","cyprus"],["cyprus","france"],["france","paris"],["versailles","john"],["writer","john"],["wales","ian"],["england","paul"],["paul","blanchard"],["blanchard","travel"],["travel","guide"],["guide","writer"],["writer","paul"],["paul","blanchard"],["blanchard","italy"],["w","norton"],["norton","company"],["new","york"],["york","became"],["united","states"],["publisher","selling"],["selling","blue"],["blue","guides"],["country","two"],["two","years"],["years","later"],["blue","guides"],["guides","acquired"],["c","black"],["black","publishers"],["publishers","limited"],["later","acquired"],["bloomsbury","publishing"],["publishing","plc"],["plc","publishers"],["harry","potter"],["potter","books"],["books","among"],["among","others"],["somerset","books"],["based","family"],["family","owned"],["owned","travel"],["travel","publisher"],["publisher","known"],["visible","cities"],["cities","guides"],["guides","acquired"],["blue","guides"],["year","later"],["later","published"],["first","original"],["original","title"],["title","blue"],["blue","guide"],["guide","northern"],["northern","italy"],["italy","history"],["blue","guides"],["guides","official"],["official","website"],["website","furthereading"],["furthereading","externalinks"],["externalinks","blue"],["blue","guides"],["guides","official"],["official","website"],["website","list"],["blue","guides"],["guides","published"],["published","since"],["since","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","book"],["book","publishing"],["publishing","companies"],["united","kingdom"],["kingdom","category"],["category","book"],["book","publishing"],["publishing","companies"],["companies","based"],["based","inew"],["inew","york"],["york","category"],["category","series"],["books","category"],["category","publishing"],["publishing","companiestablished"]],"all_collocations":["image blue","blue guide","guide book","book july","july jpg","px blue","blue guide","guide book","book july","blue guides","highly detailed","authoritative guide","guide book","book travel","travel guidebooks","guidebooks focused","art architecture","archaeology along","along withe","withe history","context necessary","practical travel","travel information","recommended restaurants","also generally","generally included","first blue","blue guide","guide london","scottish brothers","brothers james","james muirhead","muirhead james","findlay muirhead","famous german","german baedeker","baedeker guides","guides baedeker","baedeker series","also acquired","john murray","murray iii","famous travel","travel murray","travellers handbooks","blue guides","century guide","guide book","book tradition","karl baedeker","baedeker published","first guidebook","john murray","murray iii","first handbook","released handbook","first baedeker","published jointly","english travellers","th century","century james","james muirhead","muirhead james","james muirhead","muirhead began","began working","london findlay","findlay muirhead","muirhead graduate","edinburgh university","university left","left histudies","almosthe next","next years","brothers weresponsible","english language","language baedekers","baedekers including","canada following","world war","muirhead brothers","brothers found","publisher edward","edward stanford","years earlier","john murray","murray publisher","publisher john","john murray","company muirhead","guide books","books limited","blue guides","guides bleu","bleu agreement","french publisher","publisher hachette","hachette publisher","publisher hachette","hachette allowed","names blue","blue guides","respectively hachette","blue covers","baedeker guides","red covers","first blue","blue guide","guide blue","blue guide","guide london","two years","years later","later hachette","hachette published","published guide","guide bleu","bleu londres","ses environs","hachette relationship","relationship withe","withe blue","blue guides","guides ended","blue guides","guides acquired","russell muirhead","muirhead findlay","findlay son","son became","series editor","consulting editor","muirhead family","connection withe","withe series","series ended","edited guides","guides compiled","independent educated","educated traveller","traveller wanting","international uniformity","uniformity blue","blue guide","guide greece","published blue","blue guide","guide rome","italy titles","titles thereafter","thereafter become","best selling","selling blue","blue guides","included sicily","sicily northern","northern italy","italy florence","florence venice","venice tuscany","frequently updated","key blue","blue guide","guide authors","ian robertson","robertson writer","writer ian","ian robertson","robertson spain","spain portugal","portugal ireland","ireland austria","austria switzerland","switzerland cyprus","cyprus france","france paris","versailles john","writer john","wales ian","england paul","paul blanchard","blanchard travel","travel guide","guide writer","writer paul","paul blanchard","blanchard italy","w norton","norton company","new york","york became","united states","publisher selling","selling blue","blue guides","country two","two years","years later","blue guides","guides acquired","c black","black publishers","publishers limited","later acquired","bloomsbury publishing","publishing plc","plc publishers","harry potter","potter books","books among","among others","somerset books","based family","family owned","owned travel","travel publisher","publisher known","visible cities","cities guides","guides acquired","blue guides","year later","later published","first original","original title","title blue","blue guide","guide northern","northern italy","italy history","blue guides","guides official","official website","website furthereading","furthereading externalinks","externalinks blue","blue guides","guides official","official website","website list","blue guides","guides published","published since","since category","category travel","travel guide","guide books","books category","category book","book publishing","publishing companies","united kingdom","kingdom category","category book","book publishing","publishing companies","companies based","based inew","inew york","york category","category series","books category","category publishing","publishing companiestablished"],"new_description":"image blue_guide_book july jpg thumb px blue_guide_book july blue_guides series highly detailed authoritative guide_book travel_guidebooks focused art architecture archaeology along_withe history context necessary understand practical travel_information recommended restaurants_hotels also generally included first blue_guide london_environs published scottish brothers james muirhead james findlay muirhead manyears thenglish famous german baedeker_guides baedeker series also acquired rights john_murray iii famous travel murray handbooks travellers handbooks established blue_guides century guide_book tradition karl_baedeker published first guidebook von c john_murray iii first handbook released handbook travellers first baedeker english rhine published jointly baedeker murray handbooks become standard english travellers remainder th_century james muirhead james muirhead began working baedeker preparing handbook travellers london findlay muirhead graduate edinburgh university left histudies leipzig join brother baedeker almosthe next years brothers weresponsible english_language baedekers including britain us canada following outbreak world_war muirhead brothers found job acquired rights murray handbooks publisher edward stanford years earlier john_murray publisher john_murray year established company muirhead guide_books limited blue_guides guides bleu agreement french publisher hachette publisher hachette allowed publication english french guidebooks names blue_guides guides respectively hachette blue covers baedeker_guides red covers first blue_guide blue_guide london_environs published two_years_later hachette published guide bleu londres ses environs hachette relationship withe blue_guides ended blue_guides acquired ernest limited russell muirhead findlay son became series editor retired remaining consulting editor muirhead family connection withe series ended stuart first edited guides compiled independent educated traveller wanting avoid international uniformity blue_guide greece compiled published blue_guide rome environs released italy titles thereafter become best selling blue_guides included sicily northern_italy florence venice tuscany frequently updated issued key blue_guide authors ian robertson writer ian robertson spain portugal ireland austria switzerland cyprus france paris versailles john writer john wales ian england paul blanchard travel_guide writer paul blanchard italy present w norton company norton new_york became united_states publisher selling blue_guides country two_years_later blue_guides acquired c black publishers limited later acquired bloomsbury publishing plc publishers harry_potter books among_others somerset books based family owned travel publisher known visible cities guides acquired blue_guides year_later published first original title blue_guide northern_italy history blue_guides official_website furthereading_externalinks blue_guides official_website list blue_guides published since category_travel_guide_books category book_publishing_companies united_kingdom category book_publishing_companies_based inew_york category_series books_category publishing_companiestablished guides"},{"title":"Blue Origin","description":"founder jeff bezos hq location hq location city kent washington hq location country united states key people jeff bezos rob meyerson products brandservices rocket engine manufacturing planning for human spaceflight as early as owner jeff bezosubsid blue origin florida llcblue origin texas llcblue originternational website num employeest revenue blue origin is an american private spaceflight privately funded aerospace manufacturer and spaceflight services company set up by amazoncom founder jeff bezos with its headquarters in kent washington the company is developing technologies to enable private human access to space withe goal to dramatically lower costs and increase reliability blue origin is employing an incremental approach from suborbital torbital flight with each developmental step building on its prior work the company motto is gradatim ferociter latin for step by step ferociously blue origin is developing a variety of technologies with a focus on rocket powered vertical takeoff and verticalanding vtvl vehicles for access to sub orbital spaceflight suborbital and orbital spaceflight orbital outer space the company s name refers to the blue planet earth as the point of originitially focused on sub orbital spaceflighthe company has built and flown a testbed of its new shepard spacecraft design atheir culberson county texas facility the first developmental test flight of the new shepard was april the uncrewed vehicle flew to its planned test altitude of more thand achieved a top speed of a second flight was performed onovember the vehicle went just beyond altitude reaching space for the firstime and bothe space capsule and its rocket boosterocketry booster successfully achieved a soft landing rocketry soft landing on january blue origin re flew the same new shepard booster that launched and landed vertically inovember demonstrating reuse this time new shepard reached an apogee ofeet km before both capsule and boostereturned to earth forecovery and reuse on april and june the same new shepard booster flew for its third and fourth flights each timexceeding in altitude beforeturning for successful soft landings the first crewed test flights are planned to take place in early withe start of commercial service shortly after blue origin moved into the orbital spaceflight orbital spaceflightechnology business initially as a rocket engine supplier for others when they entered into a contractual agreemento build a new large rocket engine the be for major us launch system operator united launch alliance ula is also considering the be blue origin smallerocket engine used onew shepard for use in a new second stage the advanced cryogenic evolved stage aces which will become the primary upper stage for ula s vulcan rocket vulcan orbital spaceflight orbitalaunch vehicle in the s by blue origin had announced plans to also manufacture and fly its own orbitalaunch vehicle from the florida space coast history file blue origincremental development spacecraft jpg lefthumblue origin s three vehicles as of late goddard subscale demonstrator flightested in early subscale version of the suborbital new shepard propulsion module as flown in variations existo the larger new shepard that actually flew in future space vehicle on top of a future orbitalaunch vehicle which when stacked is blue origin s future orbital transportation system blue origin founder jeff bezos had been interested in space from an early age a profile published in described a miami herald interview bezos gave after he was named valedictorian of his high school class the year old bezosaid he wanted to build space hotels amusement parks and colonies for million or million people who would be in orbithe whole idea is to preserve thearthe told the newspaper the goal was to be able to evacuate humans the planet would become a park blue origin was founded in kent washington and began developing both rocket propulsion systems and launch vehicle since the founding the company was very secretive about its plans and emerged from itself imposed silence only after while the company was formally incorporated in its existence became public only in when bezos began buying land in texas and interested parties followed up on the purchases this was a topic of some interest in local politics and bezos rapid aggregation of lots under a variety of whimsically named shell companies was called a land grab in january bezos told theditor of the van horn texas van horn advocate that blue origin was developing a sub orbital space vehicle that would vtvl take off and land vertically and carry three or more astronauts to the karman linedge of space the spacecraft would be based on technology like that used for the mcdonnell douglas dc x anderivative dc xa bezos told reuters inovember that his company hoped to progress torbital spaceflighthe company s website announced that it hoped to establish an space colonization enduring human presence in space buthe version wrote instead of aiming patiently and step by step to lower the cost of spaceflight so that many people can afford to go and so that we humans can better continuexploring the solar system science fiction author neal stephenson worked partime at blue originto late and credited blue origin employees for ideas andiscussions leading to his novel seveneves as of blue origin hadiscussed plans to place the new shepard in commercial suborbital tourist service in with flights about once per week by the publicized timetable indicated that blue origintended to fly unmanned in and manned in theventhe first developmental test flight of the new shepard occurred on april the uncrewed vehicle flew to its planned test altitude of more than feet meters and achieved a top speed of mach further test flights have and will continue to take place as of late blue origin projected that if all test flights operate ascheduled they could begin flying passengers to space on the new shepard in a interview bezos indicated that he founded blue origin to send customers intouter space by focusing on twobjectives to decrease the cost and to increase the safety of human spaceflight by july bezos had invested over of his money into blue origin september the company and united launch alliance ula entered into a partnership whereby blue origin would produce a large rocket engine the be for the vulcan rocket vulcan the successor to the atlas v whichas launched us national security payloadsince thearly s and will exit service in the late s the announcement added that blue origin had been working on thengine for three years prior to the public announcement and thathe first flight on the new rocket could occur as early as by april new product development and test of the be were progressing well and blue origin was expected to be selected for the ula vulcan launch vehicle vulcan rocket in april blue origin announced that it had completed acceptance testing of the bengine that would power the blue originew shepard new shepard space capsule to be used for blue origin suborbital spaceflight suborbital flights the completion of those testsets the stage for blue origin to begin test flights of the vehicle later this year at its facility in westexas where they expect a series oflightests withis vehicle flying in autonomous mode wexpect a series of dozens oflights over thextent of the test program taking a couple of years to complete following new shepard s maiden flight blue origin began accepting registration for early access to tickets and pricing information for suborbital spaceflights in july the company employed approximately people by may they had grown to approximately employees with of those working on engineering manufacturing and business operations in the kent location and approximately in texasupporting thengine test and suborbital test flight facility by april the company had more than employees in july nanoracks a provider of servicesuch as payloadesign andevelopment safety approvals and integration announced a partnership with blue origin to provide standardized payload accommodations for experiments flying on blue origin s blue originew shepard new shepard suborbital vehicle in september blue origin announcedetails of an unnamed planned orbital spaceflight orbitalaunch vehicle indicating thathe firstage would be powered by its bengine currently under development while the second stage would be powered by its recently completed be rocket engine in addition blue origin announced that it would both manufacture and launch the new rocket from the space coast florida space coast no payload or gross launch weight was given bezos noted interviews thathis new launch vehicle would not space launch market competition compete for us government national security of the united states national security missions leaving that marketo united launch alliance and spacex onovember blue origin launched the new shepard rocketo space to an altitude ofeet or kilometers and vertically landed the rocket booster less than from the center of the pad the capsule descended to the grounder parachutes minutes after blasting off and landed safely this marks the firstime a booster has flown to space and returned to earth marking a major step in the pursuit of a fully reusable rockethis flight validated the vehicle architecture andesign the ring fin shifted the center of pressure afto help control reentry andescent eight large drag brakes deployed and reduced the vehicle s terminal speed to hydraulically actuated finsteered the vehicle throughigh altitude crosswinds to a location precisely aligned with and above the landing pad then the highly throttleable bengine re ignited to slow the booster as the landingear deployed and the vehicle descended the last ato touchdown on the pad on january blue origin re flew the same new shepard booster that launched and landed vertically inovember demonstrating reuse this time new shepard reached an apogee ofeet kilometers before both capsule and boostereturned to earth forecovery and reuse on april the same new shepard booster again flew now for a third time reaching feet km before again returning successfully in march blue originvited journalists to see the inside of its kent washington headquarters and manufacturing facility for the firstime the company is planning for substantial growth in as it builds more crew capsules and propulsion modules for the new shepard program and ramps up bengine builds to support full scale developmentesting employment is expected to grow to in from in february bezos also articulated a long term vision for humans in space seeing the potential to move mucheavy industry completely off earth leaving our planet zoned strictly foresidential and light industrial use with an end state hundreds of years out where millions of people would be living and working in space by march manned test flights were planned to take place by with possible commercial service in also in march bezos discussed his plans toffer space tourism services to space pointing outhentertainment aspect of thearly barnstormers in really advancing aviation in thearly days when such rides were a big fraction of airplane flights in thosearly days he seespace tourism playing a similarole advancing space travel and rocket launches through tourism and entertainment on the other hand there are no current plans to pursue the niche market of us military launches bezos hasaid he is unsure where blue origin would add any value in that market on september blue announced thatheir orbital rocket would be named new glenn in honor of the first american astronautorbithearth john glenn and thathe firstage will be powered by seven blue origin bengines the firstage is reusable and will vtvland vertically just like the new shepard sub orbital spaceflight suborbitalaunch vehicle that preceded it athe time of the announcement of new glenn bezos revealed thathe next project beyond new glenn would be new armstrong without detailing whathat would be blue origin has continued to expand their seattle area office and rocket production facilities in purchasing an adjacent building and with permits filed to build a newarehouse complex and an additional office space as of blue origin waspending billion usd a year funded by jeff bezosales of amazon stock in march it was announced that blue origin acquired their first paying launch customer forbital satellite launches eutelsat is expected to start launching tv satellites in around on blue origin s new glenn orbitalaunch vehicle facilities blue origin has a development facility near seattle washington and an operationalaunch facility in westexas blue origin is developing a new orbitalaunch facility at cape canaveral air force station development facility and headquarters the company is headquartered on of industrialand in kent washington a suburb of seattle washington seattle where its research andevelopment is located the facility was in size in early growing to by march with blue origin leasing additional space in adjacent office buildings they plan to add more space by the kent facility housed engineering manufacturing and business operations and the majority of the person blue origin workforce which grew from about persons at kent in may they added an additional office manufacturing and warehouse space to their headquarters facilities in and florida facilities in september blue origin leased launch complex in cape canaveral florida to build a launch pad for their orbital spaceflight orbital blue origin orbitalaunch vehicle launch vehicle they also plan to manufacture their new be powered orbitalaunch vehicle athe nearby exploration park the first blue origin launch from lc is planned for an august estimate predicted that initialaunchappening earlier than groundbreaking for the facility to begin construction occurred in june accessed july westexasuborbitalaunch and engine test site blue origin has a suborbitalaunch facility located in westexas near the town of van horn texas van horn current launch license and experimental permits from the us government federal aviation administration authorize flights of blue origin s new shepard suborbital system blue origin has a staff of approximately supporting the westexas facility the launch pad is located at about miles km north of the check out building the landing pad is located at about miles km north of a check out building and miles km north of the launch pad in addition to the suborbitalaunch pads the westexasite includes a number of rocket engine test facility rocket engine testands engine test cells to support bothydrolox methalox and storable propellant storable propellant engines are present included are three test cells just for testing the methalox bengine alone two full test cells that can support full thrust and full duration burns as well as one that supportshort duration high pressure preburner tests to refine the rocket engine ignition sequence and understand the rocket engine transientstartransients launch vehicles early low altitude flightest platforms charon blue origin s first flightest vehicle called charon after pluto s moon was powered by four vertically mounted armstrong siddeley viperolls royce viper mk jet engines rather than rockets the low altitude vehicle was developed to test autonomous guidance and control technologies and the processes thathe company would use to develop its laterockets charon made its only test flight at moses lake washington march it flew to an altitude ofeet m beforeturning for a controlled landing near the liftoff point charon is currently on display athe museum oflight in seattle washington goddard the nextest vehicle named the blue origin goddard also known as pm first flew onovember the flight wasuccessful a test flight for december never launched according to federal aviation administration records two further flights were performed by goddard new shepard suborbital system file blue originew shepard launch april jpg thumb right new shepard launch on april blue origin s new shepard suborbital spaceflight system is composed of two vehicles a crew capsule accommodating three or more astronauts launched by a blue origin propulsion module rocket booster the two vehicles lift off together and are designed to separate during flight after separation the booster is designed to return to earth to perform a vtvl verticalanding while the crew capsule follows a separate trajectory returning under parachutes for a land touchdown both vehicles are intended forecovery and re use new shepard is controlled entirely by on board computers in addition to flying astronauts new shepard is intended to provide frequent opportunities foresearchers to fly experiments into suborbital space file blue origin test landing with parachutes april jpg thumb left new shepard landing with parachutes on april a federal aviation administrationotam indicated that a flightest of an early suborbital test vehicle pm wascheduled for augusthe flight in westexas failed when ground personnelost contact and control of the vehicle blue origin released its analysis of the failure on september as the vehicle reached a speed of mach number mach and altitude a flight instability drove angle of attack thatriggered the range safety and telemetry system range safety system to terminate thrust on the vehicle on october blue origin conducted a successful new shepherd pad escape test at its westexas launch site firing its pusher escape motor and launching a full scale crew capsule from a launch vehicle simulator the crew capsule traveled to an altitude of under active thrust vector control before descending safely by parachute to a soft landing rocketry soft landing downrange in april blue origin announced its intento begin autonomous robot autonomous flightesting test flights of new shepard in as frequently as monthly blue origin expected a series of dozens oflights over thextent of the test program taking a couple of years to complete on april new shepard made its firstest flighthe uncrewed vehicle flew to its planned test altitude of more thand achieved a top speed of mach the crew capsule separated from the booster beforeturning to earth for a landing under parachutes onovember new shepard made itsecond test flight reaching altitude with successful recovery of both crew capsule and booster the booster successfully soft landing rocketry performed a powered vtvl verticalanding on january blue origin re flew the same new shepard booster that launched and landed vertically inovember demonstrating reuse this time new shepard reached an apogee ofeet kilometers before both capsule and boostereturned to earth forecovery and reuse file new shepard booster and crew capsule afteretirementjpg thumb px new shepard booster and crew capsule afteretirement on april the same new shepard booster flew for a third time reaching feet km beforeturning successfully on june the same new shepard booster again flew now for a fourth time again reaching over feet before again returning successfully a fifth and final test flight of the second booster and test capsule took place in october blue origin plan to fly test astronaut s by early new glenn orbitalaunch vehicle the new glenn is a diameter multistage rocketwor three stage orbital spaceflight orbitalaunch vehicle that is expected to launch prior to the design work on the vehicle began in the high level specifications for the vehicle were publicly announced in september the firstage will be powered by seven bengines also designed and manufactured by blue origin the firstage is reusable launch vehicle reusable just like the new shepard suborbitalaunch vehicle that preceded ithe second stage and an optional third stage for some flights are both intended to bexpendable launch vehiclexpendable orbital space systems file blue origin orbital spacecraftjpg righthumblue origin s orbital space vehicle in flight rendering after beginning new product development of an orbital system prior to blue origin announced thexistence of their new orbitalaunch vehicle in september in january blue origindicated thathe new rocket will be many times larger thanew shepard even though it would be the smallest of the family of blue origin orbital vehicles blue origintends to make more details public later in orbitalaunch vehicle revealed in the blue origin orbital spaceflight orbitalaunch vehicle which began to be referred to by the placeholder name of very big brother in march is a tsto two stage torbit liquid propellant rockethe launcher is intended to be reusable launch vehicle reusable jeff bezos plans to boost humans into space from cape canaveral cbs news accessed september bezos you cannot afford to be a space fairing civilization if you throw the rocket away every time youse it we have to be focused on reusability we have to be focused on lowering the cost of space in january blue origin announced thathey plan to announce details abouthe launch vehicle later in and a few details wereleased in march when blue origindicated thathe first orbitalaunch was expected from the florida launch facility in the firstage is to be powered by blue origin s be single shaft oxygen rich staged combustion cycle staged combustion liquid methane liquid oxygen rocket engine while the second stage will be powered by the recently qualified be tap off cycle liquid hydrogen liquid oxygen rocket engine the number of engines powering each stage has not been released nor has the payload or gross launch weight specifications no details were publicly released as of september blue origintends to launch the rocket from the historic spaceport florida launch complex launch complex and manufacture the rockets at a new facility onearby land in exploration park acceptance testing of the bengines will also be done in florida orbital subsystems and earlier development work blue origin began developing systems forbital human spacecraft prior to a reusable firstage booster was projected to fly a suborbital trajectory taking off vertically like the booster stage of a conventional multistage rocket following stage separation the upper stage would continue to propel astronauts torbit while the firstage booster wouldescend to perform a powered verticalanding similar to the new shepard suborbital propulsion module the firstage booster would be refueled and launched again allowing improved reliability and lowering the cost of human access to space the boosterocket was projected to loft blue origin s biconic space vehicle torbit carrying astronauts and supplies after orbiting thearthe space vehicle will reenter earth s atmosphere to land on land under parachutes and then be reused on future missions to earth orbit blue origin successfully completed a system requirements review srr of its orbital space vehicle in may engine testing for the reusable booster system rbs vehicle began in a full power test of the thrust chamber for blue origin be liquid oxygen liquid hydrogen rocket engine was conducted at a john c stennispacenter nasa test facility in october the chamber successfully achieved full thrust of test flights class wikitable date vehicle notes marcharon reached altitude of m november blue origin goddard first rocket powered test flight march goddard april goddard may pm august pm failure loss of vehicle october new shepard space capsule only pad escape test flight april new shepard successful atmospheric flighto altitude km capsule soft landing rocketry recovered boosterocketry booster crashed on landing november new shepard successful sub orbital spaceflight and landing january new shepard successful sub orbital flight and landing of a reused booster april new shepard successful sub orbital flight and landing of a reused booster junew shepard successful sub orbital flight and landing of a reused booster the fourth launch and landing of the same rocket blue origin published a live webcast of the takeoff and landing october new shepard successful sub orbital flight and landing of a reused booster the fifth and finalaunch and landing of the same rocket ns rocket engine development be blue origin publicly announced the development of the bluengine or be in january buthengine had begunew product development in thearly s be is a new liquid hydrogen liquid oxygen lh lox cryogenic engine that can produce of thrust at full power and can be rocket engine throttling throttledown to as low as for use in controlled vtvl verticalandings early thrust chamber testing began at nasa stennis in by late the be had been successfully tested on a full duration suborbital burn with simulated coast phases and engine relights demonstrating deep throttle full power long duration and rocket engine restart reliable restart all in a single test sequence nasa has released a videof the testhengine hademonstrated more than starts and of operation at blue origin s test facility near van horn texas blue origin tests new engine aviation week accessed september bengine acceptance testing was completed by april with test firings of thengine and a cumulative run time of more than minutes the bengine powers the blue originew shepard new shepard space capsule that is being used for blue origin suborbital spaceflight suborbital flights that began in be u the be u engine is a modified be for use on upper stage s of blue origin orbital spaceflight orbitalaunch vehicle s thengine will include a rocket enginexpansionozzle better optimized for operation under vacuum outer space vacuum conditions as well as a number of other manufacturing differencesince it is an expendablengine whereas the be is designed foreusability be blue origin began work on a new and much largerocket engine in the new engine the bluengine or be is a change for blue origin that it is their first engine that will combust liquid oxygen and liquid methane rocket propellants thengine has been designed to produce of thrust and was initially planned to be used exclusively on a blue origin proprietary launch vehicle blue origin did not announce the new engine to the public until september in late blue origin signed an agreement with united launch alliance to co develop the bengine and to commito use the new engine on an atlas v replacement for the rd engine upgraded atlas v launch vehicle replacing the single rd russian madengine the atlas v successor new launch vehicle will use twof the bengines on each firstage rocketry firstage thengine development program began in ula expects the first flight of the new launch vehicle the vulcan rocket vulcano earlier than pusher escape motor blue originew product development developed a pusher escape motor for itsuborbital crew capsule in late blue origin performed a full scale flightest of thescape system on the full scale suborbital capsule funding by july jeff bezos had invested over into blue origin even by march the vast majority ofunding to support new product developmentechnology development and operations at blue origin has come from jeff bezos market capitalism private investment but bezos hadeclined to publicly state the amount prior to when annual amount wastated publicly blue origin has also completed work for nasa on several small development contracts receiving total funding of by bezos iselling approximately in amazoncom amazon stock each year to privatequity privately finance blue origin collaborations with nasa blue origin has contracted to do work for nasa on several development efforts the company was awarded in funding in by nasa via space act agreement under the ccdev first commercial crew development ccdev program for development of concepts and technologies to support future human spaceflight operations nasa co funded risk mitigation activities related to ground testing of an innovative pusher escape system that lowers cost by being reusable and enhancesafety by avoiding the jettison event of a traditional tractor launch escape system and an innovative composite pressure vessel cabin that both reduces weight and increasesafety of astronauts this was laterevealed to be a part of a larger system designed for a biconicapsule that would be launched atop an atlas v rocket onovember it was announced that blue origin had completed all milestones under its ccdev space act agreement in april blue origin received a commitment from nasa for ofunding under the ccdev phase programilestones included performing a mission concept review mcr and system requirements review srr on the orbital space vehicle which utilizes a biconic shape toptimize its launch profile and atmospheric reentry further maturing the pusher escape system includinground and flightests and accelerating development of its be lox lh lbf engine through full scale thrust chamber testing inasa s commercial crew program released its follow on ccicap solicitation for the development of crew delivery to iss by blue origin did not submit a proposal for ccicap but is reportedly continuing work on its development program with private funding blue origin had earlier attempted to lease a different part of the space coast when they submitted a bid in to lease kennedy spacenter launch complex launch complex a lc athe kennedy spacenter on land to the north of and adjacento cape canaveral afs following nasa s decision to lease the unused complex out as part of a bid to reduce annual operation and maintenance costs the blue origin bid was for shared and non exclusive use of the lc a complex such thathe launchpad was to have been able to interface with multiple launch vehicles and costs for using the launch pad were to have been shared across multiple companies over the term of the lease one potential shared user in the blue originotional plan was united launch alliance a competing bid for private spaceflight commercial use of the lc a launch complex wasubmitted by spacex which submitted a bid for exclusive use of the launch complex to supportheir human spaceflight crewed missions in september prior to completion of the bid period and prior to any public announcement by nasa of the results of the process blue origin filed a protest withe federal government of the united states us general accounting office gaover what it says is a plan by nasa to award an exclusive commercialease to spacex for use of mothballed space shuttle launch pad a nasa had planned to complete the bid award and have the pad transferred by october buthe protest will delay any decision until the gao reaches a decision expected by midecember spacex said thathey would be willing to support a multi user arrangement for pad a in december the gao denied the blue origin protest and sided with nasa which argued thathe solicitation contained no preference on the use of the facility as either multi use or single use the solicitation document merely asked bidders to explain theireasons for selecting one approach instead of the other and how they would manage the facility in thevent nasa selected the spacex proposal in late and signed a year lease contract for launch pad a to spacex in april with darpa blue origin cooperated with boeing in phase of the darpa xspacecraft xspaceplane program see also armadillo aerospace interorbital systems kankoh maru lockheed martin x lunar lander challenge masten space systems mcdonnell douglas dc x newspace quad rocket reusable vehicle testing program by jaxa spacex reusable launch system development program venturestar zarya spacecraft zarya references externalinks amazon enters the space race wired magazine july amazon ceo gives us peek into space plans a january article from the seattle times amazoncom founder space venture has westexas county abuzz seattle post intelligencer march blue origin westexas commercialaunch sitenvironmental assessment latest blue originews on the space fellowship internet billionaires face off in renewed texaspace race bownsville herald april category blue origin category private spaceflight companies category commercial spaceflight category rocket engine manufacturers category space tourism category aerospace companies of the united states category space act agreement companies category companies based in kent washington category culberson county texas category companiestablished in","main_words":["founder","jeff_bezos","location","location_city","kent","washington","location_country_united","states","key_people","jeff_bezos","rob","products","rocket_engine","manufacturing","planning","human_spaceflight","early","owner","jeff","blue_origin","florida","origin","texas","website","num","revenue","blue_origin","american","private_spaceflight","privately_funded","aerospace","manufacturer","spaceflight","services","company","set","amazoncom","founder","jeff_bezos","headquarters","kent","washington","company","developing","technologies","enable","private","human","access","space","withe_goal","dramatically","lower_costs","increase","reliability","blue_origin","employing","approach","suborbital","flight","developmental","step","building","prior","work","company","motto","latin","step","step","blue_origin","developing","variety","technologies","focus","rocket_powered","vertical","takeoff","verticalanding","vtvl","vehicles","access","sub_orbital_spaceflight","suborbital","orbital_spaceflight","orbital","outer_space","company","name","refers","blue","planet","earth","point","focused","sub_orbital","company","built","flown","new_shepard","spacecraft","design","atheir","county","texas","facility","first","developmental","test_flight","new_shepard","april","uncrewed","vehicle","flew","planned","test","altitude","thand","achieved","top","speed","second","flight","performed","onovember","vehicle","went","beyond","altitude","reaching","space","firstime","bothe","space_capsule","rocket","booster","successfully","achieved","soft_landing","rocketry","soft_landing","january","blue_origin","flew","new_shepard","booster","launched","landed","vertically","inovember","demonstrating","reuse","time","new_shepard","reached","apogee","ofeet","capsule","earth","forecovery","reuse","april","june","new_shepard","booster","flew","third","fourth","flights","altitude","beforeturning","successful","first","crewed","test_flights","planned","take_place","early","withe","start","commercial","service","shortly","blue_origin","moved","orbital_spaceflight","orbital","business","initially","rocket_engine","supplier","others","entered","build","new","large","rocket_engine","major","us","launch_system","operator","united_launch_alliance","ula","also","considering","blue_origin","engine","used","onew","shepard","use","new","second_stage","advanced","cryogenic","evolved","stage","become","primary","upper_stage","ula","vulcan","rocket","vulcan","orbital_spaceflight","orbitalaunch_vehicle","blue_origin","announced_plans","also","manufacture","fly","orbitalaunch_vehicle","florida","space","coast","development","spacecraft","jpg","origin","three","vehicles","late","goddard","subscale","early","subscale","version","suborbital","new_shepard","propulsion_module","flown","variations","larger","new_shepard","actually","flew","future","space_vehicle","top","future","orbitalaunch_vehicle","stacked","blue_origin","future","orbital","transportation","system","blue_origin","founder","jeff_bezos","interested","space","early","age","profile","published","described","miami","herald","interview","bezos","gave","named","high_school","class","year_old","wanted","build","space","hotels","amusement_parks","colonies","million","million_people","would","orbithe","whole","idea","preserve","told","newspaper","goal","able","humans","planet","would_become","park","blue_origin","founded","kent","washington","began","developing","rocket","propulsion","systems","launch_vehicle","since","founding","company","secretive","plans","emerged","imposed","company","formally","incorporated","existence","became","public","bezos","began","buying","land","texas","interested","parties","followed","purchases","topic","interest","local","politics","bezos","rapid","lots","variety","named","shell","companies","called","land","grab","january","bezos","told","theditor","van","horn","texas","van","horn","advocate","blue_origin","developing","vehicle","would","vtvl","take","land","vertically","carry","three","astronauts","space","spacecraft","would","based","technology","like","used","douglas","x","bezos","told","reuters","inovember","company","hoped","progress","company","website","announced","hoped","establish","space","colonization","enduring","human","presence","space","buthe","version","wrote","instead","aiming","step","step","lower_cost","spaceflight","many_people","afford","go","humans","better","solar_system","science_fiction","author","neal","worked","partime","blue","late","credited","blue_origin","employees","ideas","leading","novel","blue_origin","plans","place","new_shepard","commercial","suborbital","tourist","service","flights","per","week","publicized","timetable","indicated","blue","fly","unmanned","manned","theventhe","first","developmental","test_flight","new_shepard","occurred","april","uncrewed","vehicle","flew","planned","test","altitude","feet","meters","achieved","top","speed","mach","test_flights","continue","take_place","late","blue_origin","projected","test_flights","operate","could","begin","flying","passengers","space","new_shepard","interview","bezos","indicated","founded","blue_origin","send","customers","space","focusing","decrease","cost","increase","safety","human_spaceflight","july","bezos","invested","money","blue_origin","september","company","united_launch_alliance","ula","entered","partnership","whereby","blue_origin","would","produce","large","rocket_engine","vulcan","rocket","vulcan","successor","atlas","v","whichas","launched","us_national","security","thearly","exit","service","late","announcement","added","blue_origin","working","thengine","three_years","prior","public","announcement","new","rocket","could","occur","early","april","new_product","development","test","well","blue_origin","expected","selected","ula","vulcan","launch_vehicle","vulcan","rocket","april","blue_origin","announced","completed","acceptance","testing","bengine","would","power","blue_originew","shepard","new_shepard","space_capsule","used","blue_origin","suborbital_spaceflight","suborbital","flights","completion","stage","blue_origin","begin","test_flights","vehicle","later","year","facility","westexas","expect","series","withis","vehicle","flying","autonomous","mode","series","dozens","oflights","thextent","test_program","taking","couple","years","complete","following","new_shepard","maiden","flight","blue_origin","began","accepting","registration","early","access","tickets","pricing","information","july","company","employed","approximately","people","may","grown","approximately","employees","working","engineering","manufacturing","business","operations","kent","location","approximately","thengine","test","suborbital","test_flight","facility","april","company","employees","july","provider","servicesuch","andevelopment","safety","integration","announced","partnership","blue_origin","provide","standardized","payload","accommodations","experiments","flying","blue_origin","blue_originew","shepard","new_shepard","suborbital","vehicle","september","blue_origin","unnamed","planned","orbital_spaceflight","orbitalaunch_vehicle","indicating","thathe_firstage","would","powered","bengine","currently","development","second_stage","would","powered","recently","completed","rocket_engine","addition","blue_origin","announced","would","manufacture","launch","new","rocket","space","coast","florida","space","coast","payload","gross","launch","weight","given","bezos","noted","interviews","thathis","new","launch_vehicle","would","market","competition","compete","us_government","national","security","united_states","national","security","missions","leaving","marketo","united_launch_alliance","spacex","onovember","blue_origin","launched","new_shepard","rocketo","space","altitude","ofeet","kilometers","vertically","landed","rocket","booster","less","center","pad","capsule","descended","parachutes","minutes","landed","safely","marks","firstime","booster","flown","space","returned","earth","marking","major","step","pursuit","fully","reusable","flight","validated","vehicle","architecture","andesign","ring","fin","shifted","center","pressure","help","control","reentry","eight","large","drag","brakes","deployed","reduced","vehicle","terminal","speed","vehicle","altitude","location","aligned","landing","pad","highly","bengine","slow","booster","deployed","vehicle","descended","last","touchdown","pad","january","blue_origin","flew","new_shepard","booster","launched","landed","vertically","inovember","demonstrating","reuse","time","new_shepard","reached","apogee","ofeet","kilometers","capsule","earth","forecovery","reuse","april","new_shepard","booster","flew","third","time","reaching","feet","returning","successfully","march","blue","journalists","see","inside","kent","washington","headquarters","manufacturing","facility","firstime","company","planning","substantial","growth","builds","new_shepard","program","ramps","bengine","builds","support","full_scale","employment","expected","grow","february","bezos","also","articulated","long_term","vision","humans","space","seeing","potential","move","industry","completely","earth","leaving","planet","strictly","light","industrial","use","end","state","hundreds","years","millions","people","would","living","working","space","march","manned","test_flights","planned","take_place","possible","commercial","service","also","march","bezos","discussed","plans","toffer","space_tourism","services","space","pointing","aspect","thearly","really","advancing","aviation","thearly","days","rides","big","fraction","airplane","flights","days","tourism","playing","advancing","space_travel","rocket","launches","tourism","entertainment","hand","current","plans","pursue","niche","market","us","military","launches","bezos","hasaid","blue_origin","would","add","value","market","september","blue","orbital_rocket","would","named","new_glenn","honor","first_american","john","glenn","thathe_firstage","powered","seven","blue_origin","bengines","firstage","reusable","vertically","like","new_shepard","sub_orbital_spaceflight","suborbitalaunch","vehicle","preceded","athe_time","announcement","new_glenn","bezos","revealed","thathe","next","project","beyond","new_glenn","would","new","armstrong","without","detailing","would","blue_origin","continued","expand","seattle","area","office","rocket","production","facilities","purchasing","adjacent","building","permits","filed","build","complex","additional","office","space","blue_origin","billion","usd","year","funded","jeff","amazon","stock","march","announced","blue_origin","acquired","first","paying","launch","customer","forbital","satellite","launches","expected","start","launching","satellites","around","blue_origin","new_glenn","orbitalaunch_vehicle","facilities","blue_origin","development","facility","near","seattle_washington","facility","westexas","blue_origin","developing","new","orbitalaunch","facility","cape_canaveral","air_force","station","development","facility","headquarters","company","headquartered","kent","washington","suburb","seattle_washington","seattle","research_andevelopment","located","facility","size","early","growing","march","blue_origin","leasing","additional","space","adjacent","office","buildings","plan","add","space","kent","facility","housed","engineering","manufacturing","business","operations","majority","person","blue_origin","workforce","grew","persons","kent","may","added","additional","office","manufacturing","warehouse","space","headquarters","facilities","florida","facilities","september","blue_origin","leased","launch_complex","cape_canaveral","florida","build","launch_pad","orbital_spaceflight","orbital","blue_origin","orbitalaunch_vehicle","launch_vehicle","also","plan","manufacture","new","powered","orbitalaunch_vehicle","athe","nearby","exploration","park","first","blue_origin","launch","planned","august","estimate","predicted","earlier","groundbreaking","facility","begin","construction","occurred","june","accessed_july","engine","test_site","blue_origin","suborbitalaunch","facility","located","westexas","near","town","van","horn","texas","van","horn","current","launch","license","experimental","permits","us_government","federal_aviation_administration","flights","blue_origin","new_shepard","suborbital","system","blue_origin","staff","approximately","supporting","westexas","facility","launch_pad","located","miles","north","check","building","landing","pad","located","miles","north","check","building","miles","north","launch_pad","addition","suborbitalaunch","pads","includes","number","rocket_engine","test","facility","rocket_engine","engine","test","cells","support","methalox","propellant","propellant","engines","present","included","three","test","cells","testing","methalox","bengine","alone","two","full","test","cells","support","full","thrust","full","duration","burns","well","one","duration","high","pressure","tests","refine","rocket_engine","ignition","sequence","understand","rocket_engine","launch_vehicles","early","low","altitude","flightest","platforms","charon","blue_origin","first_flightest","vehicle","called","charon","pluto","moon","powered","four","vertically","mounted","armstrong","viper","jet","engines","rather","rockets","low","altitude","vehicle","developed","test","autonomous","guidance","control","technologies","processes","thathe_company","would","use","develop","charon","made","test_flight","moses","lake","washington","march","flew","altitude","ofeet","beforeturning","controlled","landing","near","liftoff","point","charon","currently","display","athe","museum","oflight","seattle_washington","goddard","vehicle","named","blue_origin","goddard","also_known","first","flew","onovember","flight","wasuccessful","test_flight","december","never","launched","according","federal_aviation_administration","records","two","flights","performed","goddard","new_shepard","suborbital","system","shepard","launch","april","jpg","thumb","right","new_shepard","launch","april","blue_origin","new_shepard","suborbital_spaceflight","system","composed","two","vehicles","crew_capsule","accommodating","three","astronauts","launched","blue_origin","propulsion_module","rocket","booster","two","vehicles","lift","together","designed","separate","flight","separation","booster","designed","return","earth","perform","vtvl","verticalanding","crew_capsule","follows","separate","trajectory","returning","parachutes","land","touchdown","vehicles","intended","forecovery","use","new_shepard","controlled","entirely","board","computers","addition","flying","astronauts","new_shepard","intended","provide","frequent","opportunities","fly","experiments","suborbital","space","test","landing","parachutes","april","jpg","thumb","left","new_shepard","landing","parachutes","april","indicated","flightest","early","suborbital","test","vehicle","wascheduled","augusthe","flight","westexas","failed","ground","contact","control","vehicle","blue_origin","released","analysis","failure","september","vehicle","reached","speed","mach","number","mach","altitude","flight","instability","drove","angle","attack","range","safety","telemetry","system","range","safety","system","thrust","vehicle","october","blue_origin","conducted","successful","new","shepherd","pad","escape","test","westexas","launch_site","firing","pusher","escape","motor","launching","full_scale","crew_capsule","launch_vehicle","simulator","crew_capsule","traveled","altitude","active","thrust","control","descending","safely","parachute","soft_landing","rocketry","soft_landing","april","blue_origin","announced","begin","autonomous","robot","autonomous","flightesting","test_flights","new_shepard","frequently","monthly","blue_origin","expected","series","dozens","oflights","thextent","test_program","taking","couple","years","complete","april","new_shepard","made","firstest","flighthe","uncrewed","vehicle","flew","planned","test","altitude","thand","achieved","top","speed","mach","crew_capsule","separated","booster","beforeturning","earth","landing","parachutes","onovember","new_shepard","made","itsecond","test_flight","reaching","altitude","successful","recovery","crew_capsule","booster","booster","successfully","soft_landing","rocketry","performed","powered","vtvl","verticalanding","january","blue_origin","flew","new_shepard","booster","launched","landed","vertically","inovember","demonstrating","reuse","time","new_shepard","reached","apogee","ofeet","kilometers","capsule","earth","forecovery","reuse","file","new_shepard","booster","crew_capsule","thumb","booster","crew_capsule","april","new_shepard","booster","flew","third","time","reaching","feet","beforeturning","successfully","june","new_shepard","booster","flew","fourth","time","reaching","feet","returning","successfully","fifth","final","test_flight","second","booster","test","capsule","took_place","october","blue_origin","plan","fly","test","astronaut","early","new_glenn","orbitalaunch_vehicle","new_glenn","diameter","multistage","three","stage","orbital_spaceflight","orbitalaunch_vehicle","expected","launch","prior","design","work","vehicle","began","high_level","specifications","vehicle","publicly_announced","september","firstage","powered","seven","bengines","also","designed","manufactured","blue_origin","firstage","reusable_launch_vehicle","reusable","like","new_shepard","suborbitalaunch","vehicle","preceded","ithe","second_stage","optional","third","stage","flights","intended","launch","orbital_space","systems","orbital","origin","orbital_space","vehicle","flight","rendering","beginning","new_product","development","orbital","system","prior","blue_origin","announced","thexistence","new","orbitalaunch_vehicle","september","january","blue_origindicated","thathe","new","rocket","many_times","larger","shepard","even_though","would","smallest","family","blue_origin","orbital","vehicles","blue","make","details","public","later","orbitalaunch_vehicle","revealed","blue_origin","orbital_spaceflight","orbitalaunch_vehicle","began","referred","name","big","brother","march","two_stage","torbit","liquid","propellant","rockethe","launcher","intended","reusable_launch_vehicle","reusable","jeff_bezos","plans","boost","humans","space","cape_canaveral","cbs","news","accessed","september","bezos","cannot","afford","space","fairing","civilization","throw","rocket","away","every","time","focused","focused","lowering","cost","space","january","blue_origin","announced_thathey","plan","announce","details","abouthe","launch_vehicle","later","details","wereleased","march","blue_origindicated","thathe_first","orbitalaunch","expected","florida","launch_facility","firstage","powered","blue_origin","single","shaft","oxygen","rich","staged","combustion","cycle","staged","combustion","liquid","methane","liquid_oxygen","rocket_engine","second_stage","powered","recently","qualified","tap","cycle","liquid","hydrogen","liquid_oxygen","rocket_engine","number","engines","stage","released","payload","gross","launch","weight","specifications","details","publicly","released","september","blue","launch","rocket","historic","spaceport","florida","launch_complex","launch_complex","manufacture","rockets","new","facility","land","exploration","park","acceptance","testing","bengines","also","done","florida","orbital","earlier","development","work","blue_origin","began","developing","systems","forbital","human","spacecraft","prior","reusable","firstage","booster","projected","fly","suborbital","trajectory","taking","vertically","like","booster","stage","conventional","multistage","rocket","following","stage","separation","upper_stage","would","continue","propel","astronauts","torbit","firstage","booster","perform","powered","verticalanding","similar","new_shepard","suborbital","propulsion_module","firstage","booster","would","launched","allowing","improved","reliability","lowering","cost","human","access","space","boosterocket","projected","loft","blue_origin","space_vehicle","torbit","carrying","astronauts","supplies","space_vehicle","earth","atmosphere","land","land","parachutes","reused","future","missions","earth_orbit","blue_origin","successfully","completed","system","requirements","review","orbital_space","vehicle","may","engine","testing","reusable","booster","system","vehicle","began","full","power","test","thrust","chamber","blue_origin","liquid_oxygen","liquid","hydrogen","rocket_engine","conducted","john_c","nasa","test","facility","october","chamber","successfully","achieved","full","thrust","test_flights","class","wikitable","date","vehicle","notes","reached","altitude","november","blue_origin","goddard","first","rocket_powered","test_flight","march","goddard","april","goddard","may","august","failure","loss","vehicle","october","new_shepard","space_capsule","pad","escape","test_flight","april","new_shepard","successful","atmospheric","flighto","altitude","capsule","soft_landing","rocketry","recovered","booster","landing","november","new_shepard","successful","sub_orbital_spaceflight","landing","january","new_shepard","successful","sub_orbital","flight","landing","reused","booster","april","new_shepard","successful","sub_orbital","flight","landing","reused","booster","shepard","successful","sub_orbital","flight","landing","reused","booster","fourth","launch","landing","rocket","blue_origin","published","live","takeoff","landing","october","new_shepard","successful","sub_orbital","flight","landing","reused","booster","fifth","landing","rocket","rocket_engine","development","blue_origin","publicly_announced","development","january","product_development","thearly","new","liquid","hydrogen","liquid_oxygen","lox","cryogenic","engine","produce","thrust","full","power","rocket_engine","low","use","controlled","vtvl","chamber","testing","began","nasa","stennis","late","successfully","tested","full","duration","suborbital","burn","simulated","coast","phases","engine","demonstrating","deep","full","power","long","duration","rocket_engine","reliable","single","test","sequence","nasa","released","videof","starts","operation","blue_origin","test","facility","near","van","horn","texas","blue_origin","tests","new","engine","aviation","week","accessed","september","bengine","acceptance","testing","completed","april","test","firings","thengine","run","time","minutes","bengine","powers","blue_originew","shepard","new_shepard","space_capsule","used","blue_origin","suborbital_spaceflight","suborbital","flights","began","engine","modified","use","upper_stage","blue_origin","orbital_spaceflight","orbitalaunch_vehicle","thengine","include","rocket","better","optimized","operation","vacuum","outer_space","vacuum","conditions","well","number","manufacturing","whereas","designed","blue_origin","began","work","new","much","engine","new","engine","change","blue_origin","first","engine","liquid_oxygen","liquid","methane","rocket","propellants","thengine","designed","produce","thrust","initially","planned","used","exclusively","blue_origin","proprietary","launch_vehicle","blue_origin","announce","new","engine","public","september","late","blue_origin","signed","agreement","united_launch_alliance","develop","bengine","use","new","engine","atlas","v","replacement","engine","upgraded","atlas","v","launch_vehicle","replacing","single","russian","atlas","v","successor","new","launch_vehicle","use","twof","bengines","firstage","rocketry","firstage","thengine","development_program","began","ula","expects","first_flight","new","launch_vehicle","vulcan","rocket","earlier","pusher","escape","motor","blue_originew","product_development","developed","pusher","escape","motor","crew_capsule","late","blue_origin","performed","full_scale","flightest","thescape","system","full_scale","suborbital","capsule","funding","july","jeff_bezos","invested","blue_origin","even","march","vast_majority","ofunding","support","new_product","development","operations","blue_origin","come","jeff_bezos","market","capitalism","private","investment","bezos","publicly","state","amount","prior","annual","amount","publicly","blue_origin","also","completed","work","nasa","several","small","development","contracts","receiving","total","funding","bezos","approximately","amazoncom","amazon","stock","year","privatequity","privately","finance","blue_origin","nasa","blue_origin","contracted","work","nasa","several","development","efforts","company","awarded","funding","nasa","via","space","act","agreement","ccdev","first_commercial","ccdev","program","development","concepts","technologies","support","future","human_spaceflight","operations","nasa","funded","risk","mitigation","activities","related","ground","testing","innovative","pusher","escape","system","cost","reusable","avoiding","event","traditional","tractor","launch","escape","system","innovative","composite","pressure","vessel","cabin","reduces","weight","astronauts","part","larger","system","designed","would","launched","atop","atlas","v","rocket","onovember","announced","blue_origin","completed","milestones","ccdev","space","act","agreement","april","blue_origin","received","commitment","nasa","ofunding","ccdev","phase","included","performing","mission","concept","review","system","requirements","review","orbital_space","vehicle","utilizes","shape","toptimize","launch","profile","atmospheric","reentry","pusher","escape","system","flightests","development","lox","engine","full_scale","thrust","chamber","testing","commercial_crew","program","released","follow","solicitation","development","crew","delivery","iss","blue_origin","submit","proposal","reportedly","continuing","work","development_program","private","funding","blue_origin","earlier","attempted","lease","different","part","space","coast","submitted","bid","lease","kennedy","spacenter","launch_complex","launch_complex","athe","kennedy","spacenter","land","north","adjacento","cape_canaveral","following","nasa","decision","lease","unused","complex","part","bid","reduce","annual","operation","maintenance","costs","blue_origin","bid","shared","non","exclusive","use","complex","thathe","able","interface","multiple","launch_vehicles","costs","using","launch_pad","shared","across","multiple","companies","term","lease","one","potential","shared","user","blue","plan","united_launch_alliance","competing","bid","private_spaceflight","commercial","use","launch_complex","spacex","submitted","bid","exclusive","use","launch_complex","supportheir","human_spaceflight","crewed","missions","september","prior","completion","bid","period","prior","public","announcement","nasa","results","process","blue_origin","filed","protest","withe","federal_government","united_states","us","general","accounting","office","says","plan","nasa","award","exclusive","spacex","use","space_shuttle","launch_pad","nasa","planned","complete","bid","award","pad","transferred","october","buthe","protest","delay","decision","gao","reaches","decision","expected","spacex","said","thathey_would","willing","support","multi","user","arrangement","pad","december","gao","denied","blue_origin","protest","nasa","argued","thathe","solicitation","contained","preference","use","facility","either","multi","use","single","use","solicitation","document","merely","asked","explain","selecting","one","approach","instead","would","manage","facility","thevent","nasa","selected","spacex","proposal","late","signed","year","lease","contract","launch_pad","spacex","april","blue_origin","boeing","phase","program","see_also","armadillo","aerospace","systems","lockheed","martin","x","lunar","lander","challenge","space","systems","douglas","x","newspace","quad","rocket","reusable","vehicle","testing","program","spacex_reusable","launch_system","development_program","zarya","spacecraft","zarya","references_externalinks","amazon","enters","space","race","wired","magazine","july","amazon","ceo","gives","us","space","plans","january","article","seattle","times","amazoncom","founder","space","venture","westexas","county","seattle","post","march","blue_origin","westexas","commercialaunch","assessment","latest","blue","space_fellowship","internet","face","renewed","race","herald","april","category","blue_origin","category_private_spaceflight","category","rocket_engine","manufacturers","category_space_tourism","category","aerospace_companies","united_states","category_space","act","agreement","companies_category","companies_based","kent","washington","category","county"],"clean_bigrams":[["founder","jeff"],["jeff","bezos"],["location","city"],["city","kent"],["kent","washington"],["location","country"],["country","united"],["united","states"],["states","key"],["key","people"],["people","jeff"],["jeff","bezos"],["bezos","rob"],["rocket","engine"],["engine","manufacturing"],["manufacturing","planning"],["human","spaceflight"],["owner","jeff"],["blue","origin"],["origin","florida"],["origin","texas"],["website","num"],["revenue","blue"],["blue","origin"],["american","private"],["private","spaceflight"],["spaceflight","privately"],["privately","funded"],["funded","aerospace"],["aerospace","manufacturer"],["spaceflight","services"],["services","company"],["company","set"],["amazoncom","founder"],["founder","jeff"],["jeff","bezos"],["kent","washington"],["developing","technologies"],["enable","private"],["private","human"],["human","access"],["space","withe"],["withe","goal"],["dramatically","lower"],["lower","costs"],["increase","reliability"],["reliability","blue"],["blue","origin"],["developmental","step"],["step","building"],["prior","work"],["company","motto"],["blue","origin"],["rocket","powered"],["powered","vertical"],["vertical","takeoff"],["verticalanding","vtvl"],["vtvl","vehicles"],["sub","orbital"],["orbital","spaceflight"],["spaceflight","suborbital"],["orbital","spaceflight"],["spaceflight","orbital"],["orbital","outer"],["outer","space"],["name","refers"],["blue","planet"],["planet","earth"],["sub","orbital"],["new","shepard"],["shepard","spacecraft"],["spacecraft","design"],["design","atheir"],["county","texas"],["texas","facility"],["first","developmental"],["developmental","test"],["test","flight"],["new","shepard"],["uncrewed","vehicle"],["vehicle","flew"],["planned","test"],["test","altitude"],["thand","achieved"],["top","speed"],["second","flight"],["performed","onovember"],["vehicle","went"],["beyond","altitude"],["altitude","reaching"],["reaching","space"],["bothe","space"],["space","capsule"],["rocket","booster"],["booster","successfully"],["successfully","achieved"],["soft","landing"],["landing","rocketry"],["rocketry","soft"],["soft","landing"],["landing","january"],["january","blue"],["blue","origin"],["new","shepard"],["shepard","booster"],["landed","vertically"],["vertically","inovember"],["inovember","demonstrating"],["demonstrating","reuse"],["time","new"],["new","shepard"],["shepard","reached"],["apogee","ofeet"],["earth","forecovery"],["new","shepard"],["shepard","booster"],["booster","flew"],["fourth","flights"],["altitude","beforeturning"],["successful","soft"],["soft","landings"],["first","crewed"],["crewed","test"],["test","flights"],["take","place"],["early","withe"],["withe","start"],["commercial","service"],["service","shortly"],["blue","origin"],["origin","moved"],["orbital","spaceflight"],["spaceflight","orbital"],["business","initially"],["rocket","engine"],["engine","supplier"],["new","large"],["large","rocket"],["rocket","engine"],["major","us"],["us","launch"],["launch","system"],["system","operator"],["operator","united"],["united","launch"],["launch","alliance"],["alliance","ula"],["also","considering"],["blue","origin"],["engine","used"],["used","onew"],["onew","shepard"],["use","new"],["new","second"],["second","stage"],["advanced","cryogenic"],["cryogenic","evolved"],["evolved","stage"],["primary","upper"],["upper","stage"],["ula","vulcan"],["vulcan","rocket"],["rocket","vulcan"],["vulcan","orbital"],["orbital","spaceflight"],["spaceflight","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","blue"],["blue","origin"],["origin","announced"],["announced","plans"],["also","manufacture"],["orbitalaunch","vehicle"],["florida","space"],["space","coast"],["coast","history"],["history","file"],["file","blue"],["development","spacecraft"],["spacecraft","jpg"],["three","vehicles"],["late","goddard"],["goddard","subscale"],["early","subscale"],["subscale","version"],["suborbital","new"],["new","shepard"],["shepard","propulsion"],["propulsion","module"],["larger","new"],["new","shepard"],["actually","flew"],["future","space"],["space","vehicle"],["future","orbitalaunch"],["orbitalaunch","vehicle"],["blue","origin"],["future","orbital"],["orbital","transportation"],["transportation","system"],["system","blue"],["blue","origin"],["origin","founder"],["founder","jeff"],["jeff","bezos"],["early","age"],["profile","published"],["miami","herald"],["herald","interview"],["interview","bezos"],["bezos","gave"],["high","school"],["school","class"],["year","old"],["build","space"],["space","hotels"],["hotels","amusement"],["amusement","parks"],["million","people"],["people","would"],["orbithe","whole"],["whole","idea"],["planet","would"],["would","become"],["park","blue"],["blue","origin"],["kent","washington"],["began","developing"],["rocket","propulsion"],["propulsion","systems"],["launch","vehicle"],["vehicle","since"],["formally","incorporated"],["existence","became"],["became","public"],["bezos","began"],["began","buying"],["buying","land"],["interested","parties"],["parties","followed"],["local","politics"],["bezos","rapid"],["named","shell"],["shell","companies"],["land","grab"],["january","bezos"],["bezos","told"],["told","theditor"],["van","horn"],["horn","texas"],["texas","van"],["van","horn"],["horn","advocate"],["blue","origin"],["sub","orbital"],["orbital","space"],["space","vehicle"],["vehicle","would"],["would","vtvl"],["vtvl","take"],["land","vertically"],["carry","three"],["spacecraft","would"],["technology","like"],["bezos","told"],["told","reuters"],["reuters","inovember"],["company","hoped"],["website","announced"],["space","colonization"],["colonization","enduring"],["enduring","human"],["human","presence"],["space","buthe"],["buthe","version"],["version","wrote"],["wrote","instead"],["many","people"],["solar","system"],["system","science"],["science","fiction"],["fiction","author"],["author","neal"],["worked","partime"],["credited","blue"],["blue","origin"],["origin","employees"],["blue","origin"],["new","shepard"],["commercial","suborbital"],["suborbital","tourist"],["tourist","service"],["per","week"],["publicized","timetable"],["timetable","indicated"],["fly","unmanned"],["theventhe","first"],["first","developmental"],["developmental","test"],["test","flight"],["new","shepard"],["shepard","occurred"],["uncrewed","vehicle"],["vehicle","flew"],["planned","test"],["test","altitude"],["feet","meters"],["top","speed"],["test","flights"],["take","place"],["late","blue"],["blue","origin"],["origin","projected"],["test","flights"],["flights","operate"],["could","begin"],["begin","flying"],["flying","passengers"],["new","shepard"],["interview","bezos"],["bezos","indicated"],["founded","blue"],["blue","origin"],["send","customers"],["human","spaceflight"],["july","bezos"],["blue","origin"],["origin","september"],["united","launch"],["launch","alliance"],["alliance","ula"],["ula","entered"],["partnership","whereby"],["whereby","blue"],["blue","origin"],["origin","would"],["would","produce"],["large","rocket"],["rocket","engine"],["vulcan","rocket"],["rocket","vulcan"],["atlas","v"],["v","whichas"],["whichas","launched"],["launched","us"],["us","national"],["national","security"],["exit","service"],["announcement","added"],["blue","origin"],["three","years"],["years","prior"],["public","announcement"],["thathe","first"],["first","flight"],["new","rocket"],["rocket","could"],["could","occur"],["april","new"],["new","product"],["product","development"],["blue","origin"],["origin","expected"],["ula","vulcan"],["vulcan","launch"],["launch","vehicle"],["vehicle","vulcan"],["vulcan","rocket"],["april","blue"],["blue","origin"],["origin","announced"],["completed","acceptance"],["acceptance","testing"],["would","power"],["blue","originew"],["originew","shepard"],["shepard","new"],["new","shepard"],["shepard","space"],["space","capsule"],["blue","origin"],["origin","suborbital"],["suborbital","spaceflight"],["spaceflight","suborbital"],["suborbital","flights"],["blue","origin"],["begin","test"],["test","flights"],["vehicle","later"],["withis","vehicle"],["vehicle","flying"],["autonomous","mode"],["dozens","oflights"],["test","program"],["program","taking"],["complete","following"],["following","new"],["new","shepard"],["maiden","flight"],["flight","blue"],["blue","origin"],["origin","began"],["began","accepting"],["accepting","registration"],["early","access"],["pricing","information"],["suborbital","spaceflights"],["company","employed"],["employed","approximately"],["approximately","people"],["approximately","employees"],["engineering","manufacturing"],["business","operations"],["kent","location"],["thengine","test"],["suborbital","test"],["test","flight"],["flight","facility"],["andevelopment","safety"],["integration","announced"],["blue","origin"],["provide","standardized"],["standardized","payload"],["payload","accommodations"],["experiments","flying"],["blue","origin"],["blue","originew"],["originew","shepard"],["shepard","new"],["new","shepard"],["shepard","suborbital"],["suborbital","vehicle"],["september","blue"],["blue","origin"],["unnamed","planned"],["planned","orbital"],["orbital","spaceflight"],["spaceflight","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","indicating"],["indicating","thathe"],["thathe","firstage"],["firstage","would"],["bengine","currently"],["second","stage"],["stage","would"],["recently","completed"],["rocket","engine"],["addition","blue"],["blue","origin"],["origin","announced"],["new","rocket"],["space","coast"],["coast","florida"],["florida","space"],["space","coast"],["gross","launch"],["launch","weight"],["given","bezos"],["bezos","noted"],["noted","interviews"],["interviews","thathis"],["thathis","new"],["new","launch"],["launch","vehicle"],["vehicle","would"],["space","launch"],["launch","market"],["market","competition"],["competition","compete"],["us","government"],["government","national"],["national","security"],["united","states"],["states","national"],["national","security"],["security","missions"],["missions","leaving"],["marketo","united"],["united","launch"],["launch","alliance"],["spacex","onovember"],["onovember","blue"],["blue","origin"],["origin","launched"],["new","shepard"],["shepard","rocketo"],["rocketo","space"],["altitude","ofeet"],["ofeet","kilometers"],["vertically","landed"],["rocket","booster"],["booster","less"],["capsule","descended"],["parachutes","minutes"],["landed","safely"],["earth","marking"],["major","step"],["fully","reusable"],["flight","validated"],["vehicle","architecture"],["architecture","andesign"],["ring","fin"],["fin","shifted"],["help","control"],["control","reentry"],["eight","large"],["large","drag"],["drag","brakes"],["brakes","deployed"],["terminal","speed"],["landing","pad"],["vehicle","descended"],["january","blue"],["blue","origin"],["new","shepard"],["shepard","booster"],["landed","vertically"],["vertically","inovember"],["inovember","demonstrating"],["demonstrating","reuse"],["time","new"],["new","shepard"],["shepard","reached"],["apogee","ofeet"],["ofeet","kilometers"],["earth","forecovery"],["april","new"],["new","shepard"],["shepard","booster"],["booster","flew"],["third","time"],["time","reaching"],["reaching","feet"],["returning","successfully"],["march","blue"],["kent","washington"],["washington","headquarters"],["manufacturing","facility"],["substantial","growth"],["crew","capsules"],["propulsion","modules"],["new","shepard"],["shepard","program"],["bengine","builds"],["support","full"],["full","scale"],["february","bezos"],["bezos","also"],["also","articulated"],["long","term"],["term","vision"],["space","seeing"],["industry","completely"],["earth","leaving"],["light","industrial"],["industrial","use"],["end","state"],["state","hundreds"],["people","would"],["march","manned"],["manned","test"],["test","flights"],["take","place"],["possible","commercial"],["commercial","service"],["march","bezos"],["bezos","discussed"],["plans","toffer"],["toffer","space"],["space","tourism"],["tourism","services"],["space","pointing"],["really","advancing"],["advancing","aviation"],["thearly","days"],["big","fraction"],["airplane","flights"],["tourism","playing"],["advancing","space"],["space","travel"],["rocket","launches"],["current","plans"],["niche","market"],["us","military"],["military","launches"],["launches","bezos"],["bezos","hasaid"],["blue","origin"],["origin","would"],["would","add"],["september","blue"],["blue","announced"],["announced","thatheir"],["thatheir","orbital"],["orbital","rocket"],["rocket","would"],["named","new"],["new","glenn"],["first","american"],["john","glenn"],["thathe","firstage"],["seven","blue"],["blue","origin"],["origin","bengines"],["vertically","like"],["new","shepard"],["shepard","sub"],["sub","orbital"],["orbital","spaceflight"],["spaceflight","suborbitalaunch"],["suborbitalaunch","vehicle"],["athe","time"],["new","glenn"],["glenn","bezos"],["bezos","revealed"],["revealed","thathe"],["thathe","next"],["next","project"],["project","beyond"],["beyond","new"],["new","glenn"],["glenn","would"],["new","armstrong"],["armstrong","without"],["without","detailing"],["blue","origin"],["seattle","area"],["area","office"],["rocket","production"],["production","facilities"],["adjacent","building"],["permits","filed"],["additional","office"],["office","space"],["blue","origin"],["billion","usd"],["year","funded"],["amazon","stock"],["blue","origin"],["origin","acquired"],["first","paying"],["paying","launch"],["launch","customer"],["customer","forbital"],["forbital","satellite"],["satellite","launches"],["start","launching"],["launching","tv"],["tv","satellites"],["blue","origin"],["new","glenn"],["glenn","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","facilities"],["facilities","blue"],["blue","origin"],["development","facility"],["facility","near"],["near","seattle"],["seattle","washington"],["westexas","blue"],["blue","origin"],["new","orbitalaunch"],["orbitalaunch","facility"],["cape","canaveral"],["canaveral","air"],["air","force"],["force","station"],["station","development"],["development","facility"],["kent","washington"],["seattle","washington"],["washington","seattle"],["research","andevelopment"],["early","growing"],["march","blue"],["blue","origin"],["origin","leasing"],["leasing","additional"],["additional","space"],["adjacent","office"],["office","buildings"],["kent","facility"],["facility","housed"],["housed","engineering"],["engineering","manufacturing"],["business","operations"],["person","blue"],["blue","origin"],["origin","workforce"],["additional","office"],["office","manufacturing"],["warehouse","space"],["headquarters","facilities"],["florida","facilities"],["september","blue"],["blue","origin"],["origin","leased"],["leased","launch"],["launch","complex"],["cape","canaveral"],["canaveral","florida"],["launch","pad"],["orbital","spaceflight"],["spaceflight","orbital"],["orbital","blue"],["blue","origin"],["origin","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","launch"],["launch","vehicle"],["also","plan"],["powered","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","athe"],["athe","nearby"],["nearby","exploration"],["exploration","park"],["first","blue"],["blue","origin"],["origin","launch"],["august","estimate"],["estimate","predicted"],["begin","construction"],["construction","occurred"],["june","accessed"],["accessed","july"],["engine","test"],["test","site"],["site","blue"],["blue","origin"],["suborbitalaunch","facility"],["facility","located"],["westexas","near"],["van","horn"],["horn","texas"],["texas","van"],["van","horn"],["horn","current"],["current","launch"],["launch","license"],["experimental","permits"],["us","government"],["government","federal"],["federal","aviation"],["aviation","administration"],["blue","origin"],["new","shepard"],["shepard","suborbital"],["suborbital","system"],["system","blue"],["blue","origin"],["approximately","supporting"],["westexas","facility"],["launch","pad"],["landing","pad"],["launch","pad"],["suborbitalaunch","pads"],["rocket","engine"],["engine","test"],["test","facility"],["facility","rocket"],["rocket","engine"],["engine","test"],["test","cells"],["propellant","engines"],["present","included"],["three","test"],["test","cells"],["methalox","bengine"],["bengine","alone"],["alone","two"],["two","full"],["full","test"],["test","cells"],["support","full"],["full","thrust"],["full","duration"],["duration","burns"],["duration","high"],["high","pressure"],["rocket","engine"],["engine","ignition"],["ignition","sequence"],["rocket","engine"],["launch","vehicles"],["vehicles","early"],["early","low"],["low","altitude"],["altitude","flightest"],["flightest","platforms"],["platforms","charon"],["charon","blue"],["blue","origin"],["first","flightest"],["flightest","vehicle"],["vehicle","called"],["called","charon"],["four","vertically"],["vertically","mounted"],["mounted","armstrong"],["jet","engines"],["engines","rather"],["low","altitude"],["altitude","vehicle"],["test","autonomous"],["autonomous","guidance"],["control","technologies"],["processes","thathe"],["thathe","company"],["company","would"],["would","use"],["charon","made"],["test","flight"],["moses","lake"],["lake","washington"],["washington","march"],["altitude","ofeet"],["controlled","landing"],["landing","near"],["liftoff","point"],["point","charon"],["display","athe"],["athe","museum"],["museum","oflight"],["seattle","washington"],["washington","goddard"],["vehicle","named"],["blue","origin"],["origin","goddard"],["goddard","also"],["also","known"],["first","flew"],["flew","onovember"],["flight","wasuccessful"],["test","flight"],["december","never"],["never","launched"],["launched","according"],["federal","aviation"],["aviation","administration"],["administration","records"],["records","two"],["goddard","new"],["new","shepard"],["shepard","suborbital"],["suborbital","system"],["system","file"],["file","blue"],["blue","originew"],["originew","shepard"],["shepard","launch"],["launch","april"],["april","jpg"],["jpg","thumb"],["thumb","right"],["right","new"],["new","shepard"],["shepard","launch"],["launch","april"],["april","blue"],["blue","origin"],["new","shepard"],["shepard","suborbital"],["suborbital","spaceflight"],["spaceflight","system"],["two","vehicles"],["crew","capsule"],["capsule","accommodating"],["accommodating","three"],["astronauts","launched"],["blue","origin"],["origin","propulsion"],["propulsion","module"],["module","rocket"],["rocket","booster"],["two","vehicles"],["vehicles","lift"],["vtvl","verticalanding"],["crew","capsule"],["capsule","follows"],["separate","trajectory"],["trajectory","returning"],["land","touchdown"],["intended","forecovery"],["use","new"],["new","shepard"],["controlled","entirely"],["board","computers"],["flying","astronauts"],["astronauts","new"],["new","shepard"],["provide","frequent"],["frequent","opportunities"],["fly","experiments"],["suborbital","space"],["space","file"],["file","blue"],["blue","origin"],["origin","test"],["test","landing"],["parachutes","april"],["april","jpg"],["jpg","thumb"],["thumb","left"],["left","new"],["new","shepard"],["shepard","landing"],["parachutes","april"],["federal","aviation"],["early","suborbital"],["suborbital","test"],["test","vehicle"],["augusthe","flight"],["westexas","failed"],["vehicle","blue"],["blue","origin"],["origin","released"],["vehicle","reached"],["mach","number"],["number","mach"],["flight","instability"],["instability","drove"],["drove","angle"],["range","safety"],["telemetry","system"],["system","range"],["range","safety"],["safety","system"],["vehicle","october"],["october","blue"],["blue","origin"],["origin","conducted"],["successful","new"],["new","shepherd"],["shepherd","pad"],["pad","escape"],["escape","test"],["westexas","launch"],["launch","site"],["site","firing"],["pusher","escape"],["escape","motor"],["full","scale"],["scale","crew"],["crew","capsule"],["launch","vehicle"],["vehicle","simulator"],["crew","capsule"],["capsule","traveled"],["active","thrust"],["descending","safely"],["soft","landing"],["landing","rocketry"],["rocketry","soft"],["soft","landing"],["april","blue"],["blue","origin"],["origin","announced"],["begin","autonomous"],["autonomous","robot"],["robot","autonomous"],["autonomous","flightesting"],["flightesting","test"],["test","flights"],["new","shepard"],["monthly","blue"],["blue","origin"],["origin","expected"],["dozens","oflights"],["test","program"],["program","taking"],["april","new"],["new","shepard"],["shepard","made"],["firstest","flighthe"],["flighthe","uncrewed"],["uncrewed","vehicle"],["vehicle","flew"],["planned","test"],["test","altitude"],["thand","achieved"],["top","speed"],["crew","capsule"],["capsule","separated"],["booster","beforeturning"],["parachutes","onovember"],["onovember","new"],["new","shepard"],["shepard","made"],["made","itsecond"],["itsecond","test"],["test","flight"],["flight","reaching"],["reaching","altitude"],["successful","recovery"],["crew","capsule"],["booster","successfully"],["successfully","soft"],["soft","landing"],["landing","rocketry"],["rocketry","performed"],["powered","vtvl"],["vtvl","verticalanding"],["january","blue"],["blue","origin"],["new","shepard"],["shepard","booster"],["landed","vertically"],["vertically","inovember"],["inovember","demonstrating"],["demonstrating","reuse"],["time","new"],["new","shepard"],["shepard","reached"],["apogee","ofeet"],["ofeet","kilometers"],["earth","forecovery"],["reuse","file"],["file","new"],["new","shepard"],["shepard","booster"],["crew","capsule"],["thumb","px"],["px","new"],["new","shepard"],["shepard","booster"],["crew","capsule"],["april","new"],["new","shepard"],["shepard","booster"],["booster","flew"],["third","time"],["time","reaching"],["reaching","feet"],["beforeturning","successfully"],["new","shepard"],["shepard","booster"],["booster","flew"],["fourth","time"],["time","reaching"],["reaching","feet"],["returning","successfully"],["final","test"],["test","flight"],["second","booster"],["test","capsule"],["capsule","took"],["took","place"],["october","blue"],["blue","origin"],["origin","plan"],["fly","test"],["test","astronaut"],["early","new"],["new","glenn"],["glenn","orbitalaunch"],["orbitalaunch","vehicle"],["new","glenn"],["diameter","multistage"],["three","stage"],["stage","orbital"],["orbital","spaceflight"],["spaceflight","orbitalaunch"],["orbitalaunch","vehicle"],["launch","prior"],["design","work"],["vehicle","began"],["high","level"],["level","specifications"],["publicly","announced"],["seven","bengines"],["bengines","also"],["also","designed"],["blue","origin"],["reusable","launch"],["launch","vehicle"],["vehicle","reusable"],["new","shepard"],["shepard","suborbitalaunch"],["suborbitalaunch","vehicle"],["preceded","ithe"],["ithe","second"],["second","stage"],["optional","third"],["third","stage"],["orbital","space"],["space","systems"],["systems","file"],["file","blue"],["blue","origin"],["origin","orbital"],["origin","orbital"],["orbital","space"],["space","vehicle"],["flight","rendering"],["beginning","new"],["new","product"],["product","development"],["orbital","system"],["system","prior"],["blue","origin"],["origin","announced"],["announced","thexistence"],["new","orbitalaunch"],["orbitalaunch","vehicle"],["january","blue"],["blue","origindicated"],["origindicated","thathe"],["thathe","new"],["new","rocket"],["many","times"],["times","larger"],["shepard","even"],["even","though"],["blue","origin"],["origin","orbital"],["orbital","vehicles"],["vehicles","blue"],["details","public"],["public","later"],["orbitalaunch","vehicle"],["vehicle","revealed"],["blue","origin"],["origin","orbital"],["orbital","spaceflight"],["spaceflight","orbitalaunch"],["orbitalaunch","vehicle"],["vehicle","began"],["big","brother"],["two","stage"],["stage","torbit"],["torbit","liquid"],["liquid","propellant"],["propellant","rockethe"],["rockethe","launcher"],["reusable","launch"],["launch","vehicle"],["vehicle","reusable"],["reusable","jeff"],["jeff","bezos"],["bezos","plans"],["boost","humans"],["cape","canaveral"],["canaveral","cbs"],["cbs","news"],["news","accessed"],["accessed","september"],["september","bezos"],["space","fairing"],["fairing","civilization"],["rocket","away"],["away","every"],["every","time"],["january","blue"],["blue","origin"],["origin","announced"],["announced","thathey"],["thathey","plan"],["announce","details"],["details","abouthe"],["abouthe","launch"],["launch","vehicle"],["vehicle","later"],["details","wereleased"],["march","blue"],["blue","origindicated"],["origindicated","thathe"],["thathe","first"],["first","orbitalaunch"],["florida","launch"],["launch","facility"],["blue","origin"],["single","shaft"],["shaft","oxygen"],["oxygen","rich"],["rich","staged"],["staged","combustion"],["combustion","cycle"],["cycle","staged"],["staged","combustion"],["combustion","liquid"],["liquid","methane"],["methane","liquid"],["liquid","oxygen"],["oxygen","rocket"],["rocket","engine"],["second","stage"],["recently","qualified"],["cycle","liquid"],["liquid","hydrogen"],["hydrogen","liquid"],["liquid","oxygen"],["oxygen","rocket"],["rocket","engine"],["gross","launch"],["launch","weight"],["weight","specifications"],["publicly","released"],["september","blue"],["historic","spaceport"],["spaceport","florida"],["florida","launch"],["launch","complex"],["complex","launch"],["launch","complex"],["new","facility"],["exploration","park"],["park","acceptance"],["acceptance","testing"],["bengines","also"],["florida","orbital"],["earlier","development"],["development","work"],["work","blue"],["blue","origin"],["origin","began"],["began","developing"],["developing","systems"],["systems","forbital"],["forbital","human"],["human","spacecraft"],["spacecraft","prior"],["reusable","firstage"],["firstage","booster"],["suborbital","trajectory"],["trajectory","taking"],["vertically","like"],["booster","stage"],["conventional","multistage"],["multistage","rocket"],["rocket","following"],["following","stage"],["stage","separation"],["upper","stage"],["stage","would"],["would","continue"],["propel","astronauts"],["astronauts","torbit"],["firstage","booster"],["powered","verticalanding"],["verticalanding","similar"],["new","shepard"],["shepard","suborbital"],["suborbital","propulsion"],["propulsion","module"],["firstage","booster"],["booster","would"],["allowing","improved"],["improved","reliability"],["human","access"],["loft","blue"],["blue","origin"],["space","vehicle"],["vehicle","torbit"],["torbit","carrying"],["carrying","astronauts"],["space","vehicle"],["future","missions"],["earth","orbit"],["orbit","blue"],["blue","origin"],["origin","successfully"],["successfully","completed"],["system","requirements"],["requirements","review"],["orbital","space"],["space","vehicle"],["may","engine"],["engine","testing"],["reusable","booster"],["booster","system"],["vehicle","began"],["full","power"],["power","test"],["thrust","chamber"],["blue","origin"],["liquid","oxygen"],["oxygen","liquid"],["liquid","hydrogen"],["hydrogen","rocket"],["rocket","engine"],["john","c"],["nasa","test"],["test","facility"],["chamber","successfully"],["successfully","achieved"],["achieved","full"],["full","thrust"],["test","flights"],["flights","class"],["class","wikitable"],["wikitable","date"],["date","vehicle"],["vehicle","notes"],["reached","altitude"],["november","blue"],["blue","origin"],["origin","goddard"],["goddard","first"],["first","rocket"],["rocket","powered"],["powered","test"],["test","flight"],["flight","march"],["march","goddard"],["goddard","april"],["april","goddard"],["goddard","may"],["failure","loss"],["vehicle","october"],["october","new"],["new","shepard"],["shepard","space"],["space","capsule"],["pad","escape"],["escape","test"],["test","flight"],["flight","april"],["april","new"],["new","shepard"],["shepard","successful"],["successful","atmospheric"],["atmospheric","flighto"],["flighto","altitude"],["capsule","soft"],["soft","landing"],["landing","rocketry"],["rocketry","recovered"],["landing","november"],["november","new"],["new","shepard"],["shepard","successful"],["successful","sub"],["sub","orbital"],["orbital","spaceflight"],["landing","january"],["january","new"],["new","shepard"],["shepard","successful"],["successful","sub"],["sub","orbital"],["orbital","flight"],["reused","booster"],["booster","april"],["april","new"],["new","shepard"],["shepard","successful"],["successful","sub"],["sub","orbital"],["orbital","flight"],["reused","booster"],["shepard","successful"],["successful","sub"],["sub","orbital"],["orbital","flight"],["reused","booster"],["fourth","launch"],["rocket","blue"],["blue","origin"],["origin","published"],["landing","october"],["october","new"],["new","shepard"],["shepard","successful"],["successful","sub"],["sub","orbital"],["orbital","flight"],["reused","booster"],["rocket","engine"],["engine","development"],["blue","origin"],["origin","publicly"],["publicly","announced"],["product","development"],["new","liquid"],["liquid","hydrogen"],["hydrogen","liquid"],["liquid","oxygen"],["lox","cryogenic"],["cryogenic","engine"],["full","power"],["rocket","engine"],["controlled","vtvl"],["early","thrust"],["thrust","chamber"],["chamber","testing"],["testing","began"],["nasa","stennis"],["successfully","tested"],["full","duration"],["duration","suborbital"],["suborbital","burn"],["simulated","coast"],["coast","phases"],["demonstrating","deep"],["full","power"],["power","long"],["long","duration"],["rocket","engine"],["single","test"],["test","sequence"],["sequence","nasa"],["blue","origin"],["origin","test"],["test","facility"],["facility","near"],["near","van"],["van","horn"],["horn","texas"],["texas","blue"],["blue","origin"],["origin","tests"],["tests","new"],["new","engine"],["engine","aviation"],["aviation","week"],["week","accessed"],["accessed","september"],["september","bengine"],["bengine","acceptance"],["acceptance","testing"],["test","firings"],["run","time"],["bengine","powers"],["blue","originew"],["originew","shepard"],["shepard","new"],["new","shepard"],["shepard","space"],["space","capsule"],["blue","origin"],["origin","suborbital"],["suborbital","spaceflight"],["spaceflight","suborbital"],["suborbital","flights"],["upper","stage"],["blue","origin"],["origin","orbital"],["orbital","spaceflight"],["spaceflight","orbitalaunch"],["orbitalaunch","vehicle"],["better","optimized"],["vacuum","outer"],["outer","space"],["space","vacuum"],["vacuum","conditions"],["blue","origin"],["origin","began"],["began","work"],["new","engine"],["blue","origin"],["first","engine"],["liquid","oxygen"],["oxygen","liquid"],["liquid","methane"],["methane","rocket"],["rocket","propellants"],["propellants","thengine"],["initially","planned"],["used","exclusively"],["blue","origin"],["origin","proprietary"],["proprietary","launch"],["launch","vehicle"],["vehicle","blue"],["blue","origin"],["new","engine"],["late","blue"],["blue","origin"],["origin","signed"],["united","launch"],["launch","alliance"],["use","new"],["new","engine"],["atlas","v"],["v","replacement"],["engine","upgraded"],["upgraded","atlas"],["atlas","v"],["v","launch"],["launch","vehicle"],["vehicle","replacing"],["atlas","v"],["v","successor"],["successor","new"],["new","launch"],["launch","vehicle"],["use","twof"],["firstage","rocketry"],["rocketry","firstage"],["firstage","thengine"],["thengine","development"],["development","program"],["program","began"],["ula","expects"],["first","flight"],["new","launch"],["launch","vehicle"],["vehicle","vulcan"],["vulcan","rocket"],["pusher","escape"],["escape","motor"],["motor","blue"],["blue","originew"],["originew","product"],["product","development"],["development","developed"],["pusher","escape"],["escape","motor"],["crew","capsule"],["late","blue"],["blue","origin"],["origin","performed"],["full","scale"],["scale","flightest"],["thescape","system"],["full","scale"],["scale","suborbital"],["suborbital","capsule"],["capsule","funding"],["july","jeff"],["jeff","bezos"],["blue","origin"],["origin","even"],["vast","majority"],["majority","ofunding"],["support","new"],["new","product"],["product","development"],["blue","origin"],["jeff","bezos"],["bezos","market"],["market","capitalism"],["capitalism","private"],["private","investment"],["publicly","state"],["amount","prior"],["annual","amount"],["publicly","blue"],["blue","origin"],["also","completed"],["completed","work"],["several","small"],["small","development"],["development","contracts"],["contracts","receiving"],["receiving","total"],["total","funding"],["amazoncom","amazon"],["amazon","stock"],["privatequity","privately"],["privately","finance"],["finance","blue"],["blue","origin"],["nasa","blue"],["blue","origin"],["several","development"],["development","efforts"],["nasa","via"],["via","space"],["space","act"],["act","agreement"],["ccdev","first"],["first","commercial"],["commercial","crew"],["crew","development"],["development","ccdev"],["ccdev","program"],["support","future"],["future","human"],["human","spaceflight"],["spaceflight","operations"],["operations","nasa"],["funded","risk"],["risk","mitigation"],["mitigation","activities"],["activities","related"],["ground","testing"],["innovative","pusher"],["pusher","escape"],["escape","system"],["traditional","tractor"],["tractor","launch"],["launch","escape"],["escape","system"],["innovative","composite"],["composite","pressure"],["pressure","vessel"],["vessel","cabin"],["reduces","weight"],["larger","system"],["system","designed"],["launched","atop"],["atlas","v"],["v","rocket"],["rocket","onovember"],["blue","origin"],["ccdev","space"],["space","act"],["act","agreement"],["april","blue"],["blue","origin"],["origin","received"],["ccdev","phase"],["included","performing"],["mission","concept"],["concept","review"],["system","requirements"],["requirements","review"],["orbital","space"],["space","vehicle"],["shape","toptimize"],["launch","profile"],["atmospheric","reentry"],["pusher","escape"],["escape","system"],["full","scale"],["scale","thrust"],["thrust","chamber"],["chamber","testing"],["commercial","crew"],["crew","program"],["program","released"],["crew","delivery"],["blue","origin"],["reportedly","continuing"],["continuing","work"],["development","program"],["private","funding"],["funding","blue"],["blue","origin"],["earlier","attempted"],["different","part"],["space","coast"],["lease","kennedy"],["kennedy","spacenter"],["spacenter","launch"],["launch","complex"],["complex","launch"],["launch","complex"],["athe","kennedy"],["kennedy","spacenter"],["adjacento","cape"],["cape","canaveral"],["following","nasa"],["unused","complex"],["reduce","annual"],["annual","operation"],["maintenance","costs"],["blue","origin"],["origin","bid"],["non","exclusive"],["exclusive","use"],["multiple","launch"],["launch","vehicles"],["launch","pad"],["shared","across"],["across","multiple"],["multiple","companies"],["lease","one"],["one","potential"],["potential","shared"],["shared","user"],["united","launch"],["launch","alliance"],["competing","bid"],["private","spaceflight"],["spaceflight","commercial"],["commercial","use"],["launch","complex"],["exclusive","use"],["launch","complex"],["supportheir","human"],["human","spaceflight"],["spaceflight","crewed"],["crewed","missions"],["september","prior"],["bid","period"],["public","announcement"],["process","blue"],["blue","origin"],["origin","filed"],["protest","withe"],["withe","federal"],["federal","government"],["united","states"],["states","us"],["us","general"],["general","accounting"],["accounting","office"],["space","shuttle"],["shuttle","launch"],["launch","pad"],["bid","award"],["pad","transferred"],["october","buthe"],["buthe","protest"],["gao","reaches"],["decision","expected"],["spacex","said"],["said","thathey"],["thathey","would"],["multi","user"],["user","arrangement"],["gao","denied"],["blue","origin"],["origin","protest"],["argued","thathe"],["thathe","solicitation"],["solicitation","contained"],["either","multi"],["multi","use"],["single","use"],["solicitation","document"],["document","merely"],["merely","asked"],["selecting","one"],["one","approach"],["approach","instead"],["would","manage"],["thevent","nasa"],["nasa","selected"],["spacex","proposal"],["year","lease"],["lease","contract"],["launch","pad"],["april","blue"],["blue","origin"],["program","see"],["see","also"],["also","armadillo"],["armadillo","aerospace"],["lockheed","martin"],["martin","x"],["x","lunar"],["lunar","lander"],["lander","challenge"],["space","systems"],["x","newspace"],["newspace","quad"],["quad","rocket"],["rocket","reusable"],["reusable","vehicle"],["vehicle","testing"],["testing","program"],["spacex","reusable"],["reusable","launch"],["launch","system"],["system","development"],["development","program"],["zarya","spacecraft"],["spacecraft","zarya"],["zarya","references"],["references","externalinks"],["externalinks","amazon"],["amazon","enters"],["space","race"],["race","wired"],["wired","magazine"],["magazine","july"],["july","amazon"],["amazon","ceo"],["ceo","gives"],["gives","us"],["space","plans"],["january","article"],["seattle","times"],["times","amazoncom"],["amazoncom","founder"],["founder","space"],["space","venture"],["westexas","county"],["seattle","post"],["march","blue"],["blue","origin"],["origin","westexas"],["westexas","commercialaunch"],["assessment","latest"],["latest","blue"],["space","fellowship"],["fellowship","internet"],["herald","april"],["april","category"],["category","blue"],["blue","origin"],["origin","category"],["category","private"],["private","spaceflight"],["spaceflight","companies"],["companies","category"],["category","commercial"],["commercial","spaceflight"],["spaceflight","category"],["category","rocket"],["rocket","engine"],["engine","manufacturers"],["manufacturers","category"],["category","space"],["space","tourism"],["tourism","category"],["category","aerospace"],["aerospace","companies"],["united","states"],["states","category"],["category","space"],["space","act"],["act","agreement"],["agreement","companies"],["companies","category"],["category","companies"],["companies","based"],["kent","washington"],["washington","category"],["county","texas"],["texas","category"],["category","companiestablished"]],"all_collocations":["founder jeff","jeff bezos","location city","city kent","kent washington","location country","country united","united states","states key","key people","people jeff","jeff bezos","bezos rob","rocket engine","engine manufacturing","manufacturing planning","human spaceflight","owner jeff","blue origin","origin florida","origin texas","website num","revenue blue","blue origin","american private","private spaceflight","spaceflight privately","privately funded","funded aerospace","aerospace manufacturer","spaceflight services","services company","company set","amazoncom founder","founder jeff","jeff bezos","kent washington","developing technologies","enable private","private human","human access","space withe","withe goal","dramatically lower","lower costs","increase reliability","reliability blue","blue origin","developmental step","step building","prior work","company motto","blue origin","rocket powered","powered vertical","vertical takeoff","verticalanding vtvl","vtvl vehicles","sub orbital","orbital spaceflight","spaceflight suborbital","orbital spaceflight","spaceflight orbital","orbital outer","outer space","name refers","blue planet","planet earth","sub orbital","new shepard","shepard spacecraft","spacecraft design","design atheir","county texas","texas facility","first developmental","developmental test","test flight","new shepard","uncrewed vehicle","vehicle flew","planned test","test altitude","thand achieved","top speed","second flight","performed onovember","vehicle went","beyond altitude","altitude reaching","reaching space","bothe space","space capsule","rocket booster","booster successfully","successfully achieved","soft landing","landing rocketry","rocketry soft","soft landing","landing january","january blue","blue origin","new shepard","shepard booster","landed vertically","vertically inovember","inovember demonstrating","demonstrating reuse","time new","new shepard","shepard reached","apogee ofeet","earth forecovery","new shepard","shepard booster","booster flew","fourth flights","altitude beforeturning","successful soft","soft landings","first crewed","crewed test","test flights","take place","early withe","withe start","commercial service","service shortly","blue origin","origin moved","orbital spaceflight","spaceflight orbital","business initially","rocket engine","engine supplier","new large","large rocket","rocket engine","major us","us launch","launch system","system operator","operator united","united launch","launch alliance","alliance ula","also considering","blue origin","engine used","used onew","onew shepard","use new","new second","second stage","advanced cryogenic","cryogenic evolved","evolved stage","primary upper","upper stage","ula vulcan","vulcan rocket","rocket vulcan","vulcan orbital","orbital spaceflight","spaceflight orbitalaunch","orbitalaunch vehicle","vehicle blue","blue origin","origin announced","announced plans","also manufacture","orbitalaunch vehicle","florida space","space coast","coast history","history file","file blue","development spacecraft","spacecraft jpg","three vehicles","late goddard","goddard subscale","early subscale","subscale version","suborbital new","new shepard","shepard propulsion","propulsion module","larger new","new shepard","actually flew","future space","space vehicle","future orbitalaunch","orbitalaunch vehicle","blue origin","future orbital","orbital transportation","transportation system","system blue","blue origin","origin founder","founder jeff","jeff bezos","early age","profile published","miami herald","herald interview","interview bezos","bezos gave","high school","school class","year old","build space","space hotels","hotels amusement","amusement parks","million people","people would","orbithe whole","whole idea","planet would","would become","park blue","blue origin","kent washington","began developing","rocket propulsion","propulsion systems","launch vehicle","vehicle since","formally incorporated","existence became","became public","bezos began","began buying","buying land","interested parties","parties followed","local politics","bezos rapid","named shell","shell companies","land grab","january bezos","bezos told","told theditor","van horn","horn texas","texas van","van horn","horn advocate","blue origin","sub orbital","orbital space","space vehicle","vehicle would","would vtvl","vtvl take","land vertically","carry three","spacecraft would","technology like","bezos told","told reuters","reuters inovember","company hoped","website announced","space colonization","colonization enduring","enduring human","human presence","space buthe","buthe version","version wrote","wrote instead","many people","solar system","system science","science fiction","fiction author","author neal","worked partime","credited blue","blue origin","origin employees","blue origin","new shepard","commercial suborbital","suborbital tourist","tourist service","per week","publicized timetable","timetable indicated","fly unmanned","theventhe first","first developmental","developmental test","test flight","new shepard","shepard occurred","uncrewed vehicle","vehicle flew","planned test","test altitude","feet meters","top speed","test flights","take place","late blue","blue origin","origin projected","test flights","flights operate","could begin","begin flying","flying passengers","new shepard","interview bezos","bezos indicated","founded blue","blue origin","send customers","human spaceflight","july bezos","blue origin","origin september","united launch","launch alliance","alliance ula","ula entered","partnership whereby","whereby blue","blue origin","origin would","would produce","large rocket","rocket engine","vulcan rocket","rocket vulcan","atlas v","v whichas","whichas launched","launched us","us national","national security","exit service","announcement added","blue origin","three years","years prior","public announcement","thathe first","first flight","new rocket","rocket could","could occur","april new","new product","product development","blue origin","origin expected","ula vulcan","vulcan launch","launch vehicle","vehicle vulcan","vulcan rocket","april blue","blue origin","origin announced","completed acceptance","acceptance testing","would power","blue originew","originew shepard","shepard new","new shepard","shepard space","space capsule","blue origin","origin suborbital","suborbital spaceflight","spaceflight suborbital","suborbital flights","blue origin","begin test","test flights","vehicle later","withis vehicle","vehicle flying","autonomous mode","dozens oflights","test program","program taking","complete following","following new","new shepard","maiden flight","flight blue","blue origin","origin began","began accepting","accepting registration","early access","pricing information","suborbital spaceflights","company employed","employed approximately","approximately people","approximately employees","engineering manufacturing","business operations","kent location","thengine test","suborbital test","test flight","flight facility","andevelopment safety","integration announced","blue origin","provide standardized","standardized payload","payload accommodations","experiments flying","blue origin","blue originew","originew shepard","shepard new","new shepard","shepard suborbital","suborbital vehicle","september blue","blue origin","unnamed planned","planned orbital","orbital spaceflight","spaceflight orbitalaunch","orbitalaunch vehicle","vehicle indicating","indicating thathe","thathe firstage","firstage would","bengine currently","second stage","stage would","recently completed","rocket engine","addition blue","blue origin","origin announced","new rocket","space coast","coast florida","florida space","space coast","gross launch","launch weight","given bezos","bezos noted","noted interviews","interviews thathis","thathis new","new launch","launch vehicle","vehicle would","space launch","launch market","market competition","competition compete","us government","government national","national security","united states","states national","national security","security missions","missions leaving","marketo united","united launch","launch alliance","spacex onovember","onovember blue","blue origin","origin launched","new shepard","shepard rocketo","rocketo space","altitude ofeet","ofeet kilometers","vertically landed","rocket booster","booster less","capsule descended","parachutes minutes","landed safely","earth marking","major step","fully reusable","flight validated","vehicle architecture","architecture andesign","ring fin","fin shifted","help control","control reentry","eight large","large drag","drag brakes","brakes deployed","terminal speed","landing pad","vehicle descended","january blue","blue origin","new shepard","shepard booster","landed vertically","vertically inovember","inovember demonstrating","demonstrating reuse","time new","new shepard","shepard reached","apogee ofeet","ofeet kilometers","earth forecovery","april new","new shepard","shepard booster","booster flew","third time","time reaching","reaching feet","returning successfully","march blue","kent washington","washington headquarters","manufacturing facility","substantial growth","crew capsules","propulsion modules","new shepard","shepard program","bengine builds","support full","full scale","february bezos","bezos also","also articulated","long term","term vision","space seeing","industry completely","earth leaving","light industrial","industrial use","end state","state hundreds","people would","march manned","manned test","test flights","take place","possible commercial","commercial service","march bezos","bezos discussed","plans toffer","toffer space","space tourism","tourism services","space pointing","really advancing","advancing aviation","thearly days","big fraction","airplane flights","tourism playing","advancing space","space travel","rocket launches","current plans","niche market","us military","military launches","launches bezos","bezos hasaid","blue origin","origin would","would add","september blue","blue announced","announced thatheir","thatheir orbital","orbital rocket","rocket would","named new","new glenn","first american","john glenn","thathe firstage","seven blue","blue origin","origin bengines","vertically like","new shepard","shepard sub","sub orbital","orbital spaceflight","spaceflight suborbitalaunch","suborbitalaunch vehicle","athe time","new glenn","glenn bezos","bezos revealed","revealed thathe","thathe next","next project","project beyond","beyond new","new glenn","glenn would","new armstrong","armstrong without","without detailing","blue origin","seattle area","area office","rocket production","production facilities","adjacent building","permits filed","additional office","office space","blue origin","billion usd","year funded","amazon stock","blue origin","origin acquired","first paying","paying launch","launch customer","customer forbital","forbital satellite","satellite launches","start launching","launching tv","tv satellites","blue origin","new glenn","glenn orbitalaunch","orbitalaunch vehicle","vehicle facilities","facilities blue","blue origin","development facility","facility near","near seattle","seattle washington","westexas blue","blue origin","new orbitalaunch","orbitalaunch facility","cape canaveral","canaveral air","air force","force station","station development","development facility","kent washington","seattle washington","washington seattle","research andevelopment","early growing","march blue","blue origin","origin leasing","leasing additional","additional space","adjacent office","office buildings","kent facility","facility housed","housed engineering","engineering manufacturing","business operations","person blue","blue origin","origin workforce","additional office","office manufacturing","warehouse space","headquarters facilities","florida facilities","september blue","blue origin","origin leased","leased launch","launch complex","cape canaveral","canaveral florida","launch pad","orbital spaceflight","spaceflight orbital","orbital blue","blue origin","origin orbitalaunch","orbitalaunch vehicle","vehicle launch","launch vehicle","also plan","powered orbitalaunch","orbitalaunch vehicle","vehicle athe","athe nearby","nearby exploration","exploration park","first blue","blue origin","origin launch","august estimate","estimate predicted","begin construction","construction occurred","june accessed","accessed july","engine test","test site","site blue","blue origin","suborbitalaunch facility","facility located","westexas near","van horn","horn texas","texas van","van horn","horn current","current launch","launch license","experimental permits","us government","government federal","federal aviation","aviation administration","blue origin","new shepard","shepard suborbital","suborbital system","system blue","blue origin","approximately supporting","westexas facility","launch pad","landing pad","launch pad","suborbitalaunch pads","rocket engine","engine test","test facility","facility rocket","rocket engine","engine test","test cells","propellant engines","present included","three test","test cells","methalox bengine","bengine alone","alone two","two full","full test","test cells","support full","full thrust","full duration","duration burns","duration high","high pressure","rocket engine","engine ignition","ignition sequence","rocket engine","launch vehicles","vehicles early","early low","low altitude","altitude flightest","flightest platforms","platforms charon","charon blue","blue origin","first flightest","flightest vehicle","vehicle called","called charon","four vertically","vertically mounted","mounted armstrong","jet engines","engines rather","low altitude","altitude vehicle","test autonomous","autonomous guidance","control technologies","processes thathe","thathe company","company would","would use","charon made","test flight","moses lake","lake washington","washington march","altitude ofeet","controlled landing","landing near","liftoff point","point charon","display athe","athe museum","museum oflight","seattle washington","washington goddard","vehicle named","blue origin","origin goddard","goddard also","also known","first flew","flew onovember","flight wasuccessful","test flight","december never","never launched","launched according","federal aviation","aviation administration","administration records","records two","goddard new","new shepard","shepard suborbital","suborbital system","system file","file blue","blue originew","originew shepard","shepard launch","launch april","april jpg","right new","new shepard","shepard launch","launch april","april blue","blue origin","new shepard","shepard suborbital","suborbital spaceflight","spaceflight system","two vehicles","crew capsule","capsule accommodating","accommodating three","astronauts launched","blue origin","origin propulsion","propulsion module","module rocket","rocket booster","two vehicles","vehicles lift","vtvl verticalanding","crew capsule","capsule follows","separate trajectory","trajectory returning","land touchdown","intended forecovery","use new","new shepard","controlled entirely","board computers","flying astronauts","astronauts new","new shepard","provide frequent","frequent opportunities","fly experiments","suborbital space","space file","file blue","blue origin","origin test","test landing","parachutes april","april jpg","left new","new shepard","shepard landing","parachutes april","federal aviation","early suborbital","suborbital test","test vehicle","augusthe flight","westexas failed","vehicle blue","blue origin","origin released","vehicle reached","mach number","number mach","flight instability","instability drove","drove angle","range safety","telemetry system","system range","range safety","safety system","vehicle october","october blue","blue origin","origin conducted","successful new","new shepherd","shepherd pad","pad escape","escape test","westexas launch","launch site","site firing","pusher escape","escape motor","full scale","scale crew","crew capsule","launch vehicle","vehicle simulator","crew capsule","capsule traveled","active thrust","descending safely","soft landing","landing rocketry","rocketry soft","soft landing","april blue","blue origin","origin announced","begin autonomous","autonomous robot","robot autonomous","autonomous flightesting","flightesting test","test flights","new shepard","monthly blue","blue origin","origin expected","dozens oflights","test program","program taking","april new","new shepard","shepard made","firstest flighthe","flighthe uncrewed","uncrewed vehicle","vehicle flew","planned test","test altitude","thand achieved","top speed","crew capsule","capsule separated","booster beforeturning","parachutes onovember","onovember new","new shepard","shepard made","made itsecond","itsecond test","test flight","flight reaching","reaching altitude","successful recovery","crew capsule","booster successfully","successfully soft","soft landing","landing rocketry","rocketry performed","powered vtvl","vtvl verticalanding","january blue","blue origin","new shepard","shepard booster","landed vertically","vertically inovember","inovember demonstrating","demonstrating reuse","time new","new shepard","shepard reached","apogee ofeet","ofeet kilometers","earth forecovery","reuse file","file new","new shepard","shepard booster","crew capsule","px new","new shepard","shepard booster","crew capsule","april new","new shepard","shepard booster","booster flew","third time","time reaching","reaching feet","beforeturning successfully","new shepard","shepard booster","booster flew","fourth time","time reaching","reaching feet","returning successfully","final test","test flight","second booster","test capsule","capsule took","took place","october blue","blue origin","origin plan","fly test","test astronaut","early new","new glenn","glenn orbitalaunch","orbitalaunch vehicle","new glenn","diameter multistage","three stage","stage orbital","orbital spaceflight","spaceflight orbitalaunch","orbitalaunch vehicle","launch prior","design work","vehicle began","high level","level specifications","publicly announced","seven bengines","bengines also","also designed","blue origin","reusable launch","launch vehicle","vehicle reusable","new shepard","shepard suborbitalaunch","suborbitalaunch vehicle","preceded ithe","ithe second","second stage","optional third","third stage","orbital space","space systems","systems file","file blue","blue origin","origin orbital","origin orbital","orbital space","space vehicle","flight rendering","beginning new","new product","product development","orbital system","system prior","blue origin","origin announced","announced thexistence","new orbitalaunch","orbitalaunch vehicle","january blue","blue origindicated","origindicated thathe","thathe new","new rocket","many times","times larger","shepard even","even though","blue origin","origin orbital","orbital vehicles","vehicles blue","details public","public later","orbitalaunch vehicle","vehicle revealed","blue origin","origin orbital","orbital spaceflight","spaceflight orbitalaunch","orbitalaunch vehicle","vehicle began","big brother","two stage","stage torbit","torbit liquid","liquid propellant","propellant rockethe","rockethe launcher","reusable launch","launch vehicle","vehicle reusable","reusable jeff","jeff bezos","bezos plans","boost humans","cape canaveral","canaveral cbs","cbs news","news accessed","accessed september","september bezos","space fairing","fairing civilization","rocket away","away every","every time","january blue","blue origin","origin announced","announced thathey","thathey plan","announce details","details abouthe","abouthe launch","launch vehicle","vehicle later","details wereleased","march blue","blue origindicated","origindicated thathe","thathe first","first orbitalaunch","florida launch","launch facility","blue origin","single shaft","shaft oxygen","oxygen rich","rich staged","staged combustion","combustion cycle","cycle staged","staged combustion","combustion liquid","liquid methane","methane liquid","liquid oxygen","oxygen rocket","rocket engine","second stage","recently qualified","cycle liquid","liquid hydrogen","hydrogen liquid","liquid oxygen","oxygen rocket","rocket engine","gross launch","launch weight","weight specifications","publicly released","september blue","historic spaceport","spaceport florida","florida launch","launch complex","complex launch","launch complex","new facility","exploration park","park acceptance","acceptance testing","bengines also","florida orbital","earlier development","development work","work blue","blue origin","origin began","began developing","developing systems","systems forbital","forbital human","human spacecraft","spacecraft prior","reusable firstage","firstage booster","suborbital trajectory","trajectory taking","vertically like","booster stage","conventional multistage","multistage rocket","rocket following","following stage","stage separation","upper stage","stage would","would continue","propel astronauts","astronauts torbit","firstage booster","powered verticalanding","verticalanding similar","new shepard","shepard suborbital","suborbital propulsion","propulsion module","firstage booster","booster would","allowing improved","improved reliability","human access","loft blue","blue origin","space vehicle","vehicle torbit","torbit carrying","carrying astronauts","space vehicle","future missions","earth orbit","orbit blue","blue origin","origin successfully","successfully completed","system requirements","requirements review","orbital space","space vehicle","may engine","engine testing","reusable booster","booster system","vehicle began","full power","power test","thrust chamber","blue origin","liquid oxygen","oxygen liquid","liquid hydrogen","hydrogen rocket","rocket engine","john c","nasa test","test facility","chamber successfully","successfully achieved","achieved full","full thrust","test flights","flights class","wikitable date","date vehicle","vehicle notes","reached altitude","november blue","blue origin","origin goddard","goddard first","first rocket","rocket powered","powered test","test flight","flight march","march goddard","goddard april","april goddard","goddard may","failure loss","vehicle october","october new","new shepard","shepard space","space capsule","pad escape","escape test","test flight","flight april","april new","new shepard","shepard successful","successful atmospheric","atmospheric flighto","flighto altitude","capsule soft","soft landing","landing rocketry","rocketry recovered","landing november","november new","new shepard","shepard successful","successful sub","sub orbital","orbital spaceflight","landing january","january new","new shepard","shepard successful","successful sub","sub orbital","orbital flight","reused booster","booster april","april new","new shepard","shepard successful","successful sub","sub orbital","orbital flight","reused booster","shepard successful","successful sub","sub orbital","orbital flight","reused booster","fourth launch","rocket blue","blue origin","origin published","landing october","october new","new shepard","shepard successful","successful sub","sub orbital","orbital flight","reused booster","rocket engine","engine development","blue origin","origin publicly","publicly announced","product development","new liquid","liquid hydrogen","hydrogen liquid","liquid oxygen","lox cryogenic","cryogenic engine","full power","rocket engine","controlled vtvl","early thrust","thrust chamber","chamber testing","testing began","nasa stennis","successfully tested","full duration","duration suborbital","suborbital burn","simulated coast","coast phases","demonstrating deep","full power","power long","long duration","rocket engine","single test","test sequence","sequence nasa","blue origin","origin test","test facility","facility near","near van","van horn","horn texas","texas blue","blue origin","origin tests","tests new","new engine","engine aviation","aviation week","week accessed","accessed september","september bengine","bengine acceptance","acceptance testing","test firings","run time","bengine powers","blue originew","originew shepard","shepard new","new shepard","shepard space","space capsule","blue origin","origin suborbital","suborbital spaceflight","spaceflight suborbital","suborbital flights","upper stage","blue origin","origin orbital","orbital spaceflight","spaceflight orbitalaunch","orbitalaunch vehicle","better optimized","vacuum outer","outer space","space vacuum","vacuum conditions","blue origin","origin began","began work","new engine","blue origin","first engine","liquid oxygen","oxygen liquid","liquid methane","methane rocket","rocket propellants","propellants thengine","initially planned","used exclusively","blue origin","origin proprietary","proprietary launch","launch vehicle","vehicle blue","blue origin","new engine","late blue","blue origin","origin signed","united launch","launch alliance","use new","new engine","atlas v","v replacement","engine upgraded","upgraded atlas","atlas v","v launch","launch vehicle","vehicle replacing","atlas v","v successor","successor new","new launch","launch vehicle","use twof","firstage rocketry","rocketry firstage","firstage thengine","thengine development","development program","program began","ula expects","first flight","new launch","launch vehicle","vehicle vulcan","vulcan rocket","pusher escape","escape motor","motor blue","blue originew","originew product","product development","development developed","pusher escape","escape motor","crew capsule","late blue","blue origin","origin performed","full scale","scale flightest","thescape system","full scale","scale suborbital","suborbital capsule","capsule funding","july jeff","jeff bezos","blue origin","origin even","vast majority","majority ofunding","support new","new product","product development","blue origin","jeff bezos","bezos market","market capitalism","capitalism private","private investment","publicly state","amount prior","annual amount","publicly blue","blue origin","also completed","completed work","several small","small development","development contracts","contracts receiving","receiving total","total funding","amazoncom amazon","amazon stock","privatequity privately","privately finance","finance blue","blue origin","nasa blue","blue origin","several development","development efforts","nasa via","via space","space act","act agreement","ccdev first","first commercial","commercial crew","crew development","development ccdev","ccdev program","support future","future human","human spaceflight","spaceflight operations","operations nasa","funded risk","risk mitigation","mitigation activities","activities related","ground testing","innovative pusher","pusher escape","escape system","traditional tractor","tractor launch","launch escape","escape system","innovative composite","composite pressure","pressure vessel","vessel cabin","reduces weight","larger system","system designed","launched atop","atlas v","v rocket","rocket onovember","blue origin","ccdev space","space act","act agreement","april blue","blue origin","origin received","ccdev phase","included performing","mission concept","concept review","system requirements","requirements review","orbital space","space vehicle","shape toptimize","launch profile","atmospheric reentry","pusher escape","escape system","full scale","scale thrust","thrust chamber","chamber testing","commercial crew","crew program","program released","crew delivery","blue origin","reportedly continuing","continuing work","development program","private funding","funding blue","blue origin","earlier attempted","different part","space coast","lease kennedy","kennedy spacenter","spacenter launch","launch complex","complex launch","launch complex","athe kennedy","kennedy spacenter","adjacento cape","cape canaveral","following nasa","unused complex","reduce annual","annual operation","maintenance costs","blue origin","origin bid","non exclusive","exclusive use","multiple launch","launch vehicles","launch pad","shared across","across multiple","multiple companies","lease one","one potential","potential shared","shared user","united launch","launch alliance","competing bid","private spaceflight","spaceflight commercial","commercial use","launch complex","exclusive use","launch complex","supportheir human","human spaceflight","spaceflight crewed","crewed missions","september prior","bid period","public announcement","process blue","blue origin","origin filed","protest withe","withe federal","federal government","united states","states us","us general","general accounting","accounting office","space shuttle","shuttle launch","launch pad","bid award","pad transferred","october buthe","buthe protest","gao reaches","decision expected","spacex said","said thathey","thathey would","multi user","user arrangement","gao denied","blue origin","origin protest","argued thathe","thathe solicitation","solicitation contained","either multi","multi use","single use","solicitation document","document merely","merely asked","selecting one","one approach","approach instead","would manage","thevent nasa","nasa selected","spacex proposal","year lease","lease contract","launch pad","april blue","blue origin","program see","see also","also armadillo","armadillo aerospace","lockheed martin","martin x","x lunar","lunar lander","lander challenge","space systems","x newspace","newspace quad","quad rocket","rocket reusable","reusable vehicle","vehicle testing","testing program","spacex reusable","reusable launch","launch system","system development","development program","zarya spacecraft","spacecraft zarya","zarya references","references externalinks","externalinks amazon","amazon enters","space race","race wired","wired magazine","magazine july","july amazon","amazon ceo","ceo gives","gives us","space plans","january article","seattle times","times amazoncom","amazoncom founder","founder space","space venture","westexas county","seattle post","march blue","blue origin","origin westexas","westexas commercialaunch","assessment latest","latest blue","space fellowship","fellowship internet","herald april","april category","category blue","blue origin","origin category","category private","private spaceflight","spaceflight companies","companies category","category commercial","commercial spaceflight","spaceflight category","category rocket","rocket engine","engine manufacturers","manufacturers category","category space","space tourism","tourism category","category aerospace","aerospace companies","united states","states category","category space","space act","act agreement","agreement companies","companies category","category companies","companies based","kent washington","washington category","county texas","texas category","category companiestablished"],"new_description":"founder jeff_bezos location location_city kent washington location_country_united states key_people jeff_bezos rob products rocket_engine manufacturing planning human_spaceflight early owner jeff blue_origin florida origin texas website num revenue blue_origin american private_spaceflight privately_funded aerospace manufacturer spaceflight services company set amazoncom founder jeff_bezos headquarters kent washington company developing technologies enable private human access space withe_goal dramatically lower_costs increase reliability blue_origin employing approach suborbital flight developmental step building prior work company motto latin step step blue_origin developing variety technologies focus rocket_powered vertical takeoff verticalanding vtvl vehicles access sub_orbital_spaceflight suborbital orbital_spaceflight orbital outer_space company name refers blue planet earth point focused sub_orbital company built flown new_shepard spacecraft design atheir county texas facility first developmental test_flight new_shepard april uncrewed vehicle flew planned test altitude thand achieved top speed second flight performed onovember vehicle went beyond altitude reaching space firstime bothe space_capsule rocket booster successfully achieved soft_landing rocketry soft_landing january blue_origin flew new_shepard booster launched landed vertically inovember demonstrating reuse time new_shepard reached apogee ofeet capsule earth forecovery reuse april june new_shepard booster flew third fourth flights altitude beforeturning successful soft_landings first crewed test_flights planned take_place early withe start commercial service shortly blue_origin moved orbital_spaceflight orbital business initially rocket_engine supplier others entered build new large rocket_engine major us launch_system operator united_launch_alliance ula also considering blue_origin engine used onew shepard use new second_stage advanced cryogenic evolved stage become primary upper_stage ula vulcan rocket vulcan orbital_spaceflight orbitalaunch_vehicle blue_origin announced_plans also manufacture fly orbitalaunch_vehicle florida space coast history_file_blue development spacecraft jpg origin three vehicles late goddard subscale early subscale version suborbital new_shepard propulsion_module flown variations larger new_shepard actually flew future space_vehicle top future orbitalaunch_vehicle stacked blue_origin future orbital transportation system blue_origin founder jeff_bezos interested space early age profile published described miami herald interview bezos gave named high_school class year_old wanted build space hotels amusement_parks colonies million million_people would orbithe whole idea preserve told newspaper goal able humans planet would_become park blue_origin founded kent washington began developing rocket propulsion systems launch_vehicle since founding company secretive plans emerged imposed company formally incorporated existence became public bezos began buying land texas interested parties followed purchases topic interest local politics bezos rapid lots variety named shell companies called land grab january bezos told theditor van horn texas van horn advocate blue_origin developing sub_orbital_space vehicle would vtvl take land vertically carry three astronauts space spacecraft would based technology like used douglas x bezos told reuters inovember company hoped progress company website announced hoped establish space colonization enduring human presence space buthe version wrote instead aiming step step lower_cost spaceflight many_people afford go humans better solar_system science_fiction author neal worked partime blue late credited blue_origin employees ideas leading novel blue_origin plans place new_shepard commercial suborbital tourist service flights per week publicized timetable indicated blue fly unmanned manned theventhe first developmental test_flight new_shepard occurred april uncrewed vehicle flew planned test altitude feet meters achieved top speed mach test_flights continue take_place late blue_origin projected test_flights operate could begin flying passengers space new_shepard interview bezos indicated founded blue_origin send customers space focusing decrease cost increase safety human_spaceflight july bezos invested money blue_origin september company united_launch_alliance ula entered partnership whereby blue_origin would produce large rocket_engine vulcan rocket vulcan successor atlas v whichas launched us_national security thearly exit service late announcement added blue_origin working thengine three_years prior public announcement thathe_first_flight new rocket could occur early april new_product development test well blue_origin expected selected ula vulcan launch_vehicle vulcan rocket april blue_origin announced completed acceptance testing bengine would power blue_originew shepard new_shepard space_capsule used blue_origin suborbital_spaceflight suborbital flights completion stage blue_origin begin test_flights vehicle later year facility westexas expect series withis vehicle flying autonomous mode series dozens oflights thextent test_program taking couple years complete following new_shepard maiden flight blue_origin began accepting registration early access tickets pricing information suborbital_spaceflights july company employed approximately people may grown approximately employees working engineering manufacturing business operations kent location approximately thengine test suborbital test_flight facility april company employees july provider servicesuch andevelopment safety integration announced partnership blue_origin provide standardized payload accommodations experiments flying blue_origin blue_originew shepard new_shepard suborbital vehicle september blue_origin unnamed planned orbital_spaceflight orbitalaunch_vehicle indicating thathe_firstage would powered bengine currently development second_stage would powered recently completed rocket_engine addition blue_origin announced would manufacture launch new rocket space coast florida space coast payload gross launch weight given bezos noted interviews thathis new launch_vehicle would space_launch market competition compete us_government national security united_states national security missions leaving marketo united_launch_alliance spacex onovember blue_origin launched new_shepard rocketo space altitude ofeet kilometers vertically landed rocket booster less center pad capsule descended parachutes minutes landed safely marks firstime booster flown space returned earth marking major step pursuit fully reusable flight validated vehicle architecture andesign ring fin shifted center pressure help control reentry eight large drag brakes deployed reduced vehicle terminal speed vehicle altitude location aligned landing pad highly bengine slow booster deployed vehicle descended last touchdown pad january blue_origin flew new_shepard booster launched landed vertically inovember demonstrating reuse time new_shepard reached apogee ofeet kilometers capsule earth forecovery reuse april new_shepard booster flew third time reaching feet returning successfully march blue journalists see inside kent washington headquarters manufacturing facility firstime company planning substantial growth builds crew_capsules propulsion_modules new_shepard program ramps bengine builds support full_scale employment expected grow february bezos also articulated long_term vision humans space seeing potential move industry completely earth leaving planet strictly light industrial use end state hundreds years millions people would living working space march manned test_flights planned take_place possible commercial service also march bezos discussed plans toffer space_tourism services space pointing aspect thearly really advancing aviation thearly days rides big fraction airplane flights days tourism playing advancing space_travel rocket launches tourism entertainment hand current plans pursue niche market us military launches bezos hasaid blue_origin would add value market september blue announced_thatheir orbital_rocket would named new_glenn honor first_american john glenn thathe_firstage powered seven blue_origin bengines firstage reusable vertically like new_shepard sub_orbital_spaceflight suborbitalaunch vehicle preceded athe_time announcement new_glenn bezos revealed thathe next project beyond new_glenn would new armstrong without detailing would blue_origin continued expand seattle area office rocket production facilities purchasing adjacent building permits filed build complex additional office space blue_origin billion usd year funded jeff amazon stock march announced blue_origin acquired first paying launch customer forbital satellite launches expected start launching tv satellites around blue_origin new_glenn orbitalaunch_vehicle facilities blue_origin development facility near seattle_washington facility westexas blue_origin developing new orbitalaunch facility cape_canaveral air_force station development facility headquarters company headquartered kent washington suburb seattle_washington seattle research_andevelopment located facility size early growing march blue_origin leasing additional space adjacent office buildings plan add space kent facility housed engineering manufacturing business operations majority person blue_origin workforce grew persons kent may added additional office manufacturing warehouse space headquarters facilities florida facilities september blue_origin leased launch_complex cape_canaveral florida build launch_pad orbital_spaceflight orbital blue_origin orbitalaunch_vehicle launch_vehicle also plan manufacture new powered orbitalaunch_vehicle athe nearby exploration park first blue_origin launch planned august estimate predicted earlier groundbreaking facility begin construction occurred june accessed_july engine test_site blue_origin suborbitalaunch facility located westexas near town van horn texas van horn current launch license experimental permits us_government federal_aviation_administration flights blue_origin new_shepard suborbital system blue_origin staff approximately supporting westexas facility launch_pad located miles north check building landing pad located miles north check building miles north launch_pad addition suborbitalaunch pads includes number rocket_engine test facility rocket_engine engine test cells support methalox propellant propellant engines present included three test cells testing methalox bengine alone two full test cells support full thrust full duration burns well one duration high pressure tests refine rocket_engine ignition sequence understand rocket_engine launch_vehicles early low altitude flightest platforms charon blue_origin first_flightest vehicle called charon pluto moon powered four vertically mounted armstrong viper jet engines rather rockets low altitude vehicle developed test autonomous guidance control technologies processes thathe_company would use develop charon made test_flight moses lake washington march flew altitude ofeet beforeturning controlled landing near liftoff point charon currently display athe museum oflight seattle_washington goddard vehicle named blue_origin goddard also_known first flew onovember flight wasuccessful test_flight december never launched according federal_aviation_administration records two flights performed goddard new_shepard suborbital system file_blue_originew shepard launch april jpg thumb right new_shepard launch april blue_origin new_shepard suborbital_spaceflight system composed two vehicles crew_capsule accommodating three astronauts launched blue_origin propulsion_module rocket booster two vehicles lift together designed separate flight separation booster designed return earth perform vtvl verticalanding crew_capsule follows separate trajectory returning parachutes land touchdown vehicles intended forecovery use new_shepard controlled entirely board computers addition flying astronauts new_shepard intended provide frequent opportunities fly experiments suborbital space file_blue_origin test landing parachutes april jpg thumb left new_shepard landing parachutes april federal_aviation indicated flightest early suborbital test vehicle wascheduled augusthe flight westexas failed ground contact control vehicle blue_origin released analysis failure september vehicle reached speed mach number mach altitude flight instability drove angle attack range safety telemetry system range safety system thrust vehicle october blue_origin conducted successful new shepherd pad escape test westexas launch_site firing pusher escape motor launching full_scale crew_capsule launch_vehicle simulator crew_capsule traveled altitude active thrust control descending safely parachute soft_landing rocketry soft_landing april blue_origin announced begin autonomous robot autonomous flightesting test_flights new_shepard frequently monthly blue_origin expected series dozens oflights thextent test_program taking couple years complete april new_shepard made firstest flighthe uncrewed vehicle flew planned test altitude thand achieved top speed mach crew_capsule separated booster beforeturning earth landing parachutes onovember new_shepard made itsecond test_flight reaching altitude successful recovery crew_capsule booster booster successfully soft_landing rocketry performed powered vtvl verticalanding january blue_origin flew new_shepard booster launched landed vertically inovember demonstrating reuse time new_shepard reached apogee ofeet kilometers capsule earth forecovery reuse file new_shepard booster crew_capsule thumb px_new_shepard booster crew_capsule april new_shepard booster flew third time reaching feet beforeturning successfully june new_shepard booster flew fourth time reaching feet returning successfully fifth final test_flight second booster test capsule took_place october blue_origin plan fly test astronaut early new_glenn orbitalaunch_vehicle new_glenn diameter multistage three stage orbital_spaceflight orbitalaunch_vehicle expected launch prior design work vehicle began high_level specifications vehicle publicly_announced september firstage powered seven bengines also designed manufactured blue_origin firstage reusable_launch_vehicle reusable like new_shepard suborbitalaunch vehicle preceded ithe second_stage optional third stage flights intended launch orbital_space systems file_blue_origin orbital origin orbital_space vehicle flight rendering beginning new_product development orbital system prior blue_origin announced thexistence new orbitalaunch_vehicle september january blue_origindicated thathe new rocket many_times larger shepard even_though would smallest family blue_origin orbital vehicles blue make details public later orbitalaunch_vehicle revealed blue_origin orbital_spaceflight orbitalaunch_vehicle began referred name big brother march two_stage torbit liquid propellant rockethe launcher intended reusable_launch_vehicle reusable jeff_bezos plans boost humans space cape_canaveral cbs news accessed september bezos cannot afford space fairing civilization throw rocket away every time focused focused lowering cost space january blue_origin announced_thathey plan announce details abouthe launch_vehicle later details wereleased march blue_origindicated thathe_first orbitalaunch expected florida launch_facility firstage powered blue_origin single shaft oxygen rich staged combustion cycle staged combustion liquid methane liquid_oxygen rocket_engine second_stage powered recently qualified tap cycle liquid hydrogen liquid_oxygen rocket_engine number engines stage released payload gross launch weight specifications details publicly released september blue launch rocket historic spaceport florida launch_complex launch_complex manufacture rockets new facility land exploration park acceptance testing bengines also done florida orbital earlier development work blue_origin began developing systems forbital human spacecraft prior reusable firstage booster projected fly suborbital trajectory taking vertically like booster stage conventional multistage rocket following stage separation upper_stage would continue propel astronauts torbit firstage booster perform powered verticalanding similar new_shepard suborbital propulsion_module firstage booster would launched allowing improved reliability lowering cost human access space boosterocket projected loft blue_origin space_vehicle torbit carrying astronauts supplies space_vehicle earth atmosphere land land parachutes reused future missions earth_orbit blue_origin successfully completed system requirements review orbital_space vehicle may engine testing reusable booster system vehicle began full power test thrust chamber blue_origin liquid_oxygen liquid hydrogen rocket_engine conducted john_c nasa test facility october chamber successfully achieved full thrust test_flights class wikitable date vehicle notes reached altitude november blue_origin goddard first rocket_powered test_flight march goddard april goddard may august failure loss vehicle october new_shepard space_capsule pad escape test_flight april new_shepard successful atmospheric flighto altitude capsule soft_landing rocketry recovered booster landing november new_shepard successful sub_orbital_spaceflight landing january new_shepard successful sub_orbital flight landing reused booster april new_shepard successful sub_orbital flight landing reused booster shepard successful sub_orbital flight landing reused booster fourth launch landing rocket blue_origin published live takeoff landing october new_shepard successful sub_orbital flight landing reused booster fifth landing rocket rocket_engine development blue_origin publicly_announced development january product_development thearly new liquid hydrogen liquid_oxygen lox cryogenic engine produce thrust full power rocket_engine low use controlled vtvl early_thrust chamber testing began nasa stennis late successfully tested full duration suborbital burn simulated coast phases engine demonstrating deep full power long duration rocket_engine reliable single test sequence nasa released videof starts operation blue_origin test facility near van horn texas blue_origin tests new engine aviation week accessed september bengine acceptance testing completed april test firings thengine run time minutes bengine powers blue_originew shepard new_shepard space_capsule used blue_origin suborbital_spaceflight suborbital flights began engine modified use upper_stage blue_origin orbital_spaceflight orbitalaunch_vehicle thengine include rocket better optimized operation vacuum outer_space vacuum conditions well number manufacturing whereas designed blue_origin began work new much engine new engine change blue_origin first engine liquid_oxygen liquid methane rocket propellants thengine designed produce thrust initially planned used exclusively blue_origin proprietary launch_vehicle blue_origin announce new engine public september late blue_origin signed agreement united_launch_alliance develop bengine use new engine atlas v replacement engine upgraded atlas v launch_vehicle replacing single russian atlas v successor new launch_vehicle use twof bengines firstage rocketry firstage thengine development_program began ula expects first_flight new launch_vehicle vulcan rocket earlier pusher escape motor blue_originew product_development developed pusher escape motor crew_capsule late blue_origin performed full_scale flightest thescape system full_scale suborbital capsule funding july jeff_bezos invested blue_origin even march vast_majority ofunding support new_product development operations blue_origin come jeff_bezos market capitalism private investment bezos publicly state amount prior annual amount publicly blue_origin also completed work nasa several small development contracts receiving total funding bezos approximately amazoncom amazon stock year privatequity privately finance blue_origin nasa blue_origin contracted work nasa several development efforts company awarded funding nasa via space act agreement ccdev first_commercial crew_development ccdev program development concepts technologies support future human_spaceflight operations nasa funded risk mitigation activities related ground testing innovative pusher escape system cost reusable avoiding event traditional tractor launch escape system innovative composite pressure vessel cabin reduces weight astronauts part larger system designed would launched atop atlas v rocket onovember announced blue_origin completed milestones ccdev space act agreement april blue_origin received commitment nasa ofunding ccdev phase included performing mission concept review system requirements review orbital_space vehicle utilizes shape toptimize launch profile atmospheric reentry pusher escape system flightests development lox engine full_scale thrust chamber testing commercial_crew program released follow solicitation development crew delivery iss blue_origin submit proposal reportedly continuing work development_program private funding blue_origin earlier attempted lease different part space coast submitted bid lease kennedy spacenter launch_complex launch_complex athe kennedy spacenter land north adjacento cape_canaveral following nasa decision lease unused complex part bid reduce annual operation maintenance costs blue_origin bid shared non exclusive use complex thathe able interface multiple launch_vehicles costs using launch_pad shared across multiple companies term lease one potential shared user blue plan united_launch_alliance competing bid private_spaceflight commercial use launch_complex spacex submitted bid exclusive use launch_complex supportheir human_spaceflight crewed missions september prior completion bid period prior public announcement nasa results process blue_origin filed protest withe federal_government united_states us general accounting office says plan nasa award exclusive spacex use space_shuttle launch_pad nasa planned complete bid award pad transferred october buthe protest delay decision gao reaches decision expected spacex said thathey_would willing support multi user arrangement pad december gao denied blue_origin protest nasa argued thathe solicitation contained preference use facility either multi use single use solicitation document merely asked explain selecting one approach instead would manage facility thevent nasa selected spacex proposal late signed year lease contract launch_pad spacex april blue_origin boeing phase program see_also armadillo aerospace systems lockheed martin x lunar lander challenge space systems douglas x newspace quad rocket reusable vehicle testing program spacex_reusable launch_system development_program zarya spacecraft zarya references_externalinks amazon enters space race wired magazine july amazon ceo gives us space plans january article seattle times amazoncom founder space venture westexas county seattle post march blue_origin westexas commercialaunch assessment latest blue space_fellowship internet face renewed race herald april category blue_origin category_private_spaceflight companies_category_commercial_spaceflight category rocket_engine manufacturers category_space_tourism category aerospace_companies united_states category_space act agreement companies_category companies_based kent washington category county texas_category_companiestablished"},{"title":"Blue Origin Goddard","description":"blue origin goddard is the name of the first development vehicle in the blue originew shepard program which flew for the firstime onovember named afterocketry pioneerobert goddard the vehicle is a subscale demonstrator and flew at a ft altitude during its initial flighthe private spacecraft venture is being funded by the billionaire founder of amazoncom jeff bezos goddard gunter space page he hopes thathe private spacecraft could eventually bring space travel within the reach of the masses a videof the cone shaped goddard vehicle shows it climbing to about m ft beforeturning to earth in a remote part of texas the flight marks the firstime jeff bezos has broken hisilence on the work of hispace company blue origin on the company s website mr bezosaid we re working patiently and step by step to lower the cost of spaceflight so that many people can afford to go and so that we humans can better continuexploring the solar system accomplishing this mission will take a long time and we are working on it methodically mr bezos founded blue origin withe intention of developing a vertical take off and landing vehicle able to take passengers to thedge of space no timescale for commercial trips has been announced but documents released by the us federal aviation administration suggesthey could start as early as the video filmed onovember from a site about miles east of el paso texashows the first crafto launch under the new shepard program the vehicle climbed for approximately seconds reaching a height oft before starting to descend and making a controlled landing back on its feet approximately seconds after take off the launch described by mr bezos as both useful and fun was watched by friends family and a team of engineers bbc news january see also corona ssto corona kankoh maru lunar lander challenge project bproject morpheus nasa program to continue developing alhat and q landers reusable vehicle testing program by jaxa spaceshiptwo spacex reusable launch system development program xcor lynx zarya spacecraft zarya externalinks images of the vehicle and the launch category blue origin launch vehicles category space tourism category private spaceflight category united states experimental aircraft category vtvl rockets","main_words":["blue","origin","goddard","name","first","development","vehicle","blue_originew","shepard","program","flew","firstime","onovember","named","goddard","vehicle","subscale","flew","altitude","initial","flighthe","venture","funded","billionaire","founder","amazoncom","jeff_bezos","goddard","space","page","hopes","thathe","could","eventually","bring","space_travel","within","reach","masses","videof","cone","shaped","goddard","vehicle","shows","climbing","beforeturning","earth","remote","part","texas","flight","marks","firstime","jeff_bezos","broken","work","company","blue_origin","company","website","working","step","step","lower_cost","spaceflight","many_people","afford","go","humans","better","solar_system","mission","take","long_time","working","bezos","founded","blue_origin","withe","intention","developing","vertical","take","landing","vehicle","able","take","passengers","thedge","space","commercial","trips","announced","documents","released","us","federal_aviation_administration","could","start","early","video","filmed","onovember","site","miles","east","el_paso","first_launch","new_shepard","program","vehicle","climbed","approximately","seconds","reaching","height","starting","making","controlled","landing","back","feet","approximately","seconds","take","launch","described","bezos","useful","fun","watched","friends","family","team","engineers","bbc_news","january","see_also","lunar","lander","challenge","project","nasa","program","continue","developing","reusable","vehicle","testing","program","spaceshiptwo","spacex_reusable","launch_system","development_program","xcor_lynx","zarya","spacecraft","zarya","externalinks","images","vehicle","launch","category","blue_origin","launch_vehicles","category_space_tourism","category_private_spaceflight","category_united_states","experimental","aircraft_category","vtvl","rockets"],"clean_bigrams":[["blue","origin"],["origin","goddard"],["first","development"],["development","vehicle"],["blue","originew"],["originew","shepard"],["shepard","program"],["firstime","onovember"],["onovember","named"],["goddard","vehicle"],["initial","flighthe"],["flighthe","private"],["private","spacecraft"],["spacecraft","venture"],["billionaire","founder"],["amazoncom","jeff"],["jeff","bezos"],["bezos","goddard"],["space","page"],["hopes","thathe"],["thathe","private"],["private","spacecraft"],["spacecraft","could"],["could","eventually"],["eventually","bring"],["bring","space"],["space","travel"],["travel","within"],["cone","shaped"],["shaped","goddard"],["goddard","vehicle"],["vehicle","shows"],["remote","part"],["flight","marks"],["firstime","jeff"],["jeff","bezos"],["company","blue"],["blue","origin"],["many","people"],["solar","system"],["long","time"],["bezos","founded"],["founded","blue"],["blue","origin"],["origin","withe"],["withe","intention"],["vertical","take"],["landing","vehicle"],["vehicle","able"],["take","passengers"],["commercial","trips"],["documents","released"],["us","federal"],["federal","aviation"],["aviation","administration"],["could","start"],["video","filmed"],["filmed","onovember"],["miles","east"],["el","paso"],["new","shepard"],["shepard","program"],["vehicle","climbed"],["approximately","seconds"],["seconds","reaching"],["controlled","landing"],["landing","back"],["feet","approximately"],["approximately","seconds"],["launch","described"],["friends","family"],["engineers","bbc"],["bbc","news"],["news","january"],["january","see"],["see","also"],["lunar","lander"],["lander","challenge"],["challenge","project"],["nasa","program"],["continue","developing"],["reusable","vehicle"],["vehicle","testing"],["testing","program"],["spaceshiptwo","spacex"],["spacex","reusable"],["reusable","launch"],["launch","system"],["system","development"],["development","program"],["program","xcor"],["xcor","lynx"],["lynx","zarya"],["zarya","spacecraft"],["spacecraft","zarya"],["zarya","externalinks"],["externalinks","images"],["launch","category"],["category","blue"],["blue","origin"],["origin","launch"],["launch","vehicles"],["vehicles","category"],["category","space"],["space","tourism"],["tourism","category"],["category","private"],["private","spaceflight"],["spaceflight","category"],["category","united"],["united","states"],["states","experimental"],["experimental","aircraft"],["aircraft","category"],["category","vtvl"],["vtvl","rockets"]],"all_collocations":["blue origin","origin goddard","first development","development vehicle","blue originew","originew shepard","shepard program","firstime onovember","onovember named","goddard vehicle","initial flighthe","flighthe private","private spacecraft","spacecraft venture","billionaire founder","amazoncom jeff","jeff bezos","bezos goddard","space page","hopes thathe","thathe private","private spacecraft","spacecraft could","could eventually","eventually bring","bring space","space travel","travel within","cone shaped","shaped goddard","goddard vehicle","vehicle shows","remote part","flight marks","firstime jeff","jeff bezos","company blue","blue origin","many people","solar system","long time","bezos founded","founded blue","blue origin","origin withe","withe intention","vertical take","landing vehicle","vehicle able","take passengers","commercial trips","documents released","us federal","federal aviation","aviation administration","could start","video filmed","filmed onovember","miles east","el paso","new shepard","shepard program","vehicle climbed","approximately seconds","seconds reaching","controlled landing","landing back","feet approximately","approximately seconds","launch described","friends family","engineers bbc","bbc news","news january","january see","see also","lunar lander","lander challenge","challenge project","nasa program","continue developing","reusable vehicle","vehicle testing","testing program","spaceshiptwo spacex","spacex reusable","reusable launch","launch system","system development","development program","program xcor","xcor lynx","lynx zarya","zarya spacecraft","spacecraft zarya","zarya externalinks","externalinks images","launch category","category blue","blue origin","origin launch","launch vehicles","vehicles category","category space","space tourism","tourism category","category private","private spaceflight","spaceflight category","category united","united states","states experimental","experimental aircraft","aircraft category","category vtvl","vtvl rockets"],"new_description":"blue origin goddard name first development vehicle blue_originew shepard program flew firstime onovember named goddard vehicle subscale flew altitude initial flighthe private_spacecraft venture funded billionaire founder amazoncom jeff_bezos goddard space page hopes thathe private_spacecraft could eventually bring space_travel within reach masses videof cone shaped goddard vehicle shows climbing beforeturning earth remote part texas flight marks firstime jeff_bezos broken work company blue_origin company website working step step lower_cost spaceflight many_people afford go humans better solar_system mission take long_time working bezos founded blue_origin withe intention developing vertical take landing vehicle able take passengers thedge space commercial trips announced documents released us federal_aviation_administration could start early video filmed onovember site miles east el_paso first_launch new_shepard program vehicle climbed approximately seconds reaching height starting making controlled landing back feet approximately seconds take launch described bezos useful fun watched friends family team engineers bbc_news january see_also lunar lander challenge project nasa program continue developing reusable vehicle testing program spaceshiptwo spacex_reusable launch_system development_program xcor_lynx zarya spacecraft zarya externalinks images vehicle launch category blue_origin launch_vehicles category_space_tourism category_private_spaceflight category_united_states experimental aircraft_category vtvl rockets"},{"title":"Blue-plate special","description":"file blue plate special signjpg thumb px a typical blue plate special board from the red arrow diner in manchester new hampshire blue plate special or blue plate special is a term used in the united states by restaurant s especially diner s and cafe s it refers to a low priced meal that usually changes daily the term was very common from the s through the s there are still a few restaurants andiners that offer blue plate specials under that name sometimes on blue plates but it is a vanishing tradition the phrase itself however istill a common american colloquialism a web collection of s prose gives this definition a blue plate special is a low pricedaily diner special a main course with all the fixins a daily combo a square for two bits the origin and explanation of the phrase are unclear kevin reed says that during the great depression a manufacturer started making plates with separate sections for each part of a mealike a frozen dinner tray it seems that for whatevereason they were only available in the color blue michael quinion cites a dictionary entry indicating thathe blue plates were more specifically inexpensive divided plates that were decorated with a willow pattern blue willow or similar blue pattern such as those popularized by spode and wedgwood one of his correspondentsays thathe first known use of the term is on an october fred harvey company restaurant menu and implies that blue plate specials weregular features at harvey houses the term became common starting in the late s a may advertisement in the new york times for the famous old sea grillobster and chop house at westh street promised a la carte all hours moderate prices and blue plate specials a december article lamenting the rise in prices that had made it difficulto dine on a dime praised ann street establishment where one could still get a steak and lots of onion sandwich for a dime and a big blue plate special with meat course and three vegetables is purchasable for a quarter just as it has been for the lasten years the first book publication of damon runyon story little miss marker was in a collection entitledamon runyon s blue plate special a hollywood columnist wrote in every time spencer tracy enters the metro commissary executives and minor geniuses look up from their blue plate specials to look athe actor and marvel in the honeymooners episode suspense ralph suspecting that alice plans to murder him with a carving knife says to norton did you hear that pal she wants to borrow a carving knife i never thought i d end up a blue plate special file diner blue platejpg thumb px right a typical blue divided plate used for a blue plate special no substitutions was a common policy on blue plate specials one candid microphonepisode features allen funt ordering a blue plate special and trying to talk the waiter into making various changesuch as replacing the vegetable soup with consomm while the polite but increasingly annoyed waiter tries in vain to explain to funthat no substitutions means what it says our man in havana by graham greene has the following exchange regarding an american blue plate lunch contemporary usage file blue plate special mullan idaho jpg thumb left blue plate special in mullan idaho in contemporary usage a blue plate special can be any inexpensive full meal any daily selection or merely a whimsical phrasing travel columnist wayne curtisays that a portland maineatery offers budget blue plate specials along with morefined fare in events boston children s museum presents a participatory theater show sponsored by health insurer blue cross blue shield association blue cross which teaches good nutrition the show is called blue plate special workman s blue plate special is a monthly ecookbook clubringing you specially discounted and freebooks from an award winning collection of cookbooks the wdvx blue plate special is an almost daily lunch time concert athe knoxville visitor s center broadcasting on theastennessee radio station wdvx in film and television the turner south cable channel calls a daily movie selection scheduled at lunchtime its blue plate special in print richard bernstein titled his new york times review of andrew hurley s book diners bowling alleys and trailer parks the red white and blue plate special mystery writer abigail padgett second novel about amateur sleuth blue mccarron is titled the last blue plate special no meals here the blue plates are part of the decor at a clinic where patients are dying mysteriously road food experts jane and michael stern titled their guidebook blue plate specials and blue ribbon chefs theart and soul of america s great roadside restaurantsee also list of restauranterminology externalinks blue plate special anyone kevin reed s article blue plate special a competing explanation by michael quinion blue plate special a square for two bits children s museum show sponsorship by blue cross mentioned elsewhere wrek sound blocks georgia tech s wrek radio category restauranterminology category american cuisine category food combinations","main_words":["file","blue_plate","special","signjpg","thumb","px","typical","blue_plate","special","board","red","arrow","diner","manchester","new_hampshire","blue_plate","special","blue_plate","special","term_used","united_states","restaurant","especially","diner","cafe","refers","low","priced","meal","usually","changes","daily","term","common","still","restaurants_offer","blue_plate","specials","name","sometimes","blue_plates","tradition","phrase","however","istill","common","american","web","collection","prose","gives","definition","blue_plate","special","low","diner","special","main","course","daily","square","two","bits","origin","explanation","phrase","unclear","kevin","reed","says","great_depression","manufacturer","started","making","plates","separate","sections","part","frozen","dinner","tray","seems","available","color","blue","michael","cites","dictionary","entry","indicating","thathe","blue_plates","specifically","inexpensive","divided","plates","decorated","willow","pattern","blue","willow","similar","blue","pattern","popularized","one","thathe_first","known","use","term","october","fred","harvey","company","restaurant","menu","implies","blue_plate","specials","features","harvey","houses","term","became","common","starting","late","may","advertisement","new_york","times","famous","old","sea","chop","house","westh","street","promised","la_carte","hours","moderate","prices","blue_plate","specials","december","article","rise","prices","made","difficulto","dine","praised","ann","street","establishment","one","could","still","get","steak","lots","onion","sandwich","big","blue_plate","special","meat","course","three","vegetables","quarter","years","first","book","publication","runyon","story","little","miss","marker","collection","runyon","blue_plate","special","hollywood","columnist","wrote","every","time","spencer","tracy","enters","metro","commissary","executives","minor","look","blue_plate","specials","look","athe","actor","episode","ralph","alice","plans","murder","carving","knife","says","norton","hear","pal","wants","carving","knife","never","thought","end","blue_plate","special","file","diner","blue","thumb","px","right","typical","blue","divided","plate","used","blue_plate","special","common","policy","blue_plate","specials","one","features","allen","ordering","blue_plate","special","trying","talk","waiter","making","various","replacing","vegetable","soup","polite","increasingly","waiter","tries","explain","means","says","man","havana","graham","greene","following","exchange","regarding","american","blue_plate","lunch","contemporary","usage","special","idaho","jpg","thumb","left","blue_plate","special","idaho","contemporary","usage","blue_plate","special","inexpensive","full","meal","daily","selection","merely","travel","columnist","wayne","portland","offers","budget","blue_plate","specials","along","fare","events","boston","children","museum","presents","theater","show","sponsored","health","blue","cross","blue","shield","association","blue","cross","teaches","good","nutrition","show","called","blue_plate","special","workman","blue_plate","special","monthly","specially","discounted","award_winning","collection","blue_plate","special","almost","daily","lunch","time","concert","athe","knoxville","visitor_center","broadcasting","radio","station","film","television","turner","south","cable_channel","calls","daily","movie","selection","scheduled","lunchtime","blue_plate","special","print","richard","titled","new_york","times","review","andrew","hurley","book","diners","bowling","alleys","trailer","parks","red","white","blue_plate","special","mystery","writer","second","novel","amateur","blue","titled","last","blue_plate","special","meals","blue_plates","part","decor","clinic","patients","dying","road","food","experts","jane","michael","stern","titled","guidebook","blue_plate","specials","blue","chefs","theart","soul","america","great","roadside","also_list","restauranterminology","externalinks","blue_plate","special","anyone","kevin","reed","article","blue_plate","special","competing","explanation","michael","blue_plate","special","square","two","bits","children","museum","show","sponsorship","blue","cross","mentioned","elsewhere","sound","blocks","georgia","tech","radio","category_restauranterminology","category_american","combinations"],"clean_bigrams":[["file","blue"],["blue","plate"],["plate","special"],["special","signjpg"],["signjpg","thumb"],["thumb","px"],["typical","blue"],["blue","plate"],["plate","special"],["special","board"],["red","arrow"],["arrow","diner"],["manchester","new"],["new","hampshire"],["hampshire","blue"],["blue","plate"],["plate","special"],["blue","plate"],["plate","special"],["term","used"],["united","states"],["especially","diner"],["low","priced"],["priced","meal"],["usually","changes"],["changes","daily"],["offer","blue"],["blue","plate"],["plate","specials"],["name","sometimes"],["blue","plates"],["however","istill"],["common","american"],["web","collection"],["prose","gives"],["blue","plate"],["plate","special"],["diner","special"],["main","course"],["two","bits"],["unclear","kevin"],["kevin","reed"],["reed","says"],["great","depression"],["manufacturer","started"],["started","making"],["making","plates"],["separate","sections"],["frozen","dinner"],["dinner","tray"],["color","blue"],["blue","michael"],["dictionary","entry"],["entry","indicating"],["indicating","thathe"],["thathe","blue"],["blue","plates"],["specifically","inexpensive"],["inexpensive","divided"],["divided","plates"],["willow","pattern"],["pattern","blue"],["blue","willow"],["similar","blue"],["blue","pattern"],["thathe","first"],["first","known"],["known","use"],["october","fred"],["fred","harvey"],["harvey","company"],["company","restaurant"],["restaurant","menu"],["blue","plate"],["plate","specials"],["harvey","houses"],["term","became"],["became","common"],["common","starting"],["may","advertisement"],["new","york"],["york","times"],["famous","old"],["old","sea"],["chop","house"],["westh","street"],["street","promised"],["la","carte"],["hours","moderate"],["moderate","prices"],["blue","plate"],["plate","specials"],["december","article"],["difficulto","dine"],["praised","ann"],["ann","street"],["street","establishment"],["one","could"],["could","still"],["still","get"],["onion","sandwich"],["big","blue"],["blue","plate"],["plate","special"],["meat","course"],["three","vegetables"],["first","book"],["book","publication"],["runyon","story"],["story","little"],["little","miss"],["miss","marker"],["blue","plate"],["plate","special"],["hollywood","columnist"],["columnist","wrote"],["every","time"],["time","spencer"],["spencer","tracy"],["tracy","enters"],["metro","commissary"],["commissary","executives"],["blue","plate"],["plate","specials"],["look","athe"],["athe","actor"],["alice","plans"],["carving","knife"],["knife","says"],["carving","knife"],["never","thought"],["blue","plate"],["plate","special"],["special","file"],["file","diner"],["diner","blue"],["thumb","px"],["px","right"],["typical","blue"],["blue","divided"],["divided","plate"],["plate","used"],["blue","plate"],["plate","special"],["common","policy"],["blue","plate"],["plate","specials"],["specials","one"],["features","allen"],["blue","plate"],["plate","special"],["making","various"],["vegetable","soup"],["waiter","tries"],["graham","greene"],["following","exchange"],["exchange","regarding"],["american","blue"],["blue","plate"],["plate","lunch"],["lunch","contemporary"],["contemporary","usage"],["usage","file"],["file","blue"],["blue","plate"],["plate","special"],["idaho","jpg"],["jpg","thumb"],["thumb","left"],["left","blue"],["blue","plate"],["plate","special"],["contemporary","usage"],["blue","plate"],["plate","special"],["inexpensive","full"],["full","meal"],["daily","selection"],["travel","columnist"],["columnist","wayne"],["offers","budget"],["budget","blue"],["blue","plate"],["plate","specials"],["specials","along"],["events","boston"],["boston","children"],["museum","presents"],["theater","show"],["show","sponsored"],["blue","cross"],["cross","blue"],["blue","shield"],["shield","association"],["association","blue"],["blue","cross"],["teaches","good"],["good","nutrition"],["called","blue"],["blue","plate"],["plate","special"],["special","workman"],["blue","plate"],["plate","special"],["specially","discounted"],["award","winning"],["winning","collection"],["blue","plate"],["plate","special"],["almost","daily"],["daily","lunch"],["lunch","time"],["time","concert"],["concert","athe"],["athe","knoxville"],["knoxville","visitor"],["center","broadcasting"],["radio","station"],["turner","south"],["south","cable"],["cable","channel"],["channel","calls"],["daily","movie"],["movie","selection"],["selection","scheduled"],["blue","plate"],["plate","special"],["print","richard"],["new","york"],["york","times"],["times","review"],["andrew","hurley"],["book","diners"],["diners","bowling"],["bowling","alleys"],["trailer","parks"],["red","white"],["blue","plate"],["plate","special"],["special","mystery"],["mystery","writer"],["second","novel"],["last","blue"],["blue","plate"],["plate","special"],["blue","plates"],["road","food"],["food","experts"],["experts","jane"],["michael","stern"],["stern","titled"],["guidebook","blue"],["blue","plate"],["plate","specials"],["chefs","theart"],["great","roadside"],["also","list"],["restauranterminology","externalinks"],["externalinks","blue"],["blue","plate"],["plate","special"],["special","anyone"],["anyone","kevin"],["kevin","reed"],["article","blue"],["blue","plate"],["plate","special"],["competing","explanation"],["blue","plate"],["plate","special"],["two","bits"],["bits","children"],["museum","show"],["show","sponsorship"],["blue","cross"],["cross","mentioned"],["mentioned","elsewhere"],["sound","blocks"],["blocks","georgia"],["georgia","tech"],["radio","category"],["category","restauranterminology"],["restauranterminology","category"],["category","american"],["american","cuisine"],["cuisine","category"],["category","food"],["food","combinations"]],"all_collocations":["file blue","blue plate","plate special","special signjpg","signjpg thumb","typical blue","blue plate","plate special","special board","red arrow","arrow diner","manchester new","new hampshire","hampshire blue","blue plate","plate special","blue plate","plate special","term used","united states","especially diner","low priced","priced meal","usually changes","changes daily","offer blue","blue plate","plate specials","name sometimes","blue plates","however istill","common american","web collection","prose gives","blue plate","plate special","diner special","main course","two bits","unclear kevin","kevin reed","reed says","great depression","manufacturer started","started making","making plates","separate sections","frozen dinner","dinner tray","color blue","blue michael","dictionary entry","entry indicating","indicating thathe","thathe blue","blue plates","specifically inexpensive","inexpensive divided","divided plates","willow pattern","pattern blue","blue willow","similar blue","blue pattern","thathe first","first known","known use","october fred","fred harvey","harvey company","company restaurant","restaurant menu","blue plate","plate specials","harvey houses","term became","became common","common starting","may advertisement","new york","york times","famous old","old sea","chop house","westh street","street promised","la carte","hours moderate","moderate prices","blue plate","plate specials","december article","difficulto dine","praised ann","ann street","street establishment","one could","could still","still get","onion sandwich","big blue","blue plate","plate special","meat course","three vegetables","first book","book publication","runyon story","story little","little miss","miss marker","blue plate","plate special","hollywood columnist","columnist wrote","every time","time spencer","spencer tracy","tracy enters","metro commissary","commissary executives","blue plate","plate specials","look athe","athe actor","alice plans","carving knife","knife says","carving knife","never thought","blue plate","plate special","special file","file diner","diner blue","typical blue","blue divided","divided plate","plate used","blue plate","plate special","common policy","blue plate","plate specials","specials one","features allen","blue plate","plate special","making various","vegetable soup","waiter tries","graham greene","following exchange","exchange regarding","american blue","blue plate","plate lunch","lunch contemporary","contemporary usage","usage file","file blue","blue plate","plate special","idaho jpg","left blue","blue plate","plate special","contemporary usage","blue plate","plate special","inexpensive full","full meal","daily selection","travel columnist","columnist wayne","offers budget","budget blue","blue plate","plate specials","specials along","events boston","boston children","museum presents","theater show","show sponsored","blue cross","cross blue","blue shield","shield association","association blue","blue cross","teaches good","good nutrition","called blue","blue plate","plate special","special workman","blue plate","plate special","specially discounted","award winning","winning collection","blue plate","plate special","almost daily","daily lunch","lunch time","time concert","concert athe","athe knoxville","knoxville visitor","center broadcasting","radio station","turner south","south cable","cable channel","channel calls","daily movie","movie selection","selection scheduled","blue plate","plate special","print richard","new york","york times","times review","andrew hurley","book diners","diners bowling","bowling alleys","trailer parks","red white","blue plate","plate special","special mystery","mystery writer","second novel","last blue","blue plate","plate special","blue plates","road food","food experts","experts jane","michael stern","stern titled","guidebook blue","blue plate","plate specials","chefs theart","great roadside","also list","restauranterminology externalinks","externalinks blue","blue plate","plate special","special anyone","anyone kevin","kevin reed","article blue","blue plate","plate special","competing explanation","blue plate","plate special","two bits","bits children","museum show","show sponsorship","blue cross","cross mentioned","mentioned elsewhere","sound blocks","blocks georgia","georgia tech","radio category","category restauranterminology","restauranterminology category","category american","american cuisine","cuisine category","category food","food combinations"],"new_description":"file blue_plate special signjpg thumb px typical blue_plate special board red arrow diner manchester new_hampshire blue_plate special blue_plate special term_used united_states restaurant especially diner cafe refers low priced meal usually changes daily term common still restaurants_offer blue_plate specials name sometimes blue_plates tradition phrase however istill common american web collection prose gives definition blue_plate special low diner special main course daily square two bits origin explanation phrase unclear kevin reed says great_depression manufacturer started making plates separate sections part frozen dinner tray seems available color blue michael cites dictionary entry indicating thathe blue_plates specifically inexpensive divided plates decorated willow pattern blue willow similar blue pattern popularized one thathe_first known use term october fred harvey company restaurant menu implies blue_plate specials features harvey houses term became common starting late may advertisement new_york times famous old sea chop house westh street promised la_carte hours moderate prices blue_plate specials december article rise prices made difficulto dine praised ann street establishment one could still get steak lots onion sandwich big blue_plate special meat course three vegetables quarter years first book publication runyon story little miss marker collection runyon blue_plate special hollywood columnist wrote every time spencer tracy enters metro commissary executives minor look blue_plate specials look athe actor episode ralph alice plans murder carving knife says norton hear pal wants carving knife never thought end blue_plate special file diner blue thumb px right typical blue divided plate used blue_plate special common policy blue_plate specials one features allen ordering blue_plate special trying talk waiter making various replacing vegetable soup polite increasingly waiter tries explain means says man havana graham greene following exchange regarding american blue_plate lunch contemporary usage file_blue_plate special idaho jpg thumb left blue_plate special idaho contemporary usage blue_plate special inexpensive full meal daily selection merely travel columnist wayne portland offers budget blue_plate specials along fare events boston children museum presents theater show sponsored health blue cross blue shield association blue cross teaches good nutrition show called blue_plate special workman blue_plate special monthly specially discounted award_winning collection blue_plate special almost daily lunch time concert athe knoxville visitor_center broadcasting radio station film television turner south cable_channel calls daily movie selection scheduled lunchtime blue_plate special print richard titled new_york times review andrew hurley book diners bowling alleys trailer parks red white blue_plate special mystery writer second novel amateur blue titled last blue_plate special meals blue_plates part decor clinic patients dying road food experts jane michael stern titled guidebook blue_plate specials blue chefs theart soul america great roadside also_list restauranterminology externalinks blue_plate special anyone kevin reed article blue_plate special competing explanation michael blue_plate special square two bits children museum show sponsorship blue cross mentioned elsewhere sound blocks georgia tech radio category_restauranterminology category_american cuisine_category_food combinations"},{"title":"Boat sharing","description":"image ynglingjpg thumb right yngling keelboat yngling sailing boat sharing describes the ownership of boats mainly sailing boats by a non profit organisation for its members for pleasure use a boat sharing organisation may be an voluntary association club organization club cooperative or company law company the boats may be owned by the organisation or lease d to it with members hiring or booking the boats for use for a variety of cruise durations the costs of setting up financing and administering a boat sharing scheme may be offset by theventual higher utilisation of the boats and moorings producing cheaperates of sailing for its members compared to private boat ownership members joining a boat sharing scheme may also save themselves the need to wait for a mooring watercraft mooring which in many marinas can be significant due to the demand exceeding supply advocates of boat sharing contend that it offers a fairer way of utilising over subscribed but sometimes under used moorings larger sharing schemes may alsoffer the opportunity to members of sailing from different ports and shores and with different classes of boathe limiting factor for the growth of a boat sharing organisation istill as for the private owner the availability of mooringsomexisting boatsharing associationswitzerland sailcom germany bootschaft france samboat international antlosee also carsharing category sailing category types of tourism","main_words":["image","thumb","right","sailing","boat","sharing","describes","ownership","boats","mainly","sailing","boats","non_profit","organisation","members","pleasure","use","boat","sharing","organisation","may","voluntary","association","club","organization","club","cooperative","company","law","company","boats","may","owned","organisation","lease","members","hiring","booking","boats","use","variety","cruise","costs","setting","financing","boat","sharing","scheme","may","offset","theventual","higher","boats","moorings","producing","sailing","members","compared","private","boat","ownership","members","joining","boat","sharing","scheme","may_also","save","need","wait","many","significant","due","demand","exceeding","supply","advocates","boat","sharing","offers","way","sometimes","used","moorings","larger","sharing","schemes","may_alsoffer","opportunity","members","sailing","different","ports","shores","different","classes","limiting","factor","growth","boat","sharing","organisation","istill","private","owner","availability","germany","france","international","also","category","sailing","category_types","tourism"],"clean_bigrams":[["thumb","right"],["sailing","boat"],["boat","sharing"],["sharing","describes"],["boats","mainly"],["mainly","sailing"],["sailing","boats"],["non","profit"],["profit","organisation"],["pleasure","use"],["boat","sharing"],["sharing","organisation"],["organisation","may"],["voluntary","association"],["association","club"],["club","organization"],["organization","club"],["club","cooperative"],["company","law"],["law","company"],["boats","may"],["members","hiring"],["boat","sharing"],["sharing","scheme"],["scheme","may"],["theventual","higher"],["moorings","producing"],["members","compared"],["private","boat"],["boat","ownership"],["ownership","members"],["members","joining"],["boat","sharing"],["sharing","scheme"],["scheme","may"],["may","also"],["also","save"],["significant","due"],["demand","exceeding"],["exceeding","supply"],["supply","advocates"],["boat","sharing"],["used","moorings"],["moorings","larger"],["larger","sharing"],["sharing","schemes"],["schemes","may"],["may","alsoffer"],["different","ports"],["different","classes"],["limiting","factor"],["boat","sharing"],["sharing","organisation"],["organisation","istill"],["private","owner"],["category","sailing"],["sailing","category"],["category","types"]],"all_collocations":["sailing boat","boat sharing","sharing describes","boats mainly","mainly sailing","sailing boats","non profit","profit organisation","pleasure use","boat sharing","sharing organisation","organisation may","voluntary association","association club","club organization","organization club","club cooperative","company law","law company","boats may","members hiring","boat sharing","sharing scheme","scheme may","theventual higher","moorings producing","members compared","private boat","boat ownership","ownership members","members joining","boat sharing","sharing scheme","scheme may","may also","also save","significant due","demand exceeding","exceeding supply","supply advocates","boat sharing","used moorings","moorings larger","larger sharing","sharing schemes","schemes may","may alsoffer","different ports","different classes","limiting factor","boat sharing","sharing organisation","organisation istill","private owner","category sailing","sailing category","category types"],"new_description":"image thumb right sailing boat sharing describes ownership boats mainly sailing boats non_profit organisation members pleasure use boat sharing organisation may voluntary association club organization club cooperative company law company boats may owned organisation lease members hiring booking boats use variety cruise costs setting financing boat sharing scheme may offset theventual higher boats moorings producing sailing members compared private boat ownership members joining boat sharing scheme may_also save need wait many significant due demand exceeding supply advocates boat sharing offers way sometimes used moorings larger sharing schemes may_alsoffer opportunity members sailing different ports shores different classes limiting factor growth boat sharing organisation istill private owner availability germany france international also category sailing category_types tourism"},{"title":"Bold Earth Teen Adventures","description":"bold earth teen adventures is a tour company based in colorado that offersummer adventure programs for middle and high school teens bold earth offers trips to locations around the world the company was founded by abbott wallis bold earth is accredited by the american camp association bold earth wascrutinized in when twof its tour group members were swept outo sea while hiking in a tide pool area in hawaii one boy was rescued while the other was neverecovered it was later discovered thathe kayak company subcontracted by bold earth and leading thexcursion was outside the bounds of their permit when the accident occurred the parents of the missing teen also said thathe main tour leader had previously been charged with drug use although there was no evidence that drugs were involved in the incident category travel category tourism","main_words":["bold","earth","teen","adventures","tour","company_based","colorado","adventure","programs","middle","high_school","teens","bold","earth","offers","trips","locations","around","world","company","founded","abbott","bold","earth","accredited","american","camp","association","bold","earth","twof","tour","group","members","swept","outo","sea","hiking","tide","pool","area","hawaii","one","boy","rescued","later","discovered","thathe","kayak","company","bold","earth","leading","outside","bounds","permit","accident","occurred","parents","missing","teen","also","said","thathe","main","tour","leader","previously","charged","drug_use","although","evidence","drugs","involved","incident","category_travel","category_tourism"],"clean_bigrams":[["bold","earth"],["earth","teen"],["teen","adventures"],["tour","company"],["company","based"],["adventure","programs"],["high","school"],["school","teens"],["teens","bold"],["bold","earth"],["earth","offers"],["offers","trips"],["locations","around"],["bold","earth"],["american","camp"],["camp","association"],["association","bold"],["bold","earth"],["tour","group"],["group","members"],["swept","outo"],["outo","sea"],["tide","pool"],["pool","area"],["hawaii","one"],["one","boy"],["later","discovered"],["discovered","thathe"],["thathe","kayak"],["kayak","company"],["bold","earth"],["accident","occurred"],["missing","teen"],["teen","also"],["also","said"],["said","thathe"],["thathe","main"],["main","tour"],["tour","leader"],["drug","use"],["use","although"],["incident","category"],["category","travel"],["travel","category"],["category","tourism"]],"all_collocations":["bold earth","earth teen","teen adventures","tour company","company based","adventure programs","high school","school teens","teens bold","bold earth","earth offers","offers trips","locations around","bold earth","american camp","camp association","association bold","bold earth","tour group","group members","swept outo","outo sea","tide pool","pool area","hawaii one","one boy","later discovered","discovered thathe","thathe kayak","kayak company","bold earth","accident occurred","missing teen","teen also","also said","said thathe","thathe main","main tour","tour leader","drug use","use although","incident category","category travel","travel category","category tourism"],"new_description":"bold earth teen adventures tour company_based colorado adventure programs middle high_school teens bold earth offers trips locations around world company founded abbott bold earth accredited american camp association bold earth twof tour group members swept outo sea hiking tide pool area hawaii one boy rescued later discovered thathe kayak company bold earth leading outside bounds permit accident occurred parents missing teen also said thathe main tour leader previously charged drug_use although evidence drugs involved incident category_travel category_tourism"},{"title":"Booking (clubbing)","description":"booking korean language korean is a common practice in south korea night club s oforced socialization booking is a practice in which waiters bring female patronsometimes forcibly to a table to sit with men both parties are free to leave at any time or depending on mutual interesthey can continue to sitogether andrink and talk although outwardly similar toutsiders these are not host and hostess clubs hostess clubs and although the men arexpected to tip and pay their waiters to bring women to their table the women are not employees nor are they prostitutes but fellow clubbers korean confucianism in korea has had a profound effect on social interactions in traditional confucianism one was expected to give proper deference and respectone another based one s position within a five level hierarchy only the bottom of which was of one between equals one s position in this hierarchy was based on a mix of one s ancestry family position official offices if any and social status with regards to marriage one was expected to find a partner of the same social status as one s own an appropriate partner being one whose status was neither above nor beneath one s own to facilitate this there was the traditional matchmaking matchmaker asouth korea urbanised and industrialised the hierarchical stratification of society remained in addition to ancestry one social position in korean society now includes the level of one s education almater profession which company one works for and one s position and seniority whether one is a seonbae or hubae within the company increasingly lesso social interactions would become paralysed unless people were properly introduced and so couldetermine one social position with regards one another fear of behaving inappropriately tone s own position leading to an outright refusal to interact with strangers with regards to marriage meeting people outside one s established social circle is difficult and within this circle for example with colleagues one is constrained by what would be considered appropriate and inappropriate relationships depending one seniority and position in the hierarchy the old professional matchmakerstill exist and friends and family will act as informal matchmakers however even when both parties are interested in meeting a member of the opposite sex such as when clubbing a korean would find it difficulto ask a stranger for a dance a date or more and those who do would be seenegatively by the more conservative booking arose therefore as an icebreaker between individuals who would otherwise be too embarrassed to approach one another and has been described as a form of speedating asouth koreans have become more comfortable with other ways to meet new people such as through the internet booking clubs have declined in booking clubs groups of men will pay for a booth oroom the higher priced they are the better placed they are tobserve the dance floor they will alsorder a set of drinks and snacks for their table the male groups are assigned a waiter who for tips will try and bring female patrons to their table if they see a specific girl on the dance floor thathey are interested in they may ask their waiter to try and bring her to their table although toutsiders these clubs have been mistaken for host and hostess clubs hostess clubs the women are not employees nor are they prostitutes but fellow clubbers they are free to leave at any time and male patronshould not make the mistake thatheir paymento the waiter however much it may bentitles them to anything buthe opportunity to introduce themselves or that it relieves them of the need to be gentlemen among both male and female patrons there will be those who want more than some drinks conversation and an exchange of phone numbers it is the job of the waiter therefore to try and match only those with similar intentions ahn hyeong hwan the grand national party representative and the member of the parliamentary level committee on culture sports tourism broadcasting communications raised the issue of how thenglish language arirang tv presented the concept of booking to viewers and how it could potentially portray as negative an aspect of korean contemporary culture outside of korea in the united states le prive was a popular korean american venue for booking externalinks an introduction to korean booking clubs category nightclubs category south korean culture","main_words":["booking","korean","language","korean","common_practice","south_korea","night_club","booking","practice","waiters","bring","female","table","sit","men","parties","free","leave","time","depending","mutual","continue","andrink","talk","although","similar","host","hostess","clubs","hostess","clubs","although","men","arexpected","tip","pay","waiters","bring","women","table","women","employees","prostitutes","fellow","clubbers","korean","korea","profound","effect","social","interactions","traditional","one","expected","give","proper","another","based","one","position","within","five","level","hierarchy","bottom","one","equals","one","position","hierarchy","based","mix","one","ancestry","family","position","official","offices","social","status","regards","marriage","one","expected","find","partner","social","status","one","appropriate","partner","one","whose","status","neither","beneath","one","facilitate","traditional","korea","society","remained","addition","ancestry","one","social","position","korean","society","includes","level","one","education","almater","profession","company","one","works","one","position","whether","one","within","company","increasingly","social","interactions","would_become","unless","people","properly","introduced","one","social","position","regards","one","another","fear","tone","position","leading","interact","strangers","regards","marriage","meeting","people","outside","one","established","social","circle","difficult","within","circle","example","colleagues","one","would","considered","appropriate","inappropriate","relationships","depending","one","position","hierarchy","old","professional","exist","friends","family","act","informal","however","even","parties","interested","meeting","member","opposite","sex","clubbing","korean","would","find","difficulto","ask","stranger","dance","date","would","conservative","booking","arose","therefore","individuals","would","otherwise","approach","one","another","described","form","koreans","become","comfortable","ways","meet","new","people","internet","booking","clubs","declined","booking","clubs","groups","men","pay","booth","higher","priced","better","placed","tobserve","dance_floor","set","drinks","snacks","table","male","groups","assigned","waiter","tips","try","bring","female","patrons","table","see","specific","girl","dance_floor","thathey","interested","may","ask","waiter","try","bring","table","although","clubs","host","hostess","clubs","hostess","clubs","women","employees","prostitutes","fellow","clubbers","free","leave","time","male","make","mistake","thatheir","waiter","however","much","may","anything","buthe","opportunity","introduce","need","gentlemen","among","male","female","patrons","want","drinks","conversation","exchange","phone","numbers","job","waiter","therefore","try","match","similar","intentions","grand_national","party","representative","member","level","committee","culture","sports_tourism","broadcasting","communications","raised","issue","thenglish_language","presented","concept","booking","viewers","could","potentially","negative","aspect","korean","contemporary","culture","outside","korea","united_states","popular","korean","american","venue","booking","externalinks","introduction","korean","booking","clubs","category_nightclubs_category","south_korean","culture"],"clean_bigrams":[["booking","korean"],["korean","language"],["language","korean"],["common","practice"],["south","korea"],["korea","night"],["night","club"],["waiters","bring"],["bring","female"],["talk","although"],["hostess","clubs"],["clubs","hostess"],["hostess","clubs"],["men","arexpected"],["waiters","bring"],["bring","women"],["fellow","clubbers"],["clubbers","korean"],["profound","effect"],["social","interactions"],["give","proper"],["another","based"],["based","one"],["position","within"],["five","level"],["level","hierarchy"],["equals","one"],["ancestry","family"],["family","position"],["position","official"],["official","offices"],["social","status"],["marriage","one"],["social","status"],["appropriate","partner"],["one","whose"],["whose","status"],["beneath","one"],["society","remained"],["ancestry","one"],["one","social"],["social","position"],["korean","society"],["education","almater"],["almater","profession"],["company","one"],["one","works"],["whether","one"],["company","increasingly"],["social","interactions"],["interactions","would"],["would","become"],["unless","people"],["properly","introduced"],["one","social"],["social","position"],["regards","one"],["one","another"],["another","fear"],["position","leading"],["marriage","meeting"],["meeting","people"],["people","outside"],["outside","one"],["established","social"],["social","circle"],["colleagues","one"],["considered","appropriate"],["inappropriate","relationships"],["relationships","depending"],["depending","one"],["old","professional"],["however","even"],["opposite","sex"],["korean","would"],["would","find"],["difficulto","ask"],["conservative","booking"],["booking","arose"],["arose","therefore"],["would","otherwise"],["approach","one"],["one","another"],["meet","new"],["new","people"],["internet","booking"],["booking","clubs"],["booking","clubs"],["clubs","groups"],["higher","priced"],["better","placed"],["dance","floor"],["male","groups"],["bring","female"],["female","patrons"],["specific","girl"],["dance","floor"],["floor","thathey"],["may","ask"],["table","although"],["hostess","clubs"],["clubs","hostess"],["hostess","clubs"],["fellow","clubbers"],["mistake","thatheir"],["waiter","however"],["however","much"],["anything","buthe"],["buthe","opportunity"],["gentlemen","among"],["female","patrons"],["drinks","conversation"],["phone","numbers"],["waiter","therefore"],["similar","intentions"],["grand","national"],["national","party"],["party","representative"],["level","committee"],["culture","sports"],["sports","tourism"],["tourism","broadcasting"],["broadcasting","communications"],["communications","raised"],["thenglish","language"],["tv","presented"],["could","potentially"],["korean","contemporary"],["contemporary","culture"],["culture","outside"],["united","states"],["popular","korean"],["korean","american"],["american","venue"],["booking","externalinks"],["korean","booking"],["booking","clubs"],["clubs","category"],["category","nightclubs"],["nightclubs","category"],["category","south"],["south","korean"],["korean","culture"]],"all_collocations":["booking korean","korean language","language korean","common practice","south korea","korea night","night club","waiters bring","bring female","talk although","hostess clubs","clubs hostess","hostess clubs","men arexpected","waiters bring","bring women","fellow clubbers","clubbers korean","profound effect","social interactions","give proper","another based","based one","position within","five level","level hierarchy","equals one","ancestry family","family position","position official","official offices","social status","marriage one","social status","appropriate partner","one whose","whose status","beneath one","society remained","ancestry one","one social","social position","korean society","education almater","almater profession","company one","one works","whether one","company increasingly","social interactions","interactions would","would become","unless people","properly introduced","one social","social position","regards one","one another","another fear","position leading","marriage meeting","meeting people","people outside","outside one","established social","social circle","colleagues one","considered appropriate","inappropriate relationships","relationships depending","depending one","old professional","however even","opposite sex","korean would","would find","difficulto ask","conservative booking","booking arose","arose therefore","would otherwise","approach one","one another","meet new","new people","internet booking","booking clubs","booking clubs","clubs groups","higher priced","better placed","dance floor","male groups","bring female","female patrons","specific girl","dance floor","floor thathey","may ask","table although","hostess clubs","clubs hostess","hostess clubs","fellow clubbers","mistake thatheir","waiter however","however much","anything buthe","buthe opportunity","gentlemen among","female patrons","drinks conversation","phone numbers","waiter therefore","similar intentions","grand national","national party","party representative","level committee","culture sports","sports tourism","tourism broadcasting","broadcasting communications","communications raised","thenglish language","tv presented","could potentially","korean contemporary","contemporary culture","culture outside","united states","popular korean","korean american","american venue","booking externalinks","korean booking","booking clubs","clubs category","category nightclubs","nightclubs category","category south","south korean","korean culture"],"new_description":"booking korean language korean common_practice south_korea night_club booking practice waiters bring female table sit men parties free leave time depending mutual continue andrink talk although similar host hostess clubs hostess clubs although men arexpected tip pay waiters bring women table women employees prostitutes fellow clubbers korean korea profound effect social interactions traditional one expected give proper another based one position within five level hierarchy bottom one equals one position hierarchy based mix one ancestry family position official offices social status regards marriage one expected find partner social status one appropriate partner one whose status neither beneath one facilitate traditional korea society remained addition ancestry one social position korean society includes level one education almater profession company one works one position whether one within company increasingly social interactions would_become unless people properly introduced one social position regards one another fear tone position leading interact strangers regards marriage meeting people outside one established social circle difficult within circle example colleagues one would considered appropriate inappropriate relationships depending one position hierarchy old professional exist friends family act informal however even parties interested meeting member opposite sex clubbing korean would find difficulto ask stranger dance date would conservative booking arose therefore individuals would otherwise approach one another described form koreans become comfortable ways meet new people internet booking clubs declined booking clubs groups men pay booth higher priced better placed tobserve dance_floor set drinks snacks table male groups assigned waiter tips try bring female patrons table see specific girl dance_floor thathey interested may ask waiter try bring table although clubs host hostess clubs hostess clubs women employees prostitutes fellow clubbers free leave time male make mistake thatheir waiter however much may anything buthe opportunity introduce need gentlemen among male female patrons want drinks conversation exchange phone numbers job waiter therefore try match similar intentions grand_national party representative member level committee culture sports_tourism broadcasting communications raised issue thenglish_language tv presented concept booking viewers could potentially negative aspect korean contemporary culture outside korea united_states popular korean american venue booking externalinks introduction korean booking clubs category_nightclubs_category south_korean culture"},{"title":"Bookstore tourism","description":"bookstore tourism is a type of cultural tourism that promotes independent bookstores as a group travel destination it started as a grassroots efforto support locally owned and operated bookshops many of whichave struggled to compete with large bookstore chains and online retailers those who promote bookstore tourism encourage schools libraries readingroups and other miscellaneous organizations to create day trips and literary outings to cities and towns with a concentration of independent bookstores groups of variousizes around the us have offered such excursions usually via chartered bus and often incorporating book signings author home tours and historical sites they also encourage local booksellers to attract bibliophiles to their communities by employing bookstore tourism as an economic developmentool others benefiting include local retailers restaurants bus companies and travel professionals theffort also provides organizations with an outreach opportunity to support reading and literacy the bookselling publishing and motorcoach industries have recognized the concept s potential as a group travel niche and marketing tool see also book town independent bookstore used book used bookstorexternalinks bookstoretourismcom the london bookshop map category bookstores category cultural tourism","main_words":["bookstore","tourism","type","cultural_tourism","promotes","independent","bookstores","group","travel_destination","started","efforto","support","locally","owned","operated","many","whichave","struggled","compete","large","bookstore","chains","online","retailers","promote","bookstore","tourism","encourage","schools","libraries","miscellaneous","organizations","create","day_trips","literary","outings","cities","towns","concentration","independent","bookstores","groups","around","us","offered","excursions","usually","via","chartered","bus","often","incorporating","book","author","home","tours","historical","sites","also","encourage","local","attract","communities","employing","bookstore","tourism","economic","others","include","local","retailers","restaurants","bus","companies","travel","professionals","also_provides","organizations","outreach","opportunity","support","reading","publishing","industries","recognized","concept","potential","group","travel","niche","marketing","tool","see_also","book","town","independent","bookstore","used","book","used","london","map","category_cultural_tourism"],"clean_bigrams":[["bookstore","tourism"],["cultural","tourism"],["promotes","independent"],["independent","bookstores"],["group","travel"],["travel","destination"],["efforto","support"],["support","locally"],["locally","owned"],["whichave","struggled"],["large","bookstore"],["bookstore","chains"],["online","retailers"],["promote","bookstore"],["bookstore","tourism"],["tourism","encourage"],["encourage","schools"],["schools","libraries"],["miscellaneous","organizations"],["create","day"],["day","trips"],["literary","outings"],["independent","bookstores"],["bookstores","groups"],["excursions","usually"],["usually","via"],["via","chartered"],["chartered","bus"],["often","incorporating"],["incorporating","book"],["author","home"],["home","tours"],["historical","sites"],["also","encourage"],["encourage","local"],["employing","bookstore"],["bookstore","tourism"],["include","local"],["local","retailers"],["retailers","restaurants"],["restaurants","bus"],["bus","companies"],["travel","professionals"],["also","provides"],["provides","organizations"],["outreach","opportunity"],["support","reading"],["group","travel"],["travel","niche"],["marketing","tool"],["tool","see"],["see","also"],["also","book"],["book","town"],["town","independent"],["independent","bookstore"],["bookstore","used"],["used","book"],["book","used"],["map","category"],["category","bookstores"],["bookstores","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["bookstore tourism","cultural tourism","promotes independent","independent bookstores","group travel","travel destination","efforto support","support locally","locally owned","whichave struggled","large bookstore","bookstore chains","online retailers","promote bookstore","bookstore tourism","tourism encourage","encourage schools","schools libraries","miscellaneous organizations","create day","day trips","literary outings","independent bookstores","bookstores groups","excursions usually","usually via","via chartered","chartered bus","often incorporating","incorporating book","author home","home tours","historical sites","also encourage","encourage local","employing bookstore","bookstore tourism","include local","local retailers","retailers restaurants","restaurants bus","bus companies","travel professionals","also provides","provides organizations","outreach opportunity","support reading","group travel","travel niche","marketing tool","tool see","see also","also book","book town","town independent","independent bookstore","bookstore used","used book","book used","map category","category bookstores","bookstores category","category cultural","cultural tourism"],"new_description":"bookstore tourism type cultural_tourism promotes independent bookstores group travel_destination started efforto support locally owned operated many whichave struggled compete large bookstore chains online retailers promote bookstore tourism encourage schools libraries miscellaneous organizations create day_trips literary outings cities towns concentration independent bookstores groups around us offered excursions usually via chartered bus often incorporating book author home tours historical sites also encourage local attract communities employing bookstore tourism economic others include local retailers restaurants bus companies travel professionals also_provides organizations outreach opportunity support reading publishing industries recognized concept potential group travel niche marketing tool see_also book town independent bookstore used book used london map category_bookstores category_cultural_tourism"},{"title":"Booze cruise","description":"booze cruise is a british colloquial term for a brief trip from britain to france or belgium withe intent of taking advantage of lower prices and buying personal supplies of especially alcoholic beverage alcohol or tobacco in bulk quantities this a legally acceptable process and should not be confused with smuggling the term is also used in other countries to refer to a pleasure outing on a ship or boat involving a significant amount of drinking or an outing to purchase large amounts of alcohol in bulk for a party or outing it probably originateduring prohibition united states prohibition when americans would take cruises to nowhere to enjoy alcohol which could legally be served on board once outside american territorial waters the background generally alcohol and tobacco taxes are lower in france than in britain economically it makesense for people to buy their supplies of wine beer spirits and tobacco in bulk in france instead of britain there is keen competition between list oferry operators ferry operators and the channel tunnel eurotunnel shuttle the day fares to calais are normally around per vehicle but are sometimes discounted to as little as at off peak timesince beer often costs little more than half thenglishoprice at worsthe savings defray the cost of a day out serving this market has become big business around the major ferry ports of calais boulogne sur mer boulogne andunkirk in france and ostend in belgium even longeroutes from cherbourg octeville cherbourg normandy and brittany generate business boosted by ferries from ireland where alcohol duties areven higher thexit route from the calais ferry port passeseveralarge warehouse retailers english owned that serve the market and some large british supermarket chains have alcohol only brancheselling bottles identical to those in britain but at deep discounts the frenchave opened an enormoushopping precinct adjacento the channel tunnel cit europe thattracts large numbers of britishoppers following large increases in tobacco duty in france it is now very common for smokers to make a detour to the small town of adinkerke just over the border in belgium where tobacco duty is lower many people intending to purchase mainly tobacco products opt for the revitalised service from dover to dunkirk as dunkirk is much closer to the belgian border than calais and the ferries on this route are slightly more smoker friendly some buying both tobacco and alcohol make a triangular journey dover dunkirk calais dover or vice versa it is importanto differentiate between booze cruisers who purchase and transport goods legally and professional smugglers whoften have criminal motives genuine booze cruisers are often people on a budget who simply opto purchase their own personal supplies from shop a in france or belgium at lower prices than offered at shop b in britain booze cruisers normally travel as a family or group ofriends and often take the opportunity to generally have a day out in france and indulge in recreational channel shopping for french produce and unfamiliar foods clothing and other goods while they are there in addition to alcohol and tobacco many other items including mundane household itemsuch as washing powder and cooking oil are mucheaper in france than the uk the cost of getting to france fluctuates due to season and fuel surcharges but fares for foot passengers remain low calais in particular is very well served by public transport withe ferry companies also providing a shuttle bus from the ferry terminal to the town centre and by requesthe bus interchange athe sncf railway station french tobacco duties have also risen reducing further theconomic advantage of a booze cruise unless one is close to the channel ports it is unlikely to be financially beneficial the motivation is changing therefore from purely economic to leisure and variety of choice originally alcohol purchases on board the ferry had the additional attraction of being duty free adding a secondary meaning to booze cruiseconomic impacts the current situation benefits individuals living close to thenglish south coast who retain an economic advantage by shopping in france it benefits thentrepreneurs who have businesses around the french ports dependent upon bulk purchases and alsother local businesses that benefit from passing trade the calais area suffers high unemployment around and benefits from the service jobs created by the influx of english day tripper s the ferry and tunnel operators also benefit from thextraffic in a situation that might otherwise be over supplied on the downside uk taxespecially on tobacco seem to have risen beyond the point of diminishing returnso the british exchequer losesubstantial revenue that might otherwise have been collected to theconomies ofrance and belgium shops particularly in thenglish south east also reporthatheir trade suffers because taxes make their prices uncompetitive with both legal and illegal imports french law limiting the transport of tobacco a recent french law has effectively outlawed tobacco tourism which uses franceither as a destination or as a route under pressure from the tobacco sellers interest group les bureaux de tabac andespite the resistance of the french governmenthe french parliament has enacted a law that makes it illegal to transport more than cigarettes whilst in french territory french tobacco law fines and confiscation are sanctions if a person is found to be in possession of more than cigarettes whilstraveling through in france the law is designed to prevent french citizens buying tobacco in belgium and luxembourg following recentax increases in france it has become more attractive for french citizens to buy tobacco in belgium and luxembourg the law also applies to citizens of other european countries traveling through france with more than cigarettes in their possession there is a suggestion thathe law is incompatible with european commission directives which demand freedom of movement and goods for personal use across the borders of european union countries excluding specifically named new member states legal issues and uk customs eu directive article states as regards products acquired by private individuals for their own use and transported by them excise duty shall be charged in the member state in which they are acquired in answer to a legal challenge a european court of justice ruling onovember surprisingly overturned their own advocate general s advice and reconfirmed that only products acquired and transported personally by private individuals arexempt from excise duty in the member state of importation this ruling effectively thwarted the hoped for option of orderingoods particularly tobacco via internet from low duty states in theuropean union and having them posted to a united kingdom address causing discussion in the british mediabout how a supposed free trade area seems to work for the benefit of some but nothers the current position is people may personally bring into britain withem unlimited amounts of alcohol and or tobacco from another eu member state provided thathey have been legally purchased withe relevant local rate of duty paid in the member state of origin and are for either personal consumption or as a genuine gifto another importingoods foresale at a profit or evenot for profit proxy purchases on behalf of non travelling third parties is not permitted although fully aware of this hm revenue and customs hmrc faced with widespread abuse by smugglers impose guidelines limits based on whathey are prepared to believe areasonable amounts for personal consumptionominally six monthsupply mostravellers are unaffected buthere are instances of infrequentrippers forward buying large supplies ofor example their favourite brand of cigarette and falling foul of the limits intended to deal with professional smugglers hmrc have the legal righto stop and search any vehicle as their main duty is to detect smuggled goods and other far more sinister imports they cand usually do use their own common sense regarding unconcealed ie openly carried goods above their limits if they are happy thathe goods are genuinely for personal consumption generally suspicion will only be aroused if the goodstarto look less like a personal hoard and more like a commercial operation for example importing more different brands of tobacco products than there are adultravellers in the vehicle arouses particular suspicion as most smokers tend to remain loyal tone particular brand however there have been reported cases of morextreme treatment especially where people have unnecessarily concealed extra goods in vehicle cavitiespare wheel wells etc with family cars and contents being confiscated on the spot and the travelers left stranded at dover in the dead of nighthis has led to legal challenges to the powers of hmrciting theavy handedness and inconsistency of some actions and their dubious legality under european law a variation the standard booze cruise was the ill fated offshore off licence which operated briefly off hartlepool in popular culture the uk itv network itv comedy drama the booze cruise featured the antics of a group of men from england going on a booze cruise the us tv series the office us tv series the office had an episodentitled booze cruise the office booze cruise chicago punk rock band the lawrence arms have a song entitled boatless booze cruise part on theirecord apathy and exhaustion in an episode of the big bang theory sheldon tells a story where after a deep gum cleaning he got on what he thought was a bus but was actually a booze cruise to mexico in an episode of parks and recreation pawnee today anchor joan callamezzo passes out during the show aftereturning from a booze cruise other meanings the term booze cruise is used internationally to refer to a pleasure cruise on a passenger vessel where the main objective is drinking in pleasant surroundings in southern california beach cities booze cruise is often associated with groups of young people riding beach cruiser bicycles doing a pub crawl see also rip off britain border trade references externalinks current guidelines and useful advice from hmrcategory types of tourism category tax avoidance category international trade","main_words":["booze","cruise","british","colloquial","term","brief","trip","britain","france","belgium","withe","intent","taking","advantage","lower","prices","buying","personal","supplies","especially","alcoholic_beverage","alcohol","tobacco","bulk","quantities","legally","acceptable","process","confused","term","also_used","countries","refer","pleasure","outing","ship","boat","involving","significant","amount","drinking","outing","purchase","large","amounts","alcohol","bulk","party","outing","probably","prohibition","united_states_prohibition","americans","would_take","cruises","nowhere","enjoy","alcohol","could","legally","served","board","outside","american","territorial","waters","background","generally","alcohol","tobacco","taxes","lower","france","britain","economically","people","buy","supplies","wine","beer","spirits","tobacco","bulk","france","instead","britain","keen","competition","list","operators","ferry","operators","channel","tunnel","shuttle","day","fares","calais","normally","around","per","vehicle","sometimes","discounted","little","peak","beer","often","costs","little","half","savings","cost","day","serving","market","become","big","business","around","major","ferry","ports","calais","boulogne","sur","mer","boulogne","france","belgium","even","generate","business","ferries","ireland","alcohol","duties","higher","thexit","route","calais","ferry","port","warehouse","retailers","english","owned","serve","market","large","british","supermarket","chains","alcohol","bottles","identical","britain","deep","discounts","opened","adjacento","channel","tunnel","cit","europe","thattracts","large_numbers","following","large","increases","tobacco","duty","france","common","smokers","make","detour","small_town","border","belgium","tobacco","duty","lower","many_people","intending","purchase","mainly","tobacco","products","service","dover","much","closer","belgian","border","calais","ferries","route","slightly","friendly","buying","tobacco","alcohol","make","triangular","journey","dover","calais","dover","vice","versa","importanto","differentiate","booze_cruisers","purchase","transport","goods","legally","professional","smugglers","whoften","criminal","motives","genuine","booze_cruisers","often","people","budget","simply","purchase","personal","supplies","shop","france","belgium","lower","prices","offered","shop","b","britain","booze_cruisers","normally","travel","family","group","ofriends","often","take","opportunity","generally","day","france","recreational","channel","shopping","french","produce","unfamiliar","foods","clothing","goods","addition","alcohol","tobacco","many","items","including","household","itemsuch","washing","powder","cooking","oil","france","uk","cost","getting","france","due","season","fuel","fares","foot","passengers","remain","low","calais","particular","well","served","public_transport","withe","ferry","companies","also","providing","shuttle","bus","ferry","terminal","town","centre","bus","athe","railway_station","french","tobacco","duties","also","risen","reducing","theconomic","advantage","booze_cruise","unless","one","close","channel","ports","unlikely","financially","beneficial","motivation","changing","therefore","purely","economic","leisure","variety","choice","originally","alcohol","purchases","board","ferry","additional","attraction","duty","free","adding","secondary","meaning","booze","impacts","current","situation","benefits","individuals","living","close","thenglish","south","coast","retain","economic","advantage","shopping","france","benefits","businesses","around","french","ports","dependent","upon","bulk","purchases","local_businesses","benefit","passing","trade","calais","area","high","unemployment","around","benefits","service","jobs","created","influx","english","day_tripper","ferry","tunnel","operators","also","benefit","situation","might","otherwise","supplied","downside","uk","tobacco","seem","risen","beyond","point","diminishing","british","revenue","might","otherwise","collected","ofrance","belgium","shops","particularly","thenglish","south_east","also","trade","taxes","make","prices","legal","illegal","imports","french","law","limiting","transport","tobacco","recent","french","law","effectively","tobacco","tourism","uses","destination","route","pressure","tobacco","sellers","interest","group","les","bureaux","de","resistance","french","governmenthe","french","parliament","enacted","law","makes","illegal","transport","cigarettes","whilst","french","territory","french","tobacco","law","fines","person","found","possession","cigarettes","france","law","designed","prevent","french","citizens","buying","tobacco","belgium","luxembourg","following","increases","france","become","attractive","french","citizens","buy","tobacco","belgium","luxembourg","law","also","applies","citizens","european_countries","traveling","france","cigarettes","possession","suggestion","thathe","law","european","commission","directives","demand","freedom","movement","goods","personal","use","across","borders","european","union","countries","excluding","specifically","named","new","member_states","legal","issues","uk","customs","directive","article","states","regards","products","acquired","private","individuals","use","transported","duty","shall","charged","member","state","acquired","answer","legal","challenge","european","court","justice","ruling","onovember","overturned","advocate","general","advice","products","acquired","transported","personally","private","individuals","duty","member","state","ruling","effectively","hoped","option","particularly","tobacco","via","internet","low","duty","states","theuropean_union","posted","united_kingdom","address","causing","discussion","british","supposed","free_trade","area","seems","work","benefit","current","position","people","may","personally","bring","britain","withem","unlimited","amounts","alcohol","tobacco","another","member","state","provided","thathey","legally","purchased","withe","relevant","local","rate","duty","paid","member","state","origin","either","personal","consumption","genuine","another","profit","profit","purchases","behalf","non","travelling","third","parties","permitted","although","fully","aware","revenue","customs","faced","widespread","abuse","smugglers","impose","guidelines","limits","based","whathey","prepared","believe","amounts","personal","six","buthere","instances","forward","buying","large","supplies","ofor","example","favourite","brand","cigarette","falling","limits","intended","deal","professional","smugglers","legal","righto","stop","search","vehicle","main","duty","goods","far","imports","cand","usually","use","common","sense","regarding","openly","carried","goods","limits","happy","thathe","goods","personal","consumption","generally","suspicion","look","less","like","personal","like","commercial","operation","example","different","brands","tobacco","products","vehicle","particular","suspicion","smokers","tend","remain","loyal","tone","particular","brand","however","reported","cases","treatment","especially","people","extra","goods","vehicle","wheel","wells","etc","family","cars","contents","confiscated","spot","travelers","left","stranded","dover","dead","led","legal","challenges","powers","theavy","actions","legality","european","law","variation","standard","booze_cruise","ill","offshore","licence","operated","briefly","popular_culture","uk","itv","network","itv","comedy","drama","booze_cruise","featured","group","men","england","going","booze_cruise","us_tv_series","office","us_tv_series","office","booze_cruise","office","booze_cruise","chicago","punk","rock","band","lawrence","arms","song","entitled","booze_cruise","part","episode","big","theory","sheldon","tells","story","deep","cleaning","got","thought","bus","actually","booze_cruise","mexico","episode","parks","recreation","today","anchor","joan","passes","show","booze_cruise","meanings","term","booze_cruise","used","internationally","refer","pleasure","cruise","passenger","vessel","main","objective","drinking","pleasant","surroundings","southern_california","beach","cities","booze_cruise","often","associated","groups","young_people","riding","beach","cruiser","bicycles","pub","crawl","see_also","britain","border","trade","references_externalinks","current","guidelines","useful","advice","types","tourism_category","tax","avoidance","category","international_trade"],"clean_bigrams":[["booze","cruise"],["british","colloquial"],["colloquial","term"],["brief","trip"],["belgium","withe"],["withe","intent"],["taking","advantage"],["lower","prices"],["buying","personal"],["personal","supplies"],["especially","alcoholic"],["alcoholic","beverage"],["beverage","alcohol"],["bulk","quantities"],["legally","acceptable"],["acceptable","process"],["also","used"],["pleasure","outing"],["boat","involving"],["significant","amount"],["purchase","large"],["large","amounts"],["prohibition","united"],["united","states"],["states","prohibition"],["americans","would"],["would","take"],["take","cruises"],["enjoy","alcohol"],["could","legally"],["outside","american"],["american","territorial"],["territorial","waters"],["background","generally"],["generally","alcohol"],["tobacco","taxes"],["britain","economically"],["wine","beer"],["beer","spirits"],["france","instead"],["keen","competition"],["operators","ferry"],["ferry","operators"],["channel","tunnel"],["day","fares"],["normally","around"],["around","per"],["per","vehicle"],["sometimes","discounted"],["beer","often"],["often","costs"],["costs","little"],["become","big"],["big","business"],["business","around"],["major","ferry"],["ferry","ports"],["calais","boulogne"],["boulogne","sur"],["sur","mer"],["mer","boulogne"],["belgium","even"],["generate","business"],["alcohol","duties"],["higher","thexit"],["thexit","route"],["calais","ferry"],["ferry","port"],["warehouse","retailers"],["retailers","english"],["english","owned"],["large","british"],["british","supermarket"],["supermarket","chains"],["bottles","identical"],["deep","discounts"],["channel","tunnel"],["tunnel","cit"],["cit","europe"],["europe","thattracts"],["thattracts","large"],["large","numbers"],["following","large"],["large","increases"],["tobacco","duty"],["small","town"],["tobacco","duty"],["lower","many"],["many","people"],["people","intending"],["purchase","mainly"],["mainly","tobacco"],["tobacco","products"],["much","closer"],["belgian","border"],["buying","tobacco"],["alcohol","make"],["triangular","journey"],["journey","dover"],["calais","dover"],["vice","versa"],["importanto","differentiate"],["booze","cruisers"],["transport","goods"],["goods","legally"],["professional","smugglers"],["smugglers","whoften"],["criminal","motives"],["motives","genuine"],["genuine","booze"],["booze","cruisers"],["often","people"],["personal","supplies"],["lower","prices"],["shop","b"],["britain","booze"],["booze","cruisers"],["cruisers","normally"],["normally","travel"],["group","ofriends"],["often","take"],["recreational","channel"],["channel","shopping"],["french","produce"],["unfamiliar","foods"],["foods","clothing"],["tobacco","many"],["items","including"],["household","itemsuch"],["washing","powder"],["cooking","oil"],["foot","passengers"],["passengers","remain"],["remain","low"],["low","calais"],["well","served"],["public","transport"],["transport","withe"],["withe","ferry"],["ferry","companies"],["companies","also"],["also","providing"],["shuttle","bus"],["ferry","terminal"],["town","centre"],["railway","station"],["station","french"],["french","tobacco"],["tobacco","duties"],["also","risen"],["risen","reducing"],["theconomic","advantage"],["booze","cruise"],["cruise","unless"],["unless","one"],["channel","ports"],["financially","beneficial"],["changing","therefore"],["purely","economic"],["choice","originally"],["originally","alcohol"],["alcohol","purchases"],["additional","attraction"],["duty","free"],["free","adding"],["secondary","meaning"],["current","situation"],["situation","benefits"],["benefits","individuals"],["individuals","living"],["living","close"],["thenglish","south"],["south","coast"],["economic","advantage"],["businesses","around"],["french","ports"],["ports","dependent"],["dependent","upon"],["upon","bulk"],["bulk","purchases"],["local","businesses"],["passing","trade"],["calais","area"],["high","unemployment"],["unemployment","around"],["service","jobs"],["jobs","created"],["english","day"],["day","tripper"],["tunnel","operators"],["operators","also"],["also","benefit"],["might","otherwise"],["downside","uk"],["tobacco","seem"],["risen","beyond"],["might","otherwise"],["belgium","shops"],["shops","particularly"],["thenglish","south"],["south","east"],["east","also"],["taxes","make"],["illegal","imports"],["imports","french"],["french","law"],["law","limiting"],["recent","french"],["french","law"],["tobacco","tourism"],["tobacco","sellers"],["sellers","interest"],["interest","group"],["group","les"],["les","bureaux"],["bureaux","de"],["french","governmenthe"],["governmenthe","french"],["french","parliament"],["cigarettes","whilst"],["french","territory"],["territory","french"],["french","tobacco"],["tobacco","law"],["law","fines"],["prevent","french"],["french","citizens"],["citizens","buying"],["buying","tobacco"],["luxembourg","following"],["french","citizens"],["buy","tobacco"],["law","also"],["also","applies"],["european","countries"],["countries","traveling"],["suggestion","thathe"],["thathe","law"],["european","commission"],["commission","directives"],["demand","freedom"],["personal","use"],["use","across"],["european","union"],["union","countries"],["countries","excluding"],["excluding","specifically"],["specifically","named"],["named","new"],["new","member"],["member","states"],["states","legal"],["legal","issues"],["uk","customs"],["directive","article"],["article","states"],["regards","products"],["products","acquired"],["private","individuals"],["duty","shall"],["member","state"],["legal","challenge"],["european","court"],["justice","ruling"],["ruling","onovember"],["advocate","general"],["products","acquired"],["transported","personally"],["private","individuals"],["member","state"],["ruling","effectively"],["particularly","tobacco"],["tobacco","via"],["via","internet"],["low","duty"],["duty","states"],["theuropean","union"],["united","kingdom"],["kingdom","address"],["address","causing"],["causing","discussion"],["supposed","free"],["free","trade"],["trade","area"],["area","seems"],["current","position"],["people","may"],["may","personally"],["personally","bring"],["britain","withem"],["withem","unlimited"],["unlimited","amounts"],["member","state"],["state","provided"],["provided","thathey"],["legally","purchased"],["purchased","withe"],["withe","relevant"],["relevant","local"],["local","rate"],["duty","paid"],["member","state"],["either","personal"],["personal","consumption"],["non","travelling"],["travelling","third"],["third","parties"],["permitted","although"],["although","fully"],["fully","aware"],["widespread","abuse"],["smugglers","impose"],["impose","guidelines"],["guidelines","limits"],["limits","based"],["forward","buying"],["buying","large"],["large","supplies"],["supplies","ofor"],["ofor","example"],["favourite","brand"],["limits","intended"],["professional","smugglers"],["legal","righto"],["righto","stop"],["main","duty"],["cand","usually"],["common","sense"],["sense","regarding"],["openly","carried"],["carried","goods"],["happy","thathe"],["thathe","goods"],["personal","consumption"],["consumption","generally"],["generally","suspicion"],["look","less"],["less","like"],["commercial","operation"],["different","brands"],["tobacco","products"],["particular","suspicion"],["smokers","tend"],["remain","loyal"],["loyal","tone"],["tone","particular"],["particular","brand"],["brand","however"],["reported","cases"],["treatment","especially"],["extra","goods"],["wheel","wells"],["wells","etc"],["family","cars"],["travelers","left"],["left","stranded"],["legal","challenges"],["european","law"],["standard","booze"],["booze","cruise"],["operated","briefly"],["popular","culture"],["uk","itv"],["itv","network"],["network","itv"],["itv","comedy"],["comedy","drama"],["booze","cruise"],["cruise","featured"],["england","going"],["booze","cruise"],["us","tv"],["tv","series"],["office","us"],["us","tv"],["tv","series"],["office","booze"],["booze","cruise"],["office","booze"],["booze","cruise"],["cruise","chicago"],["chicago","punk"],["punk","rock"],["rock","band"],["lawrence","arms"],["song","entitled"],["booze","cruise"],["cruise","part"],["theory","sheldon"],["sheldon","tells"],["booze","cruise"],["today","anchor"],["anchor","joan"],["booze","cruise"],["term","booze"],["booze","cruise"],["used","internationally"],["pleasure","cruise"],["passenger","vessel"],["main","objective"],["pleasant","surroundings"],["southern","california"],["california","beach"],["beach","cities"],["cities","booze"],["booze","cruise"],["often","associated"],["young","people"],["people","riding"],["riding","beach"],["beach","cruiser"],["cruiser","bicycles"],["pub","crawl"],["crawl","see"],["see","also"],["britain","border"],["border","trade"],["trade","references"],["references","externalinks"],["externalinks","current"],["current","guidelines"],["useful","advice"],["tourism","category"],["category","tax"],["tax","avoidance"],["avoidance","category"],["category","international"],["international","trade"]],"all_collocations":["booze cruise","british colloquial","colloquial term","brief trip","belgium withe","withe intent","taking advantage","lower prices","buying personal","personal supplies","especially alcoholic","alcoholic beverage","beverage alcohol","bulk quantities","legally acceptable","acceptable process","also used","pleasure outing","boat involving","significant amount","purchase large","large amounts","prohibition united","united states","states prohibition","americans would","would take","take cruises","enjoy alcohol","could legally","outside american","american territorial","territorial waters","background generally","generally alcohol","tobacco taxes","britain economically","wine beer","beer spirits","france instead","keen competition","operators ferry","ferry operators","channel tunnel","day fares","normally around","around per","per vehicle","sometimes discounted","beer often","often costs","costs little","become big","big business","business around","major ferry","ferry ports","calais boulogne","boulogne sur","sur mer","mer boulogne","belgium even","generate business","alcohol duties","higher thexit","thexit route","calais ferry","ferry port","warehouse retailers","retailers english","english owned","large british","british supermarket","supermarket chains","bottles identical","deep discounts","channel tunnel","tunnel cit","cit europe","europe thattracts","thattracts large","large numbers","following large","large increases","tobacco duty","small town","tobacco duty","lower many","many people","people intending","purchase mainly","mainly tobacco","tobacco products","much closer","belgian border","buying tobacco","alcohol make","triangular journey","journey dover","calais dover","vice versa","importanto differentiate","booze cruisers","transport goods","goods legally","professional smugglers","smugglers whoften","criminal motives","motives genuine","genuine booze","booze cruisers","often people","personal supplies","lower prices","shop b","britain booze","booze cruisers","cruisers normally","normally travel","group ofriends","often take","recreational channel","channel shopping","french produce","unfamiliar foods","foods clothing","tobacco many","items including","household itemsuch","washing powder","cooking oil","foot passengers","passengers remain","remain low","low calais","well served","public transport","transport withe","withe ferry","ferry companies","companies also","also providing","shuttle bus","ferry terminal","town centre","railway station","station french","french tobacco","tobacco duties","also risen","risen reducing","theconomic advantage","booze cruise","cruise unless","unless one","channel ports","financially beneficial","changing therefore","purely economic","choice originally","originally alcohol","alcohol purchases","additional attraction","duty free","free adding","secondary meaning","current situation","situation benefits","benefits individuals","individuals living","living close","thenglish south","south coast","economic advantage","businesses around","french ports","ports dependent","dependent upon","upon bulk","bulk purchases","local businesses","passing trade","calais area","high unemployment","unemployment around","service jobs","jobs created","english day","day tripper","tunnel operators","operators also","also benefit","might otherwise","downside uk","tobacco seem","risen beyond","might otherwise","belgium shops","shops particularly","thenglish south","south east","east also","taxes make","illegal imports","imports french","french law","law limiting","recent french","french law","tobacco tourism","tobacco sellers","sellers interest","interest group","group les","les bureaux","bureaux de","french governmenthe","governmenthe french","french parliament","cigarettes whilst","french territory","territory french","french tobacco","tobacco law","law fines","prevent french","french citizens","citizens buying","buying tobacco","luxembourg following","french citizens","buy tobacco","law also","also applies","european countries","countries traveling","suggestion thathe","thathe law","european commission","commission directives","demand freedom","personal use","use across","european union","union countries","countries excluding","excluding specifically","specifically named","named new","new member","member states","states legal","legal issues","uk customs","directive article","article states","regards products","products acquired","private individuals","duty shall","member state","legal challenge","european court","justice ruling","ruling onovember","advocate general","products acquired","transported personally","private individuals","member state","ruling effectively","particularly tobacco","tobacco via","via internet","low duty","duty states","theuropean union","united kingdom","kingdom address","address causing","causing discussion","supposed free","free trade","trade area","area seems","current position","people may","may personally","personally bring","britain withem","withem unlimited","unlimited amounts","member state","state provided","provided thathey","legally purchased","purchased withe","withe relevant","relevant local","local rate","duty paid","member state","either personal","personal consumption","non travelling","travelling third","third parties","permitted although","although fully","fully aware","widespread abuse","smugglers impose","impose guidelines","guidelines limits","limits based","forward buying","buying large","large supplies","supplies ofor","ofor example","favourite brand","limits intended","professional smugglers","legal righto","righto stop","main duty","cand usually","common sense","sense regarding","openly carried","carried goods","happy thathe","thathe goods","personal consumption","consumption generally","generally suspicion","look less","less like","commercial operation","different brands","tobacco products","particular suspicion","smokers tend","remain loyal","loyal tone","tone particular","particular brand","brand however","reported cases","treatment especially","extra goods","wheel wells","wells etc","family cars","travelers left","left stranded","legal challenges","european law","standard booze","booze cruise","operated briefly","popular culture","uk itv","itv network","network itv","itv comedy","comedy drama","booze cruise","cruise featured","england going","booze cruise","us tv","tv series","office us","us tv","tv series","office booze","booze cruise","office booze","booze cruise","cruise chicago","chicago punk","punk rock","rock band","lawrence arms","song entitled","booze cruise","cruise part","theory sheldon","sheldon tells","booze cruise","today anchor","anchor joan","booze cruise","term booze","booze cruise","used internationally","pleasure cruise","passenger vessel","main objective","pleasant surroundings","southern california","california beach","beach cities","cities booze","booze cruise","often associated","young people","people riding","riding beach","beach cruiser","cruiser bicycles","pub crawl","crawl see","see also","britain border","border trade","trade references","references externalinks","externalinks current","current guidelines","useful advice","tourism category","category tax","tax avoidance","avoidance category","category international","international trade"],"new_description":"booze cruise british colloquial term brief trip britain france belgium withe intent taking advantage lower prices buying personal supplies especially alcoholic_beverage alcohol tobacco bulk quantities legally acceptable process confused term also_used countries refer pleasure outing ship boat involving significant amount drinking outing purchase large amounts alcohol bulk party outing probably prohibition united_states_prohibition americans would_take cruises nowhere enjoy alcohol could legally served board outside american territorial waters background generally alcohol tobacco taxes lower france britain economically people buy supplies wine beer spirits tobacco bulk france instead britain keen competition list operators ferry operators channel tunnel shuttle day fares calais normally around per vehicle sometimes discounted little peak beer often costs little half savings cost day serving market become big business around major ferry ports calais boulogne sur mer boulogne france belgium even generate business ferries ireland alcohol duties higher thexit route calais ferry port warehouse retailers english owned serve market large british supermarket chains alcohol bottles identical britain deep discounts opened adjacento channel tunnel cit europe thattracts large_numbers following large increases tobacco duty france common smokers make detour small_town border belgium tobacco duty lower many_people intending purchase mainly tobacco products service dover much closer belgian border calais ferries route slightly friendly buying tobacco alcohol make triangular journey dover calais dover vice versa importanto differentiate booze_cruisers purchase transport goods legally professional smugglers whoften criminal motives genuine booze_cruisers often people budget simply purchase personal supplies shop france belgium lower prices offered shop b britain booze_cruisers normally travel family group ofriends often take opportunity generally day france recreational channel shopping french produce unfamiliar foods clothing goods addition alcohol tobacco many items including household itemsuch washing powder cooking oil france uk cost getting france due season fuel fares foot passengers remain low calais particular well served public_transport withe ferry companies also providing shuttle bus ferry terminal town centre bus athe railway_station french tobacco duties also risen reducing theconomic advantage booze_cruise unless one close channel ports unlikely financially beneficial motivation changing therefore purely economic leisure variety choice originally alcohol purchases board ferry additional attraction duty free adding secondary meaning booze impacts current situation benefits individuals living close thenglish south coast retain economic advantage shopping france benefits businesses around french ports dependent upon bulk purchases local_businesses benefit passing trade calais area high unemployment around benefits service jobs created influx english day_tripper ferry tunnel operators also benefit situation might otherwise supplied downside uk tobacco seem risen beyond point diminishing british revenue might otherwise collected ofrance belgium shops particularly thenglish south_east also trade taxes make prices legal illegal imports french law limiting transport tobacco recent french law effectively tobacco tourism uses destination route pressure tobacco sellers interest group les bureaux de resistance french governmenthe french parliament enacted law makes illegal transport cigarettes whilst french territory french tobacco law fines person found possession cigarettes france law designed prevent french citizens buying tobacco belgium luxembourg following increases france become attractive french citizens buy tobacco belgium luxembourg law also applies citizens european_countries traveling france cigarettes possession suggestion thathe law european commission directives demand freedom movement goods personal use across borders european union countries excluding specifically named new member_states legal issues uk customs directive article states regards products acquired private individuals use transported duty shall charged member state acquired answer legal challenge european court justice ruling onovember overturned advocate general advice products acquired transported personally private individuals duty member state ruling effectively hoped option particularly tobacco via internet low duty states theuropean_union posted united_kingdom address causing discussion british supposed free_trade area seems work benefit current position people may personally bring britain withem unlimited amounts alcohol tobacco another member state provided thathey legally purchased withe relevant local rate duty paid member state origin either personal consumption genuine another profit profit purchases behalf non travelling third parties permitted although fully aware revenue customs faced widespread abuse smugglers impose guidelines limits based whathey prepared believe amounts personal six buthere instances forward buying large supplies ofor example favourite brand cigarette falling limits intended deal professional smugglers legal righto stop search vehicle main duty goods far imports cand usually use common sense regarding openly carried goods limits happy thathe goods personal consumption generally suspicion look less like personal like commercial operation example different brands tobacco products vehicle particular suspicion smokers tend remain loyal tone particular brand however reported cases treatment especially people extra goods vehicle wheel wells etc family cars contents confiscated spot travelers left stranded dover dead led legal challenges powers theavy actions legality european law variation standard booze_cruise ill offshore licence operated briefly popular_culture uk itv network itv comedy drama booze_cruise featured group men england going booze_cruise us_tv_series office us_tv_series office booze_cruise office booze_cruise chicago punk rock band lawrence arms song entitled booze_cruise part episode big theory sheldon tells story deep cleaning got thought bus actually booze_cruise mexico episode parks recreation today anchor joan passes show booze_cruise meanings term booze_cruise used internationally refer pleasure cruise passenger vessel main objective drinking pleasant surroundings southern_california beach cities booze_cruise often associated groups young_people riding beach cruiser bicycles pub crawl see_also britain border trade references_externalinks current guidelines useful advice types tourism_category tax avoidance category international_trade"},{"title":"Bouchon","description":"image bouchon restaurant lyon trishhhh jpg thumb px the inside of a typical bouchon a bouchon is a type of restaurant found in lyon france that serves traditionalyonnaise cuisine such asausages foie gras duck p t oroast pork compared tother forms ofrench cooking such as nouvelle cuisine the dishes are quite fatty and heavily oriented around meathere are approximately twenty officially certified traditional bouchons but a larger number of establishments describe themselves using the term typically themphasis in a bouchon is not on haute cuisine but rather a convivial atmosphere and a personal relationship withe owner image bouchon letablierjpg righthumb another bouchon le tablier the apron in vieux lyon the tradition of bouchons came from small inns visited by history of silk the silk industry in france silk workers passing through lyon in the seventeenth and eighteenth centuries according to the dictionary petit robert le petit roberthis name derives from the th century expression for a bunch of twisted straw le petit robert sp cialt vx petit bouquet de paille rameau de feuillage qui servait d enseigne un cabaret ce cabaret estaminet le couple se donnait rendez vous dans un bouchon de l avenue a representation of such bundles began to appear on signs to designate the restaurants and by metonymy the restaurants themselves became known as bouchons the more common use of bouchons as a stopper or cork athe mouth of a bottle and its derivatives have the sametymology since pierre grison and his organization l association de d fense des bouchons lyonnais the association for the preservation of lyonnais bouchons bestow annual certifications to restaurants as authentic bouchonsbirck danielle richesse des r gions et gastronomie lyonnaise radio france internationale published february french retrieved may these restaurants receive the titles authentiques bouchons lyonnais and are identified with a sticker showing the marionette gnafron a lyonnaisymbol of the pleasures of dining with a glass of wine in one hand a napkin bearing the lyon crest in the other cuisine des gones french retrieved may the following list subjecto some fluctuation as the certification is bestowed annually contains most of the certified bouchons abel brunet caf des deux places caf des f d rations chabert et fils daniel et denise chez georges le petit bouchon les gones hugon le jura chez marcelle merci re la m re jean le mitonn le morgon le mus e chez paules trois maries a ma vigne and le vivarais while many bouchons are now oriented strongly towards the tourist market with increased prices and less traditional fare as a result a typical meal in a real bouchon costs around image lyon bouchon stepharojpg thumb px a bouchon in lyon image saucisson jpg thumb px dried saucissons de lyon image saint felicienjpg thumb px saint f licien cheese saint f licien a typical cheese from lyon typical items in the bouchon repertoire include soup tripe soupumpkin soup salads and cold appetizers chicken liver salad pork head cheese groins d ne salad literally donkey snout salad moulinhuile french retrieved may marinated herring salade lyonnaise lettuce with bacon croutons mustard condiment mustardressing and a egg food poached egg hot appetizers gateau de volaille chicken liver cake boudinoir blood sausage usually served with warm apples offal andouillette pork offal sausage assorted offal gratin tablier de sapeur fish stingray quenelle s ground fish dumplings grilled fillets meat coq au vin pot au feu pot roast chicken thighstuffed with morel s vegetables cardoon la moelle in bone marrow barboton pailasson de lyon cheese saint marcellin saint f licien cheese saint f licien rigotte de condrieu desserts tarte praline tart lemon meringue pie caramelized apples angel wings bugnes de lyon miniature beignet see also coussin de lyon category entertainment in lyon category culture in lyon category restaurants in lyon category types of restaurants","main_words":["image","bouchon","restaurant","lyon","jpg","thumb","px","inside","typical","bouchon","bouchon","type","restaurant","found","lyon","france","serves","cuisine","foie","gras","duck","p","pork","compared","tother","forms","ofrench","cooking","nouvelle","cuisine","dishes","quite","heavily","oriented","around","approximately","twenty","officially","certified","traditional","bouchons","larger","number","establishments","describe","using","term","typically","themphasis","bouchon","haute_cuisine","rather","atmosphere","personal","relationship","withe","owner","image","bouchon","righthumb","another","bouchon","apron","lyon","tradition","bouchons","came","small","inns","visited","history","silk","silk","industry","france","silk","workers","passing","lyon","seventeenth","eighteenth","centuries","according","dictionary","petit","robert","petit","name","derives","th_century","expression","bunch","straw","petit","robert","petit","de","de","cabaret","cabaret","couple","dans","bouchon","de","l","avenue","representation","began","appear","signs","designate","restaurants","restaurants","became_known","bouchons","common","use","bouchons","cork","athe","mouth","bottle","since","pierre","organization","l","association","de","des","bouchons","association","preservation","bouchons","annual","certifications","restaurants","authentic","des","r","gastronomie","radio","france","internationale","published","february","french","retrieved_may","restaurants","receive","titles","bouchons","identified","showing","marionette","pleasures","dining","glass","wine","one","hand","napkin","bearing","lyon","crest","cuisine","des","french","retrieved_may","following","list","subjecto","certification","annually","contains","certified","bouchons","places","f","daniel","denise","chez","georges","petit","bouchon","les","chez","la","jean","mus","e","chez","trois","many","bouchons","oriented","strongly","towards","tourist","market","increased","prices","less","traditional","fare","result","typical","meal","real","bouchon","costs","around","image","lyon","bouchon","thumb","px","bouchon","lyon","image","saucisson","jpg","thumb","px","dried","de","lyon","image","saint","thumb","px","saint","f","licien","cheese","saint","f","licien","typical","cheese","lyon","typical","items","bouchon","repertoire","include","soup","soup","salads","cold","appetizers","chicken","liver","salad","pork","head","cheese","salad","literally","donkey","salad","french","retrieved_may","marinated","lettuce","bacon","mustard","condiment","egg","food","egg","hot","appetizers","de","chicken","liver","cake","blood","sausage","usually","served","warm","pork","sausage","assorted","de","fish","ground","fish","dumplings","grilled","meat","vin","pot","pot","roast","chicken","vegetables","la","bone","marrow","de","lyon","cheese","saint","saint","f","licien","cheese","saint","f","licien","de","desserts","tart","lemon","meringue","pie","angel","wings","de","lyon","miniature","see_also","de","lyon","category_entertainment","lyon","category_culture","lyon","category_restaurants","lyon","category_types","restaurants"],"clean_bigrams":[["image","bouchon"],["bouchon","restaurant"],["restaurant","lyon"],["jpg","thumb"],["thumb","px"],["typical","bouchon"],["restaurant","found"],["lyon","france"],["foie","gras"],["gras","duck"],["duck","p"],["pork","compared"],["compared","tother"],["tother","forms"],["forms","ofrench"],["ofrench","cooking"],["nouvelle","cuisine"],["heavily","oriented"],["oriented","around"],["approximately","twenty"],["twenty","officially"],["officially","certified"],["certified","traditional"],["traditional","bouchons"],["larger","number"],["establishments","describe"],["term","typically"],["typically","themphasis"],["haute","cuisine"],["personal","relationship"],["relationship","withe"],["withe","owner"],["owner","image"],["image","bouchon"],["righthumb","another"],["another","bouchon"],["bouchons","came"],["small","inns"],["inns","visited"],["silk","industry"],["france","silk"],["silk","workers"],["workers","passing"],["eighteenth","centuries"],["centuries","according"],["dictionary","petit"],["petit","robert"],["name","derives"],["th","century"],["century","expression"],["petit","robert"],["bouchon","de"],["de","l"],["l","avenue"],["became","known"],["common","use"],["cork","athe"],["athe","mouth"],["since","pierre"],["organization","l"],["l","association"],["association","de"],["des","bouchons"],["annual","certifications"],["des","r"],["radio","france"],["france","internationale"],["internationale","published"],["published","february"],["february","french"],["french","retrieved"],["retrieved","may"],["restaurants","receive"],["one","hand"],["napkin","bearing"],["lyon","crest"],["cuisine","des"],["french","retrieved"],["retrieved","may"],["following","list"],["list","subjecto"],["annually","contains"],["certified","bouchons"],["caf","des"],["places","caf"],["caf","des"],["des","f"],["denise","chez"],["chez","georges"],["petit","bouchon"],["bouchon","les"],["mus","e"],["e","chez"],["many","bouchons"],["oriented","strongly"],["strongly","towards"],["tourist","market"],["increased","prices"],["less","traditional"],["traditional","fare"],["typical","meal"],["real","bouchon"],["bouchon","costs"],["costs","around"],["around","image"],["image","lyon"],["lyon","bouchon"],["thumb","px"],["lyon","image"],["image","saucisson"],["saucisson","jpg"],["jpg","thumb"],["thumb","px"],["px","dried"],["de","lyon"],["lyon","image"],["image","saint"],["thumb","px"],["px","saint"],["saint","f"],["f","licien"],["licien","cheese"],["cheese","saint"],["saint","f"],["f","licien"],["typical","cheese"],["lyon","typical"],["typical","items"],["bouchon","repertoire"],["repertoire","include"],["include","soup"],["soup","salads"],["cold","appetizers"],["appetizers","chicken"],["chicken","liver"],["liver","salad"],["salad","pork"],["pork","head"],["head","cheese"],["salad","literally"],["literally","donkey"],["french","retrieved"],["retrieved","may"],["may","marinated"],["mustard","condiment"],["egg","food"],["egg","hot"],["hot","appetizers"],["chicken","liver"],["liver","cake"],["blood","sausage"],["sausage","usually"],["usually","served"],["sausage","assorted"],["ground","fish"],["fish","dumplings"],["dumplings","grilled"],["vin","pot"],["pot","roast"],["roast","chicken"],["bone","marrow"],["de","lyon"],["lyon","cheese"],["cheese","saint"],["saint","f"],["f","licien"],["licien","cheese"],["cheese","saint"],["saint","f"],["f","licien"],["tart","lemon"],["lemon","meringue"],["meringue","pie"],["angel","wings"],["de","lyon"],["lyon","miniature"],["see","also"],["de","lyon"],["lyon","category"],["category","entertainment"],["lyon","category"],["category","culture"],["lyon","category"],["category","restaurants"],["lyon","category"],["category","types"]],"all_collocations":["image bouchon","bouchon restaurant","restaurant lyon","typical bouchon","restaurant found","lyon france","foie gras","gras duck","duck p","pork compared","compared tother","tother forms","forms ofrench","ofrench cooking","nouvelle cuisine","heavily oriented","oriented around","approximately twenty","twenty officially","officially certified","certified traditional","traditional bouchons","larger number","establishments describe","term typically","typically themphasis","haute cuisine","personal relationship","relationship withe","withe owner","owner image","image bouchon","righthumb another","another bouchon","bouchons came","small inns","inns visited","silk industry","france silk","silk workers","workers passing","eighteenth centuries","centuries according","dictionary petit","petit robert","name derives","th century","century expression","petit robert","bouchon de","de l","l avenue","became known","common use","cork athe","athe mouth","since pierre","organization l","l association","association de","des bouchons","annual certifications","des r","radio france","france internationale","internationale published","published february","february french","french retrieved","retrieved may","restaurants receive","one hand","napkin bearing","lyon crest","cuisine des","french retrieved","retrieved may","following list","list subjecto","annually contains","certified bouchons","caf des","places caf","caf des","des f","denise chez","chez georges","petit bouchon","bouchon les","mus e","e chez","many bouchons","oriented strongly","strongly towards","tourist market","increased prices","less traditional","traditional fare","typical meal","real bouchon","bouchon costs","costs around","around image","image lyon","lyon bouchon","lyon image","image saucisson","saucisson jpg","px dried","de lyon","lyon image","image saint","px saint","saint f","f licien","licien cheese","cheese saint","saint f","f licien","typical cheese","lyon typical","typical items","bouchon repertoire","repertoire include","include soup","soup salads","cold appetizers","appetizers chicken","chicken liver","liver salad","salad pork","pork head","head cheese","salad literally","literally donkey","french retrieved","retrieved may","may marinated","mustard condiment","egg food","egg hot","hot appetizers","chicken liver","liver cake","blood sausage","sausage usually","usually served","sausage assorted","ground fish","fish dumplings","dumplings grilled","vin pot","pot roast","roast chicken","bone marrow","de lyon","lyon cheese","cheese saint","saint f","f licien","licien cheese","cheese saint","saint f","f licien","tart lemon","lemon meringue","meringue pie","angel wings","de lyon","lyon miniature","see also","de lyon","lyon category","category entertainment","lyon category","category culture","lyon category","category restaurants","lyon category","category types"],"new_description":"image bouchon restaurant lyon jpg thumb px inside typical bouchon bouchon type restaurant found lyon france serves cuisine foie gras duck p pork compared tother forms ofrench cooking nouvelle cuisine dishes quite heavily oriented around approximately twenty officially certified traditional bouchons larger number establishments describe using term typically themphasis bouchon haute_cuisine rather atmosphere personal relationship withe owner image bouchon righthumb another bouchon apron lyon tradition bouchons came small inns visited history silk silk industry france silk workers passing lyon seventeenth eighteenth centuries according dictionary petit robert petit name derives th_century expression bunch straw petit robert petit de de cabaret cabaret couple dans bouchon de l avenue representation began appear signs designate restaurants restaurants became_known bouchons common use bouchons cork athe mouth bottle since pierre organization l association de des bouchons association preservation bouchons annual certifications restaurants authentic des r gastronomie radio france internationale published february french retrieved_may restaurants receive titles bouchons identified showing marionette pleasures dining glass wine one hand napkin bearing lyon crest cuisine des french retrieved_may following list subjecto certification annually contains certified bouchons caf_des places caf_des f daniel denise chez georges petit bouchon les chez la jean mus e chez trois many bouchons oriented strongly towards tourist market increased prices less traditional fare result typical meal real bouchon costs around image lyon bouchon thumb px bouchon lyon image saucisson jpg thumb px dried de lyon image saint thumb px saint f licien cheese saint f licien typical cheese lyon typical items bouchon repertoire include soup soup salads cold appetizers chicken liver salad pork head cheese salad literally donkey salad french retrieved_may marinated lettuce bacon mustard condiment egg food egg hot appetizers de chicken liver cake blood sausage usually served warm pork sausage assorted de fish ground fish dumplings grilled meat vin pot pot roast chicken vegetables la bone marrow de lyon cheese saint saint f licien cheese saint f licien de desserts tart lemon meringue pie angel wings de lyon miniature see_also de lyon category_entertainment lyon category_culture lyon category_restaurants lyon category_types restaurants"},{"title":"Bouncer (doorman)","description":"file strip clubouncer san franciscojpg thumb upright a bouncer in front of a strip club in san francisco california bouncer also known as a doorman door supervisor cooler is a type of security guard employed at venuesuch as bar establishment bars nightclub stripclub s or concert s a bouncer s duties are to provide security check age of majority legal age to refusentry for substance intoxication intoxicated persons and to deal with aggressive behavior non compliance with statutory or establishment rules bouncers are often required where crowd size clientele or alcoholic beverage alcohol consumption may make arguments or fights a possibility or where the threat or presence of criminal gang activity is high in the united states civiliability and court costs related to the use oforce by bouncers are the highest preventable loss found within the bar industry as many united states bouncers are often taken to court and other countries have similar problems of excessive force in many countries federal or state governments have taken steps to professionalise the industry by requiring bouncers to have training licensing and a background check criminal records background check in the s and s increased awareness of the risks of lawsuits and criminal charges have led many bars and venues to train their bouncers to use communication and conflict resolution skills before orather than resorting to brute force againstroublemakers however thearlier history of the occupation suggests thathe stereotype of bouncers as rough tough physical enforcers has indeed been the case in many countries and cultures throughout history historical references also suggesthathe doorman function of guarding a place and selecting who can haventry to ithe stereotypical task of the modern bouncer could atimes be an honorific and evolve into a relatively important position ancientimes the significance of the doorman as the person allowing or barring entry is found in a number of mesopotamian myths and later in greek myths descended from them including that of nergal overcoming the seven doormen guarding the gates to the underworld in chronicles of the old testamenthe levitical temple is described as having a number of gatekeepers amongstheir duties are protect ing the temple from theft from illegal entry into sacred areas and maintaing order all functions they share withe modern concept of the bouncer though the described temple servants also serve as holy persons and administrators themselves it is noted that some administrative function istill present in today s bouncing in the higher position of the supervisor doormen or bouncers are usually larger persons who display great strength and size the romans had a position known as the ostiarius doorkeeper initially a slave who guarded the door and sometimes ejected unwanted people from the house whose gate he guarded the term later become a low ranking clergy title plautus in his play bacchides play bacchides written approximately bc mentions a large and powerful doorman bouncer as a threato get an unwelcome visitor to leave tertullian early christian author living mainly in the st century ad while reporting on the casual oppression of christians in carthage noted that bouncers were counted as part of a semi legal underworld amongst other shady charactersuch as gamblers and pimp s de fuga in persecutione quintuseptimius florens tertullianus via the cambridge ancient history volume xi second edition page cambridge university press modern times during the late th and early th centuries usaloon keepers and brothel madams hired bouncers to remove troublesome violent or deadrunk patrons and to protecthe saloon girls and prostitutes the word bouncer was first popularized in a novel by horatio alger jr called the young outlawhich was first published in alger was an immensely popular author in the th century especially with young people and his books were widely quoted in chapter xiv entitled bounced a boy is thrown out of a restaurant because he has no money to pay for his dinner anewspaper article stated thathe bouncer is merely thenglish chucker out when liberty verges on license and gaiety on wanton delirium the bouncer selects the gayest of the gay and bounces him unknown article name london daily news th century london daily news thursday july via the onlinetymological dictionary th century file charleston j w swartsaloon year jpg thumb left px an arizona saloon in from thera when bouncers earned theirough and tumble reputation by forcibly ejecting brawlers in us western towns in the s high class brothels known as good houses or parlour houses hired bouncers for security and to prevent patrons from evading payment good house style brothels considered themselves the cream of the crop and the prostitutes working there scorned those who worked in or out of saloons dance halls and theatres the best bordellos looked like respectable mansions with attractively decorated parlours a game room and a dance hall for security somewhere in every parlor house there was always a bouncer a giant of a man who stayed sober to handle any customer who gotoo rough with one of the girls or did not wanto pay his bill the protective presence of bouncers in high class brothels was one of the reasons the girls considered themselvesuperior to lower class free lancers who lacked any such shepherds the ladies god bless em shady ladies of the old west jeffords christine private homepage at rootswebcom in wisconsin s lumberjack days bouncers would physically remove drinkers who were too drunk to keep buying drinks and thus free up space in the bar for new patrons the slang term snake room was used to describe a room off a saloon usually twor three steps down into which a bar keeper or the bouncer could slide drunk lumber jacks head firsthrough swinging doors from the baroom snake room logging from logger s words of yesteryearsorden lg isabel j ebert madison via wisconsinhistorynet in the late th century until prohibition bouncers also had the unusual role of protecting the saloon s buffeto attract business many saloons lured customers with offers of a free lunch usually well salted to inspire drinking and the saloon bouncer was generally on hand to discourage those with too hearty appetites drinking in america history search for consensus drinking and the war against pluralism lender mark edward martin james kirby the free press new york in the late th century bouncers at small town dances and bars physically resolvedisputes and removed troublemakers without worrying about lawsuits in the main bar in one iowa town there were many quarrels many fights but all were settled on the spothere were no court costs for the bouncers or the bar only some aches and pains for the troublemakerschleswig iowa the first years hohenzollern morgan township compiled by lillian m kuehl jackso and emma l brasse struck private homepage at rootswebcom in the s and s bouncers were used to maintain order in the guthe roughest part of new york s coney island which was filled with ramshackle groups of wooden shanties bars cabarets fleabag hotels and brothels huge bouncers patrolled these venues of vice and roughly ejected anyone who violated the loose rules of decorum by engaging in pick pocketing jewelery thieving or bloody fights coney island early history from private website westlandnet during the san diego had a similarly rough waterfront areand redlight district called the stingaree where bouncers worked the door at brothels prostitutes worked athe area s bawdy houses in small rooms paying a fee to the procurer who usually was the bouncer or protector of the brothel the morexpensive higher class brothels were called parlour houses and they were run most decorously and the best ofood andrink waserved to maintain the high class atmosphere athesestablishments male patrons werexpected to act like gentlemen if any customer did or said anything out of line he wasked to leave a bouncer made sure he did when the red lights went out in san diego macphail elizabethe journal of san diego history spring volume number th century bouncers in pre world war i united states were alsometimes used as the guardians of morality as ballroom dancing was often considered as an activity which could lead to immoral conduct if the dancers gotoo close some of the moreputable venues had bouncers to remind patrons noto dance closer thanine inches to their partners the bouncers warnings tended to consist of lightaps on the shoulder at first and then progressed to sterneremonstrations americand the phonograph industry on the verge of the great war from the intertiquecom website accessed in the s bars in the bawdiest parts of baltimore marylandocks hired bouncers to maintain order and eject aggressive patrons the oasis club operated by max cohen hired a lady bouncer by the name of mickey steele a six foot acrobat from the pennsylvania coal fields mickey was always considerate of the people she bounced first asking them where they lived and then throwing them in that general direction she wasucceeded by a character known as machine gun butch who was a long time bouncer athe clubaltimore s bawdy block hull stephen stag athe moment only via google cache in the weimarepublic in the germany of the s and early s doormen protected venues from the fights caused by nazis and other potentially violent groupsuch as communistsuch scenes were fictionalised in the movie cabaret film cabaret hitler surrounded himself with a number oformer bouncersuch as christian weber ss general christian weber the schutzstaffel ss originated as a group designated to protect party meetings in early nazi germany some bouncers in underground jazz club s were also hired to screen for nazi spies because jazz was considered a degenerate form of music by the nazi party later during the nazi regime bouncers also increasingly barred non german people such as foreign workers from public functionsuch as german dances at dance halls file bundesarchiv bild berlin portier vor der ohio barjpg thumb left px the doorman from the ohio bar in berlin bouncers alsoften come into conflict with football hooliganism football hooligans due to the tendency of groups of hooligans to congregate at pubs and bars before and after games in the united kingdom for example long running series ofeuds between fan groups like sheffield united fc the blades and groups of bouncers in the s were described by researchers bouncers have also been known to be associated with criminal gangs especially in places like russia hong kong or japan where bouncers may often belong to these groups or have to pay the crime syndicates to be able toperate in hong kong triad underground society triad connected reprisal or intimidation attacks against bouncers have been known toccur the victim thexception hong kong stories feature journalism and media studies centre university of hong kong may hong kong also features a somewhat unusual situation where some bouncers are known to work for prostitutes instead of being their pimp s hong kong police have noted that due to the letter of the law they sometimes had to charge the bouncer for illegally extorting the women when the usually expectedominance situation between the sex worker and her protector was in fact reversed in the s and s a number of bouncers have written tell all books aboutheir experiences on the door they indicate that male bouncers arespected by some club goers as the ultimate hard men while athe same time these bouncers can also be lightning rod s for aggression and macho posturing on the part of obnoxious male customers wanting to prove themselves bouncing has also started to attract some academic interest as part of ethnography ethnographic studies into violent subculture s bouncers were selected as one of the groupstudied by several english researchers in the s because their culture waseen as grounded in violence as well as because the group had increasingly been demonised especially in common liberalism liberal discoursee bouncer doorman inside studies research section of this article get ready to duck winlow simon hobbs dick lister stuart hadfield phillip british journal of criminology no pages accessed research and sociology outside studies file pawn stars bouncerjpg thumb right px a bouncer stands outside a pawn shop in thearly s an australian government study on violence stated that violent incidents in public drinking locations are caused by the interaction ofive factors aggressive and unreasonable bouncers groups of male strangers low comfort eg unventilated hot clubs high boredom and high drunkenness the research indicated that bouncers did not play as large a role as expected in the creation of an aggressive or violence prone atmosphere in bars however the study did show that edgy and aggressive bouncers especially when they are arbitrary or petty in their manner do have an adverseffecthe study stated that bouncers have been observed to initiate fights or further encourage them on several occasions many seem poorly trained obsessed witheir own machismo and relate badly to groups of male strangersome of them appear to regard their employment as giving them a licence to assault people this may bencouraged by management adherence to a repressive model of supervision of patrons if they play up thump em which in fact does not reduce trouble and exacerbates an already hostile and aggressive situation in practice many bouncers are not well managed in their work and appear to be given a job autonomy andiscretion thathey cannot handle well australian violence contemporary perspectives pdf chappell duncan grabosky peter strang heather australian institute of criminology article responses by security staff to aggressive incidents in public settings in the journal of drug issues examined violent incidents involving crowd controllers bouncers that occurred in bars in toronto ontario canada the study indicated that in of the incidents the bouncers had good responses in of the incidents the bouncers had a neutral response and in of the incidents the bouncers responses were rated as bad that is the crowd controllers enhanced the likelihood of violence but were themselves not violent finally in almost one third of incidents per centhe crowd controllers responses were rated as ugly the controllers actions involved gratuitous aggression harassment of patrons and provocative behaviour security industry amendment patron protection bill inside studies file terry mcphillips bouncer doorman jpg thumb right px a bouncer at a pub wearing a distinctive striped shirt at least one major ethnography ethnographic study alsobserved bouncing from within as part of a british projecto study violent subcultures beyond studying the bouncer culture from the outside the group selected a suitable candidate for covert long term research the man had previously worked as a bouncer before becoming an academic and while conversant withe milieu it required some time for him to renter bouncing work in a new locality get ready to duck winlow simon hobbs dick lister stuart hadfield phillip british journal of criminology no page accessed the study has however attracted some criticism due to the facthathe researcher while fulfilling his duties as a bouncer and being required to set aside his academic distance would have been at risk of losing objectivity though it was accepted thathis quandary might be difficulto resolve is there a place for covert research methods in criminology wells helen m graduate journal of social science vol issue accessed one of the main ethical issues of the research was the participation of the researcher in violence and to what degree he would be allowed to participate the group could not fully resolve thissue as the undercoveresearcher would not have been able to gain the trust of his peers while shying away from the use oforce as part of the study it eventually became clear that bouncers themselves were similarly and constantly weighing up the limits and uses of their participation in violence the researchowever found that instead of being a part of the occupation violence itself was the defining characteristic a culture created around violence and violent expectation the bouncing culture s insular attitudes also extended to the recruitment process which was mainly by word of mouth as opposed to typical job recruitment and also depended heavily on previous familiarity with violence this does not extend to the prospective bouncer himself having to have a reputation for violence rather a perception was needed that he couldeal with it if required various other elementsuch as body language or physicalooks muscleshaved heads were also described as often expected for entry into bouncing being part of the symbolic narratives of intimidation that set bouncers apart in their work environmentraining on the job was described as very limited withe new bouncers being thrown into the deep end the facthathey had been accepted for the job in the first place including the assessmenthathey should knowhathey are doing though informal observation of a beginner s behaviour was commonplace in the case of the british research projecthe legally required licensing as a bouncer was also found to bexpected by employers before applicantstarted the job and as licensingenerally excluded people with criminal convictions this kept out some of the more unstable violent personalities personality and behaviour file doormanjpg thumb right a bouncer athe door of a norway norwegian club checking customer identification for proof age although a common stereotype of bouncers is that of the thuggish brute a good club security staff memberequires more than just physical qualitiesuch astrength and size the best bouncers don t bounce anyone they talk to people and remind them of the venue rules bouncers doormen from the crimedoctorcom website accessed bouncers to the rescue times of india may an ability to judge and communicate well with people will reduce the need for physical intervention while a steady personality will preventhe bouncer from being easily provoked by customers bouncers also profit from good written communication skills because they are often required to document assaults in an incident log or using an incident form well kept incident logs can protecthemployee from any potential indictment criminal charges or lawsuits that later arise from an incident however british research from the s also indicates that a major part of bothe group identity and the job satisfaction of bouncers is related to their self image as a strongly masculine person who is capable of dealing with andealing out violence their employment income plays a lesserole in their job satisfaction bouncer subculture istrongly influenced by perceptions of honour and shame a typical characteristic of groups that are in the public eye get ready to duck winlow simon hobbs dick lister stuart hadfield phillip british journal of criminology no page accessed as well as warrior cultures in general factors in enjoying work as a bouncer were also found in the general prestige and respecthat was accorded to bouncersometimes bordering on hero worship the camaraderie between bouncers even of different clubs as well as the ability to work in the moment and outside of the drudgery of typical jobs were alsoften cited get ready to duck winlow simon hobbs dick lister stuart hadfield phillip british journal of criminology no pages accessed the same researchas also indicated thathe decisions made by bouncers while seeming haphazard to an outsider often have a basis in rationalogic the decision to turn certain customers away athe door because of too casual clothing face control is for example often based on the perception thathe person will be more willing to fight compared to someone dressed in expensive attire many similar decisions taken by a bouncer during the course of a night are also being described as based on experience rather than just personality get ready to duck winlow simon hobbs dick lister stuart hadfield phillip british journal of criminology no page accessed excessive force file unterschiedzwischendirundmirjpg thumb right px a bouncer gives the thumbs up signal movies often depict bouncers physically throwing patrons out of clubs and restraining drunk customers witheadlocks whichas led to a popular misconception that bouncers have oreserve the righto use physical force freely however in many countries bouncers have no legal authority to use physical force more freely thany other civilian meaning they arestricted to reasonablevels oforce used in self defense to eject drunk or aggressive patrons refusing to leave a venue or when restraining a patron who has committed an offence until police arrive lawsuits are possible if injuries occur even if the patron was drunk or using aggressive language with civiliability and court costs related to the use oforce as the highest preventable loss found within the industry usafety and security for liquor licensees from the michigan licensed beverage association s website accessed and bars being sued more often for using unnecessary or excessive force than for any othereason canada substantial costs may be incurred by indiscriminate violence against patrons though this depends heavily on the laws and customs of the country in australia the number of complaints and lawsuits against venues due to the behaviour of their bouncers has been credited with turning many establishments to using former police officers to head their in housecurity instead of hiring private firms cowardly bouncers terrorising pub club patrons the australian wednesday february according to statistical research in canada bouncers are as likely to face physical violence in their work as urban area police officers the research also found thathe likelihood of such encounters increased with statistical significance withe number of years the bouncer had worked in his occupationightclub security and surveillance book excerpt from policing the nightclub rigakos george s the canadian review of policing research accessedespite popular misconceptions bouncers in western countries are normally unarmed betty chats withe new hunk on the block vin diesel vin diesel interview via beatboxbetttycom accessed some bouncers may carry weaponsuch as baton law enforcement expandable baton expandable batons for personal protection baton and handcuff course from the sectacomau company website accessed buthey may not have a legal righto carry a weapon even if they would prefer to do so file pawn stars exterior closeupjpg thumb right px a bouncer wearing a black tennishirt controlling access to a well known pawn shop use oforce training programs teach bouncers ways to avoid using force and explain whatypes oforce are considered allowable by the courtsome bars have gone so far as to institute policies barring physical contact where bouncers are instructed to ask a drunk or disorderly patron to leave if the patron refuses the bouncers call police however if the police are called too frequently it can reflect badly on the venue upon renewal of its liquor license liquor licence another strategy used in some bars is to hire smaller less threatening or female bouncers because they may better able to defuse conflicts than large intimidating bouncers the more impressive bouncers in the oftensenvironments they are supposed to supervise are alsoften challenged by aggressive males wanting to prove their machismo nightclubouncers tell all tales from behind the velvet rope the boston phoenix via the bostonnightclubnewscom website accessed large and intimidating bouncers whilst providing an appearance of strong security may also drive customers away in cases where a morelaxed environment is desired in addition female security staff apart from having fewer problemsearching female patrons for drugs or weapons and entering women s washrooms to check for illegal activities are also considered as better able to deal with drunk or aggressive women in australia for example women comprise almost of the security industry and increasingly work the door as well using a smile chat and a friendly but firm demeanor to resolve tense situations mate do not call these bouncers babe abstract new york times wednesday april nearly one inine of britain s nightclubouncers are also women withe uk s licensing act giving the authorities discretionary power to withhold a venue s licence if it does not employ female door staff this credited withaving opened the door for women to enter the profession why women wanto join the club the independentuesday october via findarticlescom however female bouncers are still a rarity in many countriesuch as india where twomen who becamedia celebrities in for being punjab india punjab s first female bouncers were soon sacked again after accusations of unbecoming behaviour chandigarh s brawny female bouncers manightclub nerve of india monday july punjab s first female bouncers lose their jobs dna india thursday octoberegulation and training in many countries a bouncer must be licensed and background check lacking a criminal record to gain employment within the security crowd control sector in some countries oregions bouncers may be required to havextra skills or specialicenses and certification for first aid alcohol distribution crowd control or fire safety in canada bouncers have the righto use reasonable force to expel intoxicated or aggressive patrons firsthe patron must be asked to leave the premises if the patron refuses to leave the bouncer can use reasonable force to expel the patron this guideline has been upheld in a number of court cases civiliability of commercial providers of alcohol pdfolick lorne ps dolden wallace folick vancouver april under the definition of reasonable force it is perfectly acceptable for the bouncer to grab a patron s arm to remove the patron from the premises however only in situations wheremployees reasonably believe thathe conduct of the patron puts them in danger can they inflict harm on a patron and then only to thextenthat such force is necessary for self defence in british columbia door staff security bouncers arequired to become certified under the ministry of public safety and solicitor general office the course called bst basic security training is a hour program that covers law customer service and other issue related to security operation in alberta bar and nightclub security staff will have to take a new government run training course on correct bouncer behaviour and skills before thend of the six hour protect course will among other subjects teach staff to identify conflicts before they become violent and how to defuse situations without resorting to force bouncers take course or they are out edmonton journal saturday february in ontario courts have ruled that a tavern owes a twofolduty of care to its patrons it must ensure that it does not serve alcohol which would apparently intoxicate or increase the patron s alcohol intoxication further it mustake positive steps to protect patrons and others from the dangers of intoxication regarding the second requirement of protecting patrons the law holds that customers cannot bejected from your premises if doing so would puthem in danger eg due to the patron s intoxication bars can be held liable for ejecting a customer who they know or should know is at risk of injury by being ejectedid you know from the october newsletter of smart serve ontario canada in ontario bartenders and servers have to have completed the smart serve training program which teaches them to recognise the signs of intoxication the smart serve program is also recommended for other staff in bars who have contact with potentially intoxicated patronsuch as bouncers coat check staff and valets the smart serve certification program encourages bars to keep incident reporting logs to use as evidence if an incident gets to court withe august private security and investigative services act ontario law also requiresecurity industry workers including bouncers to be licensed private investigators and security guards licensing from the ontario ministry of community safety and corrections website accessed italy the law defines bouncers asecurity subsidiary unarmed operator and they must have specific requisites art comma law october from a to g at least years no alcohol or drugs in preventive clinical analysis mental and physical suitability have not been convicted for any intentional crimes at least lower high school diploma follow a training course bouncers must not have ownership of any type ofirearm during their serviceven if they have a valid firearms license new zealand inew zealand as of bouncers arequired to have a coa certificate of approvalike other security work the person who has the coa has been vetted by the police and cleared through security checks as well as the courts to show the person isuitable for the job and knows new zealand law to prevent security officers going to court for using excessive force and assault on patronsingaporequires all bouncers to undergo a background check and attend a day national skills recognition system course for security staff however many of the more professional security companies and larger venues witheir own dedicated security staff have noted thathe course is insufficient for the specific requirements of a bouncer and provide their own additional training how do clubselect bouncers it s not just about wearing a black shirthelectric new paper friday february in sweden there are special security officers referred to as ordningsvakt with limited policing duties and thushare the use oforce monopoly withe police and thus have more or less the same obligations as the police to report crime and intervene when on duty they are trained and ordained by the swedish police authority to maintain and enforce public order at venues or areas where the police cannot divert resources permanently to enforce public order themselves thesecurity officers have powers of citizen s arrest and to verbally dismiss physically remove or detain those who disturb or pose an immediate threato public order or safety by using a reasonable amount oforce they can also detain or otherwise take into custody those who are drunk andisorderly and turn them over into police custody asoon as possible an ordningsvakt is recruited by the police and must go through a battery of physical tests a language test and an interview board before going through a two week training program which teaches behaviour conflict management criminalaw physical intervention the use of telescopic batons and handcuffs first aid equal opportunities andiscrimination and arrest procedures he or she musthen be re certified every three years an ordningsvakt areither employed by a private security company such asecuritas g s etc where they commonly work at shopping malls hospitals public transportation or as privateers employed by bar or nightclub owners but despitemploymentheir first and foremost loyalty lies withe police and the police manage and supervise them in the field they can also be used to augmenthe police at football matches and high risk football derbies aftereceiving special training united kingdom in the uk door supervisors as they are termed must hold a licence from the security industry authority the training for a door supervisor licence takes hoursince the current changes were implemented on the st january and includes issuesuch as behaviour conflict management civil and criminalaw search and arrest procedures drug awareness recording of incidents and crime scene preservation licensing law equal opportunities andiscrimination health and safety at work physical intervention and emergency procedures get licensed sia licensing criteria pdfrom the security industry authority great britain accessed licenses must be renewed every three years one current provider of training is the british institute of innkeeping awarding body licensedoor supervisors must wear a blue plastic licence often worn on the upper arm whilst on duty the uk quango reforms includes the siamongst many other quango s the cameron clegg coalition government intended to be disbanded ostensibly on the overall grounds of cost despite the sia being essentially selfunding via licence payments whilsthis may alleviate to somextenthe financial burden on employers and individuals alike somembers of the industry sees this as a retrograde step fearing a return of the organised criminal elemento the currently regulated industry republic of ireland in the republic of ireland all potential doormen bouncers must complete a qqi level course in door security procedures this allows them to apply for a psa license private security authority the psa vet all applicants before issuing a license subsequently some past convictions will disqualify an applicant from working in the security industry the license issued by the psa entitles the holder of the license to work on pubs clubs and event security the psa now requires you to have a licence to work in event security united states file stilt walker on avenue b in theast village with doormanjpg thumb a bouncer with a bar s hired stiltwalker in theast village manhattan east village requirements for bouncers vary from state to state with somexamples being california in california senate bill requires any bouncer or security guard to be registered withe state of california department of consumer affairs bureau of security and investigative services these guards must also complete a criminal background check including submitting their fingerprints to the california department of justice and the federal bureau of investigation californians must undertake the skills training course for security guards beforeceiving a security licence further courses allow for qualified security personnel to carry batons upon completion of training new security guard training regulation from the california department of consumer affairs website accessed new york inew york state it is illegal for a bar owner to knowingly hire a felon for a bouncer position under article general business law bars and nightclubs are not allowed to hire bouncers without a proper license under new york state law only a private investigator watch guard and patrol agency can supply security guards bouncers to bars last call for the falls blog entry on village voice with furthereferences notable bouncers pope francis current pope who worked as a bouncer in a buenos aires bar before beginning seminary studies harry alsopope francis things you did not know the daily telegraph march avigdor lieberman former foreign minister of israel and leader of the israel beitenu party worked as a bouncer in the student club shablul in jerusalem during histudies athebrew university justin trudeau current prime minister of canadand leader of the liberal party worked as a bouncer at whistler village bc after his undergraduate studies ocanadacom accessed jesse brand songwriter actor and former american football player worked as a bouncer in fort worth texas al capone chicago based gangster worked as a bartender bouncer in his early life history files al capone from the chicago history museum website accessed vin diesel american actor who created his vin diesel pseudonym to protect his anonymity while working as a bouncer carlton leach english author west ham supporter inter city firmember occasional actor and former criminal dave batista professional wrestler and actor worked as a bouncer in washington dc nightclubs prior to his wrestling career from his official biography on wwecom accessed georgest pierre canadian mixed martial artist and ufc welterweight champion former bouncer mr t american actor former bouncer and twice winner of the america s toughest bouncer competition mr t biography from the netglimsecom website accessed vincent d onofrio american actor on law order criminal intent cop does not know how to stop the new york times via theagecomau website accessed michael clarke duncan american actor and former bouncer who also worked as a bodyguard for various celebrities from bouncer toscareelcom interviewith michael clarke duncan accessed norman foster british architect and member of the house of lords worked as a night clubouncer whilstudying architecture athe university of manchester james gandolfini american actor who worked as a bouncer at an on campus pub while studying at rutgers university james gandolfini bio askmencom retrieved novemberoad warrior animal joseph laurinaitis a professional wrestler who worked as a bouncer testimony from the witnessjesusorg website accessed viv graham a stonenglish mobster and former championship winning amateur heavyweight boxer who controlled many pubs and nightclubs inewcastle upon tyne until he was gunnedown in a notorious murder in dolph lundgren swedish actor director and martial artist lenny mclean british bare knuckle boxing heavyweight champion who also worked as a headoorman at londonightclubs about from the officialenny mclean website accessed haoui montaug was a doorman of the new york city nightclub s hurrah nightclub hurrah danceteria studio and the palladium new york city palladiumontaug also ran a roving cabaret revue called no entiendes chazz palminteri american actor and writer glenn ross northern irish bouncer and strongman strength athlete strongman glenn just a gentle giant articlexcerpt from the news letter belfast northern ireland via highbeamcom accessed bas rutten dutch mixed martial artist and kickboxer patrick swayze american actor and ballet dancerick rude a professional wrestler who worked as a bouncer http ocanadacom accessed bleacherreportcom articles the ravishing one the story of rick rude a true class acthe ravishing one the story of rick rude a true class act rob terry british professional wrestler geoff thompson martial arts geoff thompson british bouncer and author of the book watch my back geoff thompson from the rdf management company website accessed james wade woodbury martial arts james wade woodbury american cooler and canadian bouncer started in halifax nova scotia in athe palace cabaret and misty moon cabaret became a specialist in strip clubs and biker clubs in the southern usa martial artist david benioff co creator and showrunner of game of thrones big bank hank rapper member of the sugar hill gang worked as a bouncer at various clubs in the bronx before he started recording kevinash wrestler worked as a strip clubouncer in detroit frank martin basketball frank martin head men s basketball coach at south carolina was a bouncer at a miami area nightclub as a college student at florida international university buturned his attention to full time coaching in after being subjected to gunfire while on duty from a group of men whom he had ejected for fighting in animalsome types of ant species havevolved a sub specialisation that has been called a bouncer and performs a similar function throwing intruders outside for its fellows the majors of the australian species dacetini dacetine orectognathus versicolor ants have massive blunt mandible insect mandible jaws which are of little use to the prey capture techniques this odontomachus trap jaw species normally engages instead they spend much of their time guarding the nest opening their jaws cocked when foreign ants venture close the force of the mandibles isufficiento throw back the intruder for a significant distance a defense behaviour which is thoughto also protecthe guard against physical or chemical injury that it might sustain more direct battle the bouncer defense of odontomachus ruginodis and other odontomachine ants hymenoptera formicidae carlinorman f gladstein david s psychentomological journal psyche volume no page in social control some critics have noted thatheuropean union hassigned the job of being its border security bouncers to various non eu north african countries like morocco algeria or libya who are to turn away refugees often with severe ill treatment before they can reach europe to request right of asylum analogous to a clubouncer turning away undesirable customers in a similar analogy some social theorists havexpressed the state itself as a form of bouncer which pushes and punches drifters people who do not conform with social norms back to where they are supposed to be though depending on society some states may be much more heavy handed and proactive in thisee also in general bodyguard security guard security industry authority uk regulatory agency in popular culture minuit le soir a television in canada canadian television series portraying the lives of bouncers in montreal the bouncer a beat em up video game for the playstation released by square co bouncers a stage play by john godber for hull truck theatre about a group of nightclubouncers in the north of england road house film road house a film starring patrick swayze as a cooler in a small town bar chernabog fantasia chernabog who worked as a bouncer when the disney villains take over house of mouse in mickey s house of villains ode to the bouncer a song by the animated band studio killers les norton a herof a series of books by robert g barrett furthereading jamie o keefe old school new school guide to bouncersecurity and registeredoor supervisors new breed publishing august lee morrison safe on the door the complete guide for door supervisors hodder arnold february lee morrison up close nothing personal practical self protection for door security staff apex publishing decemberobin barratt doing the doors a life on the door milo books february robin barratt confessions of a doorman diverse publications ltd june robin barratt bouncers and bodyguards mainstream publishing march robin barratt respect and reputation the doors in prison and in life apex publishing june ivan holiday arsenaulthe bouncer s bible turner paige publishing january ivan holiday arsenaulthe cooler s grimiore outskirt press publishing july ivan holiday arsenault sun tzu the art of bouncing outskirt press publishing april ivan holiday arsenaulthe bouncer s bible nd edition outskirt press publishing july george rigakos nightclubouncers risk and the spectacle of consumption mcgill queen s university press may jason dyson door supervisors course book national door supervisors qualification highfield january stu armstrong the diaries of a doorman volume one stu armstrong the diaries of a doorman vol stu armstrong the diaries of a doorman vol stu armstrong and ryder scott so you wanto be a bouncer externalinks category security guards category nightclubs category protective service occupations category crime prevention category surveillance","main_words":["file","strip","clubouncer","san","thumb","upright","bouncer","front","strip","club","san_francisco_california","bouncer","also_known","doorman","door","supervisor","cooler","type","security","guard","employed","venuesuch","bar_establishment_bars","nightclub","concert","bouncer","duties","provide","security","check","age","majority","legal","age","substance","intoxication","intoxicated","persons","deal","aggressive","behavior","non","compliance","statutory","establishment","rules","bouncers","often","required","crowd","size","clientele","alcoholic_beverage","alcohol","consumption","may","make","arguments","fights","possibility","threat","presence","criminal","gang","activity","high","united_states","court","costs","related","use","oforce","bouncers","highest","loss","found","within","bar","industry","many","united_states","bouncers","often","taken","court","countries","similar","problems","excessive","force","many_countries","federal","state","governments","taken","steps","industry","requiring","bouncers","training","licensing","background","check","criminal","records","background","check","increased","awareness","risks","lawsuits","criminal","charges","led","many","bars","venues","train","bouncers","use","communication","conflict","resolution","skills","force","however","thearlier","history","occupation","suggests","thathe","stereotype","bouncers","rough","tough","physical","indeed","case","many_countries","cultures","throughout","history","historical","references","also","doorman","function","guarding","place","selecting","ithe","stereotypical","task","modern","bouncer","could","atimes","honorific","evolve","relatively","important","position","ancientimes","significance","doorman","person","allowing","entry","found","number","myths","later","greek","myths","descended","including","overcoming","seven","doormen","guarding","gates","underworld","chronicles","old","temple","described","number","duties","protect","ing","temple","theft","illegal","entry","sacred","areas","order","functions","share","withe","modern","concept","bouncer","though","described","temple","servants","also_serve","holy","persons","administrators","noted","administrative","function","istill","present","today","bouncing","higher","position","supervisor","doormen","bouncers","usually","larger","persons","display","great","strength","size","romans","position","known","initially","slave","guarded","door","sometimes","ejected","unwanted","people","house","whose","gate","guarded","term","later","become","low","ranking","clergy","title","play","play","written","approximately","mentions","large","powerful","doorman","bouncer","get","visitor","leave","early","christian","author","living","mainly","st_century","reporting","casual","christians","noted","bouncers","counted","part","semi","legal","underworld","amongst","de","via","cambridge","ancient","history","volume","second","edition","page","cambridge","university_press","modern_times","late_th","early_th","centuries","keepers","brothel","hired","bouncers","remove","violent","patrons","protecthe","saloon","girls","prostitutes","word","bouncer","first","popularized","novel","horatio","called","young","first_published","immensely","popular","author","th_century","especially","young_people","books","widely","quoted","chapter","xiv","entitled","boy","thrown","restaurant","money","pay","dinner","article","stated_thathe","bouncer","merely","thenglish","liberty","license","bouncer","gay","unknown","article","name","london","daily_news","th_century","london","daily_news","thursday","july","via","dictionary","th_century","file","charleston","j","w","year","jpg","thumb","left_px","arizona","saloon","thera","bouncers","earned","reputation","us","western","towns","high","class","brothels","known","good","houses","parlour","houses","hired","bouncers","security","prevent","patrons","payment","good","house","style","brothels","considered","cream","crop","prostitutes","working","worked","saloons","dance","halls","theatres","best","looked","like","respectable","mansions","decorated","parlours","game","room","dance","hall","security","somewhere","every","parlor","house","always","bouncer","giant","man","stayed","handle","customer","rough","one","girls","wanto","pay","bill","protective","presence","bouncers","high","class","brothels","one","reasons","girls","considered","lower","class","free","lacked","shepherds","ladies","god","ladies","old","west","christine","private","homepage","wisconsin","days","bouncers","would","physically","remove","drinkers","drunk","keep","buying","drinks","thus","free","space","bar","new","patrons","slang_term","snake","room","used","describe","room","saloon","usually","twor","three","steps","bar","keeper","bouncer","could","slide","drunk","head","doors","snake","room","logging","words","isabel","j","madison","via","late_th","century","prohibition","bouncers","also","unusual","role","protecting","saloon","attract","business","many","saloons","lured","customers","offers","free_lunch","usually","well","salted","inspire","drinking","saloon","bouncer","generally","hand","discourage","drinking","america","history","search","consensus","drinking","war","mark","edward","martin","james","kirby","free","press","new_york","late_th","century","bouncers","small_town","dances","bars","physically","removed","without","lawsuits","main","bar_one","iowa","town","many","many","fights","settled","court","costs","bouncers","bar","iowa","first_years","morgan","township","compiled","l","struck","private","homepage","bouncers","used","maintain","order","part","new_york","coney_island","filled","groups","wooden","bars","cabarets","hotels","brothels","huge","bouncers","venues","vice","roughly","ejected","anyone","violated","loose","rules","engaging","pick","bloody","fights","coney_island","early","history","private","website","san_diego","similarly","rough","waterfront","areand","district","called","bouncers","worked","door","brothels","prostitutes","worked","athe","area","houses","small","rooms","paying","fee","usually","bouncer","brothel","morexpensive","higher","class","brothels","called","parlour","houses","run","best","ofood","andrink","waserved","maintain","high","class","atmosphere","male","patrons","werexpected","act","like","gentlemen","customer","said","anything","line","wasked","leave","bouncer","made","sure","red","lights","went","san_diego","journal","san_diego","history","spring","volume","number","th_century","bouncers","pre","world_war","united_states","alsometimes","used","ballroom","dancing","often","considered","activity","could","lead","conduct","dancers","close","venues","bouncers","patrons","noto","dance","closer","inches","partners","bouncers","tended","consist","shoulder","industry","great","war","website_accessed","bars","parts","baltimore","hired","bouncers","maintain","order","aggressive","patrons","oasis","club","operated","max","cohen","hired","lady","bouncer","name","mickey","six","foot","pennsylvania","coal","fields","mickey","always","people","first","asking","lived","throwing","general","direction","character","known","machine","gun","long_time","bouncer","athe","block","hull","stephen","stag","athe_moment","via","google","germany","early","doormen","protected","venues","fights","caused","nazis","potentially","violent","groupsuch","scenes","movie","cabaret","film","cabaret","hitler","surrounded","number","oformer","christian","weber","general","christian","weber","originated","group","designated","protect","party","meetings","early","nazi","germany","bouncers","underground","jazz_club","also","hired","screen","nazi","jazz","considered","form","music","nazi","party","later","nazi","regime","bouncers","also","increasingly","barred","non","german","people","foreign","workers","public","german","dances","dance","halls","file","bild","berlin","der","ohio","barjpg","thumb","left_px","doorman","ohio","bar","berlin","bouncers","alsoften","come","conflict","football","football","due","tendency","groups","congregate","pubs","bars","games","united_kingdom","example","long","running","series","fan","groups","like","sheffield","united","groups","bouncers","described","researchers","bouncers","also_known","associated","criminal","gangs","especially","places","like","russia","hong_kong","japan","bouncers","may","often","belong","groups","pay","crime","able","toperate","hong_kong","underground","society","connected","attacks","bouncers","known","victim","hong_kong","stories","feature","journalism","media","studies","centre","university","hong_kong","may","hong_kong","also","features","somewhat","unusual","situation","bouncers","known","work","prostitutes","instead","hong_kong","police","noted","due","letter","law","sometimes","charge","bouncer","illegally","women","usually","situation","sex_worker","fact","reversed","number","bouncers","written","tell","books","aboutheir","experiences","door","indicate","male","bouncers","club","goers","ultimate","hard","men","athe_time","bouncers","also","lightning","rod","aggression","part","male","customers","wanting","prove","bouncing","also","started","attract","academic","interest","part","ethnography","ethnographic","studies","violent","subculture","bouncers","selected","one","several","english","researchers","culture","waseen","violence","well","group","increasingly","especially","common","liberal","bouncer_doorman","inside","studies","research","section","article","get","ready","duck","winlow","simon","hobbs","dick","lister","stuart","hadfield","phillip","british","journal","criminology","pages","accessed","research","sociology","outside","studies","file","pawn","stars","thumb","right","px","bouncer","stands","outside","pawn","shop","thearly","australian","government","study","violence","stated","violent","incidents","public","drinking","locations","caused","interaction","ofive","factors","aggressive","bouncers","groups","male","strangers","low","comfort","hot","clubs","high","high","drunkenness","research","indicated","bouncers","play","large","role","expected","creation","aggressive","violence","prone","atmosphere","bars","however","study","show","aggressive","bouncers","especially","arbitrary","petty","manner","study","stated","bouncers","observed","initiate","fights","encourage","several","occasions","many","seem","poorly","trained","witheir","relate","badly","groups","male","appear","regard","employment","giving","licence","assault","people","may","management","model","supervision","patrons","play","fact","reduce","trouble","already","hostile","aggressive","situation","practice","many","bouncers","well","managed","work","appear","given","job","autonomy","thathey","cannot","handle","well","australian","violence","contemporary","perspectives","pdf","duncan","peter","heather","australian","institute","criminology","article","responses","security","staff","aggressive","incidents","public","settings","journal","drug","issues","examined","violent","incidents","involving","crowd","controllers","bouncers","occurred","bars","toronto","ontario_canada","study","indicated","incidents","bouncers","good","responses","incidents","bouncers","neutral","response","incidents","bouncers","responses","rated","bad","crowd","controllers","enhanced","likelihood","violence","violent","finally","almost","one","third","incidents","per","crowd","controllers","responses","rated","ugly","controllers","actions","involved","aggression","harassment","patrons","behaviour","security","industry","amendment","patron","protection","bill","inside","studies","file","terry","bouncer_doorman","jpg","thumb","right","px","bouncer","pub","wearing","distinctive","shirt","least_one","major","ethnography","ethnographic","study","bouncing","within","part","british","projecto","study","violent","subcultures","beyond","studying","bouncer","culture","outside","group","selected","suitable","candidate","long_term","research","man","previously","worked","bouncer","becoming","academic","withe","required","time","bouncing","work","new","locality","get","ready","duck","winlow","simon","hobbs","dick","lister","stuart","hadfield","phillip","british","journal","criminology","page","accessed","study","however","attracted","criticism","due","facthathe","researcher","duties","bouncer","required","set","aside","academic","distance","would","risk","losing","though","accepted","thathis","might","difficulto","resolve","place","research","methods","criminology","wells","helen","graduate","journal","social","science","vol","issue","accessed","one","main","ethical","issues","research","participation","researcher","violence","degree","would","allowed","participate","group","could","fully","resolve","thissue","would","able","gain","trust","peers","away","use","oforce","part","study","eventually","became","clear","bouncers","similarly","constantly","weighing","limits","uses","participation","violence","found","instead","part","occupation","violence","defining","characteristic","culture","created","around","violence","violent","expectation","bouncing","culture","attitudes","also","extended","recruitment","process","mainly","word","mouth","opposed","typical","job","recruitment","also","depended","heavily","previous","familiarity","violence","extend","prospective","bouncer","reputation","violence","rather","perception","needed","required","various","elementsuch","body","language","heads","also","described","often","expected","entry","bouncing","part","symbolic","narratives","set","bouncers","apart","work","job","described","limited","withe","new","bouncers","thrown","deep","end","accepted","job","first","place","including","though","informal","observation","behaviour","commonplace","case","british","research","projecthe","legally","required","licensing","bouncer","also_found","bexpected","employers","job","excluded","people","criminal","convictions","kept","unstable","violent","personalities","personality","behaviour","file","thumb","right","bouncer","athe","door","norway","norwegian","club","checking","customer","identification","proof","age","although","common","stereotype","bouncers","good","club","security","staff","physical","size","best","bouncers","anyone","talk","people","venue","rules","bouncers","doormen","website_accessed","bouncers","rescue","times","india","may","ability","judge","communicate","well","people","reduce","need","physical","intervention","steady","personality","preventhe","bouncer","easily","provoked","customers","bouncers","also","profit","good","written","communication","skills","often","required","document","incident","log","using","incident","form","well","kept","incident","logs","potential","criminal","charges","lawsuits","later","arise","incident","however","british","research","also","indicates","major","part","bothe","group","identity","job","satisfaction","bouncers","related","self","image","strongly","person","capable","dealing","violence","employment","income","plays","job","satisfaction","bouncer","subculture","influenced","perceptions","honour","typical","characteristic","groups","public","eye","get","ready","duck","winlow","simon","hobbs","dick","lister","stuart","hadfield","phillip","british","journal","criminology","page","accessed","well","warrior","cultures","general","factors","enjoying","work","bouncer","also_found","general","prestige","bouncers","even","different","clubs","well","ability","work","moment","outside","typical","jobs","alsoften","cited","get","ready","duck","winlow","simon","hobbs","dick","lister","stuart","hadfield","phillip","british","journal","criminology","pages","accessed","researchas","also","indicated","thathe","decisions","made","bouncers","often","basis","decision","turn","certain","customers","away","athe","door","casual","clothing","face","control","example","often","based","perception","thathe","person","willing","fight","compared","someone","dressed","expensive","attire","many","similar","decisions","taken","bouncer","course","night","also","described","based","experience","rather","personality","get","ready","duck","winlow","simon","hobbs","dick","lister","stuart","hadfield","phillip","british","journal","criminology","page","accessed","excessive","force","file","thumb","right","px","bouncer","gives","signal","movies","often","bouncers","physically","throwing","patrons","clubs","drunk","customers","whichas","led","popular","bouncers","righto","use","physical","force","freely","bouncers","legal","authority","use","physical","force","freely","thany","civilian","meaning","oforce","used","self","defense","drunk","aggressive","patrons","leave","venue","patron","committed","offence","police","arrive","lawsuits","possible","injuries","occur","even","patron","drunk","using","aggressive","language","court","costs","related","use","oforce","highest","loss","found","within","industry","security","liquor","licensees","michigan","licensed","beverage","association","website_accessed","bars","sued","often","using","excessive","force","canada","substantial","costs","may","incurred","violence","patrons","though","depends","heavily","laws","customs","country","australia","number","complaints","lawsuits","venues","due","behaviour","bouncers","credited","turning","many","establishments","using","former","police","officers","head","instead","hiring","private","firms","bouncers","pub","club","patrons","australian","wednesday","february","according","statistical","research","canada","bouncers","likely","face","physical","violence","work","urban","area","police","officers","research","also_found","thathe","likelihood","encounters","increased","statistical","significance","withe","number","years","bouncer","worked","security","surveillance","book","excerpt","policing","nightclub","george","canadian","review","policing","research","popular","bouncers","western","countries","normally","betty","withe","new","block","vin","diesel","vin","diesel","interview","via","accessed","bouncers","may","carry","baton","law_enforcement","expandable","baton","expandable","personal","protection","baton","course","company","website_accessed","buthey","may","legal","righto","carry","weapon","even","would","prefer","file","pawn","stars","exterior","thumb","right","px","bouncer","wearing","black","controlling","access","well_known","pawn","shop","use","oforce","training","programs","teach","bouncers","ways","avoid","using","force","explain","oforce","considered","bars","gone","far","institute","policies","physical","contact","bouncers","instructed","ask","drunk","patron","leave","patron","bouncers","call","police","however","police","called","frequently","reflect","badly","venue","upon","renewal","liquor","license","liquor","licence","another","strategy","used","bars","hire","smaller","less","threatening","female","bouncers","may","better","able","conflicts","large","bouncers","impressive","bouncers","supposed","supervise","alsoften","challenged","aggressive","males","wanting","prove","nightclubouncers","tell","tales","behind","velvet","rope","boston","phoenix","via","website_accessed","large","bouncers","whilst","providing","appearance","strong","security","may_also","drive","customers","away","cases","morelaxed","environment","desired","addition","female","security","staff","apart","fewer","female","patrons","drugs","weapons","entering","women","check","illegal","activities","also_considered","better","able","deal","drunk","aggressive","women","australia","example","women","comprise","almost","security","industry","increasingly","work","door","well","using","chat","friendly","firm","resolve","situations","mate","call","bouncers","abstract","new_york","times","wednesday","april","nearly","one","britain","nightclubouncers","also","women","withe","uk","licensing","act","giving","authorities","power","venue","licence","employ","female","door","staff","credited","withaving","opened","door","women","enter","profession","women","wanto","join","club","october","via","however","female","bouncers","still","many_countriesuch","india","celebrities","punjab","india","punjab","first","female","bouncers","soon","accusations","behaviour","female","bouncers","india","monday","july","punjab","first","female","bouncers","lose","jobs","dna","india","thursday","training","many_countries","bouncer","must","licensed","background","check","lacking","criminal","record","gain","employment","within","security","crowd","control","sector","countries","bouncers","may","required","skills","certification","first_aid","alcohol","distribution","crowd","control","fire","safety","canada","bouncers","righto","use","reasonable","force","intoxicated","aggressive","patrons","firsthe","patron","must","asked","leave","premises","patron","leave","bouncer","use","reasonable","force","patron","upheld","number","court","cases","commercial","providers","alcohol","lorne","wallace","vancouver","april","definition","reasonable","force","perfectly","acceptable","bouncer","grab","patron","arm","remove","patron","premises","however","situations","reasonably","believe","thathe","conduct","patron","puts","danger","harm","patron","force","necessary","self","defence","british_columbia","door","staff","security","bouncers","arequired","become","certified","ministry","public","safety","general","office","course","called","basic","security","training","hour","program","covers","law","customer_service","issue","related","security","operation","alberta","bar","nightclub","security","staff","take","new","government","run","training","course","correct","bouncer","behaviour","skills","thend","six","hour","protect","course","among","subjects","teach","staff","identify","conflicts","become","violent","situations","without","force","bouncers","take","course","edmonton","journal","saturday","february","ontario","courts","ruled","tavern","care","patrons","must","ensure","serve","alcohol","would","apparently","increase","patron","alcohol","intoxication","positive","steps","protect","patrons","others","dangers","intoxication","regarding","second","requirement","protecting","patrons","law","holds","customers","cannot","premises","would","danger","due","patron","intoxication","bars","held","liable","customer","know","know","risk","injury","know","october","newsletter","smart","serve","ontario_canada","ontario","bartenders","servers","completed","smart","serve","training","program","teaches","signs","intoxication","smart","serve","program","also","recommended","staff","bars","contact","potentially","intoxicated","bouncers","coat","check","staff","valets","smart","serve","certification","program","encourages","bars","keep","incident","reporting","logs","use","evidence","incident","gets","court","withe","august","private","security","investigative","services","act","ontario","law","also","industry","workers","including","bouncers","licensed","private","investigators","security","guards","licensing","ontario","ministry","community","safety","website_accessed","italy","law","defines","bouncers","subsidiary","operator","must","specific","art","law","october","g","least","years","alcohol","drugs","preventive","clinical","analysis","mental","physical","convicted","intentional","crimes","least","lower","high_school","diploma","follow","training","course","bouncers","must","ownership","type","valid","license","new_zealand","inew_zealand","bouncers","arequired","certificate","security","work","person","police","cleared","security","checks","well","courts","show","person","job","knows","new_zealand","law","prevent","security","officers","going","court","using","excessive","force","assault","bouncers","undergo","background","check","attend","day","national","skills","recognition","system","course","security","staff","however_many","professional","security","companies","larger","venues","witheir","dedicated","security","staff","noted_thathe","course","insufficient","specific","requirements","bouncer","provide","additional","training","bouncers","wearing","black","new","paper","friday","february","sweden","special","security","officers","referred","limited","policing","duties","use","oforce","monopoly","withe","police","thus","less","police","report","crime","duty","trained","swedish","police","authority","maintain","enforce","public","order","venues","areas","police","cannot","resources","permanently","enforce","public","order","officers","powers","citizen","arrest","physically","remove","disturb","pose","immediate","public","order","safety","using","reasonable","amount","oforce","also","otherwise","take","drunk","turn","police","asoon","possible","recruited","police","must","go","physical","tests","language","test","interview","board","going","two","week","training","program","teaches","behaviour","conflict","management","criminalaw","physical","intervention","use","first_aid","equal","opportunities","arrest","procedures","certified","every","three_years","areither","employed","private","security","company","g","etc","commonly","work","shopping_malls","hospitals","public_transportation","employed","bar","nightclub","owners","first","foremost","loyalty","lies","withe","police","police","manage","supervise","field","also_used","police","football","matches","high","risk","football","aftereceiving","special","training","united_kingdom","uk","door","supervisors","termed","must","hold","licence","security","industry","authority","training","door","supervisor","licence","takes","current","changes","implemented","st","january","includes","issuesuch","behaviour","conflict","management","civil","criminalaw","search","arrest","procedures","drug","awareness","recording","incidents","crime","scene","preservation","licensing","law","equal","opportunities","health","safety","work","physical","intervention","emergency","procedures","get","licensed","licensing","criteria","security","industry","authority","great_britain","accessed","licenses","must","renewed","every","three_years","one","current","provider","training","british","institute","awarding","body","supervisors","must","wear","blue","plastic","licence","often","worn","upper","arm","whilst","duty","uk","reforms","includes","many","cameron","coalition","government","intended","ostensibly","overall","grounds","cost","despite","essentially","via","licence","payments","may","financial","burden","employers","individuals","alike","industry","sees","step","fearing","return","organised","criminal","currently","regulated","industry","republic","ireland","republic","ireland","potential","doormen","bouncers","must","complete","level","course","door","security","procedures","allows","apply","psa","license","private","security","authority","psa","applicants","issuing","license","subsequently","past","convictions","working","security","industry","license","issued","psa","holder","license","work","pubs","clubs","event","security","psa","requires","licence","work","event","security","united_states","file","walker","avenue","b","theast","village","thumb","bouncer","bar","hired","theast","village","manhattan","east","village","requirements","bouncers","vary","state","state","somexamples","california","california","senate","bill","requires","bouncer","security","guard","registered","withe","state","california","department","consumer","affairs","bureau","security","investigative","services","guards","must_also","complete","criminal","background","check","including","california","department","justice","federal","bureau","investigation","must","undertake","skills","training","course","security","guards","security","licence","courses","allow","qualified","security","personnel","carry","upon","completion","training","new","security","guard","training","regulation","california","department","consumer","affairs","website_accessed","new_york","inew_york","state","illegal","bar","owner","hire","bouncer","position","article","general","business","law","bars","nightclubs","allowed","hire","bouncers","without","proper","license","new_york","state","law","private","watch","guard","patrol","agency","supply","security","guards","bouncers","bars","last","call","falls","blog","entry","village","voice","notable","bouncers","pope","francis","current","pope","worked","bouncer","buenos_aires","bar","beginning","studies","harry","francis","things","know","daily_telegraph","march","former","foreign","minister","israel","leader","israel","party","worked","bouncer","student","club","jerusalem","histudies","university","justin","current","prime_minister","canadand","leader","liberal","party","worked","bouncer","whistler","village","undergraduate","studies","accessed","jesse","brand","actor","former","american","football","player","worked","bouncer","fort_worth","texas","capone","chicago","based","worked","bartender","bouncer","early_life","capone","chicago","history","museum","website_accessed","vin","diesel","american","actor","created","vin","diesel","pseudonym","protect","anonymity","working","bouncer","carlton","english","author","west","ham","supporter","inter","city","occasional","actor","former","criminal","dave","professional","wrestler","actor","worked","bouncer","washington","nightclubs","prior","wrestling","career","official","biography","accessed","pierre","canadian","mixed","martial","artist","champion","former","bouncer","american","actor","former","bouncer","twice","winner","america","bouncer","competition","biography","website_accessed","vincent","american","actor","law","order","criminal","intent","cop","know","stop","new_york","times","via","website_accessed","michael","clarke","duncan","american","actor","former","bouncer","also","worked","various","celebrities","bouncer","interviewith","michael","clarke","duncan","accessed","norman","foster","british","architect","member","house","lords","worked","architecture","athe_university","manchester","james","american","actor","worked","bouncer","campus","pub","studying","rutgers","university","james","bio","retrieved","warrior","animal","joseph","professional","wrestler","worked","bouncer","website_accessed","graham","former","championship","winning","amateur","controlled","many_pubs","nightclubs","upon","notorious","murder","swedish","actor","director","martial","artist","british","bare","boxing","champion","also","worked","website_accessed","doorman","new_york","city","nightclub","nightclub","studio","palladium","new_york","city","also","ran","roving","cabaret","called","american","actor","writer","glenn","ross","northern","irish","bouncer","strength","glenn","gentle","giant","news","letter","belfast","northern_ireland","via","accessed","dutch","mixed","martial","artist","patrick","american","actor","rude","professional","wrestler","worked","bouncer","accessed","articles","one","story","rick","rude","true","class","acthe","one","story","rick","rude","true","class","act","rob","terry","british","professional","wrestler","geoff","thompson","martial","arts","geoff","thompson","british","bouncer","author","book","watch","back","geoff","thompson","management","company","website_accessed","james","wade","martial","arts","james","wade","american","cooler","canadian","bouncer","started","halifax","nova_scotia","athe","palace","cabaret","moon","cabaret","became","specialist","strip","clubs","biker","clubs","southern","usa","martial","artist","david","creator","game","big","bank","member","sugar","hill","gang","worked","bouncer","various","clubs","bronx","started","recording","wrestler","worked","strip","clubouncer","detroit","frank","martin","basketball","frank","martin","head","men","basketball","coach","south_carolina","bouncer","miami","area","nightclub","college","student","florida","international","university","attention","full_time","coaching","subjected","duty","group","men","ejected","fighting","types","species","sub","called","bouncer","performs","similar","function","throwing","outside","fellows","australian","species","ants","massive","blunt","insect","jaws","little","use","prey","capture","techniques","trap","species","normally","engages","instead","spend","much","time","guarding","nest","opening","jaws","foreign","ants","venture","close","force","throw","back","significant","distance","defense","behaviour","thoughto","also","protecthe","guard","physical","chemical","injury","might","sustain","direct","battle","bouncer","defense","ants","f","david","journal","volume","page","social","control","critics","noted","union","job","border","security","bouncers","various","non","north","african","countries","like","morocco","libya","turn","away","often","severe","ill","treatment","reach","europe","request","right","asylum","analogous","clubouncer","turning","away","undesirable","customers","similar","social","state","form","bouncer","people","conform","social","norms","back","supposed","though","depending","society","states","may","much","heavy","handed","proactive","also","general","security","guard","security","industry","authority","uk","regulatory","agency","popular_culture","television","canada","canadian","television_series","lives","bouncers","montreal","bouncer","beat","video_game","released","square","bouncers","stage","play","john","hull","truck","theatre","group","nightclubouncers","north","england","road","house","film","road","house","film","starring","patrick","cooler","small_town","bar","worked","bouncer","disney","take","house","mouse","mickey","house","ode","bouncer","song","animated","band","studio","les","norton","series","books","robert","g","furthereading","jamie","old_school","new","school","guide","supervisors","new","breed","publishing","august","lee","morrison","safe","door","complete","guide","door","supervisors","arnold","february","lee","morrison","close","nothing","personal","practical","self","protection","door","security","staff","apex","publishing","barratt","doors","life","door","milo","books","february","robin","barratt","doorman","diverse","publications","ltd","june","robin","barratt","bouncers","mainstream","publishing","march","robin","barratt","respect","reputation","doors","prison","life","apex","publishing","june","ivan","holiday","bouncer","bible","turner","paige","publishing","january","ivan","holiday","cooler","press_publishing","july","ivan","holiday","sun","art","bouncing","press_publishing","april","ivan","holiday","bouncer","bible","edition","press_publishing","july","george","nightclubouncers","risk","spectacle","consumption","queen","university_press","may","jason","door","supervisors","course","book","national","door","supervisors","qualification","january","stu","armstrong","diaries","doorman","volume","one","stu","armstrong","diaries","doorman","vol","stu","armstrong","diaries","doorman","vol","stu","armstrong","scott","wanto","bouncer","externalinks_category","security","guards","category_nightclubs_category","protective","service","occupations_category","crime","prevention","category","surveillance"],"clean_bigrams":[["file","strip"],["strip","clubouncer"],["clubouncer","san"],["thumb","upright"],["strip","club"],["san","francisco"],["francisco","california"],["california","bouncer"],["bouncer","also"],["also","known"],["doorman","door"],["door","supervisor"],["supervisor","cooler"],["security","guard"],["guard","employed"],["bar","establishment"],["establishment","bars"],["bars","nightclub"],["provide","security"],["security","check"],["check","age"],["majority","legal"],["legal","age"],["substance","intoxication"],["intoxication","intoxicated"],["intoxicated","persons"],["aggressive","behavior"],["behavior","non"],["non","compliance"],["establishment","rules"],["rules","bouncers"],["often","required"],["crowd","size"],["size","clientele"],["alcoholic","beverage"],["beverage","alcohol"],["alcohol","consumption"],["consumption","may"],["may","make"],["make","arguments"],["criminal","gang"],["gang","activity"],["united","states"],["court","costs"],["costs","related"],["use","oforce"],["loss","found"],["found","within"],["bar","industry"],["many","united"],["united","states"],["states","bouncers"],["often","taken"],["similar","problems"],["excessive","force"],["many","countries"],["countries","federal"],["state","governments"],["taken","steps"],["requiring","bouncers"],["training","licensing"],["background","check"],["check","criminal"],["criminal","records"],["records","background"],["background","check"],["increased","awareness"],["criminal","charges"],["led","many"],["many","bars"],["use","communication"],["conflict","resolution"],["resolution","skills"],["however","thearlier"],["thearlier","history"],["occupation","suggests"],["suggests","thathe"],["thathe","stereotype"],["rough","tough"],["tough","physical"],["many","countries"],["cultures","throughout"],["throughout","history"],["history","historical"],["historical","references"],["references","also"],["doorman","function"],["ithe","stereotypical"],["stereotypical","task"],["modern","bouncer"],["bouncer","could"],["could","atimes"],["relatively","important"],["important","position"],["position","ancientimes"],["person","allowing"],["greek","myths"],["myths","descended"],["seven","doormen"],["doormen","guarding"],["protect","ing"],["illegal","entry"],["sacred","areas"],["share","withe"],["withe","modern"],["modern","concept"],["bouncer","though"],["described","temple"],["temple","servants"],["servants","also"],["also","serve"],["holy","persons"],["administrative","function"],["function","istill"],["istill","present"],["higher","position"],["supervisor","doormen"],["doormen","bouncers"],["usually","larger"],["larger","persons"],["display","great"],["great","strength"],["position","known"],["sometimes","ejected"],["ejected","unwanted"],["unwanted","people"],["house","whose"],["whose","gate"],["term","later"],["later","become"],["low","ranking"],["ranking","clergy"],["clergy","title"],["written","approximately"],["powerful","doorman"],["doorman","bouncer"],["early","christian"],["christian","author"],["author","living"],["living","mainly"],["st","century"],["semi","legal"],["legal","underworld"],["underworld","amongst"],["cambridge","ancient"],["ancient","history"],["history","volume"],["second","edition"],["edition","page"],["page","cambridge"],["cambridge","university"],["university","press"],["press","modern"],["modern","times"],["late","th"],["early","th"],["th","centuries"],["hired","bouncers"],["protecthe","saloon"],["saloon","girls"],["word","bouncer"],["first","popularized"],["first","published"],["immensely","popular"],["popular","author"],["th","century"],["century","especially"],["young","people"],["widely","quoted"],["chapter","xiv"],["xiv","entitled"],["article","stated"],["stated","thathe"],["thathe","bouncer"],["merely","thenglish"],["unknown","article"],["article","name"],["name","london"],["london","daily"],["daily","news"],["news","th"],["th","century"],["century","london"],["london","daily"],["daily","news"],["news","thursday"],["thursday","july"],["july","via"],["dictionary","th"],["th","century"],["century","file"],["file","charleston"],["charleston","j"],["j","w"],["year","jpg"],["jpg","thumb"],["thumb","left"],["left","px"],["arizona","saloon"],["bouncers","earned"],["us","western"],["western","towns"],["high","class"],["class","brothels"],["brothels","known"],["good","houses"],["parlour","houses"],["houses","hired"],["hired","bouncers"],["prevent","patrons"],["payment","good"],["good","house"],["house","style"],["style","brothels"],["brothels","considered"],["prostitutes","working"],["saloons","dance"],["dance","halls"],["looked","like"],["like","respectable"],["respectable","mansions"],["decorated","parlours"],["game","room"],["dance","hall"],["security","somewhere"],["every","parlor"],["parlor","house"],["wanto","pay"],["protective","presence"],["high","class"],["class","brothels"],["girls","considered"],["lower","class"],["class","free"],["ladies","god"],["old","west"],["christine","private"],["private","homepage"],["days","bouncers"],["bouncers","would"],["would","physically"],["physically","remove"],["remove","drinkers"],["keep","buying"],["buying","drinks"],["thus","free"],["new","patrons"],["slang","term"],["term","snake"],["snake","room"],["saloon","usually"],["usually","twor"],["twor","three"],["three","steps"],["bar","keeper"],["bouncer","could"],["could","slide"],["slide","drunk"],["snake","room"],["room","logging"],["isabel","j"],["madison","via"],["late","th"],["th","century"],["prohibition","bouncers"],["bouncers","also"],["unusual","role"],["attract","business"],["business","many"],["many","saloons"],["saloons","lured"],["lured","customers"],["free","lunch"],["lunch","usually"],["usually","well"],["well","salted"],["inspire","drinking"],["saloon","bouncer"],["america","history"],["history","search"],["consensus","drinking"],["mark","edward"],["edward","martin"],["martin","james"],["james","kirby"],["free","press"],["press","new"],["new","york"],["late","th"],["th","century"],["century","bouncers"],["small","town"],["town","dances"],["bars","physically"],["main","bar"],["one","iowa"],["iowa","town"],["many","fights"],["court","costs"],["first","years"],["morgan","township"],["township","compiled"],["struck","private"],["private","homepage"],["maintain","order"],["new","york"],["coney","island"],["bars","cabarets"],["brothels","huge"],["huge","bouncers"],["roughly","ejected"],["ejected","anyone"],["loose","rules"],["bloody","fights"],["fights","coney"],["coney","island"],["island","early"],["early","history"],["private","website"],["san","diego"],["similarly","rough"],["rough","waterfront"],["waterfront","areand"],["district","called"],["bouncers","worked"],["brothels","prostitutes"],["prostitutes","worked"],["worked","athe"],["athe","area"],["small","rooms"],["rooms","paying"],["morexpensive","higher"],["higher","class"],["class","brothels"],["called","parlour"],["parlour","houses"],["best","ofood"],["ofood","andrink"],["andrink","waserved"],["high","class"],["class","atmosphere"],["male","patrons"],["patrons","werexpected"],["act","like"],["like","gentlemen"],["said","anything"],["bouncer","made"],["made","sure"],["red","lights"],["lights","went"],["san","diego"],["san","diego"],["diego","history"],["history","spring"],["spring","volume"],["volume","number"],["number","th"],["th","century"],["century","bouncers"],["pre","world"],["world","war"],["united","states"],["alsometimes","used"],["ballroom","dancing"],["often","considered"],["could","lead"],["patrons","noto"],["noto","dance"],["dance","closer"],["great","war"],["website","accessed"],["hired","bouncers"],["maintain","order"],["aggressive","patrons"],["oasis","club"],["club","operated"],["max","cohen"],["cohen","hired"],["lady","bouncer"],["six","foot"],["pennsylvania","coal"],["coal","fields"],["fields","mickey"],["first","asking"],["general","direction"],["character","known"],["machine","gun"],["long","time"],["time","bouncer"],["bouncer","athe"],["block","hull"],["hull","stephen"],["stephen","stag"],["stag","athe"],["athe","moment"],["via","google"],["doormen","protected"],["protected","venues"],["fights","caused"],["potentially","violent"],["violent","groupsuch"],["movie","cabaret"],["cabaret","film"],["film","cabaret"],["cabaret","hitler"],["hitler","surrounded"],["number","oformer"],["christian","weber"],["general","christian"],["christian","weber"],["group","designated"],["protect","party"],["party","meetings"],["early","nazi"],["nazi","germany"],["underground","jazz"],["jazz","club"],["also","hired"],["nazi","party"],["party","later"],["nazi","regime"],["regime","bouncers"],["bouncers","also"],["also","increasingly"],["increasingly","barred"],["barred","non"],["non","german"],["german","people"],["foreign","workers"],["german","dances"],["dance","halls"],["halls","file"],["bild","berlin"],["der","ohio"],["ohio","barjpg"],["barjpg","thumb"],["thumb","left"],["left","px"],["ohio","bar"],["berlin","bouncers"],["bouncers","alsoften"],["alsoften","come"],["united","kingdom"],["example","long"],["long","running"],["running","series"],["fan","groups"],["groups","like"],["like","sheffield"],["sheffield","united"],["researchers","bouncers"],["bouncers","also"],["also","known"],["criminal","gangs"],["gangs","especially"],["places","like"],["like","russia"],["russia","hong"],["hong","kong"],["bouncers","may"],["may","often"],["often","belong"],["able","toperate"],["hong","kong"],["underground","society"],["hong","kong"],["kong","stories"],["stories","feature"],["feature","journalism"],["media","studies"],["studies","centre"],["centre","university"],["hong","kong"],["kong","may"],["may","hong"],["hong","kong"],["kong","also"],["also","features"],["somewhat","unusual"],["unusual","situation"],["prostitutes","instead"],["hong","kong"],["kong","police"],["sex","worker"],["fact","reversed"],["written","tell"],["books","aboutheir"],["aboutheir","experiences"],["male","bouncers"],["club","goers"],["ultimate","hard"],["hard","men"],["bouncers","also"],["lightning","rod"],["male","customers"],["customers","wanting"],["also","started"],["academic","interest"],["ethnography","ethnographic"],["ethnographic","studies"],["violent","subculture"],["several","english"],["english","researchers"],["culture","waseen"],["bouncer","doorman"],["doorman","inside"],["inside","studies"],["studies","research"],["research","section"],["article","get"],["get","ready"],["duck","winlow"],["winlow","simon"],["simon","hobbs"],["hobbs","dick"],["dick","lister"],["lister","stuart"],["stuart","hadfield"],["hadfield","phillip"],["phillip","british"],["british","journal"],["pages","accessed"],["accessed","research"],["sociology","outside"],["outside","studies"],["studies","file"],["file","pawn"],["pawn","stars"],["thumb","right"],["right","px"],["bouncer","stands"],["stands","outside"],["pawn","shop"],["australian","government"],["government","study"],["violence","stated"],["violent","incidents"],["public","drinking"],["drinking","locations"],["interaction","ofive"],["ofive","factors"],["factors","aggressive"],["aggressive","bouncers"],["bouncers","groups"],["male","strangers"],["strangers","low"],["low","comfort"],["hot","clubs"],["clubs","high"],["high","drunkenness"],["research","indicated"],["violence","prone"],["prone","atmosphere"],["bars","however"],["aggressive","bouncers"],["bouncers","especially"],["study","stated"],["initiate","fights"],["several","occasions"],["occasions","many"],["many","seem"],["seem","poorly"],["poorly","trained"],["relate","badly"],["assault","people"],["reduce","trouble"],["already","hostile"],["aggressive","situation"],["practice","many"],["many","bouncers"],["well","managed"],["job","autonomy"],["handle","well"],["well","australian"],["australian","violence"],["violence","contemporary"],["contemporary","perspectives"],["perspectives","pdf"],["heather","australian"],["australian","institute"],["criminology","article"],["article","responses"],["security","staff"],["aggressive","incidents"],["public","settings"],["drug","issues"],["issues","examined"],["examined","violent"],["violent","incidents"],["incidents","involving"],["involving","crowd"],["crowd","controllers"],["controllers","bouncers"],["toronto","ontario"],["ontario","canada"],["study","indicated"],["good","responses"],["neutral","response"],["bouncers","responses"],["crowd","controllers"],["controllers","enhanced"],["violent","finally"],["almost","one"],["one","third"],["incidents","per"],["crowd","controllers"],["controllers","responses"],["controllers","actions"],["actions","involved"],["aggression","harassment"],["behaviour","security"],["security","industry"],["industry","amendment"],["amendment","patron"],["patron","protection"],["protection","bill"],["bill","inside"],["inside","studies"],["studies","file"],["file","terry"],["bouncer","doorman"],["doorman","jpg"],["jpg","thumb"],["thumb","right"],["right","px"],["pub","wearing"],["least","one"],["one","major"],["major","ethnography"],["ethnography","ethnographic"],["ethnographic","study"],["british","projecto"],["projecto","study"],["study","violent"],["violent","subcultures"],["subcultures","beyond"],["beyond","studying"],["bouncer","culture"],["group","selected"],["suitable","candidate"],["long","term"],["term","research"],["previously","worked"],["bouncing","work"],["new","locality"],["locality","get"],["get","ready"],["duck","winlow"],["winlow","simon"],["simon","hobbs"],["hobbs","dick"],["dick","lister"],["lister","stuart"],["stuart","hadfield"],["hadfield","phillip"],["phillip","british"],["british","journal"],["page","accessed"],["however","attracted"],["criticism","due"],["facthathe","researcher"],["set","aside"],["academic","distance"],["distance","would"],["accepted","thathis"],["difficulto","resolve"],["research","methods"],["criminology","wells"],["wells","helen"],["graduate","journal"],["social","science"],["science","vol"],["vol","issue"],["issue","accessed"],["accessed","one"],["main","ethical"],["ethical","issues"],["group","could"],["fully","resolve"],["resolve","thissue"],["use","oforce"],["eventually","became"],["became","clear"],["constantly","weighing"],["occupation","violence"],["defining","characteristic"],["culture","created"],["created","around"],["around","violence"],["violent","expectation"],["bouncing","culture"],["attitudes","also"],["also","extended"],["recruitment","process"],["typical","job"],["job","recruitment"],["also","depended"],["depended","heavily"],["previous","familiarity"],["prospective","bouncer"],["violence","rather"],["required","various"],["body","language"],["also","described"],["often","expected"],["symbolic","narratives"],["set","bouncers"],["bouncers","apart"],["limited","withe"],["withe","new"],["new","bouncers"],["deep","end"],["first","place"],["place","including"],["though","informal"],["informal","observation"],["british","research"],["research","projecthe"],["projecthe","legally"],["legally","required"],["required","licensing"],["bouncer","also"],["also","found"],["excluded","people"],["criminal","convictions"],["unstable","violent"],["violent","personalities"],["personalities","personality"],["behaviour","file"],["thumb","right"],["bouncer","athe"],["athe","door"],["norway","norwegian"],["norwegian","club"],["club","checking"],["checking","customer"],["customer","identification"],["proof","age"],["age","although"],["common","stereotype"],["good","club"],["club","security"],["security","staff"],["best","bouncers"],["venue","rules"],["rules","bouncers"],["bouncers","doormen"],["website","accessed"],["accessed","bouncers"],["rescue","times"],["india","may"],["communicate","well"],["physical","intervention"],["steady","personality"],["preventhe","bouncer"],["easily","provoked"],["customers","bouncers"],["bouncers","also"],["also","profit"],["good","written"],["written","communication"],["communication","skills"],["often","required"],["incident","log"],["incident","form"],["form","well"],["well","kept"],["kept","incident"],["incident","logs"],["criminal","charges"],["later","arise"],["incident","however"],["however","british"],["british","research"],["research","also"],["also","indicates"],["major","part"],["bothe","group"],["group","identity"],["job","satisfaction"],["self","image"],["employment","income"],["income","plays"],["job","satisfaction"],["satisfaction","bouncer"],["bouncer","subculture"],["typical","characteristic"],["public","eye"],["eye","get"],["get","ready"],["duck","winlow"],["winlow","simon"],["simon","hobbs"],["hobbs","dick"],["dick","lister"],["lister","stuart"],["stuart","hadfield"],["hadfield","phillip"],["phillip","british"],["british","journal"],["page","accessed"],["warrior","cultures"],["general","factors"],["enjoying","work"],["bouncer","also"],["also","found"],["general","prestige"],["bouncers","even"],["different","clubs"],["typical","jobs"],["alsoften","cited"],["cited","get"],["get","ready"],["duck","winlow"],["winlow","simon"],["simon","hobbs"],["hobbs","dick"],["dick","lister"],["lister","stuart"],["stuart","hadfield"],["hadfield","phillip"],["phillip","british"],["british","journal"],["pages","accessed"],["researchas","also"],["also","indicated"],["indicated","thathe"],["thathe","decisions"],["decisions","made"],["turn","certain"],["certain","customers"],["customers","away"],["away","athe"],["athe","door"],["casual","clothing"],["clothing","face"],["face","control"],["example","often"],["often","based"],["perception","thathe"],["thathe","person"],["fight","compared"],["someone","dressed"],["expensive","attire"],["attire","many"],["many","similar"],["similar","decisions"],["decisions","taken"],["also","described"],["experience","rather"],["personality","get"],["get","ready"],["duck","winlow"],["winlow","simon"],["simon","hobbs"],["hobbs","dick"],["dick","lister"],["lister","stuart"],["stuart","hadfield"],["hadfield","phillip"],["phillip","british"],["british","journal"],["page","accessed"],["accessed","excessive"],["excessive","force"],["force","file"],["thumb","right"],["right","px"],["bouncer","gives"],["signal","movies"],["movies","often"],["bouncers","physically"],["physically","throwing"],["throwing","patrons"],["drunk","customers"],["whichas","led"],["righto","use"],["use","physical"],["physical","force"],["force","freely"],["freely","however"],["however","many"],["many","countries"],["countries","bouncers"],["legal","authority"],["use","physical"],["physical","force"],["force","freely"],["freely","thany"],["civilian","meaning"],["oforce","used"],["self","defense"],["aggressive","patrons"],["police","arrive"],["arrive","lawsuits"],["injuries","occur"],["occur","even"],["using","aggressive"],["aggressive","language"],["court","costs"],["costs","related"],["use","oforce"],["loss","found"],["found","within"],["liquor","licensees"],["michigan","licensed"],["licensed","beverage"],["beverage","association"],["website","accessed"],["using","excessive"],["excessive","force"],["canada","substantial"],["substantial","costs"],["costs","may"],["patrons","though"],["depends","heavily"],["venues","due"],["turning","many"],["many","establishments"],["using","former"],["former","police"],["police","officers"],["hiring","private"],["private","firms"],["pub","club"],["club","patrons"],["australian","wednesday"],["wednesday","february"],["february","according"],["statistical","research"],["canada","bouncers"],["face","physical"],["physical","violence"],["urban","area"],["area","police"],["police","officers"],["research","also"],["also","found"],["found","thathe"],["thathe","likelihood"],["encounters","increased"],["statistical","significance"],["significance","withe"],["withe","number"],["surveillance","book"],["book","excerpt"],["canadian","review"],["policing","research"],["western","countries"],["withe","new"],["block","vin"],["vin","diesel"],["diesel","vin"],["vin","diesel"],["diesel","interview"],["interview","via"],["accessed","bouncers"],["bouncers","may"],["may","carry"],["baton","law"],["law","enforcement"],["enforcement","expandable"],["expandable","baton"],["baton","expandable"],["personal","protection"],["protection","baton"],["company","website"],["website","accessed"],["accessed","buthey"],["buthey","may"],["legal","righto"],["righto","carry"],["weapon","even"],["would","prefer"],["file","pawn"],["pawn","stars"],["stars","exterior"],["thumb","right"],["right","px"],["bouncer","wearing"],["controlling","access"],["well","known"],["known","pawn"],["pawn","shop"],["shop","use"],["use","oforce"],["oforce","training"],["training","programs"],["programs","teach"],["teach","bouncers"],["bouncers","ways"],["avoid","using"],["using","force"],["institute","policies"],["physical","contact"],["bouncers","call"],["call","police"],["police","however"],["reflect","badly"],["venue","upon"],["upon","renewal"],["liquor","license"],["license","liquor"],["liquor","licence"],["licence","another"],["another","strategy"],["strategy","used"],["hire","smaller"],["smaller","less"],["less","threatening"],["female","bouncers"],["bouncers","may"],["may","better"],["better","able"],["impressive","bouncers"],["alsoften","challenged"],["aggressive","males"],["males","wanting"],["nightclubouncers","tell"],["velvet","rope"],["boston","phoenix"],["phoenix","via"],["website","accessed"],["accessed","large"],["bouncers","whilst"],["whilst","providing"],["strong","security"],["security","may"],["may","also"],["also","drive"],["drive","customers"],["customers","away"],["morelaxed","environment"],["addition","female"],["female","security"],["security","staff"],["staff","apart"],["female","patrons"],["entering","women"],["illegal","activities"],["also","considered"],["better","able"],["aggressive","women"],["example","women"],["women","comprise"],["comprise","almost"],["security","industry"],["increasingly","work"],["well","using"],["situations","mate"],["abstract","new"],["new","york"],["york","times"],["times","wednesday"],["wednesday","april"],["april","nearly"],["nearly","one"],["also","women"],["women","withe"],["withe","uk"],["licensing","act"],["act","giving"],["employ","female"],["female","door"],["door","staff"],["credited","withaving"],["withaving","opened"],["women","wanto"],["wanto","join"],["october","via"],["however","female"],["female","bouncers"],["many","countriesuch"],["punjab","india"],["india","punjab"],["first","female"],["female","bouncers"],["female","bouncers"],["india","monday"],["monday","july"],["july","punjab"],["first","female"],["female","bouncers"],["bouncers","lose"],["jobs","dna"],["dna","india"],["india","thursday"],["many","countries"],["bouncer","must"],["background","check"],["check","lacking"],["criminal","record"],["gain","employment"],["employment","within"],["security","crowd"],["crowd","control"],["control","sector"],["countries","bouncers"],["bouncers","may"],["first","aid"],["aid","alcohol"],["alcohol","distribution"],["distribution","crowd"],["crowd","control"],["fire","safety"],["canada","bouncers"],["righto","use"],["use","reasonable"],["reasonable","force"],["aggressive","patrons"],["patrons","firsthe"],["firsthe","patron"],["patron","must"],["use","reasonable"],["reasonable","force"],["court","cases"],["commercial","providers"],["vancouver","april"],["reasonable","force"],["perfectly","acceptable"],["premises","however"],["reasonably","believe"],["believe","thathe"],["thathe","conduct"],["patron","puts"],["self","defence"],["british","columbia"],["columbia","door"],["door","staff"],["staff","security"],["security","bouncers"],["bouncers","arequired"],["become","certified"],["public","safety"],["general","office"],["course","called"],["basic","security"],["security","training"],["hour","program"],["covers","law"],["law","customer"],["customer","service"],["issue","related"],["security","operation"],["alberta","bar"],["nightclub","security"],["security","staff"],["new","government"],["government","run"],["run","training"],["training","course"],["correct","bouncer"],["bouncer","behaviour"],["six","hour"],["hour","protect"],["protect","course"],["subjects","teach"],["teach","staff"],["identify","conflicts"],["become","violent"],["situations","without"],["force","bouncers"],["bouncers","take"],["take","course"],["edmonton","journal"],["journal","saturday"],["saturday","february"],["ontario","courts"],["must","ensure"],["serve","alcohol"],["would","apparently"],["alcohol","intoxication"],["positive","steps"],["protect","patrons"],["intoxication","regarding"],["second","requirement"],["protecting","patrons"],["law","holds"],["intoxication","bars"],["held","liable"],["october","newsletter"],["smart","serve"],["serve","ontario"],["ontario","canada"],["ontario","bartenders"],["smart","serve"],["serve","training"],["training","program"],["smart","serve"],["serve","program"],["also","recommended"],["potentially","intoxicated"],["bouncers","coat"],["coat","check"],["check","staff"],["smart","serve"],["serve","certification"],["certification","program"],["program","encourages"],["encourages","bars"],["keep","incident"],["incident","reporting"],["reporting","logs"],["incident","gets"],["court","withe"],["withe","august"],["august","private"],["private","security"],["investigative","services"],["services","act"],["act","ontario"],["ontario","law"],["law","also"],["industry","workers"],["workers","including"],["including","bouncers"],["licensed","private"],["private","investigators"],["security","guards"],["guards","licensing"],["ontario","ministry"],["community","safety"],["website","accessed"],["accessed","italy"],["law","defines"],["defines","bouncers"],["law","october"],["least","years"],["preventive","clinical"],["clinical","analysis"],["analysis","mental"],["intentional","crimes"],["least","lower"],["lower","high"],["high","school"],["school","diploma"],["diploma","follow"],["training","course"],["course","bouncers"],["bouncers","must"],["license","new"],["new","zealand"],["zealand","inew"],["inew","zealand"],["bouncers","arequired"],["security","work"],["security","checks"],["knows","new"],["new","zealand"],["zealand","law"],["prevent","security"],["security","officers"],["officers","going"],["using","excessive"],["excessive","force"],["background","check"],["day","national"],["national","skills"],["skills","recognition"],["recognition","system"],["system","course"],["security","staff"],["staff","however"],["however","many"],["professional","security"],["security","companies"],["larger","venues"],["venues","witheir"],["dedicated","security"],["security","staff"],["noted","thathe"],["thathe","course"],["specific","requirements"],["additional","training"],["new","paper"],["paper","friday"],["friday","february"],["special","security"],["security","officers"],["officers","referred"],["limited","policing"],["policing","duties"],["use","oforce"],["oforce","monopoly"],["monopoly","withe"],["withe","police"],["report","crime"],["swedish","police"],["police","authority"],["enforce","public"],["public","order"],["resources","permanently"],["enforce","public"],["public","order"],["physically","remove"],["public","order"],["reasonable","amount"],["amount","oforce"],["otherwise","take"],["must","go"],["physical","tests"],["language","test"],["interview","board"],["two","week"],["week","training"],["training","program"],["teaches","behaviour"],["behaviour","conflict"],["conflict","management"],["management","criminalaw"],["criminalaw","physical"],["physical","intervention"],["first","aid"],["aid","equal"],["equal","opportunities"],["arrest","procedures"],["certified","every"],["every","three"],["three","years"],["areither","employed"],["private","security"],["security","company"],["commonly","work"],["shopping","malls"],["malls","hospitals"],["hospitals","public"],["public","transportation"],["nightclub","owners"],["foremost","loyalty"],["loyalty","lies"],["lies","withe"],["withe","police"],["police","manage"],["football","matches"],["high","risk"],["risk","football"],["aftereceiving","special"],["special","training"],["training","united"],["united","kingdom"],["uk","door"],["door","supervisors"],["termed","must"],["must","hold"],["security","industry"],["industry","authority"],["door","supervisor"],["supervisor","licence"],["licence","takes"],["current","changes"],["st","january"],["includes","issuesuch"],["behaviour","conflict"],["conflict","management"],["management","civil"],["criminalaw","search"],["arrest","procedures"],["procedures","drug"],["drug","awareness"],["awareness","recording"],["crime","scene"],["scene","preservation"],["preservation","licensing"],["licensing","law"],["law","equal"],["equal","opportunities"],["work","physical"],["physical","intervention"],["emergency","procedures"],["procedures","get"],["get","licensed"],["licensing","criteria"],["security","industry"],["industry","authority"],["authority","great"],["great","britain"],["britain","accessed"],["accessed","licenses"],["licenses","must"],["renewed","every"],["every","three"],["three","years"],["years","one"],["one","current"],["current","provider"],["british","institute"],["awarding","body"],["supervisors","must"],["must","wear"],["blue","plastic"],["plastic","licence"],["licence","often"],["often","worn"],["upper","arm"],["arm","whilst"],["reforms","includes"],["coalition","government"],["government","intended"],["overall","grounds"],["cost","despite"],["via","licence"],["licence","payments"],["financial","burden"],["individuals","alike"],["industry","sees"],["step","fearing"],["organised","criminal"],["currently","regulated"],["regulated","industry"],["industry","republic"],["potential","doormen"],["doormen","bouncers"],["bouncers","must"],["must","complete"],["level","course"],["door","security"],["security","procedures"],["psa","license"],["license","private"],["private","security"],["security","authority"],["license","subsequently"],["past","convictions"],["security","industry"],["license","issued"],["pubs","clubs"],["event","security"],["event","security"],["security","united"],["united","states"],["states","file"],["avenue","b"],["theast","village"],["theast","village"],["village","manhattan"],["manhattan","east"],["east","village"],["village","requirements"],["bouncers","vary"],["california","senate"],["senate","bill"],["bill","requires"],["security","guard"],["registered","withe"],["withe","state"],["california","department"],["consumer","affairs"],["affairs","bureau"],["investigative","services"],["guards","must"],["must","also"],["also","complete"],["criminal","background"],["background","check"],["check","including"],["california","department"],["federal","bureau"],["must","undertake"],["skills","training"],["training","course"],["security","guards"],["security","licence"],["courses","allow"],["qualified","security"],["security","personnel"],["upon","completion"],["training","new"],["new","security"],["security","guard"],["guard","training"],["training","regulation"],["california","department"],["consumer","affairs"],["affairs","website"],["website","accessed"],["accessed","new"],["new","york"],["york","inew"],["inew","york"],["york","state"],["bar","owner"],["bouncer","position"],["article","general"],["general","business"],["business","law"],["law","bars"],["hire","bouncers"],["bouncers","without"],["proper","license"],["license","new"],["new","york"],["york","state"],["state","law"],["watch","guard"],["patrol","agency"],["supply","security"],["security","guards"],["guards","bouncers"],["bars","last"],["last","call"],["falls","blog"],["blog","entry"],["village","voice"],["notable","bouncers"],["bouncers","pope"],["pope","francis"],["francis","current"],["current","pope"],["buenos","aires"],["aires","bar"],["studies","harry"],["francis","things"],["daily","telegraph"],["telegraph","march"],["former","foreign"],["foreign","minister"],["party","worked"],["student","club"],["university","justin"],["current","prime"],["prime","minister"],["canadand","leader"],["liberal","party"],["party","worked"],["whistler","village"],["undergraduate","studies"],["accessed","jesse"],["jesse","brand"],["actor","former"],["former","american"],["american","football"],["football","player"],["player","worked"],["fort","worth"],["worth","texas"],["capone","chicago"],["chicago","based"],["bartender","bouncer"],["early","life"],["life","history"],["history","files"],["capone","chicago"],["chicago","history"],["history","museum"],["museum","website"],["website","accessed"],["accessed","vin"],["vin","diesel"],["diesel","american"],["american","actor"],["vin","diesel"],["diesel","pseudonym"],["bouncer","carlton"],["english","author"],["author","west"],["west","ham"],["ham","supporter"],["supporter","inter"],["inter","city"],["occasional","actor"],["actor","former"],["former","criminal"],["criminal","dave"],["professional","wrestler"],["actor","worked"],["nightclubs","prior"],["wrestling","career"],["official","biography"],["pierre","canadian"],["canadian","mixed"],["mixed","martial"],["martial","artist"],["champion","former"],["former","bouncer"],["american","actor"],["actor","former"],["former","bouncer"],["twice","winner"],["bouncer","competition"],["website","accessed"],["accessed","vincent"],["american","actor"],["law","order"],["order","criminal"],["criminal","intent"],["intent","cop"],["new","york"],["york","times"],["times","via"],["website","accessed"],["accessed","michael"],["michael","clarke"],["clarke","duncan"],["duncan","american"],["american","actor"],["actor","former"],["former","bouncer"],["bouncer","also"],["also","worked"],["various","celebrities"],["interviewith","michael"],["michael","clarke"],["clarke","duncan"],["duncan","accessed"],["accessed","norman"],["norman","foster"],["foster","british"],["british","architect"],["lords","worked"],["night","clubouncer"],["architecture","athe"],["athe","university"],["manchester","james"],["american","actor"],["actor","worked"],["campus","pub"],["rutgers","university"],["university","james"],["warrior","animal"],["animal","joseph"],["professional","wrestler"],["wrestler","worked"],["website","accessed"],["former","championship"],["championship","winning"],["winning","amateur"],["controlled","many"],["many","pubs"],["notorious","murder"],["swedish","actor"],["actor","director"],["martial","artist"],["british","bare"],["also","worked"],["website","accessed"],["new","york"],["york","city"],["city","nightclub"],["palladium","new"],["new","york"],["york","city"],["also","ran"],["roving","cabaret"],["american","actor"],["writer","glenn"],["glenn","ross"],["ross","northern"],["northern","irish"],["irish","bouncer"],["gentle","giant"],["news","letter"],["letter","belfast"],["belfast","northern"],["northern","ireland"],["ireland","via"],["dutch","mixed"],["mixed","martial"],["martial","artist"],["american","actor"],["professional","wrestler"],["wrestler","worked"],["rick","rude"],["true","class"],["class","acthe"],["rick","rude"],["true","class"],["class","act"],["act","rob"],["rob","terry"],["terry","british"],["british","professional"],["professional","wrestler"],["wrestler","geoff"],["geoff","thompson"],["thompson","martial"],["martial","arts"],["arts","geoff"],["geoff","thompson"],["thompson","british"],["british","bouncer"],["book","watch"],["back","geoff"],["geoff","thompson"],["management","company"],["company","website"],["website","accessed"],["accessed","james"],["james","wade"],["martial","arts"],["arts","james"],["james","wade"],["american","cooler"],["canadian","bouncer"],["bouncer","started"],["halifax","nova"],["nova","scotia"],["athe","palace"],["palace","cabaret"],["moon","cabaret"],["cabaret","became"],["strip","clubs"],["biker","clubs"],["southern","usa"],["usa","martial"],["martial","artist"],["artist","david"],["big","bank"],["sugar","hill"],["hill","gang"],["gang","worked"],["various","clubs"],["started","recording"],["wrestler","worked"],["strip","clubouncer"],["detroit","frank"],["frank","martin"],["martin","basketball"],["basketball","frank"],["frank","martin"],["martin","head"],["head","men"],["basketball","coach"],["south","carolina"],["miami","area"],["area","nightclub"],["college","student"],["florida","international"],["international","university"],["full","time"],["time","coaching"],["similar","function"],["function","throwing"],["australian","species"],["massive","blunt"],["little","use"],["prey","capture"],["capture","techniques"],["species","normally"],["normally","engages"],["engages","instead"],["spend","much"],["time","guarding"],["nest","opening"],["foreign","ants"],["ants","venture"],["venture","close"],["throw","back"],["significant","distance"],["defense","behaviour"],["thoughto","also"],["also","protecthe"],["protecthe","guard"],["chemical","injury"],["might","sustain"],["direct","battle"],["bouncer","defense"],["social","control"],["border","security"],["security","bouncers"],["various","non"],["north","african"],["african","countries"],["countries","like"],["like","morocco"],["turn","away"],["severe","ill"],["ill","treatment"],["reach","europe"],["request","right"],["asylum","analogous"],["clubouncer","turning"],["turning","away"],["away","undesirable"],["undesirable","customers"],["social","norms"],["norms","back"],["though","depending"],["states","may"],["heavy","handed"],["security","guard"],["guard","security"],["security","industry"],["industry","authority"],["authority","uk"],["uk","regulatory"],["regulatory","agency"],["popular","culture"],["canada","canadian"],["canadian","television"],["television","series"],["video","game"],["stage","play"],["hull","truck"],["truck","theatre"],["england","road"],["road","house"],["house","film"],["film","road"],["road","house"],["house","film"],["film","starring"],["starring","patrick"],["small","town"],["town","bar"],["animated","band"],["band","studio"],["les","norton"],["robert","g"],["furthereading","jamie"],["old","school"],["school","new"],["new","school"],["school","guide"],["supervisors","new"],["new","breed"],["breed","publishing"],["publishing","august"],["august","lee"],["lee","morrison"],["morrison","safe"],["complete","guide"],["door","supervisors"],["arnold","february"],["february","lee"],["lee","morrison"],["close","nothing"],["nothing","personal"],["personal","practical"],["practical","self"],["self","protection"],["door","security"],["security","staff"],["staff","apex"],["apex","publishing"],["door","milo"],["milo","books"],["books","february"],["february","robin"],["robin","barratt"],["doorman","diverse"],["diverse","publications"],["publications","ltd"],["ltd","june"],["june","robin"],["robin","barratt"],["barratt","bouncers"],["mainstream","publishing"],["publishing","march"],["march","robin"],["robin","barratt"],["barratt","respect"],["life","apex"],["apex","publishing"],["publishing","june"],["june","ivan"],["ivan","holiday"],["bible","turner"],["turner","paige"],["paige","publishing"],["publishing","january"],["january","ivan"],["ivan","holiday"],["press","publishing"],["publishing","july"],["july","ivan"],["ivan","holiday"],["press","publishing"],["publishing","april"],["april","ivan"],["ivan","holiday"],["press","publishing"],["publishing","july"],["july","george"],["nightclubouncers","risk"],["university","press"],["press","may"],["may","jason"],["door","supervisors"],["supervisors","course"],["course","book"],["book","national"],["national","door"],["door","supervisors"],["supervisors","qualification"],["january","stu"],["stu","armstrong"],["doorman","volume"],["volume","one"],["one","stu"],["stu","armstrong"],["doorman","vol"],["vol","stu"],["stu","armstrong"],["doorman","vol"],["vol","stu"],["stu","armstrong"],["bouncer","externalinks"],["externalinks","category"],["category","security"],["security","guards"],["guards","category"],["category","nightclubs"],["nightclubs","category"],["category","protective"],["protective","service"],["service","occupations"],["occupations","category"],["category","crime"],["crime","prevention"],["prevention","category"],["category","surveillance"]],"all_collocations":["file strip","strip clubouncer","clubouncer san","strip club","san francisco","francisco california","california bouncer","bouncer also","also known","doorman door","door supervisor","supervisor cooler","security guard","guard employed","bar establishment","establishment bars","bars nightclub","provide security","security check","check age","majority legal","legal age","substance intoxication","intoxication intoxicated","intoxicated persons","aggressive behavior","behavior non","non compliance","establishment rules","rules bouncers","often required","crowd size","size clientele","alcoholic beverage","beverage alcohol","alcohol consumption","consumption may","may make","make arguments","criminal gang","gang activity","united states","court costs","costs related","use oforce","loss found","found within","bar industry","many united","united states","states bouncers","often taken","similar problems","excessive force","many countries","countries federal","state governments","taken steps","requiring bouncers","training licensing","background check","check criminal","criminal records","records background","background check","increased awareness","criminal charges","led many","many bars","use communication","conflict resolution","resolution skills","however thearlier","thearlier history","occupation suggests","suggests thathe","thathe stereotype","rough tough","tough physical","many countries","cultures throughout","throughout history","history historical","historical references","references also","doorman function","ithe stereotypical","stereotypical task","modern bouncer","bouncer could","could atimes","relatively important","important position","position ancientimes","person allowing","greek myths","myths descended","seven doormen","doormen guarding","protect ing","illegal entry","sacred areas","share withe","withe modern","modern concept","bouncer though","described temple","temple servants","servants also","also serve","holy persons","administrative function","function istill","istill present","higher position","supervisor doormen","doormen bouncers","usually larger","larger persons","display great","great strength","position known","sometimes ejected","ejected unwanted","unwanted people","house whose","whose gate","term later","later become","low ranking","ranking clergy","clergy title","written approximately","powerful doorman","doorman bouncer","early christian","christian author","author living","living mainly","st century","semi legal","legal underworld","underworld amongst","cambridge ancient","ancient history","history volume","second edition","edition page","page cambridge","cambridge university","university press","press modern","modern times","late th","early th","th centuries","hired bouncers","protecthe saloon","saloon girls","word bouncer","first popularized","first published","immensely popular","popular author","th century","century especially","young people","widely quoted","chapter xiv","xiv entitled","article stated","stated thathe","thathe bouncer","merely thenglish","unknown article","article name","name london","london daily","daily news","news th","th century","century london","london daily","daily news","news thursday","thursday july","july via","dictionary th","th century","century file","file charleston","charleston j","j w","year jpg","left px","arizona saloon","bouncers earned","us western","western towns","high class","class brothels","brothels known","good houses","parlour houses","houses hired","hired bouncers","prevent patrons","payment good","good house","house style","style brothels","brothels considered","prostitutes working","saloons dance","dance halls","looked like","like respectable","respectable mansions","decorated parlours","game room","dance hall","security somewhere","every parlor","parlor house","wanto pay","protective presence","high class","class brothels","girls considered","lower class","class free","ladies god","old west","christine private","private homepage","days bouncers","bouncers would","would physically","physically remove","remove drinkers","keep buying","buying drinks","thus free","new patrons","slang term","term snake","snake room","saloon usually","usually twor","twor three","three steps","bar keeper","bouncer could","could slide","slide drunk","snake room","room logging","isabel j","madison via","late th","th century","prohibition bouncers","bouncers also","unusual role","attract business","business many","many saloons","saloons lured","lured customers","free lunch","lunch usually","usually well","well salted","inspire drinking","saloon bouncer","america history","history search","consensus drinking","mark edward","edward martin","martin james","james kirby","free press","press new","new york","late th","th century","century bouncers","small town","town dances","bars physically","main bar","one iowa","iowa town","many fights","court costs","first years","morgan township","township compiled","struck private","private homepage","maintain order","new york","coney island","bars cabarets","brothels huge","huge bouncers","roughly ejected","ejected anyone","loose rules","bloody fights","fights coney","coney island","island early","early history","private website","san diego","similarly rough","rough waterfront","waterfront areand","district called","bouncers worked","brothels prostitutes","prostitutes worked","worked athe","athe area","small rooms","rooms paying","morexpensive higher","higher class","class brothels","called parlour","parlour houses","best ofood","ofood andrink","andrink waserved","high class","class atmosphere","male patrons","patrons werexpected","act like","like gentlemen","said anything","bouncer made","made sure","red lights","lights went","san diego","san diego","diego history","history spring","spring volume","volume number","number th","th century","century bouncers","pre world","world war","united states","alsometimes used","ballroom dancing","often considered","could lead","patrons noto","noto dance","dance closer","great war","website accessed","hired bouncers","maintain order","aggressive patrons","oasis club","club operated","max cohen","cohen hired","lady bouncer","six foot","pennsylvania coal","coal fields","fields mickey","first asking","general direction","character known","machine gun","long time","time bouncer","bouncer athe","block hull","hull stephen","stephen stag","stag athe","athe moment","via google","doormen protected","protected venues","fights caused","potentially violent","violent groupsuch","movie cabaret","cabaret film","film cabaret","cabaret hitler","hitler surrounded","number oformer","christian weber","general christian","christian weber","group designated","protect party","party meetings","early nazi","nazi germany","underground jazz","jazz club","also hired","nazi party","party later","nazi regime","regime bouncers","bouncers also","also increasingly","increasingly barred","barred non","non german","german people","foreign workers","german dances","dance halls","halls file","bild berlin","der ohio","ohio barjpg","barjpg thumb","left px","ohio bar","berlin bouncers","bouncers alsoften","alsoften come","united kingdom","example long","long running","running series","fan groups","groups like","like sheffield","sheffield united","researchers bouncers","bouncers also","also known","criminal gangs","gangs especially","places like","like russia","russia hong","hong kong","bouncers may","may often","often belong","able toperate","hong kong","underground society","hong kong","kong stories","stories feature","feature journalism","media studies","studies centre","centre university","hong kong","kong may","may hong","hong kong","kong also","also features","somewhat unusual","unusual situation","prostitutes instead","hong kong","kong police","sex worker","fact reversed","written tell","books aboutheir","aboutheir experiences","male bouncers","club goers","ultimate hard","hard men","bouncers also","lightning rod","male customers","customers wanting","also started","academic interest","ethnography ethnographic","ethnographic studies","violent subculture","several english","english researchers","culture waseen","bouncer doorman","doorman inside","inside studies","studies research","research section","article get","get ready","duck winlow","winlow simon","simon hobbs","hobbs dick","dick lister","lister stuart","stuart hadfield","hadfield phillip","phillip british","british journal","pages accessed","accessed research","sociology outside","outside studies","studies file","file pawn","pawn stars","bouncer stands","stands outside","pawn shop","australian government","government study","violence stated","violent incidents","public drinking","drinking locations","interaction ofive","ofive factors","factors aggressive","aggressive bouncers","bouncers groups","male strangers","strangers low","low comfort","hot clubs","clubs high","high drunkenness","research indicated","violence prone","prone atmosphere","bars however","aggressive bouncers","bouncers especially","study stated","initiate fights","several occasions","occasions many","many seem","seem poorly","poorly trained","relate badly","assault people","reduce trouble","already hostile","aggressive situation","practice many","many bouncers","well managed","job autonomy","handle well","well australian","australian violence","violence contemporary","contemporary perspectives","perspectives pdf","heather australian","australian institute","criminology article","article responses","security staff","aggressive incidents","public settings","drug issues","issues examined","examined violent","violent incidents","incidents involving","involving crowd","crowd controllers","controllers bouncers","toronto ontario","ontario canada","study indicated","good responses","neutral response","bouncers responses","crowd controllers","controllers enhanced","violent finally","almost one","one third","incidents per","crowd controllers","controllers responses","controllers actions","actions involved","aggression harassment","behaviour security","security industry","industry amendment","amendment patron","patron protection","protection bill","bill inside","inside studies","studies file","file terry","bouncer doorman","doorman jpg","pub wearing","least one","one major","major ethnography","ethnography ethnographic","ethnographic study","british projecto","projecto study","study violent","violent subcultures","subcultures beyond","beyond studying","bouncer culture","group selected","suitable candidate","long term","term research","previously worked","bouncing work","new locality","locality get","get ready","duck winlow","winlow simon","simon hobbs","hobbs dick","dick lister","lister stuart","stuart hadfield","hadfield phillip","phillip british","british journal","page accessed","however attracted","criticism due","facthathe researcher","set aside","academic distance","distance would","accepted thathis","difficulto resolve","research methods","criminology wells","wells helen","graduate journal","social science","science vol","vol issue","issue accessed","accessed one","main ethical","ethical issues","group could","fully resolve","resolve thissue","use oforce","eventually became","became clear","constantly weighing","occupation violence","defining characteristic","culture created","created around","around violence","violent expectation","bouncing culture","attitudes also","also extended","recruitment process","typical job","job recruitment","also depended","depended heavily","previous familiarity","prospective bouncer","violence rather","required various","body language","also described","often expected","symbolic narratives","set bouncers","bouncers apart","limited withe","withe new","new bouncers","deep end","first place","place including","though informal","informal observation","british research","research projecthe","projecthe legally","legally required","required licensing","bouncer also","also found","excluded people","criminal convictions","unstable violent","violent personalities","personalities personality","behaviour file","bouncer athe","athe door","norway norwegian","norwegian club","club checking","checking customer","customer identification","proof age","age although","common stereotype","good club","club security","security staff","best bouncers","venue rules","rules bouncers","bouncers doormen","website accessed","accessed bouncers","rescue times","india may","communicate well","physical intervention","steady personality","preventhe bouncer","easily provoked","customers bouncers","bouncers also","also profit","good written","written communication","communication skills","often required","incident log","incident form","form well","well kept","kept incident","incident logs","criminal charges","later arise","incident however","however british","british research","research also","also indicates","major part","bothe group","group identity","job satisfaction","self image","employment income","income plays","job satisfaction","satisfaction bouncer","bouncer subculture","typical characteristic","public eye","eye get","get ready","duck winlow","winlow simon","simon hobbs","hobbs dick","dick lister","lister stuart","stuart hadfield","hadfield phillip","phillip british","british journal","page accessed","warrior cultures","general factors","enjoying work","bouncer also","also found","general prestige","bouncers even","different clubs","typical jobs","alsoften cited","cited get","get ready","duck winlow","winlow simon","simon hobbs","hobbs dick","dick lister","lister stuart","stuart hadfield","hadfield phillip","phillip british","british journal","pages accessed","researchas also","also indicated","indicated thathe","thathe decisions","decisions made","turn certain","certain customers","customers away","away athe","athe door","casual clothing","clothing face","face control","example often","often based","perception thathe","thathe person","fight compared","someone dressed","expensive attire","attire many","many similar","similar decisions","decisions taken","also described","experience rather","personality get","get ready","duck winlow","winlow simon","simon hobbs","hobbs dick","dick lister","lister stuart","stuart hadfield","hadfield phillip","phillip british","british journal","page accessed","accessed excessive","excessive force","force file","bouncer gives","signal movies","movies often","bouncers physically","physically throwing","throwing patrons","drunk customers","whichas led","righto use","use physical","physical force","force freely","freely however","however many","many countries","countries bouncers","legal authority","use physical","physical force","force freely","freely thany","civilian meaning","oforce used","self defense","aggressive patrons","police arrive","arrive lawsuits","injuries occur","occur even","using aggressive","aggressive language","court costs","costs related","use oforce","loss found","found within","liquor licensees","michigan licensed","licensed beverage","beverage association","website accessed","using excessive","excessive force","canada substantial","substantial costs","costs may","patrons though","depends heavily","venues due","turning many","many establishments","using former","former police","police officers","hiring private","private firms","pub club","club patrons","australian wednesday","wednesday february","february according","statistical research","canada bouncers","face physical","physical violence","urban area","area police","police officers","research also","also found","found thathe","thathe likelihood","encounters increased","statistical significance","significance withe","withe number","surveillance book","book excerpt","canadian review","policing research","western countries","withe new","block vin","vin diesel","diesel vin","vin diesel","diesel interview","interview via","accessed bouncers","bouncers may","may carry","baton law","law enforcement","enforcement expandable","expandable baton","baton expandable","personal protection","protection baton","company website","website accessed","accessed buthey","buthey may","legal righto","righto carry","weapon even","would prefer","file pawn","pawn stars","stars exterior","bouncer wearing","controlling access","well known","known pawn","pawn shop","shop use","use oforce","oforce training","training programs","programs teach","teach bouncers","bouncers ways","avoid using","using force","institute policies","physical contact","bouncers call","call police","police however","reflect badly","venue upon","upon renewal","liquor license","license liquor","liquor licence","licence another","another strategy","strategy used","hire smaller","smaller less","less threatening","female bouncers","bouncers may","may better","better able","impressive bouncers","alsoften challenged","aggressive males","males wanting","nightclubouncers tell","velvet rope","boston phoenix","phoenix via","website accessed","accessed large","bouncers whilst","whilst providing","strong security","security may","may also","also drive","drive customers","customers away","morelaxed environment","addition female","female security","security staff","staff apart","female patrons","entering women","illegal activities","also considered","better able","aggressive women","example women","women comprise","comprise almost","security industry","increasingly work","well using","situations mate","abstract new","new york","york times","times wednesday","wednesday april","april nearly","nearly one","also women","women withe","withe uk","licensing act","act giving","employ female","female door","door staff","credited withaving","withaving opened","women wanto","wanto join","october via","however female","female bouncers","many countriesuch","punjab india","india punjab","first female","female bouncers","female bouncers","india monday","monday july","july punjab","first female","female bouncers","bouncers lose","jobs dna","dna india","india thursday","many countries","bouncer must","background check","check lacking","criminal record","gain employment","employment within","security crowd","crowd control","control sector","countries bouncers","bouncers may","first aid","aid alcohol","alcohol distribution","distribution crowd","crowd control","fire safety","canada bouncers","righto use","use reasonable","reasonable force","aggressive patrons","patrons firsthe","firsthe patron","patron must","use reasonable","reasonable force","court cases","commercial providers","vancouver april","reasonable force","perfectly acceptable","premises however","reasonably believe","believe thathe","thathe conduct","patron puts","self defence","british columbia","columbia door","door staff","staff security","security bouncers","bouncers arequired","become certified","public safety","general office","course called","basic security","security training","hour program","covers law","law customer","customer service","issue related","security operation","alberta bar","nightclub security","security staff","new government","government run","run training","training course","correct bouncer","bouncer behaviour","six hour","hour protect","protect course","subjects teach","teach staff","identify conflicts","become violent","situations without","force bouncers","bouncers take","take course","edmonton journal","journal saturday","saturday february","ontario courts","must ensure","serve alcohol","would apparently","alcohol intoxication","positive steps","protect patrons","intoxication regarding","second requirement","protecting patrons","law holds","intoxication bars","held liable","october newsletter","smart serve","serve ontario","ontario canada","ontario bartenders","smart serve","serve training","training program","smart serve","serve program","also recommended","potentially intoxicated","bouncers coat","coat check","check staff","smart serve","serve certification","certification program","program encourages","encourages bars","keep incident","incident reporting","reporting logs","incident gets","court withe","withe august","august private","private security","investigative services","services act","act ontario","ontario law","law also","industry workers","workers including","including bouncers","licensed private","private investigators","security guards","guards licensing","ontario ministry","community safety","website accessed","accessed italy","law defines","defines bouncers","law october","least years","preventive clinical","clinical analysis","analysis mental","intentional crimes","least lower","lower high","high school","school diploma","diploma follow","training course","course bouncers","bouncers must","license new","new zealand","zealand inew","inew zealand","bouncers arequired","security work","security checks","knows new","new zealand","zealand law","prevent security","security officers","officers going","using excessive","excessive force","background check","day national","national skills","skills recognition","recognition system","system course","security staff","staff however","however many","professional security","security companies","larger venues","venues witheir","dedicated security","security staff","noted thathe","thathe course","specific requirements","additional training","new paper","paper friday","friday february","special security","security officers","officers referred","limited policing","policing duties","use oforce","oforce monopoly","monopoly withe","withe police","report crime","swedish police","police authority","enforce public","public order","resources permanently","enforce public","public order","physically remove","public order","reasonable amount","amount oforce","otherwise take","must go","physical tests","language test","interview board","two week","week training","training program","teaches behaviour","behaviour conflict","conflict management","management criminalaw","criminalaw physical","physical intervention","first aid","aid equal","equal opportunities","arrest procedures","certified every","every three","three years","areither employed","private security","security company","commonly work","shopping malls","malls hospitals","hospitals public","public transportation","nightclub owners","foremost loyalty","loyalty lies","lies withe","withe police","police manage","football matches","high risk","risk football","aftereceiving special","special training","training united","united kingdom","uk door","door supervisors","termed must","must hold","security industry","industry authority","door supervisor","supervisor licence","licence takes","current changes","st january","includes issuesuch","behaviour conflict","conflict management","management civil","criminalaw search","arrest procedures","procedures drug","drug awareness","awareness recording","crime scene","scene preservation","preservation licensing","licensing law","law equal","equal opportunities","work physical","physical intervention","emergency procedures","procedures get","get licensed","licensing criteria","security industry","industry authority","authority great","great britain","britain accessed","accessed licenses","licenses must","renewed every","every three","three years","years one","one current","current provider","british institute","awarding body","supervisors must","must wear","blue plastic","plastic licence","licence often","often worn","upper arm","arm whilst","reforms includes","coalition government","government intended","overall grounds","cost despite","via licence","licence payments","financial burden","individuals alike","industry sees","step fearing","organised criminal","currently regulated","regulated industry","industry republic","potential doormen","doormen bouncers","bouncers must","must complete","level course","door security","security procedures","psa license","license private","private security","security authority","license subsequently","past convictions","security industry","license issued","pubs clubs","event security","event security","security united","united states","states file","avenue b","theast village","theast village","village manhattan","manhattan east","east village","village requirements","bouncers vary","california senate","senate bill","bill requires","security guard","registered withe","withe state","california department","consumer affairs","affairs bureau","investigative services","guards must","must also","also complete","criminal background","background check","check including","california department","federal bureau","must undertake","skills training","training course","security guards","security licence","courses allow","qualified security","security personnel","upon completion","training new","new security","security guard","guard training","training regulation","california department","consumer affairs","affairs website","website accessed","accessed new","new york","york inew","inew york","york state","bar owner","bouncer position","article general","general business","business law","law bars","hire bouncers","bouncers without","proper license","license new","new york","york state","state law","watch guard","patrol agency","supply security","security guards","guards bouncers","bars last","last call","falls blog","blog entry","village voice","notable bouncers","bouncers pope","pope francis","francis current","current pope","buenos aires","aires bar","studies harry","francis things","daily telegraph","telegraph march","former foreign","foreign minister","party worked","student club","university justin","current prime","prime minister","canadand leader","liberal party","party worked","whistler village","undergraduate studies","accessed jesse","jesse brand","actor former","former american","american football","football player","player worked","fort worth","worth texas","capone chicago","chicago based","bartender bouncer","early life","life history","history files","capone chicago","chicago history","history museum","museum website","website accessed","accessed vin","vin diesel","diesel american","american actor","vin diesel","diesel pseudonym","bouncer carlton","english author","author west","west ham","ham supporter","supporter inter","inter city","occasional actor","actor former","former criminal","criminal dave","professional wrestler","actor worked","nightclubs prior","wrestling career","official biography","pierre canadian","canadian mixed","mixed martial","martial artist","champion former","former bouncer","american actor","actor former","former bouncer","twice winner","bouncer competition","website accessed","accessed vincent","american actor","law order","order criminal","criminal intent","intent cop","new york","york times","times via","website accessed","accessed michael","michael clarke","clarke duncan","duncan american","american actor","actor former","former bouncer","bouncer also","also worked","various celebrities","interviewith michael","michael clarke","clarke duncan","duncan accessed","accessed norman","norman foster","foster british","british architect","lords worked","night clubouncer","architecture athe","athe university","manchester james","american actor","actor worked","campus pub","rutgers university","university james","warrior animal","animal joseph","professional wrestler","wrestler worked","website accessed","former championship","championship winning","winning amateur","controlled many","many pubs","notorious murder","swedish actor","actor director","martial artist","british bare","also worked","website accessed","new york","york city","city nightclub","palladium new","new york","york city","also ran","roving cabaret","american actor","writer glenn","glenn ross","ross northern","northern irish","irish bouncer","gentle giant","news letter","letter belfast","belfast northern","northern ireland","ireland via","dutch mixed","mixed martial","martial artist","american actor","professional wrestler","wrestler worked","rick rude","true class","class acthe","rick rude","true class","class act","act rob","rob terry","terry british","british professional","professional wrestler","wrestler geoff","geoff thompson","thompson martial","martial arts","arts geoff","geoff thompson","thompson british","british bouncer","book watch","back geoff","geoff thompson","management company","company website","website accessed","accessed james","james wade","martial arts","arts james","james wade","american cooler","canadian bouncer","bouncer started","halifax nova","nova scotia","athe palace","palace cabaret","moon cabaret","cabaret became","strip clubs","biker clubs","southern usa","usa martial","martial artist","artist david","big bank","sugar hill","hill gang","gang worked","various clubs","started recording","wrestler worked","strip clubouncer","detroit frank","frank martin","martin basketball","basketball frank","frank martin","martin head","head men","basketball coach","south carolina","miami area","area nightclub","college student","florida international","international university","full time","time coaching","similar function","function throwing","australian species","massive blunt","little use","prey capture","capture techniques","species normally","normally engages","engages instead","spend much","time guarding","nest opening","foreign ants","ants venture","venture close","throw back","significant distance","defense behaviour","thoughto also","also protecthe","protecthe guard","chemical injury","might sustain","direct battle","bouncer defense","social control","border security","security bouncers","various non","north african","african countries","countries like","like morocco","turn away","severe ill","ill treatment","reach europe","request right","asylum analogous","clubouncer turning","turning away","away undesirable","undesirable customers","social norms","norms back","though depending","states may","heavy handed","security guard","guard security","security industry","industry authority","authority uk","uk regulatory","regulatory agency","popular culture","canada canadian","canadian television","television series","video game","stage play","hull truck","truck theatre","england road","road house","house film","film road","road house","house film","film starring","starring patrick","small town","town bar","animated band","band studio","les norton","robert g","furthereading jamie","old school","school new","new school","school guide","supervisors new","new breed","breed publishing","publishing august","august lee","lee morrison","morrison safe","complete guide","door supervisors","arnold february","february lee","lee morrison","close nothing","nothing personal","personal practical","practical self","self protection","door security","security staff","staff apex","apex publishing","door milo","milo books","books february","february robin","robin barratt","doorman diverse","diverse publications","publications ltd","ltd june","june robin","robin barratt","barratt bouncers","mainstream publishing","publishing march","march robin","robin barratt","barratt respect","life apex","apex publishing","publishing june","june ivan","ivan holiday","bible turner","turner paige","paige publishing","publishing january","january ivan","ivan holiday","press publishing","publishing july","july ivan","ivan holiday","press publishing","publishing april","april ivan","ivan holiday","press publishing","publishing july","july george","nightclubouncers risk","university press","press may","may jason","door supervisors","supervisors course","course book","book national","national door","door supervisors","supervisors qualification","january stu","stu armstrong","doorman volume","volume one","one stu","stu armstrong","doorman vol","vol stu","stu armstrong","doorman vol","vol stu","stu armstrong","bouncer externalinks","externalinks category","category security","security guards","guards category","category nightclubs","nightclubs category","category protective","protective service","service occupations","occupations category","category crime","crime prevention","prevention category","category surveillance"],"new_description":"file strip clubouncer san thumb upright bouncer front strip club san_francisco_california bouncer also_known doorman door supervisor cooler type security guard employed venuesuch bar_establishment_bars nightclub concert bouncer duties provide security check age majority legal age substance intoxication intoxicated persons deal aggressive behavior non compliance statutory establishment rules bouncers often required crowd size clientele alcoholic_beverage alcohol consumption may make arguments fights possibility threat presence criminal gang activity high united_states court costs related use oforce bouncers highest loss found within bar industry many united_states bouncers often taken court countries similar problems excessive force many_countries federal state governments taken steps industry requiring bouncers training licensing background check criminal records background check increased awareness risks lawsuits criminal charges led many bars venues train bouncers use communication conflict resolution skills force however thearlier history occupation suggests thathe stereotype bouncers rough tough physical indeed case many_countries cultures throughout history historical references also doorman function guarding place selecting ithe stereotypical task modern bouncer could atimes honorific evolve relatively important position ancientimes significance doorman person allowing entry found number myths later greek myths descended including overcoming seven doormen guarding gates underworld chronicles old temple described number duties protect ing temple theft illegal entry sacred areas order functions share withe modern concept bouncer though described temple servants also_serve holy persons administrators noted administrative function istill present today bouncing higher position supervisor doormen bouncers usually larger persons display great strength size romans position known initially slave guarded door sometimes ejected unwanted people house whose gate guarded term later become low ranking clergy title play play written approximately mentions large powerful doorman bouncer get visitor leave early christian author living mainly st_century reporting casual christians noted bouncers counted part semi legal underworld amongst de via cambridge ancient history volume second edition page cambridge university_press modern_times late_th early_th centuries keepers brothel hired bouncers remove violent patrons protecthe saloon girls prostitutes word bouncer first popularized novel horatio called young first_published immensely popular author th_century especially young_people books widely quoted chapter xiv entitled boy thrown restaurant money pay dinner article stated_thathe bouncer merely thenglish liberty license bouncer gay unknown article name london daily_news th_century london daily_news thursday july via dictionary th_century file charleston j w year jpg thumb left_px arizona saloon thera bouncers earned reputation us western towns high class brothels known good houses parlour houses hired bouncers security prevent patrons payment good house style brothels considered cream crop prostitutes working worked saloons dance halls theatres best looked like respectable mansions decorated parlours game room dance hall security somewhere every parlor house always bouncer giant man stayed handle customer rough one girls wanto pay bill protective presence bouncers high class brothels one reasons girls considered lower class free lacked shepherds ladies god ladies old west christine private homepage wisconsin days bouncers would physically remove drinkers drunk keep buying drinks thus free space bar new patrons slang_term snake room used describe room saloon usually twor three steps bar keeper bouncer could slide drunk head doors snake room logging words isabel j madison via late_th century prohibition bouncers also unusual role protecting saloon attract business many saloons lured customers offers free_lunch usually well salted inspire drinking saloon bouncer generally hand discourage drinking america history search consensus drinking war mark edward martin james kirby free press new_york late_th century bouncers small_town dances bars physically removed without lawsuits main bar_one iowa town many many fights settled court costs bouncers bar iowa first_years morgan township compiled l struck private homepage bouncers used maintain order part new_york coney_island filled groups wooden bars cabarets hotels brothels huge bouncers venues vice roughly ejected anyone violated loose rules engaging pick bloody fights coney_island early history private website san_diego similarly rough waterfront areand district called bouncers worked door brothels prostitutes worked athe area houses small rooms paying fee usually bouncer brothel morexpensive higher class brothels called parlour houses run best ofood andrink waserved maintain high class atmosphere male patrons werexpected act like gentlemen customer said anything line wasked leave bouncer made sure red lights went san_diego journal san_diego history spring volume number th_century bouncers pre world_war united_states alsometimes used ballroom dancing often considered activity could lead conduct dancers close venues bouncers patrons noto dance closer inches partners bouncers tended consist shoulder first_americand industry great war website_accessed bars parts baltimore hired bouncers maintain order aggressive patrons oasis club operated max cohen hired lady bouncer name mickey six foot pennsylvania coal fields mickey always people first asking lived throwing general direction character known machine gun long_time bouncer athe block hull stephen stag athe_moment via google germany early doormen protected venues fights caused nazis potentially violent groupsuch scenes movie cabaret film cabaret hitler surrounded number oformer christian weber general christian weber originated group designated protect party meetings early nazi germany bouncers underground jazz_club also hired screen nazi jazz considered form music nazi party later nazi regime bouncers also increasingly barred non german people foreign workers public german dances dance halls file bild berlin der ohio barjpg thumb left_px doorman ohio bar berlin bouncers alsoften come conflict football football due tendency groups congregate pubs bars games united_kingdom example long running series fan groups like sheffield united groups bouncers described researchers bouncers also_known associated criminal gangs especially places like russia hong_kong japan bouncers may often belong groups pay crime able toperate hong_kong underground society connected attacks bouncers known victim hong_kong stories feature journalism media studies centre university hong_kong may hong_kong also features somewhat unusual situation bouncers known work prostitutes instead hong_kong police noted due letter law sometimes charge bouncer illegally women usually situation sex_worker fact reversed number bouncers written tell books aboutheir experiences door indicate male bouncers club goers ultimate hard men athe_time bouncers also lightning rod aggression part male customers wanting prove bouncing also started attract academic interest part ethnography ethnographic studies violent subculture bouncers selected one several english researchers culture waseen violence well group increasingly especially common liberal bouncer_doorman inside studies research section article get ready duck winlow simon hobbs dick lister stuart hadfield phillip british journal criminology pages accessed research sociology outside studies file pawn stars thumb right px bouncer stands outside pawn shop thearly australian government study violence stated violent incidents public drinking locations caused interaction ofive factors aggressive bouncers groups male strangers low comfort hot clubs high high drunkenness research indicated bouncers play large role expected creation aggressive violence prone atmosphere bars however study show aggressive bouncers especially arbitrary petty manner study stated bouncers observed initiate fights encourage several occasions many seem poorly trained witheir relate badly groups male appear regard employment giving licence assault people may management model supervision patrons play fact reduce trouble already hostile aggressive situation practice many bouncers well managed work appear given job autonomy thathey cannot handle well australian violence contemporary perspectives pdf duncan peter heather australian institute criminology article responses security staff aggressive incidents public settings journal drug issues examined violent incidents involving crowd controllers bouncers occurred bars toronto ontario_canada study indicated incidents bouncers good responses incidents bouncers neutral response incidents bouncers responses rated bad crowd controllers enhanced likelihood violence violent finally almost one third incidents per crowd controllers responses rated ugly controllers actions involved aggression harassment patrons behaviour security industry amendment patron protection bill inside studies file terry bouncer_doorman jpg thumb right px bouncer pub wearing distinctive shirt least_one major ethnography ethnographic study bouncing within part british projecto study violent subcultures beyond studying bouncer culture outside group selected suitable candidate long_term research man previously worked bouncer becoming academic withe required time bouncing work new locality get ready duck winlow simon hobbs dick lister stuart hadfield phillip british journal criminology page accessed study however attracted criticism due facthathe researcher duties bouncer required set aside academic distance would risk losing though accepted thathis might difficulto resolve place research methods criminology wells helen graduate journal social science vol issue accessed one main ethical issues research participation researcher violence degree would allowed participate group could fully resolve thissue would able gain trust peers away use oforce part study eventually became clear bouncers similarly constantly weighing limits uses participation violence found instead part occupation violence defining characteristic culture created around violence violent expectation bouncing culture attitudes also extended recruitment process mainly word mouth opposed typical job recruitment also depended heavily previous familiarity violence extend prospective bouncer reputation violence rather perception needed required various elementsuch body language heads also described often expected entry bouncing part symbolic narratives set bouncers apart work job described limited withe new bouncers thrown deep end accepted job first place including though informal observation behaviour commonplace case british research projecthe legally required licensing bouncer also_found bexpected employers job excluded people criminal convictions kept unstable violent personalities personality behaviour file thumb right bouncer athe door norway norwegian club checking customer identification proof age although common stereotype bouncers good club security staff physical size best bouncers anyone talk people venue rules bouncers doormen website_accessed bouncers rescue times india may ability judge communicate well people reduce need physical intervention steady personality preventhe bouncer easily provoked customers bouncers also profit good written communication skills often required document incident log using incident form well kept incident logs potential criminal charges lawsuits later arise incident however british research also indicates major part bothe group identity job satisfaction bouncers related self image strongly person capable dealing violence employment income plays job satisfaction bouncer subculture influenced perceptions honour typical characteristic groups public eye get ready duck winlow simon hobbs dick lister stuart hadfield phillip british journal criminology page accessed well warrior cultures general factors enjoying work bouncer also_found general prestige bouncers even different clubs well ability work moment outside typical jobs alsoften cited get ready duck winlow simon hobbs dick lister stuart hadfield phillip british journal criminology pages accessed researchas also indicated thathe decisions made bouncers often basis decision turn certain customers away athe door casual clothing face control example often based perception thathe person willing fight compared someone dressed expensive attire many similar decisions taken bouncer course night also described based experience rather personality get ready duck winlow simon hobbs dick lister stuart hadfield phillip british journal criminology page accessed excessive force file thumb right px bouncer gives signal movies often bouncers physically throwing patrons clubs drunk customers whichas led popular bouncers righto use physical force freely however_many_countries bouncers legal authority use physical force freely thany civilian meaning oforce used self defense drunk aggressive patrons leave venue patron committed offence police arrive lawsuits possible injuries occur even patron drunk using aggressive language court costs related use oforce highest loss found within industry security liquor licensees michigan licensed beverage association website_accessed bars sued often using excessive force canada substantial costs may incurred violence patrons though depends heavily laws customs country australia number complaints lawsuits venues due behaviour bouncers credited turning many establishments using former police officers head instead hiring private firms bouncers pub club patrons australian wednesday february according statistical research canada bouncers likely face physical violence work urban area police officers research also_found thathe likelihood encounters increased statistical significance withe number years bouncer worked security surveillance book excerpt policing nightclub george canadian review policing research popular bouncers western countries normally betty withe new block vin diesel vin diesel interview via accessed bouncers may carry baton law_enforcement expandable baton expandable personal protection baton course company website_accessed buthey may legal righto carry weapon even would prefer file pawn stars exterior thumb right px bouncer wearing black controlling access well_known pawn shop use oforce training programs teach bouncers ways avoid using force explain oforce considered bars gone far institute policies physical contact bouncers instructed ask drunk patron leave patron bouncers call police however police called frequently reflect badly venue upon renewal liquor license liquor licence another strategy used bars hire smaller less threatening female bouncers may better able conflicts large bouncers impressive bouncers supposed supervise alsoften challenged aggressive males wanting prove nightclubouncers tell tales behind velvet rope boston phoenix via website_accessed large bouncers whilst providing appearance strong security may_also drive customers away cases morelaxed environment desired addition female security staff apart fewer female patrons drugs weapons entering women check illegal activities also_considered better able deal drunk aggressive women australia example women comprise almost security industry increasingly work door well using chat friendly firm resolve situations mate call bouncers abstract new_york times wednesday april nearly one britain nightclubouncers also women withe uk licensing act giving authorities power venue licence employ female door staff credited withaving opened door women enter profession women wanto join club october via however female bouncers still many_countriesuch india celebrities punjab india punjab first female bouncers soon accusations behaviour female bouncers india monday july punjab first female bouncers lose jobs dna india thursday training many_countries bouncer must licensed background check lacking criminal record gain employment within security crowd control sector countries bouncers may required skills certification first_aid alcohol distribution crowd control fire safety canada bouncers righto use reasonable force intoxicated aggressive patrons firsthe patron must asked leave premises patron leave bouncer use reasonable force patron upheld number court cases commercial providers alcohol lorne wallace vancouver april definition reasonable force perfectly acceptable bouncer grab patron arm remove patron premises however situations reasonably believe thathe conduct patron puts danger harm patron force necessary self defence british_columbia door staff security bouncers arequired become certified ministry public safety general office course called basic security training hour program covers law customer_service issue related security operation alberta bar nightclub security staff take new government run training course correct bouncer behaviour skills thend six hour protect course among subjects teach staff identify conflicts become violent situations without force bouncers take course edmonton journal saturday february ontario courts ruled tavern care patrons must ensure serve alcohol would apparently increase patron alcohol intoxication positive steps protect patrons others dangers intoxication regarding second requirement protecting patrons law holds customers cannot premises would danger due patron intoxication bars held liable customer know know risk injury know october newsletter smart serve ontario_canada ontario bartenders servers completed smart serve training program teaches signs intoxication smart serve program also recommended staff bars contact potentially intoxicated bouncers coat check staff valets smart serve certification program encourages bars keep incident reporting logs use evidence incident gets court withe august private security investigative services act ontario law also industry workers including bouncers licensed private investigators security guards licensing ontario ministry community safety website_accessed italy law defines bouncers subsidiary operator must specific art law october g least years alcohol drugs preventive clinical analysis mental physical convicted intentional crimes least lower high_school diploma follow training course bouncers must ownership type valid license new_zealand inew_zealand bouncers arequired certificate security work person police cleared security checks well courts show person job knows new_zealand law prevent security officers going court using excessive force assault bouncers undergo background check attend day national skills recognition system course security staff however_many professional security companies larger venues witheir dedicated security staff noted_thathe course insufficient specific requirements bouncer provide additional training bouncers wearing black new paper friday february sweden special security officers referred limited policing duties use oforce monopoly withe police thus less police report crime duty trained swedish police authority maintain enforce public order venues areas police cannot resources permanently enforce public order officers powers citizen arrest physically remove disturb pose immediate public order safety using reasonable amount oforce also otherwise take drunk turn police asoon possible recruited police must go physical tests language test interview board going two week training program teaches behaviour conflict management criminalaw physical intervention use first_aid equal opportunities arrest procedures certified every three_years areither employed private security company g etc commonly work shopping_malls hospitals public_transportation employed bar nightclub owners first foremost loyalty lies withe police police manage supervise field also_used police football matches high risk football aftereceiving special training united_kingdom uk door supervisors termed must hold licence security industry authority training door supervisor licence takes current changes implemented st january includes issuesuch behaviour conflict management civil criminalaw search arrest procedures drug awareness recording incidents crime scene preservation licensing law equal opportunities health safety work physical intervention emergency procedures get licensed licensing criteria security industry authority great_britain accessed licenses must renewed every three_years one current provider training british institute awarding body supervisors must wear blue plastic licence often worn upper arm whilst duty uk reforms includes many cameron coalition government intended ostensibly overall grounds cost despite essentially via licence payments may financial burden employers individuals alike industry sees step fearing return organised criminal currently regulated industry republic ireland republic ireland potential doormen bouncers must complete level course door security procedures allows apply psa license private security authority psa applicants issuing license subsequently past convictions working security industry license issued psa holder license work pubs clubs event security psa requires licence work event security united_states file walker avenue b theast village thumb bouncer bar hired theast village manhattan east village requirements bouncers vary state state somexamples california california senate bill requires bouncer security guard registered withe state california department consumer affairs bureau security investigative services guards must_also complete criminal background check including california department justice federal bureau investigation must undertake skills training course security guards security licence courses allow qualified security personnel carry upon completion training new security guard training regulation california department consumer affairs website_accessed new_york inew_york state illegal bar owner hire bouncer position article general business law bars nightclubs allowed hire bouncers without proper license new_york state law private watch guard patrol agency supply security guards bouncers bars last call falls blog entry village voice notable bouncers pope francis current pope worked bouncer buenos_aires bar beginning studies harry francis things know daily_telegraph march former foreign minister israel leader israel party worked bouncer student club jerusalem histudies university justin current prime_minister canadand leader liberal party worked bouncer whistler village undergraduate studies accessed jesse brand actor former american football player worked bouncer fort_worth texas capone chicago based worked bartender bouncer early_life history_files capone chicago history museum website_accessed vin diesel american actor created vin diesel pseudonym protect anonymity working bouncer carlton english author west ham supporter inter city occasional actor former criminal dave professional wrestler actor worked bouncer washington nightclubs prior wrestling career official biography accessed pierre canadian mixed martial artist champion former bouncer american actor former bouncer twice winner america bouncer competition biography website_accessed vincent american actor law order criminal intent cop know stop new_york times via website_accessed michael clarke duncan american actor former bouncer also worked various celebrities bouncer interviewith michael clarke duncan accessed norman foster british architect member house lords worked night_clubouncer architecture athe_university manchester james american actor worked bouncer campus pub studying rutgers university james bio retrieved warrior animal joseph professional wrestler worked bouncer website_accessed graham former championship winning amateur controlled many_pubs nightclubs upon notorious murder swedish actor director martial artist british bare boxing champion also worked website_accessed doorman new_york city nightclub nightclub studio palladium new_york city also ran roving cabaret called american actor writer glenn ross northern irish bouncer strength glenn gentle giant news letter belfast northern_ireland via accessed dutch mixed martial artist patrick american actor rude professional wrestler worked bouncer accessed articles one story rick rude true class acthe one story rick rude true class act rob terry british professional wrestler geoff thompson martial arts geoff thompson british bouncer author book watch back geoff thompson management company website_accessed james wade martial arts james wade american cooler canadian bouncer started halifax nova_scotia athe palace cabaret moon cabaret became specialist strip clubs biker clubs southern usa martial artist david creator game big bank member sugar hill gang worked bouncer various clubs bronx started recording wrestler worked strip clubouncer detroit frank martin basketball frank martin head men basketball coach south_carolina bouncer miami area nightclub college student florida international university attention full_time coaching subjected duty group men ejected fighting types species sub called bouncer performs similar function throwing outside fellows australian species ants massive blunt insect jaws little use prey capture techniques trap species normally engages instead spend much time guarding nest opening jaws foreign ants venture close force throw back significant distance defense behaviour thoughto also protecthe guard physical chemical injury might sustain direct battle bouncer defense ants f david journal volume page social control critics noted union job border security bouncers various non north african countries like morocco libya turn away often severe ill treatment reach europe request right asylum analogous clubouncer turning away undesirable customers similar social state form bouncer people conform social norms back supposed though depending society states may much heavy handed proactive also general security guard security industry authority uk regulatory agency popular_culture television canada canadian television_series lives bouncers montreal bouncer beat video_game released square bouncers stage play john hull truck theatre group nightclubouncers north england road house film road house film starring patrick cooler small_town bar worked bouncer disney take house mouse mickey house ode bouncer song animated band studio les norton series books robert g furthereading jamie old_school new school guide supervisors new breed publishing august lee morrison safe door complete guide door supervisors arnold february lee morrison close nothing personal practical self protection door security staff apex publishing barratt doors life door milo books february robin barratt doorman diverse publications ltd june robin barratt bouncers mainstream publishing march robin barratt respect reputation doors prison life apex publishing june ivan holiday bouncer bible turner paige publishing january ivan holiday cooler press_publishing july ivan holiday sun art bouncing press_publishing april ivan holiday bouncer bible edition press_publishing july george nightclubouncers risk spectacle consumption queen university_press may jason door supervisors course book national door supervisors qualification january stu armstrong diaries doorman volume one stu armstrong diaries doorman vol stu armstrong diaries doorman vol stu armstrong scott wanto bouncer externalinks_category security guards category_nightclubs_category protective service occupations_category crime prevention category surveillance"},{"title":"Bradshaw's Guide","description":"image bradshaws illustrated hand book for travellers in belgium coverpng thumb right bradshaw s illustrated hand book for travellers in belgium image bradshaws continental railway guide coverpng thumb right bradshaw s continental railway guide image bradshaws handbook for tourists in great britain and irelandpng thumb right bradshaw s handbook for tourists in great britain and ireland bradshaw s was a series of railway public transportimetable timetables and travel guide book s published by wj adams of london george bradshaw initiated the series in after his death in the bradshaw s range of titles continued untilist of bradshaw s by geographicoverage british isles s index s section berks buckingham wilts dorset devon cornwall somerset gloucester the south wales districts oxford warwick salop chester flint carnarvon angleseand through ireland section london and north westernorth stafford lancashire and yorkshire western section preston lancaster and carlisle ayrshire caledoniand scotch railways index section kent sussex hants dorset devon the channel islands and the isle of wight index section london and southern england s section bradshaw s through routes to the capitals of the world and overland guide to india persiand the far east a handbook of indian colonial and foreign travel bradshaw s guide to victoriaustralia germany and austria index index ed index index list of bradshaw s by date of publication s s s index s category travel guide books category series of books category publications established in category passengerail transport category tourism in europe category tourism in the united kingdom","main_words":["image","bradshaws","illustrated","hand_book","travellers","belgium","coverpng_thumb","right","bradshaw","illustrated","hand_book","travellers","belgium","image","bradshaws","continental","railway","guide","coverpng_thumb","right","bradshaw","continental","railway","guide","image","bradshaws","handbook","tourists","great_britain","thumb","right","bradshaw","handbook","tourists","great_britain","ireland","bradshaw","series","railway","public","timetables","travel_guide_book","published","adams","london","initiated","series","death","bradshaw","range","titles","continued","bradshaw","geographicoverage","british_isles","index","section","dorset","devon","cornwall","somerset","gloucester","south_wales","districts","oxford","warwick","chester","flint","ireland","section","london","north","lancashire","yorkshire","western","section","preston","lancaster","carlisle","ayrshire","scotch","railways","index","section","kent","sussex","dorset","devon","channel","islands","isle","wight","index","section","london","southern","england","section","bradshaw","routes","capitals","world","overland","guide","india","far","east","handbook","indian","colonial","foreign","travel","bradshaw","guide","victoriaustralia","germany","austria","index_index","list","bradshaw","date","publication","index","category_travel_guide_books","category_series","books_category","publications_established","category_transport","category_tourism","europe_category_tourism","united_kingdom"],"clean_bigrams":[["image","bradshaws"],["bradshaws","illustrated"],["illustrated","hand"],["hand","book"],["belgium","coverpng"],["coverpng","thumb"],["thumb","right"],["right","bradshaw"],["illustrated","hand"],["hand","book"],["belgium","image"],["image","bradshaws"],["bradshaws","continental"],["continental","railway"],["railway","guide"],["guide","coverpng"],["coverpng","thumb"],["thumb","right"],["right","bradshaw"],["continental","railway"],["railway","guide"],["guide","image"],["image","bradshaws"],["bradshaws","handbook"],["great","britain"],["thumb","right"],["right","bradshaw"],["great","britain"],["ireland","bradshaw"],["railway","public"],["travel","guide"],["guide","book"],["london","george"],["george","bradshaw"],["bradshaw","initiated"],["titles","continued"],["geographicoverage","british"],["british","isles"],["index","section"],["dorset","devon"],["devon","cornwall"],["cornwall","somerset"],["somerset","gloucester"],["south","wales"],["wales","districts"],["districts","oxford"],["oxford","warwick"],["chester","flint"],["ireland","section"],["section","london"],["yorkshire","western"],["western","section"],["section","preston"],["preston","lancaster"],["carlisle","ayrshire"],["scotch","railways"],["railways","index"],["index","section"],["section","kent"],["kent","sussex"],["dorset","devon"],["channel","islands"],["wight","index"],["index","section"],["section","london"],["southern","england"],["section","bradshaw"],["overland","guide"],["far","east"],["indian","colonial"],["foreign","travel"],["travel","bradshaw"],["victoriaustralia","germany"],["austria","index"],["index","index"],["index","ed"],["ed","index"],["index","index"],["index","list"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["transport","category"],["category","tourism"],["europe","category"],["category","tourism"],["united","kingdom"]],"all_collocations":["image bradshaws","bradshaws illustrated","illustrated hand","hand book","belgium coverpng","coverpng thumb","right bradshaw","illustrated hand","hand book","belgium image","image bradshaws","bradshaws continental","continental railway","railway guide","guide coverpng","coverpng thumb","right bradshaw","continental railway","railway guide","guide image","image bradshaws","bradshaws handbook","great britain","right bradshaw","great britain","ireland bradshaw","railway public","travel guide","guide book","london george","george bradshaw","bradshaw initiated","titles continued","geographicoverage british","british isles","index section","dorset devon","devon cornwall","cornwall somerset","somerset gloucester","south wales","wales districts","districts oxford","oxford warwick","chester flint","ireland section","section london","yorkshire western","western section","section preston","preston lancaster","carlisle ayrshire","scotch railways","railways index","index section","section kent","kent sussex","dorset devon","channel islands","wight index","index section","section london","southern england","section bradshaw","overland guide","far east","indian colonial","foreign travel","travel bradshaw","victoriaustralia germany","austria index","index index","index ed","ed index","index index","index list","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","transport category","category tourism","europe category","category tourism","united kingdom"],"new_description":"image bradshaws illustrated hand_book travellers belgium coverpng_thumb right bradshaw illustrated hand_book travellers belgium image bradshaws continental railway guide coverpng_thumb right bradshaw continental railway guide image bradshaws handbook tourists great_britain thumb right bradshaw handbook tourists great_britain ireland bradshaw series railway public timetables travel_guide_book published adams london george_bradshaw initiated series death bradshaw range titles continued bradshaw geographicoverage british_isles index section dorset devon cornwall somerset gloucester south_wales districts oxford warwick chester flint ireland section london north lancashire yorkshire western section preston lancaster carlisle ayrshire scotch railways index section kent sussex dorset devon channel islands isle wight index section london southern england section bradshaw routes capitals world overland guide india far east handbook indian colonial foreign travel bradshaw guide victoriaustralia germany austria index_index ed_index_index list bradshaw date publication index category_travel_guide_books category_series books_category publications_established category_transport category_tourism europe_category_tourism united_kingdom"},{"title":"Bradt Travel Guides","description":"bradtravel guides is a publisher of travel guide s founded by hilary bradt who was awarded an mbe in for services to the tourist industry and to charity the first bradt guide was written in by hilary and her husband george on a river barge on a tributary of the amazon river amazon and hasince grown into a leading boutique publisher with growth particularly in the past decade the publisher is based in chalfont st peter in buckinghamshirengland but also co publishes with globe pequot in guilford connecticut in the united states the guides have been cited by the independent as covering parts of the world other travel publishers do not reach the guides may cover countries of the world normally covered in guides but often have detailed guides to parts of africasiand latin america which traditionally have not been widely covered or did not have a long history of tourism the guides give a brief summary of the history of the country or city that lies atheart of the book each guide then covers the tourism basicsuch as geography and climate wildlife languages and culture healthcare and media subsequent chapters are then usually arranged on a geographical basis addressing the main cities oregions of the country in systematic order they may have some details on smaller towns and villages not normally mentioned in guides or may have detailed case studies on culture or beliefspecific to the country with which it deals according to michael palin bradt guides arexpertly written and longer on local detail thany others bradt books often provides information topics related to the area of travel but not specifically aboutourist or travel amenities for example the somewhat awkwardly named the amazon the bradtravel guidedicates pages to the area s natural history more space thany other chapter including practical information and the individual country chapters morecently the bradt guides have begun publishing specific booksuch as wildlife in placesuch as the galapagos islands and madagascar an island in which bradt is an experthey have also begun an eccentric series which are detailed insights into some of the cities in the united kingdom including london edinburgh and oxford as well as on the countries of the united kingdom france and australia the guides are often written by writers who have had hands on experience within the country oregion they are writing abouthey may also be written somewhat unconventionally compared with normal tourist guides bradt books often relay information abouthe nature of the local people based on thexperiences of the author in various cities thealth chapters are written in collaboration with a well travelledoctor jane wilson howarth or felicity nicholson countries areas covered by the guides africa overland incl rodrigues and r union and northern americas and caribbean amazon basin amazon including trekking book climbing and hiking and bolivia backpacking and trekking usa rail eccentric americand eccentricaliforniantarcticarctic british isles galapagos islands madagascar southern africa your child abroad and nagorno karabagh canary islands northern eccentric st helenascension island tristan da cunha rail road and lakeccentric european city guides balticapitals tallinn riga vilnius and kaliningrad belgrade bratislava budapest cork city cork dubrovnik edinburgh eccentric helsinkiev lille ljubljana london eccentric paris lille and brussels oxford riga river thamespitsbergen tallinn vilnius asiand australia yunnan great wall of china kabul with jerusalem tasmania tibet externalinks official site category travel guide books","main_words":["bradtravel","guides","publisher","travel_guide","founded","bradt","awarded","services","tourist_industry","charity","first","bradt","guide","written","husband","george","river","barge","amazon","river","amazon","hasince","grown","leading","boutique","publisher","growth","particularly","past","decade","publisher","based","st_peter","also","publishes","globe","connecticut","united_states","guides","cited","independent","covering","parts","world_travel","publishers","reach","guides","may","cover","countries","world","normally","covered","guides","often","detailed","guides","parts","latin_america","traditionally","widely","covered","long","history","tourism","guides","give","brief","summary","history","country","city","lies","atheart","book","guide","covers","tourism_geography","climate","wildlife","languages","culture","healthcare","media","subsequent","chapters","usually","arranged","geographical","basis","addressing","main","cities","country","systematic","order","may","details","smaller","towns","villages","normally","mentioned","guides","may","detailed","case_studies","culture","country","deals","according","michael_palin","bradt","guides","written","longer","local","detail","thany","others","bradt","books","often","provides_information","topics","related","area","travel","specifically","travel","amenities","example","somewhat","named","amazon","bradtravel","pages","area","natural_history","space","thany","chapter","including","practical_information","individual","country","chapters","morecently","bradt","guides","begun","publishing","specific","wildlife","placesuch","galapagos_islands","madagascar","island","bradt","also","begun","eccentric","series","detailed","insights","cities","united_kingdom","including","oxford","well","countries","united_kingdom","france","australia","guides","often","written","writers","hands","experience","within","country","oregion","writing","may_also","written","somewhat","compared","normal","tourist_guides","bradt","books","often","information_abouthe","nature","local_people","based","author","various","cities","thealth","chapters","written","collaboration","well","jane","wilson","nicholson","countries","areas","covered","guides","africa","overland","incl","r","union","northern","americas","caribbean","amazon","basin","amazon","including","trekking","book","climbing","hiking","bolivia","backpacking","trekking","usa","rail","eccentric","americand","british_isles","galapagos_islands","madagascar","southern","africa","child","abroad","canary","islands","northern","eccentric","st","island","rail","road","european","city_guides","tallinn","vilnius","belgrade","bratislava","budapest","cork","city","cork","edinburgh","eccentric","paris","brussels","oxford","river","tallinn","vilnius","asiand","australia","yunnan","great","wall","china","kabul","jerusalem","tasmania","tibet","externalinks_official","site_category","travel_guide_books"],"clean_bigrams":[["bradtravel","guides"],["travel","guide"],["tourist","industry"],["first","bradt"],["bradt","guide"],["husband","george"],["river","barge"],["amazon","river"],["river","amazon"],["hasince","grown"],["leading","boutique"],["boutique","publisher"],["growth","particularly"],["past","decade"],["st","peter"],["united","states"],["covering","parts"],["travel","publishers"],["guides","may"],["may","cover"],["cover","countries"],["world","normally"],["normally","covered"],["detailed","guides"],["latin","america"],["widely","covered"],["long","history"],["guides","give"],["brief","summary"],["lies","atheart"],["climate","wildlife"],["wildlife","languages"],["culture","healthcare"],["media","subsequent"],["subsequent","chapters"],["usually","arranged"],["geographical","basis"],["basis","addressing"],["main","cities"],["systematic","order"],["smaller","towns"],["normally","mentioned"],["guides","may"],["detailed","case"],["case","studies"],["deals","according"],["michael","palin"],["palin","bradt"],["bradt","guides"],["local","detail"],["detail","thany"],["thany","others"],["others","bradt"],["bradt","books"],["books","often"],["often","provides"],["provides","information"],["information","topics"],["topics","related"],["travel","amenities"],["natural","history"],["space","thany"],["chapter","including"],["including","practical"],["practical","information"],["individual","country"],["country","chapters"],["chapters","morecently"],["bradt","guides"],["begun","publishing"],["publishing","specific"],["galapagos","islands"],["islands","madagascar"],["also","begun"],["eccentric","series"],["detailed","insights"],["united","kingdom"],["kingdom","including"],["including","london"],["london","edinburgh"],["united","kingdom"],["kingdom","france"],["often","written"],["experience","within"],["country","oregion"],["may","also"],["written","somewhat"],["normal","tourist"],["tourist","guides"],["guides","bradt"],["bradt","books"],["books","often"],["information","abouthe"],["abouthe","nature"],["local","people"],["people","based"],["various","cities"],["cities","thealth"],["thealth","chapters"],["jane","wilson"],["nicholson","countries"],["countries","areas"],["areas","covered"],["guides","africa"],["africa","overland"],["overland","incl"],["r","union"],["northern","americas"],["caribbean","amazon"],["amazon","basin"],["basin","amazon"],["amazon","including"],["including","trekking"],["trekking","book"],["book","climbing"],["bolivia","backpacking"],["trekking","usa"],["usa","rail"],["rail","eccentric"],["eccentric","americand"],["british","isles"],["isles","galapagos"],["galapagos","islands"],["islands","madagascar"],["madagascar","southern"],["southern","africa"],["child","abroad"],["canary","islands"],["islands","northern"],["northern","eccentric"],["eccentric","st"],["rail","road"],["european","city"],["city","guides"],["tallinn","vilnius"],["belgrade","bratislava"],["bratislava","budapest"],["budapest","cork"],["cork","city"],["city","cork"],["edinburgh","eccentric"],["london","eccentric"],["eccentric","paris"],["brussels","oxford"],["tallinn","vilnius"],["vilnius","asiand"],["asiand","australia"],["australia","yunnan"],["yunnan","great"],["great","wall"],["china","kabul"],["jerusalem","tasmania"],["tasmania","tibet"],["tibet","externalinks"],["externalinks","official"],["official","site"],["site","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["bradtravel guides","travel guide","tourist industry","first bradt","bradt guide","husband george","river barge","amazon river","river amazon","hasince grown","leading boutique","boutique publisher","growth particularly","past decade","st peter","united states","covering parts","travel publishers","guides may","may cover","cover countries","world normally","normally covered","detailed guides","latin america","widely covered","long history","guides give","brief summary","lies atheart","climate wildlife","wildlife languages","culture healthcare","media subsequent","subsequent chapters","usually arranged","geographical basis","basis addressing","main cities","systematic order","smaller towns","normally mentioned","guides may","detailed case","case studies","deals according","michael palin","palin bradt","bradt guides","local detail","detail thany","thany others","others bradt","bradt books","books often","often provides","provides information","information topics","topics related","travel amenities","natural history","space thany","chapter including","including practical","practical information","individual country","country chapters","chapters morecently","bradt guides","begun publishing","publishing specific","galapagos islands","islands madagascar","also begun","eccentric series","detailed insights","united kingdom","kingdom including","including london","london edinburgh","united kingdom","kingdom france","often written","experience within","country oregion","may also","written somewhat","normal tourist","tourist guides","guides bradt","bradt books","books often","information abouthe","abouthe nature","local people","people based","various cities","cities thealth","thealth chapters","jane wilson","nicholson countries","countries areas","areas covered","guides africa","africa overland","overland incl","r union","northern americas","caribbean amazon","amazon basin","basin amazon","amazon including","including trekking","trekking book","book climbing","bolivia backpacking","trekking usa","usa rail","rail eccentric","eccentric americand","british isles","isles galapagos","galapagos islands","islands madagascar","madagascar southern","southern africa","child abroad","canary islands","islands northern","northern eccentric","eccentric st","rail road","european city","city guides","tallinn vilnius","belgrade bratislava","bratislava budapest","budapest cork","cork city","city cork","edinburgh eccentric","london eccentric","eccentric paris","brussels oxford","tallinn vilnius","vilnius asiand","asiand australia","australia yunnan","yunnan great","great wall","china kabul","jerusalem tasmania","tasmania tibet","tibet externalinks","externalinks official","official site","site category","category travel","travel guide","guide books"],"new_description":"bradtravel guides publisher travel_guide founded bradt awarded services tourist_industry charity first bradt guide written husband george river barge amazon river amazon hasince grown leading boutique publisher growth particularly past decade publisher based st_peter also publishes globe connecticut united_states guides cited independent covering parts world_travel publishers reach guides may cover countries world normally covered guides often detailed guides parts latin_america traditionally widely covered long history tourism guides give brief summary history country city lies atheart book guide covers tourism_geography climate wildlife languages culture healthcare media subsequent chapters usually arranged geographical basis addressing main cities country systematic order may details smaller towns villages normally mentioned guides may detailed case_studies culture country deals according michael_palin bradt guides written longer local detail thany others bradt books often provides_information topics related area travel specifically travel amenities example somewhat named amazon bradtravel pages area natural_history space thany chapter including practical_information individual country chapters morecently bradt guides begun publishing specific wildlife placesuch galapagos_islands madagascar island bradt also begun eccentric series detailed insights cities united_kingdom including london_edinburgh oxford well countries united_kingdom france australia guides often written writers hands experience within country oregion writing may_also written somewhat compared normal tourist_guides bradt books often information_abouthe nature local_people based author various cities thealth chapters written collaboration well jane wilson nicholson countries areas covered guides africa overland incl r union northern americas caribbean amazon basin amazon including trekking book climbing hiking bolivia backpacking trekking usa rail eccentric americand british_isles galapagos_islands madagascar southern africa child abroad canary islands northern eccentric st island rail road european city_guides tallinn vilnius belgrade bratislava budapest cork city cork edinburgh eccentric london_eccentric paris brussels oxford river tallinn vilnius asiand australia yunnan great wall china kabul jerusalem tasmania tibet externalinks_official site_category travel_guide_books"},{"title":"Brasserie","description":"file brasserie lippjpg thumb the front of brasserie lipp in paris file brasserie forty leeds th may jpg thumb a riverside brasserie in leeds west yorkshirengland file brasserie op de groenplaats in antwerpenjpg thumbrasserie groenplaats antwerp in france and the francophonie francophone world a brasserie is a type ofrench restaurant with a relaxed setting which servesingle dishes and other meals the word brasserie is also french language french for brewery and by extension the brewing business a brasserie can bexpected to have professional service printed menus and traditionally white linen unlike a bistro which may have none of these typically a brasserie is open every day of the week and serves the samenu all day a classic brasserie dish isteak frites brasserie is french literally brewery fromiddle french brasser to brew from old french bracier from vulgar latin braciare of celtic languages celtic origin its first usage in english was in brasserie merriam webster dictionary the origin of the word probably stems from the facthat beer was brewed on the premises rather than brought in thus an inn would brew its own beer as well asupply food and invariably accommodation too in chambers twentieth century dictionary of thenglish language defined brasserie as in france any beer garden or saloon davidson thomas comp chambers twentieth century dictionary of thenglish language london w r chambers p in the new penguin english dictionary included this definition of brasserie a small informal french style restauranthe new penguin english dictionary consultant editorobert allen london penguin p northeast france and the united kingdom inorthern france particularly towards the belgian border an area thatraditionally brews beer in france french style beers there has been a revival of old breweries whichave been converted into restaurants and hotels reverting to brewing their own beer as microbrewery micro brews the term is often used in the united kingdom applied to small restaurants usually in city centres however it generally has no connection with brewing see also la m re catherine a parisian brasserie founded in cafrench cuisine references category types of restaurants category french cuisine","main_words":["file","brasserie","thumb","front","brasserie","paris","file","brasserie","forty","leeds","th","may","jpg","thumb","riverside","brasserie","leeds","west","yorkshirengland","file","brasserie","de","antwerp","france","world","brasserie","type","ofrench","restaurant","relaxed","setting","dishes","meals","word","brasserie","also","french_language","french","brewery","extension","brewing","business","brasserie","bexpected","professional","service","printed","menus","traditionally","white","unlike","bistro","may","none","typically","brasserie","open","every_day","week","serves","day","classic","brasserie","dish","brasserie","french","literally","brewery","french","brew","old","french","latin","celtic","languages","celtic","origin","first","usage","english","brasserie","merriam_webster","dictionary","origin","word","probably","stems","facthat","beer","brewed","premises","rather","brought","thus","inn","would","brew","beer","well","food","invariably","accommodation","chambers","twentieth_century","dictionary","thenglish_language","defined","brasserie","france","beer_garden","saloon","davidson","thomas","comp","chambers","twentieth_century","dictionary","thenglish_language","london_w","r","chambers","p","new","penguin","english_dictionary","included","definition","brasserie","small","informal","french","style","restauranthe","new","penguin","english_dictionary","consultant","allen","london","penguin","p","northeast","france","united_kingdom","inorthern","france","particularly","towards","belgian","border","area","brews","beer","france","french","style","beers","revival","old","breweries","whichave","converted","restaurants_hotels","brewing","beer","microbrewery","micro","brews","term","often_used","united_kingdom","applied","small","restaurants","usually","city","centres","however","generally","connection","brewing","see_also","la","catherine","parisian","brasserie","founded","cuisine","references_category","types","cuisine"],"clean_bigrams":[["file","brasserie"],["paris","file"],["file","brasserie"],["brasserie","forty"],["forty","leeds"],["leeds","th"],["th","may"],["may","jpg"],["jpg","thumb"],["riverside","brasserie"],["leeds","west"],["west","yorkshirengland"],["yorkshirengland","file"],["file","brasserie"],["type","ofrench"],["ofrench","restaurant"],["relaxed","setting"],["word","brasserie"],["also","french"],["french","language"],["language","french"],["brewing","business"],["professional","service"],["service","printed"],["printed","menus"],["traditionally","white"],["open","every"],["every","day"],["classic","brasserie"],["brasserie","dish"],["french","literally"],["literally","brewery"],["old","french"],["celtic","languages"],["languages","celtic"],["celtic","origin"],["first","usage"],["brasserie","merriam"],["merriam","webster"],["webster","dictionary"],["word","probably"],["probably","stems"],["facthat","beer"],["premises","rather"],["inn","would"],["would","brew"],["invariably","accommodation"],["chambers","twentieth"],["twentieth","century"],["century","dictionary"],["thenglish","language"],["language","defined"],["defined","brasserie"],["beer","garden"],["saloon","davidson"],["davidson","thomas"],["thomas","comp"],["comp","chambers"],["chambers","twentieth"],["twentieth","century"],["century","dictionary"],["thenglish","language"],["language","london"],["london","w"],["w","r"],["r","chambers"],["chambers","p"],["new","penguin"],["penguin","english"],["english","dictionary"],["dictionary","included"],["small","informal"],["informal","french"],["french","style"],["style","restauranthe"],["restauranthe","new"],["new","penguin"],["penguin","english"],["english","dictionary"],["dictionary","consultant"],["allen","london"],["london","penguin"],["penguin","p"],["p","northeast"],["northeast","france"],["united","kingdom"],["kingdom","inorthern"],["inorthern","france"],["france","particularly"],["particularly","towards"],["belgian","border"],["brews","beer"],["france","french"],["french","style"],["style","beers"],["old","breweries"],["breweries","whichave"],["microbrewery","micro"],["micro","brews"],["often","used"],["united","kingdom"],["kingdom","applied"],["small","restaurants"],["restaurants","usually"],["city","centres"],["centres","however"],["brewing","see"],["see","also"],["also","la"],["parisian","brasserie"],["brasserie","founded"],["cuisine","references"],["references","category"],["category","types"],["restaurants","category"],["category","french"],["french","cuisine"]],"all_collocations":["file brasserie","paris file","file brasserie","brasserie forty","forty leeds","leeds th","th may","may jpg","riverside brasserie","leeds west","west yorkshirengland","yorkshirengland file","file brasserie","type ofrench","ofrench restaurant","relaxed setting","word brasserie","also french","french language","language french","brewing business","professional service","service printed","printed menus","traditionally white","open every","every day","classic brasserie","brasserie dish","french literally","literally brewery","old french","celtic languages","languages celtic","celtic origin","first usage","brasserie merriam","merriam webster","webster dictionary","word probably","probably stems","facthat beer","premises rather","inn would","would brew","invariably accommodation","chambers twentieth","twentieth century","century dictionary","thenglish language","language defined","defined brasserie","beer garden","saloon davidson","davidson thomas","thomas comp","comp chambers","chambers twentieth","twentieth century","century dictionary","thenglish language","language london","london w","w r","r chambers","chambers p","new penguin","penguin english","english dictionary","dictionary included","small informal","informal french","french style","style restauranthe","restauranthe new","new penguin","penguin english","english dictionary","dictionary consultant","allen london","london penguin","penguin p","p northeast","northeast france","united kingdom","kingdom inorthern","inorthern france","france particularly","particularly towards","belgian border","brews beer","france french","french style","style beers","old breweries","breweries whichave","microbrewery micro","micro brews","often used","united kingdom","kingdom applied","small restaurants","restaurants usually","city centres","centres however","brewing see","see also","also la","parisian brasserie","brasserie founded","cuisine references","references category","category types","restaurants category","category french","french cuisine"],"new_description":"file brasserie thumb front brasserie paris file brasserie forty leeds th may jpg thumb riverside brasserie leeds west yorkshirengland file brasserie de antwerp france world brasserie type ofrench restaurant relaxed setting dishes meals word brasserie also french_language french brewery extension brewing business brasserie bexpected professional service printed menus traditionally white unlike bistro may none typically brasserie open every_day week serves day classic brasserie dish brasserie french literally brewery french brew old french latin celtic languages celtic origin first usage english brasserie merriam_webster dictionary origin word probably stems facthat beer brewed premises rather brought thus inn would brew beer well food invariably accommodation chambers twentieth_century dictionary thenglish_language defined brasserie france beer_garden saloon davidson thomas comp chambers twentieth_century dictionary thenglish_language london_w r chambers p new penguin english_dictionary included definition brasserie small informal french style restauranthe new penguin english_dictionary consultant allen london penguin p northeast france united_kingdom inorthern france particularly towards belgian border area brews beer france french style beers revival old breweries whichave converted restaurants_hotels brewing beer microbrewery micro brews term often_used united_kingdom applied small restaurants usually city centres however generally connection brewing see_also la catherine parisian brasserie founded cuisine references_category types restaurants_category_french cuisine"},{"title":"Breastaurant","description":"file bikinis bar and grill pose with musicians croppedjpg thumb upright waitress of bikinisports bar grill a breastaurant is a restauranthat haskimpily dressed female waiting staff the term breastaurant dates from thearly s around the time thathe restaurant chain hooters became popular in the united states it hasince been applied totherestaurants that offer similar servicesuch as redneck heaven tilted kilt pub eatery twin peaks restaurant chain twin peaks bombshells bone daddy s ojos locos bikinisports bar grill rackshow me s mugs jugs heart attack grill and the winghouse bar grill the restaurants often have a sexual doublentendre brand name and alsoffer specific theme restauranthemes both in decoration and menu the restaurants offer numerous perks for customers including alcoholic drink alcohol and flirting flirty servers file oldvsnewtiltedkiltcostumesjpg thumb left old vs new costume of tilted kilt pub eatery file hooters girl singapore jpg thumb a hooters girl in singapore hooters is credited as the first breastaurant having operated since other companiesoon followed suit according to food industry research firm technomic the united states top three breastaurant chains behind hooters eachad sales growth of percent or more in while these upstart chains represent less than per cent of the nation s top restaurants they are doing better than other mid priced options like applebee s and bennigan s which experiencedeclines during the great recession late s global recession in october bikinisports bar grill successfully registered the term breastaurant as a trademark withe united states patent and trademark office male variations male oriented restaurants with a similar focus on server appearance include tallywackers featuring scantily clad men which opened in dallas texas in may and closed in august guidelive date work guidelive access date languagen in japan there are places like macho cafe and macho meat shop where buff men serve food andrinks for a limited time see also bikini barista butlers caf cosplay restaurant host and hostess clubs maid caf playboy club nyotaimori wet shirt contest space dandy category eroticategory types of restaurants","main_words":["file","bar","grill","pose","musicians","croppedjpg","thumb","upright","waitress","bar","grill","breastaurant","restauranthat","dressed","female","waiting_staff","term","breastaurant","dates","thearly","around","time","thathe","restaurant_chain","hooters","became_popular","united_states","hasince","applied","offer","similar","servicesuch","heaven","pub","eatery","twin","peaks","restaurant_chain","twin","peaks","bone","bar","grill","heart","attack","grill","bar","grill","restaurants_often","sexual","brand_name","alsoffer","specific","theme","decoration","menu","restaurants_offer","numerous","perks","customers","including","alcoholic","drink","alcohol","servers","file","thumb","left","old","new","costume","pub","eatery","file","hooters","girl","singapore","jpg","thumb","hooters","girl","singapore","hooters","credited","first","breastaurant","operated","since","followed","suit","according","food_industry","research","firm","united_states","top","three","breastaurant","chains","behind","hooters","sales","growth","percent","chains","represent","less","per_cent","nation","top","restaurants","better","mid","priced","options","like","great","recession","late","global","recession","october","bar","grill","successfully","registered","term","breastaurant","trademark","withe","united_states","patent","trademark","office","male","variations","male","oriented","restaurants","similar","focus","server","appearance","include","featuring","clad","men","opened","dallas_texas","may","closed","august","date","work","access_date","languagen","japan","places","like","cafe","meat","shop","men","limited","time","see_also","barista","butlers","caf","cosplay","restaurant","host","hostess","clubs","maid","caf","playboy_club","wet","shirt","contest","space","category_types","restaurants"],"clean_bigrams":[["bar","grill"],["grill","pose"],["musicians","croppedjpg"],["croppedjpg","thumb"],["thumb","upright"],["upright","waitress"],["bar","grill"],["dressed","female"],["female","waiting"],["waiting","staff"],["term","breastaurant"],["breastaurant","dates"],["time","thathe"],["thathe","restaurant"],["restaurant","chain"],["chain","hooters"],["hooters","became"],["became","popular"],["united","states"],["offer","similar"],["similar","servicesuch"],["pub","eatery"],["eatery","twin"],["twin","peaks"],["peaks","restaurant"],["restaurant","chain"],["chain","twin"],["twin","peaks"],["bar","grill"],["heart","attack"],["attack","grill"],["bar","grill"],["restaurants","often"],["brand","name"],["alsoffer","specific"],["specific","theme"],["restaurants","offer"],["offer","numerous"],["numerous","perks"],["customers","including"],["including","alcoholic"],["alcoholic","drink"],["drink","alcohol"],["servers","file"],["thumb","left"],["left","old"],["new","costume"],["pub","eatery"],["eatery","file"],["file","hooters"],["hooters","girl"],["girl","singapore"],["singapore","jpg"],["jpg","thumb"],["hooters","girl"],["girl","singapore"],["singapore","hooters"],["first","breastaurant"],["operated","since"],["followed","suit"],["suit","according"],["food","industry"],["industry","research"],["research","firm"],["united","states"],["states","top"],["top","three"],["three","breastaurant"],["breastaurant","chains"],["chains","behind"],["behind","hooters"],["sales","growth"],["chains","represent"],["represent","less"],["per","cent"],["top","restaurants"],["mid","priced"],["priced","options"],["options","like"],["great","recession"],["recession","late"],["global","recession"],["bar","grill"],["grill","successfully"],["successfully","registered"],["term","breastaurant"],["trademark","withe"],["withe","united"],["united","states"],["states","patent"],["trademark","office"],["office","male"],["male","variations"],["variations","male"],["male","oriented"],["oriented","restaurants"],["similar","focus"],["server","appearance"],["appearance","include"],["clad","men"],["dallas","texas"],["date","work"],["access","date"],["date","languagen"],["places","like"],["meat","shop"],["men","serve"],["serve","food"],["food","andrinks"],["limited","time"],["time","see"],["see","also"],["barista","butlers"],["butlers","caf"],["caf","cosplay"],["cosplay","restaurant"],["restaurant","host"],["hostess","clubs"],["clubs","maid"],["maid","caf"],["caf","playboy"],["playboy","club"],["wet","shirt"],["shirt","contest"],["contest","space"]],"all_collocations":["bar grill","grill pose","musicians croppedjpg","croppedjpg thumb","upright waitress","bar grill","dressed female","female waiting","waiting staff","term breastaurant","breastaurant dates","time thathe","thathe restaurant","restaurant chain","chain hooters","hooters became","became popular","united states","offer similar","similar servicesuch","pub eatery","eatery twin","twin peaks","peaks restaurant","restaurant chain","chain twin","twin peaks","bar grill","heart attack","attack grill","bar grill","restaurants often","brand name","alsoffer specific","specific theme","restaurants offer","offer numerous","numerous perks","customers including","including alcoholic","alcoholic drink","drink alcohol","servers file","left old","new costume","pub eatery","eatery file","file hooters","hooters girl","girl singapore","singapore jpg","hooters girl","girl singapore","singapore hooters","first breastaurant","operated since","followed suit","suit according","food industry","industry research","research firm","united states","states top","top three","three breastaurant","breastaurant chains","chains behind","behind hooters","sales growth","chains represent","represent less","per cent","top restaurants","mid priced","priced options","options like","great recession","recession late","global recession","bar grill","grill successfully","successfully registered","term breastaurant","trademark withe","withe united","united states","states patent","trademark office","office male","male variations","variations male","male oriented","oriented restaurants","similar focus","server appearance","appearance include","clad men","dallas texas","date work","access date","date languagen","places like","meat shop","men serve","serve food","food andrinks","limited time","time see","see also","barista butlers","butlers caf","caf cosplay","cosplay restaurant","restaurant host","hostess clubs","clubs maid","maid caf","caf playboy","playboy club","wet shirt","shirt contest","contest space"],"new_description":"file bar grill pose musicians croppedjpg thumb upright waitress bar grill breastaurant restauranthat dressed female waiting_staff term breastaurant dates thearly around time thathe restaurant_chain hooters became_popular united_states hasince applied offer similar servicesuch heaven pub eatery twin peaks restaurant_chain twin peaks bone bar grill heart attack grill bar grill restaurants_often sexual brand_name alsoffer specific theme decoration menu restaurants_offer numerous perks customers including alcoholic drink alcohol servers file thumb left old new costume pub eatery file hooters girl singapore jpg thumb hooters girl singapore hooters credited first breastaurant operated since followed suit according food_industry research firm united_states top three breastaurant chains behind hooters sales growth percent chains represent less per_cent nation top restaurants better mid priced options like great recession late global recession october bar grill successfully registered term breastaurant trademark withe united_states patent trademark office male variations male oriented restaurants similar focus server appearance include featuring clad men opened dallas_texas may closed august date work access_date languagen japan places like cafe meat shop men serve_food_andrinks limited time see_also barista butlers caf cosplay restaurant host hostess clubs maid caf playboy_club wet shirt contest space category_types restaurants"},{"title":"Brewpub","description":"redirect microbrewery brewpub category types of restaurants category types of drinking establishment category pubs","main_words":["redirect","microbrewery","brewpub","category_types","restaurants_category_types","drinking_establishment_category","pubs"],"clean_bigrams":[["redirect","microbrewery"],["microbrewery","brewpub"],["brewpub","category"],["category","types"],["restaurants","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","pubs"]],"all_collocations":["redirect microbrewery","microbrewery brewpub","brewpub category","category types","restaurants category","category types","drinking establishment","establishment category","category pubs"],"new_description":"redirect microbrewery brewpub category_types restaurants_category_types drinking_establishment_category pubs"},{"title":"Bridge restaurant","description":"a bridge restaurant orestaurant bridge is a restaurant usually indoors built like a bridge over a road mostly over freeway s or motorway s it usually provides access from both sides of the road withouthe need of crossing the road by tunnel or footbridge the construction also attracts the attention of motorists making it easy to find the rest area file mcdonalds on interstate jpg thumb right px built in the world s first bridge restaurant in vinita oklahoma photograph united states the first bridge restaurant was built in over interstate in oklahoma i will rogers turnpike greco p athe vinita oklahoma rest area it is the world s largest mcdonald s fast food restaurant withe construction of the illinois tollway in five more bridge restaurants were built as illinois tollway oasis illinois tollway oases opening in further implementation of the concept in the united states has been hampered by us code clause which prohibits commercial activities athe rest areas along the interstate highway s although commercial activities existing before could continue and the unaffected toll road turnpike s already had commercialized rest areas no new restaurants were addedespite this legislation the lincoln oasis bridge restaurant has been opened in the concept was introduced to europe in by the italian architect angelo bianchetti colafranceschi p who builthe first european bridge restaurant in slightly more than six months in pavesi replaced its existing roadside restaurants at novarand bergamo along the autostrada italy autostrada serenissima by bridge restaurants at novarand osio sopra osio this was done in conjunction withe upgrade of the three lane highway to motorway standards bianchetti built nine bridge restaurants for his principal the italian food chain autogrill pavesi three pavesi bridges chianti dorno and serrevalle pistoiese were built by other architects the concept was replicated by pavesi s competitor motta who builtwo bridges athe cantagallo colafranceschi p and limena greco p rest areas and later on spread over europe in the italian chains were heavily effected by the oil crisis oil crisis and as a result no more bridge restaurants were built in italy in there are bridge restaurants left in italy rest of europe inspired by the italian example the concept spread over europe along withexpansion of motorway networks britain s first motorway the motorway m was equipped with motorway service area s msa in contrasto the united states commercialized rest areas along state owned motorways are common in europe many of the british msas have footbridges for crossing the motorway but only five msas were built as bridge restaurants all in thearly sixties the m gothree of them one was built at farthing corner today medway over the motorway great britain m and the last at leicester forest east over the motorway m which opened in the building of bridge restaurants in britain stopped because of the fire risks because they weregarded as an obstacle foroad widening in the future and because of the finding that drivers do not find any rest when they are still watching the traffic in germany there are two msas built as bridge restaurants the first opened in athe rudolphstein hirschberg crossing of the inner german border along the bundesautobahn berlin munich transit route visitors had a view of the iron curtain from the restauranthe second was built athe dammer berge msa over the bundesautobahn at holdorf in building bridge restaurants in germany was morexpensive than two restaurants at both roadsides because of the length of the bridges many facilitiesuch as toilets kitchens and storagerooms had to be builtwice on a bridge so iturned outhat it was too expensive to build further bridge restaurants over the autobahn johannes p in belgium the concept is widespread and still applied for new msas athe beginning of the s jacques borel introduced the bridge restauranto france and m venpick followed soon in switzerland the netherlands followed in with rick s today ruygen hoek msa near schiphol scandinavia got its first bridge restaurant in the mid s otheroads there are also bridge restaurants beside the motorways in oldenzaal netherlands and berlin germany they are built across broad lanes the haus der deutschen weinstra e is built over a two lane road with as exception an entrance at only one roadside the smallest bridge restaurant isituated in kufstein austria where a th century service bridge across a street in the old city has been redeveloped to a bridge restaurant with two seats the bridge restaurants in the united states arexcepthe lincoln oasis more or less replications of the same design based upon a tied arch bridge the lincoln oasis greco p designed by david haid used a steel frame combined with a glass facaderived from the italian msas at ardand cantagallo the illinois oasis werenovated in and have all got a similar look since theuropean bridge restaurants are mostly unique designs the bridge restaurant should be a landmark and they were designed for their specific operator and location steel frame the firstwo italian bridge restaurants at fiorenzuola d ardand cantagallo greco pp both got reinforced concretentry buildings that serve asupports for the steel frame span architecture span crossing the carriage ways the bridge restaurant at cantagallo was destroyed by fire in and rebuilt as a reinforced concrete bridge in reinforced concrete was introduced for the span itself bianchetti designed a reinforced concrete bridge restaurant greco p for the novara msa in afterwards this design was almost completely copied at osio msa today brembo the two in tuscany at serrevalle pistoiese msand chianti msand the one at dorno msa were designed by other architects resulting in unique designs athe different sites the british bridge restaurants are all built with reinforced concrete and all specially designed for the specific location in and bianchetti builtwo specially designed bridge restaurants athe south frascati and north feronia of rome greco p architect carlo casatintroduced prestressed concrete in his design at dorno msa in greco p a unique design was built by begand nervi athe limena msa in greco p the span has been built as a concrete box with octagonal windows in the walls in the german architects paul wolters and manfred bock combined a prestressed concrete deck with a steel frame top at dammer berge msa double deck bianchetti s next step was the double deck bridge restaurant with one floor for the restaurant and the other for shops at montepulciano he used the steel frame technique already implemented at ardand cantagallo the whole design is exceptional because of its cantilever bridge cantilever construction that can be seen from the outside greco p the last bridge restaurant design of bianchettis a double deck concrete bridge that was built at soave msa in just east of veronand at alfaterna msa in just south of nocera inferiore the upper level at alfaterna greco p was used as motel buthis bridge has been demolished in switzerland both w renlos msa in and knonauer amt msa in got a double deck bridge restaurant as well w renlos and nyk pingsbro are built as cable stayed bridge the bridge restaurant in pratteln designed by casoni from basle is unique for its fiberglass facade in scandinaviand illinois the parking lots are athe same level as the bridgexcept for frascati ayer keroh and petroporthe other bridge restaurants have an entrance on streetlevel from which the customers enter the bridge by stairs escalator elavator class wikitable sortable scope col rest area scope col country scope col highway scope col opened scope col class unsortable coordinatescope row auracher l chl r merhofgasse kufstein scope row arlon a motorway belgium a scope row barchon a motorway belgium a scope row gierleuropean route e scope row opzullik a motorway belgium a scope row orival a motorway belgium a scope row verlaine a motorway belgium a file a verlainejpg px scope rowalin a motorway belgium a scope row pe afloruta nacional chile ap scope row beaune merceuil autoroute france a scope row lan on de provence autoroute a scope row nemours autoroute france a scope row orl ansaran autoroute france a scope row saint albain autoroute france a scope row verdun saint nicolas haudimont autoroute france a scope row dammer berge bundesautobahn a file raststaettedammerbergejpg px scope row frankenwald bundesautobahn a file br ckengasthaus frankenwaldjpg px scope row haus der deutschen weinstra e deutsche weinstra e file haus der deutschen weinstrassejpg px scope row internationales congress centrum berlin icc berlin messedamm file icc berlin von ojpg px scope row sirios malakasa motorway greece a file autogrill greece a jpg px scope row alfaternautostrada italy a greco p scope row brembosio autostrada italy a file osio soprautostrada area servizio brembojpg px scope row cantagallo tuscany cantagallo autostrada italy a greco pp scope row chianti ripoli autostrada italy aleardi aleardi building fi scope row dorno autostrada italy a file autogrill dornojpg px scope row feroniautostrada italy a greco p scope row fiorenzuola d ardautostrada italy a scope row frascati greco p e scope row limena greco pp autostrada italy a scope row montepulciano autostrada italy a greco pp scope row novarautostrada italy a greco p scope row scaligera soave autostrada italy a greco p scope row sebino erbusco autostrada italy a scope row serravalle pistoiese autostrada italy aleardi aleardi building pt scope row ayer keroh north south expressway southern route file nse restaurantjpg px scope row subang jaya north south expressway centralink e scope row sungai buloh north south expressway northern route scope row den ruygen hoek a motorway netherlands a file wegrestaurant jpg px scope row oldenzaal scope row hungsu ri ah scope row holmestrand european route e scope row midrand n road south africa n scope row petroport n road south africa n scope row arrigorriagap scope row el penedes european route e scope row la jonquera european route e scope row la plana european route e scope row lleida european route e scope row porta cerdanya european route e file c km area del cadi jpg px scope row g vlebro european route e file g vle brojpg px scope row nyk pingsbro european route e file nyk pingsbro jpg px scope row knonauer amt a motorway switzerland a file autobahnraststte in affoltern am albisjpg px scope row pratteln a motorway switzerland a file autobahnbr cke pratteln situation vortjpg px scope row renlos a motorway switzerland a file w renlos autoshoserestadejo fressbalken jpg px scope row charnock richard services motorway great britain m scope row keele services motorway great britain m scope row knutsford services motorway great britain m scope row leicester forest east services leicester forest services motorway great britain m fileicester forest east service area m geographorguk jpg px scope row medway services motorway great britain m november file medway services m geographorguk jpg px scope row belvidere oasis interstate in illinois i jane addams memorial tollway image belvidere oasis illinoisjpg px scope row chicago southland lincoln oasis interstate in illinois interstate i tri state tollway greco p scope row des plaines oasis interstate in illinois i jane addams memorial tollway scope row hinsdale oasis interstate i tri state tollway scope row lake forest oasis interstate in illinois i tri state tollway scope row mcdonald s will rogers turnpike mcdonald s vinita oklahoma will rogers archway interstate in oklahoma i will rogers turnpike image vinitamcd parkingjpg px scope row o hare oasis interstate i tri state tollway image ohare oasisjpg px literally the restaurants on the most slovensk ho n rodn ho povstania novy most in bratislava opened and thesplanade riel in winnipeg opened could be regarded as bridge restaurants buthese bridges are normal river crossings with a restaurant and are not dedicated bridge restaurants the anshun bridge in chengdu opened features the veranda bridge restaurant built as a bridge over the river instead of a road the serbia n town of valjevo also has a restaurant with a terrace on a purpose built bridge crossing the river at knez mihajleva see also works cited category bridges by structural type category types of restaurants","main_words":["bridge","restaurant","orestaurant","bridge_restaurant","usually","indoors","built","like","bridge","road","mostly","freeway","motorway","usually","provides","access","sides","road","withouthe","need","crossing","road","tunnel","construction","also","attracts","attention","motorists","making","easy","find","rest","area","file","mcdonalds","interstate","jpg","thumb","right","px","built","world","first","bridge_restaurant","oklahoma","photograph","united_states","first","bridge_restaurant","built","interstate","oklahoma","rogers","turnpike","greco_p","athe","oklahoma","rest","area","world","largest","mcdonald","fast_food_restaurant","withe","construction","illinois","tollway","five","bridge_restaurants","built","illinois","tollway","oasis","illinois","tollway","opening","implementation","concept","united_states","hampered","us","code","clause","prohibits","commercial","activities","athe","rest_areas","along","interstate","highway","although","commercial","activities","existing","could","continue","toll","road","turnpike","already","rest_areas","new","restaurants","legislation","lincoln","oasis","bridge_restaurant","opened","concept","introduced","europe","italian","architect","bianchetti","p","builthe","first","european","bridge_restaurant","slightly","six","months","pavesi","replaced","existing","roadside","restaurants","along","autostrada_italy","bridge_restaurants","osio","osio","done","conjunction","withe","upgrade","three","lane","highway","motorway","standards","bianchetti","built","nine","bridge_restaurants","principal","italian","pavesi","three","pavesi","bridges","chianti","dorno","built","architects","concept","pavesi","competitor","builtwo","bridges","athe","cantagallo","p","greco_p","rest_areas","later","spread","europe","italian","chains","heavily","oil","crisis","oil","crisis","result","bridge_restaurants","built","italy","bridge_restaurants","left","italy","rest","europe","inspired","italian","example","concept","spread","europe","along","motorway","networks","britain","first","motorway","motorway","equipped","motorway","service","area","msa","contrasto","united_states","rest_areas","along","state_owned","motorways","common","europe","many","british","msas","crossing","motorway","five","msas","built","bridge_restaurants","thearly","one","built","corner","today","motorway","great_britain","last","leicester","forest","east","motorway","opened","building","bridge_restaurants","britain","stopped","fire","risks","obstacle","future","finding","drivers","find","rest","still","watching","traffic","germany","two","msas","built","bridge_restaurants","first_opened","athe","crossing","inner","german","border","along","bundesautobahn","berlin","munich","transit","route","visitors","view","iron","curtain","restauranthe","second","built","athe","berge","msa","bundesautobahn","building","bridge_restaurants","germany","morexpensive","two","restaurants","length","bridges","many","facilitiesuch","toilets","kitchens","bridge","outhat","expensive","build","bridge_restaurants","autobahn","johannes","p","belgium","concept","widespread","still","applied","new","msas","athe_beginning","jacques","introduced","france","followed","soon","switzerland","netherlands","followed","rick","today","msa","near","scandinavia","got","first","bridge_restaurant","mid","also","bridge_restaurants","beside","motorways","netherlands","berlin_germany","built","across","broad","lanes","haus","der","weinstra_e","built","two","lane","road","exception","entrance","one","roadside","smallest","bridge_restaurant","isituated","austria","th_century","service","bridge","across","street","old","city","bridge_restaurant","two","seats","bridge_restaurants","united_states","lincoln","oasis","less","design","based_upon","tied","arch","bridge","lincoln","oasis","greco_p","designed","david","used","steel","frame","combined","glass","italian","msas","cantagallo","illinois","oasis","got","similar","look","since","theuropean","bridge_restaurants","mostly","unique","designs","bridge_restaurant","landmark","designed","specific","operator","location","steel","frame","firstwo","italian","bridge_restaurants","cantagallo","greco_pp","got","reinforced","buildings","serve","steel","frame","span","architecture","span","crossing","carriage","ways","bridge_restaurant","cantagallo","destroyed","fire","rebuilt","reinforced","concrete","bridge","reinforced","concrete","introduced","span","bianchetti","designed","reinforced","concrete","bridge_restaurant","greco_p","msa","afterwards","design","almost","completely","copied","osio","msa","today","two","tuscany","chianti","one","dorno","msa","designed","architects","resulting","unique","designs","athe","different","sites","british","bridge_restaurants","built","reinforced","concrete","specially","designed","specific","location","bianchetti","builtwo","specially","designed","bridge_restaurants","athe","south","frascati","north","rome","greco_p","architect","carlo","concrete","design","dorno","msa","greco_p","unique","design","built","athe","msa","greco_p","span","built","concrete","box","windows","walls","german","architects","paul","bock","combined","concrete","deck","steel","frame","top","berge","msa","double","deck","bianchetti","next","step","double","deck","bridge_restaurant","one","floor","restaurant","shops","used","steel","frame","technique","already","implemented","cantagallo","whole","design","exceptional","bridge","construction","seen","outside","greco_p","last","bridge_restaurant","design","double","deck","concrete","bridge","built","msa","east","msa","south","upper","level","greco_p","used","motel","buthis","bridge","demolished","switzerland","w","renlos","msa","msa","got","double","deck","bridge_restaurant","well","w","renlos","built","cable","stayed","bridge","bridge_restaurant","designed","unique","facade","scandinaviand","illinois","athe","level","frascati","ayer","bridge_restaurants","entrance","customers","enter","bridge","stairs","class","wikitable","sortable","scope","col","rest","area","scope","col","country","scope","col","highway","scope","col","opened","scope","col","class","unsortable","row","l","r","scope","row","motorway","belgium","scope","row","motorway","belgium","scope","row","scope","row","motorway","belgium","scope","row","motorway","belgium","scope","row","motorway","belgium","file","px_scope","motorway","belgium","scope","row","nacional","chile","scope","row","autoroute","france","scope","row_de","provence","autoroute","scope","row","autoroute","france","scope","row","autoroute","france","scope","row","saint","autoroute","france","scope","row","saint","nicolas","autoroute","france","scope","row","berge","bundesautobahn","file","px_scope","row","bundesautobahn","file","px_scope","row","haus","der","weinstra_e","deutsche","weinstra_e","file","haus","der","px_scope","row","congress","berlin","berlin","file","berlin","von","px_scope","row","motorway","greece","file","greece","jpg_px_scope","row","italy","greco_p","scope","row","autostrada_italy","file","osio","area","px_scope","row","cantagallo","tuscany","cantagallo","autostrada_italy","greco_pp","scope","row","chianti","autostrada_italy","aleardi","aleardi","building","scope","row","dorno","autostrada_italy","file","px_scope","row","italy","greco_p","scope","row","italy","scope","row","frascati","greco_p","e","scope","row","greco_pp","autostrada_italy","scope","row","autostrada_italy","greco_pp","scope","row","italy","greco_p","scope","row","autostrada_italy","greco_p","scope","row","autostrada_italy","scope","row","autostrada_italy","aleardi","aleardi","building","scope","row","ayer","north","south","expressway","southern","route","file","restaurantjpg","px_scope","row","north","south","expressway","e","scope","row","north","south","expressway","northern","route","scope","motorway","netherlands","row","scope","row","scope","row","european_route","e","scope","row","n","road","south_africa","n","scope","row","n","road","south_africa","n","scope","row","scope","row","el","european_route","e","scope","row","la","european_route","e","scope","row","la","european_route","e","scope","row","european_route","e","scope","row","porta","european_route","e","file","c","area","del","jpg_px_scope","row","g","european_route","e","file","g","px_scope","row","european_route","e","row","motorway","switzerland","file","px_scope","row","motorway","switzerland","file","cke","situation","px_scope","row","renlos","motorway","switzerland","file","w","renlos","jpg_px_scope","row","richard","services","motorway","great_britain","scope","row","keele","services","motorway","great_britain","scope","row","services","motorway","great_britain","scope","row","leicester","forest","east","services","leicester","motorway","great_britain","forest","east","service","area","row","services","motorway","great_britain","november","file","services","row","oasis","interstate","illinois","jane","memorial","tollway","image","oasis","px_scope","row","chicago","southland","lincoln","oasis","interstate","illinois","interstate","tri","state","tollway","greco_p","scope","oasis","interstate","illinois","jane","memorial","tollway","scope","row","oasis","interstate","tri","state","tollway","scope","row","lake","forest","oasis","interstate","illinois","tri","state","tollway","scope","row","mcdonald","rogers","turnpike","mcdonald","oklahoma","rogers","interstate","oklahoma","rogers","turnpike","image","px_scope","row","hare","oasis","interstate","tri","state","tollway","image","px","literally","restaurants","n","bratislava","opened","winnipeg","opened","could","regarded","bridge_restaurants","buthese","bridges","normal","river","restaurant","dedicated","bridge_restaurants","bridge","opened","features","bridge_restaurant","built","bridge","river","instead","road","serbia","n","town","also","restaurant","terrace","purpose_built","bridge","crossing","river","knez","see_also","works","cited","category","bridges","structural","type","category_types","restaurants"],"clean_bigrams":[["bridge","restaurant"],["restaurant","orestaurant"],["orestaurant","bridge"],["bridge","restaurant"],["restaurant","usually"],["usually","indoors"],["indoors","built"],["built","like"],["road","mostly"],["usually","provides"],["provides","access"],["road","withouthe"],["withouthe","need"],["construction","also"],["also","attracts"],["motorists","making"],["rest","area"],["area","file"],["file","mcdonalds"],["interstate","jpg"],["jpg","thumb"],["thumb","right"],["right","px"],["px","built"],["first","bridge"],["bridge","restaurant"],["oklahoma","photograph"],["photograph","united"],["united","states"],["first","bridge"],["bridge","restaurant"],["restaurant","built"],["rogers","turnpike"],["turnpike","greco"],["greco","p"],["p","athe"],["oklahoma","rest"],["rest","area"],["largest","mcdonald"],["fast","food"],["food","restaurant"],["restaurant","withe"],["withe","construction"],["illinois","tollway"],["bridge","restaurants"],["illinois","tollway"],["tollway","oasis"],["oasis","illinois"],["illinois","tollway"],["united","states"],["us","code"],["code","clause"],["prohibits","commercial"],["commercial","activities"],["activities","athe"],["athe","rest"],["rest","areas"],["areas","along"],["interstate","highway"],["although","commercial"],["commercial","activities"],["activities","existing"],["could","continue"],["toll","road"],["road","turnpike"],["rest","areas"],["new","restaurants"],["lincoln","oasis"],["oasis","bridge"],["bridge","restaurant"],["italian","architect"],["builthe","first"],["first","european"],["european","bridge"],["bridge","restaurant"],["six","months"],["pavesi","replaced"],["existing","roadside"],["roadside","restaurants"],["autostrada","italy"],["italy","autostrada"],["bridge","restaurants"],["conjunction","withe"],["withe","upgrade"],["three","lane"],["lane","highway"],["motorway","standards"],["standards","bianchetti"],["bianchetti","built"],["built","nine"],["nine","bridge"],["bridge","restaurants"],["italian","food"],["food","chain"],["pavesi","three"],["three","pavesi"],["pavesi","bridges"],["bridges","chianti"],["chianti","dorno"],["builtwo","bridges"],["bridges","athe"],["athe","cantagallo"],["greco","p"],["p","rest"],["rest","areas"],["italian","chains"],["oil","crisis"],["crisis","oil"],["oil","crisis"],["bridge","restaurants"],["bridge","restaurants"],["restaurants","left"],["italy","rest"],["europe","inspired"],["italian","example"],["concept","spread"],["europe","along"],["motorway","networks"],["networks","britain"],["first","motorway"],["motorway","service"],["service","area"],["united","states"],["rest","areas"],["areas","along"],["along","state"],["state","owned"],["owned","motorways"],["europe","many"],["british","msas"],["five","msas"],["msas","built"],["built","bridge"],["bridge","restaurants"],["corner","today"],["motorway","great"],["great","britain"],["leicester","forest"],["forest","east"],["building","bridge"],["bridge","restaurants"],["britain","stopped"],["fire","risks"],["still","watching"],["two","msas"],["msas","built"],["built","bridge"],["bridge","restaurants"],["first","opened"],["inner","german"],["german","border"],["border","along"],["bundesautobahn","berlin"],["berlin","munich"],["munich","transit"],["transit","route"],["route","visitors"],["iron","curtain"],["restauranthe","second"],["built","athe"],["berge","msa"],["building","bridge"],["bridge","restaurants"],["two","restaurants"],["bridges","many"],["many","facilitiesuch"],["toilets","kitchens"],["bridge","restaurants"],["autobahn","johannes"],["johannes","p"],["still","applied"],["new","msas"],["msas","athe"],["athe","beginning"],["bridge","restauranto"],["restauranto","france"],["followed","soon"],["netherlands","followed"],["msa","near"],["scandinavia","got"],["first","bridge"],["bridge","restaurant"],["also","bridge"],["bridge","restaurants"],["restaurants","beside"],["berlin","germany"],["built","across"],["across","broad"],["broad","lanes"],["haus","der"],["weinstra","e"],["two","lane"],["lane","road"],["one","roadside"],["smallest","bridge"],["bridge","restaurant"],["restaurant","isituated"],["th","century"],["century","service"],["service","bridge"],["bridge","across"],["old","city"],["bridge","restaurant"],["two","seats"],["bridge","restaurants"],["united","states"],["lincoln","oasis"],["design","based"],["based","upon"],["tied","arch"],["arch","bridge"],["lincoln","oasis"],["oasis","greco"],["greco","p"],["p","designed"],["steel","frame"],["frame","combined"],["italian","msas"],["illinois","oasis"],["similar","look"],["look","since"],["since","theuropean"],["theuropean","bridge"],["bridge","restaurants"],["mostly","unique"],["unique","designs"],["bridge","restaurant"],["specific","operator"],["location","steel"],["steel","frame"],["firstwo","italian"],["italian","bridge"],["bridge","restaurants"],["cantagallo","greco"],["greco","pp"],["got","reinforced"],["steel","frame"],["frame","span"],["span","architecture"],["architecture","span"],["span","crossing"],["carriage","ways"],["bridge","restaurant"],["reinforced","concrete"],["concrete","bridge"],["reinforced","concrete"],["bianchetti","designed"],["reinforced","concrete"],["concrete","bridge"],["bridge","restaurant"],["restaurant","greco"],["greco","p"],["almost","completely"],["completely","copied"],["osio","msa"],["msa","today"],["dorno","msa"],["architects","resulting"],["unique","designs"],["designs","athe"],["athe","different"],["different","sites"],["british","bridge"],["bridge","restaurants"],["reinforced","concrete"],["specially","designed"],["specific","location"],["bianchetti","builtwo"],["builtwo","specially"],["specially","designed"],["designed","bridge"],["bridge","restaurants"],["restaurants","athe"],["athe","south"],["south","frascati"],["rome","greco"],["greco","p"],["p","architect"],["architect","carlo"],["dorno","msa"],["greco","p"],["unique","design"],["built","athe"],["greco","p"],["concrete","box"],["german","architects"],["architects","paul"],["bock","combined"],["concrete","deck"],["steel","frame"],["frame","top"],["berge","msa"],["msa","double"],["double","deck"],["deck","bianchetti"],["next","step"],["double","deck"],["deck","bridge"],["bridge","restaurant"],["one","floor"],["steel","frame"],["frame","technique"],["technique","already"],["already","implemented"],["whole","design"],["outside","greco"],["greco","p"],["last","bridge"],["bridge","restaurant"],["restaurant","design"],["double","deck"],["deck","concrete"],["concrete","bridge"],["upper","level"],["greco","p"],["motel","buthis"],["buthis","bridge"],["w","renlos"],["renlos","msa"],["double","deck"],["deck","bridge"],["bridge","restaurant"],["well","w"],["w","renlos"],["cable","stayed"],["stayed","bridge"],["bridge","restaurant"],["scandinaviand","illinois"],["parking","lots"],["frascati","ayer"],["bridge","restaurants"],["customers","enter"],["class","wikitable"],["wikitable","sortable"],["sortable","scope"],["scope","col"],["col","rest"],["rest","area"],["area","scope"],["scope","col"],["col","country"],["country","scope"],["scope","col"],["col","highway"],["highway","scope"],["scope","col"],["col","opened"],["opened","scope"],["scope","col"],["col","class"],["class","unsortable"],["scope","row"],["motorway","belgium"],["scope","row"],["motorway","belgium"],["scope","row"],["route","e"],["e","scope"],["scope","row"],["motorway","belgium"],["scope","row"],["motorway","belgium"],["scope","row"],["motorway","belgium"],["px","scope"],["motorway","belgium"],["scope","row"],["nacional","chile"],["scope","row"],["autoroute","france"],["scope","row"],["de","provence"],["provence","autoroute"],["scope","row"],["autoroute","france"],["scope","row"],["autoroute","france"],["scope","row"],["row","saint"],["autoroute","france"],["scope","row"],["row","saint"],["saint","nicolas"],["autoroute","france"],["scope","row"],["berge","bundesautobahn"],["px","scope"],["scope","row"],["px","scope"],["scope","row"],["row","haus"],["haus","der"],["weinstra","e"],["e","deutsche"],["deutsche","weinstra"],["weinstra","e"],["e","file"],["file","haus"],["haus","der"],["px","scope"],["scope","row"],["berlin","von"],["px","scope"],["scope","row"],["motorway","greece"],["jpg","px"],["px","scope"],["scope","row"],["greco","p"],["p","scope"],["scope","row"],["autostrada","italy"],["file","osio"],["px","scope"],["scope","row"],["row","cantagallo"],["cantagallo","tuscany"],["tuscany","cantagallo"],["cantagallo","autostrada"],["autostrada","italy"],["greco","pp"],["pp","scope"],["scope","row"],["row","chianti"],["autostrada","italy"],["italy","aleardi"],["aleardi","aleardi"],["aleardi","building"],["scope","row"],["row","dorno"],["dorno","autostrada"],["autostrada","italy"],["px","scope"],["scope","row"],["greco","p"],["p","scope"],["scope","row"],["scope","row"],["row","frascati"],["frascati","greco"],["greco","p"],["p","e"],["e","scope"],["scope","row"],["greco","pp"],["pp","autostrada"],["autostrada","italy"],["scope","row"],["autostrada","italy"],["greco","pp"],["pp","scope"],["scope","row"],["greco","p"],["p","scope"],["scope","row"],["autostrada","italy"],["greco","p"],["p","scope"],["scope","row"],["autostrada","italy"],["scope","row"],["autostrada","italy"],["italy","aleardi"],["aleardi","aleardi"],["aleardi","building"],["scope","row"],["row","ayer"],["north","south"],["south","expressway"],["expressway","southern"],["southern","route"],["route","file"],["restaurantjpg","px"],["px","scope"],["scope","row"],["north","south"],["south","expressway"],["e","scope"],["scope","row"],["north","south"],["south","expressway"],["expressway","northern"],["northern","route"],["route","scope"],["scope","row"],["row","den"],["motorway","netherlands"],["jpg","px"],["px","scope"],["scope","row"],["scope","row"],["scope","row"],["european","route"],["route","e"],["e","scope"],["scope","row"],["n","road"],["road","south"],["south","africa"],["africa","n"],["n","scope"],["scope","row"],["n","road"],["road","south"],["south","africa"],["africa","n"],["n","scope"],["scope","row"],["scope","row"],["row","el"],["european","route"],["route","e"],["e","scope"],["scope","row"],["row","la"],["european","route"],["route","e"],["e","scope"],["scope","row"],["row","la"],["european","route"],["route","e"],["e","scope"],["scope","row"],["european","route"],["route","e"],["e","scope"],["scope","row"],["row","porta"],["european","route"],["route","e"],["e","file"],["file","c"],["area","del"],["jpg","px"],["px","scope"],["scope","row"],["row","g"],["european","route"],["route","e"],["e","file"],["file","g"],["px","scope"],["scope","row"],["european","route"],["route","e"],["e","file"],["jpg","px"],["px","scope"],["scope","row"],["motorway","switzerland"],["px","scope"],["scope","row"],["motorway","switzerland"],["px","scope"],["scope","row"],["row","renlos"],["motorway","switzerland"],["file","w"],["w","renlos"],["jpg","px"],["px","scope"],["scope","row"],["richard","services"],["services","motorway"],["motorway","great"],["great","britain"],["scope","row"],["row","keele"],["keele","services"],["services","motorway"],["motorway","great"],["great","britain"],["scope","row"],["services","motorway"],["motorway","great"],["great","britain"],["scope","row"],["row","leicester"],["leicester","forest"],["forest","east"],["east","services"],["services","leicester"],["leicester","forest"],["forest","services"],["services","motorway"],["motorway","great"],["great","britain"],["forest","east"],["east","service"],["service","area"],["geographorguk","jpg"],["jpg","px"],["px","scope"],["scope","row"],["services","motorway"],["motorway","great"],["great","britain"],["november","file"],["geographorguk","jpg"],["jpg","px"],["px","scope"],["scope","row"],["oasis","interstate"],["memorial","tollway"],["tollway","image"],["px","scope"],["scope","row"],["row","chicago"],["chicago","southland"],["southland","lincoln"],["lincoln","oasis"],["oasis","interstate"],["illinois","interstate"],["tri","state"],["state","tollway"],["tollway","greco"],["greco","p"],["p","scope"],["scope","row"],["row","des"],["oasis","interstate"],["memorial","tollway"],["tollway","scope"],["scope","row"],["oasis","interstate"],["tri","state"],["state","tollway"],["tollway","scope"],["scope","row"],["row","lake"],["lake","forest"],["forest","oasis"],["oasis","interstate"],["tri","state"],["state","tollway"],["tollway","scope"],["scope","row"],["row","mcdonald"],["rogers","turnpike"],["turnpike","mcdonald"],["rogers","turnpike"],["turnpike","image"],["px","scope"],["scope","row"],["hare","oasis"],["oasis","interstate"],["tri","state"],["state","tollway"],["tollway","image"],["px","literally"],["bratislava","opened"],["winnipeg","opened"],["opened","could"],["bridge","restaurants"],["restaurants","buthese"],["buthese","bridges"],["normal","river"],["dedicated","bridge"],["bridge","restaurants"],["opened","features"],["bridge","restaurant"],["restaurant","built"],["built","bridge"],["river","instead"],["serbia","n"],["n","town"],["purpose","built"],["built","bridge"],["bridge","crossing"],["see","also"],["also","works"],["works","cited"],["cited","category"],["category","bridges"],["structural","type"],["type","category"],["category","types"]],"all_collocations":["bridge restaurant","restaurant orestaurant","orestaurant bridge","bridge restaurant","restaurant usually","usually indoors","indoors built","built like","road mostly","usually provides","provides access","road withouthe","withouthe need","construction also","also attracts","motorists making","rest area","area file","file mcdonalds","interstate jpg","px built","first bridge","bridge restaurant","oklahoma photograph","photograph united","united states","first bridge","bridge restaurant","restaurant built","rogers turnpike","turnpike greco","greco p","p athe","oklahoma rest","rest area","largest mcdonald","fast food","food restaurant","restaurant withe","withe construction","illinois tollway","bridge restaurants","illinois tollway","tollway oasis","oasis illinois","illinois tollway","united states","us code","code clause","prohibits commercial","commercial activities","activities athe","athe rest","rest areas","areas along","interstate highway","although commercial","commercial activities","activities existing","could continue","toll road","road turnpike","rest areas","new restaurants","lincoln oasis","oasis bridge","bridge restaurant","italian architect","builthe first","first european","european bridge","bridge restaurant","six months","pavesi replaced","existing roadside","roadside restaurants","autostrada italy","italy autostrada","bridge restaurants","conjunction withe","withe upgrade","three lane","lane highway","motorway standards","standards bianchetti","bianchetti built","built nine","nine bridge","bridge restaurants","italian food","food chain","pavesi three","three pavesi","pavesi bridges","bridges chianti","chianti dorno","builtwo bridges","bridges athe","athe cantagallo","greco p","p rest","rest areas","italian chains","oil crisis","crisis oil","oil crisis","bridge restaurants","bridge restaurants","restaurants left","italy rest","europe inspired","italian example","concept spread","europe along","motorway networks","networks britain","first motorway","motorway service","service area","united states","rest areas","areas along","along state","state owned","owned motorways","europe many","british msas","five msas","msas built","built bridge","bridge restaurants","corner today","motorway great","great britain","leicester forest","forest east","building bridge","bridge restaurants","britain stopped","fire risks","still watching","two msas","msas built","built bridge","bridge restaurants","first opened","inner german","german border","border along","bundesautobahn berlin","berlin munich","munich transit","transit route","route visitors","iron curtain","restauranthe second","built athe","berge msa","building bridge","bridge restaurants","two restaurants","bridges many","many facilitiesuch","toilets kitchens","bridge restaurants","autobahn johannes","johannes p","still applied","new msas","msas athe","athe beginning","bridge restauranto","restauranto france","followed soon","netherlands followed","msa near","scandinavia got","first bridge","bridge restaurant","also bridge","bridge restaurants","restaurants beside","berlin germany","built across","across broad","broad lanes","haus der","weinstra e","two lane","lane road","one roadside","smallest bridge","bridge restaurant","restaurant isituated","th century","century service","service bridge","bridge across","old city","bridge restaurant","two seats","bridge restaurants","united states","lincoln oasis","design based","based upon","tied arch","arch bridge","lincoln oasis","oasis greco","greco p","p designed","steel frame","frame combined","italian msas","illinois oasis","similar look","look since","since theuropean","theuropean bridge","bridge restaurants","mostly unique","unique designs","bridge restaurant","specific operator","location steel","steel frame","firstwo italian","italian bridge","bridge restaurants","cantagallo greco","greco pp","got reinforced","steel frame","frame span","span architecture","architecture span","span crossing","carriage ways","bridge restaurant","reinforced concrete","concrete bridge","reinforced concrete","bianchetti designed","reinforced concrete","concrete bridge","bridge restaurant","restaurant greco","greco p","almost completely","completely copied","osio msa","msa today","dorno msa","architects resulting","unique designs","designs athe","athe different","different sites","british bridge","bridge restaurants","reinforced concrete","specially designed","specific location","bianchetti builtwo","builtwo specially","specially designed","designed bridge","bridge restaurants","restaurants athe","athe south","south frascati","rome greco","greco p","p architect","architect carlo","dorno msa","greco p","unique design","built athe","greco p","concrete box","german architects","architects paul","bock combined","concrete deck","steel frame","frame top","berge msa","msa double","double deck","deck bianchetti","next step","double deck","deck bridge","bridge restaurant","one floor","steel frame","frame technique","technique already","already implemented","whole design","outside greco","greco p","last bridge","bridge restaurant","restaurant design","double deck","deck concrete","concrete bridge","upper level","greco p","motel buthis","buthis bridge","w renlos","renlos msa","double deck","deck bridge","bridge restaurant","well w","w renlos","cable stayed","stayed bridge","bridge restaurant","scandinaviand illinois","parking lots","frascati ayer","bridge restaurants","customers enter","sortable scope","col rest","rest area","area scope","col country","country scope","col highway","highway scope","col opened","opened scope","col class","motorway belgium","motorway belgium","route e","e scope","motorway belgium","motorway belgium","motorway belgium","px scope","motorway belgium","nacional chile","autoroute france","de provence","provence autoroute","autoroute france","autoroute france","row saint","autoroute france","row saint","saint nicolas","autoroute france","berge bundesautobahn","px scope","px scope","row haus","haus der","weinstra e","e deutsche","deutsche weinstra","weinstra e","e file","file haus","haus der","px scope","berlin von","px scope","motorway greece","jpg px","px scope","greco p","p scope","autostrada italy","file osio","px scope","row cantagallo","cantagallo tuscany","tuscany cantagallo","cantagallo autostrada","autostrada italy","greco pp","pp scope","row chianti","autostrada italy","italy aleardi","aleardi aleardi","aleardi building","row dorno","dorno autostrada","autostrada italy","px scope","greco p","p scope","row frascati","frascati greco","greco p","p e","e scope","greco pp","pp autostrada","autostrada italy","autostrada italy","greco pp","pp scope","greco p","p scope","autostrada italy","greco p","p scope","autostrada italy","autostrada italy","italy aleardi","aleardi aleardi","aleardi building","row ayer","north south","south expressway","expressway southern","southern route","route file","restaurantjpg px","px scope","north south","south expressway","e scope","north south","south expressway","expressway northern","northern route","route scope","row den","motorway netherlands","jpg px","px scope","european route","route e","e scope","n road","road south","south africa","africa n","n scope","n road","road south","south africa","africa n","n scope","row el","european route","route e","e scope","row la","european route","route e","e scope","row la","european route","route e","e scope","european route","route e","e scope","row porta","european route","route e","e file","file c","area del","jpg px","px scope","row g","european route","route e","e file","file g","px scope","european route","route e","e file","jpg px","px scope","motorway switzerland","px scope","motorway switzerland","px scope","row renlos","motorway switzerland","file w","w renlos","jpg px","px scope","richard services","services motorway","motorway great","great britain","row keele","keele services","services motorway","motorway great","great britain","services motorway","motorway great","great britain","row leicester","leicester forest","forest east","east services","services leicester","leicester forest","forest services","services motorway","motorway great","great britain","forest east","east service","service area","geographorguk jpg","jpg px","px scope","services motorway","motorway great","great britain","november file","geographorguk jpg","jpg px","px scope","oasis interstate","memorial tollway","tollway image","px scope","row chicago","chicago southland","southland lincoln","lincoln oasis","oasis interstate","illinois interstate","tri state","state tollway","tollway greco","greco p","p scope","row des","oasis interstate","memorial tollway","tollway scope","oasis interstate","tri state","state tollway","tollway scope","row lake","lake forest","forest oasis","oasis interstate","tri state","state tollway","tollway scope","row mcdonald","rogers turnpike","turnpike mcdonald","rogers turnpike","turnpike image","px scope","hare oasis","oasis interstate","tri state","state tollway","tollway image","px literally","bratislava opened","winnipeg opened","opened could","bridge restaurants","restaurants buthese","buthese bridges","normal river","dedicated bridge","bridge restaurants","opened features","bridge restaurant","restaurant built","built bridge","river instead","serbia n","n town","purpose built","built bridge","bridge crossing","see also","also works","works cited","cited category","category bridges","structural type","type category","category types"],"new_description":"bridge restaurant orestaurant bridge_restaurant usually indoors built like bridge road mostly freeway motorway usually provides access sides road withouthe need crossing road tunnel construction also attracts attention motorists making easy find rest area file mcdonalds interstate jpg thumb right px built world first bridge_restaurant oklahoma photograph united_states first bridge_restaurant built interstate oklahoma rogers turnpike greco_p athe oklahoma rest area world largest mcdonald fast_food_restaurant withe construction illinois tollway five bridge_restaurants built illinois tollway oasis illinois tollway opening implementation concept united_states hampered us code clause prohibits commercial activities athe rest_areas along interstate highway although commercial activities existing could continue toll road turnpike already rest_areas new restaurants legislation lincoln oasis bridge_restaurant opened concept introduced europe italian architect bianchetti p builthe first european bridge_restaurant slightly six months pavesi replaced existing roadside restaurants along autostrada_italy autostrada bridge_restaurants osio osio done conjunction withe upgrade three lane highway motorway standards bianchetti built nine bridge_restaurants principal italian food_chain pavesi three pavesi bridges chianti dorno built architects concept pavesi competitor builtwo bridges athe cantagallo p greco_p rest_areas later spread europe italian chains heavily oil crisis oil crisis result bridge_restaurants built italy bridge_restaurants left italy rest europe inspired italian example concept spread europe along motorway networks britain first motorway motorway equipped motorway service area msa contrasto united_states rest_areas along state_owned motorways common europe many british msas crossing motorway five msas built bridge_restaurants thearly one built corner today motorway great_britain last leicester forest east motorway opened building bridge_restaurants britain stopped fire risks obstacle future finding drivers find rest still watching traffic germany two msas built bridge_restaurants first_opened athe crossing inner german border along bundesautobahn berlin munich transit route visitors view iron curtain restauranthe second built athe berge msa bundesautobahn building bridge_restaurants germany morexpensive two restaurants length bridges many facilitiesuch toilets kitchens bridge outhat expensive build bridge_restaurants autobahn johannes p belgium concept widespread still applied new msas athe_beginning jacques introduced bridge_restauranto france followed soon switzerland netherlands followed rick today msa near scandinavia got first bridge_restaurant mid also bridge_restaurants beside motorways netherlands berlin_germany built across broad lanes haus der weinstra_e built two lane road exception entrance one roadside smallest bridge_restaurant isituated austria th_century service bridge across street old city bridge_restaurant two seats bridge_restaurants united_states lincoln oasis less design based_upon tied arch bridge lincoln oasis greco_p designed david used steel frame combined glass italian msas cantagallo illinois oasis got similar look since theuropean bridge_restaurants mostly unique designs bridge_restaurant landmark designed specific operator location steel frame firstwo italian bridge_restaurants cantagallo greco_pp got reinforced buildings serve steel frame span architecture span crossing carriage ways bridge_restaurant cantagallo destroyed fire rebuilt reinforced concrete bridge reinforced concrete introduced span bianchetti designed reinforced concrete bridge_restaurant greco_p msa afterwards design almost completely copied osio msa today two tuscany chianti one dorno msa designed architects resulting unique designs athe different sites british bridge_restaurants built reinforced concrete specially designed specific location bianchetti builtwo specially designed bridge_restaurants athe south frascati north rome greco_p architect carlo concrete design dorno msa greco_p unique design built athe msa greco_p span built concrete box windows walls german architects paul bock combined concrete deck steel frame top berge msa double deck bianchetti next step double deck bridge_restaurant one floor restaurant shops used steel frame technique already implemented cantagallo whole design exceptional bridge construction seen outside greco_p last bridge_restaurant design double deck concrete bridge built msa east msa south upper level greco_p used motel buthis bridge demolished switzerland w renlos msa msa got double deck bridge_restaurant well w renlos built cable stayed bridge bridge_restaurant designed unique facade scandinaviand illinois parking_lots athe level frascati ayer bridge_restaurants entrance customers enter bridge stairs class wikitable sortable scope col rest area scope col country scope col highway scope col opened scope col class unsortable row l r scope row motorway belgium scope row motorway belgium scope row route_e scope row motorway belgium scope row motorway belgium scope row motorway belgium file px_scope motorway belgium scope row nacional chile scope row autoroute france scope row_de provence autoroute scope row autoroute france scope row autoroute france scope row saint autoroute france scope row saint nicolas autoroute france scope row berge bundesautobahn file px_scope row bundesautobahn file px_scope row haus der weinstra_e deutsche weinstra_e file haus der px_scope row congress berlin berlin file berlin von px_scope row motorway greece file greece jpg_px_scope row italy greco_p scope row autostrada_italy file osio area px_scope row cantagallo tuscany cantagallo autostrada_italy greco_pp scope row chianti autostrada_italy aleardi aleardi building scope row dorno autostrada_italy file px_scope row italy greco_p scope row italy scope row frascati greco_p e scope row greco_pp autostrada_italy scope row autostrada_italy greco_pp scope row italy greco_p scope row autostrada_italy greco_p scope row autostrada_italy scope row autostrada_italy aleardi aleardi building scope row ayer north south expressway southern route file restaurantjpg px_scope row north south expressway e scope row north south expressway northern route scope row_den motorway netherlands file_jpg_px_scope row scope row scope row european_route e scope row n road south_africa n scope row n road south_africa n scope row scope row el european_route e scope row la european_route e scope row la european_route e scope row european_route e scope row porta european_route e file c area del jpg_px_scope row g european_route e file g px_scope row european_route e file_jpg_px_scope row motorway switzerland file px_scope row motorway switzerland file cke situation px_scope row renlos motorway switzerland file w renlos jpg_px_scope row richard services motorway great_britain scope row keele services motorway great_britain scope row services motorway great_britain scope row leicester forest east services leicester forest_services motorway great_britain forest east service area geographorguk_jpg_px_scope row services motorway great_britain november file services geographorguk_jpg_px_scope row oasis interstate illinois jane memorial tollway image oasis px_scope row chicago southland lincoln oasis interstate illinois interstate tri state tollway greco_p scope row_des oasis interstate illinois jane memorial tollway scope row oasis interstate tri state tollway scope row lake forest oasis interstate illinois tri state tollway scope row mcdonald rogers turnpike mcdonald oklahoma rogers interstate oklahoma rogers turnpike image px_scope row hare oasis interstate tri state tollway image px literally restaurants n bratislava opened winnipeg opened could regarded bridge_restaurants buthese bridges normal river restaurant dedicated bridge_restaurants bridge opened features bridge_restaurant built bridge river instead road serbia n town also restaurant terrace purpose_built bridge crossing river knez see_also works cited category bridges structural type category_types restaurants"},{"title":"Brigade de cuisine","description":"brigade cuisine kitchen brigade is a system of hierarchy found in restaurants and hotels employing extensive staff commonly referred to as kitchen staff in english speaking countries the concept was developed by georges augustescoffier thistructured team system delegates responsibilities to different individuals who specialize in certain tasks in the kitchen list of positions this an exhaustive list of the different members of the kitchen brigade system only the largest of establishments would have an extensive staff of thisize as noted under some titles certain positions are combined intother positions when such a large staff is unnecessary note despite the use of chef in english as the title for a cook the word actually means chief or head in french similarly cuisine means kitchen but also refers to food or cookingenerally or a type ofood or cooking chef de cuisine kitchen chef literally chief of kitchen is responsible for overall management of kitchen supervisestaff creates menus and new recipes withe assistance of the restaurant manager makes purchases of raw food items trains apprentices and maintains a sanitary and hygienic environment for the preparation ofooddomin sous chef sous chef de cuisine deputy second kitchen chef literally subchief receives orders directly from the chef de cuisine for the management of the kitchen and often serves as the representative when the chef de cuisine is not present saucier saucemaker saut cook preparesauce s and warm hors d oeuvres completes meat dishes and in smallerestaurants may work on fish dishes and prepare saut ed items this one of the most respected positions in the kitchen brigade chef de partie senior chef literally chief of party used here as a group in the sense of a military detail is responsible for managing a given station in the kitchen specializing in preparing particular dishes there those who work in a lesser station are commonly referred to as a demi chef cuisinier cook is an independent position usually preparing specific dishes in a station may also be referred to as a cuisinier de partie chef commis junior cook also works in a specific station but reports directly to the chef de partie and takes care of the tools for the station apprenti e apprentice are often students gaining theoretical and practical training in school and work experience in the kitchen they perform preparatory work and or cleaning work plongeur dishwasher or kitchen porter cleans dishes and utensils and may bentrusted with basic preparatory jobs marmiton pot and pan washer also known as kitchen porter in largerestaurants takes care of all the pots and pans instead of the plongeur domin r tisseuroast cook manages a team of cooks that roasts broils andeep fries dishes grillardin grill cook in larger kitchens prepares grilled foods instead of the r tisseur the culinary institute of america friturier fry cook in larger kitchens prepares fried foods instead of the r tisseur poissonnier fish cook prepares fish and seafoodishes entremetier entr e preparer preparesoups and other dishes not involving meat or fish including vegetable dishes and egg dishes potager soup cook in larger kitchens reports to thentremetier and prepares the soups legumier vegetable cook in larger kitchens also reports to thentremetier and prepares the vegetable dishes garde manger pantry supervisor literally food keeper is responsible for preparation of cold hors d oeuvres p t s terrine food terrines and aspic s preparesalads organizes large buffet displays and prepares charcuterie items tournant spare hand roundsman moves throughouthe kitchen assisting other positions in kitchen p tissier pastry cook prepares desserts and other meal end sweets and for locations without a boulanger also prepares breads and other baked items may also prepare pasta for the restaurant confiseur in largerestaurants prepares candies and petit four petits fours instead of the p tissier glacier in largerestaurants prepares frozen and coldesserts instead of the p tissier d corateur in largerestaurants prepareshow pieces and specialty cakes instead of the p tissier baker boulanger baker in largerestaurants prepares bread cakes and breakfast pastries instead of the p tissier butcher boucher butchers meats poultry and sometimes fish may also be in charge of breading meat and fish items aboyeur announcer expediter takes orders from the dining room andistributes them to the varioustations may also be performed by the sous chef de partie communard prepares the meal served to the restaurant staff gar on de cuisine literally kitchen boy in largerestaurants performs preparatory and auxiliary work for support see also augustescoffier chef list of restauranterminology ma tre d h tel a front of house headomin andr ed culinaria france cologne k nemann verlagsgesellschaft mbh patrick rambourg histoire de la cuisinet de la gastronomie fran aises paris ed perrin coll tempus n pages category food services occupations category restauranterminology category culinary terminology","main_words":["brigade","cuisine","kitchen","brigade","system","hierarchy","found","restaurants_hotels","employing","extensive","staff","commonly_referred","kitchen","staff","english_speaking","countries","concept","developed","georges","augustescoffier","team","system","delegates","responsibilities","different","individuals","specialize","certain","tasks","kitchen","list","positions","list","different","members","kitchen","brigade","system","largest","establishments","would","extensive","staff","noted","titles","certain","positions","combined","intother","positions","large","staff","note","despite","use","chef","english","title","cook","word","actually","means","chief","head","french","similarly","cuisine","means","kitchen","also","refers","food","type","ofood","cooking","chef_de_cuisine","kitchen","chef","literally","chief","kitchen","responsible","overall","management","kitchen","creates","menus","new","recipes","withe","assistance","restaurant","manager","makes","purchases","raw","food_items","trains","maintains","sanitary","hygienic","environment","preparation","sous_chef","sous_chef","deputy","second","kitchen","chef","literally","receives","orders","directly","chef_de_cuisine","management","kitchen","often","serves","representative","chef_de_cuisine","present","saucier","saut","cook","warm","hors","completes","meat","dishes","may","work","fish","dishes","prepare","saut","ed","items","one","respected","positions","kitchen","brigade","chef_de_partie","senior","chef","literally","chief","party","used","group","sense","military","detail","responsible","managing","given","station","kitchen","specializing","preparing","particular","dishes","work","lesser","station","commonly_referred","demi","chef","cook","independent","position","usually","preparing","specific","dishes","station","may_also","referred","de_partie","chef","commis","junior","cook","also","works","specific","station","reports","directly","chef_de_partie","takes","care","tools","station","e","apprentice","often","students","gaining","theoretical","practical","training","school","work","experience","kitchen","perform","preparatory","work","cleaning","work","dishwasher","kitchen","porter","dishes","utensils","may","basic","preparatory","jobs","pot","pan","also_known","kitchen","porter","largerestaurants","takes","care","pots","pans","instead","r","cook","manages","team","cooks","fries","dishes","grill","cook","larger","kitchens","prepares","grilled","foods","instead","r","culinary_institute","america","fry","cook","larger","kitchens","prepares","fried","foods","instead","r","fish","cook","prepares","fish","entr","e","dishes","involving","meat","fish","including","vegetable","dishes","egg","dishes","soup","cook","larger","kitchens","reports","prepares","soups","vegetable","cook","larger","kitchens","also","reports","prepares","vegetable","dishes","garde_manger","pantry","supervisor","literally","food","keeper","responsible","preparation","cold","hors","p","terrine","food","terrines","organizes","large","buffet","displays","prepares","charcuterie","items","spare","hand","moves","throughouthe","kitchen","assisting","positions","kitchen","p","tissier","pastry","cook","prepares","desserts","meal","end","sweets","locations","without","boulanger","also","prepares","breads","baked","items","may_also","prepare","pasta","restaurant","largerestaurants","prepares","petit","four","instead","p","tissier","glacier","largerestaurants","prepares","frozen","instead","p","tissier","largerestaurants","pieces","specialty","cakes","instead","p","tissier","baker","boulanger","baker","largerestaurants","prepares","bread","cakes","breakfast","pastries","instead","p","tissier","butcher","meats","poultry","sometimes","fish","may_also","charge","meat","fish","items","takes","orders","dining_room","may_also","performed","sous_chef","de_partie","prepares","meal","served","restaurant_staff","gar","literally","kitchen","boy","largerestaurants","performs","preparatory","auxiliary","work","support","see_also","augustescoffier","chef","list","restauranterminology","tre","h_tel","front","house","andr","ed","france","cologne","k","verlagsgesellschaft","patrick","histoire","de_la","de_la","gastronomie","fran","paris","ed","perrin","n","pages","category_food_services","occupations_category_restauranterminology","category","culinary","terminology"],"clean_bigrams":[["brigade","cuisine"],["cuisine","kitchen"],["kitchen","brigade"],["brigade","system"],["hierarchy","found"],["hotels","employing"],["employing","extensive"],["extensive","staff"],["staff","commonly"],["commonly","referred"],["kitchen","staff"],["english","speaking"],["speaking","countries"],["georges","augustescoffier"],["team","system"],["system","delegates"],["delegates","responsibilities"],["different","individuals"],["certain","tasks"],["kitchen","list"],["different","members"],["kitchen","brigade"],["brigade","system"],["establishments","would"],["extensive","staff"],["titles","certain"],["certain","positions"],["combined","intother"],["intother","positions"],["large","staff"],["note","despite"],["word","actually"],["actually","means"],["means","chief"],["french","similarly"],["similarly","cuisine"],["cuisine","means"],["means","kitchen"],["also","refers"],["type","ofood"],["cooking","chef"],["chef","de"],["de","cuisine"],["cuisine","kitchen"],["kitchen","chef"],["chef","literally"],["literally","chief"],["overall","management"],["creates","menus"],["new","recipes"],["recipes","withe"],["withe","assistance"],["restaurant","manager"],["manager","makes"],["makes","purchases"],["raw","food"],["food","items"],["items","trains"],["hygienic","environment"],["sous","chef"],["chef","sous"],["sous","chef"],["chef","de"],["de","cuisine"],["cuisine","deputy"],["deputy","second"],["second","kitchen"],["kitchen","chef"],["chef","literally"],["receives","orders"],["orders","directly"],["chef","de"],["de","cuisine"],["often","serves"],["chef","de"],["de","cuisine"],["present","saucier"],["saut","cook"],["warm","hors"],["completes","meat"],["meat","dishes"],["may","work"],["fish","dishes"],["prepare","saut"],["saut","ed"],["ed","items"],["respected","positions"],["kitchen","brigade"],["brigade","chef"],["chef","de"],["de","partie"],["partie","senior"],["senior","chef"],["chef","literally"],["literally","chief"],["party","used"],["military","detail"],["given","station"],["kitchen","specializing"],["preparing","particular"],["particular","dishes"],["lesser","station"],["commonly","referred"],["demi","chef"],["independent","position"],["position","usually"],["usually","preparing"],["preparing","specific"],["specific","dishes"],["station","may"],["may","also"],["de","partie"],["partie","chef"],["chef","commis"],["commis","junior"],["junior","cook"],["cook","also"],["also","works"],["specific","station"],["reports","directly"],["chef","de"],["de","partie"],["takes","care"],["e","apprentice"],["often","students"],["students","gaining"],["gaining","theoretical"],["practical","training"],["work","experience"],["perform","preparatory"],["preparatory","work"],["cleaning","work"],["kitchen","porter"],["basic","preparatory"],["preparatory","jobs"],["also","known"],["kitchen","porter"],["largerestaurants","takes"],["takes","care"],["pans","instead"],["cook","manages"],["fries","dishes"],["grill","cook"],["larger","kitchens"],["kitchens","prepares"],["prepares","grilled"],["grilled","foods"],["foods","instead"],["culinary","institute"],["fry","cook"],["larger","kitchens"],["kitchens","prepares"],["prepares","fried"],["fried","foods"],["foods","instead"],["fish","cook"],["cook","prepares"],["prepares","fish"],["entr","e"],["involving","meat"],["fish","including"],["including","vegetable"],["vegetable","dishes"],["egg","dishes"],["soup","cook"],["larger","kitchens"],["kitchens","reports"],["vegetable","cook"],["larger","kitchens"],["kitchens","also"],["also","reports"],["vegetable","dishes"],["dishes","garde"],["garde","manger"],["manger","pantry"],["pantry","supervisor"],["supervisor","literally"],["literally","food"],["food","keeper"],["cold","hors"],["terrine","food"],["food","terrines"],["organizes","large"],["large","buffet"],["buffet","displays"],["prepares","charcuterie"],["charcuterie","items"],["spare","hand"],["moves","throughouthe"],["throughouthe","kitchen"],["kitchen","assisting"],["kitchen","p"],["p","tissier"],["tissier","pastry"],["pastry","cook"],["cook","prepares"],["prepares","desserts"],["meal","end"],["end","sweets"],["locations","without"],["boulanger","also"],["also","prepares"],["prepares","breads"],["baked","items"],["items","may"],["may","also"],["also","prepare"],["prepare","pasta"],["largerestaurants","prepares"],["petit","four"],["p","tissier"],["tissier","glacier"],["largerestaurants","prepares"],["prepares","frozen"],["p","tissier"],["specialty","cakes"],["cakes","instead"],["p","tissier"],["tissier","baker"],["baker","boulanger"],["boulanger","baker"],["largerestaurants","prepares"],["prepares","bread"],["bread","cakes"],["breakfast","pastries"],["pastries","instead"],["p","tissier"],["tissier","butcher"],["meats","poultry"],["sometimes","fish"],["fish","may"],["may","also"],["fish","items"],["takes","orders"],["dining","room"],["may","also"],["sous","chef"],["chef","de"],["de","partie"],["meal","served"],["restaurant","staff"],["staff","gar"],["de","cuisine"],["cuisine","literally"],["literally","kitchen"],["kitchen","boy"],["largerestaurants","performs"],["performs","preparatory"],["auxiliary","work"],["support","see"],["see","also"],["also","augustescoffier"],["augustescoffier","chef"],["chef","list"],["h","tel"],["andr","ed"],["france","cologne"],["cologne","k"],["histoire","de"],["de","la"],["de","la"],["la","gastronomie"],["gastronomie","fran"],["paris","ed"],["ed","perrin"],["n","pages"],["pages","category"],["category","food"],["food","services"],["services","occupations"],["occupations","category"],["category","restauranterminology"],["restauranterminology","category"],["category","culinary"],["culinary","terminology"]],"all_collocations":["brigade cuisine","cuisine kitchen","kitchen brigade","brigade system","hierarchy found","hotels employing","employing extensive","extensive staff","staff commonly","commonly referred","kitchen staff","english speaking","speaking countries","georges augustescoffier","team system","system delegates","delegates responsibilities","different individuals","certain tasks","kitchen list","different members","kitchen brigade","brigade system","establishments would","extensive staff","titles certain","certain positions","combined intother","intother positions","large staff","note despite","word actually","actually means","means chief","french similarly","similarly cuisine","cuisine means","means kitchen","also refers","type ofood","cooking chef","chef de","de cuisine","cuisine kitchen","kitchen chef","chef literally","literally chief","overall management","creates menus","new recipes","recipes withe","withe assistance","restaurant manager","manager makes","makes purchases","raw food","food items","items trains","hygienic environment","sous chef","chef sous","sous chef","chef de","de cuisine","cuisine deputy","deputy second","second kitchen","kitchen chef","chef literally","receives orders","orders directly","chef de","de cuisine","often serves","chef de","de cuisine","present saucier","saut cook","warm hors","completes meat","meat dishes","may work","fish dishes","prepare saut","saut ed","ed items","respected positions","kitchen brigade","brigade chef","chef de","de partie","partie senior","senior chef","chef literally","literally chief","party used","military detail","given station","kitchen specializing","preparing particular","particular dishes","lesser station","commonly referred","demi chef","independent position","position usually","usually preparing","preparing specific","specific dishes","station may","may also","de partie","partie chef","chef commis","commis junior","junior cook","cook also","also works","specific station","reports directly","chef de","de partie","takes care","e apprentice","often students","students gaining","gaining theoretical","practical training","work experience","perform preparatory","preparatory work","cleaning work","kitchen porter","basic preparatory","preparatory jobs","also known","kitchen porter","largerestaurants takes","takes care","pans instead","cook manages","fries dishes","grill cook","larger kitchens","kitchens prepares","prepares grilled","grilled foods","foods instead","culinary institute","fry cook","larger kitchens","kitchens prepares","prepares fried","fried foods","foods instead","fish cook","cook prepares","prepares fish","entr e","involving meat","fish including","including vegetable","vegetable dishes","egg dishes","soup cook","larger kitchens","kitchens reports","vegetable cook","larger kitchens","kitchens also","also reports","vegetable dishes","dishes garde","garde manger","manger pantry","pantry supervisor","supervisor literally","literally food","food keeper","cold hors","terrine food","food terrines","organizes large","large buffet","buffet displays","prepares charcuterie","charcuterie items","spare hand","moves throughouthe","throughouthe kitchen","kitchen assisting","kitchen p","p tissier","tissier pastry","pastry cook","cook prepares","prepares desserts","meal end","end sweets","locations without","boulanger also","also prepares","prepares breads","baked items","items may","may also","also prepare","prepare pasta","largerestaurants prepares","petit four","p tissier","tissier glacier","largerestaurants prepares","prepares frozen","p tissier","specialty cakes","cakes instead","p tissier","tissier baker","baker boulanger","boulanger baker","largerestaurants prepares","prepares bread","bread cakes","breakfast pastries","pastries instead","p tissier","tissier butcher","meats poultry","sometimes fish","fish may","may also","fish items","takes orders","dining room","may also","sous chef","chef de","de partie","meal served","restaurant staff","staff gar","de cuisine","cuisine literally","literally kitchen","kitchen boy","largerestaurants performs","performs preparatory","auxiliary work","support see","see also","also augustescoffier","augustescoffier chef","chef list","h tel","andr ed","france cologne","cologne k","histoire de","de la","de la","la gastronomie","gastronomie fran","paris ed","ed perrin","n pages","pages category","category food","food services","services occupations","occupations category","category restauranterminology","restauranterminology category","category culinary","culinary terminology"],"new_description":"brigade cuisine kitchen brigade system hierarchy found restaurants_hotels employing extensive staff commonly_referred kitchen staff english_speaking countries concept developed georges augustescoffier team system delegates responsibilities different individuals specialize certain tasks kitchen list positions list different members kitchen brigade system largest establishments would extensive staff noted titles certain positions combined intother positions large staff note despite use chef english title cook word actually means chief head french similarly cuisine means kitchen also refers food type ofood cooking chef_de_cuisine kitchen chef literally chief kitchen responsible overall management kitchen creates menus new recipes withe assistance restaurant manager makes purchases raw food_items trains maintains sanitary hygienic environment preparation sous_chef sous_chef de_cuisine deputy second kitchen chef literally receives orders directly chef_de_cuisine management kitchen often serves representative chef_de_cuisine present saucier saut cook warm hors completes meat dishes may work fish dishes prepare saut ed items one respected positions kitchen brigade chef_de_partie senior chef literally chief party used group sense military detail responsible managing given station kitchen specializing preparing particular dishes work lesser station commonly_referred demi chef cook independent position usually preparing specific dishes station may_also referred de_partie chef commis junior cook also works specific station reports directly chef_de_partie takes care tools station e apprentice often students gaining theoretical practical training school work experience kitchen perform preparatory work cleaning work dishwasher kitchen porter dishes utensils may basic preparatory jobs pot pan also_known kitchen porter largerestaurants takes care pots pans instead r cook manages team cooks fries dishes grill cook larger kitchens prepares grilled foods instead r culinary_institute america fry cook larger kitchens prepares fried foods instead r fish cook prepares fish entr e dishes involving meat fish including vegetable dishes egg dishes soup cook larger kitchens reports prepares soups vegetable cook larger kitchens also reports prepares vegetable dishes garde_manger pantry supervisor literally food keeper responsible preparation cold hors p terrine food terrines organizes large buffet displays prepares charcuterie items spare hand moves throughouthe kitchen assisting positions kitchen p tissier pastry cook prepares desserts meal end sweets locations without boulanger also prepares breads baked items may_also prepare pasta restaurant largerestaurants prepares petit four instead p tissier glacier largerestaurants prepares frozen instead p tissier largerestaurants pieces specialty cakes instead p tissier baker boulanger baker largerestaurants prepares bread cakes breakfast pastries instead p tissier butcher meats poultry sometimes fish may_also charge meat fish items takes orders dining_room may_also performed sous_chef de_partie prepares meal served restaurant_staff gar de_cuisine literally kitchen boy largerestaurants performs preparatory auxiliary work support see_also augustescoffier chef list restauranterminology tre h_tel front house andr ed france cologne k verlagsgesellschaft patrick histoire de_la de_la gastronomie fran paris ed perrin n pages category_food_services occupations_category_restauranterminology category culinary terminology"},{"title":"British Columbia Magazine","description":"finaldate finalnumber company op media group country canada based vancouver british columbia languagenglish website issn oclc british columbia magazine is a geographic and travel magazine in british columbia its coverage includes independentravel outdoor exploration and recreation geography wildlife conservation people science and natural phenomena first nations culture heritage places and history within the province with a tradition of extensive use of photography founded in as beautiful british columbia magazine the publication is currently owned by op media group history in founding editor clyde harrington pitched the idea of an all colour british columbia travel publication to the bc provincial governmenthe first issue titled beautiful british columbia land of new horizons appeared that year at a time when bc was little known outside of canada the fledgling magazine used full colour large format layout and high photographicontentechniques that werelatively uncommon athe time the cover line on the summer launch issue proclaimed pages of sparkling colour beautiful british columbia magazine used the new colour palette to celebrate bc s diverse spectacular scenery in pictures and stories the magazine reflected a new era of boundless optimism and expansionism in the province heralding major new highway construction and the launch of a government run ferry fleet bc ferries that would transform travel within bc in thearly sales increasedramatically as residents began to send beautiful british columbia magazine subscriptions to friends and relatives across canadand around the world the quarterly magazine now incorporating annual scenicalendar soon developed one of the largest circulations in canadaccording to the national print measurement bureau pmb over the next years the magazine played a majorole in the development of today s multibillion dollar tourism industry putting bc on the map as one of the world s great destinations during this period with a field almosto itself the magazine published many bc gift and travel books in as part of a provincial government privatization program the magazine wasold to the jim pattison group the now independent magazinevolved from a tourism publication into an environmentally conscious geographic and travel quarterly a new title beautiful british columbia ours to cherish mirrored the new editorial mandate and the magazine began to win the first of dozens of regional and international awards for its articles design photography and printing quality in tourism british columbiacquired the magazine from the jim pattison group withe fall issue the magazine s title was changed to british columbia magazine the publication continues to win editorial awards and has a paid circulation of more than holding its place as one of the largest paid circulation magazines in canada british columbia magazine official website in british columbia magazine was acquired by op media group similar earlier publications an earlier periodical british columbia magazine bore the alternate title westward ho published monthly in vancouver british columbia from july to january it ceased publication in the first world war and neveresumed westminster hall magazine begun in june changed its title to westminster hall magazine and farthest west reviewith its december issue appearing as the westminstereview from november to december it was published as british columbia monthly the magazine of the canadian west from january until its last number was produced in december vancouver public library catalogue references category canadian travel magazines category jim pattison group category magazinestablished in category tourismagazines category canadian quarterly magazines category magazines published in vancouver category establishments in british columbia","main_words":["finaldate","finalnumber","company","media_group","country","canada","based","vancouver_british","columbia","languagenglish_website_issn_oclc","british_columbia","magazine","geographic","travel_magazine","british_columbia","coverage","includes","independentravel","outdoor","exploration","recreation","geography","wildlife_conservation","people","science","natural","phenomena","first","nations","culture_heritage","places","history","within","province","tradition","extensive","use","photography","founded","beautiful","british_columbia","magazine","publication","currently","owned","media_group","history","founding","editor","clyde","harrington","pitched","idea","colour","british_columbia","travel","publication","provincial","governmenthe","first_issue","titled","beautiful","british_columbia","land","new","appeared","year","time","little_known","outside","canada","magazine","used","full","colour","large","format","layout","high","uncommon","athe_time","cover","line","summer","launch","issue","proclaimed","pages","colour","beautiful","british_columbia","magazine","used","new","colour","celebrate","diverse","spectacular","scenery","pictures","stories","magazine","reflected","new","era","optimism","province","major","new","highway","construction","launch","government","run","ferry","fleet","ferries","would","transform","travel","within","thearly","sales","residents","began","send","beautiful","british_columbia","magazine","subscriptions","friends","relatives","across","canadand","around","world","quarterly","magazine","incorporating","annual","soon","developed","one","largest","national","print","measurement","bureau","next","years","magazine","played","majorole","development","today","multibillion","dollar","tourism_industry","putting","map","one","world","great","destinations","period","field","magazine_published","many","gift","travel_books","part","provincial","government","program","magazine","wasold","jim","group","independent","tourism","publication","environmentally","conscious","geographic","travel","quarterly","new","title","beautiful","british_columbia","new","editorial","mandate","magazine","began","win","first","dozens","regional","articles","design","photography","printing","quality","tourism","british","magazine","jim","group","withe","fall","issue","magazine","title","changed","british_columbia","magazine","publication","continues","win","editorial","awards","paid","circulation","holding","place","one","largest","paid","circulation","magazines","canada","british_columbia","magazine","official_website","british_columbia","magazine","acquired","media_group","similar","earlier","publications","earlier","periodical","british_columbia","magazine","bore","alternate","title","westward","published","monthly","vancouver_british","columbia","july","january","ceased","publication","first_world_war","westminster","hall","magazine","begun","june","changed","title","westminster","hall","magazine","west","december","issue","appearing","november","december","published","british_columbia","monthly","magazine","canadian","west","january","last","number","produced","december","vancouver","public_library","catalogue","references_category","canadian","jim","group","category_magazinestablished","category_tourismagazines","category_canadian","quarterly","vancouver","category_establishments","british_columbia"],"clean_bigrams":[["finaldate","finalnumber"],["finalnumber","company"],["media","group"],["group","country"],["country","canada"],["canada","based"],["based","vancouver"],["vancouver","british"],["british","columbia"],["columbia","languagenglish"],["languagenglish","website"],["website","issn"],["issn","oclc"],["oclc","british"],["british","columbia"],["columbia","magazine"],["travel","magazine"],["british","columbia"],["coverage","includes"],["includes","independentravel"],["independentravel","outdoor"],["outdoor","exploration"],["recreation","geography"],["geography","wildlife"],["wildlife","conservation"],["conservation","people"],["people","science"],["natural","phenomena"],["phenomena","first"],["first","nations"],["nations","culture"],["culture","heritage"],["heritage","places"],["history","within"],["extensive","use"],["photography","founded"],["beautiful","british"],["british","columbia"],["columbia","magazine"],["currently","owned"],["media","group"],["group","history"],["founding","editor"],["editor","clyde"],["clyde","harrington"],["harrington","pitched"],["colour","british"],["british","columbia"],["columbia","travel"],["travel","publication"],["provincial","governmenthe"],["governmenthe","first"],["first","issue"],["issue","titled"],["titled","beautiful"],["beautiful","british"],["british","columbia"],["columbia","land"],["little","known"],["known","outside"],["magazine","used"],["used","full"],["full","colour"],["colour","large"],["large","format"],["format","layout"],["uncommon","athe"],["athe","time"],["cover","line"],["summer","launch"],["launch","issue"],["issue","proclaimed"],["proclaimed","pages"],["colour","beautiful"],["beautiful","british"],["british","columbia"],["columbia","magazine"],["magazine","used"],["new","colour"],["diverse","spectacular"],["spectacular","scenery"],["magazine","reflected"],["new","era"],["major","new"],["new","highway"],["highway","construction"],["government","run"],["run","ferry"],["ferry","fleet"],["would","transform"],["transform","travel"],["travel","within"],["thearly","sales"],["residents","began"],["send","beautiful"],["beautiful","british"],["british","columbia"],["columbia","magazine"],["magazine","subscriptions"],["relatives","across"],["across","canadand"],["canadand","around"],["quarterly","magazine"],["incorporating","annual"],["soon","developed"],["developed","one"],["national","print"],["print","measurement"],["measurement","bureau"],["next","years"],["magazine","played"],["multibillion","dollar"],["dollar","tourism"],["tourism","industry"],["industry","putting"],["great","destinations"],["magazine","published"],["published","many"],["travel","books"],["provincial","government"],["magazine","wasold"],["tourism","publication"],["environmentally","conscious"],["conscious","geographic"],["travel","quarterly"],["new","title"],["title","beautiful"],["beautiful","british"],["british","columbia"],["new","editorial"],["editorial","mandate"],["magazine","began"],["international","awards"],["articles","design"],["design","photography"],["printing","quality"],["tourism","british"],["group","withe"],["withe","fall"],["fall","issue"],["british","columbia"],["columbia","magazine"],["publication","continues"],["win","editorial"],["editorial","awards"],["paid","circulation"],["largest","paid"],["paid","circulation"],["circulation","magazines"],["canada","british"],["british","columbia"],["columbia","magazine"],["magazine","official"],["official","website"],["british","columbia"],["columbia","magazine"],["media","group"],["group","similar"],["similar","earlier"],["earlier","publications"],["earlier","periodical"],["periodical","british"],["british","columbia"],["columbia","magazine"],["magazine","bore"],["alternate","title"],["title","westward"],["published","monthly"],["vancouver","british"],["british","columbia"],["ceased","publication"],["first","world"],["world","war"],["westminster","hall"],["hall","magazine"],["magazine","begun"],["june","changed"],["westminster","hall"],["hall","magazine"],["december","issue"],["issue","appearing"],["british","columbia"],["columbia","monthly"],["canadian","west"],["last","number"],["december","vancouver"],["vancouver","public"],["public","library"],["library","catalogue"],["catalogue","references"],["references","category"],["category","canadian"],["canadian","travel"],["travel","magazines"],["magazines","category"],["category","jim"],["group","category"],["category","magazinestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","canadian"],["canadian","quarterly"],["quarterly","magazines"],["magazines","category"],["category","magazines"],["magazines","published"],["vancouver","category"],["category","establishments"],["british","columbia"]],"all_collocations":["finaldate finalnumber","finalnumber company","media group","group country","country canada","canada based","based vancouver","vancouver british","british columbia","columbia languagenglish","languagenglish website","website issn","issn oclc","oclc british","british columbia","columbia magazine","travel magazine","british columbia","coverage includes","includes independentravel","independentravel outdoor","outdoor exploration","recreation geography","geography wildlife","wildlife conservation","conservation people","people science","natural phenomena","phenomena first","first nations","nations culture","culture heritage","heritage places","history within","extensive use","photography founded","beautiful british","british columbia","columbia magazine","currently owned","media group","group history","founding editor","editor clyde","clyde harrington","harrington pitched","colour british","british columbia","columbia travel","travel publication","provincial governmenthe","governmenthe first","first issue","issue titled","titled beautiful","beautiful british","british columbia","columbia land","little known","known outside","magazine used","used full","full colour","colour large","large format","format layout","uncommon athe","athe time","cover line","summer launch","launch issue","issue proclaimed","proclaimed pages","colour beautiful","beautiful british","british columbia","columbia magazine","magazine used","new colour","diverse spectacular","spectacular scenery","magazine reflected","new era","major new","new highway","highway construction","government run","run ferry","ferry fleet","would transform","transform travel","travel within","thearly sales","residents began","send beautiful","beautiful british","british columbia","columbia magazine","magazine subscriptions","relatives across","across canadand","canadand around","quarterly magazine","incorporating annual","soon developed","developed one","national print","print measurement","measurement bureau","next years","magazine played","multibillion dollar","dollar tourism","tourism industry","industry putting","great destinations","magazine published","published many","travel books","provincial government","magazine wasold","tourism publication","environmentally conscious","conscious geographic","travel quarterly","new title","title beautiful","beautiful british","british columbia","new editorial","editorial mandate","magazine began","international awards","articles design","design photography","printing quality","tourism british","group withe","withe fall","fall issue","british columbia","columbia magazine","publication continues","win editorial","editorial awards","paid circulation","largest paid","paid circulation","circulation magazines","canada british","british columbia","columbia magazine","magazine official","official website","british columbia","columbia magazine","media group","group similar","similar earlier","earlier publications","earlier periodical","periodical british","british columbia","columbia magazine","magazine bore","alternate title","title westward","published monthly","vancouver british","british columbia","ceased publication","first world","world war","westminster hall","hall magazine","magazine begun","june changed","westminster hall","hall magazine","december issue","issue appearing","british columbia","columbia monthly","canadian west","last number","december vancouver","vancouver public","public library","library catalogue","catalogue references","references category","category canadian","canadian travel","travel magazines","magazines category","category jim","group category","category magazinestablished","category tourismagazines","tourismagazines category","category canadian","canadian quarterly","quarterly magazines","magazines category","category magazines","magazines published","vancouver category","category establishments","british columbia"],"new_description":"finaldate finalnumber company media_group country canada based vancouver_british columbia languagenglish_website_issn_oclc british_columbia magazine geographic travel_magazine british_columbia coverage includes independentravel outdoor exploration recreation geography wildlife_conservation people science natural phenomena first nations culture_heritage places history within province tradition extensive use photography founded beautiful british_columbia magazine publication currently owned media_group history founding editor clyde harrington pitched idea colour british_columbia travel publication provincial governmenthe first_issue titled beautiful british_columbia land new appeared year time little_known outside canada magazine used full colour large format layout high uncommon athe_time cover line summer launch issue proclaimed pages colour beautiful british_columbia magazine used new colour celebrate diverse spectacular scenery pictures stories magazine reflected new era optimism province major new highway construction launch government run ferry fleet ferries would transform travel within thearly sales residents began send beautiful british_columbia magazine subscriptions friends relatives across canadand around world quarterly magazine incorporating annual soon developed one largest national print measurement bureau next years magazine played majorole development today multibillion dollar tourism_industry putting map one world great destinations period field magazine_published many gift travel_books part provincial government program magazine wasold jim group independent tourism publication environmentally conscious geographic travel quarterly new title beautiful british_columbia new editorial mandate magazine began win first dozens regional international_awards articles design photography printing quality tourism british magazine jim group withe fall issue magazine title changed british_columbia magazine publication continues win editorial awards paid circulation holding place one largest paid circulation magazines canada british_columbia magazine official_website british_columbia magazine acquired media_group similar earlier publications earlier periodical british_columbia magazine bore alternate title westward published monthly vancouver_british columbia july january ceased publication first_world_war westminster hall magazine begun june changed title westminster hall magazine west december issue appearing november december published british_columbia monthly magazine canadian west january last number produced december vancouver public_library catalogue references_category canadian travel_magazines_category jim group category_magazinestablished category_tourismagazines category_canadian quarterly magazines_category_magazines_published vancouver category_establishments british_columbia"},{"title":"Brook Silva-Braga","description":"birth place rhode island residence manhattanew york city nationality other names known for documentary a map for saturday award winning associate producer for cable tv hboccupation cinematographer director producer employer the washington post brook silva braga born march back cover of a map for saturday dvd is an american documentary film producer he shared a primetimemmy award for his production of inside the nfl he is best known from his documentary a map for saturday in whiche producedirected and starred this award winning film is about his adventures as a backpacking travel backpacker for months in whiche stayed in various hostel s and was released in hisecond film one day in africa was released in his third film was released the china question he is currently an on aireporter for the washington post and freelances for cbs news cbs newspath cbs newspath early career silva braga was born and raised in portsmouth rhode island was a producer for hbo s inside the nfl for whiche shared an emmy award a map for saturday making of the film silva braga quit his job withbo and he threw it all away to travel around the globe for almost a year in with a video camerand equipmento record his adventures it all started when hbo sent him to asia for work on another story and he discovered an underground network of backpacking travel backpackers which enchanted himtezza interviewithe director of a map for saturday october found at eva young web site retrieved november when he quit his job withbo hisupervisor told him that in the future he d only send married producers overseas gadlingcom interview retrieved november after he finished the film he said that it had changed his outlook on life and the film is billed as around the world in minutes melinda j benson filmstrip tease found at northern ohio live web site retrieved november its title describes the feeling that on a trip around the world every day feels like saturday melizer blog found at kaboodle web site movies to see blog when everyday isaturday each new person an instant best friend you need a guide to how to deal with alwaysayingoodbye and loss of connection s kevein kelly cool tool a map for saturday review found at kevin kelly s web site retrieved november silva braga stays in hostel s around the world showing us the hot spots of backpacking adventure australia southeast asia indiand london and out of the way places like brazil nepal and thailand he was forced to pack only five pounds of clothes because of his pounds of video equipment and stay in many hostels to save money he interviews various hostellers and fellow travellers along the way as he investigates how and why people take long term budgetravel a map for saturday official web site retrieved november gadlingcom web site retrieved november the documentary premiered athe cleveland international film festival where it wascreened four times cleveland international film festival official web site retrieved november benson melinda j filmstrip tease found at northern ohio live web site retrieved november this film fest is a competitive one drawing attendeesubmissions but only filmscreened in showings this film wascreened times rather than the average times of the typical film athe festival film festival world web site retrieved november the cleveland film society organizers of the film festival created a live podcast during a panel interviewithim cleveland film society podcast roll retrieved november the local affiliate of american broadcasting company abc interviewed him while he was in town for the film festival youtube clip of abcleveland interview retrieved november a map for saturday wascreened in paris france shortly after the camera silva braga used to film it wastolen music slut blog posting the hostelling international usa hi usa is also screening the film at selected universities colleges and public libraries through its hostel councils bryant university official web page november news release retrieved november albany public library official web page retrieved february a map for saturday wascreened on the mtv network s true life series episode mtv web site true lifepisode page retrieved may critical reception the film has garnered mostly excellent reviewsean keener ceof bootsnall travel network wrote that it was well done and praised the filmmaker as a good story teller sean keelerorg web site the indiewire web site reviewed the premiere in cleveland stating that director brook silva braga despite having incredibly honorable intentions withis backpacking documentary a map for saturday misses an opportunity to provide insight about a group of people indiewire web site review of a map for saturday retrieved novemberecent programsilva braga posted a series of blog s at gadlingcom which is affiliated with aol across northern europe with brook silva bragand other blogs retrieved november as well as posting atheinterviewpointheinterviewpoint blog retrieved november onovember silva braga was the keynote speaker athe national conference of hostelling international usa in washington dc hi usa sponsored an essay writing contest called the big trip to celebrate this event a map for saturday official web site hi usa official web site retrieved november vagabondish web site retrieved november in january he completed his next documentary one day in africa one day in africa website retrieved january externalinks a map for saturday one day in africa the china question category births category american cinematographers category american film directors category living people categoryouthostelling category backpacking category adventure travel","main_words":["birth","place","rhode_island","residence","manhattanew","york_city","nationality","names","known","documentary","map","saturday","award_winning","associate","producer","cable","director","producer","employer","washington_post","brook","silva","braga","born","march","back","cover","map","saturday","dvd","producer","shared","award","production","inside","best_known","documentary","map","saturday","whiche","starred","award_winning","film","adventures","backpacking_travel","backpacker","months","whiche","stayed","various","hostel","released","film","one_day","africa","released","third","film","released","china","question","currently","washington_post","cbs","news","cbs","cbs","early","career","silva","braga","born","raised","portsmouth","rhode_island","producer","hbo","inside","whiche","shared","award","map","saturday","making","film","silva","braga","job","threw","away","travel","around","globe","almost","year","video","camerand","equipmento","record","adventures","started","hbo","sent","asia","work","another","story","discovered","underground","network","backpacking_travel","backpackers","enchanted","director","map","saturday","october","found","eva","young","web_site","retrieved_november","job","told","future","send","married","producers","overseas","interview","retrieved_november","finished","film","said","changed","outlook","life","film","billed","around","world","minutes","melinda","j","benson","found","northern","ohio","live","web_site","retrieved_november","title","describes","feeling","trip","around","world","every_day","feels","like","saturday","blog","found","web_site","movies","see","blog","everyday","new","person","instant","best","friend","need","guide","deal","loss","connection","kelly","cool","tool","map","saturday","review","found","kevin","kelly","web_site","retrieved_november","silva","braga","stays","hostel","around","world","showing","us","hot","spots","backpacking","adventure","australia","southeast_asia","indiand","places","like","brazil","nepal","thailand","forced","pack","five","pounds","clothes","pounds","video","equipment","stay","many_hostels","save","money","interviews","various","fellow","travellers","along","way","people","take","long_term","budgetravel","map","saturday","official","web_site","retrieved_november","web_site","retrieved_november","documentary","premiered","athe","cleveland","international","film_festival","wascreened","four_times","cleveland","international","film_festival","official","web_site","retrieved_november","benson","melinda","j","found","northern","ohio","live","web_site","retrieved_november","film","fest","competitive","one","drawing","film","wascreened","times","rather","average","times","typical","film","athe","festival","film_festival","world","web_site","retrieved_november","cleveland","film","society","organizers","film_festival","created","live","podcast","panel","cleveland","film","society","podcast","roll","retrieved_november","local","affiliate","american","broadcasting","company","abc","interviewed","town","film_festival","youtube","interview","retrieved_november","map","saturday","wascreened","paris_france","shortly","camera","silva","braga","used","film","music","blog","posting","hostelling_international","usa","usa","also","screening","film","selected","universities","colleges","public","libraries","hostel","councils","bryant","university","official","web_page","november","news","release","retrieved_november","albany","public_library","official","web_page","retrieved_february","map","saturday","wascreened","mtv","network","true","life","series","episode","mtv","web_site","true","page","retrieved_may","critical","reception","film","mostly","excellent","ceof","travel","network","wrote","well","done","praised","filmmaker","good","story","teller","sean","web_site","web_site","reviewed","premiere","cleveland","stating","director","brook","silva","braga","despite","intentions","withis","backpacking","documentary","map","saturday","opportunity","provide","insight","group","people","web_site","review","map","saturday","retrieved","braga","posted","series","blog","affiliated","across","northern","europe","brook","silva","blogs","retrieved_november","well","posting","blog","retrieved_november","onovember","silva","braga","keynote","speaker","athe_national","conference","hostelling_international","usa","washington","usa","sponsored","essay","writing","contest","called","big","trip","celebrate","event","map","saturday","official","web_site","usa","official","web_site","retrieved_november","web_site","retrieved_november","january","completed","next","documentary","one_day","africa","one_day","africa","externalinks","map","saturday","one_day","africa","china","question","category_american","film","directors","backpacking","category_adventure_travel"],"clean_bigrams":[["birth","place"],["place","rhode"],["rhode","island"],["island","residence"],["residence","manhattanew"],["manhattanew","york"],["york","city"],["city","nationality"],["names","known"],["saturday","award"],["award","winning"],["winning","associate"],["associate","producer"],["cable","tv"],["director","producer"],["producer","employer"],["washington","post"],["post","brook"],["brook","silva"],["silva","braga"],["braga","born"],["born","march"],["march","back"],["back","cover"],["saturday","dvd"],["american","documentary"],["documentary","film"],["film","producer"],["best","known"],["award","winning"],["winning","film"],["backpacking","travel"],["travel","backpacker"],["whiche","stayed"],["various","hostel"],["film","one"],["one","day"],["third","film"],["china","question"],["washington","post"],["cbs","news"],["news","cbs"],["early","career"],["career","silva"],["silva","braga"],["braga","born"],["portsmouth","rhode"],["rhode","island"],["whiche","shared"],["saturday","making"],["film","silva"],["silva","braga"],["travel","around"],["video","camerand"],["camerand","equipmento"],["equipmento","record"],["hbo","sent"],["another","story"],["underground","network"],["backpacking","travel"],["travel","backpackers"],["saturday","october"],["october","found"],["eva","young"],["young","web"],["web","site"],["site","retrieved"],["retrieved","november"],["send","married"],["married","producers"],["producers","overseas"],["interview","retrieved"],["retrieved","november"],["minutes","melinda"],["melinda","j"],["j","benson"],["northern","ohio"],["ohio","live"],["live","web"],["web","site"],["site","retrieved"],["retrieved","november"],["title","describes"],["trip","around"],["world","every"],["every","day"],["day","feels"],["feels","like"],["like","saturday"],["blog","found"],["web","site"],["site","movies"],["see","blog"],["new","person"],["instant","best"],["best","friend"],["kelly","cool"],["cool","tool"],["saturday","review"],["review","found"],["kevin","kelly"],["web","site"],["site","retrieved"],["retrieved","november"],["november","silva"],["silva","braga"],["braga","stays"],["world","showing"],["showing","us"],["hot","spots"],["backpacking","adventure"],["adventure","australia"],["australia","southeast"],["southeast","asia"],["asia","indiand"],["indiand","london"],["way","places"],["places","like"],["like","brazil"],["brazil","nepal"],["five","pounds"],["video","equipment"],["many","hostels"],["save","money"],["interviews","various"],["fellow","travellers"],["travellers","along"],["people","take"],["take","long"],["long","term"],["term","budgetravel"],["saturday","official"],["official","web"],["web","site"],["site","retrieved"],["retrieved","november"],["web","site"],["site","retrieved"],["retrieved","november"],["documentary","premiered"],["premiered","athe"],["athe","cleveland"],["cleveland","international"],["international","film"],["film","festival"],["wascreened","four"],["four","times"],["times","cleveland"],["cleveland","international"],["international","film"],["film","festival"],["festival","official"],["official","web"],["web","site"],["site","retrieved"],["retrieved","november"],["november","benson"],["benson","melinda"],["melinda","j"],["northern","ohio"],["ohio","live"],["live","web"],["web","site"],["site","retrieved"],["retrieved","november"],["film","fest"],["competitive","one"],["one","drawing"],["film","wascreened"],["wascreened","times"],["times","rather"],["average","times"],["typical","film"],["film","athe"],["athe","festival"],["festival","film"],["film","festival"],["festival","world"],["world","web"],["web","site"],["site","retrieved"],["retrieved","november"],["cleveland","film"],["film","society"],["society","organizers"],["film","festival"],["festival","created"],["live","podcast"],["cleveland","film"],["film","society"],["society","podcast"],["podcast","roll"],["roll","retrieved"],["retrieved","november"],["local","affiliate"],["american","broadcasting"],["broadcasting","company"],["company","abc"],["abc","interviewed"],["film","festival"],["festival","youtube"],["interview","retrieved"],["retrieved","november"],["saturday","wascreened"],["paris","france"],["france","shortly"],["camera","silva"],["silva","braga"],["braga","used"],["blog","posting"],["hostelling","international"],["international","usa"],["also","screening"],["selected","universities"],["universities","colleges"],["public","libraries"],["hostel","councils"],["councils","bryant"],["bryant","university"],["university","official"],["official","web"],["web","page"],["page","november"],["november","news"],["news","release"],["release","retrieved"],["retrieved","november"],["november","albany"],["albany","public"],["public","library"],["library","official"],["official","web"],["web","page"],["page","retrieved"],["retrieved","february"],["saturday","wascreened"],["mtv","network"],["true","life"],["life","series"],["series","episode"],["episode","mtv"],["mtv","web"],["web","site"],["site","true"],["page","retrieved"],["retrieved","may"],["may","critical"],["critical","reception"],["mostly","excellent"],["travel","network"],["network","wrote"],["well","done"],["good","story"],["story","teller"],["teller","sean"],["web","site"],["web","site"],["site","reviewed"],["cleveland","stating"],["director","brook"],["brook","silva"],["silva","braga"],["braga","despite"],["intentions","withis"],["withis","backpacking"],["backpacking","documentary"],["provide","insight"],["web","site"],["site","review"],["saturday","retrieved"],["braga","posted"],["across","northern"],["northern","europe"],["brook","silva"],["blogs","retrieved"],["retrieved","november"],["blog","retrieved"],["retrieved","november"],["november","onovember"],["onovember","silva"],["silva","braga"],["keynote","speaker"],["speaker","athe"],["athe","national"],["national","conference"],["hostelling","international"],["international","usa"],["usa","sponsored"],["essay","writing"],["writing","contest"],["contest","called"],["big","trip"],["saturday","official"],["official","web"],["web","site"],["usa","official"],["official","web"],["web","site"],["site","retrieved"],["retrieved","november"],["web","site"],["site","retrieved"],["retrieved","november"],["next","documentary"],["documentary","one"],["one","day"],["africa","one"],["one","day"],["africa","website"],["website","retrieved"],["retrieved","january"],["january","externalinks"],["saturday","one"],["one","day"],["china","question"],["question","category"],["category","births"],["births","category"],["category","american"],["category","american"],["american","film"],["film","directors"],["directors","category"],["category","living"],["living","people"],["people","categoryouthostelling"],["categoryouthostelling","category"],["category","backpacking"],["backpacking","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["birth place","place rhode","rhode island","island residence","residence manhattanew","manhattanew york","york city","city nationality","names known","saturday award","award winning","winning associate","associate producer","cable tv","director producer","producer employer","washington post","post brook","brook silva","silva braga","braga born","born march","march back","back cover","saturday dvd","american documentary","documentary film","film producer","best known","award winning","winning film","backpacking travel","travel backpacker","whiche stayed","various hostel","film one","one day","third film","china question","washington post","cbs news","news cbs","early career","career silva","silva braga","braga born","portsmouth rhode","rhode island","whiche shared","saturday making","film silva","silva braga","travel around","video camerand","camerand equipmento","equipmento record","hbo sent","another story","underground network","backpacking travel","travel backpackers","saturday october","october found","eva young","young web","web site","site retrieved","retrieved november","send married","married producers","producers overseas","interview retrieved","retrieved november","minutes melinda","melinda j","j benson","northern ohio","ohio live","live web","web site","site retrieved","retrieved november","title describes","trip around","world every","every day","day feels","feels like","like saturday","blog found","web site","site movies","see blog","new person","instant best","best friend","kelly cool","cool tool","saturday review","review found","kevin kelly","web site","site retrieved","retrieved november","november silva","silva braga","braga stays","world showing","showing us","hot spots","backpacking adventure","adventure australia","australia southeast","southeast asia","asia indiand","indiand london","way places","places like","like brazil","brazil nepal","five pounds","video equipment","many hostels","save money","interviews various","fellow travellers","travellers along","people take","take long","long term","term budgetravel","saturday official","official web","web site","site retrieved","retrieved november","web site","site retrieved","retrieved november","documentary premiered","premiered athe","athe cleveland","cleveland international","international film","film festival","wascreened four","four times","times cleveland","cleveland international","international film","film festival","festival official","official web","web site","site retrieved","retrieved november","november benson","benson melinda","melinda j","northern ohio","ohio live","live web","web site","site retrieved","retrieved november","film fest","competitive one","one drawing","film wascreened","wascreened times","times rather","average times","typical film","film athe","athe festival","festival film","film festival","festival world","world web","web site","site retrieved","retrieved november","cleveland film","film society","society organizers","film festival","festival created","live podcast","cleveland film","film society","society podcast","podcast roll","roll retrieved","retrieved november","local affiliate","american broadcasting","broadcasting company","company abc","abc interviewed","film festival","festival youtube","interview retrieved","retrieved november","saturday wascreened","paris france","france shortly","camera silva","silva braga","braga used","blog posting","hostelling international","international usa","also screening","selected universities","universities colleges","public libraries","hostel councils","councils bryant","bryant university","university official","official web","web page","page november","november news","news release","release retrieved","retrieved november","november albany","albany public","public library","library official","official web","web page","page retrieved","retrieved february","saturday wascreened","mtv network","true life","life series","series episode","episode mtv","mtv web","web site","site true","page retrieved","retrieved may","may critical","critical reception","mostly excellent","travel network","network wrote","well done","good story","story teller","teller sean","web site","web site","site reviewed","cleveland stating","director brook","brook silva","silva braga","braga despite","intentions withis","withis backpacking","backpacking documentary","provide insight","web site","site review","saturday retrieved","braga posted","across northern","northern europe","brook silva","blogs retrieved","retrieved november","blog retrieved","retrieved november","november onovember","onovember silva","silva braga","keynote speaker","speaker athe","athe national","national conference","hostelling international","international usa","usa sponsored","essay writing","writing contest","contest called","big trip","saturday official","official web","web site","usa official","official web","web site","site retrieved","retrieved november","web site","site retrieved","retrieved november","next documentary","documentary one","one day","africa one","one day","africa website","website retrieved","retrieved january","january externalinks","saturday one","one day","china question","question category","category births","births category","category american","category american","american film","film directors","directors category","category living","living people","people categoryouthostelling","categoryouthostelling category","category backpacking","backpacking category","category adventure","adventure travel"],"new_description":"birth place rhode_island residence manhattanew york_city nationality names known documentary map saturday award_winning associate producer cable tv director producer employer washington_post brook silva braga born march back cover map saturday dvd american_documentary_film producer shared award production inside best_known documentary map saturday whiche starred award_winning film adventures backpacking_travel backpacker months whiche stayed various hostel released film one_day africa released third film released china question currently washington_post cbs news cbs cbs early career silva braga born raised portsmouth rhode_island producer hbo inside whiche shared award map saturday making film silva braga job threw away travel around globe almost year video camerand equipmento record adventures started hbo sent asia work another story discovered underground network backpacking_travel backpackers enchanted director map saturday october found eva young web_site retrieved_november job told future send married producers overseas interview retrieved_november finished film said changed outlook life film billed around world minutes melinda j benson found northern ohio live web_site retrieved_november title describes feeling trip around world every_day feels like saturday blog found web_site movies see blog everyday new person instant best friend need guide deal loss connection kelly cool tool map saturday review found kevin kelly web_site retrieved_november silva braga stays hostel around world showing us hot spots backpacking adventure australia southeast_asia indiand london_way places like brazil nepal thailand forced pack five pounds clothes pounds video equipment stay many_hostels save money interviews various fellow travellers along way people take long_term budgetravel map saturday official web_site retrieved_november web_site retrieved_november documentary premiered athe cleveland international film_festival wascreened four_times cleveland international film_festival official web_site retrieved_november benson melinda j found northern ohio live web_site retrieved_november film fest competitive one drawing film wascreened times rather average times typical film athe festival film_festival world web_site retrieved_november cleveland film society organizers film_festival created live podcast panel cleveland film society podcast roll retrieved_november local affiliate american broadcasting company abc interviewed town film_festival youtube interview retrieved_november map saturday wascreened paris_france shortly camera silva braga used film music blog posting hostelling_international usa usa also screening film selected universities colleges public libraries hostel councils bryant university official web_page november news release retrieved_november albany public_library official web_page retrieved_february map saturday wascreened mtv network true life series episode mtv web_site true page retrieved_may critical reception film mostly excellent ceof travel network wrote well done praised filmmaker good story teller sean web_site web_site reviewed premiere cleveland stating director brook silva braga despite intentions withis backpacking documentary map saturday opportunity provide insight group people web_site review map saturday retrieved braga posted series blog affiliated across northern europe brook silva blogs retrieved_november well posting blog retrieved_november onovember silva braga keynote speaker athe_national conference hostelling_international usa washington usa sponsored essay writing contest called big trip celebrate event map saturday official web_site usa official web_site retrieved_november web_site retrieved_november january completed next documentary one_day africa one_day africa website_retrieved_january externalinks map saturday one_day africa china question category_births_category_american category_american film directors category_living_people_categoryouthostelling_category backpacking category_adventure_travel"},{"title":"Bruckmann's Illustrated Guides","description":"image bruckmanns guide to munich coverpng thumb px right bruckmann s guide to munich image bruckmanns bozen griespng thumb right px bruckmann s bozen gries image bruckmanns bodenseepng thumb right px bruckmann s bodensee bruckmann s illustrated guides wereuropean travel guide book s published by a bruckmann in munich and asher co in london the series also appeared in a german languagedition entitled bruckmann s illustrierte reisef hrer furthereading in english in german category travel guide books category series of books category publications established in category books about europe","main_words":["image","guide","munich","coverpng_thumb","px","right","bruckmann","guide","munich","image","thumb","right","px","bruckmann","image","thumb","right","px","bruckmann","bodensee","bruckmann","illustrated","guides","travel_guide_book","published","bruckmann","munich","london","series","also","appeared","german","entitled","bruckmann","hrer","furthereading","english","german","category_travel_guide_books","category_series","books_category","publications_established","category_books","europe"],"clean_bigrams":[["munich","coverpng"],["coverpng","thumb"],["thumb","px"],["px","right"],["right","bruckmann"],["munich","image"],["thumb","right"],["right","px"],["px","bruckmann"],["thumb","right"],["right","px"],["px","bruckmann"],["bodensee","bruckmann"],["illustrated","guides"],["travel","guide"],["guide","book"],["series","also"],["also","appeared"],["entitled","bruckmann"],["hrer","furthereading"],["german","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","books"]],"all_collocations":["munich coverpng","coverpng thumb","right bruckmann","munich image","px bruckmann","px bruckmann","bodensee bruckmann","illustrated guides","travel guide","guide book","series also","also appeared","entitled bruckmann","hrer furthereading","german category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category books"],"new_description":"image guide munich coverpng_thumb px right bruckmann guide munich image thumb right px bruckmann image thumb right px bruckmann bodensee bruckmann illustrated guides travel_guide_book published bruckmann munich london series also appeared german entitled bruckmann hrer furthereading english german category_travel_guide_books category_series books_category publications_established category_books europe"},{"title":"Bunkhouse","description":"file murphys point bunkhousejpg thumbunkhouse a bunkhouse is a barracks like building that historically was used to house working cowboy s on ranch es inorth americas most cowboys were young single men the standard bunkhouse was a large open room with narrow beds or cots for each individual and little privacy the bunkhouse of the late th century was usually heated by a wood stove and personal needs were attended to in an outhouse while the modern bunkhouse today istill in existence on some large ranches that are too far away from towns for an easy daily commute it now has electricity central heating and modern indoor plumbing in the united kingdom a bunkhouse provides accommodation with fewer facilities than a larger staffed youthostel bunkhouses are found in mountainous areasuch as the scottishighlands as well as rural areas in england wales for example at all stretton yhall stretton bunkhousee also ranch guest ranch mountain hut externalinks category american old west category hostels category adventure travel category backpacking category hotel types","main_words":["file","point","bunkhouse","barracks","like","building","historically","used","house","working","cowboy","ranch","cowboys","young","single","men","standard","bunkhouse","large","open","room","narrow","beds","cots","individual","little","privacy","bunkhouse","late_th","century","usually","heated","wood","stove","personal","needs","attended","modern","bunkhouse","today","istill","existence","large","ranches","far","away","towns","easy","daily","electricity","central","heating","modern","indoor","plumbing","united_kingdom","bunkhouse","provides","accommodation","fewer","facilities","larger","youthostel","found","mountainous","areasuch","well","rural_areas","england_wales","example","also","ranch","guest","ranch","mountain","hut","externalinks_category_american","old","west","category","hostels","category_adventure_travel_category","backpacking","category_hotel","types"],"clean_bigrams":[["barracks","like"],["like","building"],["house","working"],["working","cowboy"],["inorth","americas"],["young","single"],["single","men"],["standard","bunkhouse"],["large","open"],["open","room"],["narrow","beds"],["little","privacy"],["late","th"],["th","century"],["usually","heated"],["wood","stove"],["personal","needs"],["modern","bunkhouse"],["bunkhouse","today"],["today","istill"],["large","ranches"],["far","away"],["easy","daily"],["electricity","central"],["central","heating"],["modern","indoor"],["indoor","plumbing"],["united","kingdom"],["bunkhouse","provides"],["provides","accommodation"],["fewer","facilities"],["mountainous","areasuch"],["rural","areas"],["england","wales"],["also","ranch"],["ranch","guest"],["guest","ranch"],["ranch","mountain"],["mountain","hut"],["hut","externalinks"],["externalinks","category"],["category","american"],["american","old"],["old","west"],["west","category"],["category","hostels"],["hostels","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","backpacking"],["backpacking","category"],["category","hotel"],["hotel","types"]],"all_collocations":["barracks like","like building","house working","working cowboy","inorth americas","young single","single men","standard bunkhouse","large open","open room","narrow beds","little privacy","late th","th century","usually heated","wood stove","personal needs","modern bunkhouse","bunkhouse today","today istill","large ranches","far away","easy daily","electricity central","central heating","modern indoor","indoor plumbing","united kingdom","bunkhouse provides","provides accommodation","fewer facilities","mountainous areasuch","rural areas","england wales","also ranch","ranch guest","guest ranch","ranch mountain","mountain hut","hut externalinks","externalinks category","category american","american old","old west","west category","category hostels","hostels category","category adventure","adventure travel","travel category","category backpacking","backpacking category","category hotel","hotel types"],"new_description":"file point bunkhouse barracks like building historically used house working cowboy ranch inorth_americas cowboys young single men standard bunkhouse large open room narrow beds cots individual little privacy bunkhouse late_th century usually heated wood stove personal needs attended modern bunkhouse today istill existence large ranches far away towns easy daily electricity central heating modern indoor plumbing united_kingdom bunkhouse provides accommodation fewer facilities larger youthostel found mountainous areasuch well rural_areas england_wales example also ranch guest ranch mountain hut externalinks_category_american old west category hostels category_adventure_travel_category backpacking category_hotel types"},{"title":"Business Events Sydney","description":"business eventsydney formerly known asydney convention and visitors bureau marketsydney and new south wales as a destination for australiand international business meetings incentives conventions and exhibitions class wikitable cellspacing style float right clearight color black background f f border px solid aaa margin em padding em border spacing em text align center line height em font size cellpadding business eventsydney facts full title business eventsydney head office sydney nsw australia founded established in then called the sydney convention and visitors bureau scvb in septemberenamed organisation to business eventsydney industry events tourism staff offices australiasia north america europe uk board members website business eventsydney is a not for profit membership based organisation that provides assistance and advice on planning and holding events in sydney they are also responsible for marketing sydney and new south wales as a business events destination to individuals and organisations to australiand the world they help to bid on win and hold conferences major events convention meeting conventions business meetings and congresses in sydney athe state level they operate accessnsw a service for planning events conferences and incentives throughout new south wales history business eventsydney is a year partnership between the government of new south wales and the tourism industry before september business eventsydney was known as the sydney convention and visitors bureau funding business eventsydney is a not for profit organisation and is jointly supported by the nsw government and the membership base green sydney business eventsydney promotesydney as an environmentally friendly city due to the actions of citizens businesses and local movements business eventsydney supports the green conventions green meetings industry council s agenda for what should comprise a green meeting these are conferences events incentives and meetings that have zero net environmental effect fully integratenvironmental responsibility into return on investment roi analysis are accepted and standard industry practice achieveconomic and strategic business goals minimise or eliminatenvironmental impacts and positively contribute to thenvironment and host communities business eventsydney major partners and industry bodies business eventsydney is pleased to work collaboratively with our major partners and industry bodies major partners destinationsw sydney harbour foreshore authority city of sydney convention and exhibition centre in darling harbour accor industry bodies australian tourism export council atec association of australia convention bureaux aacbusiness events australia bea business events council of australia future convention cities initiative fccinternational congress and convention association icca qantasydney airport sydney business chamber sydney olympic park authority sydney opera house tourism and transport forum ttf sydney s ranking as a business event city sydney has maintained the position as australia s leading business events destination in financial year sydney won a record event bids with an economic impact of million an increase of on the previous year of thesevents were asian business with an estimated economic impact of million which will see corporate incentive and meeting clients travel to australia some highlight eventsecured by besydney in fy include perfect china leadership seminar delegates worth an estimated economic impact of million iucn world parks congress delegates worth an estimated million th congress of the international society forgan donation and procurement isodp delegates worth an estimated million references externalinks category companies based in sydney category event management companies category tourism agencies category tourism in sydney","main_words":["business","formerly_known","convention_visitors_bureau","new_south_wales","destination","australiand","international","business","meetings","incentives","conventions","exhibitions","class","wikitable_style","float","right","color","black","background","f","f","border","aaa","margin","padding","border","text","align","center","line","height","font_size","cellpadding","business_eventsydney","facts","full","title","business_eventsydney","head_office","sydney","nsw","australia","founded","established","called","sydney","convention_visitors_bureau","organisation","business_eventsydney","industry","events","tourism","staff","offices","north_america","europe","uk","board","members","website","business_eventsydney","profit","membership","based","organisation","provides","assistance","advice","planning","holding","events","sydney","also","responsible","marketing","sydney","new_south_wales","business","events","destination","individuals","organisations","australiand","world","help","bid","win","hold","conferences","major","events","convention_meeting","conventions","business","meetings","sydney","athe","state","level","operate","service","planning","events","conferences","incentives","throughout","new_south_wales","history","business_eventsydney","year","partnership","government","new_south_wales","tourism_industry","september","business_eventsydney","known","sydney","convention_visitors_bureau","funding","business_eventsydney","profit","organisation","jointly","supported","nsw","government","membership","base","green","sydney","business_eventsydney","environmentally","friendly","city","due","actions","citizens","businesses","local","movements","business_eventsydney","supports","green","conventions","green","meetings","industry","council","agenda","comprise","green","meeting","conferences","events","incentives","meetings","zero","net","environmental","effect","fully","responsibility","return","investment","analysis","accepted","standard","industry","practice","strategic","business","goals","impacts","positively","contribute","thenvironment","host_communities","business_eventsydney","major","partners","industry","bodies","business_eventsydney","pleased","work","major","partners","industry","bodies","major","partners","sydney_harbour","authority","city","sydney","convention","exhibition","centre","darling","harbour","accor","industry","bodies","australian","tourism","export","council","association","australia","convention_bureaux","events","australia","business","events","council","australia","future","convention","cities","initiative","congress","convention","association","icca","airport","sydney","business","chamber","sydney","olympic","park","authority","sydney","opera_house","tourism","transport","forum","sydney","ranking","business","event","city","sydney","maintained","position","australia","leading","business","events","destination","financial","year","sydney","record","event","economic_impact","million","increase","previous","year","thesevents","asian","business","estimated","economic_impact","million","see","corporate","incentive","meeting","clients","travel","australia","highlight","include","perfect","china","leadership","delegates","worth","estimated","economic_impact","million","iucn","world","parks","congress","delegates","worth","estimated","million","th","congress","international","society","donation","procurement","delegates","worth","estimated","million","references_externalinks","category_companies_based","event","management","agencies_category_tourism","sydney"],"clean_bigrams":[["business","eventsydney"],["eventsydney","formerly"],["formerly","known"],["visitors","bureau"],["new","south"],["south","wales"],["australiand","international"],["international","business"],["business","meetings"],["meetings","incentives"],["incentives","conventions"],["exhibitions","class"],["class","wikitable"],["style","float"],["float","right"],["color","black"],["black","background"],["background","f"],["f","f"],["f","border"],["border","px"],["px","solid"],["solid","aaa"],["aaa","margin"],["text","align"],["align","center"],["center","line"],["line","height"],["font","size"],["size","cellpadding"],["cellpadding","business"],["business","eventsydney"],["eventsydney","facts"],["facts","full"],["full","title"],["title","business"],["business","eventsydney"],["eventsydney","head"],["head","office"],["office","sydney"],["sydney","nsw"],["nsw","australia"],["australia","founded"],["founded","established"],["sydney","convention"],["visitors","bureau"],["business","eventsydney"],["eventsydney","industry"],["industry","events"],["events","tourism"],["tourism","staff"],["staff","offices"],["north","america"],["america","europe"],["europe","uk"],["uk","board"],["board","members"],["members","website"],["website","business"],["business","eventsydney"],["profit","membership"],["membership","based"],["based","organisation"],["provides","assistance"],["holding","events"],["also","responsible"],["marketing","sydney"],["new","south"],["south","wales"],["business","events"],["events","destination"],["hold","conferences"],["conferences","major"],["major","events"],["events","convention"],["convention","meeting"],["meeting","conventions"],["conventions","business"],["business","meetings"],["sydney","athe"],["athe","state"],["state","level"],["planning","events"],["events","conferences"],["incentives","throughout"],["throughout","new"],["new","south"],["south","wales"],["wales","history"],["history","business"],["business","eventsydney"],["year","partnership"],["new","south"],["south","wales"],["tourism","industry"],["september","business"],["business","eventsydney"],["sydney","convention"],["visitors","bureau"],["bureau","funding"],["funding","business"],["business","eventsydney"],["profit","organisation"],["jointly","supported"],["nsw","government"],["membership","base"],["base","green"],["green","sydney"],["sydney","business"],["business","eventsydney"],["environmentally","friendly"],["friendly","city"],["city","due"],["citizens","businesses"],["local","movements"],["movements","business"],["business","eventsydney"],["eventsydney","supports"],["green","conventions"],["conventions","green"],["green","meetings"],["meetings","industry"],["industry","council"],["green","meeting"],["conferences","events"],["events","incentives"],["zero","net"],["net","environmental"],["environmental","effect"],["effect","fully"],["standard","industry"],["industry","practice"],["strategic","business"],["business","goals"],["positively","contribute"],["host","communities"],["communities","business"],["business","eventsydney"],["eventsydney","major"],["major","partners"],["industry","bodies"],["bodies","business"],["business","eventsydney"],["major","partners"],["industry","bodies"],["bodies","major"],["major","partners"],["sydney","harbour"],["authority","city"],["city","sydney"],["sydney","convention"],["exhibition","centre"],["darling","harbour"],["harbour","accor"],["accor","industry"],["industry","bodies"],["bodies","australian"],["australian","tourism"],["tourism","export"],["export","council"],["australia","convention"],["convention","bureaux"],["events","australia"],["business","events"],["events","council"],["australia","future"],["future","convention"],["convention","cities"],["cities","initiative"],["convention","association"],["association","icca"],["airport","sydney"],["sydney","business"],["business","chamber"],["chamber","sydney"],["sydney","olympic"],["olympic","park"],["park","authority"],["authority","sydney"],["sydney","opera"],["opera","house"],["house","tourism"],["transport","forum"],["business","event"],["event","city"],["city","sydney"],["leading","business"],["business","events"],["events","destination"],["financial","year"],["year","sydney"],["record","event"],["economic","impact"],["previous","year"],["asian","business"],["estimated","economic"],["economic","impact"],["see","corporate"],["corporate","incentive"],["meeting","clients"],["clients","travel"],["include","perfect"],["perfect","china"],["china","leadership"],["delegates","worth"],["estimated","economic"],["economic","impact"],["million","iucn"],["iucn","world"],["world","parks"],["parks","congress"],["congress","delegates"],["delegates","worth"],["estimated","million"],["million","th"],["th","congress"],["international","society"],["delegates","worth"],["estimated","million"],["million","references"],["references","externalinks"],["externalinks","category"],["category","companies"],["companies","based"],["sydney","category"],["category","event"],["event","management"],["management","companies"],["companies","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"]],"all_collocations":["business eventsydney","eventsydney formerly","formerly known","visitors bureau","new south","south wales","australiand international","international business","business meetings","meetings incentives","incentives conventions","exhibitions class","style float","float right","color black","black background","background f","f f","f border","border px","px solid","solid aaa","aaa margin","center line","line height","font size","size cellpadding","cellpadding business","business eventsydney","eventsydney facts","facts full","full title","title business","business eventsydney","eventsydney head","head office","office sydney","sydney nsw","nsw australia","australia founded","founded established","sydney convention","visitors bureau","business eventsydney","eventsydney industry","industry events","events tourism","tourism staff","staff offices","north america","america europe","europe uk","uk board","board members","members website","website business","business eventsydney","profit membership","membership based","based organisation","provides assistance","holding events","also responsible","marketing sydney","new south","south wales","business events","events destination","hold conferences","conferences major","major events","events convention","convention meeting","meeting conventions","conventions business","business meetings","sydney athe","athe state","state level","planning events","events conferences","incentives throughout","throughout new","new south","south wales","wales history","history business","business eventsydney","year partnership","new south","south wales","tourism industry","september business","business eventsydney","sydney convention","visitors bureau","bureau funding","funding business","business eventsydney","profit organisation","jointly supported","nsw government","membership base","base green","green sydney","sydney business","business eventsydney","environmentally friendly","friendly city","city due","citizens businesses","local movements","movements business","business eventsydney","eventsydney supports","green conventions","conventions green","green meetings","meetings industry","industry council","green meeting","conferences events","events incentives","zero net","net environmental","environmental effect","effect fully","standard industry","industry practice","strategic business","business goals","positively contribute","host communities","communities business","business eventsydney","eventsydney major","major partners","industry bodies","bodies business","business eventsydney","major partners","industry bodies","bodies major","major partners","sydney harbour","authority city","city sydney","sydney convention","exhibition centre","darling harbour","harbour accor","accor industry","industry bodies","bodies australian","australian tourism","tourism export","export council","australia convention","convention bureaux","events australia","business events","events council","australia future","future convention","convention cities","cities initiative","convention association","association icca","airport sydney","sydney business","business chamber","chamber sydney","sydney olympic","olympic park","park authority","authority sydney","sydney opera","opera house","house tourism","transport forum","business event","event city","city sydney","leading business","business events","events destination","financial year","year sydney","record event","economic impact","previous year","asian business","estimated economic","economic impact","see corporate","corporate incentive","meeting clients","clients travel","include perfect","perfect china","china leadership","delegates worth","estimated economic","economic impact","million iucn","iucn world","world parks","parks congress","congress delegates","delegates worth","estimated million","million th","th congress","international society","delegates worth","estimated million","million references","references externalinks","externalinks category","category companies","companies based","sydney category","category event","event management","management companies","companies category","category tourism","tourism agencies","agencies category","category tourism"],"new_description":"business eventsydney formerly_known convention_visitors_bureau new_south_wales destination australiand international business meetings incentives conventions exhibitions class wikitable_style float right color black background f f border px_solid aaa margin padding border text align center line height font_size cellpadding business_eventsydney facts full title business_eventsydney head_office sydney nsw australia founded established called sydney convention_visitors_bureau organisation business_eventsydney industry events tourism staff offices north_america europe uk board members website business_eventsydney profit membership based organisation provides assistance advice planning holding events sydney also responsible marketing sydney new_south_wales business events destination individuals organisations australiand world help bid win hold conferences major events convention_meeting conventions business meetings sydney athe state level operate service planning events conferences incentives throughout new_south_wales history business_eventsydney year partnership government new_south_wales tourism_industry september business_eventsydney known sydney convention_visitors_bureau funding business_eventsydney profit organisation jointly supported nsw government membership base green sydney business_eventsydney environmentally friendly city due actions citizens businesses local movements business_eventsydney supports green conventions green meetings industry council agenda comprise green meeting conferences events incentives meetings zero net environmental effect fully responsibility return investment analysis accepted standard industry practice strategic business goals impacts positively contribute thenvironment host_communities business_eventsydney major partners industry bodies business_eventsydney pleased work major partners industry bodies major partners sydney_harbour authority city sydney convention exhibition centre darling harbour accor industry bodies australian tourism export council association australia convention_bureaux events australia business events council australia future convention cities initiative congress convention association icca airport sydney business chamber sydney olympic park authority sydney opera_house tourism transport forum sydney ranking business event city sydney maintained position australia leading business events destination financial year sydney record event economic_impact million increase previous year thesevents asian business estimated economic_impact million see corporate incentive meeting clients travel australia highlight include perfect china leadership delegates worth estimated economic_impact million iucn world parks congress delegates worth estimated million th congress international society donation procurement delegates worth estimated million references_externalinks category_companies_based sydney_category event management companies_category_tourism agencies_category_tourism sydney"},{"title":"Business tourism","description":"business tourism or business travel is a more limited and focused subset of regular tourism during business tourism traveling individuals are still working and being paid but are doing so away from botheir workplace and home some definitions of tourism tend to exclude business travel however the world tourism organization wto defines tourists as people traveling to and staying in places outside their usual environment for not more than one consecutive year for leisure business and other purposes primary business tourism activities include meetings and attending conferences and exhibitions despite the term business in business tourism when individuals from government or non profit organizations engage in similar activities this still categorized as business tourism travel historically business tourism is in the form of traveling to spending money and staying abroad away for some time has a history as long as that of international trade in late th century business tourism iseen as a major industry according to the data from the british tourist authority and national tourist boards business tourism accounted for about of all trips tor within uk and of the tourist market within uk a estimate suggested thathose numbers for uk may be closer to sharma cited a wto estimated that business tourism accounts for of international tourism through its importance variesignificantly between different countries compared to regular tourism business ones involves a smaller section of the population with different motivations and additional freedom of choice limiting constrains imposed through the business aspects destinations of business tourism are much more likely to be areasignificantly developed for business purposes cities industrial regions etc an average business tourist is more wealthy than average leisure tourist and is expected to spend more money business tourism can be divided into primary and secondary activities primary one are business work related and included activitiesuch as consultations inspections and attending meetingsecondary ones arelated tourism leisure and include activitiesuch as dining out recreation shopping sightseeing meeting others for leisure activities and son while the primary ones are seen as more importanthe secondary ones are nonetheless often described asubstantial business tourism can involve individual and small group travel andestinations can include small to larger meetings including convention meeting conventions and conferences trade fair s and exhibition s in the united states about half of business tourism involves attending a large meeting of such kind mostourist facilitiesuch as airports restaurants and hotels are shared between leisure and business tourists through a seasonal difference is often apparent for example business tourismay use those facilities during times less attractive for leisure touristsuch as when the weather conditions are less attractive business tourism can be divided into traditional business traveling or meetings intended for face to face meetings with business partners in different locations incentive trips a job perk aimed at motivating employees for example approximately a third of uk companies use thistrategy to motivate workers conference and exhibition traveling intended for attending large scale meetings in an estimated number of conferences worldwide for primary destinations are paris london madrid geneva brussels washingtonew york sydney and singapore the words meetings incentive conferences and exhibition in the context of business tourism are abbreviated as mice see also environmental impact of aviation hypermobility travel marketing category working conditions category types of tourism category types of travel category business tourism","main_words":["business","limited","focused","subset","regular","tourism_business","individuals","still","working","paid","away","workplace","home","definitions","tourism","tend","business_travel","however","world_tourism","organization","wto","defines","tourists","people","traveling","staying","places","outside","usual","environment","one","consecutive","year","leisure","business","purposes","primary","include","meetings","attending","conferences","exhibitions","despite","term","business","business_tourism","individuals","government","non_profit","organizations","engage","similar","activities","still","categorized","business_tourism","travel","historically","business_tourism","form","traveling","spending","money","staying","abroad","away","time","history","long","international_trade","late_th","century","business_tourism","iseen","major","industry","according","data","british","tourist","authority","business_tourism","accounted","trips","tor","within","uk","tourist","market","within","uk","estimate","suggested","thathose","numbers","uk","may","closer","cited","wto","estimated","business_tourism","accounts","international_tourism","importance","different_countries","compared","regular","tourism_business","ones","involves","smaller","section","population","different","motivations","additional","freedom","choice","limiting","imposed","business","aspects","destinations","business_tourism","much","likely","developed","business","purposes","cities","industrial","regions","etc","average","business","tourist","wealthy","average","leisure","tourist","expected","spend","money","business_tourism","divided","primary","secondary","activities","primary","one","business","work","related","included","activitiesuch","inspections","attending","ones","arelated","tourism","leisure","include","activitiesuch","dining","recreation","shopping","sightseeing","meeting","others","leisure","activities","son","primary","ones","seen","secondary","ones","nonetheless","often","described","business_tourism","involve","individual","small","group","travel","andestinations","include","small","larger","meetings","including","convention_meeting","conventions","conferences","trade","fair","exhibition","united_states","half","business_tourism","involves","attending","large","meeting","kind","facilitiesuch","airports","restaurants_hotels","shared","leisure","business","tourists","seasonal","difference","often","apparent","example","use","facilities","times","less","attractive","leisure","weather","conditions","less","attractive","business_tourism","divided","traditional","meetings","intended","face","face","meetings","business","partners","different","locations","incentive","trips","job","aimed","employees","example","approximately","third","uk","companies","use","motivate","workers","conference","exhibition","traveling","intended","attending","large_scale","meetings","estimated","number","conferences","worldwide","primary","destinations","paris","london","madrid","geneva","brussels","york","sydney","singapore","words","meetings","incentive","conferences","exhibition","context","business_tourism","abbreviated","mice","see_also","environmental_impact","aviation","hypermobility","category","working","conditions","category_types","tourism_category_types","travel_category","business_tourism"],"clean_bigrams":[["business","tourism"],["tourism","business"],["business","travel"],["focused","subset"],["regular","tourism"],["tourism","business"],["business","tourism"],["tourism","traveling"],["traveling","individuals"],["still","working"],["tourism","tend"],["business","travel"],["travel","however"],["world","tourism"],["tourism","organization"],["organization","wto"],["wto","defines"],["defines","tourists"],["people","traveling"],["places","outside"],["usual","environment"],["one","consecutive"],["consecutive","year"],["leisure","business"],["business","purposes"],["purposes","primary"],["primary","business"],["business","tourism"],["tourism","activities"],["activities","include"],["include","meetings"],["attending","conferences"],["exhibitions","despite"],["term","business"],["business","tourism"],["non","profit"],["profit","organizations"],["organizations","engage"],["similar","activities"],["still","categorized"],["business","tourism"],["tourism","travel"],["travel","historically"],["historically","business"],["business","tourism"],["spending","money"],["staying","abroad"],["abroad","away"],["international","trade"],["late","th"],["th","century"],["century","business"],["business","tourism"],["tourism","iseen"],["major","industry"],["industry","according"],["british","tourist"],["tourist","authority"],["national","tourist"],["tourist","boards"],["boards","business"],["business","tourism"],["tourism","accounted"],["trips","tor"],["tor","within"],["within","uk"],["tourist","market"],["market","within"],["within","uk"],["estimate","suggested"],["suggested","thathose"],["thathose","numbers"],["uk","may"],["wto","estimated"],["business","tourism"],["tourism","accounts"],["international","tourism"],["different","countries"],["countries","compared"],["regular","tourism"],["tourism","business"],["business","ones"],["ones","involves"],["smaller","section"],["different","motivations"],["additional","freedom"],["choice","limiting"],["business","aspects"],["aspects","destinations"],["business","tourism"],["business","purposes"],["purposes","cities"],["cities","industrial"],["industrial","regions"],["regions","etc"],["average","business"],["business","tourist"],["average","leisure"],["leisure","tourist"],["money","business"],["business","tourism"],["secondary","activities"],["activities","primary"],["primary","one"],["business","work"],["work","related"],["included","activitiesuch"],["ones","arelated"],["arelated","tourism"],["tourism","leisure"],["include","activitiesuch"],["recreation","shopping"],["shopping","sightseeing"],["sightseeing","meeting"],["meeting","others"],["leisure","activities"],["primary","ones"],["secondary","ones"],["nonetheless","often"],["often","described"],["business","tourism"],["involve","individual"],["small","group"],["group","travel"],["travel","andestinations"],["include","small"],["larger","meetings"],["meetings","including"],["including","convention"],["convention","meeting"],["meeting","conventions"],["conferences","trade"],["trade","fair"],["united","states"],["business","tourism"],["tourism","involves"],["involves","attending"],["attending","large"],["large","meeting"],["airports","restaurants"],["leisure","business"],["business","tourists"],["seasonal","difference"],["often","apparent"],["example","business"],["business","tourismay"],["tourismay","use"],["times","less"],["less","attractive"],["weather","conditions"],["less","attractive"],["attractive","business"],["business","tourism"],["traditional","business"],["business","traveling"],["meetings","intended"],["face","meetings"],["business","partners"],["different","locations"],["locations","incentive"],["incentive","trips"],["example","approximately"],["uk","companies"],["companies","use"],["motivate","workers"],["workers","conference"],["exhibition","traveling"],["traveling","intended"],["attending","large"],["large","scale"],["scale","meetings"],["estimated","number"],["conferences","worldwide"],["primary","destinations"],["paris","london"],["london","madrid"],["madrid","geneva"],["geneva","brussels"],["york","sydney"],["words","meetings"],["meetings","incentive"],["incentive","conferences"],["business","tourism"],["mice","see"],["see","also"],["also","environmental"],["environmental","impact"],["aviation","hypermobility"],["hypermobility","travel"],["travel","marketing"],["marketing","category"],["category","working"],["working","conditions"],["conditions","category"],["category","types"],["tourism","category"],["category","types"],["travel","category"],["category","business"],["business","tourism"]],"all_collocations":["business tourism","tourism business","business travel","focused subset","regular tourism","tourism business","business tourism","tourism traveling","traveling individuals","still working","tourism tend","business travel","travel however","world tourism","tourism organization","organization wto","wto defines","defines tourists","people traveling","places outside","usual environment","one consecutive","consecutive year","leisure business","business purposes","purposes primary","primary business","business tourism","tourism activities","activities include","include meetings","attending conferences","exhibitions despite","term business","business tourism","non profit","profit organizations","organizations engage","similar activities","still categorized","business tourism","tourism travel","travel historically","historically business","business tourism","spending money","staying abroad","abroad away","international trade","late th","th century","century business","business tourism","tourism iseen","major industry","industry according","british tourist","tourist authority","national tourist","tourist boards","boards business","business tourism","tourism accounted","trips tor","tor within","within uk","tourist market","market within","within uk","estimate suggested","suggested thathose","thathose numbers","uk may","wto estimated","business tourism","tourism accounts","international tourism","different countries","countries compared","regular tourism","tourism business","business ones","ones involves","smaller section","different motivations","additional freedom","choice limiting","business aspects","aspects destinations","business tourism","business purposes","purposes cities","cities industrial","industrial regions","regions etc","average business","business tourist","average leisure","leisure tourist","money business","business tourism","secondary activities","activities primary","primary one","business work","work related","included activitiesuch","ones arelated","arelated tourism","tourism leisure","include activitiesuch","recreation shopping","shopping sightseeing","sightseeing meeting","meeting others","leisure activities","primary ones","secondary ones","nonetheless often","often described","business tourism","involve individual","small group","group travel","travel andestinations","include small","larger meetings","meetings including","including convention","convention meeting","meeting conventions","conferences trade","trade fair","united states","business tourism","tourism involves","involves attending","attending large","large meeting","airports restaurants","leisure business","business tourists","seasonal difference","often apparent","example business","business tourismay","tourismay use","times less","less attractive","weather conditions","less attractive","attractive business","business tourism","traditional business","business traveling","meetings intended","face meetings","business partners","different locations","locations incentive","incentive trips","example approximately","uk companies","companies use","motivate workers","workers conference","exhibition traveling","traveling intended","attending large","large scale","scale meetings","estimated number","conferences worldwide","primary destinations","paris london","london madrid","madrid geneva","geneva brussels","york sydney","words meetings","meetings incentive","incentive conferences","business tourism","mice see","see also","also environmental","environmental impact","aviation hypermobility","hypermobility travel","travel marketing","marketing category","category working","working conditions","conditions category","category types","tourism category","category types","travel category","category business","business tourism"],"new_description":"business tourism_business_travel limited focused subset regular tourism_business tourism_traveling individuals still working paid away workplace home definitions tourism tend business_travel however world_tourism organization wto defines tourists people traveling staying places outside usual environment one consecutive year leisure business purposes primary business_tourism_activities include meetings attending conferences exhibitions despite term business business_tourism individuals government non_profit organizations engage similar activities still categorized business_tourism travel historically business_tourism form traveling spending money staying abroad away time history long international_trade late_th century business_tourism iseen major industry according data british tourist authority national_tourist_boards business_tourism accounted trips tor within uk tourist market within uk estimate suggested thathose numbers uk may closer cited wto estimated business_tourism accounts international_tourism importance different_countries compared regular tourism_business ones involves smaller section population different motivations additional freedom choice limiting imposed business aspects destinations business_tourism much likely developed business purposes cities industrial regions etc average business tourist wealthy average leisure tourist expected spend money business_tourism divided primary secondary activities primary one business work related included activitiesuch inspections attending ones arelated tourism leisure include activitiesuch dining recreation shopping sightseeing meeting others leisure activities son primary ones seen secondary ones nonetheless often described business_tourism involve individual small group travel andestinations include small larger meetings including convention_meeting conventions conferences trade fair exhibition united_states half business_tourism involves attending large meeting kind facilitiesuch airports restaurants_hotels shared leisure business tourists seasonal difference often apparent example business_tourismay use facilities times less attractive leisure weather conditions less attractive business_tourism divided traditional business_traveling meetings intended face face meetings business partners different locations incentive trips job aimed employees example approximately third uk companies use motivate workers conference exhibition traveling intended attending large_scale meetings estimated number conferences worldwide primary destinations paris london madrid geneva brussels york sydney singapore words meetings incentive conferences exhibition context business_tourism abbreviated mice see_also environmental_impact aviation hypermobility travel_marketing category working conditions category_types tourism_category_types travel_category business_tourism"},{"title":"BYOB","description":"byob or byo is an acronym nomenclature initialismeanto stand for bring your own bottle bring your own booze bring your own beer or bring your own beverage byob is often placed on an invitation to indicate thathe host will not be providing alcoholic drink alcohol and that guests are welcome to bring their own some business establishments allow patrons to bring their own bottle sometimesubjecto fees or membership conditions or because thestablishment itself does not have license to sell alcohol the term is cited by some online sources to have been used first in thearly s to mean bring your own bottle of wine although in present day it is just as likely to mean bring your own booze or bring your own beer it was used by small restaurants that did not have liquor licenses but which weresponding to the new popularity of wine among americans by advising customers thathey could byob andrink it witheir meal somestablishments that sell alcoholic beverages for on site consumption such as bar s orestaurant s may also allow patrons to bring their own alcohol purchased from elsewhere that alcohol is usually subjecto an opening fee often the rule is limited to bottles of wine where the fee is known as corkage or a corking fee j robinson ed the oxford companion to wine third edition pg oxford university pressuch policies are greatly regulated by localiquor controlaws and liquor license licensing restrictions bottle club as an alternative to the traditional full service liquor license some jurisdictions offer a similar license known as a bottle club license it allows the business establishmento serve alcohol on the premises but only if patrons broughthe alcohol from elsewhere the license generally prohibits the business from selling its own stock of alcoholic beverages the license may require that patrons be members of thestablishment such licenses may be preferred in situations where fees or zoning conditions imposed by a full service liquor license are unwanted or impractical they may also be the only license available asome jurisdictions impose full service liquor license quotas or business class restrictions regional variations in australian wine australiand new zealand winew zealand the term byo bring your own emerged to describe business establishments that offered corkage it is believed that restaurants in melbourne in the state of victoriaustralia victoria were advertising as byo establishments by the s withe concept becoming popular inew zealand in the late s legally using new zealand as an example if your premises only holds an on licencendorsed byob license you as an owner anduty manager with a general manager s certificate are forbidden to have a wine list and sell alcohol on the premises you must have both on license on licensendorsed to have a wine list and allow byob thus calling yourestaurant fully licensed see also list of restauranterminology externalinks history and origins of drinking words and phrases fromodern drunkard magazine category alcoholaw category initialisms category parties category restauranterminology category wine terminology","main_words":["byob","acronym","stand","bring","bottle","bring","booze","bring","beer","bring","beverage","byob","often","placed","invitation","indicate","thathe","host","providing","alcoholic","drink","alcohol","guests","welcome","bring","business","establishments","allow","patrons","bring","bottle","fees","membership","conditions","thestablishment","license","sell","alcohol","term","cited","online","sources","used","first","thearly","mean","bring","bottle","wine","although","present_day","likely","mean","bring","booze","bring","beer","used","small","restaurants","liquor","licenses","new","popularity","wine","among","americans","advising","customers","thathey","could","byob","andrink","witheir","meal","somestablishments","sell","alcoholic_beverages","site","consumption","bar","orestaurant","may_also","allow","patrons","bring","alcohol","purchased","elsewhere","alcohol","usually","subjecto","opening","fee","often","rule","limited","bottles","wine","fee","known","corkage","fee","j","robinson","ed","oxford","companion","wine","third","edition","oxford_university","policies","greatly","regulated","liquor","license","licensing","restrictions","bottle","club","alternative","traditional","full_service","liquor","license","jurisdictions","offer","similar","license","known","bottle","club","license","allows","business","serve","alcohol","premises","patrons","broughthe","alcohol","elsewhere","license","generally","prohibits","business","selling","stock","alcoholic_beverages","license","may","require","patrons","members","thestablishment","licenses","may","preferred","situations","fees","zoning","conditions","imposed","full_service","liquor","license","unwanted","impractical","may_also","license","available","asome","jurisdictions","impose","full_service","liquor","license","business","class","restrictions","regional","variations","australian","wine","australiand_new_zealand","zealand","term","bring","emerged","describe","business","establishments","offered","corkage","believed","restaurants","melbourne","state","victoriaustralia_victoria","advertising","establishments","withe","concept","becoming","popular","inew_zealand","late","legally","using","new_zealand","example","premises","holds","byob","license","owner","manager","general_manager","certificate","forbidden","wine_list","sell","alcohol","premises","must","license","wine_list","allow","byob","thus","calling","fully","licensed","see_also","list","restauranterminology","externalinks","history","origins","drinking","words","phrases","magazine","category","category","category","parties","category_restauranterminology","category","wine","terminology"],"clean_bigrams":[["bottle","bring"],["booze","bring"],["beverage","byob"],["often","placed"],["indicate","thathe"],["thathe","host"],["providing","alcoholic"],["alcoholic","drink"],["drink","alcohol"],["business","establishments"],["establishments","allow"],["allow","patrons"],["membership","conditions"],["sell","alcohol"],["online","sources"],["used","first"],["mean","bring"],["wine","although"],["present","day"],["mean","bring"],["booze","bring"],["small","restaurants"],["liquor","licenses"],["new","popularity"],["wine","among"],["among","americans"],["advising","customers"],["customers","thathey"],["thathey","could"],["could","byob"],["byob","andrink"],["witheir","meal"],["meal","somestablishments"],["sell","alcoholic"],["alcoholic","beverages"],["site","consumption"],["may","also"],["also","allow"],["allow","patrons"],["alcohol","purchased"],["usually","subjecto"],["opening","fee"],["fee","often"],["fee","j"],["j","robinson"],["robinson","ed"],["oxford","companion"],["wine","third"],["third","edition"],["oxford","university"],["greatly","regulated"],["liquor","license"],["license","licensing"],["licensing","restrictions"],["restrictions","bottle"],["bottle","club"],["traditional","full"],["full","service"],["service","liquor"],["liquor","license"],["jurisdictions","offer"],["similar","license"],["license","known"],["bottle","club"],["club","license"],["serve","alcohol"],["patrons","broughthe"],["broughthe","alcohol"],["license","generally"],["generally","prohibits"],["alcoholic","beverages"],["license","may"],["may","require"],["licenses","may"],["zoning","conditions"],["conditions","imposed"],["full","service"],["service","liquor"],["liquor","license"],["may","also"],["license","available"],["available","asome"],["asome","jurisdictions"],["jurisdictions","impose"],["impose","full"],["full","service"],["service","liquor"],["liquor","license"],["business","class"],["class","restrictions"],["restrictions","regional"],["regional","variations"],["australian","wine"],["wine","australiand"],["australiand","new"],["new","zealand"],["describe","business"],["business","establishments"],["offered","corkage"],["victoriaustralia","victoria"],["withe","concept"],["concept","becoming"],["becoming","popular"],["popular","inew"],["inew","zealand"],["legally","using"],["using","new"],["new","zealand"],["byob","license"],["general","manager"],["wine","list"],["sell","alcohol"],["wine","list"],["allow","byob"],["byob","thus"],["thus","calling"],["fully","licensed"],["licensed","see"],["see","also"],["also","list"],["restauranterminology","externalinks"],["externalinks","history"],["drinking","words"],["magazine","category"],["category","parties"],["parties","category"],["category","restauranterminology"],["restauranterminology","category"],["category","wine"],["wine","terminology"]],"all_collocations":["bottle bring","booze bring","beverage byob","often placed","indicate thathe","thathe host","providing alcoholic","alcoholic drink","drink alcohol","business establishments","establishments allow","allow patrons","membership conditions","sell alcohol","online sources","used first","mean bring","wine although","present day","mean bring","booze bring","small restaurants","liquor licenses","new popularity","wine among","among americans","advising customers","customers thathey","thathey could","could byob","byob andrink","witheir meal","meal somestablishments","sell alcoholic","alcoholic beverages","site consumption","may also","also allow","allow patrons","alcohol purchased","usually subjecto","opening fee","fee often","fee j","j robinson","robinson ed","oxford companion","wine third","third edition","oxford university","greatly regulated","liquor license","license licensing","licensing restrictions","restrictions bottle","bottle club","traditional full","full service","service liquor","liquor license","jurisdictions offer","similar license","license known","bottle club","club license","serve alcohol","patrons broughthe","broughthe alcohol","license generally","generally prohibits","alcoholic beverages","license may","may require","licenses may","zoning conditions","conditions imposed","full service","service liquor","liquor license","may also","license available","available asome","asome jurisdictions","jurisdictions impose","impose full","full service","service liquor","liquor license","business class","class restrictions","restrictions regional","regional variations","australian wine","wine australiand","australiand new","new zealand","describe business","business establishments","offered corkage","victoriaustralia victoria","withe concept","concept becoming","becoming popular","popular inew","inew zealand","legally using","using new","new zealand","byob license","general manager","wine list","sell alcohol","wine list","allow byob","byob thus","thus calling","fully licensed","licensed see","see also","also list","restauranterminology externalinks","externalinks history","drinking words","magazine category","category parties","parties category","category restauranterminology","restauranterminology category","category wine","wine terminology"],"new_description":"byob acronym stand bring bottle bring booze bring beer bring beverage byob often placed invitation indicate thathe host providing alcoholic drink alcohol guests welcome bring business establishments allow patrons bring bottle fees membership conditions thestablishment license sell alcohol term cited online sources used first thearly mean bring bottle wine although present_day likely mean bring booze bring beer used small restaurants liquor licenses new popularity wine among americans advising customers thathey could byob andrink witheir meal somestablishments sell alcoholic_beverages site consumption bar orestaurant may_also allow patrons bring alcohol purchased elsewhere alcohol usually subjecto opening fee often rule limited bottles wine fee known corkage fee j robinson ed oxford companion wine third edition oxford_university policies greatly regulated liquor license licensing restrictions bottle club alternative traditional full_service liquor license jurisdictions offer similar license known bottle club license allows business serve alcohol premises patrons broughthe alcohol elsewhere license generally prohibits business selling stock alcoholic_beverages license may require patrons members thestablishment licenses may preferred situations fees zoning conditions imposed full_service liquor license unwanted impractical may_also license available asome jurisdictions impose full_service liquor license business class restrictions regional variations australian wine australiand_new_zealand zealand term bring emerged describe business establishments offered corkage believed restaurants melbourne state victoriaustralia_victoria advertising establishments withe concept becoming popular inew_zealand late legally using new_zealand example premises holds byob license owner manager general_manager certificate forbidden wine_list sell alcohol premises must license wine_list allow byob thus calling fully licensed see_also list restauranterminology externalinks history origins drinking words phrases magazine category category category parties category_restauranterminology category wine terminology"},{"title":"Cabane Choucoune","description":"cabane choucoune is a famous cabaret and thatching thatch roofed club in p tion ville haitit was built on december by max ewald it is known as one of the best m ringue dance clubs historically it has included top flight haitiand international entertainers the construction appears like an inverted ice cream cone that is high peaked with a thatched cupola on top from a distance it resembles a chief s african jungle hut it is located about metres up the mountains behind port au prince in p tion ville home to the country s elite references category nightclubs category buildings and structures in haiti category tourist attractions in haiti category establishments in haiti","main_words":["famous","cabaret","thatching","club","p","ville","built","december","max","known","one","best","dance","clubs","historically","included","top","flight","international","entertainers","construction","appears","like","inverted","ice_cream","cone","high","thatched","top","distance","resembles","chief","african","jungle","hut","located","metres","mountains","behind","port","prince","p","ville","home_country","elite","buildings","structures","haiti","category_tourist","attractions","haiti","category_establishments","haiti"],"clean_bigrams":[["famous","cabaret"],["dance","clubs"],["clubs","historically"],["included","top"],["top","flight"],["international","entertainers"],["construction","appears"],["appears","like"],["inverted","ice"],["ice","cream"],["cream","cone"],["african","jungle"],["jungle","hut"],["mountains","behind"],["behind","port"],["ville","home"],["elite","references"],["references","category"],["category","nightclubs"],["nightclubs","category"],["category","buildings"],["haiti","category"],["category","tourist"],["tourist","attractions"],["haiti","category"],["category","establishments"]],"all_collocations":["famous cabaret","dance clubs","clubs historically","included top","top flight","international entertainers","construction appears","appears like","inverted ice","ice cream","cream cone","african jungle","jungle hut","mountains behind","behind port","ville home","elite references","references category","category nightclubs","nightclubs category","category buildings","haiti category","category tourist","tourist attractions","haiti category","category establishments"],"new_description":"famous cabaret thatching club p ville built december max known one best dance clubs historically included top flight international entertainers construction appears like inverted ice_cream cone high thatched top distance resembles chief african jungle hut located metres mountains behind port prince p ville home_country elite references_category_nightclubs_category buildings structures haiti category_tourist attractions haiti category_establishments haiti"},{"title":"Cabo Wabo","description":"dissolved footnotes cabo wabo is a nightclub and restaurant located in cabo san lucas cabo san lucas bcs mexico franchise s exist in harvey s lake tahoe in statelinevada statelinevada the las vegastrip and on hollywood boulevard in hollywood california it is also a popular brand of tequilall were founded by rock musician sammy hagar file sammy hagarjpg thumb left hagar performing athe cabo wabo hagar already a successful rock musician visited the mexico mexican town of cabo san lucas in thearly s hagar joined van halen in july after the departure of its former singer david lee roth seeking a place for himself and his friends to relax and play music he convinced the van halen members to partner in opening a large barestaurant and performance space launched in april the cantina was initially a financial failure leading hagar to buyout buy out his band mates under new managementhe bar became popular with both locals and tourists as the town quickly grew into a majoresort in after plans fell through topen in las vegas hagar opened a second location in the basement of the historic harvey s casinon the south shore of lake tahoe a third location was opened in fresno ca fresno california in but had its license pulled by hagar athe beginning of cabo wabo las vegas opened in the miracle mile shopping center at planet hollywood inovember the club typically attracts an older adult clientele with its mostly rock music selection hagar claims he coined the name after watching a man walk unsteadily along a local beach after a heavy night s partying using the town s nickname cabo which means cape in spanish and shortening wobble to wabo he said of the man that he was doing the cabo wabo hagar later used the phrase in his lyrics and title for the van halen song in he hired noel vestri an innovator in computer graphic designs including work on vans tennishoes to design a logo for the brand which istill used today file interiorcabowabojpg thumb patrons drinking in a portion of the cantina in the late s hagar began selling his patrons a house brand of hand made tequila he commissioned from a family ownedistillery in the state of jalisco in a wine importer from napa valley began to importhe tequila into the united states an instant successales rose from cases the first year to cases in making ithe second best selling premium tequila in the united stateseveral of the cabo wabofferings have performed quite well at international spirit ratings competitions for example the a ejoffering received three silver one gold and one double gold medal athe san francisco world spirits competition between and its reposado tequila received a score ofrom the beverage testing institute in may it was announced that hagar would sell an interest in cabo wabo tequila to davide campari milano gruppo campari the world sixth largest spirits company for million skyy spirits of san francisco a vodka producer and subsidiary of milan s gruppo campari planned to market cabo wabo globally with continued participation by hagar gerry ruvo president and chief executive of skyy spiritsaid sammy has done a fantastic jobuilding the brand so we are going tobviously spend time withim and work withim to continue our efforts to take the brand to an even larger level bothere in the us and more important globally ruvo said great britain spain australia southeast asia japan germany and italy are considered key expansion markets for tequila externalinks cabo wabo cantina official website cabo wabo tequila official website official cabo wabo merchandise interviewith sammy hagar from cabo wabo tequila includes the origin of the tequila boozebashereview of cabo wabo reposado proof com liquoratings and review aggregator summary page for cabo wabo anejo category tequila category buildings and structures in baja california sur category restaurants in mexico category drinking establishments category nightclubs category regional restaurant chains in the united states category sammy hagar","main_words":["dissolved","footnotes","cabo_wabo","nightclub","restaurant_located","cabo","san","lucas","cabo","san","lucas","mexico","franchise","exist","harvey","lake","tahoe","las","hollywood","boulevard","hollywood","california","also_popular","brand","founded","rock","musician","sammy","hagar","file","sammy","thumb","left","hagar","performing","athe","cabo_wabo","hagar","already","successful","rock","musician","visited","mexico","mexican","town","cabo","san","lucas","thearly","hagar","joined","van","july","departure","former","singer","david","lee","roth","seeking","place","friends","relax","play","music","convinced","van","members","partner","opening","large","barestaurant","performance","april","cantina","initially","financial","failure","leading","hagar","buy","band","new","managementhe","bar","became_popular","locals","tourists","town","quickly","grew","plans","fell","topen","las_vegas","hagar","opened","second","location","basement","historic","harvey","south","shore","lake","tahoe","third","location","opened","california","license","pulled","hagar","athe_beginning","cabo_wabo","las_vegas","opened","miracle","mile","shopping_center","planet","hollywood","inovember","club","typically","attracts","older","adult","clientele","mostly","rock","music","selection","hagar","claims","coined","name","watching","man","walk","along","local","beach","heavy","night","using","town","nickname","cabo","means","cape","spanish","said","man","cabo_wabo","hagar","later","used","phrase","lyrics","title","van","song","hired","noel","computer","graphic","designs","including","work","vans","design","logo","brand","istill","used","today","file","thumb","patrons","drinking","portion","cantina","late","hagar","began","selling","patrons","house","brand","hand","made","tequila","commissioned","family","state","wine","napa_valley","began","tequila","united_states","instant","rose","cases","first_year","cases","making_ithe","second","best","selling","premium","tequila","united","cabo","performed","quite","well","international","spirit","ratings","competitions","example","received","three","silver","one","gold","one","double","gold","medal","athe","san_francisco","world","spirits","competition","tequila","received","score","ofrom","beverage","testing","institute","may","announced","hagar","would","sell","interest","cabo_wabo","tequila","milano","world","sixth","largest","spirits","company","million","spirits","san_francisco","vodka","producer","subsidiary","milan","planned","market","cabo_wabo","globally","continued","participation","hagar","gerry","president","chief_executive","sammy","done","fantastic","brand","going","spend","time","withim","work","withim","continue","efforts","take","brand","even","larger","level","us","important","globally","said","great_britain","spain","australia","southeast_asia","japan","germany","italy","considered","key","expansion","markets","tequila","externalinks","cabo_wabo","cantina","official_website","cabo_wabo","tequila","official_website","official","cabo_wabo","merchandise","interviewith","sammy","hagar","cabo_wabo","tequila","includes","origin","tequila","cabo_wabo","proof","review","summary","page","cabo_wabo","category","tequila","category_buildings","structures","baja","california","sur","category_restaurants","category_nightclubs_category","regional","restaurant_chains","united_states","category","sammy","hagar"],"clean_bigrams":[["dissolved","footnotes"],["footnotes","cabo"],["cabo","wabo"],["restaurant","located"],["cabo","san"],["san","lucas"],["lucas","cabo"],["cabo","san"],["san","lucas"],["mexico","franchise"],["lake","tahoe"],["hollywood","boulevard"],["hollywood","california"],["popular","brand"],["rock","musician"],["musician","sammy"],["sammy","hagar"],["hagar","file"],["file","sammy"],["thumb","left"],["left","hagar"],["hagar","performing"],["performing","athe"],["athe","cabo"],["cabo","wabo"],["wabo","hagar"],["hagar","already"],["successful","rock"],["rock","musician"],["musician","visited"],["mexico","mexican"],["mexican","town"],["cabo","san"],["san","lucas"],["hagar","joined"],["joined","van"],["former","singer"],["singer","david"],["david","lee"],["lee","roth"],["roth","seeking"],["play","music"],["large","barestaurant"],["performance","space"],["space","launched"],["financial","failure"],["failure","leading"],["leading","hagar"],["new","managementhe"],["managementhe","bar"],["bar","became"],["became","popular"],["town","quickly"],["quickly","grew"],["plans","fell"],["las","vegas"],["vegas","hagar"],["hagar","opened"],["second","location"],["historic","harvey"],["south","shore"],["lake","tahoe"],["third","location"],["license","pulled"],["hagar","athe"],["athe","beginning"],["cabo","wabo"],["wabo","las"],["las","vegas"],["vegas","opened"],["miracle","mile"],["mile","shopping"],["shopping","center"],["planet","hollywood"],["hollywood","inovember"],["club","typically"],["typically","attracts"],["older","adult"],["adult","clientele"],["mostly","rock"],["rock","music"],["music","selection"],["selection","hagar"],["hagar","claims"],["man","walk"],["local","beach"],["heavy","night"],["nickname","cabo"],["means","cape"],["cabo","wabo"],["wabo","hagar"],["hagar","later"],["later","used"],["hired","noel"],["computer","graphic"],["graphic","designs"],["designs","including"],["including","work"],["istill","used"],["used","today"],["today","file"],["thumb","patrons"],["patrons","drinking"],["hagar","began"],["began","selling"],["house","brand"],["hand","made"],["made","tequila"],["napa","valley"],["valley","began"],["united","states"],["first","year"],["making","ithe"],["ithe","second"],["second","best"],["best","selling"],["selling","premium"],["premium","tequila"],["performed","quite"],["quite","well"],["international","spirit"],["spirit","ratings"],["ratings","competitions"],["received","three"],["three","silver"],["silver","one"],["one","gold"],["one","double"],["double","gold"],["gold","medal"],["medal","athe"],["athe","san"],["san","francisco"],["francisco","world"],["world","spirits"],["spirits","competition"],["tequila","received"],["score","ofrom"],["beverage","testing"],["testing","institute"],["hagar","would"],["would","sell"],["cabo","wabo"],["wabo","tequila"],["world","sixth"],["sixth","largest"],["largest","spirits"],["spirits","company"],["san","francisco"],["vodka","producer"],["market","cabo"],["cabo","wabo"],["wabo","globally"],["continued","participation"],["hagar","gerry"],["chief","executive"],["spend","time"],["time","withim"],["work","withim"],["even","larger"],["larger","level"],["important","globally"],["said","great"],["great","britain"],["britain","spain"],["spain","australia"],["australia","southeast"],["southeast","asia"],["asia","japan"],["japan","germany"],["considered","key"],["key","expansion"],["expansion","markets"],["tequila","externalinks"],["externalinks","cabo"],["cabo","wabo"],["wabo","cantina"],["cantina","official"],["official","website"],["website","cabo"],["cabo","wabo"],["wabo","tequila"],["tequila","official"],["official","website"],["website","official"],["official","cabo"],["cabo","wabo"],["wabo","merchandise"],["merchandise","interviewith"],["interviewith","sammy"],["sammy","hagar"],["cabo","wabo"],["wabo","tequila"],["tequila","includes"],["cabo","wabo"],["summary","page"],["cabo","wabo"],["category","tequila"],["tequila","category"],["category","buildings"],["baja","california"],["california","sur"],["sur","category"],["category","restaurants"],["mexico","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","nightclubs"],["nightclubs","category"],["category","regional"],["regional","restaurant"],["restaurant","chains"],["united","states"],["states","category"],["category","sammy"],["sammy","hagar"]],"all_collocations":["dissolved footnotes","footnotes cabo","cabo wabo","restaurant located","cabo san","san lucas","lucas cabo","cabo san","san lucas","mexico franchise","lake tahoe","hollywood boulevard","hollywood california","popular brand","rock musician","musician sammy","sammy hagar","hagar file","file sammy","left hagar","hagar performing","performing athe","athe cabo","cabo wabo","wabo hagar","hagar already","successful rock","rock musician","musician visited","mexico mexican","mexican town","cabo san","san lucas","hagar joined","joined van","former singer","singer david","david lee","lee roth","roth seeking","play music","large barestaurant","performance space","space launched","financial failure","failure leading","leading hagar","new managementhe","managementhe bar","bar became","became popular","town quickly","quickly grew","plans fell","las vegas","vegas hagar","hagar opened","second location","historic harvey","south shore","lake tahoe","third location","license pulled","hagar athe","athe beginning","cabo wabo","wabo las","las vegas","vegas opened","miracle mile","mile shopping","shopping center","planet hollywood","hollywood inovember","club typically","typically attracts","older adult","adult clientele","mostly rock","rock music","music selection","selection hagar","hagar claims","man walk","local beach","heavy night","nickname cabo","means cape","cabo wabo","wabo hagar","hagar later","later used","hired noel","computer graphic","graphic designs","designs including","including work","istill used","used today","today file","thumb patrons","patrons drinking","hagar began","began selling","house brand","hand made","made tequila","napa valley","valley began","united states","first year","making ithe","ithe second","second best","best selling","selling premium","premium tequila","performed quite","quite well","international spirit","spirit ratings","ratings competitions","received three","three silver","silver one","one gold","one double","double gold","gold medal","medal athe","athe san","san francisco","francisco world","world spirits","spirits competition","tequila received","score ofrom","beverage testing","testing institute","hagar would","would sell","cabo wabo","wabo tequila","world sixth","sixth largest","largest spirits","spirits company","san francisco","vodka producer","market cabo","cabo wabo","wabo globally","continued participation","hagar gerry","chief executive","spend time","time withim","work withim","even larger","larger level","important globally","said great","great britain","britain spain","spain australia","australia southeast","southeast asia","asia japan","japan germany","considered key","key expansion","expansion markets","tequila externalinks","externalinks cabo","cabo wabo","wabo cantina","cantina official","official website","website cabo","cabo wabo","wabo tequila","tequila official","official website","website official","official cabo","cabo wabo","wabo merchandise","merchandise interviewith","interviewith sammy","sammy hagar","cabo wabo","wabo tequila","tequila includes","cabo wabo","summary page","cabo wabo","category tequila","tequila category","category buildings","baja california","california sur","sur category","category restaurants","mexico category","category drinking","drinking establishments","establishments category","category nightclubs","nightclubs category","category regional","regional restaurant","restaurant chains","united states","states category","category sammy","sammy hagar"],"new_description":"dissolved footnotes cabo_wabo nightclub restaurant_located cabo san lucas cabo san lucas mexico franchise exist harvey lake tahoe las hollywood boulevard hollywood california also_popular brand founded rock musician sammy hagar file sammy thumb left hagar performing athe cabo_wabo hagar already successful rock musician visited mexico mexican town cabo san lucas thearly hagar joined van july departure former singer david lee roth seeking place friends relax play music convinced van members partner opening large barestaurant performance space_launched april cantina initially financial failure leading hagar buy band new managementhe bar became_popular locals tourists town quickly grew plans fell topen las_vegas hagar opened second location basement historic harvey south shore lake tahoe third location opened california license pulled hagar athe_beginning cabo_wabo las_vegas opened miracle mile shopping_center planet hollywood inovember club typically attracts older adult clientele mostly rock music selection hagar claims coined name watching man walk along local beach heavy night using town nickname cabo means cape spanish wabo said man cabo_wabo hagar later used phrase lyrics title van song hired noel computer graphic designs including work vans design logo brand istill used today file thumb patrons drinking portion cantina late hagar began selling patrons house brand hand made tequila commissioned family state wine napa_valley began tequila united_states instant rose cases first_year cases making_ithe second best selling premium tequila united cabo performed quite well international spirit ratings competitions example received three silver one gold one double gold medal athe san_francisco world spirits competition tequila received score ofrom beverage testing institute may announced hagar would sell interest cabo_wabo tequila milano world sixth largest spirits company million spirits san_francisco vodka producer subsidiary milan planned market cabo_wabo globally continued participation hagar gerry president chief_executive sammy done fantastic brand going spend time withim work withim continue efforts take brand even larger level us important globally said great_britain spain australia southeast_asia japan germany italy considered key expansion markets tequila externalinks cabo_wabo cantina official_website cabo_wabo tequila official_website official cabo_wabo merchandise interviewith sammy hagar cabo_wabo tequila includes origin tequila cabo_wabo proof review summary page cabo_wabo category tequila category_buildings structures baja california sur category_restaurants mexico_category_drinking_establishments category_nightclubs_category regional restaurant_chains united_states category sammy hagar"},{"title":"Caf\u00e9 gourmand","description":"file caf gourmand in la londejpg thumbnail default caf gourmand arrangement file caf gourmandjpg thumb caf gourmand a caf gourmand is an espresso and a selection of mignardises also known as petits fourserved together purpose the first caf gourmand is believed to have appeared in restaurants in paris around there are similarities between caf s gourmands and thenglish tradition of afternoon tealthough the latter is an altogether different occasion it is a step further in a general trend in france to have lunches in restaurants that are quicker than in the past back in the th century it was common as a minimum to have a starter then a main course then a plate of cheese then a desserthen a cup of coffee and then a digestif then the starter ceased to be the accepted norm and the plate of cheese became scarce and the digestif disappeared the caf gourmand represents a further step as ordering the dessert and the coffee in one go gains time avoiding the need to have to call the waiter over torder apart from the gain of time the caf gourmand has other advantages it gives the opportunity to eat several different desserts in one go without feelinguilty for the calorie s as the quantity of each dessert isupposed to be tiny it allows to sweeten the bitterness of the coffee by going back forth between the desserts and the cup of coffee it creates a feeling of mystery and surprise as the names of the mini desserts are not indicated on the menu so thathe customer does not knowhathey will get beforehand composition while there is no requirement for the composition of a caf gourmand the desserts most commonly included are mousse chocolate mousse apple pie ice cream and cr me br l e references category types of restaurants","main_words":["file","caf","gourmand","la","thumbnail","caf","gourmand","arrangement","file","caf","thumb","caf","gourmand","caf","gourmand","espresso","selection","also_known","together","purpose","first","caf","gourmand","believed","appeared","restaurants","paris","around","similarities","caf","thenglish","tradition","afternoon","latter","altogether","different","occasion","step","general","trend","france","lunches","restaurants","past","back","th_century","common","minimum","starter","main","course","plate","cheese","cup","coffee","starter","ceased","accepted","norm","plate","cheese","became","disappeared","caf","gourmand","represents","step","ordering","dessert","coffee","one","go","gains","time","avoiding","need","call","waiter","torder","apart","gain","time","caf","gourmand","advantages","gives","opportunity","eat","several","different","desserts","one","go","without","calorie","quantity","dessert","isupposed","tiny","allows","coffee","going","back","forth","desserts","cup","coffee","creates","feeling","mystery","surprise","names","mini","desserts","indicated","menu","thathe","customer","get","composition","requirement","composition","caf","gourmand","desserts","commonly","included","mousse","chocolate","mousse","apple","pie","ice_cream","l","e","references_category","types","restaurants"],"clean_bigrams":[["file","caf"],["caf","gourmand"],["caf","gourmand"],["gourmand","arrangement"],["arrangement","file"],["file","caf"],["thumb","caf"],["caf","gourmand"],["caf","gourmand"],["also","known"],["together","purpose"],["first","caf"],["caf","gourmand"],["paris","around"],["thenglish","tradition"],["altogether","different"],["different","occasion"],["general","trend"],["past","back"],["th","century"],["main","course"],["starter","ceased"],["accepted","norm"],["cheese","became"],["caf","gourmand"],["gourmand","represents"],["one","go"],["go","gains"],["gains","time"],["time","avoiding"],["torder","apart"],["caf","gourmand"],["eat","several"],["several","different"],["different","desserts"],["one","go"],["go","without"],["dessert","isupposed"],["going","back"],["back","forth"],["mini","desserts"],["thathe","customer"],["caf","gourmand"],["commonly","included"],["mousse","chocolate"],["chocolate","mousse"],["mousse","apple"],["apple","pie"],["pie","ice"],["ice","cream"],["l","e"],["e","references"],["references","category"],["category","types"]],"all_collocations":["file caf","caf gourmand","caf gourmand","gourmand arrangement","arrangement file","file caf","thumb caf","caf gourmand","caf gourmand","also known","together purpose","first caf","caf gourmand","paris around","thenglish tradition","altogether different","different occasion","general trend","past back","th century","main course","starter ceased","accepted norm","cheese became","caf gourmand","gourmand represents","one go","go gains","gains time","time avoiding","torder apart","caf gourmand","eat several","several different","different desserts","one go","go without","dessert isupposed","going back","back forth","mini desserts","thathe customer","caf gourmand","commonly included","mousse chocolate","chocolate mousse","mousse apple","apple pie","pie ice","ice cream","l e","e references","references category","category types"],"new_description":"file caf gourmand la thumbnail caf gourmand arrangement file caf thumb caf gourmand caf gourmand espresso selection also_known together purpose first caf gourmand believed appeared restaurants paris around similarities caf thenglish tradition afternoon latter altogether different occasion step general trend france lunches restaurants past back th_century common minimum starter main course plate cheese cup coffee starter ceased accepted norm plate cheese became disappeared caf gourmand represents step ordering dessert coffee one go gains time avoiding need call waiter torder apart gain time caf gourmand advantages gives opportunity eat several different desserts one go without calorie quantity dessert isupposed tiny allows coffee going back forth desserts cup coffee creates feeling mystery surprise names mini desserts indicated menu thathe customer get composition requirement composition caf gourmand desserts commonly included mousse chocolate mousse apple pie ice_cream l e references_category types restaurants"},{"title":"Cafeteria","description":"file infosyselectroniccitycafeteriajpg thumb a corporate cafeteria in bangalore india december file currier dining halljpg thumb the dining hall in currier house harvard college currier house of harvard college august file cafetoriumjpg thumb the dining hall at santa barbara city college a cafeteria is a type ofoodservice food service location in which there is little or no waiting staff table service whether a restaurant or within an institution such as a large office building or school a school dining location is also referred to as a dining hall or canteen in british english cafeterias are different from coffeehouse s although thenglish term came from latin american spanish where it had and still has the meaning coffeehouse instead of table service there are food serving counterstalls either in a line or allowing arbitrary walking paths customers take the food thathey desire as they walk along placing it on a tray in addition there are often stations where customers order food and wait while it is prepared particularly for itemsuch as hamburger s or taco s which must be served hot and can be immediately prepared alternatively the patron is given a number and the item is broughto his table for some food items andrinksuch asodas water or the like customers collect an empty container pay athe check out and fill the container after the check out free unlimited second servings are often allowed under thisystem for legal purposes and the consumption patterns of customers thisystem is rarely if at all used for alcoholic beverage s in the us customers areither charged a flat rate for admission as in a buffet or pay athe point of sale check out for each item some self service cafeterias charge by the weight of items on a patron s plate in universities and collegesome students pay for three meals a day by making a single large payment for thentire academic term semester as cafeterias require few employees they are often found within a larger institution catering to the clientele of that institution for example school s college s and their dormitory residence halls department store s hospital s museum s military base s prison s and office buildings often have cafeterias at one time upscale cafeteria style restaurants dominated the culture of the southern united states and to a lesser extenthe midwestern united states midwesthere were numerous prominent chains of them bickford s restaurant bickford s morrison s cafeteria piccadilly cafeteria s w cafeteriapple house luby s k w cafeteria k w britling cafeterias britling wyatt s cafeteriand blue boar cafeterias blue boar among them currently two midwestern chainstill exist sloppy jo s lunchroom and manny s which are both located in illinois there were also a number of smaller chains usually located in and around a single city these institutions withexception of k went into a decline in the s withe rise ofast food and were largely finished off in the s by the rise of casual dining a few chains particularly luby s and piccadilly cafeterias which took over the morrison s chain continue to fill some of the gap left by the decline of the older chainsome of the smaller midwestern chainsuch as mcl cafeterias centered on indianapolis are still very much in business file postcard from childs philadelphia jpg thumb left childs restaurant philadelphia pa circa file kantinentellerjpg thumb divided trays from an east german canteen in the late s perhaps the first self service restaurant not necessarily a cafeteria in the us was thexchange buffet inew york city opened september which catered to an exclusively male clientele food was purchased at a counter and patrons ate standing upjohn f mariani america eats out williamorrow coctober this represents the predecessor of two formats the cafeteria described below and the automat during the world s columbian exposition in chicago entrepreneur john kruger built an american version of the sm rg sbord s he had seen while traveling in sweden emphasizing the simplicity and light fare he called ithe cafeteria spanish for coffee shop thexposition attracted over million visitors half the us population athe time in six months and because of kruger s operation that america first heard the term and experienced the self service dining formatamy zuber samuel william childs nations restaurant news february a restaurantimeline cuisinenet diner s digest retrieved april file pirate champs cafe jpg thumb food court style cafeteria in a port charlotte high school port charlotte florida high school meanwhile in mid scale america the chain of childs restaurants quickly grew from about locations inew york city in to hundreds across the us and canada by childs is credited withe innovation of adding trays and a tray line to the self service format introduced in atheir broadway location childs did not change its format of sit down dining however this wasoon the standardesign for most childs restaurants and many ultimately the dominant design for cafeterias it has been conjectured thathe cafeteria craze started in may when helen mosher opened a downtown la restaurant where people chose their food at a long counter and carried their trays to their tablescharles perry the cafeterian la original the los angeles times november california has a long history in the cafeteria format notably the boos brothers cafeterias and the clifton s cafeteria clifton s and schaber s the facts do not warranthe characterization that some have ascribed to the region thearliest cafeterias in california were opened at least years after kruger s cafeteriand childs already had many locations around the country horn hardart an automat format chain different from cafeterias was well established in the mid atlantic region before between and the popularity of cafeterias was overcome by the fast food restaurant and fast casual restaurant formats outside of the united states the development of cafeterias can be observed in france as early as withe passing of the jules ferry laws ferry law this law mandated that public school education be available to all children accordingly the government also encouraged schools to provide meals for students ineed thus resulting in the conception of cafeterias or cantine in french according to abramson prior to the creation of cafeterias only some students were able to bring home cooked meals and able to be properly fed in schools as cafeterias in france became more popular their use spread beyond schools and into the workforce thus due to pressure from workers and eventually new labor lawsizable businesses had to at minimum providestablished eating areas for its workersupport for this practice was also reinforced by theffects of world war ii when the importance of national health and nutrition came under greattentionabramson julia luisa food culture in france westport ct greenwood press print other names file cafeteria serverjpg thumb hospital cafeteria tray line server in port charlotte florida file calhan colorado high school cafeteria by david shankbonejpg thumb a high school cafeteria used by students in calhan colorado a cafeteria in a united states armed forces us military installation is known as a chow hall a mess hall a galley mess decks or more formally a dining facility often abbreviated to dfac whereas in common british armed forces parlance it is known as a cookhouse or messtudents in the usa often refer to cafeterias lunchrooms though breakfast as well as lunch is often eaten there some school cafeterias in the us have stages and movable seating that allow use as auditoriums these rooms are known as cafetoriums cafeteriaserving university dormitories are sometimes calledining halls or dining commons a food court is a type of cafeteria found in many shopping mall s and airport s featuring multiple food vendors or concessions although a food court could equally be styled as a type of restaurant as well being more aligned with public rather than institutionalisedining some monastery monasteries boarding school s and ancient university older universities refer to their cafeterias a refectory modern day british cathedral s and abbey s notably in the church of england often use the phrase refectory to describe a cafeteria open to the public historically the refectory was generally only used by monks and priests for example although the original year old refectory at gloucester cathedral the stage setting for dining scenes in the harry potter movies is now mostly used as a choir practice area the relatively modern year old extensionow used as a cafeteria by staff and public alike is today referred to as the refectory a cafeteria located in a tv studio is often called a commissary nbc s commissary the hungry peacock was often joked about by johnny carson the tonight show college cafeteria file succsfjpg thumb the main dining hall of city college of san francisco file badruka college canteenjpg thumb a college canteen india in american english a college cafeteria is a cafeteria intended for college students in british english it is often called the refectory these cafeterias can be a part of a residence hall or in a separate building many of these colleges employ their own students to work in the cafeteria the number of mealserved to students varies from school to school but is normally around meals per week like normal cafeterias a person will have a tray to selecthe food that he or she wants but at some campuses instead of paying money prepayment for service pays beforehand by purchasing a meal plan the method of payment for college cafeterias is commonly in the form of a meal plan whereby the patron pays a certain amount athe start of the semester andetails of the plan are stored on a computer system student id cards are then used to access the meal plan meal plans can vary widely in their details and are oftenot necessary to eat a college cafeteria typically the college trackstudents usage of their plan by counting the number of predefined meal servings points dollars or number of buffet dinners the plan may give the student a certainumber of any of the above per week or semester and they may or may not roll over to the next week or semester many schools offer several different options for using their meal plans the main cafeteria is usually where most of the meal plan is used but smaller cafeterias caf s restaurants bars or even fast food chains located on campus onearby streets or in the surrounding town or city may accept meal plans a college cafeteria system often has a virtual monopoly on the students due to an isolated location or a requirementhat residence contracts include a full meal plan it is not uncommon for thentire food service operation to be outsourced to a managed services company such as aramark compass group which operates under various names or sodexo see also automat coffee service coffeehouse food court hawker centre list of cafeterias refectory category rooms category types of restaurants","main_words":["file","thumb","corporate","cafeteria","bangalore","india","december","file","dining","thumb","dining","hall","house","harvard","college","house","harvard","college","august","file","thumb","dining","hall","santa_barbara","city","college","cafeteria","type","food_service","location","little","waiting_staff","table_service","whether","restaurant","within","institution","large","office","building","school","school","dining","location","also_referred","dining","hall","canteen","british_english","cafeterias","different","coffeehouse","although","thenglish","term","came","latin_american","spanish","still","meaning","coffeehouse","instead","table_service","food","serving","either","line","allowing","arbitrary","walking","paths","customers","take","food","thathey","desire","walk","along","placing","tray","addition","often","stations","customers","order","food","wait","prepared","particularly","itemsuch","hamburger","taco","must","served","hot","immediately","prepared","alternatively","patron","given","number","item","broughto","table","food_items","water","like","customers","collect","empty","container","pay","athe","check","fill","container","check","free","unlimited","second","servings","often","allowed","thisystem","legal","purposes","consumption","patterns","customers","thisystem","rarely","used","alcoholic_beverage","us","customers","areither","charged","flat","rate","admission","buffet","pay","athe","point","sale","check","item","self","service","cafeterias","charge","weight","items","patron","plate","universities","students","pay","three","meals","day","making","single","large","payment","thentire","academic","term","semester","cafeterias","require","employees","often","found","within","larger","institution","catering","clientele","institution","example","school","college","dormitory","residence","halls","department","store","hospital","museum","military","base","prison","office","buildings","often","cafeterias","one_time","upscale","cafeteria","style_restaurants","dominated","culture","southern_united_states","lesser","midwestern","united_states","numerous","prominent","chains","restaurant","morrison","cafeteria","cafeteria","w","house","k","w","cafeteria","k","w","cafeterias","blue","boar","cafeterias","blue","boar","among","currently","two","midwestern","exist","located","illinois","also","number","smaller","chains","usually_located","around","single","city","institutions","withexception","k","went","decline","withe","rise","ofast_food","largely","finished","rise","casual_dining","chains","particularly","cafeterias","took","morrison","chain","continue","fill","gap","left","decline","older","smaller","midwestern","chainsuch","cafeterias","centered","indianapolis","still","much","business","file","postcard","childs","philadelphia","jpg","thumb","left","childs","restaurant","philadelphia","circa","file","thumb","divided","trays","east","german","canteen","late","perhaps","first","self","service_restaurant","necessarily","cafeteria","us","thexchange","buffet","inew_york_city","opened","september","catered","exclusively","male","clientele","food","purchased","counter","patrons","ate","standing","f","america","represents","predecessor","two","formats","cafeteria","described","automat","world","columbian_exposition","chicago","entrepreneur","john","kruger","built","american","version","seen","traveling","sweden","emphasizing","simplicity","light","fare","called","ithe","cafeteria","spanish","coffee_shop","thexposition","attracted","million_visitors","half","us","population","athe_time","six","months","kruger","operation","america","first","heard","term","experienced","self","service","dining","samuel","william","childs","nations","restaurant","news","february","diner","retrieved_april","file","pirate","cafe","jpg","thumb","food_court","style","cafeteria","port","charlotte","high_school","port","charlotte","florida","high_school","meanwhile","mid","scale","america","chain","childs","restaurants","quickly","grew","locations","inew_york_city","hundreds","across","us","canada","childs","credited","withe","innovation","adding","trays","tray","line","self","service","format","introduced","atheir","broadway","location","childs","change","format","sit","dining","however","wasoon","childs","restaurants","many","ultimately","dominant","design","cafeterias","thathe","cafeteria","craze","started","may","helen","opened","downtown","la","restaurant","people","chose","food","long","counter","carried","trays","perry","la","original","los_angeles","times","november","california","long","history","cafeteria","format","notably","brothers","cafeterias","clifton","cafeteria","clifton","facts","region","thearliest","cafeterias","california","opened","least","years","kruger","childs","already","many","locations","around","country","horn_hardart","automat","format","chain","different","cafeterias","well_established","mid","atlantic","region","popularity","cafeterias","overcome","fast_food_restaurant","fast_casual","restaurant","formats","outside","united_states","development","cafeterias","observed","france","early","withe","passing","jules","ferry","laws","ferry","law","law","mandated","public","school","education","available","children","accordingly","government","also","encouraged","schools","provide","meals","students","ineed","thus","resulting","conception","cafeterias","french","according","prior","creation","cafeterias","students","able","bring","home","cooked","meals","able","properly","fed","schools","cafeterias","france","became_popular","use","spread","beyond","schools","workforce","thus","due","pressure","workers","eventually","new","labor","businesses","minimum","eating","areas","practice","also","reinforced","theffects","world_war","ii","importance","national","health","nutrition","came","julia","food_culture","france","greenwood","names","file","cafeteria","thumb","hospital","cafeteria","tray","line","server","port","charlotte","florida","file","colorado","high_school","cafeteria","david","thumb","high_school","cafeteria","used","students","colorado","cafeteria","united_states","armed","forces","us","military","installation","known","chow","hall","mess","hall","galley","mess","decks","formally","dining","facility","often","abbreviated","whereas","common","british","armed","forces","known","usa","often","refer","cafeterias","though","breakfast","well","lunch","often","eaten","school","cafeterias","us","stages","movable","seating","allow","use","rooms","known","university","dormitories","sometimes","halls","dining","commons","food_court","type","cafeteria","found","many","shopping_mall","airport","featuring","multiple","food_vendors","concessions","although","food_court","could","equally","styled","type","restaurant","well","aligned","public","rather","monastery","monasteries","boarding","school","ancient","university","older","universities","refer","cafeterias","refectory","modern_day","british","cathedral","abbey","notably","church","england","often","use","phrase","refectory","describe","cafeteria","open","public","historically","refectory","generally","used","monks","example","although","original","year_old","refectory","gloucester","cathedral","stage","setting","dining","scenes","harry_potter","movies","mostly","used","practice","area","relatively","modern","year_old","used","cafeteria","staff","public","alike","today","referred","refectory","cafeteria","located","studio","often_called","commissary","nbc","commissary","hungry","peacock","often","johnny","show","college","cafeteria","file","thumb","main","dining","hall","city","college","san_francisco","file","college","thumb","college","canteen","india","american_english","college","cafeteria","cafeteria","intended","college_students","british_english","often_called","refectory","cafeterias","part","residence","hall","separate","building","many","colleges","employ","students","work","cafeteria","number","students","varies","school","school","normally","around","meals","per","week","like","normal","cafeterias","person","tray","food","wants","campuses","instead","paying","money","service","pays","purchasing","meal","plan","method","payment","college","cafeterias","commonly","form","meal","plan","whereby","patron","pays","certain","amount","athe_start","semester","plan","stored","computer","system","student","cards","used","access","meal","plan","meal","plans","vary","widely","details","oftenot","necessary","eat","college","cafeteria","typically","college","usage","plan","counting","number","meal","servings","points","dollars","number","buffet","dinners","plan","may","give","student","certainumber","per","week","semester","may","may","roll","next","week","semester","many","schools","offer","several","different","options","using","meal","plans","main","cafeteria","usually","meal","plan","used","smaller","cafeterias","caf","restaurants","bars","even","fast_food","chains","located","campus","streets","surrounding","town","city","may","accept","meal","plans","college","cafeteria","system","often","virtual","monopoly","students","due","isolated","location","residence","contracts","include","full","meal","plan","uncommon","thentire","food_service","operation","outsourced","managed","services","company","group","operates","various","names","see_also","automat","coffee","service","coffeehouse","food_court","hawker_centre","list","cafeterias","refectory","category","rooms","category_types","restaurants"],"clean_bigrams":[["corporate","cafeteria"],["bangalore","india"],["india","december"],["december","file"],["dining","hall"],["house","harvard"],["harvard","college"],["house","harvard"],["harvard","college"],["college","august"],["august","file"],["dining","hall"],["santa","barbara"],["barbara","city"],["city","college"],["college","cafeteria"],["food","service"],["service","location"],["waiting","staff"],["staff","table"],["table","service"],["service","whether"],["large","office"],["office","building"],["school","dining"],["dining","location"],["also","referred"],["dining","hall"],["british","english"],["english","cafeterias"],["although","thenglish"],["thenglish","term"],["term","came"],["latin","american"],["american","spanish"],["meaning","coffeehouse"],["coffeehouse","instead"],["table","service"],["food","serving"],["allowing","arbitrary"],["arbitrary","walking"],["walking","paths"],["paths","customers"],["customers","take"],["food","thathey"],["thathey","desire"],["walk","along"],["along","placing"],["often","stations"],["customers","order"],["order","food"],["prepared","particularly"],["served","hot"],["immediately","prepared"],["prepared","alternatively"],["food","items"],["like","customers"],["customers","collect"],["empty","container"],["container","pay"],["pay","athe"],["athe","check"],["free","unlimited"],["unlimited","second"],["second","servings"],["often","allowed"],["legal","purposes"],["consumption","patterns"],["customers","thisystem"],["alcoholic","beverage"],["us","customers"],["customers","areither"],["areither","charged"],["flat","rate"],["pay","athe"],["athe","point"],["sale","check"],["self","service"],["service","cafeterias"],["cafeterias","charge"],["students","pay"],["three","meals"],["single","large"],["large","payment"],["thentire","academic"],["academic","term"],["term","semester"],["cafeterias","require"],["often","found"],["found","within"],["larger","institution"],["institution","catering"],["example","school"],["dormitory","residence"],["residence","halls"],["halls","department"],["department","store"],["military","base"],["office","buildings"],["buildings","often"],["one","time"],["time","upscale"],["upscale","cafeteria"],["cafeteria","style"],["style","restaurants"],["restaurants","dominated"],["southern","united"],["united","states"],["midwestern","united"],["united","states"],["numerous","prominent"],["prominent","chains"],["k","w"],["w","cafeteria"],["cafeteria","k"],["k","w"],["cafeterias","blue"],["blue","boar"],["boar","cafeterias"],["cafeterias","blue"],["blue","boar"],["boar","among"],["currently","two"],["two","midwestern"],["smaller","chains"],["chains","usually"],["usually","located"],["single","city"],["institutions","withexception"],["k","went"],["withe","rise"],["rise","ofast"],["ofast","food"],["largely","finished"],["casual","dining"],["chains","particularly"],["chain","continue"],["gap","left"],["smaller","midwestern"],["midwestern","chainsuch"],["cafeterias","centered"],["business","file"],["file","postcard"],["childs","philadelphia"],["philadelphia","jpg"],["jpg","thumb"],["thumb","left"],["left","childs"],["childs","restaurant"],["restaurant","philadelphia"],["circa","file"],["thumb","divided"],["divided","trays"],["east","german"],["german","canteen"],["first","self"],["self","service"],["service","restaurant"],["thexchange","buffet"],["buffet","inew"],["inew","york"],["york","city"],["city","opened"],["opened","september"],["exclusively","male"],["male","clientele"],["clientele","food"],["patrons","ate"],["ate","standing"],["two","formats"],["cafeteria","described"],["columbian","exposition"],["chicago","entrepreneur"],["entrepreneur","john"],["john","kruger"],["kruger","built"],["american","version"],["sweden","emphasizing"],["light","fare"],["called","ithe"],["ithe","cafeteria"],["cafeteria","spanish"],["coffee","shop"],["shop","thexposition"],["thexposition","attracted"],["million","visitors"],["visitors","half"],["us","population"],["population","athe"],["athe","time"],["six","months"],["america","first"],["first","heard"],["self","service"],["service","dining"],["samuel","william"],["william","childs"],["childs","nations"],["nations","restaurant"],["restaurant","news"],["news","february"],["retrieved","april"],["april","file"],["file","pirate"],["cafe","jpg"],["jpg","thumb"],["thumb","food"],["food","court"],["court","style"],["style","cafeteria"],["port","charlotte"],["charlotte","high"],["high","school"],["school","port"],["port","charlotte"],["charlotte","florida"],["florida","high"],["high","school"],["school","meanwhile"],["mid","scale"],["scale","america"],["childs","restaurants"],["restaurants","quickly"],["quickly","grew"],["locations","inew"],["inew","york"],["york","city"],["hundreds","across"],["credited","withe"],["withe","innovation"],["adding","trays"],["tray","line"],["self","service"],["service","format"],["format","introduced"],["atheir","broadway"],["broadway","location"],["location","childs"],["dining","however"],["childs","restaurants"],["many","ultimately"],["dominant","design"],["thathe","cafeteria"],["cafeteria","craze"],["craze","started"],["downtown","la"],["la","restaurant"],["people","chose"],["long","counter"],["la","original"],["los","angeles"],["angeles","times"],["times","november"],["november","california"],["long","history"],["cafeteria","format"],["format","notably"],["brothers","cafeterias"],["cafeteria","clifton"],["region","thearliest"],["thearliest","cafeterias"],["least","years"],["childs","already"],["many","locations"],["locations","around"],["country","horn"],["horn","hardart"],["automat","format"],["format","chain"],["chain","different"],["well","established"],["mid","atlantic"],["atlantic","region"],["fast","food"],["food","restaurant"],["fast","casual"],["casual","restaurant"],["restaurant","formats"],["formats","outside"],["united","states"],["withe","passing"],["jules","ferry"],["ferry","laws"],["laws","ferry"],["ferry","law"],["law","mandated"],["public","school"],["school","education"],["children","accordingly"],["government","also"],["also","encouraged"],["encouraged","schools"],["provide","meals"],["students","ineed"],["ineed","thus"],["thus","resulting"],["french","according"],["bring","home"],["home","cooked"],["cooked","meals"],["properly","fed"],["france","became"],["use","spread"],["spread","beyond"],["beyond","schools"],["workforce","thus"],["thus","due"],["eventually","new"],["new","labor"],["eating","areas"],["also","reinforced"],["world","war"],["war","ii"],["national","health"],["nutrition","came"],["food","culture"],["greenwood","press"],["press","print"],["names","file"],["file","cafeteria"],["thumb","hospital"],["hospital","cafeteria"],["cafeteria","tray"],["tray","line"],["line","server"],["port","charlotte"],["charlotte","florida"],["florida","file"],["colorado","high"],["high","school"],["school","cafeteria"],["high","school"],["school","cafeteria"],["cafeteria","used"],["united","states"],["states","armed"],["armed","forces"],["forces","us"],["us","military"],["military","installation"],["chow","hall"],["mess","hall"],["galley","mess"],["mess","decks"],["dining","facility"],["facility","often"],["often","abbreviated"],["common","british"],["british","armed"],["armed","forces"],["usa","often"],["often","refer"],["though","breakfast"],["often","eaten"],["school","cafeterias"],["movable","seating"],["allow","use"],["university","dormitories"],["dining","commons"],["food","court"],["cafeteria","found"],["many","shopping"],["shopping","mall"],["featuring","multiple"],["multiple","food"],["food","vendors"],["concessions","although"],["food","court"],["court","could"],["could","equally"],["public","rather"],["monastery","monasteries"],["monasteries","boarding"],["boarding","school"],["ancient","university"],["university","older"],["older","universities"],["universities","refer"],["cafeterias","refectory"],["refectory","modern"],["modern","day"],["day","british"],["british","cathedral"],["england","often"],["often","use"],["phrase","refectory"],["cafeteria","open"],["public","historically"],["example","although"],["original","year"],["year","old"],["old","refectory"],["gloucester","cathedral"],["stage","setting"],["dining","scenes"],["harry","potter"],["potter","movies"],["mostly","used"],["practice","area"],["relatively","modern"],["modern","year"],["year","old"],["public","alike"],["today","referred"],["cafeteria","located"],["tv","studio"],["often","called"],["commissary","nbc"],["hungry","peacock"],["show","college"],["college","cafeteria"],["cafeteria","file"],["main","dining"],["dining","hall"],["city","college"],["san","francisco"],["francisco","file"],["college","canteen"],["canteen","india"],["american","english"],["college","cafeteria"],["cafeteria","intended"],["college","students"],["british","english"],["often","called"],["residence","hall"],["separate","building"],["building","many"],["colleges","employ"],["students","varies"],["normally","around"],["around","meals"],["meals","per"],["per","week"],["week","like"],["like","normal"],["normal","cafeterias"],["campuses","instead"],["paying","money"],["service","pays"],["meal","plan"],["college","cafeterias"],["meal","plan"],["plan","whereby"],["patron","pays"],["certain","amount"],["amount","athe"],["athe","start"],["computer","system"],["system","student"],["meal","plan"],["plan","meal"],["meal","plans"],["vary","widely"],["oftenot","necessary"],["college","cafeteria"],["cafeteria","typically"],["meal","servings"],["servings","points"],["points","dollars"],["buffet","dinners"],["plan","may"],["may","give"],["per","week"],["next","week"],["semester","many"],["many","schools"],["schools","offer"],["offer","several"],["several","different"],["different","options"],["meal","plans"],["main","cafeteria"],["meal","plan"],["smaller","cafeterias"],["cafeterias","caf"],["restaurants","bars"],["even","fast"],["fast","food"],["food","chains"],["chains","located"],["surrounding","town"],["city","may"],["may","accept"],["accept","meal"],["meal","plans"],["college","cafeteria"],["cafeteria","system"],["system","often"],["virtual","monopoly"],["students","due"],["isolated","location"],["residence","contracts"],["contracts","include"],["full","meal"],["meal","plan"],["thentire","food"],["food","service"],["service","operation"],["managed","services"],["services","company"],["various","names"],["see","also"],["also","automat"],["automat","coffee"],["coffee","service"],["service","coffeehouse"],["coffeehouse","food"],["food","court"],["court","hawker"],["hawker","centre"],["centre","list"],["cafeterias","refectory"],["refectory","category"],["category","rooms"],["rooms","category"],["category","types"]],"all_collocations":["corporate cafeteria","bangalore india","india december","december file","dining hall","house harvard","harvard college","house harvard","harvard college","college august","august file","dining hall","santa barbara","barbara city","city college","college cafeteria","food service","service location","waiting staff","staff table","table service","service whether","large office","office building","school dining","dining location","also referred","dining hall","british english","english cafeterias","although thenglish","thenglish term","term came","latin american","american spanish","meaning coffeehouse","coffeehouse instead","table service","food serving","allowing arbitrary","arbitrary walking","walking paths","paths customers","customers take","food thathey","thathey desire","walk along","along placing","often stations","customers order","order food","prepared particularly","served hot","immediately prepared","prepared alternatively","food items","like customers","customers collect","empty container","container pay","pay athe","athe check","free unlimited","unlimited second","second servings","often allowed","legal purposes","consumption patterns","customers thisystem","alcoholic beverage","us customers","customers areither","areither charged","flat rate","pay athe","athe point","sale check","self service","service cafeterias","cafeterias charge","students pay","three meals","single large","large payment","thentire academic","academic term","term semester","cafeterias require","often found","found within","larger institution","institution catering","example school","dormitory residence","residence halls","halls department","department store","military base","office buildings","buildings often","one time","time upscale","upscale cafeteria","cafeteria style","style restaurants","restaurants dominated","southern united","united states","midwestern united","united states","numerous prominent","prominent chains","k w","w cafeteria","cafeteria k","k w","cafeterias blue","blue boar","boar cafeterias","cafeterias blue","blue boar","boar among","currently two","two midwestern","smaller chains","chains usually","usually located","single city","institutions withexception","k went","withe rise","rise ofast","ofast food","largely finished","casual dining","chains particularly","chain continue","gap left","smaller midwestern","midwestern chainsuch","cafeterias centered","business file","file postcard","childs philadelphia","philadelphia jpg","left childs","childs restaurant","restaurant philadelphia","circa file","thumb divided","divided trays","east german","german canteen","first self","self service","service restaurant","thexchange buffet","buffet inew","inew york","york city","city opened","opened september","exclusively male","male clientele","clientele food","patrons ate","ate standing","two formats","cafeteria described","columbian exposition","chicago entrepreneur","entrepreneur john","john kruger","kruger built","american version","sweden emphasizing","light fare","called ithe","ithe cafeteria","cafeteria spanish","coffee shop","shop thexposition","thexposition attracted","million visitors","visitors half","us population","population athe","athe time","six months","america first","first heard","self service","service dining","samuel william","william childs","childs nations","nations restaurant","restaurant news","news february","retrieved april","april file","file pirate","cafe jpg","thumb food","food court","court style","style cafeteria","port charlotte","charlotte high","high school","school port","port charlotte","charlotte florida","florida high","high school","school meanwhile","mid scale","scale america","childs restaurants","restaurants quickly","quickly grew","locations inew","inew york","york city","hundreds across","credited withe","withe innovation","adding trays","tray line","self service","service format","format introduced","atheir broadway","broadway location","location childs","dining however","childs restaurants","many ultimately","dominant design","thathe cafeteria","cafeteria craze","craze started","downtown la","la restaurant","people chose","long counter","la original","los angeles","angeles times","times november","november california","long history","cafeteria format","format notably","brothers cafeterias","cafeteria clifton","region thearliest","thearliest cafeterias","least years","childs already","many locations","locations around","country horn","horn hardart","automat format","format chain","chain different","well established","mid atlantic","atlantic region","fast food","food restaurant","fast casual","casual restaurant","restaurant formats","formats outside","united states","withe passing","jules ferry","ferry laws","laws ferry","ferry law","law mandated","public school","school education","children accordingly","government also","also encouraged","encouraged schools","provide meals","students ineed","ineed thus","thus resulting","french according","bring home","home cooked","cooked meals","properly fed","france became","use spread","spread beyond","beyond schools","workforce thus","thus due","eventually new","new labor","eating areas","also reinforced","world war","war ii","national health","nutrition came","food culture","greenwood press","press print","names file","file cafeteria","thumb hospital","hospital cafeteria","cafeteria tray","tray line","line server","port charlotte","charlotte florida","florida file","colorado high","high school","school cafeteria","high school","school cafeteria","cafeteria used","united states","states armed","armed forces","forces us","us military","military installation","chow hall","mess hall","galley mess","mess decks","dining facility","facility often","often abbreviated","common british","british armed","armed forces","usa often","often refer","though breakfast","often eaten","school cafeterias","movable seating","allow use","university dormitories","dining commons","food court","cafeteria found","many shopping","shopping mall","featuring multiple","multiple food","food vendors","concessions although","food court","court could","could equally","public rather","monastery monasteries","monasteries boarding","boarding school","ancient university","university older","older universities","universities refer","cafeterias refectory","refectory modern","modern day","day british","british cathedral","england often","often use","phrase refectory","cafeteria open","public historically","example although","original year","year old","old refectory","gloucester cathedral","stage setting","dining scenes","harry potter","potter movies","mostly used","practice area","relatively modern","modern year","year old","public alike","today referred","cafeteria located","tv studio","often called","commissary nbc","hungry peacock","show college","college cafeteria","cafeteria file","main dining","dining hall","city college","san francisco","francisco file","college canteen","canteen india","american english","college cafeteria","cafeteria intended","college students","british english","often called","residence hall","separate building","building many","colleges employ","students varies","normally around","around meals","meals per","per week","week like","like normal","normal cafeterias","campuses instead","paying money","service pays","meal plan","college cafeterias","meal plan","plan whereby","patron pays","certain amount","amount athe","athe start","computer system","system student","meal plan","plan meal","meal plans","vary widely","oftenot necessary","college cafeteria","cafeteria typically","meal servings","servings points","points dollars","buffet dinners","plan may","may give","per week","next week","semester many","many schools","schools offer","offer several","several different","different options","meal plans","main cafeteria","meal plan","smaller cafeterias","cafeterias caf","restaurants bars","even fast","fast food","food chains","chains located","surrounding town","city may","may accept","accept meal","meal plans","college cafeteria","cafeteria system","system often","virtual monopoly","students due","isolated location","residence contracts","contracts include","full meal","meal plan","thentire food","food service","service operation","managed services","services company","various names","see also","also automat","automat coffee","coffee service","service coffeehouse","coffeehouse food","food court","court hawker","hawker centre","centre list","cafeterias refectory","refectory category","category rooms","rooms category","category types"],"new_description":"file thumb corporate cafeteria bangalore india december file dining thumb dining hall house harvard college house harvard college august file thumb dining hall santa_barbara city college cafeteria type food_service location little waiting_staff table_service whether restaurant within institution large office building school school dining location also_referred dining hall canteen british_english cafeterias different coffeehouse although thenglish term came latin_american spanish still meaning coffeehouse instead table_service food serving either line allowing arbitrary walking paths customers take food thathey desire walk along placing tray addition often stations customers order food wait prepared particularly itemsuch hamburger taco must served hot immediately prepared alternatively patron given number item broughto table food_items water like customers collect empty container pay athe check fill container check free unlimited second servings often allowed thisystem legal purposes consumption patterns customers thisystem rarely used alcoholic_beverage us customers areither charged flat rate admission buffet pay athe point sale check item self service cafeterias charge weight items patron plate universities students pay three meals day making single large payment thentire academic term semester cafeterias require employees often found within larger institution catering clientele institution example school college dormitory residence halls department store hospital museum military base prison office buildings often cafeterias one_time upscale cafeteria style_restaurants dominated culture southern_united_states lesser midwestern united_states numerous prominent chains restaurant morrison cafeteria cafeteria w house k w cafeteria k w cafeterias blue boar cafeterias blue boar among currently two midwestern exist located illinois also number smaller chains usually_located around single city institutions withexception k went decline withe rise ofast_food largely finished rise casual_dining chains particularly cafeterias took morrison chain continue fill gap left decline older smaller midwestern chainsuch cafeterias centered indianapolis still much business file postcard childs philadelphia jpg thumb left childs restaurant philadelphia circa file thumb divided trays east german canteen late perhaps first self service_restaurant necessarily cafeteria us thexchange buffet inew_york_city opened september catered exclusively male clientele food purchased counter patrons ate standing f america represents predecessor two formats cafeteria described automat world columbian_exposition chicago entrepreneur john kruger built american version seen traveling sweden emphasizing simplicity light fare called ithe cafeteria spanish coffee_shop thexposition attracted million_visitors half us population athe_time six months kruger operation america first heard term experienced self service dining samuel william childs nations restaurant news february diner retrieved_april file pirate cafe jpg thumb food_court style cafeteria port charlotte high_school port charlotte florida high_school meanwhile mid scale america chain childs restaurants quickly grew locations inew_york_city hundreds across us canada childs credited withe innovation adding trays tray line self service format introduced atheir broadway location childs change format sit dining however wasoon childs restaurants many ultimately dominant design cafeterias thathe cafeteria craze started may helen opened downtown la restaurant people chose food long counter carried trays perry la original los_angeles times november california long history cafeteria format notably brothers cafeterias clifton cafeteria clifton facts region thearliest cafeterias california opened least years kruger childs already many locations around country horn_hardart automat format chain different cafeterias well_established mid atlantic region popularity cafeterias overcome fast_food_restaurant fast_casual restaurant formats outside united_states development cafeterias observed france early withe passing jules ferry laws ferry law law mandated public school education available children accordingly government also encouraged schools provide meals students ineed thus resulting conception cafeterias french according prior creation cafeterias students able bring home cooked meals able properly fed schools cafeterias france became_popular use spread beyond schools workforce thus due pressure workers eventually new labor businesses minimum eating areas practice also reinforced theffects world_war ii importance national health nutrition came julia food_culture france greenwood press_print names file cafeteria thumb hospital cafeteria tray line server port charlotte florida file colorado high_school cafeteria david thumb high_school cafeteria used students colorado cafeteria united_states armed forces us military installation known chow hall mess hall galley mess decks formally dining facility often abbreviated whereas common british armed forces known usa often refer cafeterias though breakfast well lunch often eaten school cafeterias us stages movable seating allow use rooms known university dormitories sometimes halls dining commons food_court type cafeteria found many shopping_mall airport featuring multiple food_vendors concessions although food_court could equally styled type restaurant well aligned public rather monastery monasteries boarding school ancient university older universities refer cafeterias refectory modern_day british cathedral abbey notably church england often use phrase refectory describe cafeteria open public historically refectory generally used monks example although original year_old refectory gloucester cathedral stage setting dining scenes harry_potter movies mostly used practice area relatively modern year_old used cafeteria staff public alike today referred refectory cafeteria located tv studio often_called commissary nbc commissary hungry peacock often johnny show college cafeteria file thumb main dining hall city college san_francisco file college thumb college canteen india american_english college cafeteria cafeteria intended college_students british_english often_called refectory cafeterias part residence hall separate building many colleges employ students work cafeteria number students varies school school normally around meals per week like normal cafeterias person tray food wants campuses instead paying money service pays purchasing meal plan method payment college cafeterias commonly form meal plan whereby patron pays certain amount athe_start semester plan stored computer system student cards used access meal plan meal plans vary widely details oftenot necessary eat college cafeteria typically college usage plan counting number meal servings points dollars number buffet dinners plan may give student certainumber per week semester may may roll next week semester many schools offer several different options using meal plans main cafeteria usually meal plan used smaller cafeterias caf restaurants bars even fast_food chains located campus streets surrounding town city may accept meal plans college cafeteria system often virtual monopoly students due isolated location residence contracts include full meal plan uncommon thentire food_service operation outsourced managed services company group operates various names see_also automat coffee service coffeehouse food_court hawker_centre list cafeterias refectory category rooms category_types restaurants"},{"title":"Cakery","description":"file kronprinzessinenpalais p jpg thumb upright a modern day cake shop in germany a cakery or cake shop is a retail businesspecializing in producing and or selling cake s they may also sell cupcakes muffinsponge cake sponges as well as other baked goods that fall under the title of a cake shops may also sell equipment and supplies for home cake baking especially for cake decorating but not all do this another common but not universal sideline ispecial ordersuch as wedding cake s and elaborate birthday cake s products are baked on site in the same manner to that of a bakery but does not make or sell other associated items the term cakery may sometimes be used to get around the facthat bakery or bakeries have been taken as a name for many long established businesses and new entrants wanto stand out commonly a cakery does not sell anything that is not classed by definition as a cake a sweet baked food made oflour liquid eggs and other ingredientsuch as leavening agent raising agents and flavorings a flat rounded mass of dough or batter cooking batter such as a pancake that is baked or fried by basic definition at leasthis would not include pastriesweet or savoury or puddings a cakery s distinction from a general bakery may not be astrict as with a p tisserie for example which is a legally protected class of pastry making establishments in some countriesee also baking baker list of baked goods category types of restaurants category food retailing category cakes","main_words":["file","p","jpg","thumb","upright","modern_day","cake","shop","germany","cakery","cake","shop","retail","producing","selling","cake","may_also","sell","cake","well","baked_goods","fall","title","cake","shops","may_also","sell","equipment","supplies","home","cake","baking","especially","cake","another","common","universal","wedding","cake","elaborate","birthday","cake","products","baked","site","manner","bakery","make","sell","associated","items","term","cakery","may","sometimes","used","get","around","facthat","bakery","bakeries","taken","name","many","long","established","businesses","new","entrants","wanto","stand","commonly","cakery","sell","anything","definition","cake","sweet","baked","food","made","liquid","eggs","agent","raising","agents","flat","rounded","mass","dough","batter","cooking","batter","pancake","baked","fried","basic","definition","would","include","savoury","puddings","cakery","distinction","general","bakery","may","p","example","legally","protected","class","pastry","making","establishments","also","baking","baker","list","baked_goods","category_types","restaurants_category","food","retailing","category","cakes"],"clean_bigrams":[["p","jpg"],["jpg","thumb"],["thumb","upright"],["modern","day"],["day","cake"],["cake","shop"],["cake","shop"],["selling","cake"],["may","also"],["also","sell"],["baked","goods"],["cake","shops"],["shops","may"],["may","also"],["also","sell"],["sell","equipment"],["home","cake"],["cake","baking"],["baking","especially"],["another","common"],["wedding","cake"],["elaborate","birthday"],["birthday","cake"],["associated","items"],["term","cakery"],["cakery","may"],["may","sometimes"],["get","around"],["facthat","bakery"],["many","long"],["long","established"],["established","businesses"],["new","entrants"],["entrants","wanto"],["wanto","stand"],["sell","anything"],["sweet","baked"],["baked","food"],["food","made"],["liquid","eggs"],["agent","raising"],["raising","agents"],["flat","rounded"],["rounded","mass"],["batter","cooking"],["cooking","batter"],["basic","definition"],["general","bakery"],["bakery","may"],["legally","protected"],["protected","class"],["pastry","making"],["making","establishments"],["also","baking"],["baking","baker"],["baker","list"],["baked","goods"],["goods","category"],["category","types"],["restaurants","category"],["category","food"],["food","retailing"],["retailing","category"],["category","cakes"]],"all_collocations":["p jpg","modern day","day cake","cake shop","cake shop","selling cake","may also","also sell","baked goods","cake shops","shops may","may also","also sell","sell equipment","home cake","cake baking","baking especially","another common","wedding cake","elaborate birthday","birthday cake","associated items","term cakery","cakery may","may sometimes","get around","facthat bakery","many long","long established","established businesses","new entrants","entrants wanto","wanto stand","sell anything","sweet baked","baked food","food made","liquid eggs","agent raising","raising agents","flat rounded","rounded mass","batter cooking","cooking batter","basic definition","general bakery","bakery may","legally protected","protected class","pastry making","making establishments","also baking","baking baker","baker list","baked goods","goods category","category types","restaurants category","category food","food retailing","retailing category","category cakes"],"new_description":"file p jpg thumb upright modern_day cake shop germany cakery cake shop retail producing selling cake may_also sell cake well baked_goods fall title cake shops may_also sell equipment supplies home cake baking especially cake another common universal wedding cake elaborate birthday cake products baked site manner bakery make sell associated items term cakery may sometimes used get around facthat bakery bakeries taken name many long established businesses new entrants wanto stand commonly cakery sell anything definition cake sweet baked food made liquid eggs agent raising agents flat rounded mass dough batter cooking batter pancake baked fried basic definition would include savoury puddings cakery distinction general bakery may p example legally protected class pastry making establishments also baking baker list baked_goods category_types restaurants_category food retailing category cakes"},{"title":"California Office of Tourism","description":"the california office of tourism popularly referred to as the division of tourism california government code g is a statutory office within the california business transportation and housing agency business transportation and housing agency created by the california tourismarketing acthe office s primary responsibilities are oversight of the california tourism selection committee and the california travel and tourism commission the office is directed by the caroline beteta who is deputy secretary of tourism of the business transportation and housing agency california government code c who also serves as thexecutive director of the travel and tourism commission category state agencies of california tourism category tourism agencies","main_words":["california","office","tourism","popularly","referred","division","tourism","california","government","code","g","statutory","office","within","california","business","transportation","housing","agency","business","transportation","housing","agency","created","california","tourismarketing","acthe","office","primary","responsibilities","oversight","california","tourism","selection","committee","california","travel_tourism","commission","office","directed","caroline","deputy","secretary","tourism_business","transportation","housing","agency","california","government","code","c","also_serves","thexecutive","director","travel_tourism","commission","category","state","agencies","california","tourism_category_tourism","agencies"],"clean_bigrams":[["california","office"],["tourism","popularly"],["popularly","referred"],["tourism","california"],["california","government"],["government","code"],["code","g"],["statutory","office"],["office","within"],["california","business"],["business","transportation"],["housing","agency"],["agency","business"],["business","transportation"],["housing","agency"],["agency","created"],["california","tourismarketing"],["tourismarketing","acthe"],["acthe","office"],["primary","responsibilities"],["california","tourism"],["tourism","selection"],["selection","committee"],["california","travel"],["tourism","commission"],["deputy","secretary"],["business","transportation"],["housing","agency"],["agency","california"],["california","government"],["government","code"],["code","c"],["also","serves"],["thexecutive","director"],["tourism","commission"],["commission","category"],["category","state"],["state","agencies"],["california","tourism"],["tourism","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["california office","tourism popularly","popularly referred","tourism california","california government","government code","code g","statutory office","office within","california business","business transportation","housing agency","agency business","business transportation","housing agency","agency created","california tourismarketing","tourismarketing acthe","acthe office","primary responsibilities","california tourism","tourism selection","selection committee","california travel","tourism commission","deputy secretary","business transportation","housing agency","agency california","california government","government code","code c","also serves","thexecutive director","tourism commission","commission category","category state","state agencies","california tourism","tourism category","category tourism","tourism agencies"],"new_description":"california office tourism popularly referred division tourism california government code g statutory office within california business transportation housing agency business transportation housing agency created california tourismarketing acthe office primary responsibilities oversight california tourism selection committee california travel_tourism commission office directed caroline deputy secretary tourism_business transportation housing agency california government code c also_serves thexecutive director travel_tourism commission category state agencies california tourism_category_tourism agencies"},{"title":"Campervan hire agency","description":"a campervan hire agency is a specialist vehicle hire company whichires out campervans to customers these campervans can be privately owned or company owned campervan hire is popular in the uk especially for music festivals and there are several companies in the market campervan hire is a category of vacation rental notable features campervan hire agencies differ fromotorhome hire agencies by stocking campervans instead of motorhomes the differences between the two vehicle types is clear buthe terminology has become cloudy over the yearsome agencies may use the terms motorhome and campervan interchangeably which may have led to consumer confusion campervan hire vehicles are generally smaller than their motorhome counterparts theight length and width of the vehicle will be smaller and the maximumass will also be less as a result campervans will beasier to drive and suitable for most driving licences contrastingly motorhomes will offer more space and facilities insurance with campervan management companies is often cheaper and this results in an overallower total hire cost international market campervan management companies are spread across the globe in response to the boom in the hire market campervan rental has become very popular inew zealand with many considering self drive holidays to be one of the best way to the landscape on rural roads which are traffic free compared to those found in other countries in the uk campervan management companies cater to festival goers by offering a solution to the traditional rain and mud soaked tent environment references category vacation rental category tourist accommodations category recreational vehicles","main_words":["campervan","hire","agency","specialist","vehicle","hire","company","campervans","customers","campervans","privately_owned","company","owned","campervan","hire","popular","uk","especially","music_festivals","several","companies","market","campervan","hire","category","vacation_rental","notable","features","campervan","hire","agencies","differ","hire","agencies","campervans","instead","differences","two","vehicle","types","clear","buthe","terminology","become","agencies","may","use","terms","motorhome","campervan","may","led","consumer","confusion","campervan","hire","vehicles","generally","smaller","motorhome","counterparts","theight","length","width","vehicle","smaller","also","less","result","campervans","drive","suitable","driving","licences","offer","space","facilities","insurance","campervan","management","companies","often","cheaper","results","total","hire","cost","international","market","campervan","management","companies","spread","across","globe","response","boom","hire","market","campervan","rental","become_popular","inew_zealand","many","considering","self","drive","holidays","one","best","way","landscape","rural","roads","traffic","free","compared","found","countries","uk","campervan","management","companies","cater","festival","goers","offering","solution","traditional","rain","mud","tent","environment","references_category","vacation_rental","category_tourist","accommodations","category","recreational","vehicles"],"clean_bigrams":[["campervan","hire"],["hire","agency"],["specialist","vehicle"],["vehicle","hire"],["hire","company"],["privately","owned"],["company","owned"],["owned","campervan"],["campervan","hire"],["uk","especially"],["music","festivals"],["several","companies"],["market","campervan"],["campervan","hire"],["category","vacation"],["vacation","rental"],["rental","notable"],["notable","features"],["features","campervan"],["campervan","hire"],["hire","agencies"],["agencies","differ"],["hire","agencies"],["campervans","instead"],["two","vehicle"],["vehicle","types"],["clear","buthe"],["buthe","terminology"],["yearsome","agencies"],["agencies","may"],["may","use"],["terms","motorhome"],["consumer","confusion"],["confusion","campervan"],["campervan","hire"],["hire","vehicles"],["generally","smaller"],["motorhome","counterparts"],["counterparts","theight"],["theight","length"],["result","campervans"],["driving","licences"],["facilities","insurance"],["campervan","management"],["management","companies"],["often","cheaper"],["total","hire"],["hire","cost"],["cost","international"],["international","market"],["market","campervan"],["campervan","management"],["management","companies"],["spread","across"],["hire","market"],["market","campervan"],["campervan","rental"],["popular","inew"],["inew","zealand"],["many","considering"],["considering","self"],["self","drive"],["drive","holidays"],["best","way"],["rural","roads"],["traffic","free"],["free","compared"],["uk","campervan"],["campervan","management"],["management","companies"],["companies","cater"],["festival","goers"],["traditional","rain"],["tent","environment"],["environment","references"],["references","category"],["category","vacation"],["vacation","rental"],["rental","category"],["category","tourist"],["tourist","accommodations"],["accommodations","category"],["category","recreational"],["recreational","vehicles"]],"all_collocations":["campervan hire","hire agency","specialist vehicle","vehicle hire","hire company","privately owned","company owned","owned campervan","campervan hire","uk especially","music festivals","several companies","market campervan","campervan hire","category vacation","vacation rental","rental notable","notable features","features campervan","campervan hire","hire agencies","agencies differ","hire agencies","campervans instead","two vehicle","vehicle types","clear buthe","buthe terminology","yearsome agencies","agencies may","may use","terms motorhome","consumer confusion","confusion campervan","campervan hire","hire vehicles","generally smaller","motorhome counterparts","counterparts theight","theight length","result campervans","driving licences","facilities insurance","campervan management","management companies","often cheaper","total hire","hire cost","cost international","international market","market campervan","campervan management","management companies","spread across","hire market","market campervan","campervan rental","popular inew","inew zealand","many considering","considering self","self drive","drive holidays","best way","rural roads","traffic free","free compared","uk campervan","campervan management","management companies","companies cater","festival goers","traditional rain","tent environment","environment references","references category","category vacation","vacation rental","rental category","category tourist","tourist accommodations","accommodations category","category recreational","recreational vehicles"],"new_description":"campervan hire agency specialist vehicle hire company campervans customers campervans privately_owned company owned campervan hire popular uk especially music_festivals several companies market campervan hire category vacation_rental notable features campervan hire agencies differ hire agencies campervans instead differences two vehicle types clear buthe terminology become yearsome agencies may use terms motorhome campervan may led consumer confusion campervan hire vehicles generally smaller motorhome counterparts theight length width vehicle smaller also less result campervans drive suitable driving licences offer space facilities insurance campervan management companies often cheaper results total hire cost international market campervan management companies spread across globe response boom hire market campervan rental become_popular inew_zealand many considering self drive holidays one best way landscape rural roads traffic free compared found countries uk campervan management companies cater festival goers offering solution traditional rain mud tent environment references_category vacation_rental category_tourist accommodations category recreational vehicles"},{"title":"Camping","description":"file biskeri camping img jpg thumb camping in the kullu district of himachal pradesh india camping is an outdoor activity outdoorecreational activity involving overnight stays away from home in a shelter such as a tent a caravan towed trailer caravan or a motorhome generally participants leave developed areas to spend time outdoors in more natural ones in pursuit of activities providing them enjoymento be regarded as camping a minimum of one night ispent outdoors distinguishing it from day tripping picnicking and other similarly shorterm recreational activities camping can benjoyed through all four seasons luxury may be an element as in early th century african safari s but including accommodations in fully equipped fixed structuresuch as high end sporting camp s under the banner of camping blurs the line camping as a recreational activity became popular among elites in thearly th century with time it grew more democratic and varied modern campers frequent protected area publicly owned natural resourcesuch as national park national and state parks wilderness area s and commercial campgrounds camping is a key part of manyouth organizations around the world such ascouting which use ito teach both self reliance and teamwork file unidentified group of men campingjpg thumb camping in ontario circamping describes a range of activities and approaches toutdoor accommodation survivalist camperset off with as little as possible to get by whereas recreational vehicle travelers arrivequipped witheir own electricity heat and patio furniture camping may be combined withiking as in backpacking wilderness backpacking and is oftenjoyed in conjunction with other outdoor activitiesuch as canoeing climbing fishing and hunting there is no universally heldefinition of what is and what is not camping fundamentally it reflects a combination of intent and the nature of activities involved a children summer camp with dining hall meals and bunkhouse accommodations may have camp in its name but fails to reflecthe spirit and form of camping as it is broadly understood similarly a homelessness homeless person s lifestyle may involve many common camping activitiesuch asleeping out and preparing meals over a fire but fails to reflecthelective nature and pursuit of spirit rejuvenation that are integral aspect of camping likewise cultures with itinerant lifestyles or lack of permanent dwellings cannot be said to be camping it is justheir way of life file thomas hiram holdingjpg thumb thomas hiram holding outside his camping tenthe history of recreational camping is often traced back to thomas hiram holding a british travelling tailor but it was actually first popularised in the uk on the river thames by the s large numbers of visitors took part in the pastime which was connected to the late victorian craze for pleasure boating thearly camping equipment was very heavy so it was conveniento transport it by boat or to use crafthat converted into tents although thomas hiram holding is often seen as the father of modern camping in the uk he was responsible for popularising a differentype of camping in thearly twentieth century hexperienced the activity in the wild from his youth when he had spent much time withis parents traveling across the american prairies later hembarked on a cycling and camping tour with some friends across ireland his book on his ireland experience cycle and camp in connemara led to the formation of the first campingroup in the association of cycle campers later to become the camping and caravanning club he wrote the campers handbook in so that he could share his enthusiasm for the great outdoors withe world possibly the first commercial campinground in the world was cunningham s camp escalator cunningham s camp near douglas isle of man which opened in the association of cycle campers opened its first own camping site in weybridge by thatime the organization had several hundred members in the association was merged into the national camping club although wwas responsible for a certain hiatus in camping activity the association received a new lease of life after the war when sirobert baden powell founder of the scouting boy scouts movement became its presidenthe international federation of camping clubs federation internationale de camping et de caravanning was founded in with national clubs from all over the world affiliating with it by the s camping had become an established family holiday standard and today camp sites are ubiqitous across europe and north americadventure camping adventure camping is a form of camping by people who race possibly adventure racing or mountain biking during the day and camp in a minimalist way at nighthey might use the basic items of camping equipment such as a micro camping stove sleeping bag and bivouac shelter dry camping dry camping is camping at a site without a reliable preexisting water source such locations are known as dry camps campers must carry their own water in and out of camp which requires much more preparation than would otherwise be requiredry camping is very common in deserts and is often preferredue to the risk oflash floods file hikers with packsjpg thumbackpacking wilderness backpackers carrying camping equipment backpacking wilderness backpacking affords a maximum wilderness experience specialized gear allows enthusiasts to both enjoy popular local recreational spots and access the most remote locations technological advance and consumer interest in camping have led to lighter and more diverse backpackingear improvementsuch as titanium cookware ultra light wicking fabrics and heat molded hip straps make for lighter loads and enhanced performance as there is always the possibility of severe weather and injury in the backcountry cell and satellite phone s are sometimes carried for emergencies with varying coverage backpacking may involve riding or being accompanied by pack animal such as horses mules and llama these increase carrying capacity athexpense of trail condition ultralight backpacking enthusiasts bring as little as possible while camping inherently producing a smaller footprint and minimalized impact on a wilderness environmenthe choice to camp with less or even the minimum necessary to survive may be a matter of preference where it may overlap with survivalistyle camping oreflecthe activity being pursued camping whilengaging in such back country activities as rock climbing and cross country skiing puts a premium on the amount of gear that can effectively be carried thus lending to a less rather than more approach canoe camping canoe camping isimilar to backpacking and often affords much more weight and bulk to be carried when extended portage portaging is not involved electric motor s or small gas ones may be attached on some canoes where allowed for a faster journey on the waterproof bags and fishingeare common gear file a tenting partyjpg thumb a tenting party by alicia killaly c bicycle camping bicycle touring bicycle camping combines camping with cycling both in developed and natural areas try bike camping popular science october pp a form of bicycle camping that has become popular in some parts of the world involves cycling organisations offering organised multi day rides and providing riders with facilities and luggage transporthe great victorian bike ride in australia is one of the oldest and most successful examples of this operating since and involving thousands of riders on a nine day journey of around each year motorcycle camping is more similar to bicycle camping than car camping due to limited storage capacity lightweight compact backpacking equipment is used file gvbr tent city at anglesea pano vic jjron jpg center thumb px a temporary tent city iset up each nighto accommodate the thousands of participants thatake part in the great victorian bike ride in australia car off road and rv file car campingjpg thumb car camping is camping facilitated by a motor vehicle these forms of camping involve using a powered vehicle as an essential element of the camping experience glampinglamorous camping is a growinglobal phenomenon that combines camping withe luxury and amenities of a home or hotel its roots are in thearly s europeand american safari s in africa wealthy travellers accustomed to comfort and luxury did not wanto sacrificeither and their campsites and pampered wilderness lifestyles reflected it reenactment camping file french and indian wareenactmentjpg thumb modern day reenactor s of the th century french and indian war sleep in period tents and cook on campfires reenactment camping employs the methods and equipment appropriate to a specific historic era for personal enjoyment and other purposesuch as instruction and entertainment historical reenactorseek to replicate the conditions and technologies of such periods as the wild west american civil war and medieval timesocial camping file hattingen ruhrbr cke kosterstra e iesjpg thumb long term campsites include permanent and semi permanent setups and can lead to closerelationships with neighboring campers many campers enjoy socializing with small groups ofellow campersuch groups will arrangevents throughouthe year to allow members with similar interests or from similar geographical areas in order to collaborate this allows families to form small close knit societies and children to form lasting friendship s there are two large organizations in the uk who facilitate thisort of camping the caravan club and the camping and caravanning club some who participate in thisort of camping feel that it brings a closer form of bonding as members become more mutually dependenthan they would otherwise be in modern society social camping can also build more of a bond between members of the same family and between different families it is common for many campers torganize this type of activities witheir friends or neighborsocial campingoes beyond uniting families and it may also give the opportunity for lonely campers to enjoy this type of activity with individuals who share their enthusiasm in this matter because of the bonding this type of camping promotes it can also be used as a personnel training facility in fact many companies offer their employees employees this type of training because it helps connect people who do not necessarily know each other but who need to work in the samenvironment and need to get along successfully including this type of activity in a personnel training package is becoming more and more popular and it is also recommended because of the benefits it brings in morecent years those who camp alone have been able to share their experiences with other campers through blogs and online social networking there are many online websitespecially designed for people who are looking for camping companions or for those whonly wanto share their experiences with other people in this case campers may provide the others with useful tips resulting from their own experience individuals who are willing to camp are likely to access this type of websites and connect with other campers especially if they are novices because it gives them the opportunity to learn more abouthis activity survivalist camping survivalist campers learn the survival skills needed to survive in any outdoor situation this activity may require skills in obtaining food from the wild emergency medical treatments orienteering scoutcraft orienteering and pioneering scout movement pioneering urban camping urban camping is what it sounds like and has its own unique set of circumstancesee occupy wall street for a protest movementhat involved elements of urban camping in a non recreational form of extended outdoor accommodation winter camping file camping in chugach state park chugach mountains alaskajpg thumb camping on a snowfield in alaska s chugach state park winter camping characteristically refers to wilderness camping in cold seasons in temperate climates which typically include snow rather than in areas where snow is present yearound such as in arctic regions or mountains high enough to maintain permanent snow cover it puts a premium on high quality and lightness of gear experience and nerve as risks may include frostbite and becoming snowbound in addition to packing sheltersuch as tents or bivouac shelter bivouac gear alternative shelter building skills are key such as for snow cave s and igloo s wicking clothing suitable for layering and a regard for appropriate nutrition and food preparation are key workcamping allows campers to trade their labor variously for discounts on campsite fees campground utilities and even some degree of pay workcamping is usually seasonal fromay toctober although in warm weather areasuch as floridand arizona it can be yearound workcamping is prevalent among retired travelers whoften own their own recreational vehicle s they will trade labor at campground tasksuch as maintenance against fees camp host programs favor trades of participation in hospitality rolesuch as introducing new visitors to campground facilities and organizingroup activities camping equipment file camping equipment jpg thumb camping equipment file dome tentjpg thumb a dome tent file bivvy on an island geographorguk jpg thumb shelter constructed from a tarp thequipment used in camping varies with by intended activity for instance in survival camping thequipment consists of small items whichave the purpose of helping the camper in providing food heat and safety thequipment used in this type of camping must be lightweight and it is restricted to the mandatory items other types of camping such as winter camping involve having specially designed equipment in terms of tents or clothing which istrong enough to protecthe camper s body from the wind and cold survival camping involves certain items that campers arecommended to have withem in case somethingoes wrong and they need to be rescued a survival kit includes mandatory items which are small and must fit in one s pocket or which otherwise could be carried one s person this kit is useless in these circumstances if it is kept in the backpack that is left in camp such a kit should include a small metal container which can be used to heat water over a campfire a smallength of ductape which can prove useful in many situations and an emergency space blankethese blankets are specially designed toccupy minimal space and are perfect for making emergency shelters keeping the camper warm also because of the aluminum like color this blanket is reflective which means it can beasily seen from an aircraft candle stubs are good in starting a fire as well as in warming an enclosed space one or two band aids band aids are mandatory in this type of camping any camper and not only the survival ones need waterproof matches or a lighter and a large safety pin or fishook which can be used in fishing rubber gloves antiseptic wipes tinfoil jackknife or halazone chemical disinfection halazone tablets which purify the water are also to be included into a survival kit although theseem too many items to be carried one person they are in fact smallightweight andefinitely useful winter camping can be dangerous without respecting the basic rules when it comes to this particular activity firstly the cold is protected against with clothing of three types of layers as follows a liner layer againsthe camper skin longjohns an insulation layer fleece and a water and wind proof outer shell although cotton is one of the best quality fabrics there is it is not recommended to be worn on winter camping because if it gets wet it dries out very slowly and the wearer could freeze rather than cotton winter campershould wear wool or synthetic materials the boot s must be waterproof and the human head must be protected againsthe cold although it seems a good choice campers are advised noto wear too many pairs of socks as they might restrict blood flow to the feet resulting in cold feet gaitershould also be worn to avoid snow and rain wetting the bootsecondly one should include carbohydrates into their dieto keep their body warm as well as to providenergy hydration is very important so winter campershouldrink plenty of water to keep themselves well hydrated noting that water stores must be kept from freezing thirdly the tent must be carefully chosen to shelter it from the wind list of common equipmenthe following is a list of commonly used camping equipment first aid kitent lean tor other form of shelter hammer or malleto drive tent stakes into the soil hammer are often a claw hammer which is also helpful foremoving them sleeping bag and or blanket s for warmth sleeping pad or air mattress to be placed underneathe sleeping bag for cushioning from stones and twigs as well as for thermal insulation from the ground lantern or flashlight hatchet axe or saw for cutting firewood for a campfire starter or other ignition device for starting a campfire folding chair s for placement around campfire rope s for stringing clothes line and for securing the shelter tarpaulin tarp for adding additionalayer of storm protection to a tent and to shelter dining areas raincoat or poncho hiking boot s fishing pole chuck box to hold camp kitchen items for food preparation consumption and cleanup trash bag s for the handling of waste see leave no trace cathole trowel for sanitation in areas where a toilet is not provided insect repellent particularly one that has deet sunscreen for protecting the skin personal care products and towel cooler to store perishables and beverages if electricity is available a thermoelectricity thermoelectric or stirling engine cooler can be used withouthe need for ice campers at modern campgrounds will normally bring perishable foods in coolers while backcountry campers will bring non perishable foodsuch as dried fruit s nut fruit nuts jerky food jerky and mre s beverages or portable water filter for areas that have access to rivers or lakes cooking implementsuch as a tripod chained grill dutch oven or la cotta clay pot can be used for cooking on a campfire a portable stove can be used where campfires are forbidden or impractical if using a campground with electricity an electric frying pan or slow cooker can be used firewood for campfires emergency preparedness kit multi tool or knife global positioning system gps much of the remaining needed camping equipment is commonly available in the home including dishes pots and pans however many people opt noto use their home items but instead utilizequipment better tailored for camping these amenities include heavy plastic tableware and salt and pepper shakers with tops that close in order to shelter the shakers from rain old kitchen gear purchased from thrift store s or garage sale s may also be used in place of home items as an alternative to buying specialized and morexpensive camping equipment backpackers use lightweight and portablequipment ultralight makeover kelly bastone backpacker magazine august campgrounds and commercial campsites file trailer camping marmora koa may jpg thumb tentrailer camping provides comfort in a towable package camperspan a broad range of age ability and ruggedness and campsite s are designed in many ways as well many campgrounds have sites with facilitiesuch as fire rings barbecue grills utilitieshared bathrooms and laundry as well as access to nearby recreational facilities but not all campsites have similar levels of development campsites can range from a patch of dirto a level paved pad with sewer and electricity for more information facilitiesee the campsite and rv park articles today s campers have a range of comforts available to them whether their shelter is a tent or a recreational vehicle those choosing to camp closer to their car camping with a tent may have access to potable hot water tent interior lighting and fans and other technological changes to campingear for those camping in recreational vehicles rvs options may include air conditioning bathrooms kitchenshowers and home theater systems in the united states canadand europe some campgrounds offer hookups wherecreational vehicles are supplied with electricity water and sewer services other vehicles used for camping include motorcycles touring bicycles boats canoes pack animal s and even bush planes although backpacking wilderness backpacking on foot is a popular alternative file camping car de type busjpg thumb a large recreational vehicle provides many amenities when camping tent camping sites often cost less than campsites with full amenities and most allow direct access by car some walk in sites lie a short walk away from the nearest road but do not require full backpacking equipmenthose who seek a rugged experience in the outdoors prefer to camp with only tents or with no shelter at all under the stars although many people see in camping a chance to get out of the daily routine and improve their survival skills others would rather benefit from the many amenities that campsites are nowadays equipped with if a few decades ago camping meant a great deal of responsibility and knowledge about wild nature today any individual who wants to spend a weekend away in the woodland woods may also expect a high level of comforthe amenities that can be found in a campsite vary greatly as do the prices campers must pay to use them usually the most visited places tend to be more comfortable more sought after and morexpensive the cheapest option when it comes to camping still remains backpacking wilderness backpacking or tent camping although it can lack some of the comforts of other options many companies manufacturing camping accessories produce differentypes of equipment or gear that is intended to make camping a more comfortable activity the gear used in camping is crucial and it can be a life saver the rightent or food storage unit can easily save campers from insect s or even bear attacks the camping community has been known for its proclivity towards leaving unused gear athe trailhead for other hikers to use or swap by country united states from tover million americans of the united states population went camping with a net loss of only participants according to an infographic produced by red rover camping and based on data from the american campereport published by the coleman company inc and the outdoor foundation camping in the united states is gaining popularity after losing a net of million participants from to united kingdom according to data provided by the great british tourism survey conducted by visit england almost million camping and caravanning holidays were taken by british residents during the first half ofor an average of nights as withe united states camping is gaining popularity with an increase in trips versus the same period of a survey conducted by campsitescouk in showed that campers planned to take three trips or moreach year with spending nights or more away july and august were by far the most popular months for camping with fewer than of respondents opting to camp during winter months data collected by the federationationale de l hotelleire de plein air fnhpa shows that around millionights were taken ofrench campsites in which was up by on the same period in this figure consisted of around million frencholidaymakers and the rest was made up of other nationalities the majority of which were dutch germand uk tourists the french government are hoping to have million tourists each year by the most popularegion for camping is languedoc and roussillon with around nightspent at campsites during whilsthe department withe most campsites is the vendee see also file camping by barriere lake british columbia jpg thumb camping by barri re river barri re lake barriere british columbia barriere british columbia backpacking with animals camping coach camping food campsite caravan parks fire bow drill firelighting firesteelighter hammock camping backpacking wilderness food hiking wilderness food list of human habitation forms outdoor cooking bell tentarp tent wilderness acquirediarrhea file backcountry camping in the tropicsjpg thumbackcountry camping in costa rica externalinks images of historicamping and hiking on the long trail center for digital initiatives university of vermont library reflections of summer car camping video produced by oregon field guide category camping category procedural knowledge category scoutcraft category survival skills category tourism eu kanpin","main_words":["file","camping","img_jpg","thumb","camping","district","pradesh","india","camping","outdoor","activity","activity","involving","overnight_stays","away","home","shelter","tent","caravan","towed","trailer","caravan","motorhome","generally","participants","leave","developed","areas","spend","time","outdoors","natural","ones","pursuit","activities","providing","regarded","camping","minimum","one","night","outdoors","day","similarly","shorterm","recreational","activities","camping","four","seasons","luxury","may","element","early_th","century","african","safari","including","accommodations","fully","equipped","fixed","high_end","sporting","camp","banner","camping","line","camping","recreational","activity","thearly_th","century","time","grew","democratic","varied","modern","campers","frequent","protected","area","publicly","owned","natural","national_park","national","wilderness","area","commercial","campgrounds","camping","key","part","organizations","around","world","use","ito","teach","self","reliance","file","group","men","thumb","camping","ontario","describes","range","activities","approaches","accommodation","survivalist","little","possible","get","whereas","recreational","vehicle","travelers","witheir","electricity","heat","patio","furniture","camping","may","combined","backpacking_wilderness","backpacking","conjunction","outdoor","activitiesuch","canoeing","climbing","fishing","hunting","universally","camping","fundamentally","reflects","combination","intent","nature","activities","involved","children","summer","camp","dining","hall","meals","bunkhouse","accommodations","may","camp","name","fails","reflecthe","spirit","form","camping","broadly","understood","similarly","homelessness","homeless","person","lifestyle","may","involve","many","common","camping","activitiesuch","preparing","meals","fire","fails","nature","pursuit","spirit","integral","aspect","camping","likewise","cultures","itinerant","lifestyles","lack","permanent","dwellings","cannot","said","camping","way","life","file","thomas","hiram","thumb","thomas","hiram","holding","outside","camping","history","recreational","camping","often","traced","back","thomas","hiram","holding","tailor","actually","first","uk","river_thames","large_numbers","visitors","took","part","connected","late","victorian","craze","pleasure","boating","thearly","camping_equipment","heavy","transport","boat","use","converted","tents","although","thomas","hiram","holding","often_seen","father","modern","camping","uk","responsible","camping","thearly","twentieth_century","activity","wild","youth","spent","much","time","withis","parents","traveling","across","american","later","cycling","camping","tour","friends","across","ireland","book","ireland","experience","cycle","camp","led","formation","first","association","cycle","campers","later","become","camping","caravanning","club","wrote","campers","handbook","could","share","enthusiasm","great","outdoors","withe","world","possibly","first_commercial","world","camp","camp","near","douglas","isle","man","opened","association","cycle","campers","opened","first","camping","site","thatime","organization","several","hundred","members","association","merged","national","camping","club","although","responsible","certain","camping","activity","association","received","new","lease","life","war","baden","powell","founder","scouting","boy","movement","became","international_federation","camping","clubs","federation","internationale","de","camping","de","caravanning","founded","national","clubs","world","camping","become","established","family","holiday","standard","today","camp","sites","across_europe","north","camping","adventure","camping","form","camping","people","race","possibly","adventure_racing","mountain_biking","day","camp","way","might","use","basic","items","camping_equipment","micro","camping","stove","sleeping_bag","bivouac","shelter","dry","camping","dry","camping","camping","site","without","reliable","water","source","locations","known","dry","camps","campers","must","carry","water","camp","requires","much","preparation","would","otherwise","camping","common","often","risk","file","hikers","wilderness","backpackers","carrying","camping_equipment","backpacking_wilderness","backpacking","affords","maximum","wilderness","experience","specialized","gear","allows","enthusiasts","enjoy","popular","local","recreational","spots","access","remote","locations","technological","advance","consumer","interest","camping","led","lighter","diverse","ultra","light","fabrics","heat","hip","make","lighter","loads","enhanced","performance","always","possibility","severe","weather","injury","backcountry","cell","satellite","phone","sometimes","carried","emergencies","varying","coverage","backpacking","may","involve","riding","accompanied","pack","animal","horses","increase","carrying_capacity","trail","condition","ultralight","backpacking","enthusiasts","bring","little","possible","camping","producing","smaller","footprint","impact","wilderness","choice","camp","less","even","minimum","necessary","survive","may","matter","preference","may","overlap","camping","activity","pursued","camping","back","country","activities","rock_climbing","cross_country","skiing","puts","premium","amount","gear","effectively","carried","thus","lending","less","rather","approach","canoe","camping","canoe","camping","isimilar","backpacking","often","affords","much","weight","bulk","carried","extended","involved","electric","motor","small","gas","ones","may","attached","allowed","faster","journey","bags","common","gear","file","thumb","party","alicia","c","bicycle","camping","bicycle_touring","bicycle","camping","combines","camping","cycling","developed","natural","areas","try","bike","camping","popular_science","october","pp","form","bicycle","camping","become_popular","parts","world","involves","cycling","organisations","offering","organised","multi","providing","riders","facilities","luggage","great_victorian","bike_ride","australia","one","oldest","successful","examples","operating","since","involving","thousands","riders","nine","day","journey","around","year","motorcycle","camping","similar","bicycle","camping","car","camping","due","limited","storage","capacity","lightweight","compact","backpacking","equipment","used","file","gvbr","tent","city","anglesea","pano","vic_jjron_jpg","center","thumb","px","temporary","tent","city","iset","nighto","accommodate","thousands","participants","thatake","part","great_victorian","bike_ride","australia","car","road","file","car","thumb","car","camping","camping","facilitated","motor_vehicle","forms","camping","involve","using","powered","vehicle","essential","element","camping","experience","camping","phenomenon","combines","camping","withe","luxury","amenities","home","hotel","roots","thearly","europeand","american","safari","africa","wealthy","travellers","accustomed","comfort","luxury","wanto","campsites","wilderness","lifestyles","reflected","reenactment","camping","file","french","indian","thumb","modern_day","th_century","french","indian","war","sleep","period","tents","cook","campfires","reenactment","camping","employs","methods","equipment","appropriate","specific","historic","era","personal","enjoyment","purposesuch","instruction","entertainment","historical","conditions","technologies","periods","wild","west","american_civil_war","medieval","camping","file","cke","e","thumb","long_term","campsites","include","permanent","semi","permanent","lead","neighboring","campers","many","campers","enjoy","socializing","small","groups","groups","throughouthe","year","allow","members","similar","interests","similar","geographical","areas","order","allows","families","form","small","close","societies","children","form","lasting","friendship","two","large","organizations","uk","facilitate","camping","caravan","club","camping","caravanning","club","participate","camping","feel","brings","closer","form","bonding","members","become","would","otherwise","modern","society","social","camping","also","build","bond","members","family","different","families","common","many","campers","type","activities","witheir","friends","beyond","families","may_also","give","opportunity","lonely","campers","enjoy","type","activity","individuals","share","enthusiasm","matter","bonding","type","camping","promotes","also_used","personnel","training","facility","fact","many","companies","offer","employees","employees","type","training","helps","connect","people","necessarily","know","need","work","need","get","along","successfully","including","type","activity","personnel","training","package","becoming","popular","also","recommended","benefits","brings","morecent","years","camp","alone","able","share","experiences","campers","blogs","online","social_networking","many","online","designed","people","looking","camping","companions","wanto","share","experiences","people","case","campers","may","provide","others","useful","tips","resulting","experience","individuals","willing","camp","likely","access","type","websites","connect","campers","especially","gives","opportunity","learn","abouthis","activity","survivalist","camping","survivalist","campers","learn","survival","skills","needed","survive","outdoor","situation","activity","may","require","skills","obtaining","food","wild","emergency","medical_treatments","pioneering","scout","movement","pioneering","urban","camping","urban","camping","sounds","like","unique","set","occupy","wall_street","protest","involved","elements","urban","camping","non","recreational","form","extended","outdoor","accommodation","winter","camping","file","camping","state_park","mountains","thumb","camping","alaska","state_park","winter","camping","refers","wilderness","camping","cold","seasons","temperate","climates","typically","include","snow","rather","areas","snow","present","yearound","arctic","regions","mountains","high","enough","maintain","permanent","snow","cover","puts","premium","high_quality","gear","experience","risks","may_include","becoming","addition","packing","tents","bivouac","shelter","bivouac","gear","alternative","shelter","building","skills","key","snow","cave","clothing","suitable","regard","appropriate","nutrition","food_preparation","key","allows","campers","trade","labor","variously","discounts","campsite","fees","campground","utilities","even","degree","pay","usually","seasonal","fromay","toctober","although","warm","weather","areasuch","floridand","arizona","yearound","prevalent","among","retired","travelers","whoften","recreational","vehicle","trade","labor","campground","tasksuch","maintenance","fees","camp","host","programs","favor","trades","participation","hospitality","introducing","new","visitors","campground","facilities","activities","camping_equipment","file","camping_equipment","jpg","thumb","camping_equipment","file","dome","thumb","dome","tent","file","island","geographorguk_jpg","thumb","shelter","constructed","thequipment","used","camping","varies","intended","activity","instance","survival","camping","thequipment","consists","small","items","whichave","purpose","helping","camper","providing","food","heat","safety","thequipment","used","type","camping","must","lightweight","restricted","mandatory","items","types","camping","winter","camping","involve","specially","designed","equipment","terms","tents","clothing","enough","protecthe","camper","body","wind","cold","survival","camping","involves","certain","items","campers","withem","case","wrong","need","rescued","survival","kit","includes","mandatory","items","small","must","fit","one","pocket","otherwise","could","carried","one","person","kit","useless","circumstances","kept","backpack","left","camp","kit","include","small","metal","container","used","heat","water","campfire","prove","useful","many","situations","emergency","space","blankets","specially","designed","minimal","space","perfect","making","emergency","shelters","keeping","camper","warm","also","aluminum","like","color","reflective","means","beasily","seen","aircraft","good","starting","fire","well","warming","enclosed","space","one","two","band","aids","band","aids","mandatory","type","camping","camper","survival","ones","need","matches","lighter","large","safety","pin","used","fishing","rubber","gloves","chemical","tablets","water","also_included","survival","kit","although_many","items","carried","one","person","fact","useful","winter","camping","dangerous","without","respecting","basic","rules","comes","particular","activity","firstly","cold","protected","clothing","three","types","layers","follows","liner","layer","againsthe","camper","skin","layer","water","wind","proof","outer","shell","although","cotton","one","best","quality","fabrics","recommended","worn","winter","camping","gets","wet","slowly","could","freeze","rather","cotton","winter","wear","wool","synthetic","materials","boot","must","human","head","must","protected","againsthe","cold","although","seems","good","choice","campers","advised","noto","wear","many","pairs","might","restrict","blood","flow","feet","resulting","cold","feet","also","worn","avoid","snow","rain","one","include","keep","body","warm","well","hydration","important","winter","plenty","water","keep","well","noting","water","stores","must","kept","freezing","tent","must","carefully","chosen","shelter","wind","list","common","following","list","commonly_used","camping_equipment","first_aid","lean","tor","form","shelter","hammer","drive","tent","soil","hammer","often","hammer","also","helpful","sleeping_bag","warmth","sleeping","pad","air","placed","underneathe","sleeping_bag","stones","well","thermal","ground","lantern","saw","cutting","firewood","campfire","starter","ignition","device","starting","campfire","folding","chair","placement","around","campfire","rope","clothes","line","securing","shelter","adding","storm","protection","tent","shelter","dining","areas","hiking","boot","fishing","pole","chuck","box","hold","camp","kitchen","items","food_preparation","consumption","cleanup","trash","bag","handling","waste","see","leave","trace","sanitation","areas","toilet","provided","insect","particularly","one","protecting","skin","personal","care","products","towel","cooler","store","beverages","electricity","available","stirling","engine","cooler","used","withouthe","need","ice","campers","modern","campgrounds","normally","bring","foods","backcountry","campers","bring","non","foodsuch","dried","fruit","nut","fruit","nuts","food","beverages","portable","water","filter","areas","access","rivers","lakes","cooking","grill","dutch","oven","la","clay","pot","used","cooking","campfire","portable","stove","used","campfires","forbidden","impractical","using","campground","electricity","electric","frying","pan","slow","used","firewood","campfires","emergency","kit","multi","tool","knife","global","positioning","system","gps","much","remaining","needed","camping_equipment","commonly","available","home","including","dishes","pots","pans","noto","use","home","items","instead","better","tailored","camping","amenities","include","heavy","plastic","tableware","salt","pepper","tops","close","order","shelter","rain","old","kitchen","gear","purchased","store","garage","sale","may_also","used","place","home","items","alternative","buying","specialized","morexpensive","camping_equipment","backpackers","use","lightweight","ultralight","kelly","backpacker","magazine","august","campgrounds","commercial","campsites","file","trailer","camping","may","jpg","thumb","camping","provides","comfort","package","broad","range","age","ability","campsite","designed","many","ways","well","many","campgrounds","sites","facilitiesuch","fire","rings","barbecue","bathrooms","laundry","well","access","nearby","recreational","facilities","campsites","similar","levels","development","campsites","range","patch","level","paved","pad","sewer","electricity","information","campsite","park","articles","today","campers","range","comforts","available","whether","shelter","tent","recreational","vehicle","choosing","camp","closer","car","camping","tent","may","access","hot","water","tent","interior","lighting","fans","technological","changes","camping","recreational","vehicles","options","may_include","air_conditioning","bathrooms","home","theater","systems","united_states","canadand","europe","campgrounds","offer","vehicles","supplied","electricity","water","sewer","services","vehicles","used","camping","include","touring","bicycles","boats","pack","animal","even","bush","planes","although","backpacking_wilderness","backpacking","foot","popular","alternative","file","camping","car","de","type","thumb","large","recreational","vehicle","provides","many","amenities","camping","tent","camping","sites","often","cost","less","campsites","full","amenities","allow","direct","access","car","walk","sites","lie","short","walk","away","nearest","road","require","full","backpacking","seek","rugged","experience","outdoors","prefer","camp","tents","shelter","stars","see","camping","chance","get","daily","routine","improve","survival","skills","others","would","rather","benefit","many","amenities","campsites","nowadays","equipped","decades","ago","camping","meant","great_deal","responsibility","knowledge","wild","nature","today","individual","wants","spend","weekend","away","woodland","woods","may_also","expect","high_level","amenities","found","campsite","vary","greatly","prices","campers","must","pay","use","usually","visited","places","tend","comfortable","sought","morexpensive","cheapest","option","comes","camping","still","remains","backpacking_wilderness","backpacking","tent","camping","although","lack","comforts","options","many","companies","manufacturing","camping","accessories","produce","differentypes","equipment","gear","intended","make","camping","comfortable","activity","gear","used","camping","crucial","life","food","storage","unit","easily","save","campers","insect","even","bear","attacks","camping","community","known","towards","leaving","unused","gear","athe","hikers","use","swap","country_united","states","tover","million","americans","united_states","population","went","camping","net","loss","participants","according","produced","red","rover","camping","based","data","american","published","coleman","company","inc","outdoor","foundation","camping","united_states","gaining","popularity","losing","net","million","participants","united_kingdom","according","data","provided","great","british","tourism","survey","conducted","visit","england","almost","million","camping","caravanning","holidays","taken","british","residents","first_half","ofor","average","nights","withe","united_states","camping","gaining","popularity","increase","trips","versus","period","survey","conducted","showed","campers","planned","take","three","trips","year","spending","nights","away","july","august","far","popular","months","camping","fewer","camp","winter","months","data","collected","de","l","de","air","shows","around","taken","ofrench","campsites","period","figure","consisted","around","million","rest","made","nationalities","majority","dutch","germand","uk","tourists","french","government","hoping","million","tourists","year","camping","around","campsites","whilsthe","department","withe","campsites","see_also","file","camping","lake","british_columbia","jpg","thumb","camping","river","lake","british_columbia","british_columbia","backpacking","animals","camping","coach","camping","food","campsite","caravan","parks","fire","bow","camping","backpacking_wilderness","food","hiking","wilderness","food","list","human","habitation","forms","outdoor","cooking","bell","tent","wilderness","file","backcountry","camping","camping","costa_rica","externalinks","images","hiking","long","trail","center","digital","initiatives","university","vermont","library","reflections","summer","car","camping","video","produced","oregon","field","camping","category","knowledge","category","category","survival","skills","category_tourism"],"clean_bigrams":[["file","camping"],["camping","img"],["img","jpg"],["jpg","thumb"],["thumb","camping"],["pradesh","india"],["india","camping"],["outdoor","activity"],["activity","involving"],["involving","overnight"],["overnight","stays"],["stays","away"],["caravan","towed"],["towed","trailer"],["trailer","caravan"],["motorhome","generally"],["generally","participants"],["participants","leave"],["leave","developed"],["developed","areas"],["spend","time"],["time","outdoors"],["natural","ones"],["activities","providing"],["one","night"],["similarly","shorterm"],["shorterm","recreational"],["recreational","activities"],["activities","camping"],["four","seasons"],["seasons","luxury"],["luxury","may"],["early","th"],["th","century"],["century","african"],["african","safari"],["including","accommodations"],["fully","equipped"],["equipped","fixed"],["high","end"],["end","sporting"],["sporting","camp"],["line","camping"],["recreational","activity"],["activity","became"],["became","popular"],["popular","among"],["thearly","th"],["th","century"],["varied","modern"],["modern","campers"],["campers","frequent"],["frequent","protected"],["protected","area"],["area","publicly"],["publicly","owned"],["owned","natural"],["national","park"],["park","national"],["state","parks"],["parks","wilderness"],["wilderness","area"],["commercial","campgrounds"],["campgrounds","camping"],["key","part"],["organizations","around"],["use","ito"],["ito","teach"],["self","reliance"],["thumb","camping"],["accommodation","survivalist"],["whereas","recreational"],["recreational","vehicle"],["vehicle","travelers"],["electricity","heat"],["patio","furniture"],["furniture","camping"],["camping","may"],["backpacking","wilderness"],["wilderness","backpacking"],["outdoor","activitiesuch"],["canoeing","climbing"],["climbing","fishing"],["camping","fundamentally"],["activities","involved"],["children","summer"],["summer","camp"],["dining","hall"],["hall","meals"],["bunkhouse","accommodations"],["accommodations","may"],["reflecthe","spirit"],["broadly","understood"],["understood","similarly"],["homelessness","homeless"],["homeless","person"],["lifestyle","may"],["may","involve"],["involve","many"],["many","common"],["common","camping"],["camping","activitiesuch"],["preparing","meals"],["integral","aspect"],["camping","likewise"],["likewise","cultures"],["itinerant","lifestyles"],["permanent","dwellings"],["life","file"],["file","thomas"],["thomas","hiram"],["thumb","thomas"],["thomas","hiram"],["hiram","holding"],["holding","outside"],["recreational","camping"],["often","traced"],["traced","back"],["thomas","hiram"],["hiram","holding"],["british","travelling"],["travelling","tailor"],["actually","first"],["river","thames"],["large","numbers"],["visitors","took"],["took","part"],["late","victorian"],["victorian","craze"],["pleasure","boating"],["boating","thearly"],["thearly","camping"],["camping","equipment"],["tents","although"],["although","thomas"],["thomas","hiram"],["hiram","holding"],["often","seen"],["modern","camping"],["thearly","twentieth"],["twentieth","century"],["spent","much"],["much","time"],["time","withis"],["withis","parents"],["parents","traveling"],["traveling","across"],["camping","tour"],["friends","across"],["across","ireland"],["ireland","experience"],["experience","cycle"],["cycle","campers"],["campers","later"],["caravanning","club"],["campers","handbook"],["could","share"],["great","outdoors"],["outdoors","withe"],["withe","world"],["world","possibly"],["first","commercial"],["camp","near"],["near","douglas"],["douglas","isle"],["cycle","campers"],["campers","opened"],["camping","site"],["several","hundred"],["hundred","members"],["national","camping"],["camping","club"],["club","although"],["camping","activity"],["association","received"],["new","lease"],["baden","powell"],["powell","founder"],["scouting","boy"],["movement","became"],["international","federation"],["camping","clubs"],["clubs","federation"],["federation","internationale"],["internationale","de"],["de","camping"],["de","caravanning"],["national","clubs"],["established","family"],["family","holiday"],["holiday","standard"],["today","camp"],["camp","sites"],["across","europe"],["camping","adventure"],["adventure","camping"],["race","possibly"],["possibly","adventure"],["adventure","racing"],["mountain","biking"],["might","use"],["basic","items"],["camping","equipment"],["micro","camping"],["camping","stove"],["stove","sleeping"],["sleeping","bag"],["bivouac","shelter"],["shelter","dry"],["dry","camping"],["camping","dry"],["dry","camping"],["camping","site"],["site","without"],["water","source"],["dry","camps"],["camps","campers"],["campers","must"],["must","carry"],["requires","much"],["would","otherwise"],["file","hikers"],["wilderness","backpackers"],["backpackers","carrying"],["carrying","camping"],["camping","equipment"],["equipment","backpacking"],["backpacking","wilderness"],["wilderness","backpacking"],["backpacking","affords"],["maximum","wilderness"],["wilderness","experience"],["experience","specialized"],["specialized","gear"],["gear","allows"],["allows","enthusiasts"],["enjoy","popular"],["popular","local"],["local","recreational"],["recreational","spots"],["remote","locations"],["locations","technological"],["technological","advance"],["consumer","interest"],["ultra","light"],["lighter","loads"],["enhanced","performance"],["severe","weather"],["backcountry","cell"],["satellite","phone"],["sometimes","carried"],["varying","coverage"],["coverage","backpacking"],["backpacking","may"],["may","involve"],["involve","riding"],["pack","animal"],["increase","carrying"],["carrying","capacity"],["trail","condition"],["condition","ultralight"],["ultralight","backpacking"],["backpacking","enthusiasts"],["enthusiasts","bring"],["smaller","footprint"],["minimum","necessary"],["survive","may"],["may","overlap"],["camping","activity"],["pursued","camping"],["back","country"],["country","activities"],["rock","climbing"],["cross","country"],["country","skiing"],["skiing","puts"],["carried","thus"],["thus","lending"],["less","rather"],["approach","canoe"],["canoe","camping"],["camping","canoe"],["canoe","camping"],["camping","isimilar"],["often","affords"],["affords","much"],["involved","electric"],["electric","motor"],["small","gas"],["gas","ones"],["ones","may"],["faster","journey"],["common","gear"],["gear","file"],["c","bicycle"],["bicycle","camping"],["camping","bicycle"],["bicycle","touring"],["touring","bicycle"],["bicycle","camping"],["camping","combines"],["combines","camping"],["natural","areas"],["areas","try"],["try","bike"],["bike","camping"],["camping","popular"],["popular","science"],["science","october"],["october","pp"],["bicycle","camping"],["become","popular"],["world","involves"],["involves","cycling"],["cycling","organisations"],["organisations","offering"],["offering","organised"],["organised","multi"],["multi","day"],["day","rides"],["providing","riders"],["great","victorian"],["victorian","bike"],["bike","ride"],["successful","examples"],["operating","since"],["involving","thousands"],["nine","day"],["day","journey"],["year","motorcycle"],["motorcycle","camping"],["bicycle","camping"],["camping","car"],["car","camping"],["camping","due"],["limited","storage"],["storage","capacity"],["capacity","lightweight"],["lightweight","compact"],["compact","backpacking"],["backpacking","equipment"],["used","file"],["file","gvbr"],["gvbr","tent"],["tent","city"],["anglesea","pano"],["pano","vic"],["vic","jjron"],["jjron","jpg"],["jpg","center"],["center","thumb"],["thumb","px"],["temporary","tent"],["tent","city"],["city","iset"],["nighto","accommodate"],["participants","thatake"],["thatake","part"],["great","victorian"],["victorian","bike"],["bike","ride"],["australia","car"],["file","car"],["thumb","car"],["car","camping"],["camping","facilitated"],["motor","vehicle"],["camping","involve"],["involve","using"],["powered","vehicle"],["essential","element"],["camping","experience"],["combines","camping"],["camping","withe"],["withe","luxury"],["europeand","american"],["american","safari"],["africa","wealthy"],["wealthy","travellers"],["travellers","accustomed"],["wilderness","lifestyles"],["lifestyles","reflected"],["reenactment","camping"],["camping","file"],["file","french"],["thumb","modern"],["modern","day"],["th","century"],["century","french"],["indian","war"],["war","sleep"],["period","tents"],["campfires","reenactment"],["reenactment","camping"],["camping","employs"],["equipment","appropriate"],["specific","historic"],["historic","era"],["personal","enjoyment"],["entertainment","historical"],["wild","west"],["west","american"],["american","civil"],["civil","war"],["camping","file"],["thumb","long"],["long","term"],["term","campsites"],["campsites","include"],["include","permanent"],["semi","permanent"],["neighboring","campers"],["campers","many"],["many","campers"],["campers","enjoy"],["enjoy","socializing"],["small","groups"],["throughouthe","year"],["allow","members"],["similar","interests"],["similar","geographical"],["geographical","areas"],["allows","families"],["form","small"],["small","close"],["form","lasting"],["lasting","friendship"],["two","large"],["large","organizations"],["caravan","club"],["caravanning","club"],["camping","feel"],["closer","form"],["members","become"],["would","otherwise"],["modern","society"],["society","social"],["social","camping"],["also","build"],["different","families"],["many","campers"],["activities","witheir"],["witheir","friends"],["may","also"],["also","give"],["lonely","campers"],["campers","enjoy"],["camping","promotes"],["personnel","training"],["training","facility"],["fact","many"],["many","companies"],["companies","offer"],["employees","employees"],["helps","connect"],["connect","people"],["necessarily","know"],["get","along"],["along","successfully"],["successfully","including"],["personnel","training"],["training","package"],["also","recommended"],["morecent","years"],["camp","alone"],["online","social"],["social","networking"],["many","online"],["camping","companions"],["wanto","share"],["case","campers"],["campers","may"],["may","provide"],["useful","tips"],["tips","resulting"],["experience","individuals"],["campers","especially"],["abouthis","activity"],["activity","survivalist"],["survivalist","camping"],["camping","survivalist"],["survivalist","campers"],["campers","learn"],["survival","skills"],["skills","needed"],["outdoor","situation"],["activity","may"],["may","require"],["require","skills"],["obtaining","food"],["wild","emergency"],["emergency","medical"],["medical","treatments"],["pioneering","scout"],["scout","movement"],["movement","pioneering"],["pioneering","urban"],["urban","camping"],["camping","urban"],["urban","camping"],["sounds","like"],["unique","set"],["occupy","wall"],["wall","street"],["involved","elements"],["urban","camping"],["non","recreational"],["recreational","form"],["extended","outdoor"],["outdoor","accommodation"],["accommodation","winter"],["winter","camping"],["camping","file"],["file","camping"],["state","park"],["thumb","camping"],["state","park"],["park","winter"],["winter","camping"],["wilderness","camping"],["cold","seasons"],["temperate","climates"],["typically","include"],["include","snow"],["snow","rather"],["present","yearound"],["arctic","regions"],["mountains","high"],["high","enough"],["maintain","permanent"],["permanent","snow"],["snow","cover"],["high","quality"],["gear","experience"],["risks","may"],["may","include"],["bivouac","shelter"],["shelter","bivouac"],["bivouac","gear"],["gear","alternative"],["alternative","shelter"],["shelter","building"],["building","skills"],["snow","cave"],["clothing","suitable"],["appropriate","nutrition"],["food","preparation"],["allows","campers"],["trade","labor"],["labor","variously"],["campsite","fees"],["fees","campground"],["campground","utilities"],["usually","seasonal"],["seasonal","fromay"],["fromay","toctober"],["toctober","although"],["warm","weather"],["weather","areasuch"],["floridand","arizona"],["prevalent","among"],["among","retired"],["retired","travelers"],["travelers","whoften"],["recreational","vehicle"],["trade","labor"],["campground","tasksuch"],["fees","camp"],["camp","host"],["host","programs"],["programs","favor"],["favor","trades"],["introducing","new"],["new","visitors"],["campground","facilities"],["activities","camping"],["camping","equipment"],["equipment","file"],["file","camping"],["camping","equipment"],["equipment","jpg"],["jpg","thumb"],["thumb","camping"],["camping","equipment"],["equipment","file"],["file","dome"],["dome","tent"],["tent","file"],["island","geographorguk"],["geographorguk","jpg"],["jpg","thumb"],["thumb","shelter"],["shelter","constructed"],["thequipment","used"],["used","camping"],["camping","varies"],["intended","activity"],["survival","camping"],["camping","thequipment"],["thequipment","consists"],["small","items"],["items","whichave"],["providing","food"],["food","heat"],["safety","thequipment"],["thequipment","used"],["camping","must"],["mandatory","items"],["winter","camping"],["camping","involve"],["specially","designed"],["designed","equipment"],["protecthe","camper"],["cold","survival"],["survival","camping"],["camping","involves"],["involves","certain"],["certain","items"],["survival","kit"],["kit","includes"],["includes","mandatory"],["mandatory","items"],["must","fit"],["otherwise","could"],["carried","one"],["one","person"],["small","metal"],["metal","container"],["heat","water"],["prove","useful"],["many","situations"],["emergency","space"],["specially","designed"],["minimal","space"],["making","emergency"],["emergency","shelters"],["shelters","keeping"],["camper","warm"],["warm","also"],["aluminum","like"],["like","color"],["beasily","seen"],["enclosed","space"],["space","one"],["two","band"],["band","aids"],["aids","band"],["band","aids"],["survival","ones"],["ones","need"],["large","safety"],["safety","pin"],["fishing","rubber"],["rubber","gloves"],["survival","kit"],["kit","although"],["although","many"],["many","items"],["carried","one"],["one","person"],["useful","winter"],["winter","camping"],["dangerous","without"],["without","respecting"],["basic","rules"],["particular","activity"],["activity","firstly"],["three","types"],["liner","layer"],["layer","againsthe"],["againsthe","camper"],["camper","skin"],["wind","proof"],["proof","outer"],["outer","shell"],["shell","although"],["although","cotton"],["best","quality"],["quality","fabrics"],["winter","camping"],["gets","wet"],["could","freeze"],["freeze","rather"],["cotton","winter"],["wear","wool"],["synthetic","materials"],["human","head"],["head","must"],["protected","againsthe"],["againsthe","cold"],["cold","although"],["good","choice"],["choice","campers"],["advised","noto"],["noto","wear"],["many","pairs"],["might","restrict"],["restrict","blood"],["blood","flow"],["feet","resulting"],["cold","feet"],["avoid","snow"],["body","warm"],["water","stores"],["stores","must"],["tent","must"],["carefully","chosen"],["wind","list"],["commonly","used"],["used","camping"],["camping","equipment"],["equipment","first"],["first","aid"],["lean","tor"],["shelter","hammer"],["drive","tent"],["soil","hammer"],["also","helpful"],["sleeping","bag"],["warmth","sleeping"],["sleeping","pad"],["placed","underneathe"],["underneathe","sleeping"],["sleeping","bag"],["ground","lantern"],["cutting","firewood"],["campfire","starter"],["ignition","device"],["campfire","folding"],["folding","chair"],["placement","around"],["around","campfire"],["campfire","rope"],["clothes","line"],["storm","protection"],["shelter","dining"],["dining","areas"],["hiking","boot"],["fishing","pole"],["pole","chuck"],["chuck","box"],["hold","camp"],["camp","kitchen"],["kitchen","items"],["food","preparation"],["preparation","consumption"],["cleanup","trash"],["trash","bag"],["waste","see"],["see","leave"],["provided","insect"],["particularly","one"],["skin","personal"],["personal","care"],["care","products"],["towel","cooler"],["stirling","engine"],["engine","cooler"],["used","withouthe"],["withouthe","need"],["ice","campers"],["modern","campgrounds"],["normally","bring"],["backcountry","campers"],["bring","non"],["dried","fruit"],["nut","fruit"],["fruit","nuts"],["portable","water"],["water","filter"],["lakes","cooking"],["grill","dutch"],["dutch","oven"],["clay","pot"],["portable","stove"],["electric","frying"],["frying","pan"],["used","firewood"],["campfires","emergency"],["kit","multi"],["multi","tool"],["knife","global"],["global","positioning"],["positioning","system"],["system","gps"],["gps","much"],["remaining","needed"],["needed","camping"],["camping","equipment"],["commonly","available"],["home","including"],["including","dishes"],["dishes","pots"],["pans","however"],["however","many"],["many","people"],["noto","use"],["home","items"],["better","tailored"],["amenities","include"],["include","heavy"],["heavy","plastic"],["plastic","tableware"],["rain","old"],["old","kitchen"],["kitchen","gear"],["gear","purchased"],["garage","sale"],["may","also"],["home","items"],["buying","specialized"],["morexpensive","camping"],["camping","equipment"],["equipment","backpackers"],["backpackers","use"],["use","lightweight"],["backpacker","magazine"],["magazine","august"],["august","campgrounds"],["commercial","campsites"],["campsites","file"],["file","trailer"],["trailer","camping"],["camping","may"],["may","jpg"],["jpg","thumb"],["thumb","camping"],["camping","provides"],["provides","comfort"],["broad","range"],["age","ability"],["many","ways"],["well","many"],["many","campgrounds"],["fire","rings"],["rings","barbecue"],["nearby","recreational"],["recreational","facilities"],["similar","levels"],["development","campsites"],["level","paved"],["paved","pad"],["park","articles"],["articles","today"],["comforts","available"],["recreational","vehicle"],["camp","closer"],["car","camping"],["camping","tent"],["tent","may"],["hot","water"],["water","tent"],["tent","interior"],["interior","lighting"],["technological","changes"],["recreational","vehicles"],["options","may"],["may","include"],["include","air"],["air","conditioning"],["conditioning","bathrooms"],["home","theater"],["theater","systems"],["united","states"],["states","canadand"],["canadand","europe"],["campgrounds","offer"],["electricity","water"],["sewer","services"],["vehicles","used"],["used","camping"],["camping","include"],["touring","bicycles"],["bicycles","boats"],["pack","animal"],["even","bush"],["bush","planes"],["planes","although"],["although","backpacking"],["backpacking","wilderness"],["wilderness","backpacking"],["popular","alternative"],["alternative","file"],["file","camping"],["camping","car"],["car","de"],["de","type"],["large","recreational"],["recreational","vehicle"],["vehicle","provides"],["provides","many"],["many","amenities"],["camping","tent"],["tent","camping"],["camping","sites"],["sites","often"],["often","cost"],["cost","less"],["full","amenities"],["allow","direct"],["direct","access"],["sites","lie"],["short","walk"],["walk","away"],["nearest","road"],["require","full"],["full","backpacking"],["rugged","experience"],["outdoors","prefer"],["stars","although"],["although","many"],["many","people"],["people","see"],["daily","routine"],["survival","skills"],["skills","others"],["others","would"],["would","rather"],["rather","benefit"],["many","amenities"],["nowadays","equipped"],["decades","ago"],["ago","camping"],["camping","meant"],["great","deal"],["wild","nature"],["nature","today"],["weekend","away"],["woodland","woods"],["woods","may"],["may","also"],["also","expect"],["high","level"],["campsite","vary"],["vary","greatly"],["prices","campers"],["campers","must"],["must","pay"],["visited","places"],["places","tend"],["cheapest","option"],["camping","still"],["still","remains"],["remains","backpacking"],["backpacking","wilderness"],["wilderness","backpacking"],["tent","camping"],["camping","although"],["options","many"],["many","companies"],["companies","manufacturing"],["manufacturing","camping"],["camping","accessories"],["accessories","produce"],["produce","differentypes"],["make","camping"],["comfortable","activity"],["gear","used"],["used","camping"],["food","storage"],["storage","unit"],["easily","save"],["save","campers"],["even","bear"],["bear","attacks"],["camping","community"],["towards","leaving"],["leaving","unused"],["unused","gear"],["gear","athe"],["country","united"],["united","states"],["tover","million"],["million","americans"],["united","states"],["states","population"],["population","went"],["went","camping"],["net","loss"],["participants","according"],["red","rover"],["rover","camping"],["coleman","company"],["company","inc"],["outdoor","foundation"],["foundation","camping"],["united","states"],["gaining","popularity"],["million","participants"],["united","kingdom"],["kingdom","according"],["data","provided"],["great","british"],["british","tourism"],["tourism","survey"],["survey","conducted"],["visit","england"],["england","almost"],["almost","million"],["million","camping"],["caravanning","holidays"],["british","residents"],["first","half"],["half","ofor"],["withe","united"],["united","states"],["states","camping"],["gaining","popularity"],["trips","versus"],["survey","conducted"],["campers","planned"],["take","three"],["three","trips"],["spending","nights"],["away","july"],["popular","months"],["winter","months"],["months","data"],["data","collected"],["de","l"],["taken","ofrench"],["ofrench","campsites"],["figure","consisted"],["around","million"],["dutch","germand"],["germand","uk"],["uk","tourists"],["french","government"],["million","tourists"],["whilsthe","department"],["department","withe"],["see","also"],["also","file"],["file","camping"],["lake","british"],["british","columbia"],["columbia","jpg"],["jpg","thumb"],["thumb","camping"],["lake","british"],["british","columbia"],["british","columbia"],["columbia","backpacking"],["animals","camping"],["camping","coach"],["coach","camping"],["camping","food"],["food","campsite"],["campsite","caravan"],["caravan","parks"],["parks","fire"],["fire","bow"],["camping","backpacking"],["backpacking","wilderness"],["wilderness","food"],["food","hiking"],["hiking","wilderness"],["wilderness","food"],["food","list"],["human","habitation"],["habitation","forms"],["forms","outdoor"],["outdoor","cooking"],["cooking","bell"],["tent","wilderness"],["file","backcountry"],["backcountry","camping"],["costa","rica"],["rica","externalinks"],["externalinks","images"],["long","trail"],["trail","center"],["digital","initiatives"],["initiatives","university"],["vermont","library"],["library","reflections"],["summer","car"],["car","camping"],["camping","video"],["video","produced"],["oregon","field"],["field","guide"],["guide","category"],["category","camping"],["camping","category"],["knowledge","category"],["category","survival"],["survival","skills"],["skills","category"],["category","tourism"]],"all_collocations":["file camping","camping img","img jpg","thumb camping","pradesh india","india camping","outdoor activity","activity involving","involving overnight","overnight stays","stays away","caravan towed","towed trailer","trailer caravan","motorhome generally","generally participants","participants leave","leave developed","developed areas","spend time","time outdoors","natural ones","activities providing","one night","similarly shorterm","shorterm recreational","recreational activities","activities camping","four seasons","seasons luxury","luxury may","early th","th century","century african","african safari","including accommodations","fully equipped","equipped fixed","high end","end sporting","sporting camp","line camping","recreational activity","activity became","became popular","popular among","thearly th","th century","varied modern","modern campers","campers frequent","frequent protected","protected area","area publicly","publicly owned","owned natural","national park","park national","state parks","parks wilderness","wilderness area","commercial campgrounds","campgrounds camping","key part","organizations around","use ito","ito teach","self reliance","thumb camping","accommodation survivalist","whereas recreational","recreational vehicle","vehicle travelers","electricity heat","patio furniture","furniture camping","camping may","backpacking wilderness","wilderness backpacking","outdoor activitiesuch","canoeing climbing","climbing fishing","camping fundamentally","activities involved","children summer","summer camp","dining hall","hall meals","bunkhouse accommodations","accommodations may","reflecthe spirit","broadly understood","understood similarly","homelessness homeless","homeless person","lifestyle may","may involve","involve many","many common","common camping","camping activitiesuch","preparing meals","integral aspect","camping likewise","likewise cultures","itinerant lifestyles","permanent dwellings","life file","file thomas","thomas hiram","thumb thomas","thomas hiram","hiram holding","holding outside","recreational camping","often traced","traced back","thomas hiram","hiram holding","british travelling","travelling tailor","actually first","river thames","large numbers","visitors took","took part","late victorian","victorian craze","pleasure boating","boating thearly","thearly camping","camping equipment","tents although","although thomas","thomas hiram","hiram holding","often seen","modern camping","thearly twentieth","twentieth century","spent much","much time","time withis","withis parents","parents traveling","traveling across","camping tour","friends across","across ireland","ireland experience","experience cycle","cycle campers","campers later","caravanning club","campers handbook","could share","great outdoors","outdoors withe","withe world","world possibly","first commercial","camp near","near douglas","douglas isle","cycle campers","campers opened","camping site","several hundred","hundred members","national camping","camping club","club although","camping activity","association received","new lease","baden powell","powell founder","scouting boy","movement became","international federation","camping clubs","clubs federation","federation internationale","internationale de","de camping","de caravanning","national clubs","established family","family holiday","holiday standard","today camp","camp sites","across europe","camping adventure","adventure camping","race possibly","possibly adventure","adventure racing","mountain biking","might use","basic items","camping equipment","micro camping","camping stove","stove sleeping","sleeping bag","bivouac shelter","shelter dry","dry camping","camping dry","dry camping","camping site","site without","water source","dry camps","camps campers","campers must","must carry","requires much","would otherwise","file hikers","wilderness backpackers","backpackers carrying","carrying camping","camping equipment","equipment backpacking","backpacking wilderness","wilderness backpacking","backpacking affords","maximum wilderness","wilderness experience","experience specialized","specialized gear","gear allows","allows enthusiasts","enjoy popular","popular local","local recreational","recreational spots","remote locations","locations technological","technological advance","consumer interest","ultra light","lighter loads","enhanced performance","severe weather","backcountry cell","satellite phone","sometimes carried","varying coverage","coverage backpacking","backpacking may","may involve","involve riding","pack animal","increase carrying","carrying capacity","trail condition","condition ultralight","ultralight backpacking","backpacking enthusiasts","enthusiasts bring","smaller footprint","minimum necessary","survive may","may overlap","camping activity","pursued camping","back country","country activities","rock climbing","cross country","country skiing","skiing puts","carried thus","thus lending","less rather","approach canoe","canoe camping","camping canoe","canoe camping","camping isimilar","often affords","affords much","involved electric","electric motor","small gas","gas ones","ones may","faster journey","common gear","gear file","c bicycle","bicycle camping","camping bicycle","bicycle touring","touring bicycle","bicycle camping","camping combines","combines camping","natural areas","areas try","try bike","bike camping","camping popular","popular science","science october","october pp","bicycle camping","become popular","world involves","involves cycling","cycling organisations","organisations offering","offering organised","organised multi","multi day","day rides","providing riders","great victorian","victorian bike","bike ride","successful examples","operating since","involving thousands","nine day","day journey","year motorcycle","motorcycle camping","bicycle camping","camping car","car camping","camping due","limited storage","storage capacity","capacity lightweight","lightweight compact","compact backpacking","backpacking equipment","used file","file gvbr","gvbr tent","tent city","anglesea pano","pano vic","vic jjron","jjron jpg","jpg center","center thumb","temporary tent","tent city","city iset","nighto accommodate","participants thatake","thatake part","great victorian","victorian bike","bike ride","australia car","file car","thumb car","car camping","camping facilitated","motor vehicle","camping involve","involve using","powered vehicle","essential element","camping experience","combines camping","camping withe","withe luxury","europeand american","american safari","africa wealthy","wealthy travellers","travellers accustomed","wilderness lifestyles","lifestyles reflected","reenactment camping","camping file","file french","thumb modern","modern day","th century","century french","indian war","war sleep","period tents","campfires reenactment","reenactment camping","camping employs","equipment appropriate","specific historic","historic era","personal enjoyment","entertainment historical","wild west","west american","american civil","civil war","camping file","thumb long","long term","term campsites","campsites include","include permanent","semi permanent","neighboring campers","campers many","many campers","campers enjoy","enjoy socializing","small groups","throughouthe year","allow members","similar interests","similar geographical","geographical areas","allows families","form small","small close","form lasting","lasting friendship","two large","large organizations","caravan club","caravanning club","camping feel","closer form","members become","would otherwise","modern society","society social","social camping","also build","different families","many campers","activities witheir","witheir friends","may also","also give","lonely campers","campers enjoy","camping promotes","personnel training","training facility","fact many","many companies","companies offer","employees employees","helps connect","connect people","necessarily know","get along","along successfully","successfully including","personnel training","training package","also recommended","morecent years","camp alone","online social","social networking","many online","camping companions","wanto share","case campers","campers may","may provide","useful tips","tips resulting","experience individuals","campers especially","abouthis activity","activity survivalist","survivalist camping","camping survivalist","survivalist campers","campers learn","survival skills","skills needed","outdoor situation","activity may","may require","require skills","obtaining food","wild emergency","emergency medical","medical treatments","pioneering scout","scout movement","movement pioneering","pioneering urban","urban camping","camping urban","urban camping","sounds like","unique set","occupy wall","wall street","involved elements","urban camping","non recreational","recreational form","extended outdoor","outdoor accommodation","accommodation winter","winter camping","camping file","file camping","state park","thumb camping","state park","park winter","winter camping","wilderness camping","cold seasons","temperate climates","typically include","include snow","snow rather","present yearound","arctic regions","mountains high","high enough","maintain permanent","permanent snow","snow cover","high quality","gear experience","risks may","may include","bivouac shelter","shelter bivouac","bivouac gear","gear alternative","alternative shelter","shelter building","building skills","snow cave","clothing suitable","appropriate nutrition","food preparation","allows campers","trade labor","labor variously","campsite fees","fees campground","campground utilities","usually seasonal","seasonal fromay","fromay toctober","toctober although","warm weather","weather areasuch","floridand arizona","prevalent among","among retired","retired travelers","travelers whoften","recreational vehicle","trade labor","campground tasksuch","fees camp","camp host","host programs","programs favor","favor trades","introducing new","new visitors","campground facilities","activities camping","camping equipment","equipment file","file camping","camping equipment","equipment jpg","thumb camping","camping equipment","equipment file","file dome","dome tent","tent file","island geographorguk","geographorguk jpg","thumb shelter","shelter constructed","thequipment used","used camping","camping varies","intended activity","survival camping","camping thequipment","thequipment consists","small items","items whichave","providing food","food heat","safety thequipment","thequipment used","camping must","mandatory items","winter camping","camping involve","specially designed","designed equipment","protecthe camper","cold survival","survival camping","camping involves","involves certain","certain items","survival kit","kit includes","includes mandatory","mandatory items","must fit","otherwise could","carried one","one person","small metal","metal container","heat water","prove useful","many situations","emergency space","specially designed","minimal space","making emergency","emergency shelters","shelters keeping","camper warm","warm also","aluminum like","like color","beasily seen","enclosed space","space one","two band","band aids","aids band","band aids","survival ones","ones need","large safety","safety pin","fishing rubber","rubber gloves","survival kit","kit although","although many","many items","carried one","one person","useful winter","winter camping","dangerous without","without respecting","basic rules","particular activity","activity firstly","three types","liner layer","layer againsthe","againsthe camper","camper skin","wind proof","proof outer","outer shell","shell although","although cotton","best quality","quality fabrics","winter camping","gets wet","could freeze","freeze rather","cotton winter","wear wool","synthetic materials","human head","head must","protected againsthe","againsthe cold","cold although","good choice","choice campers","advised noto","noto wear","many pairs","might restrict","restrict blood","blood flow","feet resulting","cold feet","avoid snow","body warm","water stores","stores must","tent must","carefully chosen","wind list","commonly used","used camping","camping equipment","equipment first","first aid","lean tor","shelter hammer","drive tent","soil hammer","also helpful","sleeping bag","warmth sleeping","sleeping pad","placed underneathe","underneathe sleeping","sleeping bag","ground lantern","cutting firewood","campfire starter","ignition device","campfire folding","folding chair","placement around","around campfire","campfire rope","clothes line","storm protection","shelter dining","dining areas","hiking boot","fishing pole","pole chuck","chuck box","hold camp","camp kitchen","kitchen items","food preparation","preparation consumption","cleanup trash","trash bag","waste see","see leave","provided insect","particularly one","skin personal","personal care","care products","towel cooler","stirling engine","engine cooler","used withouthe","withouthe need","ice campers","modern campgrounds","normally bring","backcountry campers","bring non","dried fruit","nut fruit","fruit nuts","portable water","water filter","lakes cooking","grill dutch","dutch oven","clay pot","portable stove","electric frying","frying pan","used firewood","campfires emergency","kit multi","multi tool","knife global","global positioning","positioning system","system gps","gps much","remaining needed","needed camping","camping equipment","commonly available","home including","including dishes","dishes pots","pans however","however many","many people","noto use","home items","better tailored","amenities include","include heavy","heavy plastic","plastic tableware","rain old","old kitchen","kitchen gear","gear purchased","garage sale","may also","home items","buying specialized","morexpensive camping","camping equipment","equipment backpackers","backpackers use","use lightweight","backpacker magazine","magazine august","august campgrounds","commercial campsites","campsites file","file trailer","trailer camping","camping may","may jpg","thumb camping","camping provides","provides comfort","broad range","age ability","many ways","well many","many campgrounds","fire rings","rings barbecue","nearby recreational","recreational facilities","similar levels","development campsites","level paved","paved pad","park articles","articles today","comforts available","recreational vehicle","camp closer","car camping","camping tent","tent may","hot water","water tent","tent interior","interior lighting","technological changes","recreational vehicles","options may","may include","include air","air conditioning","conditioning bathrooms","home theater","theater systems","united states","states canadand","canadand europe","campgrounds offer","electricity water","sewer services","vehicles used","used camping","camping include","touring bicycles","bicycles boats","pack animal","even bush","bush planes","planes although","although backpacking","backpacking wilderness","wilderness backpacking","popular alternative","alternative file","file camping","camping car","car de","de type","large recreational","recreational vehicle","vehicle provides","provides many","many amenities","camping tent","tent camping","camping sites","sites often","often cost","cost less","full amenities","allow direct","direct access","sites lie","short walk","walk away","nearest road","require full","full backpacking","rugged experience","outdoors prefer","stars although","although many","many people","people see","daily routine","survival skills","skills others","others would","would rather","rather benefit","many amenities","nowadays equipped","decades ago","ago camping","camping meant","great deal","wild nature","nature today","weekend away","woodland woods","woods may","may also","also expect","high level","campsite vary","vary greatly","prices campers","campers must","must pay","visited places","places tend","cheapest option","camping still","still remains","remains backpacking","backpacking wilderness","wilderness backpacking","tent camping","camping although","options many","many companies","companies manufacturing","manufacturing camping","camping accessories","accessories produce","produce differentypes","make camping","comfortable activity","gear used","used camping","food storage","storage unit","easily save","save campers","even bear","bear attacks","camping community","towards leaving","leaving unused","unused gear","gear athe","country united","united states","tover million","million americans","united states","states population","population went","went camping","net loss","participants according","red rover","rover camping","coleman company","company inc","outdoor foundation","foundation camping","united states","gaining popularity","million participants","united kingdom","kingdom according","data provided","great british","british tourism","tourism survey","survey conducted","visit england","england almost","almost million","million camping","caravanning holidays","british residents","first half","half ofor","withe united","united states","states camping","gaining popularity","trips versus","survey conducted","campers planned","take three","three trips","spending nights","away july","popular months","winter months","months data","data collected","de l","taken ofrench","ofrench campsites","figure consisted","around million","dutch germand","germand uk","uk tourists","french government","million tourists","whilsthe department","department withe","see also","also file","file camping","lake british","british columbia","columbia jpg","thumb camping","lake british","british columbia","british columbia","columbia backpacking","animals camping","camping coach","coach camping","camping food","food campsite","campsite caravan","caravan parks","parks fire","fire bow","camping backpacking","backpacking wilderness","wilderness food","food hiking","hiking wilderness","wilderness food","food list","human habitation","habitation forms","forms outdoor","outdoor cooking","cooking bell","tent wilderness","file backcountry","backcountry camping","costa rica","rica externalinks","externalinks images","long trail","trail center","digital initiatives","initiatives university","vermont library","library reflections","summer car","car camping","camping video","video produced","oregon field","field guide","guide category","category camping","camping category","knowledge category","category survival","survival skills","skills category","category tourism"],"new_description":"file camping img_jpg thumb camping district pradesh india camping outdoor activity activity involving overnight_stays away home shelter tent caravan towed trailer caravan motorhome generally participants leave developed areas spend time outdoors natural ones pursuit activities providing regarded camping minimum one night outdoors day similarly shorterm recreational activities camping four seasons luxury may element early_th century african safari including accommodations fully equipped fixed high_end sporting camp banner camping line camping recreational activity became_popular_among thearly_th century time grew democratic varied modern campers frequent protected area publicly owned natural national_park national state_parks wilderness area commercial campgrounds camping key part organizations around world use ito teach self reliance file group men thumb camping ontario describes range activities approaches accommodation survivalist little possible get whereas recreational vehicle travelers witheir electricity heat patio furniture camping may combined backpacking_wilderness backpacking conjunction outdoor activitiesuch canoeing climbing fishing hunting universally camping fundamentally reflects combination intent nature activities involved children summer camp dining hall meals bunkhouse accommodations may camp name fails reflecthe spirit form camping broadly understood similarly homelessness homeless person lifestyle may involve many common camping activitiesuch preparing meals fire fails nature pursuit spirit integral aspect camping likewise cultures itinerant lifestyles lack permanent dwellings cannot said camping way life file thomas hiram thumb thomas hiram holding outside camping history recreational camping often traced back thomas hiram holding british_travelling tailor actually first uk river_thames large_numbers visitors took part connected late victorian craze pleasure boating thearly camping_equipment heavy transport boat use converted tents although thomas hiram holding often_seen father modern camping uk responsible camping thearly twentieth_century activity wild youth spent much time withis parents traveling across american later cycling camping tour friends across ireland book ireland experience cycle camp led formation first association cycle campers later become camping caravanning club wrote campers handbook could share enthusiasm great outdoors withe world possibly first_commercial world camp camp near douglas isle man opened association cycle campers opened first camping site thatime organization several hundred members association merged national camping club although responsible certain camping activity association received new lease life war baden powell founder scouting boy movement became international_federation camping clubs federation internationale de camping de caravanning founded national clubs world camping become established family holiday standard today camp sites across_europe north camping adventure camping form camping people race possibly adventure_racing mountain_biking day camp way might use basic items camping_equipment micro camping stove sleeping_bag bivouac shelter dry camping dry camping camping site without reliable water source locations known dry camps campers must carry water camp requires much preparation would otherwise camping common often risk file hikers wilderness backpackers carrying camping_equipment backpacking_wilderness backpacking affords maximum wilderness experience specialized gear allows enthusiasts enjoy popular local recreational spots access remote locations technological advance consumer interest camping led lighter diverse ultra light fabrics heat hip make lighter loads enhanced performance always possibility severe weather injury backcountry cell satellite phone sometimes carried emergencies varying coverage backpacking may involve riding accompanied pack animal horses increase carrying_capacity trail condition ultralight backpacking enthusiasts bring little possible camping producing smaller footprint impact wilderness choice camp less even minimum necessary survive may matter preference may overlap camping activity pursued camping back country activities rock_climbing cross_country skiing puts premium amount gear effectively carried thus lending less rather approach canoe camping canoe camping isimilar backpacking often affords much weight bulk carried extended involved electric motor small gas ones may attached allowed faster journey bags common gear file thumb party alicia c bicycle camping bicycle_touring bicycle camping combines camping cycling developed natural areas try bike camping popular_science october pp form bicycle camping become_popular parts world involves cycling organisations offering organised multi day_rides providing riders facilities luggage great_victorian bike_ride australia one oldest successful examples operating since involving thousands riders nine day journey around year motorcycle camping similar bicycle camping car camping due limited storage capacity lightweight compact backpacking equipment used file gvbr tent city anglesea pano vic_jjron_jpg center thumb px temporary tent city iset nighto accommodate thousands participants thatake part great_victorian bike_ride australia car road file car thumb car camping camping facilitated motor_vehicle forms camping involve using powered vehicle essential element camping experience camping phenomenon combines camping withe luxury amenities home hotel roots thearly europeand american safari africa wealthy travellers accustomed comfort luxury wanto campsites wilderness lifestyles reflected reenactment camping file french indian thumb modern_day th_century french indian war sleep period tents cook campfires reenactment camping employs methods equipment appropriate specific historic era personal enjoyment purposesuch instruction entertainment historical conditions technologies periods wild west american_civil_war medieval camping file cke e thumb long_term campsites include permanent semi permanent lead neighboring campers many campers enjoy socializing small groups groups throughouthe year allow members similar interests similar geographical areas order allows families form small close societies children form lasting friendship two large organizations uk facilitate camping caravan club camping caravanning club participate camping feel brings closer form bonding members become would otherwise modern society social camping also build bond members family different families common many campers type activities witheir friends beyond families may_also give opportunity lonely campers enjoy type activity individuals share enthusiasm matter bonding type camping promotes also_used personnel training facility fact many companies offer employees employees type training helps connect people necessarily know need work need get along successfully including type activity personnel training package becoming popular also recommended benefits brings morecent years camp alone able share experiences campers blogs online social_networking many online designed people looking camping companions wanto share experiences people case campers may provide others useful tips resulting experience individuals willing camp likely access type websites connect campers especially gives opportunity learn abouthis activity survivalist camping survivalist campers learn survival skills needed survive outdoor situation activity may require skills obtaining food wild emergency medical_treatments pioneering scout movement pioneering urban camping urban camping sounds like unique set occupy wall_street protest involved elements urban camping non recreational form extended outdoor accommodation winter camping file camping state_park mountains thumb camping alaska state_park winter camping refers wilderness camping cold seasons temperate climates typically include snow rather areas snow present yearound arctic regions mountains high enough maintain permanent snow cover puts premium high_quality gear experience risks may_include becoming addition packing tents bivouac shelter bivouac gear alternative shelter building skills key snow cave clothing suitable regard appropriate nutrition food_preparation key allows campers trade labor variously discounts campsite fees campground utilities even degree pay usually seasonal fromay toctober although warm weather areasuch floridand arizona yearound prevalent among retired travelers whoften recreational vehicle trade labor campground tasksuch maintenance fees camp host programs favor trades participation hospitality introducing new visitors campground facilities activities camping_equipment file camping_equipment jpg thumb camping_equipment file dome thumb dome tent file island geographorguk_jpg thumb shelter constructed thequipment used camping varies intended activity instance survival camping thequipment consists small items whichave purpose helping camper providing food heat safety thequipment used type camping must lightweight restricted mandatory items types camping winter camping involve specially designed equipment terms tents clothing enough protecthe camper body wind cold survival camping involves certain items campers withem case wrong need rescued survival kit includes mandatory items small must fit one pocket otherwise could carried one person kit useless circumstances kept backpack left camp kit include small metal container used heat water campfire prove useful many situations emergency space blankets specially designed minimal space perfect making emergency shelters keeping camper warm also aluminum like color reflective means beasily seen aircraft good starting fire well warming enclosed space one two band aids band aids mandatory type camping camper survival ones need matches lighter large safety pin used fishing rubber gloves chemical tablets water also_included survival kit although_many items carried one person fact useful winter camping dangerous without respecting basic rules comes particular activity firstly cold protected clothing three types layers follows liner layer againsthe camper skin layer water wind proof outer shell although cotton one best quality fabrics recommended worn winter camping gets wet slowly could freeze rather cotton winter wear wool synthetic materials boot must human head must protected againsthe cold although seems good choice campers advised noto wear many pairs might restrict blood flow feet resulting cold feet also worn avoid snow rain one include keep body warm well hydration important winter plenty water keep well noting water stores must kept freezing tent must carefully chosen shelter wind list common following list commonly_used camping_equipment first_aid lean tor form shelter hammer drive tent soil hammer often hammer also helpful sleeping_bag warmth sleeping pad air placed underneathe sleeping_bag stones well thermal ground lantern saw cutting firewood campfire starter ignition device starting campfire folding chair placement around campfire rope clothes line securing shelter adding storm protection tent shelter dining areas hiking boot fishing pole chuck box hold camp kitchen items food_preparation consumption cleanup trash bag handling waste see leave trace sanitation areas toilet provided insect particularly one protecting skin personal care products towel cooler store beverages electricity available stirling engine cooler used withouthe need ice campers modern campgrounds normally bring foods backcountry campers bring non foodsuch dried fruit nut fruit nuts food beverages portable water filter areas access rivers lakes cooking grill dutch oven la clay pot used cooking campfire portable stove used campfires forbidden impractical using campground electricity electric frying pan slow used firewood campfires emergency kit multi tool knife global positioning system gps much remaining needed camping_equipment commonly available home including dishes pots pans however_many_people noto use home items instead better tailored camping amenities include heavy plastic tableware salt pepper tops close order shelter rain old kitchen gear purchased store garage sale may_also used place home items alternative buying specialized morexpensive camping_equipment backpackers use lightweight ultralight kelly backpacker magazine august campgrounds commercial campsites file trailer camping may jpg thumb camping provides comfort package broad range age ability campsite designed many ways well many campgrounds sites facilitiesuch fire rings barbecue bathrooms laundry well access nearby recreational facilities campsites similar levels development campsites range patch level paved pad sewer electricity information campsite park articles today campers range comforts available whether shelter tent recreational vehicle choosing camp closer car camping tent may access hot water tent interior lighting fans technological changes camping recreational vehicles options may_include air_conditioning bathrooms home theater systems united_states canadand europe campgrounds offer vehicles supplied electricity water sewer services vehicles used camping include touring bicycles boats pack animal even bush planes although backpacking_wilderness backpacking foot popular alternative file camping car de type thumb large recreational vehicle provides many amenities camping tent camping sites often cost less campsites full amenities allow direct access car walk sites lie short walk away nearest road require full backpacking seek rugged experience outdoors prefer camp tents shelter stars although_many_people see camping chance get daily routine improve survival skills others would rather benefit many amenities campsites nowadays equipped decades ago camping meant great_deal responsibility knowledge wild nature today individual wants spend weekend away woodland woods may_also expect high_level amenities found campsite vary greatly prices campers must pay use usually visited places tend comfortable sought morexpensive cheapest option comes camping still remains backpacking_wilderness backpacking tent camping although lack comforts options many companies manufacturing camping accessories produce differentypes equipment gear intended make camping comfortable activity gear used camping crucial life food storage unit easily save campers insect even bear attacks camping community known towards leaving unused gear athe hikers use swap country_united states tover million americans united_states population went camping net loss participants according produced red rover camping based data american published coleman company inc outdoor foundation camping united_states gaining popularity losing net million participants united_kingdom according data provided great british tourism survey conducted visit england almost million camping caravanning holidays taken british residents first_half ofor average nights withe united_states camping gaining popularity increase trips versus period survey conducted showed campers planned take three trips year spending nights away july august far popular months camping fewer camp winter months data collected de l de air shows around taken ofrench campsites period figure consisted around million rest made nationalities majority dutch germand uk tourists french government hoping million tourists year camping around campsites whilsthe department withe campsites see_also file camping lake british_columbia jpg thumb camping river lake british_columbia british_columbia backpacking animals camping coach camping food campsite caravan parks fire bow camping backpacking_wilderness food hiking wilderness food list human habitation forms outdoor cooking bell tent wilderness file backcountry camping camping costa_rica externalinks images hiking long trail center digital initiatives university vermont library reflections summer car camping video produced oregon field guide_category camping category knowledge category category survival skills category_tourism"},{"title":"Camping coach","description":"file dawlish warren camping coach bristoljpg thumb px right camping coaches at camping coaches were offered by many rail transport railway companies in the united kingdom as accommodation for holiday makers in rural or coastal areas the coach rail coaches were old passenger vehicles no longer suitable for use in trains which were converted to provide basic sleeping and living space at static locations many of the coaches would be removed from their stations in the winter and overhauled athe railway s workshops ready to be returned in the spring being placed on sidings the local railway staff looked after the coaches as part of their duties the charges for the use of these coaches were designed to require groups of people to travel by train to the stations where they were situated they were also encouraged to make use of the railway to travel around the area during their holiday file gwr book camp coacholidaysjpg thumb left upright a great western railway gwr brochure they were first introduced by the london and north eastern railway in july when there was a great deal of popular enthusiasm in the urban population for hiking and camping as holiday activities initially ten vehicles were provided chiefly at inland beauty spots the following year twotherailway companies followed suithe london midland scottish railway with what it originally called caravans and the great western railway which called them camp coaches in they were introduced on the southern railway great britain southern railway and on the lms northern counties committee inorthern ireland in the same year the lner introduced a touring camping coach as a result of world war ii the facility was not made available after the season and many of the vehicles were used as temporary accommodation forailway staff or others in connection withe war efforthe southern railway reintroduced coaches at some sites in butheir large scale return came under british rail ways ownership in some sitestarted to receive conversions from pullman lounge car s the sites at which larger numbers of coaches were located tended to be on the west coast including inorth wales and in lancashire heysham port railway station heysham pre war in blackpool and the number of camping coaches offered for hire declined from the mid s as other forms of holidays became more popular the condition of the vehicles deteriorated and the number of staffed stations at which they could be sitedecreased the last were offered to the public by the london midland region of british railways in although some weretained for manyears after this forailway staff to hire for their holidays at in devon and in cornwall a few heritage railways and private companies have now taken toffering camping coaches at select locations while ideal forailway enthusiasts they are also marketed to the general public privately owned carserving a similar purpose may also be found for example at north conway new hampshire north conway on the conway scenic railroad in the united states current locations file st germans gwr camping coachjpg thumb right an ex gwr travelling post office camping coach at devon somerset north yorkshire shropshire devon allerstonorth yorkshire highland council area highland north yorkshire cornwall north yorkshire west sussex cumbria highland council area highland cornwallocations in this list shows the locations of camping coaches in a typical year buthe locations usedid vary over timecamping coaches leaflet publisher british railways bref no isbn eastern region berth coaches corton railway station corton felixstowe pierailway station felixstowe pier hopton railway station hopton lowestoft north railway station lowestoft north mundesley railway station mundesley oulton broad south railway station oulton broad south north eastern region berth coaches robin hood s bay railway station robin hood s bay scalby railway station scalby berth coaches cloughton railway station cloughton embsay and bolton abbey steam railway bolton abbey goathland railway station goathland kettleness railway station kettleness ravenscarailway station ravenscar sandsend railway station sandsend railway station sandsend east row staintondale railway station stainton dale staithes railway station staithescottish region berth coaches aboyne railway station aboyne aberdourailway station aberdour aberfeldy railway station aberfeldy aberlady railway station aberlady appin railway station appin arisaig railway station arisaig benderloch railway station benderloch burghead railway station burghead carnoustie railway station carnoustie carrbridge railway station carr bridgeddleston railway station eddleston elie railway station elie fairlie railway station fairlie high fortrose railway station fortrose glenfinnan railway station glenfinnan gullane railway station gullane kentallen railway station kentallen kingussie railway station kingussie loch awe railway station loch awe lochmaben railway station lochmaben lundin links railway station lundin links monifieth railway station monifieth morarailway station morar plockton railway station plockton portressie railway station portressie st combs railway station st combst monance railway station st monance strathyre railway station strathyre stromeferry railway station strome ferry tyndrum lowerailway station tyndrum lower west kilbride railway station west kilbride southern region berth coaches amberley railway station amberley bere ferrers railway station bere ferrers combpyne railway station combpyne corfe castle railway station corfe castleast budleigh railway station east budleighinton admiral railway station hinton admiralittleham railway station littleham ashurst new forest railway station lyndhurst road martin mill railway station martin mill newton poppleford railway stationewton poppleford sandling railway station sandling for hythe sway railway station sway tipton st john railway station tipton st john exton railway station woodbury road wool railway station wool wrafton railway station wrafton london midland region berth coaches aber lnwrailway station abergele and pensarn railway station abergele bakewell railway station bakewell bassenthwaite lake railway station bassenthwaite lake betws y coed railway station betws y coed blackpool coniston railway station cumbria coniston darley dale railway station darley dale glan conwy railway station glan conway grange over sands railway station grange over sands lakeside and haverthwaite railway lakeside windermere llanberis railway station llanberis rhuddlan railway station rhuddlan seascale railway station seascale silloth railway station silloth western region berth coaches aberayron railway station aberayron aberdovey railway station aberdovey abererch railway station abererch arthog railway station arthog barmouth railway station barmouth junction blue anchorailway station blue anchor borth railway station borth bow street railway station bow street buckfastleigh railway station buckfastleigh carrog railway station carrog cheddarailway station cheddar chudleigh railway station chudleigh congresbury railway station congesbury dawlish warren railway station dawlish warren dolgellau railway station dolgelly dyffryn ardudwy railway station duffryn ardudwy fairbourne railway station fairbourne ferryside railway station ferryside fowey railway station fowey gara bridge railway station gara bridge kerne bridge railway station kerne bridge lavernock railway station lavernock limpley stoke railway station limpley stoke llwyngwril railway station llwyngwriloddiswell railway station loddiswellustleigh railway station lustleigh luxulyan railway station luxulyan manorbierailway station manorbier marazion railway station marazion penally railway station penally perranwell railway station perranwell saundersfoot railway station saundersfoot st agnes railway station st agnest erth railway station st erth shepherds railway station shepherdshiplake railway station shiplake stogumberailway station stogumber sully railway station sully symonds yat railway station symonds yatalsarnau railway station talsarnau tintern railway station tintern wargrave railway station wargrave winscombe railway station winscombe yealmpton railway station yealmpton camping coaches leaflet publisher british railways bref no isbn externalinks coaches on the forge valley railway category railway coaches of the united kingdom category tourism in the united kingdom category tourist accommodations category railway services introduced in","main_words":["file","warren","camping","coach","thumb","px","right","camping","coaches","camping","coaches","offered","many","rail_transport","railway","companies","united_kingdom","accommodation","holiday","makers","rural","coastal","areas","coach","rail","coaches","old","passenger","vehicles","longer","suitable","use","trains","converted","provide","basic","sleeping","living","space","static","locations","many","coaches","would","removed","stations","winter","athe","railway","workshops","ready","returned","spring","placed","local","railway","staff","looked","coaches","part","duties","charges","use","coaches","designed","require","groups","people","travel","train","stations","situated","also","encouraged","make","use","railway","travel","around","area","holiday","file","gwr","book","camp","thumb","left","upright","great","western","railway","gwr","brochure","first","introduced","london","north_eastern","railway","july","great_deal","popular","enthusiasm","urban","population","hiking","camping","holiday","activities","initially","ten","vehicles","provided","chiefly","inland","beauty","spots","following_year","companies","followed","london","midland","scottish","railway","originally_called","caravans","great","western","railway","called","camp","coaches","introduced","southern","railway","great_britain","southern","railway","northern","counties","committee","inorthern_ireland","year","introduced","touring","camping","coach","result","world_war","ii","facility","made_available","season","many","vehicles","used","temporary","accommodation","staff","others","connection","withe","war","southern","railway","reintroduced","coaches","sites","butheir","large_scale","return","came","british","rail","ways","ownership","receive","lounge","car","sites","larger","numbers","coaches","located","tended","west_coast","including","inorth","wales","lancashire","port","railway_station","pre_war","blackpool","number","camping","coaches","offered","hire","declined","mid","forms","holidays","became_popular","condition","vehicles","number","stations","could","last","offered","public","london","midland","region","british","railways","staff","hire","holidays","devon","cornwall","heritage_railways","private","companies","taken","camping","coaches","select","locations","ideal","enthusiasts","also","marketed","general_public","privately_owned","similar","purpose","may_also","found","example","north","conway","new_hampshire","north","conway","conway","scenic","railroad","united_states","current","locations","file","st","germans","gwr","camping","thumb","right","gwr","travelling","post_office","camping","coach","devon","somerset","north_yorkshire","shropshire","devon","yorkshire","highland","council","area","highland","north_yorkshire","cornwall","north_yorkshire","west","sussex","cumbria","highland","council","area","highland","list","shows","locations","camping","coaches","typical","year","buthe","locations","vary","coaches","publisher","british","railways","isbn","eastern","region","berth","coaches","railway_station","station","pier","railway_station","north","railway_station","north","railway_station","broad","south","railway_station","broad","south","north_eastern","region","berth","coaches","robin","hood","bay","railway_station","robin","hood","bay","railway_station","berth","coaches","railway_station","bolton","abbey","steam","railway","bolton","abbey","railway_station","railway_station","station","railway_station","railway_station","east","row","railway_station","stainton","dale","railway_station","region","berth","coaches","railway_station","station","railway_station","railway_station","railway_station","railway_station","railway_station","railway_station","railway_station","railway_station","carr","railway_station","railway_station","railway_station","high","fortrose","railway_station","fortrose","railway_station","railway_station","railway_station","kingussie","railway_station","kingussie","loch","awe","railway_station","loch","awe","railway_station","links","railway_station","links","railway_station","station","railway_station","railway_station","st","railway_station","st","railway_station","st","railway_station","railway_station","ferry","station","lower","west","kilbride","railway_station","west","kilbride","southern","region","berth","coaches","amberley","railway_station","amberley","bere","railway_station","bere","railway_station","castle","railway_station","railway_station","east","admiral","railway_station","railway_station","new","forest","railway_station","road","martin","mill","railway_station","martin","mill","newton","railway","railway_station","sway","railway_station","sway","tipton","st_john","railway_station","tipton","st_john","railway_station","road","wool","railway_station","wool","railway_station","london","midland","region","berth","coaches","station","railway_station","railway_station","lake","railway_station","lake","coed","railway_station","coed","blackpool","railway_station","cumbria","dale","railway_station","dale","railway_station","conway","sands","railway_station","sands","lakeside","railway","lakeside","windermere","railway_station","railway_station","railway_station","railway_station","western","region","berth","coaches","railway_station","railway_station","railway_station","railway_station","railway_station","junction","blue","station","blue","anchor","railway_station","bow","street","railway_station","bow","street","railway_station","railway_station","station","cheddar","railway_station","railway_station","warren","railway_station","warren","railway_station","railway_station","railway_station","railway_station","railway_station","bridge","railway_station","bridge","bridge","railway_station","bridge","railway_station","stoke","railway_station","stoke","railway_station","railway_station","railway_station","railway_station","station","railway_station","railway_station","railway_station","railway_station","st","agnes","railway_station","st","railway_station","st","shepherds","railway_station","railway_station","station","railway_station","yat","railway_station","railway_station","railway_station","railway_station","railway_station","railway_station","camping","coaches","publisher","british","railways","isbn_externalinks","coaches","forge","valley","railway","category","railway","coaches","united_kingdom","category_tourism","united_kingdom","category_tourist","accommodations","category","railway","services","introduced"],"clean_bigrams":[["warren","camping"],["camping","coach"],["thumb","px"],["px","right"],["right","camping"],["camping","coaches"],["camping","coaches"],["coaches","offered"],["many","rail"],["rail","transport"],["transport","railway"],["railway","companies"],["united","kingdom"],["holiday","makers"],["coastal","areas"],["coach","rail"],["rail","coaches"],["old","passenger"],["passenger","vehicles"],["longer","suitable"],["provide","basic"],["basic","sleeping"],["living","space"],["static","locations"],["locations","many"],["coaches","would"],["athe","railway"],["workshops","ready"],["local","railway"],["railway","staff"],["staff","looked"],["require","groups"],["also","encouraged"],["make","use"],["travel","around"],["holiday","file"],["file","gwr"],["gwr","book"],["book","camp"],["thumb","left"],["left","upright"],["great","western"],["western","railway"],["railway","gwr"],["gwr","brochure"],["first","introduced"],["north","eastern"],["eastern","railway"],["great","deal"],["popular","enthusiasm"],["urban","population"],["holiday","activities"],["activities","initially"],["initially","ten"],["ten","vehicles"],["provided","chiefly"],["inland","beauty"],["beauty","spots"],["following","year"],["companies","followed"],["london","midland"],["midland","scottish"],["scottish","railway"],["originally","called"],["called","caravans"],["great","western"],["western","railway"],["camp","coaches"],["southern","railway"],["railway","great"],["great","britain"],["britain","southern"],["southern","railway"],["northern","counties"],["counties","committee"],["committee","inorthern"],["inorthern","ireland"],["touring","camping"],["camping","coach"],["world","war"],["war","ii"],["made","available"],["temporary","accommodation"],["connection","withe"],["withe","war"],["southern","railway"],["railway","reintroduced"],["reintroduced","coaches"],["butheir","large"],["large","scale"],["scale","return"],["return","came"],["british","rail"],["rail","ways"],["ways","ownership"],["lounge","car"],["larger","numbers"],["located","tended"],["west","coast"],["coast","including"],["including","inorth"],["inorth","wales"],["port","railway"],["railway","station"],["pre","war"],["camping","coaches"],["coaches","offered"],["hire","declined"],["holidays","became"],["london","midland"],["midland","region"],["british","railways"],["heritage","railways"],["private","companies"],["camping","coaches"],["select","locations"],["also","marketed"],["general","public"],["public","privately"],["privately","owned"],["similar","purpose"],["purpose","may"],["may","also"],["north","conway"],["conway","new"],["new","hampshire"],["hampshire","north"],["north","conway"],["conway","scenic"],["scenic","railroad"],["united","states"],["states","current"],["current","locations"],["locations","file"],["file","st"],["st","germans"],["germans","gwr"],["gwr","camping"],["thumb","right"],["gwr","travelling"],["travelling","post"],["post","office"],["office","camping"],["camping","coach"],["devon","somerset"],["somerset","north"],["north","yorkshire"],["yorkshire","shropshire"],["shropshire","devon"],["yorkshire","highland"],["highland","council"],["council","area"],["area","highland"],["highland","north"],["north","yorkshire"],["yorkshire","cornwall"],["cornwall","north"],["north","yorkshire"],["yorkshire","west"],["west","sussex"],["sussex","cumbria"],["cumbria","highland"],["highland","council"],["council","area"],["area","highland"],["list","shows"],["camping","coaches"],["typical","year"],["year","buthe"],["buthe","locations"],["publisher","british"],["british","railways"],["isbn","eastern"],["eastern","region"],["region","berth"],["berth","coaches"],["railway","station"],["railway","station"],["north","railway"],["railway","station"],["north","railway"],["railway","station"],["broad","south"],["south","railway"],["railway","station"],["broad","south"],["south","north"],["north","eastern"],["eastern","region"],["region","berth"],["berth","coaches"],["coaches","robin"],["robin","hood"],["bay","railway"],["railway","station"],["station","robin"],["robin","hood"],["bay","railway"],["railway","station"],["berth","coaches"],["railway","station"],["bolton","abbey"],["abbey","steam"],["steam","railway"],["railway","bolton"],["bolton","abbey"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["station","east"],["east","row"],["railway","station"],["station","stainton"],["stainton","dale"],["dale","railway"],["railway","station"],["region","berth"],["berth","coaches"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["station","carr"],["railway","station"],["railway","station"],["railway","station"],["high","fortrose"],["fortrose","railway"],["railway","station"],["station","fortrose"],["fortrose","railway"],["railway","station"],["railway","station"],["railway","station"],["station","kingussie"],["kingussie","railway"],["railway","station"],["station","kingussie"],["kingussie","loch"],["loch","awe"],["awe","railway"],["railway","station"],["station","loch"],["loch","awe"],["awe","railway"],["railway","station"],["links","railway"],["railway","station"],["links","railway"],["railway","station"],["railway","station"],["railway","station"],["station","st"],["railway","station"],["station","st"],["railway","station"],["station","st"],["railway","station"],["railway","station"],["lower","west"],["west","kilbride"],["kilbride","railway"],["railway","station"],["station","west"],["west","kilbride"],["kilbride","southern"],["southern","region"],["region","berth"],["berth","coaches"],["coaches","amberley"],["amberley","railway"],["railway","station"],["station","amberley"],["amberley","bere"],["railway","station"],["station","bere"],["railway","station"],["castle","railway"],["railway","station"],["railway","station"],["station","east"],["admiral","railway"],["railway","station"],["railway","station"],["new","forest"],["forest","railway"],["railway","station"],["road","martin"],["martin","mill"],["mill","railway"],["railway","station"],["station","martin"],["martin","mill"],["mill","newton"],["railway","station"],["station","sway"],["sway","railway"],["railway","station"],["station","sway"],["sway","tipton"],["tipton","st"],["st","john"],["john","railway"],["railway","station"],["station","tipton"],["tipton","st"],["st","john"],["john","railway"],["railway","station"],["road","wool"],["wool","railway"],["railway","station"],["station","wool"],["wool","railway"],["railway","station"],["london","midland"],["midland","region"],["region","berth"],["berth","coaches"],["railway","station"],["railway","station"],["lake","railway"],["railway","station"],["coed","railway"],["railway","station"],["coed","blackpool"],["railway","station"],["station","cumbria"],["dale","railway"],["railway","station"],["dale","railway"],["railway","station"],["sands","railway"],["railway","station"],["sands","lakeside"],["railway","lakeside"],["lakeside","windermere"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["western","region"],["region","berth"],["berth","coaches"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["junction","blue"],["station","blue"],["blue","anchor"],["railway","station"],["station","bow"],["bow","street"],["street","railway"],["railway","station"],["station","bow"],["bow","street"],["street","railway"],["railway","station"],["railway","station"],["station","cheddar"],["railway","station"],["railway","station"],["warren","railway"],["railway","station"],["warren","railway"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["bridge","railway"],["railway","station"],["bridge","railway"],["railway","station"],["bridge","railway"],["railway","station"],["stoke","railway"],["railway","station"],["stoke","railway"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["station","st"],["st","agnes"],["agnes","railway"],["railway","station"],["station","st"],["railway","station"],["station","st"],["shepherds","railway"],["railway","station"],["railway","station"],["railway","station"],["yat","railway"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["railway","station"],["camping","coaches"],["publisher","british"],["british","railways"],["isbn","externalinks"],["externalinks","coaches"],["forge","valley"],["valley","railway"],["railway","category"],["category","railway"],["railway","coaches"],["united","kingdom"],["kingdom","category"],["category","tourism"],["united","kingdom"],["kingdom","category"],["category","tourist"],["tourist","accommodations"],["accommodations","category"],["category","railway"],["railway","services"],["services","introduced"]],"all_collocations":["warren camping","camping coach","right camping","camping coaches","camping coaches","coaches offered","many rail","rail transport","transport railway","railway companies","united kingdom","holiday makers","coastal areas","coach rail","rail coaches","old passenger","passenger vehicles","longer suitable","provide basic","basic sleeping","living space","static locations","locations many","coaches would","athe railway","workshops ready","local railway","railway staff","staff looked","require groups","also encouraged","make use","travel around","holiday file","file gwr","gwr book","book camp","left upright","great western","western railway","railway gwr","gwr brochure","first introduced","north eastern","eastern railway","great deal","popular enthusiasm","urban population","holiday activities","activities initially","initially ten","ten vehicles","provided chiefly","inland beauty","beauty spots","following year","companies followed","london midland","midland scottish","scottish railway","originally called","called caravans","great western","western railway","camp coaches","southern railway","railway great","great britain","britain southern","southern railway","northern counties","counties committee","committee inorthern","inorthern ireland","touring camping","camping coach","world war","war ii","made available","temporary accommodation","connection withe","withe war","southern railway","railway reintroduced","reintroduced coaches","butheir large","large scale","scale return","return came","british rail","rail ways","ways ownership","lounge car","larger numbers","located tended","west coast","coast including","including inorth","inorth wales","port railway","railway station","pre war","camping coaches","coaches offered","hire declined","holidays became","london midland","midland region","british railways","heritage railways","private companies","camping coaches","select locations","also marketed","general public","public privately","privately owned","similar purpose","purpose may","may also","north conway","conway new","new hampshire","hampshire north","north conway","conway scenic","scenic railroad","united states","states current","current locations","locations file","file st","st germans","germans gwr","gwr camping","gwr travelling","travelling post","post office","office camping","camping coach","devon somerset","somerset north","north yorkshire","yorkshire shropshire","shropshire devon","yorkshire highland","highland council","council area","area highland","highland north","north yorkshire","yorkshire cornwall","cornwall north","north yorkshire","yorkshire west","west sussex","sussex cumbria","cumbria highland","highland council","council area","area highland","list shows","camping coaches","typical year","year buthe","buthe locations","publisher british","british railways","isbn eastern","eastern region","region berth","berth coaches","railway station","railway station","north railway","railway station","north railway","railway station","broad south","south railway","railway station","broad south","south north","north eastern","eastern region","region berth","berth coaches","coaches robin","robin hood","bay railway","railway station","station robin","robin hood","bay railway","railway station","berth coaches","railway station","bolton abbey","abbey steam","steam railway","railway bolton","bolton abbey","railway station","railway station","railway station","railway station","station east","east row","railway station","station stainton","stainton dale","dale railway","railway station","region berth","berth coaches","railway station","railway station","railway station","railway station","railway station","railway station","railway station","railway station","railway station","station carr","railway station","railway station","railway station","high fortrose","fortrose railway","railway station","station fortrose","fortrose railway","railway station","railway station","railway station","station kingussie","kingussie railway","railway station","station kingussie","kingussie loch","loch awe","awe railway","railway station","station loch","loch awe","awe railway","railway station","links railway","railway station","links railway","railway station","railway station","railway station","station st","railway station","station st","railway station","station st","railway station","railway station","lower west","west kilbride","kilbride railway","railway station","station west","west kilbride","kilbride southern","southern region","region berth","berth coaches","coaches amberley","amberley railway","railway station","station amberley","amberley bere","railway station","station bere","railway station","castle railway","railway station","railway station","station east","admiral railway","railway station","railway station","new forest","forest railway","railway station","road martin","martin mill","mill railway","railway station","station martin","martin mill","mill newton","railway station","station sway","sway railway","railway station","station sway","sway tipton","tipton st","st john","john railway","railway station","station tipton","tipton st","st john","john railway","railway station","road wool","wool railway","railway station","station wool","wool railway","railway station","london midland","midland region","region berth","berth coaches","railway station","railway station","lake railway","railway station","coed railway","railway station","coed blackpool","railway station","station cumbria","dale railway","railway station","dale railway","railway station","sands railway","railway station","sands lakeside","railway lakeside","lakeside windermere","railway station","railway station","railway station","railway station","western region","region berth","berth coaches","railway station","railway station","railway station","railway station","railway station","junction blue","station blue","blue anchor","railway station","station bow","bow street","street railway","railway station","station bow","bow street","street railway","railway station","railway station","station cheddar","railway station","railway station","warren railway","railway station","warren railway","railway station","railway station","railway station","railway station","railway station","bridge railway","railway station","bridge railway","railway station","bridge railway","railway station","stoke railway","railway station","stoke railway","railway station","railway station","railway station","railway station","railway station","railway station","railway station","railway station","station st","st agnes","agnes railway","railway station","station st","railway station","station st","shepherds railway","railway station","railway station","railway station","yat railway","railway station","railway station","railway station","railway station","railway station","railway station","camping coaches","publisher british","british railways","isbn externalinks","externalinks coaches","forge valley","valley railway","railway category","category railway","railway coaches","united kingdom","kingdom category","category tourism","united kingdom","kingdom category","category tourist","tourist accommodations","accommodations category","category railway","railway services","services introduced"],"new_description":"file warren camping coach thumb px right camping coaches camping coaches offered many rail_transport railway companies united_kingdom accommodation holiday makers rural coastal areas coach rail coaches old passenger vehicles longer suitable use trains converted provide basic sleeping living space static locations many coaches would removed stations winter athe railway workshops ready returned spring placed local railway staff looked coaches part duties charges use coaches designed require groups people travel train stations situated also encouraged make use railway travel around area holiday file gwr book camp thumb left upright great western railway gwr brochure first introduced london north_eastern railway july great_deal popular enthusiasm urban population hiking camping holiday activities initially ten vehicles provided chiefly inland beauty spots following_year companies followed london midland scottish railway originally_called caravans great western railway called camp coaches introduced southern railway great_britain southern railway northern counties committee inorthern_ireland year introduced touring camping coach result world_war ii facility made_available season many vehicles used temporary accommodation staff others connection withe war southern railway reintroduced coaches sites butheir large_scale return came british rail ways ownership receive lounge car sites larger numbers coaches located tended west_coast including inorth wales lancashire port railway_station pre_war blackpool number camping coaches offered hire declined mid forms holidays became_popular condition vehicles number stations could last offered public london midland region british railways although_manyears staff hire holidays devon cornwall heritage_railways private companies taken camping coaches select locations ideal enthusiasts also marketed general_public privately_owned similar purpose may_also found example north conway new_hampshire north conway conway scenic railroad united_states current locations file st germans gwr camping thumb right gwr travelling post_office camping coach devon somerset north_yorkshire shropshire devon yorkshire highland council area highland north_yorkshire cornwall north_yorkshire west sussex cumbria highland council area highland list shows locations camping coaches typical year buthe locations vary coaches publisher british railways isbn eastern region berth coaches railway_station station pier railway_station north railway_station north railway_station broad south railway_station broad south north_eastern region berth coaches robin hood bay railway_station robin hood bay railway_station berth coaches railway_station bolton abbey steam railway bolton abbey railway_station railway_station station railway_station railway_station east row railway_station stainton dale railway_station region berth coaches railway_station station railway_station railway_station railway_station railway_station railway_station railway_station railway_station railway_station carr railway_station railway_station railway_station high fortrose railway_station fortrose railway_station railway_station railway_station kingussie railway_station kingussie loch awe railway_station loch awe railway_station links railway_station links railway_station station railway_station railway_station st railway_station st railway_station st railway_station railway_station ferry station lower west kilbride railway_station west kilbride southern region berth coaches amberley railway_station amberley bere railway_station bere railway_station castle railway_station railway_station east admiral railway_station railway_station new forest railway_station road martin mill railway_station martin mill newton railway railway_station sway railway_station sway tipton st_john railway_station tipton st_john railway_station road wool railway_station wool railway_station london midland region berth coaches station railway_station railway_station lake railway_station lake coed railway_station coed blackpool railway_station cumbria dale railway_station dale railway_station conway sands railway_station sands lakeside railway lakeside windermere railway_station railway_station railway_station railway_station western region berth coaches railway_station railway_station railway_station railway_station railway_station junction blue station blue anchor railway_station bow street railway_station bow street railway_station railway_station station cheddar railway_station railway_station warren railway_station warren railway_station railway_station railway_station railway_station railway_station bridge railway_station bridge bridge railway_station bridge railway_station stoke railway_station stoke railway_station railway_station railway_station railway_station station railway_station railway_station railway_station railway_station st agnes railway_station st railway_station st shepherds railway_station railway_station station railway_station yat railway_station railway_station railway_station railway_station railway_station railway_station camping coaches publisher british railways isbn_externalinks coaches forge valley railway category railway coaches united_kingdom category_tourism united_kingdom category_tourist accommodations category railway services introduced"},{"title":"Cantina","description":"image cantina el nivel jpg thumb alt locals athe bar of thel nivel cantina locals athel nivel cantina in mexico city a cantina is a type of bar establishment bar popular in mexico and spain the word isimilar in etymology to canteen place canteen and is derived from the italian language italian word for a wine cellar winery or vault architecture vault cantina the american heritage dictionary of thenglish language fourth edition in italy a cantina refers to a room below the ground level where wine and other productsuch asalami are stored salame di felino naso gola the term cantina entered the french language circas cantine it was used originally to refer to the shop of a sutler types of cantinas image castel del piano arcidosso anticantina per wikipedianijpg thumb upright a osteriat castel del piano tuscany in spain a cantina is a bar located in a train station or any establishment located at or near a workplace where food andrinks are served cantina was one of the foreign words that entered in from renaissance italy during the th century the spanish empire included large holdings in italy luis de b via wrote in his tercera y cuarta parte de la historia pontifical y cat lica perdi ndosen las cantinas y lugares baxosic gran mero de mercader as losing itself in the cantinas and places of ill repute a large quantity of merchandise diccionario de autoridades edici n facs mil a c real academia espa ola madrid editorial gredos the cantina features in one of the sonnet s ofrancisco de quevedo this a quatrain from that sonnethis wine cellar covered with a face this wine harvest clad in filthy habithis wine skin which with just a sip is happy to exchange it for a whole vat con media nuez refers to the adam s apple thus making the meaning just a sip or a quick swallow habito is a play on words habit custom and tunic image cantina la guadalupana interiorjpg thumb interior of cantina in coyoacan mexico city in rural mexico a cantina traditionally is a kind of bar frequented by males for drinking alcohol and eating botanas appetizersome cantinas are also known for being places where people gather to play dominoes cards or other table games cantinas can often be distinguished by signs that expressly prohibit entrance to women and minors as opposed to a club salon de bailar dance hall or salon de mariachi typified by the salon tenampathe plaza garibaldin mexico city which are intended for socializing between the sexes alsome cantinas explicitly prohibit entrance to dogs and men in police or military uniform some of the traditional restrictions on entry to cantinas are beginning to fade away however in many areas it istill viewed ascandalous for proper ladies to be seen visiting a genuine cantina the people s guide to mexico carl franz avalon travel publishing united states a cantina in the us isimply a tavern with a southwestern or mexican motif that serves traditionalcoholic mexican drinks in the s cantina entered american english from the spanish language in the southwest united states withe meaning of bar establishment baroom western saloon see also bar establishment bar juke joint list of public house topics prison commissary public house tavern externalinks category types of drinking establishment category types of restaurants category spanish language category wine terminology","main_words":["image","cantina","el","nivel","jpg","thumb_alt","locals","athe","bar","nivel","cantina","locals","nivel","cantina","mexico_city","cantina","type","bar_establishment_bar","popular","mexico","spain","word","isimilar","etymology","canteen","place","canteen","derived","italian","language","italian","word","wine","cellar","winery","vault","architecture","vault","cantina","american","heritage","dictionary","thenglish_language","fourth_edition","italy","cantina","refers","room","ground","level","wine","productsuch","stored","term","cantina","entered","french_language","used","originally","refer","shop","types","cantinas","image","del","piano","per","thumb","upright","del","piano","tuscany","spain","cantina","bar_located","train","station","establishment","located_near","workplace","food_andrinks","served","cantina","one","foreign","words","entered","renaissance","italy","th_century","spanish","empire","included","large","holdings","italy","luis","de","b","via","wrote","de_la","historia","cat","las","cantinas","lugares","gran","mero","de","losing","cantinas","places","ill","large","quantity","merchandise","de","n","c","real","academia","espa","madrid","editorial","cantina","features","one","de","wine","cellar","covered","face","wine","harvest","clad","wine","skin","sip","happy","exchange","whole","con","media","refers","adam","apple","thus","making","meaning","sip","quick","play","words","habit","custom","image","cantina","la","interiorjpg","thumb_interior","cantina","mexico_city","rural","mexico","cantina","traditionally","kind","bar","frequented","males","drinking","alcohol","eating","cantinas","also_known","places","people","gather","play","cards","table","games","cantinas","often","distinguished","signs","expressly","prohibit","entrance","women","minors","opposed","club","salon","de","dance","hall","salon","de","salon","plaza","mexico_city","intended","socializing","sexes","alsome","cantinas","explicitly","prohibit","entrance","dogs","men","police","military","uniform","traditional","restrictions","entry","cantinas","beginning","fade","away","istill","viewed","proper","ladies","seen","visiting","genuine","cantina","people","guide","mexico","carl","franz","avalon","travel","publishing","united_states","cantina","us","tavern","southwestern","mexican","serves","mexican","drinks","cantina","entered","american_english","spanish_language","southwest","united_states","withe","meaning","bar_establishment","western","saloon","see_also","bar_establishment_bar","juke_joint","list","public_house_topics","prison","commissary","public_house","tavern","externalinks_category_types","drinking_establishment_category","types","restaurants_category","spanish_language","category","wine","terminology"],"clean_bigrams":[["image","cantina"],["cantina","el"],["el","nivel"],["nivel","jpg"],["jpg","thumb"],["thumb","alt"],["alt","locals"],["locals","athe"],["athe","bar"],["nivel","cantina"],["cantina","locals"],["nivel","cantina"],["mexico","city"],["bar","establishment"],["establishment","bar"],["bar","popular"],["word","isimilar"],["canteen","place"],["place","canteen"],["italian","language"],["language","italian"],["italian","word"],["wine","cellar"],["cellar","winery"],["vault","architecture"],["architecture","vault"],["vault","cantina"],["american","heritage"],["heritage","dictionary"],["thenglish","language"],["language","fourth"],["fourth","edition"],["cantina","refers"],["ground","level"],["term","cantina"],["cantina","entered"],["french","language"],["used","originally"],["cantinas","image"],["del","piano"],["thumb","upright"],["del","piano"],["piano","tuscany"],["bar","located"],["train","station"],["establishment","located"],["food","andrinks"],["served","cantina"],["foreign","words"],["renaissance","italy"],["th","century"],["spanish","empire"],["empire","included"],["included","large"],["large","holdings"],["italy","luis"],["luis","de"],["de","b"],["b","via"],["via","wrote"],["de","la"],["la","historia"],["las","cantinas"],["gran","mero"],["mero","de"],["large","quantity"],["c","real"],["real","academia"],["academia","espa"],["madrid","editorial"],["cantina","features"],["wine","cellar"],["cellar","covered"],["wine","harvest"],["harvest","clad"],["wine","skin"],["con","media"],["apple","thus"],["thus","making"],["words","habit"],["habit","custom"],["image","cantina"],["cantina","la"],["interiorjpg","thumb"],["thumb","interior"],["mexico","city"],["rural","mexico"],["cantina","traditionally"],["bar","frequented"],["drinking","alcohol"],["also","known"],["people","gather"],["table","games"],["games","cantinas"],["expressly","prohibit"],["prohibit","entrance"],["club","salon"],["salon","de"],["dance","hall"],["salon","de"],["mexico","city"],["sexes","alsome"],["alsome","cantinas"],["cantinas","explicitly"],["explicitly","prohibit"],["prohibit","entrance"],["military","uniform"],["traditional","restrictions"],["fade","away"],["away","however"],["many","areas"],["istill","viewed"],["proper","ladies"],["seen","visiting"],["genuine","cantina"],["mexico","carl"],["carl","franz"],["franz","avalon"],["avalon","travel"],["travel","publishing"],["publishing","united"],["united","states"],["mexican","drinks"],["cantina","entered"],["entered","american"],["american","english"],["spanish","language"],["southwest","united"],["united","states"],["states","withe"],["withe","meaning"],["bar","establishment"],["western","saloon"],["saloon","see"],["see","also"],["also","bar"],["bar","establishment"],["establishment","bar"],["bar","juke"],["juke","joint"],["joint","list"],["public","house"],["house","topics"],["topics","prison"],["prison","commissary"],["commissary","public"],["public","house"],["house","tavern"],["tavern","externalinks"],["externalinks","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","types"],["restaurants","category"],["category","spanish"],["spanish","language"],["language","category"],["category","wine"],["wine","terminology"]],"all_collocations":["image cantina","cantina el","el nivel","nivel jpg","thumb alt","alt locals","locals athe","athe bar","nivel cantina","cantina locals","nivel cantina","mexico city","bar establishment","establishment bar","bar popular","word isimilar","canteen place","place canteen","italian language","language italian","italian word","wine cellar","cellar winery","vault architecture","architecture vault","vault cantina","american heritage","heritage dictionary","thenglish language","language fourth","fourth edition","cantina refers","ground level","term cantina","cantina entered","french language","used originally","cantinas image","del piano","del piano","piano tuscany","bar located","train station","establishment located","food andrinks","served cantina","foreign words","renaissance italy","th century","spanish empire","empire included","included large","large holdings","italy luis","luis de","de b","b via","via wrote","de la","la historia","las cantinas","gran mero","mero de","large quantity","c real","real academia","academia espa","madrid editorial","cantina features","wine cellar","cellar covered","wine harvest","harvest clad","wine skin","con media","apple thus","thus making","words habit","habit custom","image cantina","cantina la","interiorjpg thumb","thumb interior","mexico city","rural mexico","cantina traditionally","bar frequented","drinking alcohol","also known","people gather","table games","games cantinas","expressly prohibit","prohibit entrance","club salon","salon de","dance hall","salon de","mexico city","sexes alsome","alsome cantinas","cantinas explicitly","explicitly prohibit","prohibit entrance","military uniform","traditional restrictions","fade away","away however","many areas","istill viewed","proper ladies","seen visiting","genuine cantina","mexico carl","carl franz","franz avalon","avalon travel","travel publishing","publishing united","united states","mexican drinks","cantina entered","entered american","american english","spanish language","southwest united","united states","states withe","withe meaning","bar establishment","western saloon","saloon see","see also","also bar","bar establishment","establishment bar","bar juke","juke joint","joint list","public house","house topics","topics prison","prison commissary","commissary public","public house","house tavern","tavern externalinks","externalinks category","category types","drinking establishment","establishment category","category types","restaurants category","category spanish","spanish language","language category","category wine","wine terminology"],"new_description":"image cantina el nivel jpg thumb_alt locals athe bar nivel cantina locals nivel cantina mexico_city cantina type bar_establishment_bar popular mexico spain word isimilar etymology canteen place canteen derived italian language italian word wine cellar winery vault architecture vault cantina american heritage dictionary thenglish_language fourth_edition italy cantina refers room ground level wine productsuch stored term cantina entered french_language used originally refer shop types cantinas image del piano per thumb upright del piano tuscany spain cantina bar_located train station establishment located_near workplace food_andrinks served cantina one foreign words entered renaissance italy th_century spanish empire included large holdings italy luis de b via wrote de_la historia cat las cantinas lugares gran mero de losing cantinas places ill large quantity merchandise de n c real academia espa madrid editorial cantina features one de wine cellar covered face wine harvest clad wine skin sip happy exchange whole con media refers adam apple thus making meaning sip quick play words habit custom image cantina la interiorjpg thumb_interior cantina mexico_city rural mexico cantina traditionally kind bar frequented males drinking alcohol eating cantinas also_known places people gather play cards table games cantinas often distinguished signs expressly prohibit entrance women minors opposed club salon de dance hall salon de salon plaza mexico_city intended socializing sexes alsome cantinas explicitly prohibit entrance dogs men police military uniform traditional restrictions entry cantinas beginning fade away however_many_areas istill viewed proper ladies seen visiting genuine cantina people guide mexico carl franz avalon travel publishing united_states cantina us tavern southwestern mexican serves mexican drinks cantina entered american_english spanish_language southwest united_states withe meaning bar_establishment western saloon see_also bar_establishment_bar juke_joint list public_house_topics prison commissary public_house tavern externalinks_category_types drinking_establishment_category types restaurants_category spanish_language category wine terminology"},{"title":"Capital Region Tourism","description":"capital region tourism is a tourism partnership in wales which aims to promote tourism in the south east wales cardiff capital region crt is based athe university of wales institute cardiff in the penylan area of cardiff is the most popularea in wales for tourists with million visitors in and provides full time jobs in the sector the partnership was established in to serve tourism businesses in south east wales by investing in tourism in the region crt is one ofouregional partnerships across wales initiated by visit wales withe aim of receiving devolved resources and responsibilities for many aspects of tourismarketing andevelopmenthe other partnershipsouth west wales mid wales and north wales area served capital region tourism serves the local authority areas of blaenau gwent bridgend caerphilly cardiff merthyr tydfil monmouthshire newport wales newport rhondda cynon taf torfaen and vale of glamorgan crt also works with brecon beacons tourism the stakeholders partners and key groups of the partnership include cardiff co ttfw tourism training forum for wales wta wales tourism alliance wlga welsh local government association swap southern wales attractions partnership department of enterprise innovation and networks national assembly for wales wava welsh association of visitor attractions wasco welsh association of self catering operators wales official tourist guides association visit cardiff visit wales the cultural and environmental organisations it works with include countryside council for wales arts council of wales welsh sports council national museum galleries of wales herian audiences wales churches tourism network wales and cynon culture category tourism in wales category organisations based in cardiff category tourism agencies category tourism organisations in the united kingdom","main_words":["capital","region","tourism","tourism_partnership","wales","aims","promote_tourism","south_east","wales","cardiff","capital","region","based","athe_university","wales","institute","cardiff","area","cardiff","wales","tourists","million_visitors","provides","full_time","jobs","sector","partnership","established","serve","tourism_businesses","south_east","wales","investing","tourism_region","one","partnerships","across","wales","initiated","visit_wales","withe_aim","receiving","devolved","resources","responsibilities","many","aspects","tourismarketing","andevelopmenthe","west","wales","mid","wales","north","wales","area_served","capital","region","tourism","serves","local","authority","areas","cardiff","newport","wales","newport","vale","also","works","tourism","stakeholders","partners","key","groups","partnership","include","cardiff","tourism","training","forum","wales","wales","tourism","alliance","welsh","local_government","association","swap","southern","wales","attractions","partnership","department","enterprise","innovation","networks","national","assembly","wales","welsh","association","visitor_attractions","welsh","association","self_catering","operators","wales","official","tourist_guides","association","visit","cardiff","visit_wales","cultural","environmental","organisations","works","include","countryside","council","wales","arts","council","wales","welsh","sports","council","national_museum","galleries","wales","audiences","wales","churches","tourism","network","wales","wales","category_organisations_based","cardiff","category_tourism","agencies_category_tourism","organisations","united_kingdom"],"clean_bigrams":[["capital","region"],["region","tourism"],["tourism","partnership"],["promote","tourism"],["south","east"],["east","wales"],["wales","cardiff"],["cardiff","capital"],["capital","region"],["based","athe"],["athe","university"],["wales","institute"],["institute","cardiff"],["million","visitors"],["provides","full"],["full","time"],["time","jobs"],["serve","tourism"],["tourism","businesses"],["south","east"],["east","wales"],["partnerships","across"],["across","wales"],["wales","initiated"],["visit","wales"],["wales","withe"],["withe","aim"],["receiving","devolved"],["devolved","resources"],["many","aspects"],["tourismarketing","andevelopmenthe"],["west","wales"],["wales","mid"],["mid","wales"],["north","wales"],["wales","area"],["area","served"],["served","capital"],["capital","region"],["region","tourism"],["tourism","serves"],["local","authority"],["authority","areas"],["newport","wales"],["wales","newport"],["also","works"],["stakeholders","partners"],["key","groups"],["partnership","include"],["include","cardiff"],["tourism","training"],["training","forum"],["wales","tourism"],["tourism","alliance"],["welsh","local"],["local","government"],["government","association"],["association","swap"],["swap","southern"],["southern","wales"],["wales","attractions"],["attractions","partnership"],["partnership","department"],["enterprise","innovation"],["networks","national"],["national","assembly"],["wales","welsh"],["welsh","association"],["visitor","attractions"],["welsh","association"],["self","catering"],["catering","operators"],["operators","wales"],["wales","official"],["official","tourist"],["tourist","guides"],["guides","association"],["association","visit"],["visit","cardiff"],["cardiff","visit"],["visit","wales"],["environmental","organisations"],["include","countryside"],["countryside","council"],["wales","arts"],["arts","council"],["wales","welsh"],["welsh","sports"],["sports","council"],["council","national"],["national","museum"],["museum","galleries"],["audiences","wales"],["wales","churches"],["churches","tourism"],["tourism","network"],["network","wales"],["culture","category"],["category","tourism"],["wales","category"],["category","organisations"],["organisations","based"],["cardiff","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["tourism","organisations"],["united","kingdom"]],"all_collocations":["capital region","region tourism","tourism partnership","promote tourism","south east","east wales","wales cardiff","cardiff capital","capital region","based athe","athe university","wales institute","institute cardiff","million visitors","provides full","full time","time jobs","serve tourism","tourism businesses","south east","east wales","partnerships across","across wales","wales initiated","visit wales","wales withe","withe aim","receiving devolved","devolved resources","many aspects","tourismarketing andevelopmenthe","west wales","wales mid","mid wales","north wales","wales area","area served","served capital","capital region","region tourism","tourism serves","local authority","authority areas","newport wales","wales newport","also works","stakeholders partners","key groups","partnership include","include cardiff","tourism training","training forum","wales tourism","tourism alliance","welsh local","local government","government association","association swap","swap southern","southern wales","wales attractions","attractions partnership","partnership department","enterprise innovation","networks national","national assembly","wales welsh","welsh association","visitor attractions","welsh association","self catering","catering operators","operators wales","wales official","official tourist","tourist guides","guides association","association visit","visit cardiff","cardiff visit","visit wales","environmental organisations","include countryside","countryside council","wales arts","arts council","wales welsh","welsh sports","sports council","council national","national museum","museum galleries","audiences wales","wales churches","churches tourism","tourism network","network wales","culture category","category tourism","wales category","category organisations","organisations based","cardiff category","category tourism","tourism agencies","agencies category","category tourism","tourism organisations","united kingdom"],"new_description":"capital region tourism tourism_partnership wales aims promote_tourism south_east wales cardiff capital region based athe_university wales institute cardiff area cardiff wales tourists million_visitors provides full_time jobs sector partnership established serve tourism_businesses south_east wales investing tourism_region one partnerships across wales initiated visit_wales withe_aim receiving devolved resources responsibilities many aspects tourismarketing andevelopmenthe west wales mid wales north wales area_served capital region tourism serves local authority areas cardiff newport wales newport vale also works tourism stakeholders partners key groups partnership include cardiff tourism training forum wales wales tourism alliance welsh local_government association swap southern wales attractions partnership department enterprise innovation networks national assembly wales welsh association visitor_attractions welsh association self_catering operators wales official tourist_guides association visit cardiff visit_wales cultural environmental organisations works include countryside council wales arts council wales welsh sports council national_museum galleries wales audiences wales churches tourism network wales culture_category_tourism wales category_organisations_based cardiff category_tourism agencies_category_tourism organisations united_kingdom"},{"title":"Caravan (magazine)","description":"issn oclcaravan magazine is a uk monthly consumer magazine for the touring travel trailer caravan community it was britain s first caravanning magazine offering advice and tips on every aspect of the hobby every monthe magazine features touring and travel articles for the uk and europe new gadgets and products withe caravan lottery giveaway show and event news reviews and feedback with reader content written by caravanners for caravanners the magazine publishes advice on owning a caravan from buying a towcar to choosing the rightowing mirrors awnings gas bottles and barbecues history caravan magazine originally called the caravand trailer was founded in by f l m harris and produced from offices in colney heath near st albans it was the caravan club s official magazine in the s history of the caravan club thearlyears national motor museum beaulieu retrieved january and by caravan magazine the national caravan council and the caravan club all shared the same large house in purley south london by the first issue of en route the caravan club s own magazine had been published and caravan magazine now part of link house magazines moved to new premises in croydon in the late s ipc media took over link house magazines and the ipc inspire division of ipc media began publication of caravan the magazine underwent a redesign in june and as a result increased its year on year circulation in by making ithe fastest growing magazine in its division previous editor victoria bentley was the first woman to edithe title in its year history warners groupublishing bought caravan magazine from ipc media in to join its portfoliof outdoor leisure magazinesuch as mmm which motorhome and camping magazine theditorial team includes managing editor john sootheran digital editor ben hackney williams associateditor val chapman contributors and industry experts appearing in the magazine have included mike cazalet mark sutcliffe andrew ditton john chapman lindsay porter john wickersham nick harding natalie cumming and stuart craig see also caravan club externalinks category british monthly magazines category magazinestablished in category recreational vehicles category tourismagazines","main_words":["issn","magazine","uk","monthly","consumer","magazine","touring","travel","trailer","caravan","community","britain","first","caravanning","magazine","offering","advice","tips","every","aspect","hobby","every","monthe","magazine","features","touring","travel","articles","uk","europe","withe","caravan","lottery","show","event","news","reviews","feedback","reader","content","written","caravanners","caravanners","magazine","publishes","advice","owning","caravan","buying","choosing","mirrors","gas","bottles","history","caravan","magazine","originally_called","trailer","founded","f","l","harris","produced","offices","heath","near","st_albans","caravan","club","official","magazine","history","caravan","club","thearlyears","national","motor","museum","retrieved_january","caravan","magazine","national","caravan","council","caravan","club","shared","large","house","south","london","first_issue","route","caravan","club","magazine_published","caravan","magazine","part","link","house","magazines","moved","new","premises","late","ipc","media","took","link","house","magazines","ipc","inspire","division","ipc","media","began","publication","caravan","magazine","underwent","redesign","june","result","increased","year","year","circulation","making_ithe","fastest_growing","magazine","division","previous","editor","victoria","bentley","first","woman","title","year","history","groupublishing","bought","caravan","magazine","ipc","media","join","portfoliof","outdoor","leisure","motorhome","camping","magazine","theditorial","team","includes","managing_editor","john","digital","editor","ben","hackney","williams","val","chapman","contributors","industry","experts","appearing","magazine","included","mike","mark","andrew","lindsay","porter","john","nick","harding","stuart","craig","see_also","caravan","club","externalinks_category","british","monthly_magazines_category_magazinestablished","category","recreational"],"clean_bigrams":[["uk","monthly"],["monthly","consumer"],["consumer","magazine"],["touring","travel"],["travel","trailer"],["trailer","caravan"],["caravan","community"],["first","caravanning"],["caravanning","magazine"],["magazine","offering"],["offering","advice"],["every","aspect"],["hobby","every"],["every","monthe"],["monthe","magazine"],["magazine","features"],["features","touring"],["touring","travel"],["travel","articles"],["europe","new"],["products","withe"],["withe","caravan"],["caravan","lottery"],["event","news"],["news","reviews"],["reader","content"],["content","written"],["magazine","publishes"],["publishes","advice"],["gas","bottles"],["history","caravan"],["caravan","magazine"],["magazine","originally"],["originally","called"],["f","l"],["heath","near"],["near","st"],["st","albans"],["caravan","club"],["official","magazine"],["history","caravan"],["caravan","club"],["club","thearlyears"],["thearlyears","national"],["national","motor"],["motor","museum"],["retrieved","january"],["caravan","magazine"],["national","caravan"],["caravan","council"],["caravan","club"],["large","house"],["south","london"],["first","issue"],["caravan","club"],["caravan","magazine"],["link","house"],["house","magazines"],["magazines","moved"],["new","premises"],["ipc","media"],["media","took"],["link","house"],["house","magazines"],["ipc","inspire"],["inspire","division"],["ipc","media"],["media","began"],["began","publication"],["caravan","magazine"],["magazine","underwent"],["result","increased"],["year","circulation"],["making","ithe"],["ithe","fastest"],["fastest","growing"],["growing","magazine"],["division","previous"],["previous","editor"],["editor","victoria"],["victoria","bentley"],["first","woman"],["year","history"],["groupublishing","bought"],["bought","caravan"],["caravan","magazine"],["ipc","media"],["portfoliof","outdoor"],["outdoor","leisure"],["camping","magazine"],["magazine","theditorial"],["theditorial","team"],["team","includes"],["includes","managing"],["managing","editor"],["editor","john"],["digital","editor"],["editor","ben"],["ben","hackney"],["hackney","williams"],["val","chapman"],["chapman","contributors"],["industry","experts"],["experts","appearing"],["included","mike"],["john","chapman"],["chapman","lindsay"],["lindsay","porter"],["porter","john"],["nick","harding"],["stuart","craig"],["craig","see"],["see","also"],["also","caravan"],["caravan","club"],["club","externalinks"],["externalinks","category"],["category","british"],["british","monthly"],["monthly","magazines"],["magazines","category"],["category","magazinestablished"],["category","recreational"],["recreational","vehicles"],["vehicles","category"],["category","tourismagazines"]],"all_collocations":["uk monthly","monthly consumer","consumer magazine","touring travel","travel trailer","trailer caravan","caravan community","first caravanning","caravanning magazine","magazine offering","offering advice","every aspect","hobby every","every monthe","monthe magazine","magazine features","features touring","touring travel","travel articles","europe new","products withe","withe caravan","caravan lottery","event news","news reviews","reader content","content written","magazine publishes","publishes advice","gas bottles","history caravan","caravan magazine","magazine originally","originally called","f l","heath near","near st","st albans","caravan club","official magazine","history caravan","caravan club","club thearlyears","thearlyears national","national motor","motor museum","retrieved january","caravan magazine","national caravan","caravan council","caravan club","large house","south london","first issue","caravan club","caravan magazine","link house","house magazines","magazines moved","new premises","ipc media","media took","link house","house magazines","ipc inspire","inspire division","ipc media","media began","began publication","caravan magazine","magazine underwent","result increased","year circulation","making ithe","ithe fastest","fastest growing","growing magazine","division previous","previous editor","editor victoria","victoria bentley","first woman","year history","groupublishing bought","bought caravan","caravan magazine","ipc media","portfoliof outdoor","outdoor leisure","camping magazine","magazine theditorial","theditorial team","team includes","includes managing","managing editor","editor john","digital editor","editor ben","ben hackney","hackney williams","val chapman","chapman contributors","industry experts","experts appearing","included mike","john chapman","chapman lindsay","lindsay porter","porter john","nick harding","stuart craig","craig see","see also","also caravan","caravan club","club externalinks","externalinks category","category british","british monthly","monthly magazines","magazines category","category magazinestablished","category recreational","recreational vehicles","vehicles category","category tourismagazines"],"new_description":"issn magazine uk monthly consumer magazine touring travel trailer caravan community britain first caravanning magazine offering advice tips every aspect hobby every monthe magazine features touring travel articles uk europe new_products withe caravan lottery show event news reviews feedback reader content written caravanners caravanners magazine publishes advice owning caravan buying choosing mirrors gas bottles history caravan magazine originally_called trailer founded f l harris produced offices heath near st_albans caravan club official magazine history caravan club thearlyears national motor museum retrieved_january caravan magazine national caravan council caravan club shared large house south london first_issue route caravan club magazine_published caravan magazine part link house magazines moved new premises late ipc media took link house magazines ipc inspire division ipc media began publication caravan magazine underwent redesign june result increased year year circulation making_ithe fastest_growing magazine division previous editor victoria bentley first woman title year history groupublishing bought caravan magazine ipc media join portfoliof outdoor leisure motorhome camping magazine theditorial team includes managing_editor john digital editor ben hackney williams val chapman contributors industry experts appearing magazine included mike mark andrew john_chapman lindsay porter john nick harding stuart craig see_also caravan club externalinks_category british monthly_magazines_category_magazinestablished category recreational vehicles_category_tourismagazines"},{"title":"Caribbean Beat","description":"caribbean beat is a bimonthly magazine published in port of spain trinidad and tobago trinidad covering the arts culture and society of the caribbean with a focus on the region s english speaking territories it is distributed in flight by caribbean airlines cal anne hilton the beat is back trinidad tobago newsday january formerly bwia west indies airways british west indies airways bwiand is additionally available at select retail outlets in cal destinations and also by subscription making it one of the region s most widely circulated magazines a maco is born trinidad tobago newsday december caribbean beat was launched in and is published by mediand editorial projects limited magazines team up with ttff trinidad tobago guardian october its first issue ran a cover story on martinique martiniquan filmmaker euzhan palcy the magazine has become known for its profiles and promotion of caribbean artists writers and other cultural figures and for in depth coverage of caribbean music festivals carolyn cooper t lit fest puts us to shame jamaica gleaner may sports environment and other phenomena regarded as the leading magazine on caribbeand west indian arts culture and society west indian literary journals on paper and online west indian literature selections caribbean beat marked its th issue inovember december and its th anniversary issue in march april yvonne baboolal caribbean beato be sold in storesmagazine marks th issue trinidad tobago guardian december caribbean beat magazine unveils th anniversary issue caribbean press releases march caribbean beat marks years with issue trinidad tobago guardian march past editors have included judy raymondonna benny skye hernandez and founding editor and publisher jeremy taylor writer jeremy taylor who remains a consulting editor its current chief editor is nicholas laughlin about us caribbean beat website nicholas laughlin s websitexternalinks caribbean beat official website publisher blog mepublishers media editorial projects ltdistributor caribbean airlines website category bi monthly magazines category caribbean airlines category caribbean literature category companies of trinidad and tobago category magazinestablished in category tourismagazines category media in trinidad and tobago category inflight magazines","main_words":["caribbean","beat","bimonthly","magazine_published","port","spain","trinidad","tobago","trinidad","covering","arts","culture","society","caribbean","focus","region","english_speaking","territories","distributed","flight","caribbean","airlines","cal","anne","hilton","beat","back","trinidad","tobago","january","formerly","west","indies","airways","british","west","indies","airways","additionally","available","select","retail","outlets","cal","destinations","also","subscription","making","one","region","widely","circulated","magazines","born","trinidad","tobago","december","caribbean","beat","launched","published","mediand","editorial","projects","limited","magazines","team","trinidad","tobago","guardian","october","first_issue","ran","cover","story","filmmaker","magazine","become","known","profiles","promotion","caribbean","artists","writers","cultural","figures","depth","coverage","caribbean","music_festivals","carolyn","cooper","lit","fest","puts","us","jamaica","may","sports","environment","phenomena","regarded","leading","magazine","caribbeand","west","indian","arts","culture","society","west","indian","literary","journals","paper","online","west","indian","literature","selections","caribbean","beat","marked","th","issue","inovember","december","th_anniversary","issue","march","april","caribbean","sold","marks","th","issue","trinidad","tobago","guardian","december","caribbean","beat","magazine","unveils","th_anniversary","issue","caribbean","press_releases","march","caribbean","beat","marks","years","issue","trinidad","tobago","guardian","march","past","editors","included","judy","skye","hernandez","founding","editor","publisher","jeremy","taylor","writer","jeremy","taylor","remains","consulting","editor","current","chief","editor","nicholas","laughlin","us","caribbean","beat","website","nicholas","laughlin","caribbean","beat","official_website","publisher","blog","media","editorial","projects","caribbean","airlines","website_category","monthly_magazines_category","caribbean","airlines","category","caribbean","trinidad","tobago","category_magazinestablished","category_tourismagazines","category_media","trinidad","tobago","category"],"clean_bigrams":[["caribbean","beat"],["bimonthly","magazine"],["magazine","published"],["spain","trinidad"],["trinidad","tobago"],["tobago","trinidad"],["trinidad","covering"],["arts","culture"],["english","speaking"],["speaking","territories"],["caribbean","airlines"],["airlines","cal"],["cal","anne"],["anne","hilton"],["back","trinidad"],["trinidad","tobago"],["january","formerly"],["west","indies"],["indies","airways"],["airways","british"],["british","west"],["west","indies"],["indies","airways"],["additionally","available"],["select","retail"],["retail","outlets"],["cal","destinations"],["subscription","making"],["widely","circulated"],["circulated","magazines"],["born","trinidad"],["trinidad","tobago"],["december","caribbean"],["caribbean","beat"],["mediand","editorial"],["editorial","projects"],["projects","limited"],["limited","magazines"],["magazines","team"],["trinidad","tobago"],["tobago","guardian"],["guardian","october"],["first","issue"],["issue","ran"],["cover","story"],["become","known"],["caribbean","artists"],["artists","writers"],["cultural","figures"],["depth","coverage"],["caribbean","music"],["music","festivals"],["festivals","carolyn"],["carolyn","cooper"],["lit","fest"],["fest","puts"],["puts","us"],["may","sports"],["sports","environment"],["phenomena","regarded"],["leading","magazine"],["caribbeand","west"],["west","indian"],["indian","arts"],["arts","culture"],["society","west"],["west","indian"],["indian","literary"],["literary","journals"],["online","west"],["west","indian"],["indian","literature"],["literature","selections"],["selections","caribbean"],["caribbean","beat"],["beat","marked"],["th","issue"],["issue","inovember"],["inovember","december"],["th","anniversary"],["anniversary","issue"],["march","april"],["marks","th"],["th","issue"],["issue","trinidad"],["trinidad","tobago"],["tobago","guardian"],["guardian","december"],["december","caribbean"],["caribbean","beat"],["beat","magazine"],["magazine","unveils"],["unveils","th"],["th","anniversary"],["anniversary","issue"],["issue","caribbean"],["caribbean","press"],["press","releases"],["releases","march"],["march","caribbean"],["caribbean","beat"],["beat","marks"],["marks","years"],["issue","trinidad"],["trinidad","tobago"],["tobago","guardian"],["guardian","march"],["march","past"],["past","editors"],["included","judy"],["skye","hernandez"],["founding","editor"],["publisher","jeremy"],["jeremy","taylor"],["taylor","writer"],["writer","jeremy"],["jeremy","taylor"],["consulting","editor"],["current","chief"],["chief","editor"],["nicholas","laughlin"],["us","caribbean"],["caribbean","beat"],["beat","website"],["website","nicholas"],["nicholas","laughlin"],["caribbean","beat"],["beat","official"],["official","website"],["website","publisher"],["publisher","blog"],["media","editorial"],["editorial","projects"],["caribbean","airlines"],["airlines","website"],["website","category"],["monthly","magazines"],["magazines","category"],["category","caribbean"],["caribbean","airlines"],["airlines","category"],["category","caribbean"],["caribbean","literature"],["literature","category"],["category","companies"],["trinidad","tobago"],["tobago","category"],["category","magazinestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","media"],["trinidad","tobago"],["tobago","category"],["category","inflight"],["inflight","magazines"]],"all_collocations":["caribbean beat","bimonthly magazine","magazine published","spain trinidad","trinidad tobago","tobago trinidad","trinidad covering","arts culture","english speaking","speaking territories","caribbean airlines","airlines cal","cal anne","anne hilton","back trinidad","trinidad tobago","january formerly","west indies","indies airways","airways british","british west","west indies","indies airways","additionally available","select retail","retail outlets","cal destinations","subscription making","widely circulated","circulated magazines","born trinidad","trinidad tobago","december caribbean","caribbean beat","mediand editorial","editorial projects","projects limited","limited magazines","magazines team","trinidad tobago","tobago guardian","guardian october","first issue","issue ran","cover story","become known","caribbean artists","artists writers","cultural figures","depth coverage","caribbean music","music festivals","festivals carolyn","carolyn cooper","lit fest","fest puts","puts us","may sports","sports environment","phenomena regarded","leading magazine","caribbeand west","west indian","indian arts","arts culture","society west","west indian","indian literary","literary journals","online west","west indian","indian literature","literature selections","selections caribbean","caribbean beat","beat marked","th issue","issue inovember","inovember december","th anniversary","anniversary issue","march april","marks th","th issue","issue trinidad","trinidad tobago","tobago guardian","guardian december","december caribbean","caribbean beat","beat magazine","magazine unveils","unveils th","th anniversary","anniversary issue","issue caribbean","caribbean press","press releases","releases march","march caribbean","caribbean beat","beat marks","marks years","issue trinidad","trinidad tobago","tobago guardian","guardian march","march past","past editors","included judy","skye hernandez","founding editor","publisher jeremy","jeremy taylor","taylor writer","writer jeremy","jeremy taylor","consulting editor","current chief","chief editor","nicholas laughlin","us caribbean","caribbean beat","beat website","website nicholas","nicholas laughlin","caribbean beat","beat official","official website","website publisher","publisher blog","media editorial","editorial projects","caribbean airlines","airlines website","website category","monthly magazines","magazines category","category caribbean","caribbean airlines","airlines category","category caribbean","caribbean literature","literature category","category companies","trinidad tobago","tobago category","category magazinestablished","category tourismagazines","tourismagazines category","category media","trinidad tobago","tobago category","category inflight","inflight magazines"],"new_description":"caribbean beat bimonthly magazine_published port spain trinidad tobago trinidad covering arts culture society caribbean focus region english_speaking territories distributed flight caribbean airlines cal anne hilton beat back trinidad tobago january formerly west indies airways british west indies airways additionally available select retail outlets cal destinations also subscription making one region widely circulated magazines born trinidad tobago december caribbean beat launched published mediand editorial projects limited magazines team trinidad tobago guardian october first_issue ran cover story filmmaker magazine become known profiles promotion caribbean artists writers cultural figures depth coverage caribbean music_festivals carolyn cooper lit fest puts us jamaica may sports environment phenomena regarded leading magazine caribbeand west indian arts culture society west indian literary journals paper online west indian literature selections caribbean beat marked th issue inovember december th_anniversary issue march april caribbean sold marks th issue trinidad tobago guardian december caribbean beat magazine unveils th_anniversary issue caribbean press_releases march caribbean beat marks years issue trinidad tobago guardian march past editors included judy skye hernandez founding editor publisher jeremy taylor writer jeremy taylor remains consulting editor current chief editor nicholas laughlin us caribbean beat website nicholas laughlin caribbean beat official_website publisher blog media editorial projects caribbean airlines website_category monthly_magazines_category caribbean airlines category caribbean literature_category_companies trinidad tobago category_magazinestablished category_tourismagazines category_media trinidad tobago category inflight_magazines"},{"title":"Caribbean Tourism Organization","description":"file caribbean tourism organization bridgetown jpg px righthumb the caribbean tourism organization headquarters the caribbean tourism organization s main objective is the development of sustainable tourism for theconomic and social benefit of caribbean people the cto witheadquarters in barbados and offices inew york and london is the caribbean s tourism development agency its member countries and territories include the dutch english french and spanish as well as a myriad of private sector allied members the cto s vision is to position the caribbean as the most desirable yearound warm weather destination and its purpose is leading sustainable tourism one sea one voice one caribbean among other benefits the organization providespecialized support and technical assistance in sustainable tourism development marketing communications advocacy human resource development event planning and execution and research and information technology the cto in partnership withe caribbean hotel tourism association jointly and equally owns the caribbean tourism development company a marketing and business developmentity dedicated to promoting the caribbean brand worldwide cto s offices are located in the usa uk canadand barbados cto chapters are located in france germany the netherlands across the us and in the caribbean the cto was established in withe merger of the caribbean tourism association founded in and the caribbean tourism research andevelopment center founded in the body is primarily involved in the joint promotion and marketing of caribbean tourist destinations inorth americand europe mediagency the cto appointed the stars as its media planning and buying agency in member countries anguilantiguand barbuda bahamas barbados belize cuba dominica overseas department french overseas departments martinique saint martin grenada guyana haiti jamaica kingdom of the netherlands bonaire curao sint eustatiusint maarten saint kitts and nevisaint lucia saint vincent and the grenadines trinidad and tobago british overseas territories anguilla british virgin islands cayman islands montserraturks and caicos islands territories of the united states united states territories puerto rico us virgin islands venezuela cto region earned over us b from tourism the caribbean tourism organization pushes for a more sustainable tourism producto conference on sustainable tourism statement by the caribbean tourism organization externalinks caribbeantravelcom official tourism site of the caribbean onecaribbeanorg official tourism business website of the caribbean tourism organization caribbeanweekca highlights of toronto s annual caribbean week category tourism in the caribbean category organisations based in barbados category tourism agencies category organisations based in the caribbean","main_words":["file","caribbean_tourism","organization","jpg_px","righthumb","caribbean_tourism","organization","headquarters","caribbean_tourism","organization","main","objective","development","sustainable_tourism","theconomic","social","benefit","caribbean","people","cto","barbados","offices","inew_york","london","caribbean_tourism","development","agency","member_countries","territories","include","dutch","english","french","spanish","well","myriad","private_sector","allied","members","cto","vision","position","caribbean","desirable","yearound","warm","weather","destination","purpose","leading","sustainable_tourism","one","sea","one","voice","one","caribbean","among","benefits","organization","support","technical","assistance","sustainable_tourism_development","marketing","communications","advocacy","human_resource","development","event","planning","execution","research","information_technology","cto","partnership","withe","caribbean","hotel","tourism_association","jointly","equally","owns","caribbean_tourism","development","company","marketing","business","dedicated","promoting","caribbean","brand","worldwide","cto","offices","located","usa","uk","canadand","barbados","cto","chapters","located","france","germany","netherlands","across","us","caribbean","cto","established","withe","merger","caribbean_tourism","association","founded","caribbean_tourism","research_andevelopment","center","founded","body","primarily","involved","joint","promotion","marketing","caribbean","tourist_destinations","inorth_americand","europe","cto","appointed","stars","media","planning","buying","agency","member_countries","bahamas","barbados","belize","cuba","overseas","department","french","overseas","departments","saint","martin","grenada","haiti","jamaica","kingdom","netherlands","curao","saint","saint","vincent","trinidad","tobago","british","overseas","territories","british","virgin","islands","cayman_islands","islands","territories","united_states","united_states","territories","puerto_rico","us","virgin","islands","venezuela","cto","region","earned","us","b","tourism","caribbean_tourism","organization","sustainable_tourism","conference","sustainable_tourism","statement","caribbean_tourism","organization","externalinks_official","tourism","site","caribbean","website","caribbean_tourism","organization","highlights","toronto","annual","caribbean","week","category_tourism","caribbean","category_organisations_based","barbados","category_tourism","caribbean"],"clean_bigrams":[["file","caribbean"],["caribbean","tourism"],["tourism","organization"],["jpg","px"],["px","righthumb"],["caribbean","tourism"],["tourism","organization"],["organization","headquarters"],["caribbean","tourism"],["tourism","organization"],["main","objective"],["sustainable","tourism"],["social","benefit"],["caribbean","people"],["offices","inew"],["inew","york"],["caribbean","tourism"],["tourism","development"],["development","agency"],["member","countries"],["territories","include"],["dutch","english"],["english","french"],["private","sector"],["sector","allied"],["allied","members"],["desirable","yearound"],["yearound","warm"],["warm","weather"],["weather","destination"],["leading","sustainable"],["sustainable","tourism"],["tourism","one"],["one","sea"],["sea","one"],["one","voice"],["voice","one"],["one","caribbean"],["caribbean","among"],["technical","assistance"],["sustainable","tourism"],["tourism","development"],["development","marketing"],["marketing","communications"],["communications","advocacy"],["advocacy","human"],["human","resource"],["resource","development"],["development","event"],["event","planning"],["information","technology"],["partnership","withe"],["withe","caribbean"],["caribbean","hotel"],["hotel","tourism"],["tourism","association"],["association","jointly"],["equally","owns"],["caribbean","tourism"],["tourism","development"],["development","company"],["caribbean","brand"],["brand","worldwide"],["worldwide","cto"],["usa","uk"],["uk","canadand"],["canadand","barbados"],["barbados","cto"],["cto","chapters"],["france","germany"],["netherlands","across"],["withe","merger"],["caribbean","tourism"],["tourism","association"],["association","founded"],["caribbean","tourism"],["tourism","research"],["research","andevelopment"],["andevelopment","center"],["center","founded"],["primarily","involved"],["joint","promotion"],["caribbean","tourist"],["tourist","destinations"],["destinations","inorth"],["inorth","americand"],["americand","europe"],["cto","appointed"],["media","planning"],["buying","agency"],["member","countries"],["bahamas","barbados"],["barbados","belize"],["belize","cuba"],["overseas","department"],["department","french"],["french","overseas"],["overseas","departments"],["saint","martin"],["martin","grenada"],["haiti","jamaica"],["jamaica","kingdom"],["saint","vincent"],["tobago","british"],["british","overseas"],["overseas","territories"],["british","virgin"],["virgin","islands"],["islands","cayman"],["cayman","islands"],["islands","territories"],["united","states"],["states","united"],["united","states"],["states","territories"],["territories","puerto"],["puerto","rico"],["rico","us"],["us","virgin"],["virgin","islands"],["islands","venezuela"],["venezuela","cto"],["cto","region"],["region","earned"],["us","b"],["caribbean","tourism"],["tourism","organization"],["sustainable","tourism"],["sustainable","tourism"],["tourism","statement"],["caribbean","tourism"],["tourism","organization"],["organization","externalinks"],["official","tourism"],["tourism","site"],["official","tourism"],["tourism","business"],["business","website"],["caribbean","tourism"],["tourism","organization"],["annual","caribbean"],["caribbean","week"],["week","category"],["category","tourism"],["caribbean","category"],["category","organisations"],["organisations","based"],["barbados","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","organisations"],["organisations","based"]],"all_collocations":["file caribbean","caribbean tourism","tourism organization","jpg px","px righthumb","caribbean tourism","tourism organization","organization headquarters","caribbean tourism","tourism organization","main objective","sustainable tourism","social benefit","caribbean people","offices inew","inew york","caribbean tourism","tourism development","development agency","member countries","territories include","dutch english","english french","private sector","sector allied","allied members","desirable yearound","yearound warm","warm weather","weather destination","leading sustainable","sustainable tourism","tourism one","one sea","sea one","one voice","voice one","one caribbean","caribbean among","technical assistance","sustainable tourism","tourism development","development marketing","marketing communications","communications advocacy","advocacy human","human resource","resource development","development event","event planning","information technology","partnership withe","withe caribbean","caribbean hotel","hotel tourism","tourism association","association jointly","equally owns","caribbean tourism","tourism development","development company","caribbean brand","brand worldwide","worldwide cto","usa uk","uk canadand","canadand barbados","barbados cto","cto chapters","france germany","netherlands across","withe merger","caribbean tourism","tourism association","association founded","caribbean tourism","tourism research","research andevelopment","andevelopment center","center founded","primarily involved","joint promotion","caribbean tourist","tourist destinations","destinations inorth","inorth americand","americand europe","cto appointed","media planning","buying agency","member countries","bahamas barbados","barbados belize","belize cuba","overseas department","department french","french overseas","overseas departments","saint martin","martin grenada","haiti jamaica","jamaica kingdom","saint vincent","tobago british","british overseas","overseas territories","british virgin","virgin islands","islands cayman","cayman islands","islands territories","united states","states united","united states","states territories","territories puerto","puerto rico","rico us","us virgin","virgin islands","islands venezuela","venezuela cto","cto region","region earned","us b","caribbean tourism","tourism organization","sustainable tourism","sustainable tourism","tourism statement","caribbean tourism","tourism organization","organization externalinks","official tourism","tourism site","official tourism","tourism business","business website","caribbean tourism","tourism organization","annual caribbean","caribbean week","week category","category tourism","caribbean category","category organisations","organisations based","barbados category","category tourism","tourism agencies","agencies category","category organisations","organisations based"],"new_description":"file caribbean_tourism organization jpg_px righthumb caribbean_tourism organization headquarters caribbean_tourism organization main objective development sustainable_tourism theconomic social benefit caribbean people cto barbados offices inew_york london caribbean_tourism development agency member_countries territories include dutch english french spanish well myriad private_sector allied members cto vision position caribbean desirable yearound warm weather destination purpose leading sustainable_tourism one sea one voice one caribbean among benefits organization support technical assistance sustainable_tourism_development marketing communications advocacy human_resource development event planning execution research information_technology cto partnership withe caribbean hotel tourism_association jointly equally owns caribbean_tourism development company marketing business dedicated promoting caribbean brand worldwide cto offices located usa uk canadand barbados cto chapters located france germany netherlands across us caribbean cto established withe merger caribbean_tourism association founded caribbean_tourism research_andevelopment center founded body primarily involved joint promotion marketing caribbean tourist_destinations inorth_americand europe cto appointed stars media planning buying agency member_countries bahamas barbados belize cuba overseas department french overseas departments saint martin grenada haiti jamaica kingdom netherlands curao saint saint vincent trinidad tobago british overseas territories british virgin islands cayman_islands islands territories united_states united_states territories puerto_rico us virgin islands venezuela cto region earned us b tourism caribbean_tourism organization sustainable_tourism conference sustainable_tourism statement caribbean_tourism organization externalinks_official tourism site caribbean official_tourism_business website caribbean_tourism organization highlights toronto annual caribbean week category_tourism caribbean category_organisations_based barbados category_tourism agencies_category_organisations_based caribbean"},{"title":"Caribbean Travel & Life","description":"issn oclcaribbean travelife was dedicated to the caribbean region and was named the official consumer publication of the caribbean tourism organization and the caribbean hotel association travel daily news the magazine wove together the geographical and cultural threads that makeach of the region s destinations distinctive and presented a range of essential service information the various aspects of travel resorts dining and activities caribbean travelife was published by bonnier corporation predecessor world publications bought caribbean travelife in world publications buys caribbean travelife magazine onovember bonnier announced that it would close caribbean travelife withe january february edition as its final issue in bonnier would fold the magazine and its contento itsister islands bonnier shuts caribbean travelife adweek novemberetrieved february externalinks caribbean travelife category american lifestyle magazines category bonnier group category defunct magazines of the united states category eightimes annually magazines category local interest magazines category magazinestablished in category magazines disestablished in category magazines published in florida category tourismagazines","main_words":["issn","travelife","dedicated","caribbean","region","named","official","consumer","publication","caribbean_tourism","organization","caribbean","hotel","association","travel","daily_news","magazine","together","geographical","cultural","region","destinations","distinctive","presented","range","essential","service","information","various","aspects","travel","resorts","dining","activities","caribbean","travelife","published","bonnier","corporation","predecessor","world","publications","bought","caribbean","travelife","world","publications","buys","caribbean","travelife","magazine","onovember","bonnier","announced","would","close","caribbean","travelife","withe","january","february","edition","final","issue","bonnier","would","fold","magazine","contento","islands","bonnier","shuts","caribbean","travelife","novemberetrieved","february","externalinks","caribbean","travelife","category_american","lifestyle_magazines_category","bonnier","group","category_defunct","magazines","united_states","category","annually","magazines_category_local_interest_magazines","category_magazinestablished","category_magazines","disestablished","category_magazines_published"],"clean_bigrams":[["caribbean","region"],["official","consumer"],["consumer","publication"],["caribbean","tourism"],["tourism","organization"],["caribbean","hotel"],["hotel","association"],["association","travel"],["travel","daily"],["daily","news"],["destinations","distinctive"],["essential","service"],["service","information"],["various","aspects"],["travel","resorts"],["resorts","dining"],["activities","caribbean"],["caribbean","travelife"],["bonnier","corporation"],["corporation","predecessor"],["predecessor","world"],["world","publications"],["publications","bought"],["bought","caribbean"],["caribbean","travelife"],["world","publications"],["publications","buys"],["buys","caribbean"],["caribbean","travelife"],["travelife","magazine"],["magazine","onovember"],["onovember","bonnier"],["bonnier","announced"],["would","close"],["close","caribbean"],["caribbean","travelife"],["travelife","withe"],["withe","january"],["january","february"],["february","edition"],["final","issue"],["bonnier","would"],["would","fold"],["islands","bonnier"],["bonnier","shuts"],["shuts","caribbean"],["caribbean","travelife"],["novemberetrieved","february"],["february","externalinks"],["externalinks","caribbean"],["caribbean","travelife"],["travelife","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","bonnier"],["bonnier","group"],["group","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["annually","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","magazines"],["magazines","published"],["florida","category"],["category","tourismagazines"]],"all_collocations":["caribbean region","official consumer","consumer publication","caribbean tourism","tourism organization","caribbean hotel","hotel association","association travel","travel daily","daily news","destinations distinctive","essential service","service information","various aspects","travel resorts","resorts dining","activities caribbean","caribbean travelife","bonnier corporation","corporation predecessor","predecessor world","world publications","publications bought","bought caribbean","caribbean travelife","world publications","publications buys","buys caribbean","caribbean travelife","travelife magazine","magazine onovember","onovember bonnier","bonnier announced","would close","close caribbean","caribbean travelife","travelife withe","withe january","january february","february edition","final issue","bonnier would","would fold","islands bonnier","bonnier shuts","shuts caribbean","caribbean travelife","novemberetrieved february","february externalinks","externalinks caribbean","caribbean travelife","travelife category","category american","american lifestyle","lifestyle magazines","magazines category","category bonnier","bonnier group","group category","category defunct","defunct magazines","united states","states category","annually magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines disestablished","category magazines","magazines published","florida category","category tourismagazines"],"new_description":"issn travelife dedicated caribbean region named official consumer publication caribbean_tourism organization caribbean hotel association travel daily_news magazine together geographical cultural region destinations distinctive presented range essential service information various aspects travel resorts dining activities caribbean travelife published bonnier corporation predecessor world publications bought caribbean travelife world publications buys caribbean travelife magazine onovember bonnier announced would close caribbean travelife withe january february edition final issue bonnier would fold magazine contento islands bonnier shuts caribbean travelife novemberetrieved february externalinks caribbean travelife category_american lifestyle_magazines_category bonnier group category_defunct magazines united_states category annually magazines_category_local_interest_magazines category_magazinestablished category_magazines disestablished category_magazines_published florida_category_tourismagazines"},{"title":"Carlsbad, New Mexico","description":"new mexico subdivisionameddy county new mexico eddy county governmentype mayor council government leader title mayor leader name dale janway leader title city councileader name leader title new mexico house of representativestate house leader name leader title new mexico state senate state senate leader name leader title united states house of representatives us house leader namestablished title founded establishedate as eddy established title municipal corporation incorporated establishedate as eddy as carlsbad area magnitude area total km area land km area water km area total sq mi area land sq mi area water sq mi elevation m elevation ft coordinates population demonym carlsbadian population as of united states census populationote population total population density km auto timezone mountain standard time zone mst utc offsetimezone dst mountain daylightime mdt utc offset dst website postal code type zip code s postal code area code area code blank name federal information processing standard fips code blank info blank name geographic names information system gnis feature id blank info blank name primary airport blank info cavern city air terminal cnm footnotes pop est as of pop est footnotes population est population density sq mi auto unit pref imperial carlsbad is a city in and the county seat of eddy county new mexico eddy county new mexico united states as of the united states census the city population was carlsbad is centered athe intersection of us route us routes us route and us route and is the principal city of the carlsbad artesia micropolitan statistical area whichas a total population of located in the southeastern part of new mexico carlsbad straddles the pecos river and sits atheastern edge of the guadalupe mountains carlsbad is a hub for potash mining petroleum production and tourism carlsbad caverns national park is located southwest of the city and guadalupe mountains national park liesouthwest across the texas border the lincolnational forest is to the northwest of town history development of southeasternew mexico in the late th century was fueled by the arrival of colonies of immigrants from england switzerland france and italy located along the banks of the pecos river carlsbad was originally christened the town of eddy on september and organized as a municipal corporation in the settlement bore the name of charles b eddy cowner of theddy bissellivestock company history of carlsbad withe commercial development of local mineral springs near the flume for medicinal qualities the town later voted to change its name to carlsbad after the famous european spa carlsbad bohemia now karlovy vary czech republic on march the growing town surpassed a population of allowing then governor of new mexico washington ellsworth lindsey to proclaim carlsbad a city most of carlsbad s development was due to irrigation water local cattleman recognized the value of diverting water from the pecos river to the grazing lands on eddy s halagueno ranch many construction projects were undertaken to establish an irrigation system within the town the avalon dam was constructed upstream of town and canals diverted the water intown conflict arose when the canals methe river downstream as a resulthe pecos river flume was built first out of wood and later concrete the flume is often titled the only place where a river crosses itself key to the growth of the area were special excursion trains that brought visitors from theast at reduced fares before the railroad was completed from pecos texas pecos in travel parties met athe railroad station in toyah texas and were driven by buggy over a rough dusty road to thismall but growing settlement on the banks of the pecos river most of thearly construction in carlsbad was completed with locally manufactured brick s the bricks were quite soft and of poor quality the former first national bank building athe corner of canal and fox streets is one of the few remaining buildings constructed withe local brick the re discovery of carlsbad caverns then known as bat cave by local cowboys in and the subsequent establishment of carlsbad caverns national park on may gained the town of carlsbad substantial recognition in potash was discovered near carlsbad and for manyears carlsbadominated the american potash market about carlsbad new mexico following the decline of the potash market in the s the residents and leaders of carlsbad lobbied for thestablishment of the waste isolation pilot plant wipp a site where low level nuclear waste would be stored thousands ofeet underground in salt beds congress authorized the wipproject in and construction began in the united states department of energy doe carlsbad area office opened in and the first waste shipment arrived in currently carlsbad has experienced a boom the city is leading in the production of oil and natural gases across thentire area causing an increase in themployment rate due to this increase families and individuals have begun to migrate to carlsbad geography and climate carlsbad is located near the center of eddy county at an elevation of carlsbad isituated in the northern reaches of the chihuahuan desert ecoregion in the lower pecos river valley via us it is north to artesia new mexico artesiand south to pecos texas us routes and lead northeasto hobbs new mexico hobbs and southwesto el paso texas el paso according to the united states census bureau carlsbad has a total area of the city is land or is water most of the water within city limits consists of the pecos river and lake carlsbad recreation area the river flows into the northern part of carlsbadownstream from lake avalon and brantley lake passes east of downtown and exits in the southeast dark canyon draw also runs through the southern part of town but only drains during heavy rainfalldark canyon drawatereport united states geological survey retrieved september carlsbad is part of the interior west climate zonestratum climate zones united states forest service retrieved march it is classified asemi arid k ppen climate classification k ppen bsk meaning average annual precipitation is less than evapotranspiration potential evapotranspiration potential evapotranspiration but more than half a moderate amount of rain falls each year withe maximum occurring during september tornadoes have been reported in eddy county since date august footnote us decennial census as of the census of there are people households and families residing in the city the population density is mi km there are housing units at an average density of per square mile km the racial makeup of the city was white american white non hispanic african american black or african americanative american asian american asian pacific islander american pacific islander from race and ethnicity in the united states census race otheraces multiracial american multiracial twor more races of the population were hispanic and latino americans hispanics or latinos of any race there are households out of whichave children under the age of living withem are married couples living together have a female householder with no husband present and are non families of all households are made up of individuals and have someone living alone who is years of age or older the average household size is and the average family size is in the city the population ispread out with under the age ofrom to from to from to and who are years of age or older the median age is years for every females there are males for every females age and over there are males the median income for a household in the city is and the median income for a family is males have a median income of versus for females the per capita income for the city is of the population and ofamilies are below the poverty line out of the total population of those under the age of and of those and older are living below the poverty line the city of carlsbad has a mayor council government mayor council form of government voters elect bothe mayor and theight members of the city council two for each ward who pass laws and make policy after the first meeting of the city council once newly elected council members are seated the council elects a mayor pro tempore who serves as mayor in absence of thelected mayor class infobox style font size border px solid float right margin left em width px style background f f colspan largest employers in carlsbad labor analysistatistics and economic research style text align left urs corporation washington tru solutions llc style text align left carlsbad municipal schoolstyle text align lefthe mosaicompany mosaic potash carlsbad style text align left constructors inc style text align left carlsbad medical center style text align left intrepid potash style text align left landsun homes inc style text align left lowe style text align left new mexico state university new mexico state university carlsbad style text align left lakeview christian home theconomy of the carlsbad area is based primarily on the mineral extraction sector the city overlies the rich oil and gas producing formations of the permian basinorth america permian basin and produces more potash thany other location in the united states carlsbad is home to the us department of energy doe s carlsbad field office which operates the waste isolation pilot planto safely store the transuranic nuclear wastes from the nation s defense sites tourism is a major factor with carlsbad caverns national park guadalupe mountains national park lincolnational foresthe living desert zoo and gardenstate park and the annual christmas on the pecos light show allocated within fifty miles of the city potash is a potassium containing compound used as a fertilizer along with nitrogen and phosphorus potash deposits were founderground across the permian basinorth america permian basin two companies the mosaicompany mosaic potash carlsbad formerly imc global and intrepid potash formerly mississippi chemical corporation operate mining operations east of carlsbad both mines employ a significant number of workers from surrounding communities each company also contributes to local charities public schools carlsbad municipal school district is the operating public school system for carlsbad municipal schools besides the before mentioned schools carlsbad municipal schools alsoperates a charter school jefferson montessori academy the mission of the carlsbad board of education is to create a public school environment which meets the individual educational needs of all children regardless of their ability ethnicity creed gender or social standing the mission of the carlsbad board of education is to create a public school environment which meets the individual educational needs of all children regardless of their ability ethnicity creed gender or social standing prelementary schools dr e m smith pre school early childhood education center kindergarten elementary schools craft elementary school hillcrest elementary school joe stanley smith elementary school monterrey elementary school patelementary school puckett elementary school riversidelementary school sunset elementary school middle schools pr leyva carlsbad intermediate school high schools carlsbad early college high school carlsbad high school carlsbad new mexico carlsbad high school private schools four private schools are located in carlsbad faith christian academy trinity christian academy paradise christian academy and st edwards catholic school colleges and universities new mexico state university has a branch campus located in carlsbad offering certificate associate degree bachelor s degree and continuing education programs nmsuc has a student population of approximately and a staff ofaculty previously known as the carlsbad instructional center the campus was established in as the state s first community college it was renamed a branch of nmsu in the present day main building was built in an additional instruction center was added in and the computer facilities wing was completed in by the campus hadded an additional building to house its nursing program the allied health and university transfer center allied health grand opening press releaseddy county beauty college is also located in carlsbad providing certification programs for beauticians college of the southwest and northwood university both previously had branch campuses in carlsbad mediand journalism carlsbad iserviced by a daily except monday newspaper the carlsbad current argus focus on carlsbad is a quarterly magazine published with local articles related to living shopping and vacationing in carlsbad focus on carlsbad channel tv is a local television station shown on cable television channel tv the channel airs coverage of special events and also local news many residents host shows on topics from plant care to science movies like leagues under the sea film leagues under the sea meet john doe and scarlet street are shown on wednesdays channel tv is currently unavailable on satellitelevision the carlsbad bats professional baseball team is a member of the independent pecos league the bats are primarily a travel team in the league but played two games in carlsbad in carlsbad was considered buturnedown for a full time franchise in carlsbad recently constructed a youth sports complex on the southwest side of town containing six softball and four soccer fields multiple local and regional tournaments are held athe complex yearly carlsbad high school carlsbad new mexico carlsbad high school is aaaaa school in the fourth district of the nmaa new mexico activities association carlsbad high school has teams competing in the sports of american football baseball softball basketball track and field golf tennisoccer men s and women soccer swimming wrestling and rodeo the carlsbad velo cycling club a local cycling bicycle clubegan hosting the cavern city classic omnium in with large success weekly rides are held on saturdays giving riders a chance to see much of the surrounding landscape annual races forunning and walking are organized by the carlsbad runner s club and national night out file wikipedia caverntheater carlsbad nmjpg thumb the cavern theater major highways two main highways run through the city us highway us is named canal street as it enters the city from the southwest athe intersection of greene street heads east us highway is named canal street as it intersects from the southeast athe intersection of pierce street branches northere are three road bridges that cross waterways and serve the municipality bataan bridge crosses the pecos river on east greene street north canal bridge crosses the pecos river onorth canal street south canal bridge crosses dark canyon draw on south canal street mass transithe carlsbad municipal transit system cmts provides public transportation within the city limits of carlsbad and portions of eddy county immediately adjacento the city cmts operates three fixed routes and a general dial a ride servicestablished in june cmts operates a fleet of vans and services persons with disabilitieseniorstudents and the general public average monthly ridership is approximately new mexico transportation services a private company provides daily transportation to and from the waste isolation pilot plant for employees at fixed pick up locations throughoutown buservice greyhound linestops in carlsbad on route between el paso texas el paso and lubbock texas map of greyhound routes cavern city air terminal cnm is located just south of carlsbad with boutique air currently offering non stop service to albuquerque new mexico albuquerque andallas fort worth international airport dallas fort worth under an essential air serviceas contractonsurez jessicand katiengland airport carlsbad now connected to dallas fort worth carlsbad current argus april retrieved roswell international air centerow located north of carlsbad in roswell new mexico iserved by american eagle airline brand american eagle offering daily service to dallas fort worth international airport flights to phoenix sky harbor international airport are scheduled to begin on march lea county regional airport hob located east of carlsbad in hobbs new mexico iserved by united express offering daily service to george bush intercontinental airport in houston el paso international airport elp is located in the northeastern part of el paso texas west of carlsbad midland international airport maf is located southeast of midland texasoutheast of carlsbad southwestern railroad new mexico southwestern railroad operates the burlingtonorthern santa fe railways in the carlsbad area providing freight service to the local potash mines two yard operations are present in carlsbad one between muscatel avenue and orchard lane and the other between greene and church streets xcel energy provides electricity to the carlsbad area new mexico gas company provides natural gaservices to more than customers in the state including carlsbad the city of carlsbad is responsible for the delivery of drinking water and the treatment of wastewater the city also provides waste trash and recycling service to residents trash isento the sandpoint landfill east of town operated by eddy county new mexico eddy county carlsbad medical center is the primary hospital facility serving the greater carlsbad area operated by community health systems cmc is a bed acute care facility including a hour emergency room imaging systems and other services the town is also home to dialysis clinics mri facilities an oncology center and specialty clinics carlsbad mental health association provides mental health servicesubstance abuse treatment family and youth counseling psychiatric services and employee assistance programs two nursing home s are present in carlsbad landsun homes and lakeview christian home research development and technology facilities carlsbad haseveral research facilitiesuch as the carlsbad environmental monitoring and research center operated by new mexico state university carlsbad environmental monitoring and research center and the national cave and karst research center operated by new mexico tech the national park service and the city of carlsbad about national cave and karst research center the united states department of energy sandia nationalabs and los alamos nationalaboratory eachave branch operations in carlsbad the carlsbadepartment of development and the city operate the aero tech industrial technology park including the advanced manufacturing and innovation training center carlsbad nm businesses points of interest carlsbad caverns national park southwest guadalupe mountains national park southwest in texas lincolnational forest west carlsbad museum and art center carlsbad skate park the cascades of carlsbad living desert zoo and gardenstate park which features a painting bear maggie oso paints wither paws in a variety of non toxic paint colors and heavy white paper thathe zoo curator places in her holding area maggie can choose the color of painto use and the pattern that she will paint maggie s paintings are matted and framed for the public to see maggie s art work has been featured in several art exhibits throughout carlsbad national cave and karst research center pecos river flume project gnomeast project playground the artist gallery notable people shane andrews major league baseball third baseman for three clubs over eight years bruce cabot actor who played jack driscoll in the film king kong film king kong appeared in many of close friend john wayne s films jason d cunningham air force pararescueman who died saving lives ofellow servicemen air force cross recipient sam etcheverry professional football player in the national footballeague and canadian footballeague alfred alexander freemanew mexico territorial judge and tennessee politician f drew gaffney payload specialist aboard sts and professor at vanderbilt university frank giddens national footballeague played for the philadelphia eagles mark jackson quarterback mark jackson gridiron football player bob kelly american football born bob kelly american footballeague defensive linemand offensive lineman for the houston oilers the kansas city chiefs and the cincinnati bengals cody ross major league baseball outfielder for the arizona diamondbacks barry sadler author musiciandecorated combat veteran best known for series of novels focusing on casca rufio longinius and for composing song ballad of the green beretsonny throckmorton singer and songwriter linda wertheimer senior correspondent for national public radio james larkin white jim white discoverer and explorer of carlsbad caverns john wootenational footballeague played for the cleveland browns and washington redskins file carlsbad new mexico municipal buildingjpg carlsbad municipal building file carlsbad new mexico public libraryjpg carlsbad public library file carlsbad new mexico museum art centerjpg carlsbad museum and art center externalinks city of carlsbad official website visit carlsbad new mexico tourism and visitor informationational park service carlsbad caverns carlsbadepartment of development carlsbad chamber of commerceddy county official website carlsbad municipal school district christmas on the pecos carlsbad current argus historical photographs of carlsbad nm area category carlsbad new mexico category cities inew mexico category cities in eddy county new mexico category county seats inew mexico category micropolitan areas of new mexico category populated placestablished in category atomic tourism category establishments inew mexico territory","main_words":["new","mexico","county_new","mexico","eddy","county","mayor","council","government","leader_title","mayor","leader_name","dale","leader_title","city","new_mexico","house","house","leader_name","leader_title","new_mexico","state","senate","state","senate","leader_name","leader_title","united_states","house","representatives","us","house","leader_title","founded","eddy","established","title","municipal","corporation","incorporated","eddy","carlsbad","area","magnitude","area","total","area","land","area","water","area","total","area","land","area","water","elevation","elevation","coordinates","population","population","united_states","census","population","total","population","density","auto","mountain","standard","time","zone","utc","dst","mountain","utc","offset","dst","website","postal","code","type","zip","code","postal","code","area","code","area","code","blank","name","federal","information","processing","standard","code","blank","info","blank","name","geographic","names","information","system","feature","blank","info","blank","name","primary","airport","blank","info","cavern","city","air","terminal","footnotes","pop","est","pop","est","footnotes","population","est","population","density","auto","unit","imperial","carlsbad","city","county","seat","eddy","county_new","mexico","eddy","county_new","mexico","united_states","united_states","census","city","population","carlsbad","centered","athe","intersection","us_route","us_route","us_route","principal","city","carlsbad","statistical","area","whichas","total","population","located","southeastern","part","new_mexico","carlsbad","pecos_river","sits","edge","guadalupe","mountains","carlsbad","hub","potash","mining","production","tourism","carlsbad","caverns","national_park","located","southwest","city","guadalupe","mountains","national_park","across","texas","border","forest","northwest","town","history","development","mexico","late_th","century","fueled","arrival","colonies","immigrants","england","switzerland","france","italy","located","along","banks","pecos_river","carlsbad","originally","town","eddy","september","organized","municipal","corporation","settlement","bore","name","charles","b","eddy","company","history","carlsbad","withe","commercial","development","local","mineral","springs","near","flume","qualities","town","later","voted","change","name","carlsbad","famous","european","spa","carlsbad","bohemia","vary","czech_republic","march","growing","town","population","allowing","governor","new_mexico","washington","carlsbad","city","carlsbad","development","due","irrigation","water","local","recognized","value","water","pecos_river","grazing","lands","eddy","ranch","many","construction","projects","undertaken","establish","irrigation","system","within","town","avalon","dam","constructed","town","canals","diverted","water","conflict","arose","canals","methe","river","resulthe","pecos_river","flume","built","first","wood","later","concrete","flume","often","titled","place","river","crosses","key","growth","area","special","excursion","trains","brought","visitors","theast","reduced","fares","railroad","completed","pecos","texas","pecos","travel","parties","met","athe","railroad","station","texas","driven","buggy","rough","dusty","road","growing","settlement","banks","pecos_river","thearly","construction","carlsbad","completed","locally","manufactured","brick","quite","soft","poor","quality","former","first","national","bank","building","athe_corner","canal","fox","streets","one","remaining","buildings","constructed","withe","local","brick","discovery","carlsbad","caverns","known","bat","cave","local","cowboys","subsequent","establishment","carlsbad","caverns","national_park","may","gained","town","carlsbad","substantial","recognition","potash","discovered","near","carlsbad","manyears","american","potash","market","carlsbad","new_mexico","following","decline","potash","market","residents","leaders","carlsbad","thestablishment","waste","isolation","pilot","plant","site","low","level","nuclear","waste","would","stored","thousands","ofeet","underground","salt","beds","congress","authorized","construction_began","united_states","department","energy","doe","carlsbad","area","office","opened","first","waste","shipment","arrived","currently","carlsbad","experienced","boom","city","leading","production","oil","natural","across","thentire","area","causing","increase","themployment","rate","due","increase","families","individuals","begun","carlsbad","geography","climate","carlsbad","located_near","center","eddy","county","elevation","carlsbad","isituated","northern","reaches","desert","lower","pecos_river","valley","via","us","north","new_mexico","south","pecos","texas","lead","hobbs","new_mexico","hobbs","el_paso","texas","el_paso","according","united_states","census","bureau","carlsbad","total","area","city","land","water","water","within","city","limits","consists","pecos_river","lake","carlsbad","recreation","area","river","flows","northern","part","lake","avalon","lake","passes","east","downtown","exits","southeast","dark","canyon","draw","also","runs","southern","part","town","drains","heavy","canyon","united_states","geological","survey","retrieved","september","carlsbad","part","interior","west","climate","climate","zones","united_states","forest_service","retrieved_march","classified","k","ppen","climate","classification","k","ppen","meaning","average","annual","less","potential","potential","half","moderate","amount","rain","falls","year","withe","maximum","occurring","september","reported","eddy","county","since","date","august","us","census","census","people","households","families","residing","city","population","density","housing","units","average","density","per","square","mile","racial","city","white","american","white","non","hispanic","african_american","black","african_american","asian","american","asian","pacific","american","pacific","race","ethnicity","united_states","census","race","american","twor","races","population","hispanic","latino","americans","latinos","race","households","whichave","children","age","living","withem","married","couples","living","together","female","husband","present","non","families","households","made","individuals","someone","living","alone","years","age","older","average","household","size","average","family","size","city","population","age","ofrom","years","age","older","median","age","years","every","females","males","every","females","age","males","median","income","household","city","median","income","family","males","median","income","versus","females","per","capita","income","city","population","poverty","line","total","population","age","older","living","poverty","line","city","carlsbad","mayor","council","government","mayor","council","form","government","voters","bothe","mayor","theight","members","city_council","two","ward","pass","laws","make","policy","first","meeting","city_council","newly","elected","council","members","seated","council","mayor","pro","serves","mayor","absence","mayor","class","infobox","style","font_size","border","float","right","margin","left","width_px","style","background","f","f","colspan","largest","employers","carlsbad","labor","economic","research","style_text","align","left","urs","corporation","washington","solutions","llc","style_text","align","left","carlsbad","municipal","text","align","lefthe","mosaic","potash","carlsbad","style_text","align","left","inc","style_text","align","left","carlsbad","medical_center","style_text","align","left","intrepid","potash","style_text","align","left","homes","inc","style_text","align","left","lowe","style_text","align","left","new_mexico","state_university","new_mexico","state_university","carlsbad","style_text","align","left","lakeview","christian","home","theconomy","carlsbad","area","based","primarily","mineral","extraction","sector","city","rich","oil","gas","producing","formations","permian","america","permian","basin","produces","potash","thany","location","united_states","carlsbad","home","us_department","energy","doe","carlsbad","field","office","operates","waste","isolation","pilot","safely","store","nuclear","wastes","nation","defense","sites","tourism","major","factor","carlsbad","caverns","national_park","guadalupe","mountains","national_park","living","desert","zoo","park","annual","christmas","pecos","light","show","allocated","within","fifty","miles","city","potash","containing","compound","used","along","nitrogen","potash","deposits","across","permian","america","permian","basin","two","companies","mosaic","potash","carlsbad","formerly","global","intrepid","potash","formerly","mississippi","chemical","corporation","operate","mining","operations","east","carlsbad","mines","employ","significant","number","workers","surrounding","communities","company_also","contributes","local","charities","public","schools","carlsbad","municipal","school","district","operating","public","school","system","carlsbad","municipal","schools","besides","mentioned","schools","carlsbad","municipal","schools","alsoperates","charter","school","jefferson","academy","mission","carlsbad","board","education","create","public","school","environment","meets","individual","educational","needs","children","regardless","ability","ethnicity","gender","social","standing","mission","carlsbad","board","education","create","public","school","environment","meets","individual","educational","needs","children","regardless","ability","ethnicity","gender","social","standing","schools","e","smith","pre","school","early","childhood","education","center","elementary_schools","craft","elementary_school","elementary_school","joe","stanley","smith","elementary_school","elementary_school","school","elementary_school","school","sunset","elementary_school","middle","schools","carlsbad","intermediate","school","high_schools","carlsbad","early","college","high_school","carlsbad","high_school","carlsbad","new_mexico","carlsbad","high_school","private","schools","four","private","schools","located","carlsbad","faith","christian","academy","trinity","christian","academy","paradise","christian","academy","st","edwards","catholic","school","colleges","universities","new_mexico","state_university","branch","campus","located","carlsbad","offering","certificate","associate","degree","bachelor","degree","continuing","education","programs","student","population","approximately","staff","previously","known","carlsbad","center","campus","established","state","first","community","college","renamed","branch","present_day","main_building","built","additional","instruction","center","added","computer","facilities","wing","completed","campus","additional","building","house","nursing","program","allied","health","university","transfer","center","allied","health","grand","opening","press","county","beauty","college","also","located","carlsbad","providing","certification","programs","college","southwest","northwood","university","previously","branch","campuses","carlsbad","mediand","journalism","carlsbad","daily","except","monday","newspaper","carlsbad","current","focus","carlsbad","quarterly","magazine_published","local","articles","related","living","shopping","carlsbad","focus","carlsbad","channel","local","television","station","shown","cable","television","channel","tv_channel","airs","coverage","special_events","also","local","news","many","residents","host","shows","topics","plant","care","science","movies","like","leagues","sea","film","leagues","sea","meet","john","doe","street","shown","wednesdays","channel","currently","unavailable","carlsbad","professional","baseball","team","member","independent","pecos","league","primarily","travel","team","league","played","two","games","carlsbad","carlsbad","considered","full_time","franchise","carlsbad","recently","constructed","youth","sports","complex","southwest","side","town","containing","six","four","soccer","fields","multiple","local","regional","held_athe","complex","yearly","carlsbad","high_school","carlsbad","new_mexico","carlsbad","high_school","school","fourth","district","new_mexico","activities","association","carlsbad","high_school","teams","competing","sports","american","football","baseball","basketball","track","field","golf","men","women","soccer","swimming","wrestling","rodeo","carlsbad","cycling","club","local","cycling","bicycle","hosting","cavern","city","classic","large","success","weekly","rides","held","saturdays","giving","riders","chance","see","much","surrounding","landscape","annual","races","walking","organized","carlsbad","runner","club","national","night","file","wikipedia","carlsbad","thumb","cavern","theater","major","highways","two_main","highways","run","city","us_highway","us","named","canal","street","enters","city","southwest","athe","intersection","greene","street","heads","east","us_highway","named","canal","street","southeast","athe","intersection","street","branches","three","road","bridges","cross","waterways","serve","municipality","bridge","crosses","pecos_river","east","greene","street","north","canal","bridge","crosses","pecos_river","canal","street","south","canal","bridge","crosses","dark","canyon","draw","south","canal","street","mass","carlsbad","municipal","transit","system","provides","public_transportation","within","city","limits","carlsbad","portions","eddy","county","immediately","adjacento","city","operates","three","fixed","routes","general","ride","june","operates","fleet","vans","services","persons","general_public","average","monthly","approximately","new_mexico","transportation_services","private_company","provides","daily","transportation","waste","isolation","pilot","plant","employees","fixed","pick","locations","carlsbad","texas","el_paso","texas","map","routes","cavern","city","air","terminal","located","south","carlsbad","boutique","air","currently","offering","non","stop","service","albuquerque","new_mexico","albuquerque","fort_worth","international_airport","dallas","fort_worth","essential","air","airport","carlsbad","connected","dallas","fort_worth","carlsbad","current","april","retrieved","roswell","international","air","located","north","carlsbad","roswell","new_mexico","iserved","american","eagle","airline","brand","american","eagle","offering","daily","service","dallas","fort_worth","international_airport","flights","phoenix","sky","harbor","international_airport","scheduled","begin","march","lea","county","regional","airport","located","east","carlsbad","hobbs","new_mexico","iserved","united","express","offering","daily","service","intercontinental","airport","houston","el_paso","international_airport","located","northeastern","part","el_paso","texas","west","carlsbad","midland","international_airport","located","southeast","midland","carlsbad","southwestern","railroad","new_mexico","southwestern","railroad","operates","santa","railways","carlsbad","area","providing","freight","service","local","potash","mines","two","yard","operations","present","carlsbad","one","avenue","lane","greene","church","streets","energy","provides","electricity","carlsbad","area","new_mexico","gas","company","provides","natural","customers","state","including","carlsbad","city","carlsbad","responsible","delivery","drinking","water","treatment","city","also_provides","waste","trash","recycling","service","residents","trash","east","town","operated","eddy","county_new","mexico","eddy","county","carlsbad","medical_center","primary","hospital","facility","serving","greater","carlsbad","area","operated","community","health","systems","bed","acute","care","facility","including","hour","emergency","room","imaging","systems","services","town","also","home","clinics","facilities","center","specialty","clinics","carlsbad","mental","health","association","provides","mental","health","abuse","treatment","family","youth","services","employee","assistance","programs","two","nursing","home","present","carlsbad","homes","lakeview","christian","home","research","development","technology","facilities","carlsbad","haseveral","research","facilitiesuch","carlsbad","environmental","monitoring","research_center","operated","new_mexico","state_university","carlsbad","environmental","monitoring","research_center","national","cave","karst","research_center","operated","new_mexico","tech","national_park","service","city","carlsbad","national","cave","karst","research_center","united_states","department","energy","los_alamos","nationalaboratory","eachave","branch","operations","carlsbad","development","city","operate","aero","tech","industrial","technology","park","including","advanced","manufacturing","innovation","training","center","carlsbad","businesses","points","interest","carlsbad","caverns","national_park","southwest","guadalupe","mountains","national_park","southwest","texas","forest","west","carlsbad","museum","art","center","carlsbad","park","carlsbad","living","desert","zoo","park","features","painting","bear","maggie","wither","variety","non","toxic","paint","colors","heavy","white","paper","thathe","zoo","curator","places","holding","area","maggie","choose","color","use","pattern","paint","maggie","paintings","framed","public","see","maggie","art","work","featured","several","art","exhibits","throughout","carlsbad","national","cave","karst","research_center","pecos_river","flume","project","project","playground","artist","gallery","notable","people","shane","andrews","major","league","baseball","third","three","clubs","eight","years","bruce","actor","played","jack","film","king","kong","film","king","kong","appeared","many","close","friend","john","wayne","films","jason","air_force","died","saving","lives","servicemen","air_force","cross","recipient","sam","professional","football","player","national","footballeague","canadian","footballeague","alfred","alexander","mexico","territorial","judge","tennessee","politician","f","drew","payload","specialist","aboard","sts","professor","university","frank","national","footballeague","played","philadelphia","mark","jackson","mark","jackson","football","player","bob","kelly","american","football","born","bob","kelly","american","footballeague","offensive","houston","kansas_city","cincinnati","ross","major","league","baseball","arizona","barry","author","combat","veteran","best_known","series","novels","focusing","song","green","singer","linda","senior","correspondent","radio","james","white","jim","white","explorer","carlsbad","caverns","played","cleveland","washington","file","carlsbad","new_mexico","municipal","carlsbad","municipal","building","file","carlsbad","new_mexico","public","carlsbad","public_library","file","carlsbad","new_mexico","museum","art","carlsbad","museum","art","center","externalinks","city","carlsbad","official_website","visit","carlsbad","new_mexico","tourism","visitor","carlsbad","caverns","development","carlsbad","chamber","county","official_website","carlsbad","municipal","school","district","christmas","pecos","carlsbad","current","historical","photographs","carlsbad","area_category","carlsbad","new_mexico","category","cities","inew_mexico_category","cities","eddy","county_new","county","seats","inew_mexico_category","areas","new_mexico","category","populated","inew_mexico","territory"],"clean_bigrams":[["new","mexico"],["county","new"],["new","mexico"],["mexico","eddy"],["eddy","county"],["mayor","council"],["council","government"],["government","leader"],["leader","title"],["title","mayor"],["mayor","leader"],["leader","name"],["name","dale"],["leader","title"],["title","city"],["name","leader"],["leader","title"],["title","new"],["new","mexico"],["mexico","house"],["house","leader"],["leader","name"],["name","leader"],["leader","title"],["title","new"],["new","mexico"],["mexico","state"],["state","senate"],["senate","state"],["state","senate"],["senate","leader"],["leader","name"],["name","leader"],["leader","title"],["title","united"],["united","states"],["states","house"],["representatives","us"],["us","house"],["house","leader"],["leader","title"],["title","founded"],["eddy","established"],["established","title"],["title","municipal"],["municipal","corporation"],["corporation","incorporated"],["carlsbad","area"],["area","magnitude"],["magnitude","area"],["area","total"],["total","area"],["area","land"],["area","water"],["area","total"],["total","area"],["area","land"],["area","water"],["coordinates","population"],["united","states"],["states","census"],["population","total"],["total","population"],["population","density"],["mountain","standard"],["standard","time"],["time","zone"],["dst","mountain"],["utc","offset"],["offset","dst"],["dst","website"],["website","postal"],["postal","code"],["code","type"],["type","zip"],["zip","code"],["postal","code"],["code","area"],["area","code"],["code","area"],["area","code"],["code","blank"],["blank","name"],["name","federal"],["federal","information"],["information","processing"],["processing","standard"],["code","blank"],["blank","info"],["info","blank"],["blank","name"],["name","geographic"],["geographic","names"],["names","information"],["information","system"],["blank","info"],["info","blank"],["blank","name"],["name","primary"],["primary","airport"],["airport","blank"],["blank","info"],["info","cavern"],["cavern","city"],["city","air"],["air","terminal"],["footnotes","pop"],["pop","est"],["pop","est"],["est","footnotes"],["footnotes","population"],["population","est"],["est","population"],["population","density"],["auto","unit"],["imperial","carlsbad"],["county","seat"],["eddy","county"],["county","new"],["new","mexico"],["mexico","eddy"],["eddy","county"],["county","new"],["new","mexico"],["mexico","united"],["united","states"],["united","states"],["states","census"],["city","population"],["centered","athe"],["athe","intersection"],["us","route"],["route","us"],["us","routes"],["routes","us"],["us","route"],["route","us"],["us","route"],["principal","city"],["statistical","area"],["area","whichas"],["total","population"],["southeastern","part"],["new","mexico"],["mexico","carlsbad"],["pecos","river"],["guadalupe","mountains"],["mountains","carlsbad"],["potash","mining"],["tourism","carlsbad"],["carlsbad","caverns"],["caverns","national"],["national","park"],["located","southwest"],["guadalupe","mountains"],["mountains","national"],["national","park"],["texas","border"],["town","history"],["history","development"],["late","th"],["th","century"],["england","switzerland"],["switzerland","france"],["italy","located"],["located","along"],["pecos","river"],["river","carlsbad"],["municipal","corporation"],["settlement","bore"],["charles","b"],["b","eddy"],["company","history"],["carlsbad","withe"],["withe","commercial"],["commercial","development"],["local","mineral"],["mineral","springs"],["springs","near"],["town","later"],["later","voted"],["famous","european"],["european","spa"],["spa","carlsbad"],["carlsbad","bohemia"],["vary","czech"],["czech","republic"],["growing","town"],["new","mexico"],["mexico","washington"],["irrigation","water"],["water","local"],["pecos","river"],["grazing","lands"],["ranch","many"],["many","construction"],["construction","projects"],["irrigation","system"],["system","within"],["avalon","dam"],["canals","diverted"],["conflict","arose"],["canals","methe"],["methe","river"],["resulthe","pecos"],["pecos","river"],["river","flume"],["built","first"],["later","concrete"],["often","titled"],["river","crosses"],["special","excursion"],["excursion","trains"],["brought","visitors"],["reduced","fares"],["pecos","texas"],["texas","pecos"],["travel","parties"],["parties","met"],["met","athe"],["athe","railroad"],["railroad","station"],["rough","dusty"],["dusty","road"],["growing","settlement"],["pecos","river"],["thearly","construction"],["locally","manufactured"],["manufactured","brick"],["quite","soft"],["poor","quality"],["former","first"],["first","national"],["national","bank"],["bank","building"],["building","athe"],["athe","corner"],["fox","streets"],["remaining","buildings"],["buildings","constructed"],["constructed","withe"],["withe","local"],["local","brick"],["carlsbad","caverns"],["bat","cave"],["local","cowboys"],["subsequent","establishment"],["carlsbad","caverns"],["caverns","national"],["national","park"],["may","gained"],["carlsbad","substantial"],["substantial","recognition"],["discovered","near"],["near","carlsbad"],["american","potash"],["potash","market"],["carlsbad","new"],["new","mexico"],["mexico","following"],["potash","market"],["waste","isolation"],["isolation","pilot"],["pilot","plant"],["low","level"],["level","nuclear"],["nuclear","waste"],["waste","would"],["stored","thousands"],["thousands","ofeet"],["ofeet","underground"],["salt","beds"],["beds","congress"],["congress","authorized"],["construction","began"],["united","states"],["states","department"],["energy","doe"],["doe","carlsbad"],["carlsbad","area"],["area","office"],["office","opened"],["first","waste"],["waste","shipment"],["shipment","arrived"],["currently","carlsbad"],["across","thentire"],["thentire","area"],["area","causing"],["themployment","rate"],["rate","due"],["increase","families"],["carlsbad","geography"],["climate","carlsbad"],["located","near"],["eddy","county"],["carlsbad","isituated"],["northern","reaches"],["lower","pecos"],["pecos","river"],["river","valley"],["valley","via"],["via","us"],["new","mexico"],["pecos","texas"],["texas","us"],["us","routes"],["hobbs","new"],["new","mexico"],["mexico","hobbs"],["el","paso"],["paso","texas"],["texas","el"],["el","paso"],["paso","according"],["united","states"],["states","census"],["census","bureau"],["bureau","carlsbad"],["total","area"],["water","within"],["within","city"],["city","limits"],["limits","consists"],["pecos","river"],["lake","carlsbad"],["carlsbad","recreation"],["recreation","area"],["river","flows"],["northern","part"],["lake","avalon"],["lake","passes"],["passes","east"],["southeast","dark"],["dark","canyon"],["canyon","draw"],["draw","also"],["also","runs"],["southern","part"],["united","states"],["states","geological"],["geological","survey"],["survey","retrieved"],["retrieved","september"],["september","carlsbad"],["interior","west"],["west","climate"],["climate","zones"],["zones","united"],["united","states"],["states","forest"],["forest","service"],["service","retrieved"],["retrieved","march"],["k","ppen"],["ppen","climate"],["climate","classification"],["classification","k"],["k","ppen"],["meaning","average"],["average","annual"],["moderate","amount"],["rain","falls"],["year","withe"],["withe","maximum"],["maximum","occurring"],["eddy","county"],["county","since"],["since","date"],["date","august"],["people","households"],["families","residing"],["city","population"],["population","density"],["housing","units"],["average","density"],["per","square"],["square","mile"],["white","american"],["american","white"],["white","non"],["non","hispanic"],["hispanic","african"],["african","american"],["american","black"],["african","american"],["american","asian"],["asian","american"],["american","asian"],["asian","pacific"],["american","pacific"],["united","states"],["states","census"],["census","race"],["latino","americans"],["whichave","children"],["living","withem"],["married","couples"],["couples","living"],["living","together"],["husband","present"],["non","families"],["someone","living"],["living","alone"],["average","household"],["household","size"],["average","family"],["family","size"],["city","population"],["age","ofrom"],["median","age"],["every","females"],["every","females"],["females","age"],["median","income"],["median","income"],["median","income"],["per","capita"],["capita","income"],["city","population"],["poverty","line"],["total","population"],["poverty","line"],["mayor","council"],["council","government"],["government","mayor"],["mayor","council"],["council","form"],["government","voters"],["bothe","mayor"],["theight","members"],["city","council"],["council","two"],["pass","laws"],["make","policy"],["first","meeting"],["city","council"],["newly","elected"],["elected","council"],["council","members"],["mayor","pro"],["mayor","class"],["class","infobox"],["infobox","style"],["style","font"],["font","size"],["size","border"],["border","px"],["px","solid"],["solid","float"],["float","right"],["right","margin"],["margin","left"],["width","px"],["px","style"],["style","background"],["background","f"],["f","f"],["f","colspan"],["colspan","largest"],["largest","employers"],["carlsbad","labor"],["economic","research"],["research","style"],["style","text"],["text","align"],["align","left"],["left","urs"],["urs","corporation"],["corporation","washington"],["solutions","llc"],["llc","style"],["style","text"],["text","align"],["align","left"],["left","carlsbad"],["carlsbad","municipal"],["text","align"],["align","lefthe"],["mosaic","potash"],["potash","carlsbad"],["carlsbad","style"],["style","text"],["text","align"],["align","left"],["inc","style"],["style","text"],["text","align"],["align","left"],["left","carlsbad"],["carlsbad","medical"],["medical","center"],["center","style"],["style","text"],["text","align"],["align","left"],["left","intrepid"],["intrepid","potash"],["potash","style"],["style","text"],["text","align"],["align","left"],["homes","inc"],["inc","style"],["style","text"],["text","align"],["align","left"],["left","lowe"],["lowe","style"],["style","text"],["text","align"],["align","left"],["left","new"],["new","mexico"],["mexico","state"],["state","university"],["university","new"],["new","mexico"],["mexico","state"],["state","university"],["university","carlsbad"],["carlsbad","style"],["style","text"],["text","align"],["align","left"],["left","lakeview"],["lakeview","christian"],["christian","home"],["home","theconomy"],["carlsbad","area"],["based","primarily"],["mineral","extraction"],["extraction","sector"],["rich","oil"],["gas","producing"],["producing","formations"],["america","permian"],["permian","basin"],["potash","thany"],["united","states"],["states","carlsbad"],["us","department"],["energy","doe"],["doe","carlsbad"],["carlsbad","field"],["field","office"],["waste","isolation"],["isolation","pilot"],["safely","store"],["nuclear","wastes"],["defense","sites"],["sites","tourism"],["major","factor"],["carlsbad","caverns"],["caverns","national"],["national","park"],["park","guadalupe"],["guadalupe","mountains"],["mountains","national"],["national","park"],["living","desert"],["desert","zoo"],["annual","christmas"],["pecos","light"],["light","show"],["show","allocated"],["allocated","within"],["within","fifty"],["fifty","miles"],["city","potash"],["containing","compound"],["compound","used"],["potash","deposits"],["america","permian"],["permian","basin"],["basin","two"],["two","companies"],["mosaic","potash"],["potash","carlsbad"],["carlsbad","formerly"],["intrepid","potash"],["potash","formerly"],["formerly","mississippi"],["mississippi","chemical"],["chemical","corporation"],["corporation","operate"],["operate","mining"],["mining","operations"],["operations","east"],["mines","employ"],["significant","number"],["surrounding","communities"],["company","also"],["also","contributes"],["local","charities"],["charities","public"],["public","schools"],["schools","carlsbad"],["carlsbad","municipal"],["municipal","school"],["school","district"],["operating","public"],["public","school"],["school","system"],["carlsbad","municipal"],["municipal","schools"],["schools","besides"],["mentioned","schools"],["schools","carlsbad"],["carlsbad","municipal"],["municipal","schools"],["schools","alsoperates"],["charter","school"],["school","jefferson"],["carlsbad","board"],["public","school"],["school","environment"],["individual","educational"],["educational","needs"],["children","regardless"],["ability","ethnicity"],["social","standing"],["carlsbad","board"],["public","school"],["school","environment"],["individual","educational"],["educational","needs"],["children","regardless"],["ability","ethnicity"],["social","standing"],["smith","pre"],["pre","school"],["school","early"],["early","childhood"],["childhood","education"],["education","center"],["elementary","schools"],["schools","craft"],["craft","elementary"],["elementary","school"],["elementary","school"],["school","joe"],["joe","stanley"],["stanley","smith"],["smith","elementary"],["elementary","school"],["elementary","school"],["elementary","school"],["school","sunset"],["sunset","elementary"],["elementary","school"],["school","middle"],["middle","schools"],["schools","carlsbad"],["carlsbad","intermediate"],["intermediate","school"],["school","high"],["high","schools"],["schools","carlsbad"],["carlsbad","early"],["early","college"],["college","high"],["high","school"],["school","carlsbad"],["carlsbad","high"],["high","school"],["school","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","carlsbad"],["carlsbad","high"],["high","school"],["school","private"],["private","schools"],["schools","four"],["four","private"],["private","schools"],["carlsbad","faith"],["faith","christian"],["christian","academy"],["academy","trinity"],["trinity","christian"],["christian","academy"],["academy","paradise"],["paradise","christian"],["christian","academy"],["st","edwards"],["edwards","catholic"],["catholic","school"],["school","colleges"],["universities","new"],["new","mexico"],["mexico","state"],["state","university"],["branch","campus"],["campus","located"],["carlsbad","offering"],["offering","certificate"],["certificate","associate"],["associate","degree"],["degree","bachelor"],["continuing","education"],["education","programs"],["student","population"],["previously","known"],["first","community"],["community","college"],["present","day"],["day","main"],["main","building"],["additional","instruction"],["instruction","center"],["computer","facilities"],["facilities","wing"],["additional","building"],["nursing","program"],["allied","health"],["university","transfer"],["transfer","center"],["center","allied"],["allied","health"],["health","grand"],["grand","opening"],["opening","press"],["county","beauty"],["beauty","college"],["also","located"],["carlsbad","providing"],["providing","certification"],["certification","programs"],["northwood","university"],["branch","campuses"],["carlsbad","mediand"],["mediand","journalism"],["journalism","carlsbad"],["daily","except"],["except","monday"],["monday","newspaper"],["carlsbad","current"],["quarterly","magazine"],["magazine","published"],["local","articles"],["articles","related"],["living","shopping"],["carlsbad","focus"],["carlsbad","channel"],["channel","tv"],["local","television"],["television","station"],["station","shown"],["cable","television"],["television","channel"],["channel","tv"],["channel","airs"],["airs","coverage"],["special","events"],["also","local"],["local","news"],["news","many"],["many","residents"],["residents","host"],["host","shows"],["plant","care"],["science","movies"],["movies","like"],["like","leagues"],["sea","film"],["film","leagues"],["sea","meet"],["meet","john"],["john","doe"],["wednesdays","channel"],["channel","tv"],["currently","unavailable"],["professional","baseball"],["baseball","team"],["independent","pecos"],["pecos","league"],["travel","team"],["played","two"],["two","games"],["full","time"],["time","franchise"],["carlsbad","recently"],["recently","constructed"],["youth","sports"],["sports","complex"],["southwest","side"],["town","containing"],["containing","six"],["four","soccer"],["soccer","fields"],["fields","multiple"],["multiple","local"],["held","athe"],["athe","complex"],["complex","yearly"],["yearly","carlsbad"],["carlsbad","high"],["high","school"],["school","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","carlsbad"],["carlsbad","high"],["high","school"],["fourth","district"],["new","mexico"],["mexico","activities"],["activities","association"],["association","carlsbad"],["carlsbad","high"],["high","school"],["teams","competing"],["american","football"],["football","baseball"],["basketball","track"],["field","golf"],["women","soccer"],["soccer","swimming"],["swimming","wrestling"],["cycling","club"],["local","cycling"],["cycling","bicycle"],["cavern","city"],["city","classic"],["large","success"],["success","weekly"],["weekly","rides"],["saturdays","giving"],["giving","riders"],["see","much"],["surrounding","landscape"],["landscape","annual"],["annual","races"],["carlsbad","runner"],["national","night"],["file","wikipedia"],["cavern","theater"],["theater","major"],["major","highways"],["highways","two"],["two","main"],["main","highways"],["highways","run"],["city","us"],["us","highway"],["highway","us"],["named","canal"],["canal","street"],["southwest","athe"],["athe","intersection"],["greene","street"],["street","heads"],["heads","east"],["east","us"],["us","highway"],["named","canal"],["canal","street"],["southeast","athe"],["athe","intersection"],["street","branches"],["three","road"],["road","bridges"],["cross","waterways"],["bridge","crosses"],["pecos","river"],["east","greene"],["greene","street"],["street","north"],["north","canal"],["canal","bridge"],["bridge","crosses"],["pecos","river"],["canal","street"],["street","south"],["south","canal"],["canal","bridge"],["bridge","crosses"],["crosses","dark"],["dark","canyon"],["canyon","draw"],["south","canal"],["canal","street"],["street","mass"],["carlsbad","municipal"],["municipal","transit"],["transit","system"],["provides","public"],["public","transportation"],["transportation","within"],["within","city"],["city","limits"],["eddy","county"],["county","immediately"],["immediately","adjacento"],["operates","three"],["three","fixed"],["fixed","routes"],["services","persons"],["general","public"],["public","average"],["average","monthly"],["approximately","new"],["new","mexico"],["mexico","transportation"],["transportation","services"],["private","company"],["company","provides"],["provides","daily"],["daily","transportation"],["waste","isolation"],["isolation","pilot"],["pilot","plant"],["fixed","pick"],["el","paso"],["paso","texas"],["texas","el"],["el","paso"],["paso","texas"],["texas","map"],["routes","cavern"],["cavern","city"],["city","air"],["air","terminal"],["boutique","air"],["air","currently"],["currently","offering"],["offering","non"],["non","stop"],["stop","service"],["albuquerque","new"],["new","mexico"],["mexico","albuquerque"],["fort","worth"],["worth","international"],["international","airport"],["airport","dallas"],["dallas","fort"],["fort","worth"],["essential","air"],["airport","carlsbad"],["dallas","fort"],["fort","worth"],["worth","carlsbad"],["carlsbad","current"],["april","retrieved"],["retrieved","roswell"],["roswell","international"],["international","air"],["located","north"],["roswell","new"],["new","mexico"],["mexico","iserved"],["american","eagle"],["eagle","airline"],["airline","brand"],["brand","american"],["american","eagle"],["eagle","offering"],["offering","daily"],["daily","service"],["dallas","fort"],["fort","worth"],["worth","international"],["international","airport"],["airport","flights"],["phoenix","sky"],["sky","harbor"],["harbor","international"],["international","airport"],["march","lea"],["lea","county"],["county","regional"],["regional","airport"],["located","east"],["hobbs","new"],["new","mexico"],["mexico","iserved"],["united","express"],["express","offering"],["offering","daily"],["daily","service"],["george","bush"],["bush","intercontinental"],["intercontinental","airport"],["houston","el"],["el","paso"],["paso","international"],["international","airport"],["northeastern","part"],["el","paso"],["paso","texas"],["texas","west"],["west","carlsbad"],["carlsbad","midland"],["midland","international"],["international","airport"],["located","southeast"],["carlsbad","southwestern"],["southwestern","railroad"],["railroad","new"],["new","mexico"],["mexico","southwestern"],["southwestern","railroad"],["railroad","operates"],["carlsbad","area"],["area","providing"],["providing","freight"],["freight","service"],["local","potash"],["potash","mines"],["mines","two"],["two","yard"],["yard","operations"],["carlsbad","one"],["church","streets"],["energy","provides"],["provides","electricity"],["carlsbad","area"],["area","new"],["new","mexico"],["mexico","gas"],["gas","company"],["company","provides"],["provides","natural"],["state","including"],["including","carlsbad"],["drinking","water"],["city","also"],["also","provides"],["provides","waste"],["waste","trash"],["recycling","service"],["residents","trash"],["town","operated"],["eddy","county"],["county","new"],["new","mexico"],["mexico","eddy"],["eddy","county"],["county","carlsbad"],["carlsbad","medical"],["medical","center"],["primary","hospital"],["hospital","facility"],["facility","serving"],["greater","carlsbad"],["carlsbad","area"],["area","operated"],["community","health"],["health","systems"],["bed","acute"],["acute","care"],["care","facility"],["facility","including"],["hour","emergency"],["emergency","room"],["room","imaging"],["imaging","systems"],["also","home"],["specialty","clinics"],["clinics","carlsbad"],["carlsbad","mental"],["mental","health"],["health","association"],["association","provides"],["provides","mental"],["mental","health"],["abuse","treatment"],["treatment","family"],["employee","assistance"],["assistance","programs"],["programs","two"],["two","nursing"],["nursing","home"],["lakeview","christian"],["christian","home"],["home","research"],["research","development"],["technology","facilities"],["facilities","carlsbad"],["carlsbad","haseveral"],["haseveral","research"],["research","facilitiesuch"],["carlsbad","environmental"],["environmental","monitoring"],["research","center"],["center","operated"],["new","mexico"],["mexico","state"],["state","university"],["university","carlsbad"],["carlsbad","environmental"],["environmental","monitoring"],["research","center"],["national","cave"],["karst","research"],["research","center"],["center","operated"],["new","mexico"],["mexico","tech"],["national","park"],["park","service"],["carlsbad","national"],["national","cave"],["karst","research"],["research","center"],["united","states"],["states","department"],["los","alamos"],["alamos","nationalaboratory"],["nationalaboratory","eachave"],["eachave","branch"],["branch","operations"],["city","operate"],["aero","tech"],["tech","industrial"],["industrial","technology"],["technology","park"],["park","including"],["advanced","manufacturing"],["innovation","training"],["training","center"],["center","carlsbad"],["businesses","points"],["interest","carlsbad"],["carlsbad","caverns"],["caverns","national"],["national","park"],["park","southwest"],["southwest","guadalupe"],["guadalupe","mountains"],["mountains","national"],["national","park"],["park","southwest"],["forest","west"],["west","carlsbad"],["carlsbad","museum"],["museum","art"],["art","center"],["center","carlsbad"],["carlsbad","living"],["living","desert"],["desert","zoo"],["painting","bear"],["bear","maggie"],["non","toxic"],["toxic","paint"],["paint","colors"],["heavy","white"],["white","paper"],["paper","thathe"],["thathe","zoo"],["zoo","curator"],["curator","places"],["holding","area"],["area","maggie"],["paint","maggie"],["see","maggie"],["art","work"],["several","art"],["art","exhibits"],["exhibits","throughout"],["throughout","carlsbad"],["carlsbad","national"],["national","cave"],["karst","research"],["research","center"],["center","pecos"],["pecos","river"],["river","flume"],["flume","project"],["project","playground"],["artist","gallery"],["gallery","notable"],["notable","people"],["people","shane"],["shane","andrews"],["andrews","major"],["major","league"],["league","baseball"],["baseball","third"],["three","clubs"],["eight","years"],["years","bruce"],["played","jack"],["film","king"],["king","kong"],["kong","film"],["film","king"],["king","kong"],["kong","appeared"],["close","friend"],["friend","john"],["john","wayne"],["films","jason"],["air","force"],["died","saving"],["saving","lives"],["servicemen","air"],["air","force"],["force","cross"],["cross","recipient"],["recipient","sam"],["professional","football"],["football","player"],["national","footballeague"],["canadian","footballeague"],["footballeague","alfred"],["alfred","alexander"],["mexico","territorial"],["territorial","judge"],["tennessee","politician"],["politician","f"],["f","drew"],["payload","specialist"],["specialist","aboard"],["aboard","sts"],["university","frank"],["national","footballeague"],["footballeague","played"],["mark","jackson"],["mark","jackson"],["football","player"],["player","bob"],["bob","kelly"],["kelly","american"],["american","football"],["football","born"],["born","bob"],["bob","kelly"],["kelly","american"],["american","footballeague"],["kansas","city"],["ross","major"],["major","league"],["league","baseball"],["combat","veteran"],["veteran","best"],["best","known"],["novels","focusing"],["senior","correspondent"],["national","public"],["public","radio"],["radio","james"],["white","jim"],["jim","white"],["carlsbad","caverns"],["caverns","john"],["footballeague","played"],["file","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","municipal"],["carlsbad","municipal"],["municipal","building"],["building","file"],["file","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","public"],["carlsbad","public"],["public","library"],["library","file"],["file","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","museum"],["museum","art"],["carlsbad","museum"],["museum","art"],["art","center"],["center","externalinks"],["externalinks","city"],["carlsbad","official"],["official","website"],["website","visit"],["visit","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","tourism"],["park","service"],["service","carlsbad"],["carlsbad","caverns"],["development","carlsbad"],["carlsbad","chamber"],["county","official"],["official","website"],["website","carlsbad"],["carlsbad","municipal"],["municipal","school"],["school","district"],["district","christmas"],["pecos","carlsbad"],["carlsbad","current"],["historical","photographs"],["carlsbad","area"],["area","category"],["category","carlsbad"],["carlsbad","new"],["new","mexico"],["mexico","category"],["category","cities"],["cities","inew"],["inew","mexico"],["mexico","category"],["category","cities"],["eddy","county"],["county","new"],["new","mexico"],["mexico","category"],["category","county"],["county","seats"],["seats","inew"],["inew","mexico"],["mexico","category"],["new","mexico"],["mexico","category"],["category","populated"],["category","atomic"],["atomic","tourism"],["tourism","category"],["category","establishments"],["establishments","inew"],["inew","mexico"],["mexico","territory"]],"all_collocations":["new mexico","county new","new mexico","mexico eddy","eddy county","mayor council","council government","government leader","leader title","title mayor","mayor leader","leader name","name dale","leader title","title city","name leader","leader title","title new","new mexico","mexico house","house leader","leader name","name leader","leader title","title new","new mexico","mexico state","state senate","senate state","state senate","senate leader","leader name","name leader","leader title","title united","united states","states house","representatives us","us house","house leader","leader title","title founded","eddy established","established title","title municipal","municipal corporation","corporation incorporated","carlsbad area","area magnitude","magnitude area","area total","total area","area land","area water","area total","total area","area land","area water","coordinates population","united states","states census","population total","total population","population density","mountain standard","standard time","time zone","dst mountain","utc offset","offset dst","dst website","website postal","postal code","code type","type zip","zip code","postal code","code area","area code","code area","area code","code blank","blank name","name federal","federal information","information processing","processing standard","code blank","blank info","info blank","blank name","name geographic","geographic names","names information","information system","blank info","info blank","blank name","name primary","primary airport","airport blank","blank info","info cavern","cavern city","city air","air terminal","footnotes pop","pop est","pop est","est footnotes","footnotes population","population est","est population","population density","auto unit","imperial carlsbad","county seat","eddy county","county new","new mexico","mexico eddy","eddy county","county new","new mexico","mexico united","united states","united states","states census","city population","centered athe","athe intersection","us route","route us","us routes","routes us","us route","route us","us route","principal city","statistical area","area whichas","total population","southeastern part","new mexico","mexico carlsbad","pecos river","guadalupe mountains","mountains carlsbad","potash mining","tourism carlsbad","carlsbad caverns","caverns national","national park","located southwest","guadalupe mountains","mountains national","national park","texas border","town history","history development","late th","th century","england switzerland","switzerland france","italy located","located along","pecos river","river carlsbad","municipal corporation","settlement bore","charles b","b eddy","company history","carlsbad withe","withe commercial","commercial development","local mineral","mineral springs","springs near","town later","later voted","famous european","european spa","spa carlsbad","carlsbad bohemia","vary czech","czech republic","growing town","new mexico","mexico washington","irrigation water","water local","pecos river","grazing lands","ranch many","many construction","construction projects","irrigation system","system within","avalon dam","canals diverted","conflict arose","canals methe","methe river","resulthe pecos","pecos river","river flume","built first","later concrete","often titled","river crosses","special excursion","excursion trains","brought visitors","reduced fares","pecos texas","texas pecos","travel parties","parties met","met athe","athe railroad","railroad station","rough dusty","dusty road","growing settlement","pecos river","thearly construction","locally manufactured","manufactured brick","quite soft","poor quality","former first","first national","national bank","bank building","building athe","athe corner","fox streets","remaining buildings","buildings constructed","constructed withe","withe local","local brick","carlsbad caverns","bat cave","local cowboys","subsequent establishment","carlsbad caverns","caverns national","national park","may gained","carlsbad substantial","substantial recognition","discovered near","near carlsbad","american potash","potash market","carlsbad new","new mexico","mexico following","potash market","waste isolation","isolation pilot","pilot plant","low level","level nuclear","nuclear waste","waste would","stored thousands","thousands ofeet","ofeet underground","salt beds","beds congress","congress authorized","construction began","united states","states department","energy doe","doe carlsbad","carlsbad area","area office","office opened","first waste","waste shipment","shipment arrived","currently carlsbad","across thentire","thentire area","area causing","themployment rate","rate due","increase families","carlsbad geography","climate carlsbad","located near","eddy county","carlsbad isituated","northern reaches","lower pecos","pecos river","river valley","valley via","via us","new mexico","pecos texas","texas us","us routes","hobbs new","new mexico","mexico hobbs","el paso","paso texas","texas el","el paso","paso according","united states","states census","census bureau","bureau carlsbad","total area","water within","within city","city limits","limits consists","pecos river","lake carlsbad","carlsbad recreation","recreation area","river flows","northern part","lake avalon","lake passes","passes east","southeast dark","dark canyon","canyon draw","draw also","also runs","southern part","united states","states geological","geological survey","survey retrieved","retrieved september","september carlsbad","interior west","west climate","climate zones","zones united","united states","states forest","forest service","service retrieved","retrieved march","k ppen","ppen climate","climate classification","classification k","k ppen","meaning average","average annual","moderate amount","rain falls","year withe","withe maximum","maximum occurring","eddy county","county since","since date","date august","people households","families residing","city population","population density","housing units","average density","per square","square mile","white american","american white","white non","non hispanic","hispanic african","african american","american black","african american","american asian","asian american","american asian","asian pacific","american pacific","united states","states census","census race","latino americans","whichave children","living withem","married couples","couples living","living together","husband present","non families","someone living","living alone","average household","household size","average family","family size","city population","age ofrom","median age","every females","every females","females age","median income","median income","median income","per capita","capita income","city population","poverty line","total population","poverty line","mayor council","council government","government mayor","mayor council","council form","government voters","bothe mayor","theight members","city council","council two","pass laws","make policy","first meeting","city council","newly elected","elected council","council members","mayor pro","mayor class","class infobox","infobox style","style font","font size","size border","border px","px solid","solid float","float right","right margin","margin left","width px","px style","background f","f f","f colspan","colspan largest","largest employers","carlsbad labor","economic research","research style","style text","left urs","urs corporation","corporation washington","solutions llc","llc style","style text","left carlsbad","carlsbad municipal","align lefthe","mosaic potash","potash carlsbad","carlsbad style","style text","inc style","style text","left carlsbad","carlsbad medical","medical center","center style","style text","left intrepid","intrepid potash","potash style","style text","homes inc","inc style","style text","left lowe","lowe style","style text","left new","new mexico","mexico state","state university","university new","new mexico","mexico state","state university","university carlsbad","carlsbad style","style text","left lakeview","lakeview christian","christian home","home theconomy","carlsbad area","based primarily","mineral extraction","extraction sector","rich oil","gas producing","producing formations","america permian","permian basin","potash thany","united states","states carlsbad","us department","energy doe","doe carlsbad","carlsbad field","field office","waste isolation","isolation pilot","safely store","nuclear wastes","defense sites","sites tourism","major factor","carlsbad caverns","caverns national","national park","park guadalupe","guadalupe mountains","mountains national","national park","living desert","desert zoo","annual christmas","pecos light","light show","show allocated","allocated within","within fifty","fifty miles","city potash","containing compound","compound used","potash deposits","america permian","permian basin","basin two","two companies","mosaic potash","potash carlsbad","carlsbad formerly","intrepid potash","potash formerly","formerly mississippi","mississippi chemical","chemical corporation","corporation operate","operate mining","mining operations","operations east","mines employ","significant number","surrounding communities","company also","also contributes","local charities","charities public","public schools","schools carlsbad","carlsbad municipal","municipal school","school district","operating public","public school","school system","carlsbad municipal","municipal schools","schools besides","mentioned schools","schools carlsbad","carlsbad municipal","municipal schools","schools alsoperates","charter school","school jefferson","carlsbad board","public school","school environment","individual educational","educational needs","children regardless","ability ethnicity","social standing","carlsbad board","public school","school environment","individual educational","educational needs","children regardless","ability ethnicity","social standing","smith pre","pre school","school early","early childhood","childhood education","education center","elementary schools","schools craft","craft elementary","elementary school","elementary school","school joe","joe stanley","stanley smith","smith elementary","elementary school","elementary school","elementary school","school sunset","sunset elementary","elementary school","school middle","middle schools","schools carlsbad","carlsbad intermediate","intermediate school","school high","high schools","schools carlsbad","carlsbad early","early college","college high","high school","school carlsbad","carlsbad high","high school","school carlsbad","carlsbad new","new mexico","mexico carlsbad","carlsbad high","high school","school private","private schools","schools four","four private","private schools","carlsbad faith","faith christian","christian academy","academy trinity","trinity christian","christian academy","academy paradise","paradise christian","christian academy","st edwards","edwards catholic","catholic school","school colleges","universities new","new mexico","mexico state","state university","branch campus","campus located","carlsbad offering","offering certificate","certificate associate","associate degree","degree bachelor","continuing education","education programs","student population","previously known","first community","community college","present day","day main","main building","additional instruction","instruction center","computer facilities","facilities wing","additional building","nursing program","allied health","university transfer","transfer center","center allied","allied health","health grand","grand opening","opening press","county beauty","beauty college","also located","carlsbad providing","providing certification","certification programs","northwood university","branch campuses","carlsbad mediand","mediand journalism","journalism carlsbad","daily except","except monday","monday newspaper","carlsbad current","quarterly magazine","magazine published","local articles","articles related","living shopping","carlsbad focus","carlsbad channel","channel tv","local television","television station","station shown","cable television","television channel","channel tv","channel airs","airs coverage","special events","also local","local news","news many","many residents","residents host","host shows","plant care","science movies","movies like","like leagues","sea film","film leagues","sea meet","meet john","john doe","wednesdays channel","channel tv","currently unavailable","professional baseball","baseball team","independent pecos","pecos league","travel team","played two","two games","full time","time franchise","carlsbad recently","recently constructed","youth sports","sports complex","southwest side","town containing","containing six","four soccer","soccer fields","fields multiple","multiple local","held athe","athe complex","complex yearly","yearly carlsbad","carlsbad high","high school","school carlsbad","carlsbad new","new mexico","mexico carlsbad","carlsbad high","high school","fourth district","new mexico","mexico activities","activities association","association carlsbad","carlsbad high","high school","teams competing","american football","football baseball","basketball track","field golf","women soccer","soccer swimming","swimming wrestling","cycling club","local cycling","cycling bicycle","cavern city","city classic","large success","success weekly","weekly rides","saturdays giving","giving riders","see much","surrounding landscape","landscape annual","annual races","carlsbad runner","national night","file wikipedia","cavern theater","theater major","major highways","highways two","two main","main highways","highways run","city us","us highway","highway us","named canal","canal street","southwest athe","athe intersection","greene street","street heads","heads east","east us","us highway","named canal","canal street","southeast athe","athe intersection","street branches","three road","road bridges","cross waterways","bridge crosses","pecos river","east greene","greene street","street north","north canal","canal bridge","bridge crosses","pecos river","canal street","street south","south canal","canal bridge","bridge crosses","crosses dark","dark canyon","canyon draw","south canal","canal street","street mass","carlsbad municipal","municipal transit","transit system","provides public","public transportation","transportation within","within city","city limits","eddy county","county immediately","immediately adjacento","operates three","three fixed","fixed routes","services persons","general public","public average","average monthly","approximately new","new mexico","mexico transportation","transportation services","private company","company provides","provides daily","daily transportation","waste isolation","isolation pilot","pilot plant","fixed pick","el paso","paso texas","texas el","el paso","paso texas","texas map","routes cavern","cavern city","city air","air terminal","boutique air","air currently","currently offering","offering non","non stop","stop service","albuquerque new","new mexico","mexico albuquerque","fort worth","worth international","international airport","airport dallas","dallas fort","fort worth","essential air","airport carlsbad","dallas fort","fort worth","worth carlsbad","carlsbad current","april retrieved","retrieved roswell","roswell international","international air","located north","roswell new","new mexico","mexico iserved","american eagle","eagle airline","airline brand","brand american","american eagle","eagle offering","offering daily","daily service","dallas fort","fort worth","worth international","international airport","airport flights","phoenix sky","sky harbor","harbor international","international airport","march lea","lea county","county regional","regional airport","located east","hobbs new","new mexico","mexico iserved","united express","express offering","offering daily","daily service","george bush","bush intercontinental","intercontinental airport","houston el","el paso","paso international","international airport","northeastern part","el paso","paso texas","texas west","west carlsbad","carlsbad midland","midland international","international airport","located southeast","carlsbad southwestern","southwestern railroad","railroad new","new mexico","mexico southwestern","southwestern railroad","railroad operates","carlsbad area","area providing","providing freight","freight service","local potash","potash mines","mines two","two yard","yard operations","carlsbad one","church streets","energy provides","provides electricity","carlsbad area","area new","new mexico","mexico gas","gas company","company provides","provides natural","state including","including carlsbad","drinking water","city also","also provides","provides waste","waste trash","recycling service","residents trash","town operated","eddy county","county new","new mexico","mexico eddy","eddy county","county carlsbad","carlsbad medical","medical center","primary hospital","hospital facility","facility serving","greater carlsbad","carlsbad area","area operated","community health","health systems","bed acute","acute care","care facility","facility including","hour emergency","emergency room","room imaging","imaging systems","also home","specialty clinics","clinics carlsbad","carlsbad mental","mental health","health association","association provides","provides mental","mental health","abuse treatment","treatment family","employee assistance","assistance programs","programs two","two nursing","nursing home","lakeview christian","christian home","home research","research development","technology facilities","facilities carlsbad","carlsbad haseveral","haseveral research","research facilitiesuch","carlsbad environmental","environmental monitoring","research center","center operated","new mexico","mexico state","state university","university carlsbad","carlsbad environmental","environmental monitoring","research center","national cave","karst research","research center","center operated","new mexico","mexico tech","national park","park service","carlsbad national","national cave","karst research","research center","united states","states department","los alamos","alamos nationalaboratory","nationalaboratory eachave","eachave branch","branch operations","city operate","aero tech","tech industrial","industrial technology","technology park","park including","advanced manufacturing","innovation training","training center","center carlsbad","businesses points","interest carlsbad","carlsbad caverns","caverns national","national park","park southwest","southwest guadalupe","guadalupe mountains","mountains national","national park","park southwest","forest west","west carlsbad","carlsbad museum","museum art","art center","center carlsbad","carlsbad living","living desert","desert zoo","painting bear","bear maggie","non toxic","toxic paint","paint colors","heavy white","white paper","paper thathe","thathe zoo","zoo curator","curator places","holding area","area maggie","paint maggie","see maggie","art work","several art","art exhibits","exhibits throughout","throughout carlsbad","carlsbad national","national cave","karst research","research center","center pecos","pecos river","river flume","flume project","project playground","artist gallery","gallery notable","notable people","people shane","shane andrews","andrews major","major league","league baseball","baseball third","three clubs","eight years","years bruce","played jack","film king","king kong","kong film","film king","king kong","kong appeared","close friend","friend john","john wayne","films jason","air force","died saving","saving lives","servicemen air","air force","force cross","cross recipient","recipient sam","professional football","football player","national footballeague","canadian footballeague","footballeague alfred","alfred alexander","mexico territorial","territorial judge","tennessee politician","politician f","f drew","payload specialist","specialist aboard","aboard sts","university frank","national footballeague","footballeague played","mark jackson","mark jackson","football player","player bob","bob kelly","kelly american","american football","football born","born bob","bob kelly","kelly american","american footballeague","kansas city","ross major","major league","league baseball","combat veteran","veteran best","best known","novels focusing","senior correspondent","national public","public radio","radio james","white jim","jim white","carlsbad caverns","caverns john","footballeague played","file carlsbad","carlsbad new","new mexico","mexico municipal","carlsbad municipal","municipal building","building file","file carlsbad","carlsbad new","new mexico","mexico public","carlsbad public","public library","library file","file carlsbad","carlsbad new","new mexico","mexico museum","museum art","carlsbad museum","museum art","art center","center externalinks","externalinks city","carlsbad official","official website","website visit","visit carlsbad","carlsbad new","new mexico","mexico tourism","park service","service carlsbad","carlsbad caverns","development carlsbad","carlsbad chamber","county official","official website","website carlsbad","carlsbad municipal","municipal school","school district","district christmas","pecos carlsbad","carlsbad current","historical photographs","carlsbad area","area category","category carlsbad","carlsbad new","new mexico","mexico category","category cities","cities inew","inew mexico","mexico category","category cities","eddy county","county new","new mexico","mexico category","category county","county seats","seats inew","inew mexico","mexico category","new mexico","mexico category","category populated","category atomic","atomic tourism","tourism category","category establishments","establishments inew","inew mexico","mexico territory"],"new_description":"new mexico county_new mexico eddy county mayor council government leader_title mayor leader_name dale leader_title city name_leader_title new_mexico house house leader_name leader_title new_mexico state senate state senate leader_name leader_title united_states house representatives us house leader_title founded eddy established title municipal corporation incorporated eddy carlsbad area magnitude area total area land area water area total area land area water elevation elevation coordinates population population united_states census population total population density auto mountain standard time zone utc dst mountain utc offset dst website postal code type zip code postal code area code area code blank name federal information processing standard code blank info blank name geographic names information system feature blank info blank name primary airport blank info cavern city air terminal footnotes pop est pop est footnotes population est population density auto unit imperial carlsbad city county seat eddy county_new mexico eddy county_new mexico united_states united_states census city population carlsbad centered athe intersection us_route us_routes us_route us_route principal city carlsbad statistical area whichas total population located southeastern part new_mexico carlsbad pecos_river sits edge guadalupe mountains carlsbad hub potash mining production tourism carlsbad caverns national_park located southwest city guadalupe mountains national_park across texas border forest northwest town history development mexico late_th century fueled arrival colonies immigrants england switzerland france italy located along banks pecos_river carlsbad originally town eddy september organized municipal corporation settlement bore name charles b eddy company history carlsbad withe commercial development local mineral springs near flume qualities town later voted change name carlsbad famous european spa carlsbad bohemia vary czech_republic march growing town population allowing governor new_mexico washington carlsbad city carlsbad development due irrigation water local recognized value water pecos_river grazing lands eddy ranch many construction projects undertaken establish irrigation system within town avalon dam constructed town canals diverted water conflict arose canals methe river resulthe pecos_river flume built first wood later concrete flume often titled place river crosses key growth area special excursion trains brought visitors theast reduced fares railroad completed pecos texas pecos travel parties met athe railroad station texas driven buggy rough dusty road growing settlement banks pecos_river thearly construction carlsbad completed locally manufactured brick quite soft poor quality former first national bank building athe_corner canal fox streets one remaining buildings constructed withe local brick discovery carlsbad caverns known bat cave local cowboys subsequent establishment carlsbad caverns national_park may gained town carlsbad substantial recognition potash discovered near carlsbad manyears american potash market carlsbad new_mexico following decline potash market residents leaders carlsbad thestablishment waste isolation pilot plant site low level nuclear waste would stored thousands ofeet underground salt beds congress authorized construction_began united_states department energy doe carlsbad area office opened first waste shipment arrived currently carlsbad experienced boom city leading production oil natural across thentire area causing increase themployment rate due increase families individuals begun carlsbad geography climate carlsbad located_near center eddy county elevation carlsbad isituated northern reaches desert lower pecos_river valley via us north new_mexico south pecos texas us_routes lead hobbs new_mexico hobbs el_paso texas el_paso according united_states census bureau carlsbad total area city land water water within city limits consists pecos_river lake carlsbad recreation area river flows northern part lake avalon lake passes east downtown exits southeast dark canyon draw also runs southern part town drains heavy canyon united_states geological survey retrieved september carlsbad part interior west climate climate zones united_states forest_service retrieved_march classified k ppen climate classification k ppen meaning average annual less potential potential half moderate amount rain falls year withe maximum occurring september reported eddy county since date august us census census people households families residing city population density housing units average density per square mile racial city white american white non hispanic african_american black african_american asian american asian pacific american pacific race ethnicity united_states census race american twor races population hispanic latino americans latinos race households whichave children age living withem married couples living together female husband present non families households made individuals someone living alone years age older average household size average family size city population age ofrom years age older median age years every females males every females age males median income household city median income family males median income versus females per capita income city population poverty line total population age older living poverty line city carlsbad mayor council government mayor council form government voters bothe mayor theight members city_council two ward pass laws make policy first meeting city_council newly elected council members seated council mayor pro serves mayor absence mayor class infobox style font_size border px_solid float right margin left width_px style background f f colspan largest employers carlsbad labor economic research style_text align left urs corporation washington solutions llc style_text align left carlsbad municipal text align lefthe mosaic potash carlsbad style_text align left inc style_text align left carlsbad medical_center style_text align left intrepid potash style_text align left homes inc style_text align left lowe style_text align left new_mexico state_university new_mexico state_university carlsbad style_text align left lakeview christian home theconomy carlsbad area based primarily mineral extraction sector city rich oil gas producing formations permian america permian basin produces potash thany location united_states carlsbad home us_department energy doe carlsbad field office operates waste isolation pilot safely store nuclear wastes nation defense sites tourism major factor carlsbad caverns national_park guadalupe mountains national_park living desert zoo park annual christmas pecos light show allocated within fifty miles city potash containing compound used along nitrogen potash deposits across permian america permian basin two companies mosaic potash carlsbad formerly global intrepid potash formerly mississippi chemical corporation operate mining operations east carlsbad mines employ significant number workers surrounding communities company_also contributes local charities public schools carlsbad municipal school district operating public school system carlsbad municipal schools besides mentioned schools carlsbad municipal schools alsoperates charter school jefferson academy mission carlsbad board education create public school environment meets individual educational needs children regardless ability ethnicity gender social standing mission carlsbad board education create public school environment meets individual educational needs children regardless ability ethnicity gender social standing schools e smith pre school early childhood education center elementary_schools craft elementary_school elementary_school joe stanley smith elementary_school elementary_school school elementary_school school sunset elementary_school middle schools carlsbad intermediate school high_schools carlsbad early college high_school carlsbad high_school carlsbad new_mexico carlsbad high_school private schools four private schools located carlsbad faith christian academy trinity christian academy paradise christian academy st edwards catholic school colleges universities new_mexico state_university branch campus located carlsbad offering certificate associate degree bachelor degree continuing education programs student population approximately staff previously known carlsbad center campus established state first community college renamed branch present_day main_building built additional instruction center added computer facilities wing completed campus additional building house nursing program allied health university transfer center allied health grand opening press county beauty college also located carlsbad providing certification programs college southwest northwood university previously branch campuses carlsbad mediand journalism carlsbad daily except monday newspaper carlsbad current focus carlsbad quarterly magazine_published local articles related living shopping carlsbad focus carlsbad channel tv local television station shown cable television channel tv_channel airs coverage special_events also local news many residents host shows topics plant care science movies like leagues sea film leagues sea meet john doe street shown wednesdays channel tv currently unavailable carlsbad professional baseball team member independent pecos league primarily travel team league played two games carlsbad carlsbad considered full_time franchise carlsbad recently constructed youth sports complex southwest side town containing six four soccer fields multiple local regional held_athe complex yearly carlsbad high_school carlsbad new_mexico carlsbad high_school school fourth district new_mexico activities association carlsbad high_school teams competing sports american football baseball basketball track field golf men women soccer swimming wrestling rodeo carlsbad cycling club local cycling bicycle hosting cavern city classic large success weekly rides held saturdays giving riders chance see much surrounding landscape annual races walking organized carlsbad runner club national night file wikipedia carlsbad thumb cavern theater major highways two_main highways run city us_highway us named canal street enters city southwest athe intersection greene street heads east us_highway named canal street southeast athe intersection street branches three road bridges cross waterways serve municipality bridge crosses pecos_river east greene street north canal bridge crosses pecos_river canal street south canal bridge crosses dark canyon draw south canal street mass carlsbad municipal transit system provides public_transportation within city limits carlsbad portions eddy county immediately adjacento city operates three fixed routes general ride june operates fleet vans services persons general_public average monthly approximately new_mexico transportation_services private_company provides daily transportation waste isolation pilot plant employees fixed pick locations carlsbad route_el_paso texas el_paso texas map routes cavern city air terminal located south carlsbad boutique air currently offering non stop service albuquerque new_mexico albuquerque fort_worth international_airport dallas fort_worth essential air airport carlsbad connected dallas fort_worth carlsbad current april retrieved roswell international air located north carlsbad roswell new_mexico iserved american eagle airline brand american eagle offering daily service dallas fort_worth international_airport flights phoenix sky harbor international_airport scheduled begin march lea county regional airport located east carlsbad hobbs new_mexico iserved united express offering daily service george_bush intercontinental airport houston el_paso international_airport located northeastern part el_paso texas west carlsbad midland international_airport located southeast midland carlsbad southwestern railroad new_mexico southwestern railroad operates santa railways carlsbad area providing freight service local potash mines two yard operations present carlsbad one avenue lane greene church streets energy provides electricity carlsbad area new_mexico gas company provides natural customers state including carlsbad city carlsbad responsible delivery drinking water treatment city also_provides waste trash recycling service residents trash east town operated eddy county_new mexico eddy county carlsbad medical_center primary hospital facility serving greater carlsbad area operated community health systems bed acute care facility including hour emergency room imaging systems services town also home clinics facilities center specialty clinics carlsbad mental health association provides mental health abuse treatment family youth services employee assistance programs two nursing home present carlsbad homes lakeview christian home research development technology facilities carlsbad haseveral research facilitiesuch carlsbad environmental monitoring research_center operated new_mexico state_university carlsbad environmental monitoring research_center national cave karst research_center operated new_mexico tech national_park service city carlsbad national cave karst research_center united_states department energy los_alamos nationalaboratory eachave branch operations carlsbad development city operate aero tech industrial technology park including advanced manufacturing innovation training center carlsbad businesses points interest carlsbad caverns national_park southwest guadalupe mountains national_park southwest texas forest west carlsbad museum art center carlsbad park carlsbad living desert zoo park features painting bear maggie wither variety non toxic paint colors heavy white paper thathe zoo curator places holding area maggie choose color use pattern paint maggie paintings framed public see maggie art work featured several art exhibits throughout carlsbad national cave karst research_center pecos_river flume project project playground artist gallery notable people shane andrews major league baseball third three clubs eight years bruce actor played jack film king kong film king kong appeared many close friend john wayne films jason air_force died saving lives servicemen air_force cross recipient sam professional football player national footballeague canadian footballeague alfred alexander mexico territorial judge tennessee politician f drew payload specialist aboard sts professor university frank national footballeague played philadelphia mark jackson mark jackson football player bob kelly american football born bob kelly american footballeague offensive houston kansas_city cincinnati ross major league baseball arizona barry author combat veteran best_known series novels focusing song green singer linda senior correspondent national_public radio james white jim white explorer carlsbad caverns john_footballeague played cleveland washington file carlsbad new_mexico municipal carlsbad municipal building file carlsbad new_mexico public carlsbad public_library file carlsbad new_mexico museum art carlsbad museum art center externalinks city carlsbad official_website visit carlsbad new_mexico tourism visitor park_service carlsbad caverns development carlsbad chamber county official_website carlsbad municipal school district christmas pecos carlsbad current historical photographs carlsbad area_category carlsbad new_mexico category cities inew_mexico_category cities eddy county_new mexico_category county seats inew_mexico_category areas new_mexico category populated category_atomic_tourism_category_establishments inew_mexico territory"},{"title":"Cartopia","description":"file set jpg thumb potato champion athe cartopia food cart pod in portland or cartopia is a food cart pod lot of many food trucks located on the corner of se th avenue and hawthorne portland oregon hawthorne boulevard in south east portland oregon it is the home of potato champion perierra creperie pyro pizza chicken guns el brasero and tahrir square the famous cart pod has occupied the corner of hawthorne portland oregon hawthorne boulevard and se th avenue since it is often referred to as one of the cart pods that pioneered the now iconic food cart culture in portland oregon it is alsone of the pioneers of portland s late night food scene as of november all the carts athe lot have been given year leases category culture of portland oregon category food trucks","main_words":["file","set","jpg","thumb","potato","champion","athe","food_cart","pod","portland","food_cart","pod","lot","many","food_trucks","located","corner","th","avenue","hawthorne","portland_oregon","hawthorne","boulevard","south_east","portland_oregon","home","potato","champion","pizza","chicken","guns","el","square","famous","cart","pod","occupied","corner","hawthorne","portland_oregon","hawthorne","boulevard","th","avenue","since","often_referred","one","cart","pods","pioneered","iconic","food_cart","culture","portland_oregon","alsone","pioneers","portland","late_night","food","scene","november","carts","athe","lot","given","year","category_culture","portland_oregon","category_food","trucks"],"clean_bigrams":[["file","set"],["set","jpg"],["jpg","thumb"],["thumb","potato"],["potato","champion"],["champion","athe"],["food","cart"],["cart","pod"],["food","cart"],["cart","pod"],["pod","lot"],["many","food"],["food","trucks"],["trucks","located"],["th","avenue"],["hawthorne","portland"],["portland","oregon"],["oregon","hawthorne"],["hawthorne","boulevard"],["south","east"],["east","portland"],["portland","oregon"],["potato","champion"],["pizza","chicken"],["chicken","guns"],["guns","el"],["famous","cart"],["cart","pod"],["hawthorne","portland"],["portland","oregon"],["oregon","hawthorne"],["hawthorne","boulevard"],["th","avenue"],["avenue","since"],["often","referred"],["cart","pods"],["iconic","food"],["food","cart"],["cart","culture"],["portland","oregon"],["late","night"],["night","food"],["food","scene"],["carts","athe"],["athe","lot"],["given","year"],["category","culture"],["portland","oregon"],["oregon","category"],["category","food"],["food","trucks"]],"all_collocations":["file set","set jpg","thumb potato","potato champion","champion athe","food cart","cart pod","food cart","cart pod","pod lot","many food","food trucks","trucks located","th avenue","hawthorne portland","portland oregon","oregon hawthorne","hawthorne boulevard","south east","east portland","portland oregon","potato champion","pizza chicken","chicken guns","guns el","famous cart","cart pod","hawthorne portland","portland oregon","oregon hawthorne","hawthorne boulevard","th avenue","avenue since","often referred","cart pods","iconic food","food cart","cart culture","portland oregon","late night","night food","food scene","carts athe","athe lot","given year","category culture","portland oregon","oregon category","category food","food trucks"],"new_description":"file set jpg thumb potato champion athe food_cart pod portland food_cart pod lot many food_trucks located corner th avenue hawthorne portland_oregon hawthorne boulevard south_east portland_oregon home potato champion pizza chicken guns el square famous cart pod occupied corner hawthorne portland_oregon hawthorne boulevard th avenue since often_referred one cart pods pioneered iconic food_cart culture portland_oregon alsone pioneers portland late_night food scene november carts athe lot given year category_culture portland_oregon category_food trucks"},{"title":"Carvery","description":"image carvery mealjpg thumb right px a typical carvery meal from a pub in south africa carvery is a restaurant where cooked meat is freshly sliced torder for customersometimes offering unlimited servings for a fixed price the term is most commonly used in the united kingdom republic of ireland cyprus and commonwealth countries like canadand australia but it is also found in the united states description carveries are often found in pub s and hotels and are particularly commonly held at weekends when they offer traditional sunday roast s to a potentially large number of people the meat is usually accompanied by a choice of potato es generally at least boiled mashed potato mashed and roasted and other vegetables commonly including carrot s parsnips peas and other traditional british vegetables with gravy and a sauce considered a traditional accompanimento the various meats for example mint sauce to accompany roast lamb food lamb apple sauce to accompany roast pork and son carverys existed as early as in london in twof j lyons and co lyons corner houses one of the restaurants in each of the strand london strand the tottenham court road lyons was a carvery they provided a three course meal with beverage but all buthe carvery items were served by a nippy waitress even the carvery table had an employee to help those having difficulty in the actual carving the price athis time was five shillings in the s and later many more carverys appeared in londone well known carvery wasituated in the regent palace hotel the restauranthere was on the ground floor the art deco ceiling of whichas been reassembled in the new air w building image sign of the beefcarverestaurant dearbornjpg thumb right sign of the beefcarverestaurant dearborn michigan later they were operated by pub chain such as harvesterestaurant harvester brewer s fayre and beefeaterestaurant beefeater the toby carvery brand took over many former beefeater sites the chain ofuzzy s grub in london is a noted carvery being voted bestraditional british restaurant but all buthe carv in london in harden s guide carveries are also commonly offered by many local pub s united statesome restaurants in the use the term or concept and it is a staple at some buffet s examples include the house of prime rib a standing rib roast prime rib carvery in san francisco california lawry s may be described as a carvery serving almost exclusively roast beef and uses the term for one branch lawry s carvery the sign of the beefcarver a carvery chain michigan most california style hofbrau restaurants may also be considered carveries externalinks chowhoundiscussion of london carveries category types of restaurants category serving andining","main_words":["image","carvery","thumb","right","px","typical","carvery","meal","pub","south_africa","carvery","restaurant","cooked","meat","freshly","sliced","torder","offering","unlimited","servings","fixed","price","term","commonly_used","united_kingdom","republic","ireland","cyprus","commonwealth","countries","like","canadand","australia","also_found","united_states","description","carveries","often","found","pub","hotels","particularly","commonly","held","weekends","offer","traditional","sunday","roast","potentially","large_number","people","meat","usually","accompanied","choice","potato","generally","least","boiled","mashed","potato","mashed","roasted","vegetables","commonly","including","peas","traditional","british","vegetables","gravy","sauce","considered","traditional","various","meats","example","mint","sauce","accompany","roast","lamb","food","lamb","apple","sauce","accompany","roast","pork","son","existed","early","london","twof","j","lyons","lyons","corner","houses","one","restaurants","strand","london","strand","tottenham","court","road","lyons","carvery","provided","three","course","meal","beverage","buthe","carvery","items","served","waitress","even","carvery","table","employee","help","difficulty","actual","carving","price","athis","time","five","shillings","later","many","appeared","well_known","carvery","regent","palace","hotel","restauranthere","ground_floor","art_deco","ceiling","whichas","new","air","w","building","image","sign","thumb","right","sign","michigan","later","operated","pub_chain","harvesterestaurant","harvester","brewer","beefeater","carvery","brand","took","many","former","beefeater","sites","chain","grub","london","noted","carvery","voted","british","restaurant","buthe","london","harden","guide","carveries","also_commonly","offered","many","local","pub","united_statesome","restaurants","use","term","concept","staple","buffet","examples_include","house","prime","rib","standing","rib","roast","prime","rib","carvery","san_francisco_california","may","described","carvery","serving","almost","exclusively","roast","beef","uses","term","one","branch","carvery","sign","carvery","chain","michigan","california","style_restaurants","may_also","considered","carveries","externalinks","london","carveries","category_types","restaurants_category","serving","andining"],"clean_bigrams":[["image","carvery"],["thumb","right"],["right","px"],["typical","carvery"],["carvery","meal"],["south","africa"],["africa","carvery"],["cooked","meat"],["freshly","sliced"],["sliced","torder"],["offering","unlimited"],["unlimited","servings"],["fixed","price"],["commonly","used"],["united","kingdom"],["kingdom","republic"],["ireland","cyprus"],["commonwealth","countries"],["countries","like"],["like","canadand"],["canadand","australia"],["also","found"],["united","states"],["states","description"],["description","carveries"],["often","found"],["particularly","commonly"],["commonly","held"],["offer","traditional"],["traditional","sunday"],["sunday","roast"],["potentially","large"],["large","number"],["usually","accompanied"],["least","boiled"],["boiled","mashed"],["mashed","potato"],["potato","mashed"],["vegetables","commonly"],["commonly","including"],["traditional","british"],["british","vegetables"],["sauce","considered"],["various","meats"],["example","mint"],["mint","sauce"],["accompany","roast"],["roast","lamb"],["lamb","food"],["food","lamb"],["lamb","apple"],["apple","sauce"],["accompany","roast"],["roast","pork"],["twof","j"],["j","lyons"],["lyons","corner"],["corner","houses"],["houses","one"],["strand","london"],["london","strand"],["tottenham","court"],["court","road"],["road","lyons"],["three","course"],["course","meal"],["buthe","carvery"],["carvery","items"],["waitress","even"],["carvery","table"],["actual","carving"],["price","athis"],["athis","time"],["five","shillings"],["later","many"],["well","known"],["known","carvery"],["regent","palace"],["palace","hotel"],["ground","floor"],["art","deco"],["deco","ceiling"],["new","air"],["air","w"],["w","building"],["building","image"],["image","sign"],["thumb","right"],["right","sign"],["michigan","later"],["pub","chain"],["harvesterestaurant","harvester"],["harvester","brewer"],["carvery","brand"],["brand","took"],["many","former"],["former","beefeater"],["beefeater","sites"],["noted","carvery"],["british","restaurant"],["guide","carveries"],["also","commonly"],["commonly","offered"],["many","local"],["local","pub"],["united","statesome"],["statesome","restaurants"],["examples","include"],["prime","rib"],["standing","rib"],["rib","roast"],["roast","prime"],["prime","rib"],["rib","carvery"],["san","francisco"],["francisco","california"],["carvery","serving"],["serving","almost"],["almost","exclusively"],["exclusively","roast"],["roast","beef"],["one","branch"],["carvery","chain"],["chain","michigan"],["california","style"],["restaurants","may"],["may","also"],["considered","carveries"],["carveries","externalinks"],["london","carveries"],["carveries","category"],["category","types"],["restaurants","category"],["category","serving"],["serving","andining"]],"all_collocations":["image carvery","typical carvery","carvery meal","south africa","africa carvery","cooked meat","freshly sliced","sliced torder","offering unlimited","unlimited servings","fixed price","commonly used","united kingdom","kingdom republic","ireland cyprus","commonwealth countries","countries like","like canadand","canadand australia","also found","united states","states description","description carveries","often found","particularly commonly","commonly held","offer traditional","traditional sunday","sunday roast","potentially large","large number","usually accompanied","least boiled","boiled mashed","mashed potato","potato mashed","vegetables commonly","commonly including","traditional british","british vegetables","sauce considered","various meats","example mint","mint sauce","accompany roast","roast lamb","lamb food","food lamb","lamb apple","apple sauce","accompany roast","roast pork","twof j","j lyons","lyons corner","corner houses","houses one","strand london","london strand","tottenham court","court road","road lyons","three course","course meal","buthe carvery","carvery items","waitress even","carvery table","actual carving","price athis","athis time","five shillings","later many","well known","known carvery","regent palace","palace hotel","ground floor","art deco","deco ceiling","new air","air w","w building","building image","image sign","right sign","michigan later","pub chain","harvesterestaurant harvester","harvester brewer","carvery brand","brand took","many former","former beefeater","beefeater sites","noted carvery","british restaurant","guide carveries","also commonly","commonly offered","many local","local pub","united statesome","statesome restaurants","examples include","prime rib","standing rib","rib roast","roast prime","prime rib","rib carvery","san francisco","francisco california","carvery serving","serving almost","almost exclusively","exclusively roast","roast beef","one branch","carvery chain","chain michigan","california style","restaurants may","may also","considered carveries","carveries externalinks","london carveries","carveries category","category types","restaurants category","category serving","serving andining"],"new_description":"image carvery thumb right px typical carvery meal pub south_africa carvery restaurant cooked meat freshly sliced torder offering unlimited servings fixed price term commonly_used united_kingdom republic ireland cyprus commonwealth countries like canadand australia also_found united_states description carveries often found pub hotels particularly commonly held weekends offer traditional sunday roast potentially large_number people meat usually accompanied choice potato generally least boiled mashed potato mashed roasted vegetables commonly including peas traditional british vegetables gravy sauce considered traditional various meats example mint sauce accompany roast lamb food lamb apple sauce accompany roast pork son existed early london twof j lyons lyons corner houses one restaurants strand london strand tottenham court road lyons carvery provided three course meal beverage buthe carvery items served waitress even carvery table employee help difficulty actual carving price athis time five shillings later many appeared well_known carvery regent palace hotel restauranthere ground_floor art_deco ceiling whichas new air w building image sign thumb right sign michigan later operated pub_chain harvesterestaurant harvester brewer beefeater carvery brand took many former beefeater sites chain grub london noted carvery voted british restaurant buthe london harden guide carveries also_commonly offered many local pub united_statesome restaurants use term concept staple buffet examples_include house prime rib standing rib roast prime rib carvery san_francisco_california may described carvery serving almost exclusively roast beef uses term one branch carvery sign carvery chain michigan california style_restaurants may_also considered carveries externalinks london carveries category_types restaurants_category serving andining"},{"title":"Cave of Dogs","description":"file mangin arthur png thumb the cave of dogs near puzzuolitaly a guide shows a suffocatedog to a mand woman touristhe cave of dogs in italian grotta del cane literally cave of the dog is a small cave on theastern side of the phlegraean fields near pozzuoli naples inside the cave is a fumarole that releases carbon dioxide of volcanic origin it was a tourist attraction for travellers on the grand tour the co gas being denser than air tends to accumulate in the deeper parts of the cave local guides for a fee would suspend small animals inside it usually dogs until they became unconscious because humans inhaled air from a higher level they were not affected the dogs might be revived by submerging them in the cold waters of the nearby lake agnano famous tourists who came to see this attraction included goethe alexandre dumas p re and mark twain the lake became polluted and it was drained in the spectacle fell into desuetude and the cave was closed however the area is now being restored by volunteerstaylor alfred swaine an account of the grotta del cane with remarks upon suffocation by carbonic acid the london medical and physical journal johnson toxic airs body place planet in historical perspective pittsburgh kroonenberg why hell stinks of sulfur mythology and geology of the underworld chicago jeff matthews naples life death miracles agnano the grottof the dog visited the area degraded terribly after wwii and became an eyesore from shoddy overbuilding and illegal waste dumping i drove by the baths hundreds of times over the years and never knew abouthe lake never knew that i was yards from the grottof the dogrotta del cane visited file from taylor png thumb the principle of the cave of dogsketched by alfred swaine taylor the cave was often described inineteenth century science textbooks to illustrate the density and toxicity of carbon dioxide the above image is from l air et le monde a rien an textbook by arthur mangin p and its reputation has given rise to a popular scientific demonstration of the same name stepped candles are successively extinguished by tipping carbon dioxide into a transparent container a videof this has been made visited the cave was recently investigated by italian speleologists including rosario varriale who interpreted it as a man made cavity constructed in antiquity possibly as a sudatorium the carbon dioxide level was measured at napoli underground grotta del cane nuove ricerche visited according to the australian speleologist garry k smith a concentration of produces in humans violent panting and fatigue to the point of exhaustion merely from respiration severe headache prolonged exposure at could result in irreversibleffects to health prolonged exposure at could result in unconsciousness andeath category caves of italy category carbon dioxide category campanian volcanic arcategory cruelty to animals category science demonstrations category speleology category toxicology category tourism in italy category tourist attractions in campania category volcanism of italy category geotourism","main_words":["file","arthur","png_thumb","cave","dogs","near","guide","shows","mand","woman","cave","dogs","italian","grotta","del","cane","literally","cave","dog","small","cave","theastern","side","fields","near","naples","inside","cave","releases","carbon","dioxide","origin","tourist_attraction","travellers","grand_tour","gas","air","tends","deeper","parts","cave","local","guides","fee","would","small","animals","inside","usually","dogs","became","humans","inhaled","air","higher","level","affected","dogs","might","revived","cold","waters","nearby","lake","famous","tourists","came","see","attraction","included","goethe","p","mark","twain","lake","became","spectacle","fell","cave","closed","however","area","restored","alfred","account","grotta","del","cane","remarks","upon","acid","london","medical","physical","journal","johnson","toxic","airs","body","place","planet","historical","perspective","pittsburgh","hell","mythology","geology","underworld","chicago","jeff","naples","life","death","dog","visited","area","degraded","became","illegal","waste","drove","baths","hundreds","times","years","never","knew","abouthe","lake","never","knew","yards","del","cane","visited","file","taylor","png_thumb","principle","cave","alfred","taylor","cave","often","described","century","science","illustrate","density","carbon","dioxide","image","l","air","monde","textbook","arthur","p","reputation","given","rise","popular","scientific","demonstration","name","stepped","candles","tipping","carbon","dioxide","transparent","container","videof","made","visited","cave","recently","investigated","italian","including","interpreted","man_made","cavity","constructed","antiquity","possibly","carbon","dioxide","level","measured","underground","grotta","del","cane","visited","according","australian","k","smith","concentration","produces","humans","violent","fatigue","point","merely","severe","exposure","could","result","health","exposure","could","result","andeath","category","caves","carbon","dioxide","category","cruelty","animals","category","science","category","category","category_tourism","attractions_category","geotourism"],"clean_bigrams":[["arthur","png"],["png","thumb"],["dogs","near"],["guide","shows"],["mand","woman"],["italian","grotta"],["grotta","del"],["del","cane"],["cane","literally"],["literally","cave"],["small","cave"],["theastern","side"],["fields","near"],["naples","inside"],["releases","carbon"],["carbon","dioxide"],["tourist","attraction"],["grand","tour"],["air","tends"],["deeper","parts"],["cave","local"],["local","guides"],["fee","would"],["small","animals"],["animals","inside"],["usually","dogs"],["humans","inhaled"],["inhaled","air"],["higher","level"],["dogs","might"],["cold","waters"],["nearby","lake"],["famous","tourists"],["attraction","included"],["included","goethe"],["mark","twain"],["lake","became"],["spectacle","fell"],["closed","however"],["grotta","del"],["del","cane"],["remarks","upon"],["london","medical"],["physical","journal"],["journal","johnson"],["johnson","toxic"],["toxic","airs"],["airs","body"],["body","place"],["place","planet"],["historical","perspective"],["perspective","pittsburgh"],["underworld","chicago"],["chicago","jeff"],["naples","life"],["life","death"],["dog","visited"],["area","degraded"],["illegal","waste"],["baths","hundreds"],["never","knew"],["knew","abouthe"],["abouthe","lake"],["lake","never"],["never","knew"],["del","cane"],["cane","visited"],["visited","file"],["taylor","png"],["png","thumb"],["often","described"],["century","science"],["carbon","dioxide"],["l","air"],["given","rise"],["popular","scientific"],["scientific","demonstration"],["name","stepped"],["stepped","candles"],["tipping","carbon"],["carbon","dioxide"],["transparent","container"],["made","visited"],["recently","investigated"],["man","made"],["made","cavity"],["cavity","constructed"],["antiquity","possibly"],["carbon","dioxide"],["dioxide","level"],["underground","grotta"],["grotta","del"],["del","cane"],["cane","visited"],["visited","according"],["k","smith"],["humans","violent"],["could","result"],["could","result"],["andeath","category"],["category","caves"],["italy","category"],["category","carbon"],["carbon","dioxide"],["dioxide","category"],["animals","category"],["category","science"],["category","tourism"],["italy","category"],["category","tourist"],["tourist","attractions"],["italy","category"],["category","geotourism"]],"all_collocations":["arthur png","png thumb","dogs near","guide shows","mand woman","italian grotta","grotta del","del cane","cane literally","literally cave","small cave","theastern side","fields near","naples inside","releases carbon","carbon dioxide","tourist attraction","grand tour","air tends","deeper parts","cave local","local guides","fee would","small animals","animals inside","usually dogs","humans inhaled","inhaled air","higher level","dogs might","cold waters","nearby lake","famous tourists","attraction included","included goethe","mark twain","lake became","spectacle fell","closed however","grotta del","del cane","remarks upon","london medical","physical journal","journal johnson","johnson toxic","toxic airs","airs body","body place","place planet","historical perspective","perspective pittsburgh","underworld chicago","chicago jeff","naples life","life death","dog visited","area degraded","illegal waste","baths hundreds","never knew","knew abouthe","abouthe lake","lake never","never knew","del cane","cane visited","visited file","taylor png","png thumb","often described","century science","carbon dioxide","l air","given rise","popular scientific","scientific demonstration","name stepped","stepped candles","tipping carbon","carbon dioxide","transparent container","made visited","recently investigated","man made","made cavity","cavity constructed","antiquity possibly","carbon dioxide","dioxide level","underground grotta","grotta del","del cane","cane visited","visited according","k smith","humans violent","could result","could result","andeath category","category caves","italy category","category carbon","carbon dioxide","dioxide category","animals category","category science","category tourism","italy category","category tourist","tourist attractions","italy category","category geotourism"],"new_description":"file arthur png_thumb cave dogs near guide shows mand woman cave dogs italian grotta del cane literally cave dog small cave theastern side fields near naples inside cave releases carbon dioxide origin tourist_attraction travellers grand_tour gas air tends deeper parts cave local guides fee would small animals inside usually dogs became humans inhaled air higher level affected dogs might revived cold waters nearby lake famous tourists came see attraction included goethe p mark twain lake became spectacle fell cave closed however area restored alfred account grotta del cane remarks upon acid london medical physical journal johnson toxic airs body place planet historical perspective pittsburgh hell mythology geology underworld chicago jeff naples life death dog visited area degraded became illegal waste drove baths hundreds times years never knew abouthe lake never knew yards del cane visited file taylor png_thumb principle cave alfred taylor cave often described century science illustrate density carbon dioxide image l air monde textbook arthur p reputation given rise popular scientific demonstration name stepped candles tipping carbon dioxide transparent container videof made visited cave recently investigated italian including interpreted man_made cavity constructed antiquity possibly carbon dioxide level measured underground grotta del cane visited according australian k smith concentration produces humans violent fatigue point merely severe exposure could result health exposure could result andeath category caves italy_category carbon dioxide category cruelty animals category science category category category_tourism italy_category_tourist attractions_category italy_category geotourism"},{"title":"Celebrated Living","description":"oclcelebrated living is a free quarterly in flight magazine available on american airlines flights in first and business class and american airlines admirals club american airlines admirals club s worldwide history and profile celebrated living was established in the first issue appeared on october of that year the magazine is published quarterly with a spring summer fall and winter issue reaching million premium class passengers annually the magazine was published by american airlines publishing and is based in fort worth texas in american airlines appointed ink global ink as the new publisher of celebrated living the revamped magazine contains new editorial sections focused on luxury in the form of property style and culture topics for the firstime celebrated living will be available to readers both inflight and in the lounges via the print version as well as in digital edition s for mobile devices tablets and online see also american way magazine american way externalinks celebrated living magazine website ink global website category american airlines category american lifestyle magazines category american quarterly magazines category free magazines category inflight magazines category magazinestablished in category magazines published in texas category tourismagazines","main_words":["living","free","quarterly","flight","magazine","available","american","airlines","flights","first","business","class","american","airlines","club","american","airlines","club","worldwide","history","profile","celebrated","living","established","first_issue","appeared","october","year","magazine_published","quarterly","spring","summer","fall","winter","issue","reaching","million","premium","class","passengers","annually","magazine_published","american","airlines","publishing","based","fort_worth","texas","american","airlines","appointed","ink","global","ink","new","publisher","celebrated","living","magazine","contains","new","editorial","sections","focused","luxury","form","property","style","culture","topics","firstime","celebrated","living","available","readers","lounges","via","print","version","well","digital","edition","mobile","devices","tablets","online","see_also","american","way","magazine","american","way","externalinks","celebrated","living","magazine","website","ink","global","website_category","american","airlines","category_american","lifestyle_magazines_category","american","quarterly","magazines_category_free_magazines","category","inflight_magazines_category_magazinestablished","category_magazines_published","texas_category_tourismagazines"],"clean_bigrams":[["free","quarterly"],["flight","magazine"],["magazine","available"],["american","airlines"],["airlines","flights"],["business","class"],["american","airlines"],["club","american"],["american","airlines"],["worldwide","history"],["profile","celebrated"],["celebrated","living"],["first","issue"],["issue","appeared"],["published","quarterly"],["spring","summer"],["summer","fall"],["winter","issue"],["issue","reaching"],["reaching","million"],["million","premium"],["premium","class"],["class","passengers"],["passengers","annually"],["american","airlines"],["airlines","publishing"],["fort","worth"],["worth","texas"],["american","airlines"],["airlines","appointed"],["appointed","ink"],["ink","global"],["global","ink"],["new","publisher"],["celebrated","living"],["living","magazine"],["magazine","contains"],["contains","new"],["new","editorial"],["editorial","sections"],["sections","focused"],["property","style"],["culture","topics"],["firstime","celebrated"],["celebrated","living"],["lounges","via"],["print","version"],["digital","edition"],["mobile","devices"],["devices","tablets"],["online","see"],["see","also"],["also","american"],["american","way"],["way","magazine"],["magazine","american"],["american","way"],["way","externalinks"],["externalinks","celebrated"],["celebrated","living"],["living","magazine"],["magazine","website"],["website","ink"],["ink","global"],["global","website"],["website","category"],["category","american"],["american","airlines"],["airlines","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","american"],["american","quarterly"],["quarterly","magazines"],["magazines","category"],["category","free"],["free","magazines"],["magazines","category"],["category","inflight"],["inflight","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["texas","category"],["category","tourismagazines"]],"all_collocations":["free quarterly","flight magazine","magazine available","american airlines","airlines flights","business class","american airlines","club american","american airlines","worldwide history","profile celebrated","celebrated living","first issue","issue appeared","published quarterly","spring summer","summer fall","winter issue","issue reaching","reaching million","million premium","premium class","class passengers","passengers annually","american airlines","airlines publishing","fort worth","worth texas","american airlines","airlines appointed","appointed ink","ink global","global ink","new publisher","celebrated living","living magazine","magazine contains","contains new","new editorial","editorial sections","sections focused","property style","culture topics","firstime celebrated","celebrated living","lounges via","print version","digital edition","mobile devices","devices tablets","online see","see also","also american","american way","way magazine","magazine american","american way","way externalinks","externalinks celebrated","celebrated living","living magazine","magazine website","website ink","ink global","global website","website category","category american","american airlines","airlines category","category american","american lifestyle","lifestyle magazines","magazines category","category american","american quarterly","quarterly magazines","magazines category","category free","free magazines","magazines category","category inflight","inflight magazines","magazines category","category magazinestablished","category magazines","magazines published","texas category","category tourismagazines"],"new_description":"living free quarterly flight magazine available american airlines flights first business class american airlines club american airlines club worldwide history profile celebrated living established first_issue appeared october year magazine_published quarterly spring summer fall winter issue reaching million premium class passengers annually magazine_published american airlines publishing based fort_worth texas american airlines appointed ink global ink new publisher celebrated living magazine contains new editorial sections focused luxury form property style culture topics firstime celebrated living available readers inflight lounges via print version well digital edition mobile devices tablets online see_also american way magazine american way externalinks celebrated living magazine website ink global website_category american airlines category_american lifestyle_magazines_category american quarterly magazines_category_free_magazines category inflight_magazines_category_magazinestablished category_magazines_published texas_category_tourismagazines"},{"title":"Central Reservations Office","description":"in the hospitality industry a central reservations office or central reservations center is a call center that handles room reservation calls and otherelated calls for a hotel chain or company a central reservations office usually handles calls from a toll free number or multiple numbers for a chain of hotels call centers usually consist of a large staff of phone operators that answer incoming phone calls and specialize as reservations agents the main floor of a central reservations office is usually known as the sales floor as this where the majority of calls are handled and sales transactions are made by booking reservations at hotels large call centers may have special operators for special services or phone numbersuch as preferred customer lines a reward reservations line for guest loyalty programs and a guest services line for complaints and unique situations large hospitality companiesuch as the hilton hotels corporation and marriott international have large networks of multiple central reservations offices throughouthe world most central reservations offices often have on site corporate offices for the chain of hotels or hotel management company category hospitality occupations category hotel terminology","main_words":["hospitality","industry","central","reservations","office","central","reservations","center","call","center","room","reservation","calls","otherelated","calls","hotel_chain","company","central","reservations","office","usually","calls","toll","free","number","multiple","numbers","chain","hotels","call","centers","usually","consist","large","staff","phone","operators","answer","incoming","phone","calls","specialize","reservations","agents","main","floor","central","reservations","office","usually","known","sales","floor","majority","calls","handled","sales","transactions","made","booking","reservations","hotels","large","call","centers","may","special","operators","special","services","phone","preferred","customer","lines","reward","reservations","line","guest","loyalty","programs","guest","services","line","complaints","unique","situations","large","hospitality","companiesuch","hilton","hotels","corporation","marriott","international","large","networks","multiple","central","reservations","offices","throughouthe_world","central","reservations","offices","often","site","corporate","offices","chain","hotels","hotel_management","company","terminology"],"clean_bigrams":[["hospitality","industry"],["central","reservations"],["reservations","office"],["central","reservations"],["reservations","center"],["call","center"],["room","reservation"],["reservation","calls"],["otherelated","calls"],["hotel","chain"],["central","reservations"],["reservations","office"],["office","usually"],["toll","free"],["free","number"],["multiple","numbers"],["hotels","call"],["call","centers"],["centers","usually"],["usually","consist"],["large","staff"],["phone","operators"],["answer","incoming"],["incoming","phone"],["phone","calls"],["reservations","agents"],["main","floor"],["central","reservations"],["reservations","office"],["office","usually"],["usually","known"],["sales","floor"],["sales","transactions"],["booking","reservations"],["hotels","large"],["large","call"],["call","centers"],["centers","may"],["special","operators"],["special","services"],["preferred","customer"],["customer","lines"],["reward","reservations"],["reservations","line"],["guest","loyalty"],["loyalty","programs"],["guest","services"],["services","line"],["unique","situations"],["situations","large"],["large","hospitality"],["hospitality","companiesuch"],["hilton","hotels"],["hotels","corporation"],["marriott","international"],["large","networks"],["multiple","central"],["central","reservations"],["reservations","offices"],["offices","throughouthe"],["throughouthe","world"],["central","reservations"],["reservations","offices"],["offices","often"],["site","corporate"],["corporate","offices"],["hotel","management"],["management","company"],["company","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","hotel"],["hotel","terminology"]],"all_collocations":["hospitality industry","central reservations","reservations office","central reservations","reservations center","call center","room reservation","reservation calls","otherelated calls","hotel chain","central reservations","reservations office","office usually","toll free","free number","multiple numbers","hotels call","call centers","centers usually","usually consist","large staff","phone operators","answer incoming","incoming phone","phone calls","reservations agents","main floor","central reservations","reservations office","office usually","usually known","sales floor","sales transactions","booking reservations","hotels large","large call","call centers","centers may","special operators","special services","preferred customer","customer lines","reward reservations","reservations line","guest loyalty","loyalty programs","guest services","services line","unique situations","situations large","large hospitality","hospitality companiesuch","hilton hotels","hotels corporation","marriott international","large networks","multiple central","central reservations","reservations offices","offices throughouthe","throughouthe world","central reservations","reservations offices","offices often","site corporate","corporate offices","hotel management","management company","company category","category hospitality","hospitality occupations","occupations category","category hotel","hotel terminology"],"new_description":"hospitality industry central reservations office central reservations center call center room reservation calls otherelated calls hotel_chain company central reservations office usually calls toll free number multiple numbers chain hotels call centers usually consist large staff phone operators answer incoming phone calls specialize reservations agents main floor central reservations office usually known sales floor majority calls handled sales transactions made booking reservations hotels large call centers may special operators special services phone preferred customer lines reward reservations line guest loyalty programs guest services line complaints unique situations large hospitality companiesuch hilton hotels corporation marriott international large networks multiple central reservations offices throughouthe_world central reservations offices often site corporate offices chain hotels hotel_management company category_hospitality_occupations_category_hotel terminology"},{"title":"Certified Hotel Administrator","description":"certified hotel administrator cha is the highest certification from the american hotelodging educational institute to beligible individuals must fall intone of the following categories hotel manager general manager owner operator in a lodging hospitality company or corporatexecutive at a lodging hospitality company responsible for the operation of twor more properties a corporatexecutive is defined as individual employed by a firm responsible for the operation of twor more properties who serves as a regional or corporate director of operations or has ultimate corporate responsibility forooms marketing accounting and finance food and beverage human resources or engineering assistant general manager or director of operations rooms division after successfully completing the certified rooms division executive certification according to the american hotelodging educational institute the cha exam consists of multiple choice questions that must be answered within a four hour time period all test questions are designed to testhe candidate s mastery of various competencies derived from six key areas of knowledge in combination with on the job hospitality work experience the key areas of testing are financial management sales and marketing leadership management human resources management rooms management food and beverage management college credits cha s can earn undergraduate or graduate credit for their certification when they enroll in certain american public university programs of study from the american public university and the university of phoenix the american council on education ace determined the cha certification is worth six semester credits at an upper division baccalaureate degree level and three semester credits at a graduate degree levels references category hospitality occupations category professional titles and certifications","main_words":["certified","hotel","administrator","cha","highest","certification","american","hotelodging","educational","institute","individuals","must","fall","intone","following","categories","hotel_manager","general_manager","owner","operator","lodging","hospitality","company","lodging","hospitality","company","responsible","operation","twor","properties","defined","individual","employed","firm","responsible","operation","twor","properties","serves","regional","corporate","director","operations","ultimate","corporate","responsibility","marketing","accounting","finance","food","beverage","human_resources","engineering","assistant","general_manager","director","operations","rooms","division","successfully","completing","certified","rooms","division","executive","certification","according","american","hotelodging","educational","institute","cha","consists","multiple","choice","questions","must","answered","within","four","hour","time_period","test","questions","designed","testhe","candidate","various","derived","six","key","areas","knowledge","combination","job","hospitality","work","experience","key","areas","testing","financial","management","sales","marketing","leadership","management","human_resources","management","rooms","management","food","beverage","management","college","credits","cha","earn","undergraduate","graduate","credit","certification","certain","american","public","university","programs","study","american","public","university","university","phoenix","american","council","education","ace","determined","cha","certification","worth","six","semester","credits","upper","division","degree","level","three","semester","credits","graduate","degree","levels","references_category","hospitality_occupations_category","professional","titles","certifications"],"clean_bigrams":[["certified","hotel"],["hotel","administrator"],["administrator","cha"],["highest","certification"],["american","hotelodging"],["hotelodging","educational"],["educational","institute"],["individuals","must"],["must","fall"],["fall","intone"],["following","categories"],["categories","hotel"],["hotel","manager"],["manager","general"],["general","manager"],["manager","owner"],["owner","operator"],["lodging","hospitality"],["hospitality","company"],["lodging","hospitality"],["hospitality","company"],["company","responsible"],["individual","employed"],["firm","responsible"],["corporate","director"],["ultimate","corporate"],["corporate","responsibility"],["marketing","accounting"],["finance","food"],["beverage","human"],["human","resources"],["engineering","assistant"],["assistant","general"],["general","manager"],["operations","rooms"],["rooms","division"],["successfully","completing"],["certified","rooms"],["rooms","division"],["division","executive"],["executive","certification"],["certification","according"],["american","hotelodging"],["hotelodging","educational"],["educational","institute"],["multiple","choice"],["choice","questions"],["answered","within"],["four","hour"],["hour","time"],["time","period"],["test","questions"],["testhe","candidate"],["six","key"],["key","areas"],["job","hospitality"],["hospitality","work"],["work","experience"],["key","areas"],["financial","management"],["management","sales"],["marketing","leadership"],["leadership","management"],["management","human"],["human","resources"],["resources","management"],["management","rooms"],["rooms","management"],["management","food"],["beverage","management"],["management","college"],["college","credits"],["credits","cha"],["earn","undergraduate"],["graduate","credit"],["certain","american"],["american","public"],["public","university"],["university","programs"],["american","public"],["public","university"],["american","council"],["education","ace"],["ace","determined"],["cha","certification"],["worth","six"],["six","semester"],["semester","credits"],["upper","division"],["degree","level"],["three","semester"],["semester","credits"],["graduate","degree"],["degree","levels"],["levels","references"],["references","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","professional"],["professional","titles"]],"all_collocations":["certified hotel","hotel administrator","administrator cha","highest certification","american hotelodging","hotelodging educational","educational institute","individuals must","must fall","fall intone","following categories","categories hotel","hotel manager","manager general","general manager","manager owner","owner operator","lodging hospitality","hospitality company","lodging hospitality","hospitality company","company responsible","individual employed","firm responsible","corporate director","ultimate corporate","corporate responsibility","marketing accounting","finance food","beverage human","human resources","engineering assistant","assistant general","general manager","operations rooms","rooms division","successfully completing","certified rooms","rooms division","division executive","executive certification","certification according","american hotelodging","hotelodging educational","educational institute","multiple choice","choice questions","answered within","four hour","hour time","time period","test questions","testhe candidate","six key","key areas","job hospitality","hospitality work","work experience","key areas","financial management","management sales","marketing leadership","leadership management","management human","human resources","resources management","management rooms","rooms management","management food","beverage management","management college","college credits","credits cha","earn undergraduate","graduate credit","certain american","american public","public university","university programs","american public","public university","american council","education ace","ace determined","cha certification","worth six","six semester","semester credits","upper division","degree level","three semester","semester credits","graduate degree","degree levels","levels references","references category","category hospitality","hospitality occupations","occupations category","category professional","professional titles"],"new_description":"certified hotel administrator cha highest certification american hotelodging educational institute individuals must fall intone following categories hotel_manager general_manager owner operator lodging hospitality company lodging hospitality company responsible operation twor properties defined individual employed firm responsible operation twor properties serves regional corporate director operations ultimate corporate responsibility marketing accounting finance food beverage human_resources engineering assistant general_manager director operations rooms division successfully completing certified rooms division executive certification according american hotelodging educational institute cha consists multiple choice questions must answered within four hour time_period test questions designed testhe candidate various derived six key areas knowledge combination job hospitality work experience key areas testing financial management sales marketing leadership management human_resources management rooms management food beverage management college credits cha earn undergraduate graduate credit certification certain american public university programs study american public university university phoenix american council education ace determined cha certification worth six semester credits upper division degree level three semester credits graduate degree levels references_category hospitality_occupations_category professional titles certifications"},{"title":"Charcuterie","description":"file saucisson jpg thumb charcuterie or northern or southern from chair meat and cuit cooked is the branch of cooking devoted to prepared meat productsuch as bacon ham sausage terrine food terrine s galantine s ballotine s p t s and confit primarily from pork ruhlman the culinary institute of america charcuterie is part of the garde manger chef s repertoire originally intended as a way to preserve meat before the advent of refrigeration they are prepared today for their flavors derived from the preservation processesruhlman the french word for a person who prepares charcuterie is charcutier generally translated into english as pork butcher this has led to the mistaken belief that charcuterie can only involve pork the food lover s companion however says it refers to the products particularly but not limited to pork specialtiesuch as p t s rillettes galantine s cr pinette s etc which are made and sold in a delicatessen style shop also called a charcuterie thedition of larousse gastronomique defines it as the art of preparing various meats in particular pork in order to presenthem in the most diverse ways file modern charcuterie displayjpg thumbnail px right a modern charcuterie display in the first century ad strabo recorded the import of salted meat from gaul jane grigson charcuterie and french pork cookery and the romans may have been the firsto regulate the trade of charcuterie as they wrote laws regulating the proper production of pork joints buthe french people frenchave also had some influence in th century france local guild s regulated tradesmen in the food production industry in each city the guilds that produced charcuterie were those of the charcutiers the members of this guild produced a traditional range of cooked or salted andried fruits which varied sometimes distinctively from region to region the only raw meathe charcutiers were allowed to sell was unrendered lard the charcutier prepared numerous items including p t s rillettesausage s bacon pig s trotters and head cheese brawn these preservation methods ensured the meats would have longer shelf lives products created with forcemeats forcemeat is a mixture of ground lean meat emulsify emulsified with fathemulsification can be accomplished by grinding sieving or pur eing the ingredients themulsification may either be smooth or coarse in texture depending on the desired consistency of the final product forcemeats are used in the production of numerous items found in charcuterie meats commonly used in the production oforcemeats include pork fish pike fish pike trout or salmon seafood game food gameat s venison boar orabbit poultry game bird s veal and pork livers fatback pork fatback is often used for the fat portion oforcemeat as it has a somewhat neutral flavorthe culinary institute of america in usage there are four basic styles oforcemeat straight forcemeats are produced by progressively grinding equal parts pork and pork fat with a thirdominant meat which can be pork or another meathe proteins are cubed and then seasoned cured rested ground and then placed into desired vessel country style forcemeats are a combination of pork fat often withe addition of pork liver and garnish ingredients the finished product has a coarse texture the third style is gratin whichas a portion of the main protein browned the french term gratin connotes a grated producthat is browned the final style is mousseline sauce mousseline which are very light in texture using lean cuts of meat usually from veal poultry fish or shellfish the resulting texture comes from the addition of eggs and cream to this forcemeat file sausage making h jpg thumb right sausage making sausage making its name derived through french from the latin salthe sausage making technique involves placinground or chopped meat along with salt into a tube the tubes can vary buthe more common animal derived tubes include sheep hog or cattle intestinalinings additionally animal stomachs and bladders as well as edible artificial casings produced from collagen and inedible plant cellulose or paper are also used inedible casings are primarily used to shape store and age the sausagemcgee the two main variants of sausage are fresh and cooked fresh sausages involve the production of raw meat placed into casings to be cooked at a later time whereas cooked sausages are heateduring production and aready to eat thend of productionmcgeemulsified sausagemulsified sausages are cooked sausages with a very fine texture using the combination of pork beef or poultry with fat salt cure flavorings and water these ingredients aremulsified at high speed in a food processor blender during this process the salt dissolves the muscle proteins whichelps to suspend the fat molecules temperature is an important part of the process if the temperature rises above f c for pork or f c for beef themulsion will not hold and fat willeak from the sausage during the cooking process p terrine galantine roulade file pates p jpg thumb px various p t s and terrine food terrine s p t and terrine food terrine s are often cooked in a pastry crust or an earthenware container bothearthenware container and the dish itself are called a terrine p t and terrine are very similar the term p t often suggests a finer textured forcemeat using liver whereas terrines are more often made of a coarser forcemeathe meat is chopped or ground along witheavy seasoning which may include fat and aromatics the seasoning is important as they will generally be served cold which mutes the flavorsmcgee the mixture is placed into a lined mold covered and cooked in a water bath to control the temperature which will keep the forcemeat from separating as the water bath slows theating process of the terrine p t and terrine are generally cooked to f c while terrine made ofoie gras are generally cooked to an internal temperature of c after the proper temperature is reached the terrine is removed from the oven and placed into a cooling unitopped with a weighto compacthe contents of the terrine it is then allowed to rest for several days to allow the flavors to blend file galantina de patojpg thumb px left duck galantine is a chilled poultry product created after the french revolution by the chef to the marquis de brancas the term galant connotes urbane sophistication other origins are suggested the older french word for chicken g line or galine or the word gelatin sourcesuggesthe spelling of gelatin transformed into the words galentyne galyntyne galandyne and galendine the galantine is prepared by skinning and boning a chicken or other poultry the skin is laid flat withe pounded breast laid on top a forcemeat is then placed on top of the pounded breasthe galantine is then rolled withends of the breast meeting one another the galantine is then wrapped in cheesecloth and poached in poultry stock until the proper internal temperature is reachedthe culinary institute of america roulade isimilar to a galantine the two major differences are instead of rolling the poultry evenly for thends of the breasts to meethe bird is rolled into a pinwheel shape and the roulade is cooled by chilling it after it has been removed from the poaching liquid salt cured and brined productsalt serves four main purposes in the preservation ofood in the charcuterie kitchen the first is inducing osmosis this process involves the movement of water outside of the membranes of the cells which in turn reabsorb the salted water back into the cell this process assists in the destruction of harmful pathogens the second is dehydration which means the salt pulls excess water from the protein which aids in the shelf life of the protein as there is less moisture present for bacterial growth fermentation is the third in which salt assists in halting the fermentation process which would otherwise completely break the meat down finally salt assists in denaturation biochemistry denaturing proteins which in essence means the structure of the proteins is effectively shifted similar to theffects of cooking the culinary institute of america before the discovery of nitrate s and nitrite s by german chemists around curing was done with unrefined salt and potassium nitrate saltpeter asaltpeter gives inconsistent results in preventing bacterial growth nitrate and nitrite in the forms of sodium nitrite and sodium nitrate have increased in popularity for their consistent results nitrates take a considerably longer period of time to break down in cured foods thanitrites because of this nitrates are the preferred curing salts for lengthy curing andrying periods nitrites are often used in foods that require a shorter curing time and are used for any item that will be fully cookedthe culinary institute of america eventually a portion of the nitrates will be converted into nitritesmcgee by bacterial actionitrite has multiple purposes in the curing process one purpose is flavor the nitrites giving a sharpiquant flavor to the meat second the nitrites react with substances in the meato produce nitric oxide nitric oxide prevents iron from breaking down the fat in the meathus halting rancidity the binding also creates the characteristic reddish color found in most cured meat finally the nitrite inhibits the growth of botulism causing organisms that would ordinarily thrive in the oxygen deprived environment in the sausage casingerman scientists originally named botulism poisoning wurstvergiftung or sausage poisoning the term botulism derives its name from the latin term for sausagemcgeeating cured meat products has been linked to a small increase in gastricancer as well as chronic obstructive pulmonary disease the negativeffects are presumed to be caused by nitrates and nitrites as well as nitrosamine s which are formed by nitrites reacting with meathese risks are generally regarded as minimal and regulations in the united states limit ingoing nitrites to parts per million less for bacon as a precautionary measure curing salt blends two main types of curing salt mixture are used by the charcutier the first is known by multiple names including tinted cure mix pink cure prague powder or insta cure the mixture isodium chloride and sodium nitrite when used the recommended amount is a ratiof oz for each lb kg for each kg of meat or of the total weight of the meathis blend is colored bright pink to keep the charcutier from confusing the mixture with regular saltthe culinary institute of america the second curing salt blend is called prague powder ii or insta cure also colored pink to differentiate it from table salthis blend is produced from salt and sodium nitrate this mixture is used for dry sausages that require a longer drying period which requires the presence of nitrate seasoning and flavoring agentsweeteners and other flavoring agents are necessary in the production of many cured products due to the harsh flavors of the salt a number of sweeteners can be used in curing foods including dextrose sugar corn syrup honey and maple syrup dextrose iseen often in cured meat as it not only mellows the harshness but it also increases the moisture content of the cured product while adding lessweetness to the cured meathe sweeteners also assist in stabilizing the colors in meat and help the fermentation process by giving a nutriento the bacteriathe culinary institute of america numerouspice s and herb s are used in the curing process to assist withe flavor of the final producthe sweet spices regularly used include cinnamon allspice nutmeg mace spice mace and cardamom other flavoring agents may include dried and fresh chili pepper chili es wine fruit juice or vinegar fermented sausage file saucisson jpg righthumb px saucisson fermented sausages are created by salting chopped or ground meato remove moisture while allowing beneficial bacteria to break down sugars into flavorful molecules bacteria including lactobacilluspecies and leuconostoc species break down these sugars to produce lactic acid which not only affects the flavor of the sausage but also lowers the ph from to preventing the growth of bacteria that could spoil the sausage theseffects are magnifieduring the drying process as the salt and acidity are concentrated as moisture is extracted the ingredients found in a fermented sausage include meat fat bacterial culture salt spicesugar and nitrite is commonly added to fermented sausages to preventhe formation of botulism causing bacteria while some traditional and artisanal producers avoid nitritesugar is added to aid the bacterial production of lactic aciduring the hour to three day fermentation process the fermentation time depends on the temperature at which the sausage istored the lower the temperature the longer the required fermentation period a white mold and yeast sometimes adheres to the outside of the sausage during the drying process this mold adds to the flavor of the sausage and aids in preventing harmful bacteria from attaching to the sausagemcgee the two main types ofermented sausage are the dry salted spiced sausages found in warmer climates and fermented semidry sausages found in cooler more humid climatesince the dry sausages of the mediterranean in countriesuch as italy spain and portugal contain water and more than salthey may be stored at room temperature the sausages of northern europe usually contain lessalt around and water and asuch do not dry well in the humid climate of countriesuch as germany see also cold cut list of dried foods list of smoked foodsalumi smallgoods the culinary institute of america garde manger the art and craft of the cold kitchen rd ed hobokenjohn wiley sons mcgee harold on food and cooking the science and lore of the kitchenew york simon and schusteruhlman michael and polcyn brian charcuterie the craft of salting smoking and curing new york w norton company externalinks enrique garc a ballesteros foods from spain history charcuterie through the ages istituto valorizzazione salumitaliani pgi consortium salumi casalinghin italian salumitalian cold cuts from aboutcom category charcuterie category culinary terminology category cold cut category cooking category dried meat category garde manger category guilds category italian cuisine category meat category pork category restauranterminology category salumi category smoked meat","main_words":["file","saucisson","jpg","thumb","charcuterie","northern","southern","chair","meat","cooked","branch","cooking","devoted","prepared","meat","productsuch","bacon","ham","sausage","terrine","food","terrine","galantine","p","primarily","pork","culinary_institute","america","charcuterie","part","garde_manger","chef","repertoire","originally_intended","way","preserve","meat","advent","prepared","today","flavors","derived","preservation","french","word","person","prepares","charcuterie","charcutier","generally","translated","english","pork","butcher","led","belief","charcuterie","involve","pork","food","lover","companion","however","says","refers","products","particularly","limited","pork","p","galantine","etc","made","sold","delicatessen","style","shop","also_called","charcuterie","thedition","gastronomique","defines","art","preparing","various","meats","particular","pork","order","diverse","ways","file","modern","charcuterie","thumbnail","px","right","modern","charcuterie","display","first_century","recorded","import","salted","meat","jane","charcuterie","french","pork","cookery","romans","may","firsto","regulate","trade","charcuterie","wrote","laws","regulating","proper","production","pork","joints","buthe","french","people","also","influence","th_century","france","local","guild","regulated","food","production","industry","city","guilds","produced","charcuterie","members","guild","produced","traditional","range","cooked","salted","fruits","varied","sometimes","region","region","raw","meathe","allowed","sell","charcutier","prepared","numerous","items","including","p","bacon","pig","head","cheese","preservation","methods","ensured","meats","would","longer","shelf","lives","products","created","forcemeats","forcemeat","mixture","ground","lean","meat","accomplished","grinding","ingredients","may","either","smooth","texture","depending","desired","consistency","final","product","forcemeats","used","production","numerous","items","found","charcuterie","meats","commonly_used","production","include","pork","fish","pike","fish","pike","trout","salmon","seafood","game","food","boar","poultry","game","bird","veal","pork","pork","often_used","fat","portion","somewhat","neutral","culinary_institute","america","usage","four","basic","styles","straight","forcemeats","produced","progressively","grinding","equal","parts","pork","pork","fat","meat","pork","another","meathe","proteins","seasoned","cured","ground","placed","desired","vessel","country","style","forcemeats","combination","pork","fat","often","withe","addition","pork","liver","garnish","ingredients","finished","product","texture","third","style","whichas","portion","main","protein","french","term","connotes","final","style","sauce","light","texture","using","lean","cuts","meat","usually","veal","poultry","fish","shellfish","resulting","texture","comes","addition","eggs","cream","forcemeat","file","sausage","making","h","jpg","thumb","right","sausage","making","sausage","making","name","derived","french","latin","sausage","making","technique","involves","chopped","meat","along","salt","tube","tubes","vary","buthe","common","animal","derived","tubes","include","sheep","hog","cattle","additionally","animal","well","artificial","casings","produced","plant","paper","also_used","casings","primarily","used","shape","store","age","two_main","variants","sausage","fresh","cooked","fresh","sausages","involve","production","raw","meat","placed","casings","cooked","later","time","whereas","cooked","sausages","production","eat","thend","sausages","cooked","sausages","fine","texture","using","combination","pork","beef","poultry","fat","salt","cure","water","ingredients","high_speed","food","process","salt","proteins","whichelps","fat","temperature","important_part","process","temperature","f","c","pork","f","c","beef","hold","fat","sausage","cooking","process","p","terrine","galantine","file","p","jpg","thumb","px","various","p","terrine","food","terrine","p","terrine","food","terrine","often","cooked","pastry","crust","container","container","dish","called","terrine","p","terrine","similar","term","p","often","suggests","finer","forcemeat","using","liver","whereas","terrines","often","made","meat","chopped","ground","along","seasoning","may_include","fat","seasoning","important","generally","served","cold","mixture","placed","lined","mold","covered","cooked","water","bath","control","temperature","keep","forcemeat","separating","water","bath","theating","process","terrine","p","terrine","generally","cooked","f","c","terrine","made","gras","generally","cooked","internal","temperature","c","proper","temperature","reached","terrine","removed","oven","placed","cooling","contents","terrine","allowed","rest","several","days","allow","flavors","blend","file","de","thumb","px","left","duck","galantine","poultry","product","created","french","revolution","chef","marquis","de","term","connotes","sophistication","origins","suggested","older","french","word","chicken","g","line","word","gelatin","spelling","gelatin","transformed","words","galantine","prepared","chicken","poultry","skin","laid","flat","withe","breast","laid","top","forcemeat","placed","top","galantine","rolled","breast","meeting","one","another","galantine","wrapped","poultry","stock","proper","internal","temperature","culinary_institute","america","isimilar","galantine","two_major","differences","instead","rolling","poultry","meethe","bird","rolled","shape","cooled","removed","liquid","salt","cured","serves","four","main","purposes","preservation","ofood","charcuterie","kitchen","first","process","involves","movement","water","outside","cells","turn","salted","water","back","cell","process","assists","destruction","harmful","second","means","salt","pulls","excess","water","protein","aids","shelf","life","protein","less","moisture","present","bacterial","growth","fermentation","third","salt","assists","fermentation","process","would","otherwise","completely","break","meat","finally","salt","assists","proteins","means","structure","proteins","effectively","shifted","similar","theffects","cooking","culinary_institute","america","discovery","nitrate","nitrite","german","chemists","around","curing","done","salt","nitrate","gives","results","preventing","bacterial","growth","nitrate","nitrite","forms","sodium","nitrite","sodium","nitrate","increased","popularity","consistent","results","nitrates","take","considerably","longer","period","time","break","cured","foods","nitrates","preferred","curing","lengthy","curing","periods","nitrites","often_used","foods","require","shorter","curing","time","used","item","fully","culinary_institute","america","eventually","portion","nitrates","converted","bacterial","multiple","purposes","curing","process","one","purpose","flavor","nitrites","giving","flavor","meat","second","nitrites","substances","produce","oxide","oxide","iron","breaking","fat","also","creates","characteristic","color","found","cured","meat","finally","nitrite","growth","botulism","causing","organisms","would","ordinarily","oxygen","deprived","environment","sausage","scientists","originally","named","botulism","poisoning","sausage","poisoning","term","botulism","derives","name","latin","term","cured","meat","products","linked","small","increase","well","chronic","disease","negativeffects","caused","nitrates","nitrites","well","formed","nitrites","risks","generally","regarded","minimal","regulations","united_states","limit","nitrites","parts","per","million","less","bacon","measure","curing","salt","blends","two_main","types","curing","salt","mixture","used","charcutier","first","known","multiple","names","including","cure","mix","pink","cure","prague","powder","insta","cure","mixture","sodium","nitrite","used","recommended","amount","ratiof","meat","total","weight","blend","colored","bright","pink","keep","charcutier","mixture","regular","culinary_institute","america","second","curing","salt","blend","called","prague","powder","ii","insta","cure","also","colored","pink","differentiate","table","blend","produced","salt","sodium","nitrate","mixture","used","dry","sausages","require","longer","drying","period","requires","presence","nitrate","seasoning","flavoring","flavoring","agents","necessary","production","many","cured","products","due","harsh","flavors","salt","number","used","curing","foods","including","sugar","corn","syrup","honey","maple","syrup","iseen","often","cured","meat","also","increases","moisture","content","cured","product","adding","cured","meathe","also","assist","stabilizing","colors","meat","help","fermentation","process","giving","culinary_institute","america","herb","used","curing","process","assist","withe","flavor","final","sweet","spices","regularly","used","include","cinnamon","spice","flavoring","agents","may_include","dried","fresh","chili","pepper","chili","wine","fruit","juice","vinegar","fermented","sausage","file","saucisson","jpg_righthumb","px","saucisson","fermented","sausages","created","salting","chopped","ground","remove","moisture","allowing","beneficial","bacteria","break","bacteria","including","species","break","produce","acid","affects","flavor","sausage","also","preventing","growth","bacteria","could","sausage","drying","process","salt","concentrated","moisture","extracted","ingredients","found","fermented","sausage","include","meat","fat","bacterial","culture","salt","nitrite","commonly","added","fermented","sausages","preventhe","formation","botulism","causing","bacteria","traditional","producers","avoid","added","aid","bacterial","production","hour","three_day","fermentation","process","fermentation","time","depends","temperature","sausage","lower","temperature","longer","required","fermentation","period","white","mold","yeast","sometimes","adheres","outside","sausage","drying","process","mold","adds","flavor","sausage","aids","preventing","harmful","bacteria","attaching","two_main","types","sausage","dry","salted","spiced","sausages","found","warmer","climates","fermented","sausages","found","cooler","humid","dry","sausages","mediterranean","countriesuch","italy","spain","portugal","contain","water","may","stored","room","temperature","sausages","northern","europe","usually","contain","around","water","asuch","dry","well","humid","climate","countriesuch","germany","see_also","cold","cut","list","dried","foods","list","smoked","culinary_institute","america","garde_manger","art","craft","cold","kitchen","ed","wiley","sons","harold","food","cooking","science","york","simon","michael","brian","charcuterie","craft","salting","smoking","curing","new_york","w","norton","company","externalinks","foods","spain","history","charcuterie","ages","consortium","italian","cold","cuts","category","charcuterie","category","culinary","terminology","category","cold","cut","category","cooking","category","dried","meat","category","garde_manger","category","guilds","category","italian","cuisine_category","meat","category","pork","category_restauranterminology","category","category","smoked","meat"],"clean_bigrams":[["file","saucisson"],["saucisson","jpg"],["jpg","thumb"],["thumb","charcuterie"],["chair","meat"],["cooking","devoted"],["prepared","meat"],["meat","productsuch"],["bacon","ham"],["ham","sausage"],["sausage","terrine"],["terrine","food"],["food","terrine"],["terrine","galantine"],["culinary","institute"],["america","charcuterie"],["garde","manger"],["manger","chef"],["repertoire","originally"],["originally","intended"],["preserve","meat"],["prepared","today"],["flavors","derived"],["french","word"],["prepares","charcuterie"],["charcutier","generally"],["generally","translated"],["pork","butcher"],["involve","pork"],["food","lover"],["companion","however"],["however","says"],["products","particularly"],["delicatessen","style"],["style","shop"],["shop","also"],["also","called"],["charcuterie","thedition"],["gastronomique","defines"],["preparing","various"],["various","meats"],["particular","pork"],["diverse","ways"],["ways","file"],["file","modern"],["modern","charcuterie"],["thumbnail","px"],["px","right"],["modern","charcuterie"],["charcuterie","display"],["first","century"],["salted","meat"],["french","pork"],["pork","cookery"],["romans","may"],["firsto","regulate"],["wrote","laws"],["laws","regulating"],["proper","production"],["pork","joints"],["joints","buthe"],["buthe","french"],["french","people"],["th","century"],["century","france"],["france","local"],["local","guild"],["food","production"],["production","industry"],["produced","charcuterie"],["guild","produced"],["traditional","range"],["varied","sometimes"],["raw","meathe"],["charcutier","prepared"],["prepared","numerous"],["numerous","items"],["items","including"],["including","p"],["bacon","pig"],["head","cheese"],["preservation","methods"],["methods","ensured"],["meats","would"],["longer","shelf"],["shelf","lives"],["lives","products"],["products","created"],["forcemeats","forcemeat"],["ground","lean"],["lean","meat"],["may","either"],["texture","depending"],["desired","consistency"],["final","product"],["product","forcemeats"],["numerous","items"],["items","found"],["charcuterie","meats"],["meats","commonly"],["commonly","used"],["include","pork"],["pork","fish"],["fish","pike"],["pike","fish"],["fish","pike"],["pike","trout"],["salmon","seafood"],["seafood","game"],["game","food"],["poultry","game"],["game","bird"],["often","used"],["fat","portion"],["somewhat","neutral"],["culinary","institute"],["four","basic"],["basic","styles"],["straight","forcemeats"],["progressively","grinding"],["grinding","equal"],["equal","parts"],["parts","pork"],["pork","fat"],["another","meathe"],["meathe","proteins"],["seasoned","cured"],["desired","vessel"],["vessel","country"],["country","style"],["style","forcemeats"],["pork","fat"],["fat","often"],["often","withe"],["withe","addition"],["pork","liver"],["garnish","ingredients"],["finished","product"],["third","style"],["main","protein"],["french","term"],["final","style"],["texture","using"],["using","lean"],["lean","cuts"],["meat","usually"],["veal","poultry"],["poultry","fish"],["resulting","texture"],["texture","comes"],["forcemeat","file"],["file","sausage"],["sausage","making"],["making","h"],["h","jpg"],["jpg","thumb"],["thumb","right"],["right","sausage"],["sausage","making"],["making","sausage"],["sausage","making"],["name","derived"],["sausage","making"],["making","technique"],["technique","involves"],["chopped","meat"],["meat","along"],["vary","buthe"],["common","animal"],["animal","derived"],["derived","tubes"],["tubes","include"],["include","sheep"],["sheep","hog"],["additionally","animal"],["artificial","casings"],["casings","produced"],["also","used"],["primarily","used"],["shape","store"],["two","main"],["main","variants"],["cooked","fresh"],["fresh","sausages"],["sausages","involve"],["raw","meat"],["meat","placed"],["later","time"],["time","whereas"],["whereas","cooked"],["cooked","sausages"],["eat","thend"],["cooked","sausages"],["fine","texture"],["texture","using"],["pork","beef"],["fat","salt"],["salt","cure"],["high","speed"],["proteins","whichelps"],["important","part"],["f","c"],["f","c"],["cooking","process"],["process","p"],["p","terrine"],["terrine","galantine"],["p","jpg"],["jpg","thumb"],["thumb","px"],["px","various"],["various","p"],["p","terrine"],["terrine","food"],["food","terrine"],["terrine","p"],["p","terrine"],["terrine","food"],["food","terrine"],["often","cooked"],["pastry","crust"],["terrine","p"],["p","terrine"],["term","p"],["often","suggests"],["forcemeat","using"],["using","liver"],["liver","whereas"],["whereas","terrines"],["often","made"],["ground","along"],["may","include"],["include","fat"],["served","cold"],["lined","mold"],["mold","covered"],["water","bath"],["water","bath"],["theating","process"],["terrine","p"],["p","terrine"],["generally","cooked"],["f","c"],["terrine","made"],["generally","cooked"],["internal","temperature"],["proper","temperature"],["several","days"],["blend","file"],["thumb","px"],["px","left"],["left","duck"],["duck","galantine"],["poultry","product"],["product","created"],["french","revolution"],["marquis","de"],["older","french"],["french","word"],["chicken","g"],["g","line"],["word","gelatin"],["gelatin","transformed"],["laid","flat"],["flat","withe"],["breast","laid"],["breast","meeting"],["meeting","one"],["one","another"],["poultry","stock"],["proper","internal"],["internal","temperature"],["culinary","institute"],["two","major"],["major","differences"],["meethe","bird"],["liquid","salt"],["salt","cured"],["serves","four"],["four","main"],["main","purposes"],["preservation","ofood"],["charcuterie","kitchen"],["process","involves"],["water","outside"],["salted","water"],["water","back"],["process","assists"],["salt","pulls"],["pulls","excess"],["excess","water"],["shelf","life"],["less","moisture"],["moisture","present"],["bacterial","growth"],["growth","fermentation"],["salt","assists"],["fermentation","process"],["would","otherwise"],["otherwise","completely"],["completely","break"],["meat","finally"],["finally","salt"],["salt","assists"],["effectively","shifted"],["shifted","similar"],["culinary","institute"],["german","chemists"],["chemists","around"],["around","curing"],["preventing","bacterial"],["bacterial","growth"],["growth","nitrate"],["sodium","nitrite"],["sodium","nitrate"],["consistent","results"],["results","nitrates"],["nitrates","take"],["considerably","longer"],["longer","period"],["cured","foods"],["preferred","curing"],["lengthy","curing"],["periods","nitrites"],["often","used"],["shorter","curing"],["curing","time"],["culinary","institute"],["america","eventually"],["multiple","purposes"],["curing","process"],["process","one"],["one","purpose"],["nitrites","giving"],["meat","second"],["also","creates"],["color","found"],["cured","meat"],["meat","finally"],["botulism","causing"],["causing","organisms"],["would","ordinarily"],["oxygen","deprived"],["deprived","environment"],["scientists","originally"],["originally","named"],["named","botulism"],["botulism","poisoning"],["sausage","poisoning"],["term","botulism"],["botulism","derives"],["latin","term"],["cured","meat"],["meat","products"],["small","increase"],["generally","regarded"],["united","states"],["states","limit"],["parts","per"],["per","million"],["million","less"],["measure","curing"],["curing","salt"],["salt","blends"],["blends","two"],["two","main"],["main","types"],["curing","salt"],["salt","mixture"],["multiple","names"],["names","including"],["cure","mix"],["mix","pink"],["pink","cure"],["cure","prague"],["prague","powder"],["insta","cure"],["sodium","nitrite"],["recommended","amount"],["total","weight"],["colored","bright"],["bright","pink"],["culinary","institute"],["second","curing"],["curing","salt"],["salt","blend"],["called","prague"],["prague","powder"],["powder","ii"],["insta","cure"],["cure","also"],["also","colored"],["colored","pink"],["sodium","nitrate"],["dry","sausages"],["longer","drying"],["drying","period"],["nitrate","seasoning"],["flavoring","agents"],["many","cured"],["cured","products"],["products","due"],["harsh","flavors"],["curing","foods"],["foods","including"],["sugar","corn"],["corn","syrup"],["syrup","honey"],["maple","syrup"],["iseen","often"],["cured","meat"],["also","increases"],["moisture","content"],["cured","product"],["cured","meathe"],["also","assist"],["fermentation","process"],["culinary","institute"],["curing","process"],["assist","withe"],["withe","flavor"],["sweet","spices"],["spices","regularly"],["regularly","used"],["used","include"],["include","cinnamon"],["flavoring","agents"],["agents","may"],["may","include"],["include","dried"],["fresh","chili"],["chili","pepper"],["pepper","chili"],["wine","fruit"],["fruit","juice"],["vinegar","fermented"],["fermented","sausage"],["sausage","file"],["file","saucisson"],["saucisson","jpg"],["jpg","righthumb"],["righthumb","px"],["px","saucisson"],["saucisson","fermented"],["fermented","sausages"],["salting","chopped"],["remove","moisture"],["allowing","beneficial"],["beneficial","bacteria"],["bacteria","including"],["species","break"],["drying","process"],["ingredients","found"],["fermented","sausage"],["sausage","include"],["include","meat"],["meat","fat"],["fat","bacterial"],["bacterial","culture"],["culture","salt"],["commonly","added"],["fermented","sausages"],["preventhe","formation"],["botulism","causing"],["causing","bacteria"],["producers","avoid"],["bacterial","production"],["three","day"],["day","fermentation"],["fermentation","process"],["fermentation","time"],["time","depends"],["required","fermentation"],["fermentation","period"],["white","mold"],["yeast","sometimes"],["sometimes","adheres"],["drying","process"],["mold","adds"],["preventing","harmful"],["harmful","bacteria"],["two","main"],["main","types"],["dry","salted"],["salted","spiced"],["spiced","sausages"],["sausages","found"],["warmer","climates"],["fermented","sausages"],["sausages","found"],["dry","sausages"],["italy","spain"],["portugal","contain"],["contain","water"],["room","temperature"],["northern","europe"],["europe","usually"],["usually","contain"],["dry","well"],["humid","climate"],["germany","see"],["see","also"],["also","cold"],["cold","cut"],["cut","list"],["dried","foods"],["foods","list"],["culinary","institute"],["america","garde"],["garde","manger"],["cold","kitchen"],["wiley","sons"],["york","simon"],["brian","charcuterie"],["salting","smoking"],["curing","new"],["new","york"],["york","w"],["w","norton"],["norton","company"],["company","externalinks"],["spain","history"],["history","charcuterie"],["cold","cuts"],["category","charcuterie"],["charcuterie","category"],["category","culinary"],["culinary","terminology"],["terminology","category"],["category","cold"],["cold","cut"],["cut","category"],["category","cooking"],["cooking","category"],["category","dried"],["dried","meat"],["meat","category"],["category","garde"],["garde","manger"],["manger","category"],["category","guilds"],["guilds","category"],["category","italian"],["italian","cuisine"],["cuisine","category"],["category","meat"],["meat","category"],["category","pork"],["pork","category"],["category","restauranterminology"],["restauranterminology","category"],["category","smoked"],["smoked","meat"]],"all_collocations":["file saucisson","saucisson jpg","thumb charcuterie","chair meat","cooking devoted","prepared meat","meat productsuch","bacon ham","ham sausage","sausage terrine","terrine food","food terrine","terrine galantine","culinary institute","america charcuterie","garde manger","manger chef","repertoire originally","originally intended","preserve meat","prepared today","flavors derived","french word","prepares charcuterie","charcutier generally","generally translated","pork butcher","involve pork","food lover","companion however","however says","products particularly","delicatessen style","style shop","shop also","also called","charcuterie thedition","gastronomique defines","preparing various","various meats","particular pork","diverse ways","ways file","file modern","modern charcuterie","thumbnail px","modern charcuterie","charcuterie display","first century","salted meat","french pork","pork cookery","romans may","firsto regulate","wrote laws","laws regulating","proper production","pork joints","joints buthe","buthe french","french people","th century","century france","france local","local guild","food production","production industry","produced charcuterie","guild produced","traditional range","varied sometimes","raw meathe","charcutier prepared","prepared numerous","numerous items","items including","including p","bacon pig","head cheese","preservation methods","methods ensured","meats would","longer shelf","shelf lives","lives products","products created","forcemeats forcemeat","ground lean","lean meat","may either","texture depending","desired consistency","final product","product forcemeats","numerous items","items found","charcuterie meats","meats commonly","commonly used","include pork","pork fish","fish pike","pike fish","fish pike","pike trout","salmon seafood","seafood game","game food","poultry game","game bird","often used","fat portion","somewhat neutral","culinary institute","four basic","basic styles","straight forcemeats","progressively grinding","grinding equal","equal parts","parts pork","pork fat","another meathe","meathe proteins","seasoned cured","desired vessel","vessel country","country style","style forcemeats","pork fat","fat often","often withe","withe addition","pork liver","garnish ingredients","finished product","third style","main protein","french term","final style","texture using","using lean","lean cuts","meat usually","veal poultry","poultry fish","resulting texture","texture comes","forcemeat file","file sausage","sausage making","making h","h jpg","right sausage","sausage making","making sausage","sausage making","name derived","sausage making","making technique","technique involves","chopped meat","meat along","vary buthe","common animal","animal derived","derived tubes","tubes include","include sheep","sheep hog","additionally animal","artificial casings","casings produced","also used","primarily used","shape store","two main","main variants","cooked fresh","fresh sausages","sausages involve","raw meat","meat placed","later time","time whereas","whereas cooked","cooked sausages","eat thend","cooked sausages","fine texture","texture using","pork beef","fat salt","salt cure","high speed","proteins whichelps","important part","f c","f c","cooking process","process p","p terrine","terrine galantine","p jpg","px various","various p","p terrine","terrine food","food terrine","terrine p","p terrine","terrine food","food terrine","often cooked","pastry crust","terrine p","p terrine","term p","often suggests","forcemeat using","using liver","liver whereas","whereas terrines","often made","ground along","may include","include fat","served cold","lined mold","mold covered","water bath","water bath","theating process","terrine p","p terrine","generally cooked","f c","terrine made","generally cooked","internal temperature","proper temperature","several days","blend file","px left","left duck","duck galantine","poultry product","product created","french revolution","marquis de","older french","french word","chicken g","g line","word gelatin","gelatin transformed","laid flat","flat withe","breast laid","breast meeting","meeting one","one another","poultry stock","proper internal","internal temperature","culinary institute","two major","major differences","meethe bird","liquid salt","salt cured","serves four","four main","main purposes","preservation ofood","charcuterie kitchen","process involves","water outside","salted water","water back","process assists","salt pulls","pulls excess","excess water","shelf life","less moisture","moisture present","bacterial growth","growth fermentation","salt assists","fermentation process","would otherwise","otherwise completely","completely break","meat finally","finally salt","salt assists","effectively shifted","shifted similar","culinary institute","german chemists","chemists around","around curing","preventing bacterial","bacterial growth","growth nitrate","sodium nitrite","sodium nitrate","consistent results","results nitrates","nitrates take","considerably longer","longer period","cured foods","preferred curing","lengthy curing","periods nitrites","often used","shorter curing","curing time","culinary institute","america eventually","multiple purposes","curing process","process one","one purpose","nitrites giving","meat second","also creates","color found","cured meat","meat finally","botulism causing","causing organisms","would ordinarily","oxygen deprived","deprived environment","scientists originally","originally named","named botulism","botulism poisoning","sausage poisoning","term botulism","botulism derives","latin term","cured meat","meat products","small increase","generally regarded","united states","states limit","parts per","per million","million less","measure curing","curing salt","salt blends","blends two","two main","main types","curing salt","salt mixture","multiple names","names including","cure mix","mix pink","pink cure","cure prague","prague powder","insta cure","sodium nitrite","recommended amount","total weight","colored bright","bright pink","culinary institute","second curing","curing salt","salt blend","called prague","prague powder","powder ii","insta cure","cure also","also colored","colored pink","sodium nitrate","dry sausages","longer drying","drying period","nitrate seasoning","flavoring agents","many cured","cured products","products due","harsh flavors","curing foods","foods including","sugar corn","corn syrup","syrup honey","maple syrup","iseen often","cured meat","also increases","moisture content","cured product","cured meathe","also assist","fermentation process","culinary institute","curing process","assist withe","withe flavor","sweet spices","spices regularly","regularly used","used include","include cinnamon","flavoring agents","agents may","may include","include dried","fresh chili","chili pepper","pepper chili","wine fruit","fruit juice","vinegar fermented","fermented sausage","sausage file","file saucisson","saucisson jpg","jpg righthumb","righthumb px","px saucisson","saucisson fermented","fermented sausages","salting chopped","remove moisture","allowing beneficial","beneficial bacteria","bacteria including","species break","drying process","ingredients found","fermented sausage","sausage include","include meat","meat fat","fat bacterial","bacterial culture","culture salt","commonly added","fermented sausages","preventhe formation","botulism causing","causing bacteria","producers avoid","bacterial production","three day","day fermentation","fermentation process","fermentation time","time depends","required fermentation","fermentation period","white mold","yeast sometimes","sometimes adheres","drying process","mold adds","preventing harmful","harmful bacteria","two main","main types","dry salted","salted spiced","spiced sausages","sausages found","warmer climates","fermented sausages","sausages found","dry sausages","italy spain","portugal contain","contain water","room temperature","northern europe","europe usually","usually contain","dry well","humid climate","germany see","see also","also cold","cold cut","cut list","dried foods","foods list","culinary institute","america garde","garde manger","cold kitchen","wiley sons","york simon","brian charcuterie","salting smoking","curing new","new york","york w","w norton","norton company","company externalinks","spain history","history charcuterie","cold cuts","category charcuterie","charcuterie category","category culinary","culinary terminology","terminology category","category cold","cold cut","cut category","category cooking","cooking category","category dried","dried meat","meat category","category garde","garde manger","manger category","category guilds","guilds category","category italian","italian cuisine","cuisine category","category meat","meat category","category pork","pork category","category restauranterminology","restauranterminology category","category smoked","smoked meat"],"new_description":"file saucisson jpg thumb charcuterie northern southern chair meat cooked branch cooking devoted prepared meat productsuch bacon ham sausage terrine food terrine galantine p primarily pork culinary_institute america charcuterie part garde_manger chef repertoire originally_intended way preserve meat advent prepared today flavors derived preservation french word person prepares charcuterie charcutier generally translated english pork butcher led belief charcuterie involve pork food lover companion however says refers products particularly limited pork p galantine etc made sold delicatessen style shop also_called charcuterie thedition gastronomique defines art preparing various meats particular pork order diverse ways file modern charcuterie thumbnail px right modern charcuterie display first_century recorded import salted meat jane charcuterie french pork cookery romans may firsto regulate trade charcuterie wrote laws regulating proper production pork joints buthe french people also influence th_century france local guild regulated food production industry city guilds produced charcuterie members guild produced traditional range cooked salted fruits varied sometimes region region raw meathe allowed sell charcutier prepared numerous items including p bacon pig head cheese preservation methods ensured meats would longer shelf lives products created forcemeats forcemeat mixture ground lean meat accomplished grinding ingredients may either smooth texture depending desired consistency final product forcemeats used production numerous items found charcuterie meats commonly_used production include pork fish pike fish pike trout salmon seafood game food boar poultry game bird veal pork pork often_used fat portion somewhat neutral culinary_institute america usage four basic styles straight forcemeats produced progressively grinding equal parts pork pork fat meat pork another meathe proteins seasoned cured ground placed desired vessel country style forcemeats combination pork fat often withe addition pork liver garnish ingredients finished product texture third style whichas portion main protein french term connotes final style sauce light texture using lean cuts meat usually veal poultry fish shellfish resulting texture comes addition eggs cream forcemeat file sausage making h jpg thumb right sausage making sausage making name derived french latin sausage making technique involves chopped meat along salt tube tubes vary buthe common animal derived tubes include sheep hog cattle additionally animal well artificial casings produced plant paper also_used casings primarily used shape store age two_main variants sausage fresh cooked fresh sausages involve production raw meat placed casings cooked later time whereas cooked sausages production eat thend sausages cooked sausages fine texture using combination pork beef poultry fat salt cure water ingredients high_speed food process salt proteins whichelps fat temperature important_part process temperature f c pork f c beef hold fat sausage cooking process p terrine galantine file p jpg thumb px various p terrine food terrine p terrine food terrine often cooked pastry crust container container dish called terrine p terrine similar term p often suggests finer forcemeat using liver whereas terrines often made meat chopped ground along seasoning may_include fat seasoning important generally served cold mixture placed lined mold covered cooked water bath control temperature keep forcemeat separating water bath theating process terrine p terrine generally cooked f c terrine made gras generally cooked internal temperature c proper temperature reached terrine removed oven placed cooling contents terrine allowed rest several days allow flavors blend file de thumb px left duck galantine poultry product created french revolution chef marquis de term connotes sophistication origins suggested older french word chicken g line word gelatin spelling gelatin transformed words galantine prepared chicken poultry skin laid flat withe breast laid top forcemeat placed top galantine rolled breast meeting one another galantine wrapped poultry stock proper internal temperature culinary_institute america isimilar galantine two_major differences instead rolling poultry meethe bird rolled shape cooled removed liquid salt cured serves four main purposes preservation ofood charcuterie kitchen first process involves movement water outside cells turn salted water back cell process assists destruction harmful second means salt pulls excess water protein aids shelf life protein less moisture present bacterial growth fermentation third salt assists fermentation process would otherwise completely break meat finally salt assists proteins means structure proteins effectively shifted similar theffects cooking culinary_institute america discovery nitrate nitrite german chemists around curing done salt nitrate gives results preventing bacterial growth nitrate nitrite forms sodium nitrite sodium nitrate increased popularity consistent results nitrates take considerably longer period time break cured foods nitrates preferred curing lengthy curing periods nitrites often_used foods require shorter curing time used item fully culinary_institute america eventually portion nitrates converted bacterial multiple purposes curing process one purpose flavor nitrites giving flavor meat second nitrites substances produce oxide oxide iron breaking fat also creates characteristic color found cured meat finally nitrite growth botulism causing organisms would ordinarily oxygen deprived environment sausage scientists originally named botulism poisoning sausage poisoning term botulism derives name latin term cured meat products linked small increase well chronic disease negativeffects caused nitrates nitrites well formed nitrites risks generally regarded minimal regulations united_states limit nitrites parts per million less bacon measure curing salt blends two_main types curing salt mixture used charcutier first known multiple names including cure mix pink cure prague powder insta cure mixture sodium nitrite used recommended amount ratiof meat total weight blend colored bright pink keep charcutier mixture regular culinary_institute america second curing salt blend called prague powder ii insta cure also colored pink differentiate table blend produced salt sodium nitrate mixture used dry sausages require longer drying period requires presence nitrate seasoning flavoring flavoring agents necessary production many cured products due harsh flavors salt number used curing foods including sugar corn syrup honey maple syrup iseen often cured meat also increases moisture content cured product adding cured meathe also assist stabilizing colors meat help fermentation process giving culinary_institute america herb used curing process assist withe flavor final sweet spices regularly used include cinnamon spice flavoring agents may_include dried fresh chili pepper chili wine fruit juice vinegar fermented sausage file saucisson jpg_righthumb px saucisson fermented sausages created salting chopped ground remove moisture allowing beneficial bacteria break bacteria including species break produce acid affects flavor sausage also preventing growth bacteria could sausage drying process salt concentrated moisture extracted ingredients found fermented sausage include meat fat bacterial culture salt nitrite commonly added fermented sausages preventhe formation botulism causing bacteria traditional producers avoid added aid bacterial production hour three_day fermentation process fermentation time depends temperature sausage lower temperature longer required fermentation period white mold yeast sometimes adheres outside sausage drying process mold adds flavor sausage aids preventing harmful bacteria attaching two_main types sausage dry salted spiced sausages found warmer climates fermented sausages found cooler humid dry sausages mediterranean countriesuch italy spain portugal contain water may stored room temperature sausages northern europe usually contain around water asuch dry well humid climate countriesuch germany see_also cold cut list dried foods list smoked culinary_institute america garde_manger art craft cold kitchen ed wiley sons harold food cooking science york simon michael brian charcuterie craft salting smoking curing new_york w norton company externalinks foods spain history charcuterie ages consortium italian cold cuts category charcuterie category culinary terminology category cold cut category cooking category dried meat category garde_manger category guilds category italian cuisine_category meat category pork category_restauranterminology category category smoked meat"},{"title":"Chef","description":"image chef pr parant une truffejpg thumb an italian chef preparing a truffle for diners a chef is a trained and skilled professional cook profession cook who is proficient in all aspects ofood preparation of a particular cuisine the word chef is derived from the term chef de cuisine the director head of a kitchen chefs can receive both formal training from an institution as well as through apprenticeship with an experienced chef there are differenterms that use the word chef in their titles andeal with specific areas ofood preparation such as the sous chef who acts as the second in command in a kitchen or the chef de partie who handles a specific area of production the brigade cuisine brigade system is a system of hierarchy found in restaurants and hotels employing extensive staff many of which use the word chef in their titles underneathe chefs are the kitchen assistants a chef standard uniform includes a hat called a toque necktie double breasted jacket apron and shoes with steel or plastic toe caps the word chef is derived and shortened from the term chef de cuisine the director head of a kitchen the french word comes from latin wikt caput and is a doublet linguistics doublet with english languagenglish chief in english the title chef in the culinary profession originated in the haute cuisine of the th century the culinary arts among other aspects of the french language introduced french loan words into thenglish language file tandoor chef jpg thumb right a chef working with a tandoor a cylindrical clay oven used in cooking and baking various titles detailed below are given to those working in a professional kitchen and each can be considered a title for a type of chef many of the titles are based on the brigade cuisine or brigade system documented by augustescoffier while others have a more general meaning depending on the individual kitchen chef de cuisine other names includexecutive chef manager head chef and master chef this person is in charge of all activities related to the kitchen which usually includes menu creation management of kitchen staff ordering and purchasing of inventory controlling raw material costs and plating design chef de cuisine is the traditional french term from which thenglish word chef is derived head chef is often used to designate someone withe same duties as an executive chef buthere is usually someone in charge of a head chef possibly making the larger executive decisionsuch as direction of menu final authority in staff management decisions and son this often the case for executive chefs with multiple restaurants involved in checking the sensory evaluation of dishes after preparation and they are well aware of each sensory property of those specific dishesous chef the sous chef de cuisine under chef of the kitchen is the second in command direct assistant of the chef de cuisine sous chef works under executive chef or head chef this person may be responsible for scheduling the kitchen staff or substituting when thead chef is off duty also he or she will fill in for assisthe chef de partie line cook wheneeded this person is accountable for the kitchen s inventory cleanliness organization and the continuing training of its entire staff a sous chef s duties can also include carrying outhead chef s directives conducting line checks and overseeing the timely rotation of all food productsmaller operations may not have a sous chef while larger operations may have more than one cia p the sous chef is also responsible when thexecutive chef is absent chef de partie a chef de partie also known as a station chef or line cook is in charge of a particularea of production in large kitchens eachef de partie might have several cooks or assistants in most kitchens however the chef de partie is the only worker in that department line cooks are often divided into a hierarchy of their own starting with first cook then second cook and son as neededemi chef a demi chef is between a commis and chef de partie they have moresponsibility then a commis chef range chef a commis a basichef in larger kitchens who works under a chef de partie to learn the station s orange s responsibilities and operation cia p this may be a chef who has recently completed formal culinary training or istill undergoing training apprentice st year through to th year brigade system titlestation chef titles which are part of the brigade system include cia pp class wikitablenglish french wikipedia ipa for french ipa description saut chef saucieresponsible for all saut ing saut ed items and their sauce this usually the highestratified position of all the stations fish chef poissonnier prepares fish dishes and often does all fish butcher ing as well as appropriate sauces thistation may be combined withe saucier position roast chef r tisseur prepares roasting roasted and braising braised meat s and their appropriate sauce grill chef grillardin prepares all grillingrilled foods this position may be combined withe rotisseur fry chefriturier prepares all frying fried items this position may be combined withe rotisseur position vegetable chef entremetier prepares hot appetizer s and often prepares the soups vegetables pastas and starches in smaller establishments thistation may also cover those tasks performed by the potager and l gumier potager preparesoups in a full brigade system in smaller establishments thistation may be handled by thentremetier l gumier prepares vegetables in a full brigade system in smaller establishments thistation may be handled by thentremetieroundsman tournant also referred to as a swing cook fills in as needed on stations in the kitchen pantry chef garde mangeresponsible for preparing cold foods including salad s cold appetizer s p t s and other charcuterie items butcher boucher butchers meats poultry and sometimes fish may also be responsible for breading meats and fish pastry chef p tissier makes baked goodsuch as pastries cakes breads andesserts in larger establishments the pastry chef often supervises a separateam in their own kitchen assistant kitchen assistants are of two types kitchen hands and stewards kitchen porters kitchen hands assist with basic food preparation tasks under the chef s direction they carry out relatively unskilled tasksuch as peeling potatoes and washing salad stewards kitchen porters are involved in the scullery washing up and general cleaning duties in a smaller kitchen these duties may be incorporated a communard is in charge of preparing the meal for the staff during a shifthis meal is often referred to as the staff or family meal thescuelerie from th century french and a cognate of thenglish scullery maid scullery or the more modern plongeur or dishwasher is the keeper of dishes having charge of dishes and keeping the kitchen clean a common humorous title for this role in some modern kitchens is chef de plonge or headishwasher culinary education file oxford chef school jpg thumb right chefs in training at chef school in oxford england culinary education is available fromany institutions offering diplomassociate and bachelor s degree programs in culinary arts depending on the level of education this can take one to four years an internship is often part of the curriculum regardless of theducation received most professional kitchens follow the apprenticeship system and most new cooks will start at a lower level nd or st cook position and work their way up the training period for a chef is generally four years as an apprentice a newly qualified chef is advanced or more commonly a torquecommis chef consisting ofirst year commisecond year commis and son the rate of pay is usually in accordance withe chefs like all other chefs excepthexecutive chef trainees are placed in sections of the kitchen eg the starter hors d uvre appetizer or entr e sections under the guidance of a demi chef de partie and are given relatively basic tasks ideally over time a commis will spend a certain period in each section of the kitchen to learn the basics unaided a commis may work on the vegetable station of a kitchen learndirectcouk chef training options the usual formal training period for a chef is two to four years in catering college they often spend the summer in work placements in some cases this modified to day release courses a chef will work full time in a kitchen as an apprentice and then would have allocatedays off to attend catering college these courses can last between one and three years file chefsjpg thumb left chefs in mexico wearing standard uniform x px image preparing peking duckjpg thumb a chef preparing peking duck x px the standard uniform for a chef includes a hat called a toque necktie double breastedouble breasted jacket apron and shoes with steel or plastic toe caps a chef s hat was originally designed as a tall rippled hat called a dodin bouffant or more commonly a toque the dodin bouffant had ripples that representhe ways thathe chef could prepareggs the modern chef s hat is tall to allow for the circulation of air above thead and also provides an outlet for heathe hat helps to prevent sweat from dripping down the face and hair shedding on food neckties were originally worn to allow for the mopping of sweat from the face but as this now against health regulations they are largely decorative the chef s neck tie was originally worn on the inside of the jacketo stop sweat running from the face and neck down the body the jacket is usually white to show off the chef s cleanliness and repel heat and is double breasted to prevent serious injuries from burns and scalds the double breast also serves to conceal stains on the jacket as one side can be rebuttoned over the other which is common practice file ribotheodule the cook and the cat jpg thumb right frenchef painted by th odule ribot an apron is worn to just below knee length also to assist in the prevention of burns because of spillage if hot liquid ispilled onto ithe apron can be quickly removed to minimize burns and scaldshoes and clogs are hard wearing and with a steel top cap to prevent injury from falling objects or knives according to some hygiene regulations jewelry is not allowed apart from wedding bands and religious jewelry if woundressings arequired they should be blue an unusual colour for foodstuffso thathey are noticeable if they fall into food facial hair and longer hair are often required to be netted or trimmed for food safety bandages on the hands are usually covered with nylon gloves latex is notypically used for food preparation due to latex allergy see also american culinary federation augustescoffier brigade cuisine culinary art development chef list of chefs list of pastry chefs list of restauranterminology personal chef world association of chefsocieties externalinks official certification levels of the american culinary federation chef training and career progression inew zealand category chefs category occupations category skills category food andrink category restauranterminology category culinary terminology","main_words":["image","chef","une","thumb","italian","chef","preparing","diners","chef","trained","skilled","professional","cook","profession","cook","aspects","ofood","preparation","particular","cuisine","word","chef_derived","term","chef_de_cuisine","director","head","kitchen","chefs","receive","formal","training","institution","well","experienced","chef","use","word","chef","titles","specific","areas","ofood","preparation","sous_chef","acts","second","command","kitchen","chef_de_partie","specific","area","production","brigade_cuisine","brigade","system","system","hierarchy","found","restaurants_hotels","employing","extensive","staff","many","use","word","chef","titles","underneathe","chefs","kitchen","assistants","chef","standard","uniform","includes","hat","called","double","breasted","jacket","apron","shoes","steel","plastic","caps","word","chef_derived","shortened","term","chef_de_cuisine","director","head","kitchen","french","word","comes","latin","wikt","linguistics","english_languagenglish","chief","english","title","chef","culinary","profession","originated","haute_cuisine","th_century","culinary_arts","among","aspects","french_language","introduced","french","loan","words","thenglish_language","file","tandoor","chef","jpg","thumb","right","chef","working","tandoor","cylindrical","clay","oven","used","cooking","baking","various","titles","detailed","given","working","professional","kitchen","considered","title","type","chef","many","titles","based","brigade_cuisine","brigade","system","documented","augustescoffier","others","general","meaning","depending","individual","kitchen","chef_de_cuisine","names","chef","manager","head_chef","master","chef","person","charge","activities","related","kitchen","usually","includes","menu","creation","management","kitchen","staff","ordering","purchasing","inventory","controlling","raw","material","costs","design","chef_de_cuisine","traditional","french","term","thenglish","word","chef_derived","head_chef","often_used","designate","someone","withe","duties","executive","chef","buthere","usually","someone","charge","head_chef","possibly","making","larger","executive","direction","menu","final","authority","staff","management","decisions","son","often","case","executive","chefs","multiple","restaurants","involved","checking","sensory","evaluation","dishes","preparation","well","aware","sensory","property","specific","chef","sous_chef","chef","kitchen","second","command","direct","assistant","chef_de_cuisine","sous_chef","works","executive","chef","head_chef","person","may","responsible","scheduling","kitchen","staff","thead","chef","duty","also","fill","chef_de_partie","line","cook","person","kitchen","inventory","cleanliness","organization","continuing","training","entire","staff","sous_chef","duties","also_include","carrying","chef","directives","conducting","line","checks","overseeing","timely","rotation","food","operations","may","sous_chef","larger","operations","may","one","cia","p","sous_chef","also","responsible","thexecutive","chef","chef_de_partie","chef_de_partie","also_known","station","chef","line","cook","charge","particularea","production","large","kitchens","de_partie","might","several","cooks","assistants","kitchens","however","chef_de_partie","worker","department","line","cooks","often","divided","hierarchy","starting","first","cook","second","cook_son","chef","commis","chef_de_partie","commis","chef","range","chef","commis","larger","kitchens","works","chef_de_partie","learn","station","orange","responsibilities","operation","cia","p","may","chef","recently","completed","formal","culinary","training","istill","undergoing","training","apprentice","st","year","th","year","brigade","system","chef","titles","part","brigade","system","include","cia","pp","class","french","wikipedia","french","description","saut","chef","saut","ing","saut","ed","items","sauce","usually","position","stations","fish","chef","prepares","fish","dishes","often","fish","butcher","ing","well","appropriate","sauces","thistation","may","combined","withe","saucier","position","roast","chef","r","prepares","roasting","roasted","meat","appropriate","sauce","grill","chef","prepares","foods","position","may","combined","withe","fry","prepares","frying","fried","items","position","may","combined","withe","position","vegetable","chef","prepares","hot","appetizer","often","prepares","soups","vegetables","smaller","establishments","thistation","may_also","cover","tasks","performed","l","full","brigade","system","smaller","establishments","thistation","may","handled","l","prepares","vegetables","full","brigade","system","smaller","establishments","thistation","may","handled","also_referred","swing","cook","needed","stations","kitchen","pantry","chef","garde","preparing","cold","foods","including","salad","cold","appetizer","p","charcuterie","items","butcher","meats","poultry","sometimes","fish","may_also","responsible","meats","fish","pastry_chef","p","tissier","makes","baked","pastries","cakes","breads","andesserts","larger","establishments","pastry_chef","often","supervises","kitchen","assistant","kitchen","assistants","two","types","kitchen","hands","kitchen","porters","kitchen","hands","assist","basic","food_preparation","tasks","chef","direction","carry","relatively","tasksuch","potatoes","washing","salad","kitchen","porters","involved","washing","general","cleaning","duties","smaller","kitchen","duties","may","incorporated","charge","preparing","meal","staff","meal","often_referred","staff","family","meal","th_century","french","thenglish","maid","modern","dishwasher","keeper","dishes","charge","dishes","keeping","kitchen","clean","common","humorous","title","role","modern","kitchens","culinary","education","file","oxford","chef","school","jpg","thumb","right","chefs","training","chef","school","oxford","england","culinary","education","available","fromany","institutions","offering","bachelor","degree","programs","culinary_arts","depending","level","education","take","one","four_years","internship","often","part","curriculum","regardless","theducation","received","professional","kitchens","follow","system","new","cooks","start","lower","level","st","cook","position","work","way","training","period","chef","generally","four_years","apprentice","newly","qualified","chef","advanced","commonly","chef","consisting","ofirst","year","year","commis","son","rate","pay","usually","accordance","withe","chefs","like","chefs","chef","placed","sections","kitchen","starter","hors","appetizer","entr","e","sections","guidance","demi","chef_de_partie","given","relatively","basic","tasks","ideally","time","commis","spend","certain","period","section","kitchen","learn","commis","may","work","vegetable","station","kitchen","chef","training","options","usual","formal","training","period","chef","two","four_years","catering","college","often","spend","summer","work","placements","cases","modified","day","release","courses","chef","work","full_time","kitchen","apprentice","would","attend","catering","college","courses","last","one","three_years","file","thumb","left","chefs","mexico","wearing","standard","uniform","x","px","image","preparing","thumb","chef","preparing","duck","x","px","standard","uniform","chef","includes","hat","called","double","breasted","jacket","apron","shoes","steel","plastic","caps","chef","hat","originally","designed","tall","hat","called","commonly","representhe","ways","thathe","chef","could","modern","chef","hat","tall","allow","circulation","air","thead","also_provides","outlet","hat","helps","prevent","face","hair","food","originally","worn","allow","face","health","regulations","largely","decorative","chef","neck","tie","originally","worn","inside","stop","running","face","neck","body","jacket","usually","white","show","chef","cleanliness","heat","double","breasted","prevent","serious","injuries","burns","double","breast","also_serves","jacket","one_side","common_practice","file","cook","cat","jpg","thumb","right","painted","th","apron","worn","knee","length","also","assist","prevention","burns","hot","liquid","onto","ithe","apron","quickly","removed","minimize","burns","hard","wearing","steel","top","cap","prevent","injury","falling","objects","knives","according","hygiene","regulations","allowed","apart","wedding","bands","religious","arequired","blue","unusual","colour","thathey","noticeable","fall","food","facial","hair","longer","hair","often","required","food","safety","hands","usually","covered","gloves","latex","notypically","used","food_preparation","due","latex","see_also","american","culinary","federation","augustescoffier","brigade_cuisine","culinary","art","development","chef","list","chefs","list","pastry_chefs","list","restauranterminology","personal","chef","world","association","externalinks_official","certification","levels","american","culinary","federation","chef","training","career","progression","inew_zealand","category","chefs","category","occupations_category","skills","category_food_andrink","category_restauranterminology","category","culinary","terminology"],"clean_bigrams":[["image","chef"],["italian","chef"],["chef","preparing"],["skilled","professional"],["professional","cook"],["cook","profession"],["profession","cook"],["aspects","ofood"],["ofood","preparation"],["particular","cuisine"],["word","chef"],["term","chef"],["chef","de"],["de","cuisine"],["director","head"],["kitchen","chefs"],["formal","training"],["experienced","chef"],["word","chef"],["chef","titles"],["specific","areas"],["areas","ofood"],["ofood","preparation"],["sous","chef"],["kitchen","chef"],["chef","de"],["de","partie"],["specific","area"],["brigade","cuisine"],["cuisine","brigade"],["brigade","system"],["hierarchy","found"],["hotels","employing"],["employing","extensive"],["extensive","staff"],["staff","many"],["word","chef"],["chef","titles"],["titles","underneathe"],["underneathe","chefs"],["kitchen","assistants"],["chef","standard"],["standard","uniform"],["uniform","includes"],["hat","called"],["double","breasted"],["breasted","jacket"],["jacket","apron"],["word","chef"],["term","chef"],["chef","de"],["de","cuisine"],["director","head"],["french","word"],["word","comes"],["latin","wikt"],["english","languagenglish"],["languagenglish","chief"],["title","chef"],["culinary","profession"],["profession","originated"],["haute","cuisine"],["th","century"],["culinary","arts"],["arts","among"],["french","language"],["language","introduced"],["introduced","french"],["french","loan"],["loan","words"],["thenglish","language"],["language","file"],["file","tandoor"],["tandoor","chef"],["chef","jpg"],["jpg","thumb"],["thumb","right"],["chef","working"],["cylindrical","clay"],["clay","oven"],["oven","used"],["baking","various"],["various","titles"],["titles","detailed"],["professional","kitchen"],["chef","many"],["brigade","cuisine"],["cuisine","brigade"],["brigade","system"],["system","documented"],["general","meaning"],["meaning","depending"],["individual","kitchen"],["kitchen","chef"],["chef","de"],["de","cuisine"],["chef","manager"],["manager","head"],["head","chef"],["master","chef"],["activities","related"],["usually","includes"],["includes","menu"],["menu","creation"],["creation","management"],["kitchen","staff"],["staff","ordering"],["inventory","controlling"],["controlling","raw"],["raw","material"],["material","costs"],["design","chef"],["chef","de"],["de","cuisine"],["traditional","french"],["french","term"],["thenglish","word"],["word","chef"],["derived","head"],["head","chef"],["chef","often"],["often","used"],["designate","someone"],["someone","withe"],["executive","chef"],["chef","buthere"],["usually","someone"],["head","chef"],["chef","possibly"],["possibly","making"],["larger","executive"],["menu","final"],["final","authority"],["staff","management"],["management","decisions"],["executive","chefs"],["multiple","restaurants"],["restaurants","involved"],["sensory","evaluation"],["well","aware"],["sensory","property"],["sous","chef"],["chef","de"],["de","cuisine"],["command","direct"],["direct","assistant"],["chef","de"],["de","cuisine"],["cuisine","sous"],["sous","chef"],["chef","works"],["executive","chef"],["head","chef"],["person","may"],["kitchen","staff"],["thead","chef"],["duty","also"],["chef","de"],["de","partie"],["partie","line"],["line","cook"],["inventory","cleanliness"],["cleanliness","organization"],["continuing","training"],["entire","staff"],["sous","chef"],["also","include"],["include","carrying"],["directives","conducting"],["conducting","line"],["line","checks"],["timely","rotation"],["operations","may"],["sous","chef"],["larger","operations"],["operations","may"],["one","cia"],["cia","p"],["sous","chef"],["also","responsible"],["thexecutive","chef"],["chef","de"],["de","partie"],["chef","de"],["de","partie"],["partie","also"],["also","known"],["station","chef"],["line","cook"],["large","kitchens"],["de","partie"],["partie","might"],["several","cooks"],["kitchens","however"],["chef","de"],["de","partie"],["department","line"],["line","cooks"],["often","divided"],["first","cook"],["second","cook"],["demi","chef"],["commis","chef"],["chef","de"],["de","partie"],["commis","chef"],["chef","range"],["range","chef"],["larger","kitchens"],["chef","de"],["de","partie"],["operation","cia"],["cia","p"],["recently","completed"],["completed","formal"],["formal","culinary"],["culinary","training"],["istill","undergoing"],["undergoing","training"],["training","apprentice"],["apprentice","st"],["st","year"],["th","year"],["year","brigade"],["brigade","system"],["chef","titles"],["brigade","system"],["system","include"],["include","cia"],["cia","pp"],["pp","class"],["french","wikipedia"],["description","saut"],["saut","chef"],["saut","ing"],["ing","saut"],["saut","ed"],["ed","items"],["stations","fish"],["fish","chef"],["prepares","fish"],["fish","dishes"],["fish","butcher"],["butcher","ing"],["appropriate","sauces"],["sauces","thistation"],["thistation","may"],["combined","withe"],["withe","saucier"],["saucier","position"],["position","roast"],["roast","chef"],["chef","r"],["prepares","roasting"],["roasting","roasted"],["appropriate","sauce"],["sauce","grill"],["grill","chef"],["position","may"],["combined","withe"],["frying","fried"],["fried","items"],["position","may"],["combined","withe"],["position","vegetable"],["vegetable","chef"],["prepares","hot"],["hot","appetizer"],["often","prepares"],["soups","vegetables"],["smaller","establishments"],["establishments","thistation"],["thistation","may"],["may","also"],["also","cover"],["tasks","performed"],["full","brigade"],["brigade","system"],["smaller","establishments"],["establishments","thistation"],["thistation","may"],["prepares","vegetables"],["full","brigade"],["brigade","system"],["smaller","establishments"],["establishments","thistation"],["thistation","may"],["also","referred"],["swing","cook"],["kitchen","pantry"],["pantry","chef"],["chef","garde"],["preparing","cold"],["cold","foods"],["foods","including"],["including","salad"],["cold","appetizer"],["charcuterie","items"],["items","butcher"],["meats","poultry"],["sometimes","fish"],["fish","may"],["may","also"],["also","responsible"],["fish","pastry"],["pastry","chef"],["chef","p"],["p","tissier"],["tissier","makes"],["makes","baked"],["pastries","cakes"],["cakes","breads"],["breads","andesserts"],["larger","establishments"],["pastry","chef"],["chef","often"],["often","supervises"],["kitchen","assistant"],["assistant","kitchen"],["kitchen","assistants"],["two","types"],["types","kitchen"],["kitchen","hands"],["kitchen","porters"],["porters","kitchen"],["kitchen","hands"],["hands","assist"],["basic","food"],["food","preparation"],["preparation","tasks"],["washing","salad"],["kitchen","porters"],["general","cleaning"],["cleaning","duties"],["smaller","kitchen"],["duties","may"],["often","referred"],["family","meal"],["th","century"],["century","french"],["kitchen","clean"],["common","humorous"],["humorous","title"],["modern","kitchens"],["chef","de"],["culinary","education"],["education","file"],["file","oxford"],["oxford","chef"],["chef","school"],["school","jpg"],["jpg","thumb"],["thumb","right"],["right","chefs"],["chef","school"],["oxford","england"],["england","culinary"],["culinary","education"],["available","fromany"],["fromany","institutions"],["institutions","offering"],["degree","programs"],["culinary","arts"],["arts","depending"],["take","one"],["four","years"],["often","part"],["curriculum","regardless"],["theducation","received"],["professional","kitchens"],["kitchens","follow"],["new","cooks"],["lower","level"],["st","cook"],["cook","position"],["training","period"],["generally","four"],["four","years"],["newly","qualified"],["qualified","chef"],["chef","consisting"],["consisting","ofirst"],["ofirst","year"],["year","commis"],["accordance","withe"],["withe","chefs"],["chefs","like"],["starter","hors"],["entr","e"],["e","sections"],["demi","chef"],["chef","de"],["de","partie"],["given","relatively"],["relatively","basic"],["basic","tasks"],["tasks","ideally"],["certain","period"],["commis","may"],["may","work"],["vegetable","station"],["kitchen","chef"],["chef","training"],["training","options"],["usual","formal"],["formal","training"],["training","period"],["four","years"],["catering","college"],["often","spend"],["work","placements"],["day","release"],["release","courses"],["work","full"],["full","time"],["attend","catering"],["catering","college"],["three","years"],["years","file"],["thumb","left"],["left","chefs"],["mexico","wearing"],["wearing","standard"],["standard","uniform"],["uniform","x"],["x","px"],["px","image"],["image","preparing"],["chef","preparing"],["duck","x"],["x","px"],["standard","uniform"],["chef","includes"],["hat","called"],["double","breasted"],["breasted","jacket"],["jacket","apron"],["originally","designed"],["hat","called"],["representhe","ways"],["ways","thathe"],["thathe","chef"],["chef","could"],["modern","chef"],["also","provides"],["hat","helps"],["originally","worn"],["health","regulations"],["largely","decorative"],["neck","tie"],["originally","worn"],["usually","white"],["double","breasted"],["prevent","serious"],["serious","injuries"],["double","breast"],["breast","also"],["also","serves"],["one","side"],["common","practice"],["practice","file"],["cat","jpg"],["jpg","thumb"],["thumb","right"],["knee","length"],["length","also"],["hot","liquid"],["onto","ithe"],["ithe","apron"],["quickly","removed"],["minimize","burns"],["hard","wearing"],["steel","top"],["top","cap"],["prevent","injury"],["falling","objects"],["knives","according"],["hygiene","regulations"],["allowed","apart"],["wedding","bands"],["unusual","colour"],["food","facial"],["facial","hair"],["longer","hair"],["often","required"],["food","safety"],["usually","covered"],["gloves","latex"],["notypically","used"],["food","preparation"],["preparation","due"],["see","also"],["also","american"],["american","culinary"],["culinary","federation"],["federation","augustescoffier"],["augustescoffier","brigade"],["brigade","cuisine"],["cuisine","culinary"],["culinary","art"],["art","development"],["development","chef"],["chef","list"],["chefs","list"],["pastry","chefs"],["chefs","list"],["restauranterminology","personal"],["personal","chef"],["chef","world"],["world","association"],["externalinks","official"],["official","certification"],["certification","levels"],["american","culinary"],["culinary","federation"],["federation","chef"],["chef","training"],["career","progression"],["progression","inew"],["inew","zealand"],["zealand","category"],["category","chefs"],["chefs","category"],["category","occupations"],["occupations","category"],["category","skills"],["skills","category"],["category","food"],["food","andrink"],["andrink","category"],["category","restauranterminology"],["restauranterminology","category"],["category","culinary"],["culinary","terminology"]],"all_collocations":["image chef","italian chef","chef preparing","skilled professional","professional cook","cook profession","profession cook","aspects ofood","ofood preparation","particular cuisine","word chef","term chef","chef de","de cuisine","director head","kitchen chefs","formal training","experienced chef","word chef","chef titles","specific areas","areas ofood","ofood preparation","sous chef","kitchen chef","chef de","de partie","specific area","brigade cuisine","cuisine brigade","brigade system","hierarchy found","hotels employing","employing extensive","extensive staff","staff many","word chef","chef titles","titles underneathe","underneathe chefs","kitchen assistants","chef standard","standard uniform","uniform includes","hat called","double breasted","breasted jacket","jacket apron","word chef","term chef","chef de","de cuisine","director head","french word","word comes","latin wikt","english languagenglish","languagenglish chief","title chef","culinary profession","profession originated","haute cuisine","th century","culinary arts","arts among","french language","language introduced","introduced french","french loan","loan words","thenglish language","language file","file tandoor","tandoor chef","chef jpg","chef working","cylindrical clay","clay oven","oven used","baking various","various titles","titles detailed","professional kitchen","chef many","brigade cuisine","cuisine brigade","brigade system","system documented","general meaning","meaning depending","individual kitchen","kitchen chef","chef de","de cuisine","chef manager","manager head","head chef","master chef","activities related","usually includes","includes menu","menu creation","creation management","kitchen staff","staff ordering","inventory controlling","controlling raw","raw material","material costs","design chef","chef de","de cuisine","traditional french","french term","thenglish word","word chef","derived head","head chef","chef often","often used","designate someone","someone withe","executive chef","chef buthere","usually someone","head chef","chef possibly","possibly making","larger executive","menu final","final authority","staff management","management decisions","executive chefs","multiple restaurants","restaurants involved","sensory evaluation","well aware","sensory property","sous chef","chef de","de cuisine","command direct","direct assistant","chef de","de cuisine","cuisine sous","sous chef","chef works","executive chef","head chef","person may","kitchen staff","thead chef","duty also","chef de","de partie","partie line","line cook","inventory cleanliness","cleanliness organization","continuing training","entire staff","sous chef","also include","include carrying","directives conducting","conducting line","line checks","timely rotation","operations may","sous chef","larger operations","operations may","one cia","cia p","sous chef","also responsible","thexecutive chef","chef de","de partie","chef de","de partie","partie also","also known","station chef","line cook","large kitchens","de partie","partie might","several cooks","kitchens however","chef de","de partie","department line","line cooks","often divided","first cook","second cook","demi chef","commis chef","chef de","de partie","commis chef","chef range","range chef","larger kitchens","chef de","de partie","operation cia","cia p","recently completed","completed formal","formal culinary","culinary training","istill undergoing","undergoing training","training apprentice","apprentice st","st year","th year","year brigade","brigade system","chef titles","brigade system","system include","include cia","cia pp","pp class","french wikipedia","description saut","saut chef","saut ing","ing saut","saut ed","ed items","stations fish","fish chef","prepares fish","fish dishes","fish butcher","butcher ing","appropriate sauces","sauces thistation","thistation may","combined withe","withe saucier","saucier position","position roast","roast chef","chef r","prepares roasting","roasting roasted","appropriate sauce","sauce grill","grill chef","position may","combined withe","frying fried","fried items","position may","combined withe","position vegetable","vegetable chef","prepares hot","hot appetizer","often prepares","soups vegetables","smaller establishments","establishments thistation","thistation may","may also","also cover","tasks performed","full brigade","brigade system","smaller establishments","establishments thistation","thistation may","prepares vegetables","full brigade","brigade system","smaller establishments","establishments thistation","thistation may","also referred","swing cook","kitchen pantry","pantry chef","chef garde","preparing cold","cold foods","foods including","including salad","cold appetizer","charcuterie items","items butcher","meats poultry","sometimes fish","fish may","may also","also responsible","fish pastry","pastry chef","chef p","p tissier","tissier makes","makes baked","pastries cakes","cakes breads","breads andesserts","larger establishments","pastry chef","chef often","often supervises","kitchen assistant","assistant kitchen","kitchen assistants","two types","types kitchen","kitchen hands","kitchen porters","porters kitchen","kitchen hands","hands assist","basic food","food preparation","preparation tasks","washing salad","kitchen porters","general cleaning","cleaning duties","smaller kitchen","duties may","often referred","family meal","th century","century french","kitchen clean","common humorous","humorous title","modern kitchens","chef de","culinary education","education file","file oxford","oxford chef","chef school","school jpg","right chefs","chef school","oxford england","england culinary","culinary education","available fromany","fromany institutions","institutions offering","degree programs","culinary arts","arts depending","take one","four years","often part","curriculum regardless","theducation received","professional kitchens","kitchens follow","new cooks","lower level","st cook","cook position","training period","generally four","four years","newly qualified","qualified chef","chef consisting","consisting ofirst","ofirst year","year commis","accordance withe","withe chefs","chefs like","starter hors","entr e","e sections","demi chef","chef de","de partie","given relatively","relatively basic","basic tasks","tasks ideally","certain period","commis may","may work","vegetable station","kitchen chef","chef training","training options","usual formal","formal training","training period","four years","catering college","often spend","work placements","day release","release courses","work full","full time","attend catering","catering college","three years","years file","left chefs","mexico wearing","wearing standard","standard uniform","uniform x","x px","px image","image preparing","chef preparing","duck x","x px","standard uniform","chef includes","hat called","double breasted","breasted jacket","jacket apron","originally designed","hat called","representhe ways","ways thathe","thathe chef","chef could","modern chef","also provides","hat helps","originally worn","health regulations","largely decorative","neck tie","originally worn","usually white","double breasted","prevent serious","serious injuries","double breast","breast also","also serves","one side","common practice","practice file","cat jpg","knee length","length also","hot liquid","onto ithe","ithe apron","quickly removed","minimize burns","hard wearing","steel top","top cap","prevent injury","falling objects","knives according","hygiene regulations","allowed apart","wedding bands","unusual colour","food facial","facial hair","longer hair","often required","food safety","usually covered","gloves latex","notypically used","food preparation","preparation due","see also","also american","american culinary","culinary federation","federation augustescoffier","augustescoffier brigade","brigade cuisine","cuisine culinary","culinary art","art development","development chef","chef list","chefs list","pastry chefs","chefs list","restauranterminology personal","personal chef","chef world","world association","externalinks official","official certification","certification levels","american culinary","culinary federation","federation chef","chef training","career progression","progression inew","inew zealand","zealand category","category chefs","chefs category","category occupations","occupations category","category skills","skills category","category food","food andrink","andrink category","category restauranterminology","restauranterminology category","category culinary","culinary terminology"],"new_description":"image chef une thumb italian chef preparing diners chef trained skilled professional cook profession cook aspects ofood preparation particular cuisine word chef_derived term chef_de_cuisine director head kitchen chefs receive formal training institution well experienced chef use word chef titles specific areas ofood preparation sous_chef acts second command kitchen chef_de_partie specific area production brigade_cuisine brigade system system hierarchy found restaurants_hotels employing extensive staff many use word chef titles underneathe chefs kitchen assistants chef standard uniform includes hat called double breasted jacket apron shoes steel plastic caps word chef_derived shortened term chef_de_cuisine director head kitchen french word comes latin wikt linguistics english_languagenglish chief english title chef culinary profession originated haute_cuisine th_century culinary_arts among aspects french_language introduced french loan words thenglish_language file tandoor chef jpg thumb right chef working tandoor cylindrical clay oven used cooking baking various titles detailed given working professional kitchen considered title type chef many titles based brigade_cuisine brigade system documented augustescoffier others general meaning depending individual kitchen chef_de_cuisine names chef manager head_chef master chef person charge activities related kitchen usually includes menu creation management kitchen staff ordering purchasing inventory controlling raw material costs design chef_de_cuisine traditional french term thenglish word chef_derived head_chef often_used designate someone withe duties executive chef buthere usually someone charge head_chef possibly making larger executive direction menu final authority staff management decisions son often case executive chefs multiple restaurants involved checking sensory evaluation dishes preparation well aware sensory property specific chef sous_chef de_cuisine chef kitchen second command direct assistant chef_de_cuisine sous_chef works executive chef head_chef person may responsible scheduling kitchen staff thead chef duty also fill chef_de_partie line cook person kitchen inventory cleanliness organization continuing training entire staff sous_chef duties also_include carrying chef directives conducting line checks overseeing timely rotation food operations may sous_chef larger operations may one cia p sous_chef also responsible thexecutive chef chef_de_partie chef_de_partie also_known station chef line cook charge particularea production large kitchens de_partie might several cooks assistants kitchens however chef_de_partie worker department line cooks often divided hierarchy starting first cook second cook_son chef_demi chef commis chef_de_partie commis chef range chef commis larger kitchens works chef_de_partie learn station orange responsibilities operation cia p may chef recently completed formal culinary training istill undergoing training apprentice st year th year brigade system chef titles part brigade system include cia pp class french wikipedia french description saut chef saut ing saut ed items sauce usually position stations fish chef prepares fish dishes often fish butcher ing well appropriate sauces thistation may combined withe saucier position roast chef r prepares roasting roasted meat appropriate sauce grill chef prepares foods position may combined withe fry prepares frying fried items position may combined withe position vegetable chef prepares hot appetizer often prepares soups vegetables smaller establishments thistation may_also cover tasks performed l full brigade system smaller establishments thistation may handled l prepares vegetables full brigade system smaller establishments thistation may handled also_referred swing cook needed stations kitchen pantry chef garde preparing cold foods including salad cold appetizer p charcuterie items butcher meats poultry sometimes fish may_also responsible meats fish pastry_chef p tissier makes baked pastries cakes breads andesserts larger establishments pastry_chef often supervises kitchen assistant kitchen assistants two types kitchen hands kitchen porters kitchen hands assist basic food_preparation tasks chef direction carry relatively tasksuch potatoes washing salad kitchen porters involved washing general cleaning duties smaller kitchen duties may incorporated charge preparing meal staff meal often_referred staff family meal th_century french thenglish maid modern dishwasher keeper dishes charge dishes keeping kitchen clean common humorous title role modern kitchens chef_de culinary education file oxford chef school jpg thumb right chefs training chef school oxford england culinary education available fromany institutions offering bachelor degree programs culinary_arts depending level education take one four_years internship often part curriculum regardless theducation received professional kitchens follow system new cooks start lower level st cook position work way training period chef generally four_years apprentice newly qualified chef advanced commonly chef consisting ofirst year year commis son rate pay usually accordance withe chefs like chefs chef placed sections kitchen starter hors appetizer entr e sections guidance demi chef_de_partie given relatively basic tasks ideally time commis spend certain period section kitchen learn commis may work vegetable station kitchen chef training options usual formal training period chef two four_years catering college often spend summer work placements cases modified day release courses chef work full_time kitchen apprentice would attend catering college courses last one three_years file thumb left chefs mexico wearing standard uniform x px image preparing thumb chef preparing duck x px standard uniform chef includes hat called double breasted jacket apron shoes steel plastic caps chef hat originally designed tall hat called commonly representhe ways thathe chef could modern chef hat tall allow circulation air thead also_provides outlet hat helps prevent face hair food originally worn allow face health regulations largely decorative chef neck tie originally worn inside stop running face neck body jacket usually white show chef cleanliness heat double breasted prevent serious injuries burns double breast also_serves jacket one_side common_practice file cook cat jpg thumb right painted th apron worn knee length also assist prevention burns hot liquid onto ithe apron quickly removed minimize burns hard wearing steel top cap prevent injury falling objects knives according hygiene regulations allowed apart wedding bands religious arequired blue unusual colour thathey noticeable fall food facial hair longer hair often required food safety hands usually covered gloves latex notypically used food_preparation due latex see_also american culinary federation augustescoffier brigade_cuisine culinary art development chef list chefs list pastry_chefs list restauranterminology personal chef world association externalinks_official certification levels american culinary federation chef training career progression inew_zealand category chefs category occupations_category skills category_food_andrink category_restauranterminology category culinary terminology"},{"title":"Chef de partie","description":"a chef de partie station chef or line cook is a chef in charge of a particularea of production in a restaurant in large kitchens eachef de partie might have several cooks or assistants in most kitchens however the chef de partie is the only worker in that department line cooks are often divided into a hierarchy of their own starting with first cook then second cook and son as needed by thestablishment station chef titlestation chef titles which are part of the brigade system include mcbride pp","main_words":["chef","de_partie","station","chef","line","cook","chef","charge","particularea","production","restaurant","large","kitchens","de_partie","might","several","cooks","assistants","kitchens","however","chef_de_partie","worker","department","line","cooks","often","divided","hierarchy","starting","first","cook","second","cook_son","needed","thestablishment","station","chef","chef","titles","part","brigade","system","include","pp"],"clean_bigrams":[["chef","de"],["de","partie"],["partie","station"],["station","chef"],["line","cook"],["large","kitchens"],["de","partie"],["partie","might"],["several","cooks"],["kitchens","however"],["chef","de"],["de","partie"],["department","line"],["line","cooks"],["often","divided"],["first","cook"],["second","cook"],["thestablishment","station"],["station","chef"],["chef","titles"],["brigade","system"],["system","include"]],"all_collocations":["chef de","de partie","partie station","station chef","line cook","large kitchens","de partie","partie might","several cooks","kitchens however","chef de","de partie","department line","line cooks","often divided","first cook","second cook","thestablishment station","station chef","chef titles","brigade system","system include"],"new_description":"chef de_partie station chef line cook chef charge particularea production restaurant large kitchens de_partie might several cooks assistants kitchens however chef_de_partie worker department line cooks often divided hierarchy starting first cook second cook_son needed thestablishment station chef chef titles part brigade system include pp"},{"title":"Chef Jeremiah","description":"chef jeremiah also known as chef jeremiah bullfrog is a celebrity chef and food truck owner based in miami florida file chef jeremiahjpg thumb right alt chef jeremiah in miami florida chef jeremiah in miami early career chef jeremiah s career began in at johnson wales culinary school inorth miami floridafter his training he set off to work at some of the world s most avant garde and renowned restaurants including the michelin starred el bulli under ferran adri wd noma restaurant nomand restaurant aquavit as well as eateries like spice market and caf grey chef jeremiah bullfrog biography at starchefscom rick ross personal chef cooked at el bulli wd and noma firstwefeastcom gastropod miamin chef jeremiah converted airstream trailer into a mobile kitchen and launched gastropod miami the first gourmet street food truck in south florida road food eater miami the project gained the attention of the foodie community vendrtv described gastropod as pushing limits and boundaries of street food gastropod miami fl vendrtv youtube and nbc miami called the menu new takes on old classics chef jeremiah bullfrog jumpstarts gourmet on the go bing videos chef jeremiah bullfrog jumpstarts gourmet on the go nbc south florida within a year gastropod helped spawn a movement of more than trucks and was named best food truck by the miami new timespecialities over the years have included the oldirty dog a smoked short rib hot dog on a potato bun and topped with sweet spicy slaw the b nh m tacoxtail trotters country p t and pickled radishes the sloppy jos with brisket and curry in a hurry vegan curry with rice best food truck miami gastropod mobile gourmet miami new times later the gastropod concept evolved into the semi annual podbrunch series offering an eclectic menu in roving locations the october podbrunch athe wolfsonian museum in miami beach florida featured a prix fixe menu ofrench toast ice cream egg and potato taco charred yam cavatelli and pumpkin spice bundt cakes among other items chef jeremiah s pod brunch athe wolfsonian s dynamo cafe saturday october miamicom picklepeoples and subatomic sandwiches in chef jeremiah expanded his business beyond gastropod with picklepeoples in an interview chef jeremiah said his kickstarter funded pickling project is about using technology and cutting edge techniques to streamline a time honored tradition some of his pickled creations worked their way into specialty cocktails at renowned pop up bar the broken shaker jeremiah bullforg and his culinary lab tasting table in late chef jeremiah opened subatomic sandwiches athe wolfsonian fiu museum at washington avenue in miami beach florida subatomic sandwiches opens athe wolfsonian fiu the throw back sub shop features twists on classic sandwiches and house madeverything including bread tv and celebrity chef gigs a lifelong miami resident chef jeremiah describes his culinary style as hustling and is the personal chef of rapperick ross chef jeremiah bullfrog on cooking forick ross hustling and pickles afteross posted a picture of him to instagram chef jeremiah appeared alongside the rapper in a reebok classics television commercial called rick ross lives white hot chef jeremiah bullfrog of gastropodebuts in rick ross commercial foreebok miamicom in a season episode of the food network reality series chopped tv series chopped chef jeremiah made ito the final round in he faced off against bobby flay over cuban sandwiches on season of the food network program beat bobby flay in he made ito the final round of cutthroat kitchen the truck stops here see also list of chopped episodes list of chopped episodes list ofood trucks externalinks gastropod miami category american chefs category food trucks category living people","main_words":["chef","also_known","chef_jeremiah","bullfrog","celebrity","chef","food_truck","owner","based","miami","florida","file","chef","thumb","right_alt","chef_jeremiah","miami","florida","chef_jeremiah","miami","early","career","chef_jeremiah","career","began","johnson","wales","culinary","school","inorth","miami","training","set","work","world","garde","renowned","restaurants","including","michelin_starred","el","adri","noma","restaurant","restaurant","well","eateries","like","spice","market","caf","grey","chef_jeremiah","bullfrog","biography","rick","ross","personal","chef","cooked","el","noma","gastropod","chef_jeremiah","converted","trailer","mobile","kitchen","launched","gastropod","miami","first","gourmet","south","florida","road","food","miami","project","gained","attention","community","described","gastropod","pushing","limits","boundaries","street_food","gastropod","miami","youtube","nbc","miami","called","menu","new","takes","old","classics","chef_jeremiah","bullfrog","gourmet","go","videos","chef_jeremiah","bullfrog","gourmet","go","nbc","south","florida","within","year","gastropod","helped","movement","trucks","named","best_food_truck","miami","new","years","included","dog","smoked","short","rib","hot_dog","potato","bun","topped","sweet","spicy","b","country","p","pickled","jos","curry","vegan","curry","rice","best_food_truck","miami","gastropod","mobile","gourmet","miami","new","times","later","gastropod","concept","evolved","semi","annual","series","offering","eclectic","menu","roving","locations","october","athe","wolfsonian","museum","miami","beach_florida","featured","prix","menu","ofrench","toast","ice_cream","egg","potato","taco","yam","spice","cakes","among","items","chef_jeremiah","pod","brunch","athe","wolfsonian","cafe","saturday","october","sandwiches","chef_jeremiah","expanded","business","beyond","gastropod","interview","chef_jeremiah","said","funded","project","using","technology","cutting","edge","techniques","time","honored","tradition","pickled","creations","worked","way","specialty","cocktails","renowned","pop","bar","broken","shaker","culinary","lab","tasting","table","late","chef_jeremiah","opened","sandwiches","athe","wolfsonian","museum","washington","avenue","miami","beach_florida","sandwiches","opens","athe","wolfsonian","throw","back","sub","shop","features","twists","classic","sandwiches","house","including","bread","celebrity","chef","gigs","lifelong","miami","resident","chef_jeremiah","describes","culinary","style","personal","chef","ross","chef_jeremiah","bullfrog","cooking","ross","pickles","posted","picture","instagram","chef_jeremiah","appeared","alongside","classics","television","commercial","called","rick","ross","lives","white","hot","chef_jeremiah","bullfrog","rick","ross","commercial","season","episode","food_network","reality","series","chopped","tv_series","chopped","chef_jeremiah","made","ito","final","round","faced","bobby","cuban","sandwiches","season","food_network","program","beat","bobby","made","ito","final","round","kitchen","truck_stops","see_also","list","chopped","episodes","list","chopped","episodes","list_ofood_trucks","externalinks","gastropod","miami","category_american","chefs","category_food","trucks_category"],"clean_bigrams":[["chef","jeremiah"],["jeremiah","also"],["also","known"],["chef","jeremiah"],["jeremiah","bullfrog"],["celebrity","chef"],["food","truck"],["truck","owner"],["owner","based"],["miami","florida"],["florida","file"],["file","chef"],["thumb","right"],["right","alt"],["alt","chef"],["chef","jeremiah"],["miami","florida"],["florida","chef"],["chef","jeremiah"],["miami","early"],["early","career"],["career","chef"],["chef","jeremiah"],["career","began"],["johnson","wales"],["wales","culinary"],["culinary","school"],["school","inorth"],["inorth","miami"],["renowned","restaurants"],["restaurants","including"],["michelin","starred"],["starred","el"],["noma","restaurant"],["eateries","like"],["like","spice"],["spice","market"],["caf","grey"],["grey","chef"],["chef","jeremiah"],["jeremiah","bullfrog"],["bullfrog","biography"],["rick","ross"],["ross","personal"],["personal","chef"],["chef","cooked"],["chef","jeremiah"],["jeremiah","converted"],["mobile","kitchen"],["launched","gastropod"],["gastropod","miami"],["first","gourmet"],["gourmet","street"],["street","food"],["food","truck"],["south","florida"],["florida","road"],["road","food"],["project","gained"],["described","gastropod"],["pushing","limits"],["street","food"],["food","gastropod"],["gastropod","miami"],["nbc","miami"],["miami","called"],["menu","new"],["new","takes"],["old","classics"],["classics","chef"],["chef","jeremiah"],["jeremiah","bullfrog"],["videos","chef"],["chef","jeremiah"],["jeremiah","bullfrog"],["go","nbc"],["nbc","south"],["south","florida"],["florida","within"],["year","gastropod"],["gastropod","helped"],["named","best"],["best","food"],["food","truck"],["truck","miami"],["miami","new"],["smoked","short"],["short","rib"],["rib","hot"],["hot","dog"],["potato","bun"],["sweet","spicy"],["country","p"],["vegan","curry"],["rice","best"],["best","food"],["food","truck"],["truck","miami"],["miami","gastropod"],["gastropod","mobile"],["mobile","gourmet"],["gourmet","miami"],["miami","new"],["new","times"],["times","later"],["gastropod","concept"],["concept","evolved"],["semi","annual"],["series","offering"],["eclectic","menu"],["roving","locations"],["athe","wolfsonian"],["wolfsonian","museum"],["miami","beach"],["beach","florida"],["florida","featured"],["menu","ofrench"],["ofrench","toast"],["toast","ice"],["ice","cream"],["cream","egg"],["potato","taco"],["cakes","among"],["items","chef"],["chef","jeremiah"],["pod","brunch"],["brunch","athe"],["athe","wolfsonian"],["cafe","saturday"],["saturday","october"],["chef","jeremiah"],["jeremiah","expanded"],["business","beyond"],["beyond","gastropod"],["interview","chef"],["chef","jeremiah"],["jeremiah","said"],["using","technology"],["cutting","edge"],["edge","techniques"],["time","honored"],["honored","tradition"],["pickled","creations"],["creations","worked"],["specialty","cocktails"],["renowned","pop"],["broken","shaker"],["shaker","jeremiah"],["culinary","lab"],["lab","tasting"],["tasting","table"],["late","chef"],["chef","jeremiah"],["jeremiah","opened"],["sandwiches","athe"],["athe","wolfsonian"],["wolfsonian","museum"],["washington","avenue"],["miami","beach"],["beach","florida"],["sandwiches","opens"],["opens","athe"],["athe","wolfsonian"],["throw","back"],["back","sub"],["sub","shop"],["shop","features"],["features","twists"],["classic","sandwiches"],["including","bread"],["bread","tv"],["celebrity","chef"],["chef","gigs"],["lifelong","miami"],["miami","resident"],["resident","chef"],["chef","jeremiah"],["jeremiah","describes"],["culinary","style"],["personal","chef"],["ross","chef"],["chef","jeremiah"],["jeremiah","bullfrog"],["instagram","chef"],["chef","jeremiah"],["jeremiah","appeared"],["appeared","alongside"],["classics","television"],["television","commercial"],["commercial","called"],["called","rick"],["rick","ross"],["ross","lives"],["lives","white"],["white","hot"],["hot","chef"],["chef","jeremiah"],["jeremiah","bullfrog"],["rick","ross"],["ross","commercial"],["season","episode"],["food","network"],["network","reality"],["reality","series"],["series","chopped"],["chopped","tv"],["tv","series"],["series","chopped"],["chopped","chef"],["chef","jeremiah"],["jeremiah","made"],["made","ito"],["final","round"],["cuban","sandwiches"],["food","network"],["network","program"],["program","beat"],["beat","bobby"],["made","ito"],["final","round"],["truck","stops"],["see","also"],["also","list"],["chopped","episodes"],["episodes","list"],["chopped","episodes"],["episodes","list"],["list","ofood"],["ofood","trucks"],["trucks","externalinks"],["externalinks","gastropod"],["gastropod","miami"],["miami","category"],["category","american"],["american","chefs"],["chefs","category"],["category","food"],["food","trucks"],["trucks","category"],["category","living"],["living","people"]],"all_collocations":["chef jeremiah","jeremiah also","also known","chef jeremiah","jeremiah bullfrog","celebrity chef","food truck","truck owner","owner based","miami florida","florida file","file chef","right alt","alt chef","chef jeremiah","miami florida","florida chef","chef jeremiah","miami early","early career","career chef","chef jeremiah","career began","johnson wales","wales culinary","culinary school","school inorth","inorth miami","renowned restaurants","restaurants including","michelin starred","starred el","noma restaurant","eateries like","like spice","spice market","caf grey","grey chef","chef jeremiah","jeremiah bullfrog","bullfrog biography","rick ross","ross personal","personal chef","chef cooked","chef jeremiah","jeremiah converted","mobile kitchen","launched gastropod","gastropod miami","first gourmet","gourmet street","street food","food truck","south florida","florida road","road food","project gained","described gastropod","pushing limits","street food","food gastropod","gastropod miami","nbc miami","miami called","menu new","new takes","old classics","classics chef","chef jeremiah","jeremiah bullfrog","videos chef","chef jeremiah","jeremiah bullfrog","go nbc","nbc south","south florida","florida within","year gastropod","gastropod helped","named best","best food","food truck","truck miami","miami new","smoked short","short rib","rib hot","hot dog","potato bun","sweet spicy","country p","vegan curry","rice best","best food","food truck","truck miami","miami gastropod","gastropod mobile","mobile gourmet","gourmet miami","miami new","new times","times later","gastropod concept","concept evolved","semi annual","series offering","eclectic menu","roving locations","athe wolfsonian","wolfsonian museum","miami beach","beach florida","florida featured","menu ofrench","ofrench toast","toast ice","ice cream","cream egg","potato taco","cakes among","items chef","chef jeremiah","pod brunch","brunch athe","athe wolfsonian","cafe saturday","saturday october","chef jeremiah","jeremiah expanded","business beyond","beyond gastropod","interview chef","chef jeremiah","jeremiah said","using technology","cutting edge","edge techniques","time honored","honored tradition","pickled creations","creations worked","specialty cocktails","renowned pop","broken shaker","shaker jeremiah","culinary lab","lab tasting","tasting table","late chef","chef jeremiah","jeremiah opened","sandwiches athe","athe wolfsonian","wolfsonian museum","washington avenue","miami beach","beach florida","sandwiches opens","opens athe","athe wolfsonian","throw back","back sub","sub shop","shop features","features twists","classic sandwiches","including bread","bread tv","celebrity chef","chef gigs","lifelong miami","miami resident","resident chef","chef jeremiah","jeremiah describes","culinary style","personal chef","ross chef","chef jeremiah","jeremiah bullfrog","instagram chef","chef jeremiah","jeremiah appeared","appeared alongside","classics television","television commercial","commercial called","called rick","rick ross","ross lives","lives white","white hot","hot chef","chef jeremiah","jeremiah bullfrog","rick ross","ross commercial","season episode","food network","network reality","reality series","series chopped","chopped tv","tv series","series chopped","chopped chef","chef jeremiah","jeremiah made","made ito","final round","cuban sandwiches","food network","network program","program beat","beat bobby","made ito","final round","truck stops","see also","also list","chopped episodes","episodes list","chopped episodes","episodes list","list ofood","ofood trucks","trucks externalinks","externalinks gastropod","gastropod miami","miami category","category american","american chefs","chefs category","category food","food trucks","trucks category","category living","living people"],"new_description":"chef jeremiah also_known chef_jeremiah bullfrog celebrity chef food_truck owner based miami florida file chef thumb right_alt chef_jeremiah miami florida chef_jeremiah miami early career chef_jeremiah career began johnson wales culinary school inorth miami training set work world garde renowned restaurants including michelin_starred el adri noma restaurant restaurant well eateries like spice market caf grey chef_jeremiah bullfrog biography rick ross personal chef cooked el noma gastropod chef_jeremiah converted trailer mobile kitchen launched gastropod miami first gourmet street_food_truck south florida road food miami project gained attention community described gastropod pushing limits boundaries street_food gastropod miami youtube nbc miami called menu new takes old classics chef_jeremiah bullfrog gourmet go videos chef_jeremiah bullfrog gourmet go nbc south florida within year gastropod helped movement trucks named best_food_truck miami new years included dog smoked short rib hot_dog potato bun topped sweet spicy b country p pickled jos curry vegan curry rice best_food_truck miami gastropod mobile gourmet miami new times later gastropod concept evolved semi annual series offering eclectic menu roving locations october athe wolfsonian museum miami beach_florida featured prix menu ofrench toast ice_cream egg potato taco yam spice cakes among items chef_jeremiah pod brunch athe wolfsonian cafe saturday october sandwiches chef_jeremiah expanded business beyond gastropod interview chef_jeremiah said funded project using technology cutting edge techniques time honored tradition pickled creations worked way specialty cocktails renowned pop bar broken shaker jeremiah culinary lab tasting table late chef_jeremiah opened sandwiches athe wolfsonian museum washington avenue miami beach_florida sandwiches opens athe wolfsonian throw back sub shop features twists classic sandwiches house including bread tv celebrity chef gigs lifelong miami resident chef_jeremiah describes culinary style personal chef ross chef_jeremiah bullfrog cooking ross pickles posted picture instagram chef_jeremiah appeared alongside classics television commercial called rick ross lives white hot chef_jeremiah bullfrog rick ross commercial season episode food_network reality series chopped tv_series chopped chef_jeremiah made ito final round faced bobby cuban sandwiches season food_network program beat bobby made ito final round kitchen truck_stops see_also list chopped episodes list chopped episodes list_ofood_trucks externalinks gastropod miami category_american chefs category_food trucks_category living_people"},{"title":"Chernobyl stalking","description":"redirect chernobyl exclusion zone access and tourism category chernobyl disaster stalking category adventure travel ruk","main_words":["redirect","chernobyl","exclusion","zone","access","tourism_category","chernobyl","disaster","category_adventure_travel"],"clean_bigrams":[["redirect","chernobyl"],["chernobyl","exclusion"],["exclusion","zone"],["zone","access"],["tourism","category"],["category","chernobyl"],["chernobyl","disaster"],["category","adventure"],["adventure","travel"]],"all_collocations":["redirect chernobyl","chernobyl exclusion","exclusion zone","zone access","tourism category","category chernobyl","chernobyl disaster","category adventure","adventure travel"],"new_description":"redirect chernobyl exclusion zone access tourism_category chernobyl disaster category_adventure_travel"},{"title":"Chez Ami Supper Club","description":"demolished the chez ami known as the chez ami supper club was located at delaware avenue in buffalo ny and first opened its door in it is considered one of the first supper club s in the nation and had the first rotating bar in the united states the club was owned and operated by philip amigone until his death in it wasubsequently torn down in o neill marty razing final act in saga oformer buffalo hot spot buffalo evening news apr p theater was part of an existing structure and shared the building with other businesses it originally opened as an art house theater named the little in and only showed silent film s the little closed in and reopened as the hollywood run by the list of cinemand movie theater chains basil chain basil heavily promoted theater and showed foreign film s art film s and reruns the hollywood closed in athe time it was the only movie theater located on allentown buffalo delaware avenue in buffalo new york buffalone of the city s main thoroughfares after closing it was refurbished and became the chez ami one of the city s premier nightclubs the building was eventually razed in the interior of chez ami was designed by c theodore macheras who used art deco elements of mirrors neon indirect lighting and plush carpeting to achieve a modern entertainment experience the centerpiece of chez ami was a revolving restaurant revolving bar purported to be the first of its kind in americand took minutes to make a complete cycle file chez ami supper club adpng thumb right chez ami advertisement on december the chez ami suffered a fire that destroyed much of its interior patrons hurt as grease blaze sweeps chez ami buffalo evening news dec p the chez reopened in the spring of withe revolving barepaired an enlargedance floor and expanded balcony seating macheras oversaw the rebuild and much of the club s original art deco d cor was retained the chez ami was remodeled by amigone withe help of macheras again december the art deco theme was replaced with new renaissance revival architecture venetian d cor including a redecorated fade on the outside and a foot diameter chandelier over the dining area the revolving bar was also refurbished related businesses in addition to chez amigone designed and established the lounge athe buffalo memorial auditorium in and the restaurant and lounge at kleinhans music hall in where he was the restaurant concessionaire until decline and closure in thearly s in an efforto keep up with changes in consumer preferences the chez ami underwent another transformation into buffalo s first discotheque the live stagentertainment andining wereplaced by recorded music and open space for the dance floor within months of operating under the new formathe chez ami lost its liquor license onovember a detective claimed that a customer there had solicited him illegally in december amigone died athe age of pj amigone owner of chez ami dies at courier express dec p after his deathe club wasold to twother owners before it finally closedown in as of buffalo new york buffalo developer mark croce is currently renovating the harlow curtiss building into the curtiss hotel the hotel is anticipated to feature a revolving bar modeled after the revolving bar athe chez ami see also list of supper clubs category demolished buildings and structures inew york category restaurants in buffalo new york category nightclubs category buildings and structures with revolving restaurants category supper clubs","main_words":["demolished","chez_ami","known","chez_ami","supper_club","located","delaware","avenue","buffalo","first_opened","door","considered","one","first","supper_club","nation","first","rotating","bar","united_states","club","owned","operated","philip","amigone","death","wasubsequently","torn","neill","final","act","saga","oformer","buffalo","hot","spot","buffalo","evening","news","apr","p","theater","part","existing","structure","shared","building","businesses","originally","opened","art","house","theater","named","little","showed","silent","film","little","closed","reopened","hollywood","run","list","cinemand","movie_theater","chains","basil","chain","basil","heavily","promoted","theater","showed","foreign","film","art","film","hollywood","closed","athe_time","movie_theater","located","allentown","buffalo","delaware","avenue","buffalo_new_york","city","main","closing","refurbished","became","chez_ami","one","city","premier","nightclubs","building","eventually","interior","chez_ami","designed","c","theodore","used","art_deco","elements","mirrors","neon","indirect","lighting","achieve","modern","entertainment","experience","centerpiece","chez_ami","revolving_restaurant","revolving","bar","first","kind","americand","took","minutes","make","complete","cycle","file","chez_ami","supper_club","thumb","right","chez_ami","advertisement","december","chez_ami","suffered","fire","destroyed","much","interior","patrons","grease","chez_ami","buffalo","evening","news","dec","p","chez","reopened","spring","withe","revolving","floor","expanded","balcony","seating","oversaw","rebuild","much","club","original","art_deco","cor","retained","chez_ami","remodeled","amigone","withe_help","december","art_deco","theme","replaced","new","renaissance","revival","architecture","venetian","cor","including","fade","outside","foot","diameter","dining","area","revolving","bar_also","refurbished","related","businesses","addition","designed","established","lounge","athe","buffalo","memorial","auditorium","restaurant","lounge","music","hall","restaurant","decline","closure","thearly","efforto","keep","changes","consumer","preferences","chez_ami","underwent","another","transformation","buffalo","first","live","andining","recorded","music","open","space","dance_floor","within","months","operating","new","chez_ami","lost","liquor","license","onovember","detective","claimed","customer","illegally","december","amigone","died","athe_age","amigone","owner","chez_ami","dies","express","dec","p","deathe","club","wasold","twother","owners","finally","closedown","buffalo_new_york","buffalo","developer","mark","currently","building","hotel","hotel","anticipated","feature","revolving","bar","modeled","revolving","bar","athe","chez_ami","see_also","list","supper_clubs","category","demolished","buildings","structures","inew_york","category_restaurants","buffalo_new_york","category_nightclubs_category","buildings","structures","supper_clubs"],"clean_bigrams":[["chez","ami"],["ami","known"],["chez","ami"],["ami","supper"],["supper","club"],["delaware","avenue"],["first","opened"],["considered","one"],["first","supper"],["supper","club"],["first","rotating"],["rotating","bar"],["united","states"],["philip","amigone"],["wasubsequently","torn"],["final","act"],["saga","oformer"],["oformer","buffalo"],["buffalo","hot"],["hot","spot"],["spot","buffalo"],["buffalo","evening"],["evening","news"],["news","apr"],["apr","p"],["p","theater"],["existing","structure"],["originally","opened"],["art","house"],["house","theater"],["theater","named"],["showed","silent"],["silent","film"],["little","closed"],["hollywood","run"],["cinemand","movie"],["movie","theater"],["theater","chains"],["chains","basil"],["basil","chain"],["chain","basil"],["basil","heavily"],["heavily","promoted"],["promoted","theater"],["showed","foreign"],["foreign","film"],["art","film"],["hollywood","closed"],["athe","time"],["movie","theater"],["theater","located"],["allentown","buffalo"],["buffalo","delaware"],["delaware","avenue"],["buffalo","new"],["new","york"],["chez","ami"],["ami","one"],["premier","nightclubs"],["chez","ami"],["c","theodore"],["used","art"],["art","deco"],["deco","elements"],["mirrors","neon"],["neon","indirect"],["indirect","lighting"],["modern","entertainment"],["entertainment","experience"],["chez","ami"],["revolving","restaurant"],["restaurant","revolving"],["revolving","bar"],["americand","took"],["took","minutes"],["complete","cycle"],["cycle","file"],["file","chez"],["chez","ami"],["ami","supper"],["supper","club"],["thumb","right"],["right","chez"],["chez","ami"],["ami","advertisement"],["chez","ami"],["ami","suffered"],["destroyed","much"],["interior","patrons"],["chez","ami"],["ami","buffalo"],["buffalo","evening"],["evening","news"],["news","dec"],["dec","p"],["chez","reopened"],["withe","revolving"],["expanded","balcony"],["balcony","seating"],["original","art"],["art","deco"],["chez","ami"],["amigone","withe"],["withe","help"],["art","deco"],["deco","theme"],["new","renaissance"],["renaissance","revival"],["revival","architecture"],["architecture","venetian"],["cor","including"],["foot","diameter"],["dining","area"],["revolving","bar"],["also","refurbished"],["refurbished","related"],["related","businesses"],["chez","amigone"],["amigone","designed"],["lounge","athe"],["athe","buffalo"],["buffalo","memorial"],["memorial","auditorium"],["music","hall"],["efforto","keep"],["consumer","preferences"],["chez","ami"],["ami","underwent"],["underwent","another"],["another","transformation"],["recorded","music"],["open","space"],["dance","floor"],["floor","within"],["within","months"],["chez","ami"],["ami","lost"],["liquor","license"],["license","onovember"],["detective","claimed"],["december","amigone"],["amigone","died"],["died","athe"],["athe","age"],["amigone","owner"],["chez","ami"],["ami","dies"],["express","dec"],["dec","p"],["deathe","club"],["club","wasold"],["twother","owners"],["finally","closedown"],["buffalo","new"],["new","york"],["york","buffalo"],["buffalo","developer"],["developer","mark"],["revolving","bar"],["bar","modeled"],["revolving","bar"],["bar","athe"],["athe","chez"],["chez","ami"],["ami","see"],["see","also"],["also","list"],["supper","clubs"],["clubs","category"],["category","demolished"],["demolished","buildings"],["structures","inew"],["inew","york"],["york","category"],["category","restaurants"],["buffalo","new"],["new","york"],["york","category"],["category","nightclubs"],["nightclubs","category"],["category","buildings"],["revolving","restaurants"],["restaurants","category"],["category","supper"],["supper","clubs"]],"all_collocations":["chez ami","ami known","chez ami","ami supper","supper club","delaware avenue","first opened","considered one","first supper","supper club","first rotating","rotating bar","united states","philip amigone","wasubsequently torn","final act","saga oformer","oformer buffalo","buffalo hot","hot spot","spot buffalo","buffalo evening","evening news","news apr","apr p","p theater","existing structure","originally opened","art house","house theater","theater named","showed silent","silent film","little closed","hollywood run","cinemand movie","movie theater","theater chains","chains basil","basil chain","chain basil","basil heavily","heavily promoted","promoted theater","showed foreign","foreign film","art film","hollywood closed","athe time","movie theater","theater located","allentown buffalo","buffalo delaware","delaware avenue","buffalo new","new york","chez ami","ami one","premier nightclubs","chez ami","c theodore","used art","art deco","deco elements","mirrors neon","neon indirect","indirect lighting","modern entertainment","entertainment experience","chez ami","revolving restaurant","restaurant revolving","revolving bar","americand took","took minutes","complete cycle","cycle file","file chez","chez ami","ami supper","supper club","right chez","chez ami","ami advertisement","chez ami","ami suffered","destroyed much","interior patrons","chez ami","ami buffalo","buffalo evening","evening news","news dec","dec p","chez reopened","withe revolving","expanded balcony","balcony seating","original art","art deco","chez ami","amigone withe","withe help","art deco","deco theme","new renaissance","renaissance revival","revival architecture","architecture venetian","cor including","foot diameter","dining area","revolving bar","also refurbished","refurbished related","related businesses","chez amigone","amigone designed","lounge athe","athe buffalo","buffalo memorial","memorial auditorium","music hall","efforto keep","consumer preferences","chez ami","ami underwent","underwent another","another transformation","recorded music","open space","dance floor","floor within","within months","chez ami","ami lost","liquor license","license onovember","detective claimed","december amigone","amigone died","died athe","athe age","amigone owner","chez ami","ami dies","express dec","dec p","deathe club","club wasold","twother owners","finally closedown","buffalo new","new york","york buffalo","buffalo developer","developer mark","revolving bar","bar modeled","revolving bar","bar athe","athe chez","chez ami","ami see","see also","also list","supper clubs","clubs category","category demolished","demolished buildings","structures inew","inew york","york category","category restaurants","buffalo new","new york","york category","category nightclubs","nightclubs category","category buildings","revolving restaurants","restaurants category","category supper","supper clubs"],"new_description":"demolished chez_ami known chez_ami supper_club located delaware avenue buffalo first_opened door considered one first supper_club nation first rotating bar united_states club owned operated philip amigone death wasubsequently torn neill final act saga oformer buffalo hot spot buffalo evening news apr p theater part existing structure shared building businesses originally opened art house theater named little showed silent film little closed reopened hollywood run list cinemand movie_theater chains basil chain basil heavily promoted theater showed foreign film art film hollywood closed athe_time movie_theater located allentown buffalo delaware avenue buffalo_new_york city main closing refurbished became chez_ami one city premier nightclubs building eventually interior chez_ami designed c theodore used art_deco elements mirrors neon indirect lighting achieve modern entertainment experience centerpiece chez_ami revolving_restaurant revolving bar first kind americand took minutes make complete cycle file chez_ami supper_club thumb right chez_ami advertisement december chez_ami suffered fire destroyed much interior patrons grease chez_ami buffalo evening news dec p chez reopened spring withe revolving floor expanded balcony seating oversaw rebuild much club original art_deco cor retained chez_ami remodeled amigone withe_help december art_deco theme replaced new renaissance revival architecture venetian cor including fade outside foot diameter dining area revolving bar_also refurbished related businesses addition chez_amigone designed established lounge athe buffalo memorial auditorium restaurant lounge music hall restaurant decline closure thearly efforto keep changes consumer preferences chez_ami underwent another transformation buffalo first live andining recorded music open space dance_floor within months operating new chez_ami lost liquor license onovember detective claimed customer illegally december amigone died athe_age amigone owner chez_ami dies express dec p deathe club wasold twother owners finally closedown buffalo_new_york buffalo developer mark currently building hotel hotel anticipated feature revolving bar modeled revolving bar athe chez_ami see_also list supper_clubs category demolished buildings structures inew_york category_restaurants buffalo_new_york category_nightclubs_category buildings structures revolving_restaurants_category supper_clubs"},{"title":"Chez Ntemba","description":"chez ntemba is a chain of nightclub s owned by democratic republic of the congolese augustin kayembe the first chez ntemba nightclub was founded in lusaka there are night clubs all acrossub saharan africa references category nightclubs","main_words":["chez","chain","nightclub","owned","democratic","republic","first","chez","nightclub","founded","night_clubs","africa"],"clean_bigrams":[["democratic","republic"],["first","chez"],["night","clubs"],["africa","references"],["references","category"],["category","nightclubs"]],"all_collocations":["democratic republic","first chez","night clubs","africa references","references category","category nightclubs"],"new_description":"chez chain nightclub owned democratic republic first chez nightclub founded night_clubs africa references_category_nightclubs"},{"title":"Chi'Lantro BBQ","description":"hq location city austin texas owner jae kim num locations website official website chi lantro bbq is a korean mexican fusion korean mexican fusion food truck mobile truck and catering service which opened in austin texas in since then the former food truck operation has opened fourestaurants in the austin area with a th location opening in fall the name chi lantro is a fusion of kimchi and cilantro two distinct cultural staples aiming to reinventraditional koreand mexican cuisine they are locally known as the originator of a dish known as kimchi fries in february the business was opened by jae kim who was born in koreand moved to the us when he was eleven years old he graduated from california state university fullerton and opened his first food business athe age of twenty one a coffee shop called foothill caf whiche owned for three years he relocated to the culturally diverse austin area topen the food truck business at age twenty six the food truck operations initially served only the austin and fort hood texas areas expanding beyond the austin market in early with food truck service in houston which was discontinued in december with announcementhathe business was looking for a restaurant space on january an austin storefront restaurant was opened and in march plans for a second location in may were announced on may a stabbing occurred near a chi lantro food truck while it was on ut campus crime dallas news date work dallas news access date languagen the menu features fusion cuisine hybrid cuisine inspired by korean cuisine koreand mexican cuisine mexican food traditions items include kimchi frieseoul burritospicy fries tacos quesadillas and bulgogi burgers ingredients include combinations of bulgogi korean vinaigrette salad eggs monterey jack cheese limejuice a proprietary magic sauce and sesame seeds itsignature food kimchi fries are covered in caramelized bulgogi shredded cheddar cheese chile mayonnaise yellow onion chopped fresh cilantro sweet chili sauce thai chile sauce and sesame seedstyle of operation prior topening a restaurant location the business functioned primarily as a mobile kitchen or food truck the trucks make scheduled stops in the mornings afternoons and evenings in highly commercial areas in areas that appeal to consumers in the white collar workforce in addition to manualaborers the stereotypical customers for such establishments example stops include tech industry hubs like the offices of google ncsoft and bioware another part of the service is catering for parties corporatevents promotions weddings festivals conventions and various large social events in the area in january a small brick and mortar location opened adding an eat in option to their outdoor service as of april all chi lantro brick and mortars will not accept cash allocationsupport apple pay samsung pay and all major credit andebit cards use of internet and social media the business makes extensive use of social mediapplicationsuch as twitter foursquare yelp inc yelp and facebook to connect with a tech savvy customer base publishing of tweets keeps customers informed about whereach truck is going to be located the trucks are one of the many food trucks nationwide to pioneer the use of android operating system android and apple inc apple mobile devices for credit card transactions and the organization ofinances they are popular on youtube for itseries of commercials targeted to its fans it is that good fries like a g and chi lantrofied by the food trucks had been featured on the food network the great food truck race and the cooking channel and in were named one of huffington post s favorite food trucks at south by southwest sxsw inovember founder jae kim appeared on season episode of abc shark tank and secured a investment from barbara corcoran for a stake in chi lantro bbq participation in special events and promotions file chi lantro sxsw jpg thumb right south by southwest sxsw food truck lot nocturnal festival september st place in food network s the great food truck race august gypsy picnic trailer food festival austin tx november gypsy picnic food musichi lantro bbq charity promotion for japanesearthquake relief march myfoxaustin food vendoraises money for japan relief south by southwest sxsw promotion with intuit gopayment and loopt mashablecom chi lantro bbq offering a deal in the article texas craft brewers festival september texas craft brewers festival fun fun fest november austin city limits music festival austin city limits free pressummer fest south by southwest see also komex list ofood trucks externalinks category catering and food service companies of the united states category street food category culture of austin texas category food trucks","main_words":["location","city","austin_texas","owner","kim","num","locations","chi","lantro","bbq","korean","mexican","fusion","korean","mexican","fusion","food_truck","mobile","truck","catering","service","opened","austin_texas","since","former","food_truck","operation","opened","austin","area","th","location","opening","fall","name","chi","lantro","fusion","kimchi","cilantro","two","distinct","cultural","staples","aiming","koreand","mexican","cuisine","locally","known","dish","known","kimchi","fries","february","business","opened","kim","born","koreand","moved","us","eleven","years_old","graduated","california","state_university","opened","first","food","business","athe_age","twenty","one","coffee_shop","called","caf","whiche","owned","three_years","relocated","culturally","diverse","austin","area","topen","food_truck","business","age","twenty","six","food_truck","operations","initially","served","austin","fort","hood","texas","areas","expanding","beyond","austin","market","early","food_truck","service","houston","discontinued","december","business","looking","restaurant","space","january","austin","storefront","restaurant","opened","march","plans","second","location","may","announced","may","stabbing","occurred","near","chi","lantro","food_truck","campus","crime","dallas","news","date","work","dallas","news","access_date","languagen","menu","features","fusion","cuisine","hybrid","cuisine","inspired","korean","cuisine","koreand","mexican","cuisine","mexican","food","traditions","items","include","kimchi","fries","tacos","bulgogi","burgers","ingredients","include","combinations","bulgogi","korean","salad","eggs","monterey","jack","cheese","proprietary","magic","sauce","sesame","seeds","food","kimchi","fries","covered","bulgogi","shredded","cheddar","cheese","chile","mayonnaise","yellow","onion","chopped","fresh","cilantro","sweet","chili","sauce","thai","chile","sauce","sesame","operation","prior","restaurant","location","business","functioned","primarily","mobile","kitchen","food_truck","trucks","make","scheduled","stops","mornings","evenings","highly","commercial","areas","areas","appeal","consumers","white","collar","workforce","addition","stereotypical","customers","establishments","example","stops","include","tech","industry","like","offices","google","another","part","service","catering","parties","promotions","weddings","festivals","conventions","various","large","social","events","area","january","small","brick","mortar","location","opened","adding","eat","option","outdoor","service","april","chi","lantro","brick","accept","cash","apple","pay","pay","major","credit_cards","use","internet","social_media","business","makes","extensive","use","social","twitter","yelp","inc","yelp","facebook","connect","tech","savvy","customer","base","publishing","keeps","customers","informed","truck","going","located","trucks","one","many","food_trucks","nationwide","pioneer","use","android_operating_system","android","apple","inc","apple","mobile","devices","credit_card","transactions","organization","popular","youtube","commercials","targeted","fans","good","fries","like","g","chi","food_trucks","featured","food_network","great_food_truck","race","cooking","channel","named","one","huffington_post","favorite","food_trucks","south","southwest","sxsw","inovember","founder","kim","appeared","season","episode","abc","shark","tank","secured","investment","barbara","stake","chi","lantro","bbq","participation","special_events","promotions","file","chi","lantro","sxsw","jpg","thumb","right","south","southwest","sxsw","food_truck","lot","nocturnal","festival","september","st","place","food_network","great_food_truck","race","august","gypsy","picnic","trailer","food","festival","austin","november","gypsy","picnic","food","lantro","bbq","charity","promotion","relief","march","food","money","japan","relief","south","southwest","sxsw","promotion","chi","lantro","bbq","offering","deal","article","texas","craft","brewers","festival","september","texas","craft","brewers","festival","fun","fun","fest","november","austin","city","limits","music_festival","austin","city","limits","free","fest","south","southwest","see_also","list_ofood_trucks","externalinks_category","catering","food_service","companies","united_states","category_culture","austin_texas","category_food","trucks"],"clean_bigrams":[["location","city"],["city","austin"],["austin","texas"],["texas","owner"],["kim","num"],["num","locations"],["locations","website"],["website","official"],["official","website"],["website","chi"],["chi","lantro"],["lantro","bbq"],["korean","mexican"],["mexican","fusion"],["fusion","korean"],["korean","mexican"],["mexican","fusion"],["fusion","food"],["food","truck"],["truck","mobile"],["mobile","truck"],["catering","service"],["austin","texas"],["former","food"],["food","truck"],["truck","operation"],["austin","area"],["th","location"],["location","opening"],["name","chi"],["chi","lantro"],["cilantro","two"],["two","distinct"],["distinct","cultural"],["cultural","staples"],["staples","aiming"],["koreand","mexican"],["mexican","cuisine"],["locally","known"],["dish","known"],["kimchi","fries"],["koreand","moved"],["eleven","years"],["years","old"],["california","state"],["state","university"],["first","food"],["food","business"],["business","athe"],["athe","age"],["age","twenty"],["twenty","one"],["coffee","shop"],["shop","called"],["caf","whiche"],["whiche","owned"],["three","years"],["culturally","diverse"],["diverse","austin"],["austin","area"],["area","topen"],["food","truck"],["truck","business"],["age","twenty"],["twenty","six"],["food","truck"],["truck","operations"],["operations","initially"],["initially","served"],["fort","hood"],["hood","texas"],["texas","areas"],["areas","expanding"],["expanding","beyond"],["austin","market"],["food","truck"],["truck","service"],["restaurant","space"],["austin","storefront"],["storefront","restaurant"],["march","plans"],["second","location"],["stabbing","occurred"],["occurred","near"],["chi","lantro"],["lantro","food"],["food","truck"],["campus","crime"],["crime","dallas"],["dallas","news"],["news","date"],["date","work"],["work","dallas"],["dallas","news"],["news","access"],["access","date"],["date","languagen"],["menu","features"],["features","fusion"],["fusion","cuisine"],["cuisine","hybrid"],["hybrid","cuisine"],["cuisine","inspired"],["korean","cuisine"],["cuisine","koreand"],["koreand","mexican"],["mexican","cuisine"],["cuisine","mexican"],["mexican","food"],["food","traditions"],["traditions","items"],["items","include"],["include","kimchi"],["kimchi","fries"],["fries","tacos"],["bulgogi","burgers"],["burgers","ingredients"],["ingredients","include"],["include","combinations"],["bulgogi","korean"],["salad","eggs"],["eggs","monterey"],["monterey","jack"],["jack","cheese"],["proprietary","magic"],["magic","sauce"],["sesame","seeds"],["food","kimchi"],["kimchi","fries"],["bulgogi","shredded"],["shredded","cheddar"],["cheddar","cheese"],["cheese","chile"],["chile","mayonnaise"],["mayonnaise","yellow"],["yellow","onion"],["onion","chopped"],["chopped","fresh"],["fresh","cilantro"],["cilantro","sweet"],["sweet","chili"],["chili","sauce"],["sauce","thai"],["thai","chile"],["chile","sauce"],["operation","prior"],["restaurant","location"],["business","functioned"],["functioned","primarily"],["mobile","kitchen"],["food","truck"],["trucks","make"],["make","scheduled"],["scheduled","stops"],["highly","commercial"],["commercial","areas"],["white","collar"],["collar","workforce"],["stereotypical","customers"],["establishments","example"],["example","stops"],["stops","include"],["include","tech"],["tech","industry"],["another","part"],["promotions","weddings"],["weddings","festivals"],["festivals","conventions"],["various","large"],["large","social"],["social","events"],["small","brick"],["mortar","location"],["location","opened"],["opened","adding"],["outdoor","service"],["chi","lantro"],["lantro","brick"],["accept","cash"],["apple","pay"],["major","credit"],["cards","use"],["social","media"],["business","makes"],["makes","extensive"],["extensive","use"],["yelp","inc"],["inc","yelp"],["tech","savvy"],["savvy","customer"],["customer","base"],["base","publishing"],["keeps","customers"],["customers","informed"],["many","food"],["food","trucks"],["trucks","nationwide"],["android","operating"],["operating","system"],["system","android"],["apple","inc"],["inc","apple"],["apple","mobile"],["mobile","devices"],["credit","card"],["card","transactions"],["commercials","targeted"],["good","fries"],["fries","like"],["food","trucks"],["food","network"],["great","food"],["food","truck"],["truck","race"],["cooking","channel"],["named","one"],["huffington","post"],["favorite","food"],["food","trucks"],["southwest","sxsw"],["sxsw","inovember"],["inovember","founder"],["kim","appeared"],["season","episode"],["abc","shark"],["shark","tank"],["chi","lantro"],["lantro","bbq"],["bbq","participation"],["special","events"],["promotions","file"],["file","chi"],["chi","lantro"],["lantro","sxsw"],["sxsw","jpg"],["jpg","thumb"],["thumb","right"],["right","south"],["southwest","sxsw"],["sxsw","food"],["food","truck"],["truck","lot"],["lot","nocturnal"],["nocturnal","festival"],["festival","september"],["september","st"],["st","place"],["food","network"],["great","food"],["food","truck"],["truck","race"],["race","august"],["august","gypsy"],["gypsy","picnic"],["picnic","trailer"],["trailer","food"],["food","festival"],["festival","austin"],["november","gypsy"],["gypsy","picnic"],["picnic","food"],["lantro","bbq"],["bbq","charity"],["charity","promotion"],["relief","march"],["japan","relief"],["relief","south"],["southwest","sxsw"],["sxsw","promotion"],["chi","lantro"],["lantro","bbq"],["bbq","offering"],["article","texas"],["texas","craft"],["craft","brewers"],["brewers","festival"],["festival","september"],["september","texas"],["texas","craft"],["craft","brewers"],["brewers","festival"],["festival","fun"],["fun","fun"],["fun","fest"],["fest","november"],["november","austin"],["austin","city"],["city","limits"],["limits","music"],["music","festival"],["festival","austin"],["austin","city"],["city","limits"],["limits","free"],["fest","south"],["southwest","see"],["see","also"],["list","ofood"],["ofood","trucks"],["trucks","externalinks"],["externalinks","category"],["category","catering"],["food","service"],["service","companies"],["united","states"],["states","category"],["category","street"],["street","food"],["food","category"],["category","culture"],["austin","texas"],["texas","category"],["category","food"],["food","trucks"]],"all_collocations":["location city","city austin","austin texas","texas owner","kim num","num locations","locations website","website official","official website","website chi","chi lantro","lantro bbq","korean mexican","mexican fusion","fusion korean","korean mexican","mexican fusion","fusion food","food truck","truck mobile","mobile truck","catering service","austin texas","former food","food truck","truck operation","austin area","th location","location opening","name chi","chi lantro","cilantro two","two distinct","distinct cultural","cultural staples","staples aiming","koreand mexican","mexican cuisine","locally known","dish known","kimchi fries","koreand moved","eleven years","years old","california state","state university","first food","food business","business athe","athe age","age twenty","twenty one","coffee shop","shop called","caf whiche","whiche owned","three years","culturally diverse","diverse austin","austin area","area topen","food truck","truck business","age twenty","twenty six","food truck","truck operations","operations initially","initially served","fort hood","hood texas","texas areas","areas expanding","expanding beyond","austin market","food truck","truck service","restaurant space","austin storefront","storefront restaurant","march plans","second location","stabbing occurred","occurred near","chi lantro","lantro food","food truck","campus crime","crime dallas","dallas news","news date","date work","work dallas","dallas news","news access","access date","date languagen","menu features","features fusion","fusion cuisine","cuisine hybrid","hybrid cuisine","cuisine inspired","korean cuisine","cuisine koreand","koreand mexican","mexican cuisine","cuisine mexican","mexican food","food traditions","traditions items","items include","include kimchi","kimchi fries","fries tacos","bulgogi burgers","burgers ingredients","ingredients include","include combinations","bulgogi korean","salad eggs","eggs monterey","monterey jack","jack cheese","proprietary magic","magic sauce","sesame seeds","food kimchi","kimchi fries","bulgogi shredded","shredded cheddar","cheddar cheese","cheese chile","chile mayonnaise","mayonnaise yellow","yellow onion","onion chopped","chopped fresh","fresh cilantro","cilantro sweet","sweet chili","chili sauce","sauce thai","thai chile","chile sauce","operation prior","restaurant location","business functioned","functioned primarily","mobile kitchen","food truck","trucks make","make scheduled","scheduled stops","highly commercial","commercial areas","white collar","collar workforce","stereotypical customers","establishments example","example stops","stops include","include tech","tech industry","another part","promotions weddings","weddings festivals","festivals conventions","various large","large social","social events","small brick","mortar location","location opened","opened adding","outdoor service","chi lantro","lantro brick","accept cash","apple pay","major credit","cards use","social media","business makes","makes extensive","extensive use","yelp inc","inc yelp","tech savvy","savvy customer","customer base","base publishing","keeps customers","customers informed","many food","food trucks","trucks nationwide","android operating","operating system","system android","apple inc","inc apple","apple mobile","mobile devices","credit card","card transactions","commercials targeted","good fries","fries like","food trucks","food network","great food","food truck","truck race","cooking channel","named one","huffington post","favorite food","food trucks","southwest sxsw","sxsw inovember","inovember founder","kim appeared","season episode","abc shark","shark tank","chi lantro","lantro bbq","bbq participation","special events","promotions file","file chi","chi lantro","lantro sxsw","sxsw jpg","right south","southwest sxsw","sxsw food","food truck","truck lot","lot nocturnal","nocturnal festival","festival september","september st","st place","food network","great food","food truck","truck race","race august","august gypsy","gypsy picnic","picnic trailer","trailer food","food festival","festival austin","november gypsy","gypsy picnic","picnic food","lantro bbq","bbq charity","charity promotion","relief march","japan relief","relief south","southwest sxsw","sxsw promotion","chi lantro","lantro bbq","bbq offering","article texas","texas craft","craft brewers","brewers festival","festival september","september texas","texas craft","craft brewers","brewers festival","festival fun","fun fun","fun fest","fest november","november austin","austin city","city limits","limits music","music festival","festival austin","austin city","city limits","limits free","fest south","southwest see","see also","list ofood","ofood trucks","trucks externalinks","externalinks category","category catering","food service","service companies","united states","states category","category street","street food","food category","category culture","austin texas","texas category","category food","food trucks"],"new_description":"location city austin_texas owner kim num locations website_official_website chi lantro bbq korean mexican fusion korean mexican fusion food_truck mobile truck catering service opened austin_texas since former food_truck operation opened austin area th location opening fall name chi lantro fusion kimchi cilantro two distinct cultural staples aiming koreand mexican cuisine locally known dish known kimchi fries february business opened kim born koreand moved us eleven years_old graduated california state_university opened first food business athe_age twenty one coffee_shop called caf whiche owned three_years relocated culturally diverse austin area topen food_truck business age twenty six food_truck operations initially served austin fort hood texas areas expanding beyond austin market early food_truck service houston discontinued december business looking restaurant space january austin storefront restaurant opened march plans second location may announced may stabbing occurred near chi lantro food_truck campus crime dallas news date work dallas news access_date languagen menu features fusion cuisine hybrid cuisine inspired korean cuisine koreand mexican cuisine mexican food traditions items include kimchi fries tacos bulgogi burgers ingredients include combinations bulgogi korean salad eggs monterey jack cheese proprietary magic sauce sesame seeds food kimchi fries covered bulgogi shredded cheddar cheese chile mayonnaise yellow onion chopped fresh cilantro sweet chili sauce thai chile sauce sesame operation prior restaurant location business functioned primarily mobile kitchen food_truck trucks make scheduled stops mornings evenings highly commercial areas areas appeal consumers white collar workforce addition stereotypical customers establishments example stops include tech industry like offices google another part service catering parties promotions weddings festivals conventions various large social events area january small brick mortar location opened adding eat option outdoor service april chi lantro brick accept cash apple pay pay major credit_cards use internet social_media business makes extensive use social twitter yelp inc yelp facebook connect tech savvy customer base publishing keeps customers informed truck going located trucks one many food_trucks nationwide pioneer use android_operating_system android apple inc apple mobile devices credit_card transactions organization popular youtube commercials targeted fans good fries like g chi food_trucks featured food_network great_food_truck race cooking channel named one huffington_post favorite food_trucks south southwest sxsw inovember founder kim appeared season episode abc shark tank secured investment barbara stake chi lantro bbq participation special_events promotions file chi lantro sxsw jpg thumb right south southwest sxsw food_truck lot nocturnal festival september st place food_network great_food_truck race august gypsy picnic trailer food festival austin november gypsy picnic food lantro bbq charity promotion relief march food money japan relief south southwest sxsw promotion chi lantro bbq offering deal article texas craft brewers festival september texas craft brewers festival fun fun fest november austin city limits music_festival austin city limits free fest south southwest see_also list_ofood_trucks externalinks_category catering food_service companies united_states category_street_food category_culture austin_texas category_food trucks"},{"title":"Chicago (magazine)","description":"company troncountry based languagenglish website issn oclchicago is a monthly magazine published by tronc it concentrates on lifestyle and human interestories and on reviewing restaurants travel fashion and theatre from or nearby chicago its circulation in was larger than people magazine people in its market also in it received the national magazine award for general excellence it is a member of the city and regional magazine association crma chicago was established in it was founded as the programminguide for the classical radio station wfmt and was called chicago guide the name was changed in chicago introduced the nelson algren award a short story contesthathe magazine later abandoned before it was picked up by the chicago tribunewspaper in december chicago educational television association whichad owned wfmt and wttw announced that it would sell the magazine for million to a joint venture formed by metropolitan detroit magazine and adams communications the deal closed in january landmark media enterprises landmark communications boughthe magazine in primedia boughthe magazine in tribune boughthe magazine from primedia in staff chicago magazine s first editor was allen kelson he later becameditor in chief and then publisher in don gold the former managing editor of playboy magazine became the magazine s editorial director in a new position created between editor in chief allen kelson and editor john fink from until hillelevin served as the magazine s editor he left in early to join other investors in buying a miami based and caribbean media group levin wasucceeded by richard babcock who up to that point had been assistant managing editor of rupert murdoch s new york magazinew york magazine in april the magazine laid off longtime literary editor christinewman in december it was announced that longtime chicago restaurant critic dennis ray wheaton would be leaving his position and that jeff ruby would replace him in april richard babcock steppedown as chicago s editor after exactlyears in the job in augusthe magazine named beth fenner to replace babcock in december chicago magazine s managing editor shane tritsch resigned after years withe magazine after he was passed over for the top editorial postherelynne marek managing editor tritsch departs chicago magazine crain s chicago business december in longtime chicago magazine senior writer marcia froelke coburn left chicago magazine to join time out chicago as a contributing writerrobert feder cbs welcomes reporter back home to chicago facebook june in marchicago magazine s no editor cassie walker burke lefthe magazine to join crain s chicago business as an assistant managing editorrobert feder another chicago editor jumps to crain s march in march susanna homan was nameditor and publisher externalinks official website category establishments in illinois category american lifestyle magazines category american monthly magazines category city guides category entertainment magazines category local interest magazines category magazinestablished in category magazines published in chicago category tronc inc","main_words":["company","based","languagenglish_website_issn","monthly","magazine_published","tronc","concentrates","lifestyle","human","reviewing","restaurants","travel","fashion","theatre","nearby","chicago","circulation","larger","people","magazine","people","market","also","received","national","magazine","award","general","excellence","member","city","regional","magazine","association","chicago","established","founded","classical","radio","station","called","chicago","guide","name","changed","chicago","introduced","nelson","award","short_story","magazine","later","abandoned","picked","chicago","december","chicago","educational","television","association","whichad","owned","announced","would","sell","magazine","million","joint_venture","formed","metropolitan","detroit","magazine","adams","communications","deal","closed","january","landmark","media","enterprises","landmark","communications","boughthe","magazine","boughthe","magazine","tribune","boughthe","magazine","staff","chicago","magazine","first","editor","allen","later","chief","publisher","gold","former","managing_editor","playboy","magazine","became","magazine","editorial","director","new","position","created","editor","chief","allen","editor","john","served","magazine","editor","left","early","join","investors","buying","miami","based","caribbean","media_group","richard","babcock","point","assistant","managing_editor","rupert","murdoch","new_york","magazinew","york","magazine","april","magazine","laid","longtime","literary","editor","december","announced","longtime","chicago","restaurant","critic","dennis","ray","would","leaving","position","jeff","would","replace","april","richard","babcock","chicago","editor","job","augusthe","magazine","named","replace","babcock","december","chicago","magazine","managing_editor","shane","resigned","years","withe","magazine","passed","top","editorial","marek","managing_editor","chicago","magazine","crain","chicago","business","december","longtime","chicago","magazine","senior","writer","coburn","left","chicago","magazine","join","time","chicago","contributing","cbs","welcomes","reporter","back","home","chicago","facebook","june","magazine","editor","walker","burke","lefthe","magazine","join","crain","chicago","business","assistant","managing","another","chicago","editor","jumps","crain","march","march","publisher","externalinks_official_website_category_establishments","illinois","category_american","lifestyle_magazines_category","category_entertainment","magazines_category_local_interest_magazines","category_magazinestablished","category_magazines_published","chicago","category","tronc","inc"],"clean_bigrams":[["based","languagenglish"],["languagenglish","website"],["website","issn"],["monthly","magazine"],["magazine","published"],["reviewing","restaurants"],["restaurants","travel"],["travel","fashion"],["nearby","chicago"],["people","magazine"],["magazine","people"],["market","also"],["national","magazine"],["magazine","award"],["general","excellence"],["regional","magazine"],["magazine","association"],["classical","radio"],["radio","station"],["called","chicago"],["chicago","guide"],["chicago","introduced"],["short","story"],["magazine","later"],["later","abandoned"],["december","chicago"],["chicago","educational"],["educational","television"],["television","association"],["association","whichad"],["whichad","owned"],["would","sell"],["joint","venture"],["venture","formed"],["metropolitan","detroit"],["detroit","magazine"],["adams","communications"],["deal","closed"],["january","landmark"],["landmark","media"],["media","enterprises"],["enterprises","landmark"],["landmark","communications"],["communications","boughthe"],["boughthe","magazine"],["boughthe","magazine"],["tribune","boughthe"],["boughthe","magazine"],["staff","chicago"],["chicago","magazine"],["first","editor"],["former","managing"],["managing","editor"],["playboy","magazine"],["magazine","became"],["editorial","director"],["new","position"],["position","created"],["chief","allen"],["editor","john"],["miami","based"],["caribbean","media"],["media","group"],["richard","babcock"],["assistant","managing"],["managing","editor"],["rupert","murdoch"],["new","york"],["york","magazinew"],["magazinew","york"],["york","magazine"],["magazine","laid"],["longtime","literary"],["literary","editor"],["longtime","chicago"],["chicago","restaurant"],["restaurant","critic"],["critic","dennis"],["dennis","ray"],["would","replace"],["april","richard"],["richard","babcock"],["chicago","editor"],["augusthe","magazine"],["magazine","named"],["replace","babcock"],["december","chicago"],["chicago","magazine"],["managing","editor"],["editor","shane"],["years","withe"],["withe","magazine"],["top","editorial"],["marek","managing"],["managing","editor"],["chicago","magazine"],["magazine","crain"],["chicago","business"],["business","december"],["longtime","chicago"],["chicago","magazine"],["magazine","senior"],["senior","writer"],["coburn","left"],["left","chicago"],["chicago","magazine"],["join","time"],["cbs","welcomes"],["welcomes","reporter"],["reporter","back"],["back","home"],["chicago","facebook"],["facebook","june"],["walker","burke"],["burke","lefthe"],["lefthe","magazine"],["join","crain"],["chicago","business"],["assistant","managing"],["another","chicago"],["chicago","editor"],["editor","jumps"],["publisher","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["illinois","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","city"],["city","guides"],["guides","category"],["category","entertainment"],["entertainment","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["chicago","category"],["category","tronc"],["tronc","inc"]],"all_collocations":["based languagenglish","languagenglish website","website issn","monthly magazine","magazine published","reviewing restaurants","restaurants travel","travel fashion","nearby chicago","people magazine","magazine people","market also","national magazine","magazine award","general excellence","regional magazine","magazine association","classical radio","radio station","called chicago","chicago guide","chicago introduced","short story","magazine later","later abandoned","december chicago","chicago educational","educational television","television association","association whichad","whichad owned","would sell","joint venture","venture formed","metropolitan detroit","detroit magazine","adams communications","deal closed","january landmark","landmark media","media enterprises","enterprises landmark","landmark communications","communications boughthe","boughthe magazine","boughthe magazine","tribune boughthe","boughthe magazine","staff chicago","chicago magazine","first editor","former managing","managing editor","playboy magazine","magazine became","editorial director","new position","position created","chief allen","editor john","miami based","caribbean media","media group","richard babcock","assistant managing","managing editor","rupert murdoch","new york","york magazinew","magazinew york","york magazine","magazine laid","longtime literary","literary editor","longtime chicago","chicago restaurant","restaurant critic","critic dennis","dennis ray","would replace","april richard","richard babcock","chicago editor","augusthe magazine","magazine named","replace babcock","december chicago","chicago magazine","managing editor","editor shane","years withe","withe magazine","top editorial","marek managing","managing editor","chicago magazine","magazine crain","chicago business","business december","longtime chicago","chicago magazine","magazine senior","senior writer","coburn left","left chicago","chicago magazine","join time","cbs welcomes","welcomes reporter","reporter back","back home","chicago facebook","facebook june","walker burke","burke lefthe","lefthe magazine","join crain","chicago business","assistant managing","another chicago","chicago editor","editor jumps","publisher externalinks","externalinks official","official website","website category","category establishments","illinois category","category american","american lifestyle","lifestyle magazines","magazines category","category american","american monthly","monthly magazines","magazines category","category city","city guides","guides category","category entertainment","entertainment magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines published","chicago category","category tronc","tronc inc"],"new_description":"company based languagenglish_website_issn monthly magazine_published tronc concentrates lifestyle human reviewing restaurants travel fashion theatre nearby chicago circulation larger people magazine people market also received national magazine award general excellence member city regional magazine association chicago established founded classical radio station called chicago guide name changed chicago introduced nelson award short_story magazine later abandoned picked chicago december chicago educational television association whichad owned announced would sell magazine million joint_venture formed metropolitan detroit magazine adams communications deal closed january landmark media enterprises landmark communications boughthe magazine boughthe magazine tribune boughthe magazine staff chicago magazine first editor allen later chief publisher gold former managing_editor playboy magazine became magazine editorial director new position created editor chief allen editor john served magazine editor left early join investors buying miami based caribbean media_group richard babcock point assistant managing_editor rupert murdoch new_york magazinew york magazine april magazine laid longtime literary editor december announced longtime chicago restaurant critic dennis ray would leaving position jeff would replace april richard babcock chicago editor job augusthe magazine named replace babcock december chicago magazine managing_editor shane resigned years withe magazine passed top editorial marek managing_editor chicago magazine crain chicago business december longtime chicago magazine senior writer coburn left chicago magazine join time chicago contributing cbs welcomes reporter back home chicago facebook june magazine editor walker burke lefthe magazine join crain chicago business assistant managing another chicago editor jumps crain march march publisher externalinks_official_website_category_establishments illinois category_american lifestyle_magazines_category american_monthly_magazines_category_city_guides category_entertainment magazines_category_local_interest_magazines category_magazinestablished category_magazines_published chicago category tronc inc"},{"title":"Chifa","description":"chifa is culinary tradition based on chinese cantoneselements fused with traditional peruvian ingredients and traditions though originating in peru the chifa tradition has been adopted by neighboring countries likecuador and bolivia chinese people chinese immigrants came to peru mainly from the southern province of guangdong and particularly its capital city guangzhou in the late th and early th centuries they settled for the most part in the coast of peru and the capital city of lima the term chifa is also used to describe a restaurant where this type ofood iserved chinese peruvian food has become one of the most popular types ofood in peru there are thousands of chifa restaurants across all districts of limand many more throughout other cities of peru with sometimes multiple independent restaurants operating in close proximity on a single city block the origin of the term chifa comes from the cantonese jyutping ci faan which means to eat rice or to have a meal a similar loanword arroz chaufa comes from the cantonese jyutping caau faan or fried rice many other words in the peruvian colloquialanguage that are of chinese originclude kion from cantonese jyutpingoeng and sillao from the cantonese jyutping si jau as chinese peruvians chinese immigrants in peru progressed economically they imported a limited number of ingredients to be able to produce a more authentic version of their home cuisine additionally they began to plant a variety of chinese vegetables with seeds imported from china however due to a lack of ingredients the chinese were not able to prepare their cuisine in the authentic manner of their homeland around the first chinese peruvian restaurants were opened in limand were given the name chifa the limean aristocracy was amazed by the bittersweet sauce chaufa rice the soup and other dishes of the ancient cuisine from that moment on wealthy limeans became fascinated by chifa to an extenthat in some regions of the country there are more chifas than creole peoples creole whichere is used to refer to the natives restaurants additionally peruvian chefs began to use products used in traditional chinese cooking such as ginger soy sauce scallion s and a variety of other ingredients which began to make their way into daily limean cuisine there are different accounts on the development of chifa restaurants in lima the peruvian capital such as the following le n pp why is the chinatown lima chinatown of lima near the central market called capon because on ucayali street pigs bullsheep and goats were fattened to be made more appetizing near capon streethere was a piece of land known as otaiza which was rented by a group of chinese free of the indenturement contract free to chartheir own horizon doing whathey best knew how to do cooking and merchanting capon turned into the birthplace of chinese food and of the first peruvian chifas a blessing from the sky soon all of lima comes to eat ton kin sen to thon po to men yut and to san joy lao where there was even dancing to a live orchestrat one time or another nobody knows when chinese restaurants began to become known as chifa for some this word was derived from the chinese ni chi fan or have you eaten yet soon later would come the dish chau fan fried rice and finally chaufa dish that comes with almost every chifa meale n r pp color astated the history of chifa is deeply rooted in the development of the chinatown lima chinatown of lima originally prepared by unhealthy or unsavory methods but whichas become focal point in cultural artisticommercial and especially gastronomic interest chinatown is located near capon street in barrios altos in the historicentre of limage sillao jpg px thumb soy sauce known in peru asillao from the cantonese name of the item is an important ingredient in chifa image chaufa de carne jpg px thumb arroz chaufa the variety pictured includes beef and bean sprout s peruvian chifa is distinct mostly due to its peruvian cuisine influences from chinese food found in other parts of the world although certain aspects found in chinese food internationally are common to peruvian chifa such as wontons fried rice chaufa sweet and sour sauce and soy sauce like most chinese food internationally and within china rice meat noodles and vegetables are important staples to chifa is enjoyed by all socioeconomic levels as evident by the ability to find chifas directed towards those with a more ample budget and seeking a morefined atmosphere whereas chifas de barrio are directed towards a different social stratando not have the same level of atmosphere and are directed towards consumers accustomed to the type ofood which they serve currently in the city of lima there are over chifa restaurants popular chifa dishes class wikitable name image description arroz chaufa file arroz chaufa jpg px cantonese peruvian style fried rice white rice soy sauce scallions fried egg and meat such as chicken or pork chow mein tallarin saltado file tallarin saltado perujpg px cantonese peruvian style chow mein gallina chi jau kai chicken with chu hou sauce sweet and sour chicken gallina tipa kay file sweetsourchickensoakedjpg px chicken with sweet and sour sauce pollo enrollado file pollo enrrollado cajamarcajpg px chicken rolled into fried crust chicharron de gallina fired simmered chicken cubeserved with spiced lemon juice pollo con tausi seasoned chicken with a dark broth aeropuerto a mixture of arroz chaufand tallarin saltado wonton wantan frito file wantan fritojpg px fried wonton sopa wantan file sopa wantanjpg px cantonese peruvian style wonton soup wonton kam lu wantan file kam lu wantanjpg px wontonstir fried with sweet and sour sauce vegetables and meat chicken soup sopa estilo chifa chinese style chicken soup egg drop soup sopa fu chi fu egg drop soup chifas in other countriesince at leasthe s chinese immigrants had alsopened chifas ineighboring ecuador chifas have also been opened in boliviand chile see also chinese cuisine peruvian cuisine chinese peruvians chinatown lima chinatown of lima es chifa spanish wikipedia externalinks category cantonese cuisine category peruvian cuisine category types of restaurants","main_words":["chifa","culinary","tradition","based","chinese","traditional","peruvian","ingredients","traditions","though","originating","peru","chifa","tradition","adopted","neighboring","countries","bolivia","chinese","people","chinese","immigrants","came","peru","mainly","southern","province","particularly","capital_city","guangzhou","late_th","early_th","centuries","settled","part","coast","peru","capital_city","lima","term","chifa","also_used","describe","restaurant","type","ofood","iserved","chinese","peruvian","food","become_one","popular","types_ofood","peru","thousands","chifa","restaurants","across","districts","limand","many","throughout","cities","peru","sometimes","multiple","independent","restaurants","operating","close_proximity","single","city","block","origin","term","chifa","comes","cantonese","means","eat","rice","meal","similar","loanword","arroz","chaufa","comes","cantonese","fried_rice","many","words","peruvian","chinese","cantonese","cantonese","chinese","chinese","immigrants","peru","economically","imported","limited","number","ingredients","able","produce","authentic","version","home","cuisine","additionally","began","plant","variety","chinese","vegetables","seeds","imported","china","however","due","lack","ingredients","chinese","able","prepare","cuisine","authentic","manner","homeland","around","first","chinese","peruvian","restaurants","opened","limand","given","name","chifa","aristocracy","sauce","chaufa","rice","soup","dishes","ancient","cuisine","moment","wealthy","became","chifa","regions","country","chifas","creole","peoples","creole","used","refer","natives","restaurants","additionally","peruvian","chefs","began","use","products","used","traditional","chinese","cooking","ginger","soy","sauce","variety","ingredients","began","make","way","daily","cuisine","different","accounts","development","chifa","restaurants","lima","peruvian","capital","following","n","pp","chinatown","lima","chinatown","lima","near","central","market","called","capon","ucayali","street","pigs","goats","made","near","capon","piece","land","known","rented","group","chinese","free","contract","free","horizon","whathey","best","knew","cooking","capon","turned","birthplace","chinese","food","first","peruvian","chifas","sky","soon","lima","comes","eat","ton","men","san","joy","even","dancing","live","one_time","another","nobody","knows","chinese","restaurants","began","become","known","chifa","word","derived","chinese","chi","fan","eaten","yet","soon","later","would","come","dish","fan","fried_rice","finally","chaufa","dish","comes","almost","every","chifa","n","r","pp","color","astated","history","chifa","deeply","rooted","development","chinatown","lima","chinatown","lima","originally","prepared","unhealthy","methods","whichas","become","focal","point","cultural","especially","gastronomic","interest","chinatown","located_near","capon","street","jpg_px_thumb","soy","sauce","known","peru","cantonese","name","item","important","ingredient","chifa","image","chaufa","de","carne","jpg_px_thumb","arroz","chaufa","variety","pictured","includes","beef","bean","sprout","peruvian","chifa","distinct","mostly","due","peruvian","cuisine","influences","chinese","food","found","parts","world","although","certain","aspects","found","chinese","food","internationally","common","peruvian","chifa","fried_rice","chaufa","sweet","sour","sauce","soy","sauce","like","chinese","food","internationally","within","china","rice","meat","noodles","vegetables","important","staples","chifa","enjoyed","socioeconomic","levels","evident","ability","find","chifas","directed","towards","ample","budget","seeking","atmosphere","whereas","chifas","de","directed","towards","different","social","level","atmosphere","directed","towards","consumers","accustomed","type","ofood","serve","currently","city","lima","chifa","restaurants","popular","chifa","dishes","class","wikitable","name","image","description","arroz","chaufa","file","arroz","chaufa","jpg_px","cantonese","peruvian","style","fried_rice","white","rice","soy","sauce","fried","egg","meat","chicken","pork","chow","file","px","cantonese","peruvian","style","chow","chi","kai","chicken","sauce","sweet","sour","chicken","kay","file","px","chicken","sweet","sour","sauce","pollo","file","pollo","px","chicken","rolled","fried","crust","de","fired","chicken","spiced","lemon","juice","pollo","con","seasoned","chicken","dark","mixture","arroz","wonton","wantan","file","wantan","px","fried","wonton","sopa","wantan","file","sopa","px","cantonese","peruvian","style","wonton","soup","wonton","wantan","file","px","fried","sweet","sour","sauce","vegetables","meat","chicken","soup","sopa","chifa","chinese","style","chicken","soup","egg","drop","soup","sopa","chi","egg","drop","soup","chifas","leasthe","chinese","immigrants","chifas","ecuador","chifas","also","opened","chile","see_also","chinese","cuisine","peruvian","cuisine","chinese","chinatown","lima","chinatown","lima","chifa","spanish","wikipedia","externalinks_category","cantonese","cuisine_category","peruvian","cuisine_category_types","restaurants"],"clean_bigrams":[["culinary","tradition"],["tradition","based"],["traditional","peruvian"],["peruvian","ingredients"],["traditions","though"],["though","originating"],["chifa","tradition"],["neighboring","countries"],["bolivia","chinese"],["chinese","people"],["people","chinese"],["chinese","immigrants"],["immigrants","came"],["peru","mainly"],["southern","province"],["capital","city"],["city","guangzhou"],["late","th"],["early","th"],["th","centuries"],["capital","city"],["term","chifa"],["also","used"],["type","ofood"],["ofood","iserved"],["iserved","chinese"],["chinese","peruvian"],["peruvian","food"],["become","one"],["popular","types"],["types","ofood"],["chifa","restaurants"],["restaurants","across"],["limand","many"],["sometimes","multiple"],["multiple","independent"],["independent","restaurants"],["restaurants","operating"],["close","proximity"],["single","city"],["city","block"],["term","chifa"],["chifa","comes"],["eat","rice"],["similar","loanword"],["loanword","arroz"],["arroz","chaufa"],["chaufa","comes"],["fried","rice"],["rice","many"],["chinese","immigrants"],["limited","number"],["authentic","version"],["home","cuisine"],["cuisine","additionally"],["chinese","vegetables"],["seeds","imported"],["china","however"],["however","due"],["authentic","manner"],["homeland","around"],["first","chinese"],["chinese","peruvian"],["peruvian","restaurants"],["name","chifa"],["sauce","chaufa"],["chaufa","rice"],["ancient","cuisine"],["creole","peoples"],["peoples","creole"],["natives","restaurants"],["restaurants","additionally"],["additionally","peruvian"],["peruvian","chefs"],["chefs","began"],["use","products"],["products","used"],["traditional","chinese"],["chinese","cooking"],["ginger","soy"],["soy","sauce"],["different","accounts"],["chifa","restaurants"],["peruvian","capital"],["n","pp"],["chinatown","lima"],["lima","chinatown"],["chinatown","lima"],["lima","near"],["central","market"],["market","called"],["called","capon"],["ucayali","street"],["street","pigs"],["near","capon"],["land","known"],["chinese","free"],["contract","free"],["whathey","best"],["best","knew"],["capon","turned"],["chinese","food"],["first","peruvian"],["peruvian","chifas"],["sky","soon"],["lima","comes"],["eat","ton"],["san","joy"],["even","dancing"],["one","time"],["another","nobody"],["nobody","knows"],["chinese","restaurants"],["restaurants","began"],["become","known"],["chi","fan"],["eaten","yet"],["yet","soon"],["soon","later"],["later","would"],["would","come"],["fan","fried"],["fried","rice"],["finally","chaufa"],["chaufa","dish"],["almost","every"],["every","chifa"],["n","r"],["r","pp"],["pp","color"],["color","astated"],["deeply","rooted"],["chinatown","lima"],["lima","chinatown"],["chinatown","lima"],["lima","originally"],["originally","prepared"],["whichas","become"],["become","focal"],["focal","point"],["especially","gastronomic"],["gastronomic","interest"],["interest","chinatown"],["located","near"],["near","capon"],["capon","street"],["jpg","px"],["px","thumb"],["thumb","soy"],["soy","sauce"],["sauce","known"],["cantonese","name"],["important","ingredient"],["chifa","image"],["image","chaufa"],["chaufa","de"],["de","carne"],["carne","jpg"],["jpg","px"],["px","thumb"],["thumb","arroz"],["arroz","chaufa"],["variety","pictured"],["pictured","includes"],["includes","beef"],["bean","sprout"],["peruvian","chifa"],["distinct","mostly"],["mostly","due"],["peruvian","cuisine"],["cuisine","influences"],["chinese","food"],["food","found"],["world","although"],["although","certain"],["certain","aspects"],["aspects","found"],["chinese","food"],["food","internationally"],["peruvian","chifa"],["fried","rice"],["rice","chaufa"],["chaufa","sweet"],["sour","sauce"],["soy","sauce"],["sauce","like"],["chinese","food"],["food","internationally"],["within","china"],["china","rice"],["rice","meat"],["meat","noodles"],["important","staples"],["socioeconomic","levels"],["find","chifas"],["chifas","directed"],["directed","towards"],["ample","budget"],["atmosphere","whereas"],["whereas","chifas"],["chifas","de"],["directed","towards"],["different","social"],["directed","towards"],["towards","consumers"],["consumers","accustomed"],["type","ofood"],["serve","currently"],["chifa","restaurants"],["restaurants","popular"],["popular","chifa"],["chifa","dishes"],["dishes","class"],["class","wikitable"],["wikitable","name"],["name","image"],["image","description"],["description","arroz"],["arroz","chaufa"],["chaufa","file"],["file","arroz"],["arroz","chaufa"],["chaufa","jpg"],["jpg","px"],["px","cantonese"],["cantonese","peruvian"],["peruvian","style"],["style","fried"],["fried","rice"],["rice","white"],["white","rice"],["rice","soy"],["soy","sauce"],["fried","egg"],["meat","chicken"],["pork","chow"],["px","cantonese"],["cantonese","peruvian"],["peruvian","style"],["style","chow"],["kai","chicken"],["sauce","sweet"],["sour","chicken"],["kay","file"],["px","chicken"],["sour","sauce"],["sauce","pollo"],["file","pollo"],["px","chicken"],["chicken","rolled"],["fried","crust"],["spiced","lemon"],["lemon","juice"],["juice","pollo"],["pollo","con"],["seasoned","chicken"],["wonton","wantan"],["wantan","file"],["file","wantan"],["px","fried"],["fried","wonton"],["wonton","sopa"],["sopa","wantan"],["wantan","file"],["file","sopa"],["px","cantonese"],["cantonese","peruvian"],["peruvian","style"],["style","wonton"],["wonton","soup"],["soup","wonton"],["wonton","wantan"],["wantan","file"],["px","fried"],["sour","sauce"],["sauce","vegetables"],["meat","chicken"],["chicken","soup"],["soup","sopa"],["chifa","chinese"],["chinese","style"],["style","chicken"],["chicken","soup"],["soup","egg"],["egg","drop"],["drop","soup"],["soup","sopa"],["egg","drop"],["drop","soup"],["soup","chifas"],["chinese","immigrants"],["ecuador","chifas"],["chile","see"],["see","also"],["also","chinese"],["chinese","cuisine"],["cuisine","peruvian"],["peruvian","cuisine"],["cuisine","chinese"],["chinatown","lima"],["lima","chinatown"],["chinatown","lima"],["chifa","spanish"],["spanish","wikipedia"],["wikipedia","externalinks"],["externalinks","category"],["category","cantonese"],["cantonese","cuisine"],["cuisine","category"],["category","peruvian"],["peruvian","cuisine"],["cuisine","category"],["category","types"]],"all_collocations":["culinary tradition","tradition based","traditional peruvian","peruvian ingredients","traditions though","though originating","chifa tradition","neighboring countries","bolivia chinese","chinese people","people chinese","chinese immigrants","immigrants came","peru mainly","southern province","capital city","city guangzhou","late th","early th","th centuries","capital city","term chifa","also used","type ofood","ofood iserved","iserved chinese","chinese peruvian","peruvian food","become one","popular types","types ofood","chifa restaurants","restaurants across","limand many","sometimes multiple","multiple independent","independent restaurants","restaurants operating","close proximity","single city","city block","term chifa","chifa comes","eat rice","similar loanword","loanword arroz","arroz chaufa","chaufa comes","fried rice","rice many","chinese immigrants","limited number","authentic version","home cuisine","cuisine additionally","chinese vegetables","seeds imported","china however","however due","authentic manner","homeland around","first chinese","chinese peruvian","peruvian restaurants","name chifa","sauce chaufa","chaufa rice","ancient cuisine","creole peoples","peoples creole","natives restaurants","restaurants additionally","additionally peruvian","peruvian chefs","chefs began","use products","products used","traditional chinese","chinese cooking","ginger soy","soy sauce","different accounts","chifa restaurants","peruvian capital","n pp","chinatown lima","lima chinatown","chinatown lima","lima near","central market","market called","called capon","ucayali street","street pigs","near capon","land known","chinese free","contract free","whathey best","best knew","capon turned","chinese food","first peruvian","peruvian chifas","sky soon","lima comes","eat ton","san joy","even dancing","one time","another nobody","nobody knows","chinese restaurants","restaurants began","become known","chi fan","eaten yet","yet soon","soon later","later would","would come","fan fried","fried rice","finally chaufa","chaufa dish","almost every","every chifa","n r","r pp","pp color","color astated","deeply rooted","chinatown lima","lima chinatown","chinatown lima","lima originally","originally prepared","whichas become","become focal","focal point","especially gastronomic","gastronomic interest","interest chinatown","located near","near capon","capon street","jpg px","px thumb","thumb soy","soy sauce","sauce known","cantonese name","important ingredient","chifa image","image chaufa","chaufa de","de carne","carne jpg","jpg px","px thumb","thumb arroz","arroz chaufa","variety pictured","pictured includes","includes beef","bean sprout","peruvian chifa","distinct mostly","mostly due","peruvian cuisine","cuisine influences","chinese food","food found","world although","although certain","certain aspects","aspects found","chinese food","food internationally","peruvian chifa","fried rice","rice chaufa","chaufa sweet","sour sauce","soy sauce","sauce like","chinese food","food internationally","within china","china rice","rice meat","meat noodles","important staples","socioeconomic levels","find chifas","chifas directed","directed towards","ample budget","atmosphere whereas","whereas chifas","chifas de","directed towards","different social","directed towards","towards consumers","consumers accustomed","type ofood","serve currently","chifa restaurants","restaurants popular","popular chifa","chifa dishes","dishes class","wikitable name","name image","image description","description arroz","arroz chaufa","chaufa file","file arroz","arroz chaufa","chaufa jpg","jpg px","px cantonese","cantonese peruvian","peruvian style","style fried","fried rice","rice white","white rice","rice soy","soy sauce","fried egg","meat chicken","pork chow","px cantonese","cantonese peruvian","peruvian style","style chow","kai chicken","sauce sweet","sour chicken","kay file","px chicken","sour sauce","sauce pollo","file pollo","px chicken","chicken rolled","fried crust","spiced lemon","lemon juice","juice pollo","pollo con","seasoned chicken","wonton wantan","wantan file","file wantan","px fried","fried wonton","wonton sopa","sopa wantan","wantan file","file sopa","px cantonese","cantonese peruvian","peruvian style","style wonton","wonton soup","soup wonton","wonton wantan","wantan file","px fried","sour sauce","sauce vegetables","meat chicken","chicken soup","soup sopa","chifa chinese","chinese style","style chicken","chicken soup","soup egg","egg drop","drop soup","soup sopa","egg drop","drop soup","soup chifas","chinese immigrants","ecuador chifas","chile see","see also","also chinese","chinese cuisine","cuisine peruvian","peruvian cuisine","cuisine chinese","chinatown lima","lima chinatown","chinatown lima","chifa spanish","spanish wikipedia","wikipedia externalinks","externalinks category","category cantonese","cantonese cuisine","cuisine category","category peruvian","peruvian cuisine","cuisine category","category types"],"new_description":"chifa culinary tradition based chinese traditional peruvian ingredients traditions though originating peru chifa tradition adopted neighboring countries bolivia chinese people chinese immigrants came peru mainly southern province particularly capital_city guangzhou late_th early_th centuries settled part coast peru capital_city lima term chifa also_used describe restaurant type ofood iserved chinese peruvian food become_one popular types_ofood peru thousands chifa restaurants across districts limand many throughout cities peru sometimes multiple independent restaurants operating close_proximity single city block origin term chifa comes cantonese means eat rice meal similar loanword arroz chaufa comes cantonese fried_rice many words peruvian chinese cantonese cantonese chinese chinese immigrants peru economically imported limited number ingredients able produce authentic version home cuisine additionally began plant variety chinese vegetables seeds imported china however due lack ingredients chinese able prepare cuisine authentic manner homeland around first chinese peruvian restaurants opened limand given name chifa aristocracy sauce chaufa rice soup dishes ancient cuisine moment wealthy became chifa regions country chifas creole peoples creole used refer natives restaurants additionally peruvian chefs began use products used traditional chinese cooking ginger soy sauce variety ingredients began make way daily cuisine different accounts development chifa restaurants lima peruvian capital following n pp chinatown lima chinatown lima near central market called capon ucayali street pigs goats made near capon piece land known rented group chinese free contract free horizon whathey best knew cooking capon turned birthplace chinese food first peruvian chifas sky soon lima comes eat ton men san joy even dancing live one_time another nobody knows chinese restaurants began become known chifa word derived chinese chi fan eaten yet soon later would come dish fan fried_rice finally chaufa dish comes almost every chifa n r pp color astated history chifa deeply rooted development chinatown lima chinatown lima originally prepared unhealthy methods whichas become focal point cultural especially gastronomic interest chinatown located_near capon street jpg_px_thumb soy sauce known peru cantonese name item important ingredient chifa image chaufa de carne jpg_px_thumb arroz chaufa variety pictured includes beef bean sprout peruvian chifa distinct mostly due peruvian cuisine influences chinese food found parts world although certain aspects found chinese food internationally common peruvian chifa fried_rice chaufa sweet sour sauce soy sauce like chinese food internationally within china rice meat noodles vegetables important staples chifa enjoyed socioeconomic levels evident ability find chifas directed towards ample budget seeking atmosphere whereas chifas de directed towards different social level atmosphere directed towards consumers accustomed type ofood serve currently city lima chifa restaurants popular chifa dishes class wikitable name image description arroz chaufa file arroz chaufa jpg_px cantonese peruvian style fried_rice white rice soy sauce fried egg meat chicken pork chow file px cantonese peruvian style chow chi kai chicken sauce sweet sour chicken kay file px chicken sweet sour sauce pollo file pollo px chicken rolled fried crust de fired chicken spiced lemon juice pollo con seasoned chicken dark mixture arroz wonton wantan file wantan px fried wonton sopa wantan file sopa px cantonese peruvian style wonton soup wonton wantan file px fried sweet sour sauce vegetables meat chicken soup sopa chifa chinese style chicken soup egg drop soup sopa chi egg drop soup chifas leasthe chinese immigrants chifas ecuador chifas also opened chile see_also chinese cuisine peruvian cuisine chinese chinatown lima chinatown lima chifa spanish wikipedia externalinks_category cantonese cuisine_category peruvian cuisine_category_types restaurants"},{"title":"Child sex tourism","description":"child sex tourism cst is tourism for the purpose of engaging in the prostitution of children which is commercially facilitated child sexual abuse the definition of child in the united nations convention the rights of the child is every human being below the age of years child sex tourism results in both mental and physical consequences for thexploited children which may include sexually transmitted infection s including hiv aids drug addiction pregnancy malnutrition social ostracism and possibly death according to the state department of the united states child sex tourism part of the multibillion dollar sex tourism global sex tourism industry is a form of prostitution of children child prostitution within the wider issue of commercial sexual exploitation of children child sex tourism victimizes approximately million children around the worldklain prostitution of children and child sex tourism analysis of domestic and international responses aba center on children and the law page cited in the children who perform as prostitutes in the child sex tourism trade often have been lured or abducted into sexual slavery users of children for commercial and sexual purposes can be categorized by motive although pedophiles are popularly associated with child sex tourism they are nothe majority of users there are preferential abusers who prefer children because they perceive the risk of sexually transmitted infections to be lower there are also situational offender situational users which are users who do not actively seek out children but for whom the actual act is opportunistic there may be a lack of concern to check the age of a prostitute beforengaging in sexual activity pedophiles use the interneto plan their trips by seeking out and trading information about opportunities for child sex tourism and where the most vulnerable children can be found generally in areas of low income a few governments havenacted laws to allow prosecution of its citizens for child sexual abuse committed outside of their home country however while laws against child sex tourismay deter situational offenders who may act impulsively pedophiles who travel specifically for the purpose of exploiting children are not easily deterred background child sex tourism has been closely linked to poverty armed conflicts rapid industrialization and exploding population growth in latin americand southeast asia for instance street children often turn to prostitution as a last resort additionally vulnerable children areasy targets for exploitation by traffickers prostitution in thailand cambodia india brazil and mexico have been identified as leading hotspots of child sexual exploitation victims of child sexual exploitation ipsnewsnet child sex tourism has also been complicated by varying ages of consent laws where for example the age of consent is in japan while it is in bahrain see ages of consent in asia in the special rapporteur on the sale of children child prostitution and child pornography reported countries of origin of international child sex tourists vary depending on the regions buthe demand is usually recognized as coming from the industrialized countries including the richer countries of europe north america the russian federation japan australiand new zealand australians for instance have been identified as the largest group of sex tourists prosecuted in thailand per cent of the total of the cases investigated by action pour les enfants aple in cambodia between and april were american french and vietnamese in the coastal regions of kenya for example per cent weresidents and per cent of the abusers were foreign italians per cent germans per cent swiss per cent with tourists coming from ugandand the united republic of tanzania fifth and sixth on the list in costa ricaccording to available information between the and the child exploitation unit had arrested a total of persons on suspicion of commercial sexual exploitation of children of those arrested were costa ricanationals and foreignationals in prostitution in thailand thexact number of child prostitutes is not known buthailand s health system research institute reports that children in prostitution make up of prostitutes in thailand in cambodia it has been estimated that about a third of all prostitutes are under india the federal police say that around million children are believed to be involved in prostitution up until recently brazil has been considered to have the worst child sex trafficking record after thailand as per chris rogers report on bbc world now brazil is overtaking thailand as the world s most popular sex tourist destination dln reports that brazil athe moment is on a high trend of child sex tourism and is all geared to take up the first spot beating outhailand sex tourism targeting children creates huge monetary incentives for traffickers human trafficking impacts an estimated million child victims the united nations office of drugs and crimes unodc recently stated that of all global trafficking is for sexual exploitation which is one of the fastest growing criminal activities in the world unicef notes that sexual activity is often seen as a private matter making communities reluctanto act and intervene in cases of sexual exploitation these attitudes make children far more vulnerable to sexual exploitation most exploitation of children takes place as a result of their absorption into the adult sex trade where they arexploited by local people and sex tourists the internet provides an efficient global networking tool for individuals to share information destinations and procurement in cases involving children the us has relatively strict domestic laws that hold accountable any american citizen or permanent resident of the us who travels abroad for the purpose of engaging in illicit conduct with a minor however child pornography sex tourism and human trafficking remain fast growing industries rep chrismith r nj recently introduced hr the international megan s law to prevent demand for child sex trafficking international megan s law similar to the domestic megan s law named after megan kanka of new jersey which provides for community notification when a sex offender is living in the area hr would alert officials abroad when usex offenders intend to travel and likewisencourage other countries to keep sex offender lists and to notify the us when a known sex offender may be coming to the united states for sex tourism while there are serious problems withe sex offenderegistries in the united states human rights organizationsuch as ecpat and unicef believe this would be a step in the right directione of the factors pushing brazil to the top of this list of destination countries is thextensive use of the sport fishing industry in the brazilian amazon as a fronthe ustate department report states at midyear federal police in manaus began investigating allegations that a foreign owned travel company arranged fishing expeditions to the amazon region that were in reality sex tours for us and european pedophiles at year s end the investigation was continuing in coordination with foreign law enforcement officials another ustate department report states page in a newer trend some arranged fishing expeditions to the amazon were organized for the purpose of child sex tourism for europeand american exploiters recent reports on fox atlantand abc world news tonight have helped shine the light on this ecpat usa has recently posted a brazilianational newstory with english subtitles webcam child sex tourism according to the federal bureau of investigations estimate there are predators online at any given time in publichat rooms offers from internet users to pay for webcam sex performances were found in a week investigation conducted from a warehouse in amsterdam in the terre des hommes dutch action against wcst using sweetie a d computer model out of perpetrators were identified from australia canada germany ghana india italy mauritius the netherlandsouth africa turkey the united kingdom and united states of the alleged online abusers were based in the uk and another were traced to computers in the us britons among snared in webcam child sex sting the guardianovember together with avaazorg terre des hommes netherlands has created an online petition to pressure governments to adopt proactive investigation policies in order to protect children against webcam child sex tourism global response in recent years there has been an increase in the prosecution of child sex tourism offenses at least countries havextraterritorial jurisdiction extraterritorialaws that allow their citizens to be prosecuted specifically for child sexual abuse crimes committed whilst abroad and another nations have more general extraterritorialaws that could be used to prosecute their citizens for crimes committeduring child sex tourism trips as of may countries have signed and ratified the optional protocol on the sale of children child prostitution and child pornography which is deeply concerned athe widespread and continuing practice of sex tourism to whichildren arespecially vulnerable it alsobliges parties to pass laws within their own territories againsthese practices punishable by appropriate penalties thatake into accountheir grave nature in response to cst non governmental organizations ngos the tourism industry and governments have begun to address the issue the world tourism organization wto established a task force to combat csthe wto ecpat end child prostitution child pornography and trafficking of children for sexual purposes and nordic tour operators created a global the code of conduct for the sexual exploitation of children in travel and tourism in travel and tourism in as of april over travel companies from countries had signed the code internationalaw enforcement activities the us immigration and customs enforcement or ice participates investigating and capturing child sex tourists in ice launched operation predator leading to the arrest of over child sexual abusers including more than outside the united states while ice agents refuse to comment on their means and methods of operation media reports have suggested the use of undercover agents internet sting operations and sophisticated technologies ice agents in bangkok did say however thathey often receive information from local ngos about foreigners in thailand whom they suspect of engaging in child sexual abuse sometimes us based law enforcement such as local sheriff departments and parole officers inform them of known sex offenders who are traveling to the region in both cases local ice agents work witheiroyal thai police counterparts to monitor the suspects movements while in thailandjon fox sex laws in thailand part civil society and law enforcementhe law enforcement in the united kingdom uk police and the child exploitation and online protection centre ceop are actively involved in monitoring child sex tourists ando prosecute interpol actively pursues offenders as well policing of child sex tourism asia cambodia the trafficking in persons report of reports thathe sale of virgin girls continues to be a serious problem in cambodiand that a significant number of asiand other foreign men primarily white travel to cambodia to engage in child sex tourism cambodia s law on suppression of the kidnapping trafficking and exploitation of human persons contains legislation againsthe commercial sexual exploitation of children and while the law focuses largely on trafficking it also addresses prostitution the age of consent in cambodia is and the law does not specifically define or prohibithe prostitution of children it is estimated that of prostitutes in cambodiare childrenworld vision the child sex tourism prevention project china the trafficking in persons report of reports thathe government of china did notake sufficient measures to reduce demand forced labor commercial sex acts or child sex tourismus department of state trafficking in persons report june indonesia the trafficking in persons report of reports that child sex tourism is prevalent in most urban areas and tourist destinationsuch as bali and riau island indonesia recently islands of indonesia like bali and batam have become known for child sex tourism these islands have also been destinations for sex trafficking under a criminal code indonesiany indonesian citizen can be punished for violating the child protection act or the criminal code whether it is inside indonesia or outside the child protect act is a general acto protecthe rights of children a few specific sections provide lawspecific to sexual mistreatment of children one law states that it is illegal to use a child for personal or commercial monetary gain if one does not follow this law the punishment can be up to ten years in jail and or a monetary fine of million rupiahs which is equivalento us dollarsouth korea south korean men have been major drivers of child sex tourism in asia for some time in the korea times reported that an international symposium was held to talk about strategies for curbing the high numbers of korean child sex tourists to southeast asia the symposium conditions and countermeasures toverseas child and youth sex tourism by korean men discussed issues concerning korean male soliciting of child prostitutes across asia but cambodiand the philippines werespecially worrisome panelistsaid male korean tourists are believed to abuse the unfortunate situation of poor cambodian children who are coerced into selling sexual favors in order to help their families as for the philippines the report noted an increasing number of koreans bought sex in the philippinesometimes abusing prostitutes the philippine government has urged the korean governmento take firm action against soliciting prostitutes in particular buying sex from children the trafficking in persons report of reports thathe men of south korea create demand for child sex tourism in their surrounding countries including southeast asia the south pacific and mongolia technology such as the internet has helped increase accessibility of child sex tourism in the republic of korea some south korean men arrange for children from the philippines thailand chinasources of sex a korean institute of criminology study published in january shows that south korean men are the primary market for child sex tourism in southeast asiamong foreigners visiting southeast asia south koreans are the majority group driving demand for child prostitution across the region the article goes on to say a report from the us department of state trafficking in persons report described south koreas a significant source of demand for child sex tourism in southeast asiand the pacific islands yun hee jun head of a seoul based group campaigning against sex trafficking claims if you visit any brothel in vietnam or cambodia you can see fliers written in korean although south korea has legislation in place to prosecute koreanationals who are child sex offenders abroad a report stated the government has not prosecuted or convicted any korean sex tourists during the past seven years mongolia the trafficking in persons report of reports that south koreand japanese tourists engage in child sex tourism in mongolia the mongolian government has implemented laws regarding child prostitution the criminal code bans organized prostitution of anyone under the age of the age of sexual consent in mongolia not only is prostitution of anyone under the age of illegal sex with a person under the age of is illegal as well not complying withis law could lead to three years in jail or eighteen months of community service rape is also considered illegal in mongolia withe punishment of two to six years in prison if there arepeated violations or injury to victims these punishments are intensified philippines child sex tourism is known as a serious problem in the philippines the trafficking in persons report of reports of tourists coming from northeast asiaustralia europe and north america to engage in sex with children with new technology like the internet some children form cyberelationships with men from other countries and get money by sending pornographic images over the internet prostitution in thailand both governmental organizations and nongovernmental organizations have worked together to shut down brothels they have also tried to increase awareness of child sex tourism and made attempts to stop it in records of womand children wereported aseeking medical treatment from injuries relating to sexual abuse many children are not registered at birth in thailand allowing themoreasily to be trafficked tother countries and forced into child labor including sexual exploitation laos lao penalaw article states human trafficking means the recruitment moving transfer harbouring oreceipt of any person within or across national borders by means of deception threats use oforce debt bondage or any other means and using such person in forced labour prostitution pornography or anything that is againsthe fine traditions of the nation oremoving various body organs of such person or for other unlawful purposes any of the above mentioned acts committed against children under years of age shall be considered as human trafficking even though there is no deception threat use oforce or debt bondage any person engaging in human trafficking shall be punished by five years to fifteen years of imprisonment and shall be fined from kip to kip lao law on development and protection of women article states if these acts are committed against children under years old then even though there is no deception threat force or debt bondage trafficking shall be regarded to have occurred any individual who coperates withe offender who commits an offence mentioned above whether by incitement providing assets or vehicles to the offender the provision of shelter or the concealment oremoval of traces of an infraction shall be considered as an accomplice in trafficking in women and children according to a ustate department report police corruption a weak judicial sector and the population s generalack of understanding of the court system impeded anti trafficking law enforcement effortscorruption remained a problem with government officialsusceptible to involvement or collusion in trafficking in persons north america barbados there has beeno noticeable action taken by the government of barbados to reduce the demand for commercial sex acts though publicommentary on the problem of sex tourism including child sex tourism has been increasingus department of state trafficking in persons report june dominican republic some reportsay that child sex tourism is a current problem particularly in coastal resort areas with child sex tourists arriving yearound from various countries it is also reported thathe current legislation has inconsistencies and gaps which could obstructhe interpretation and application of the legislationecpat worldatabase the code for the protection of the rights of children and adolescents law conceptualizes crime of using children and adolescents in paid sexual activity only certain modes of production andissemination of pornographic material are seen as criminal activities while possession of child pornography isanctioned cuba the trafficking in persons report of reports thathe government of cuba has made no known efforts to reduce the demand for commercial sex additionally it is reported thathe government does not acknowledge any child sex tourism problem but has recently banned children under from nightclubs according to cuban government documents training was provided to those in the tourism industry on how to identify and report potential sex tourists el salvador one third of the sexually exploited children between and years of age are boys the median age for entering into prostitution among all children interviewed was years they worked an average ofive days per week although nearly reported thathey worked seven days a week recently the problem has increased especially due to migration many children are lied to with promises of jobs and are abducted and sento countries inorth america by foreigners fromexicor neighboring countries most victims are salvadoran children from rural areas who are forced into commercial sexual exploitation in urban areas the government of el salvador does not fully comply withe minimum standards for thelimination of trafficking but is making significant efforts to do so during the reporting period the government sustained anti trafficking law enforcement efforts and continued to provide services to children who were trafficked for sexual exploitation the salvadoran government sustained anti trafficking prevention efforts during the reporting period the government forged or continued partnerships with ngos international organizations and foreign governments on anti trafficking initiatives in may the government collaborated with ango to launch a campaign aimed specifically at increasing awareness of the commercial sexual exploitation of children reaching approximately children and adults the government included anti trafficking information in the training it gives to military forces prior to their deployment for international peacekeeping missions jamaica the trafficking in persons report of reports that ngos nongovernmental organizations and local observerstate thathere is a child sex tourism problem near jamaica s resort areas trinidad and tobago according to the governments of trinidad and tobago there were no reports nor prosecutions on child sex tourism south americargentina the us department of state reported that child sex tourism is a problem in argentina especially on the border and in buenos aires the argentinean penal code does not specifically prohibit child sex tourism and there were not any child sex related prosecutions in hoping to reduce child sex tourism governmental authorities passed a law commanding law enforcemento seek the closure of all brothels ngos reported this not effective because brothels are often tipped off by local police before the raids brazil the us department of state reported that child sex tourism remains a serious problem particularly in tourist areas in brazil s northeast most child sex tourists come from europe and some come from the united states brazilian authorities are not directly involved with prosecuting sex tourists and instead allow ngos to prosecute those participating in child sex tourism a brazilian law newly introduced in states to submit a child or adolescent as defined in the caput of article children people younger than years adolescents people between and prostitution or sexual exploitation is punishable by imprisonment for four to ten years and a fine colombiarticle of the colombian criminal code prohibits organizing or facilitating sexual tourism and provides penalties of to years imprisonment buthere were no reported prosecutions or convictions of child sex tourists in recent years colombia hastrengthened legislation related to control trafficking of children particularly to follow the criminal code however a law istill pending approval by the code for children and adolescents which includes the rights and guarantees of children and adolescents victims of commercial sexual exploitation ecuador child sex tourism occurs mostly in urban areas and in tourist destinationsuch as the city of tenand the galapagos islands peru child sex tourism is present in iquitos madre de dios and cuzco traffickers reportedly operate illegally in certain regions where governmental authority lacks although some areas of the country are known child sex tourism destinations and peruvian laws prohibithis practice there were no reported convictions of child sex tourists the governmentrained government officials and tourism service providers about child sex tourism conducted a public awareness campaign on the issue and reached outo the tourism industry to raise awareness about child sex tourism to date businesses have signed code of conduct agreements nationwide uruguay government officials maintained efforts to reach outo hotel workers and tothers in the broader tourism sector to raise awareness about child sex tourism and the commercial sexual exploitation of children uruguay s educational system continues to include trafficking education to high schools extraterritorial jurisdiction a growing number of countries have specific extraterritorial jurisdiction extraterritorialegislation that prosecutes their citizens in their homeland should they engage in illicit sexual conduct in a foreign country with children in ecpat reported that countries had extraterritorial child sex legislation the following list includespecificitations australia was one of the first countries to introduce laws that provide for jail terms for its citizens and residents who engage in sexual activity with children in foreign countries the laws are contained in the crimes child sex tourism amendment acthat came into force on july helping to fight child sex crimes abroad australian department oforeign affairs and trade travel bulletin the law also makes it an offence to encourage benefit or profit from any activity that promotesexual activity with children it is a crime for australian citizens permanent residents or bodies corporate to engage in facilitate or benefit from sexual activity with children under years of age while overseas these offences carry penalties of up to years imprisonment for individuals and up to in fines for companies new zealand under the crimes amendment act it is an offence for new zealand citizens and residents to engage in sexual conduct or activities with a child in another country safetravel url january swiss federal office of police state swiss federal authorities have stepped up their efforts in fighting child sex tourism in recent years a special fedpol unit dealing with child pornography and pedocriminality offences coperates closely with numerous partner services both at home and abroad since june an online form has been available to the general public to report cases of child sex tourism to the appropriate judicial authoritieswiss criminal code article territorial scope of application offences against minors abroad states this code also applies to any person who is in switzerland is not being extradited and has committed any of the following offences abroad abisexual acts with dependent persons art and sexual acts with minors against payment art b sexual acts with children art if the victim was less than years of age articlexploitation of sexual actsexual acts with minors against payment amended september states any person who carries out sexual acts with a minor induces a minor to carry out such acts and who makes or promises payment in return is liable to a custodial sentence not exceeding three years or to a monetary penalty articlendangering the development of minorsexual acts with children states any person who engages in a sexual act with a child under years of age or incites a child to commit such an activity or involves a child in a sexual act is liable to a custodial sentence not exceeding five years or to a monetary penalty the act is not an offence if the difference in age between the persons involved is not more than three years russian federation criminal code of russiarticle states the operation of criminalaw in respect of persons who have committed offences outside the boundaries of the russian federation citizens of the russian federation and stateless persons permanently residing in the russian federation who have committed outside the russian federation a crime againsthe interests guarded by the present code shall be subjecto criminaliability in accordance withe present code unless a decision of a foreign state s court exists concerning this crime in respect of these persons federal act no fz of december amended the criminal code by also adding laws regarding the receiving of sexual services from a minor under the amended article of the criminal code the receipt of sexual services from a minor aged from to by a person who has reached the age of is punishable by up to hours of compulsory work orestriction ofreedom for up to years or forced labour for up to years or deprivation of liberty for the same period in this article sexual services are understood to mean sexual intercourse sodomy lesbianism or other acts of a sexual nature a condition of the performance of which is monetary or any otheremuneration of a minor third party or the promise of remuneration of a minor third party article amended by federal act no fz ofebruary states the deeds provided for by parts one and twof this article which are committed withe involvement in prostitution of persons who are to be under years old shall be punishable by deprivation of liberty for a term of three to years with or without deprivation of the righto holdefinite offices or to engage in definite activities for a term of up to fifteen years and with restriction of liberty for a term ofrom one year to two years or without such israeli law israeli penal code chapter section states that israeli penalaw shall apply to foreign offenses felony or misdemeanor which were committed by an israeli citizen oresident of israel without exception in cases relating to chapter viii article x prostitution and obscenity regarding minorsection b under article x are penalaws to thexploitation of minors for prostitution by way of pimping and trafficking section c under the same article is a penalaw specific to the client a person served by an act of prostitution of a minor shall be liable to three years imprisonment as ofebruary section c is in the process of amendmento an increase of imprisonment from three to five years the law for punishing acts related to child prostitution and child pornography and for protection of children stipulates that a person who is involved in child prostitution who sells child pornographic products or who transports foreign children to another country for the purpose oforcing them into prostitution shall be punished with imprisonment with labour or a fine japanese nationals who commit such crimes abroad shall be punished withe same penalty penal code singapore penal code section commercial sex with minor under outside singapore states any person being a citizen or a permanent resident of singapore who does outside singapore any acthat would if done in singapore constitute an offence under section b shall be guilty of an offence canada has included in its criminal code provisions that allow for the arrest and prosecution of canadians in canada for offences committed in foreign countries related to child sex tourism such as child prostitution as well as for child sexual exploitation offencesuch as indecent acts child pornography and incest bills c and c a that came into force on may and july respectively convictions carry a penalty of up to years imprisonment hong kong the prevention of child pornography ordinance cap of december introduced offences in regard to child sex tourism giving extraterritorial jurisdiction extraterritorial effecto sexual offences listed in a new schedule to the crime ordinance cap this makes illegal an act committed against a child outside hong kong if the defendant or the child has connections withong kong it is also an offence to make any arrangement relating to the commission of such acts against children and to advertise any such arrangementlc paper no cb south korea under the act on the protection of children and juveniles from sexual abuse article punishment of korean citizens who commit offenses overseastates where criminally prosecuting a korean citizen who commits a sex offense against a child or juvenile outside the territory of the republic of korea pursuanto article of the criminal acthe state shall endeavor tobtain criminal information swiftly from the relevant foreign country and punish such offender according to a ecpat report progress is needed with regard to thenforcement of extraterritorial jurisdiction concerning nationals who have sex with children abroaddepending on which south korean law is being applied the definition of child variesthese varying definitions create uncertainty as to how the various laws will be applied and invite a lack of cooperation or lack of uniformity in enforcement by multiple agencies united kingdom the sexual offences act enables united kingdom british citizens and residents who commit sexual offences against children overseas to be prosecuted in england wales and northern ireland similar provisions are in force in scotland under the criminalaw consolidation scotland act some of the offences carry penalties of up to life imprisonment and anyone found guilty will be placed on the sex offenders register there are in two british citizens in jail following trials based on this legislation barry mccloud andavid graham david graham jailed under sex tourism law sky news may united states under the protect act of protect act of april it is a federal crime prosecutable in the united states for a us citizen or permanent resident alien to engage in illicit sexual conduct in a foreign country with a person under the age of whether or nothe us citizen or lawful permanent resident alien intended to engage in such illicit sexual conduct prior to going abroad for purposes of the protect act illicit sexual conduct includes any commercial sex act in a foreign country with a person under the age of the law defines a commercial sex act as any sex act on account of which anything of value is given toreceived by a person under the age of before congressional passage of the protect act of prosecutors had to prove that sex tourists went abroad withe intent of molesting children something almost impossible to demonstrate the protect act shifted the burden making predators liable for the act itself penalties were doubled from years in prison to european union under the directiveuropean union directive on combating the sexual abuse and sexual exploitation of children and child pornography article jurisdiction and coordination of prosecution member stateshall take the necessary measures to establish their jurisdiction over the offences referred to in articles to where a the offence is committed in whole or in part within their territory or b the offender is one of their nationals meaning eu member stateshould prosecute their citizens for child sex offences committed abroad by most member states have transposition law transposed this article references externalinks globalstudysecttorg the global study on sexual exploitation of children in travel and tourism by ecpathe problem of enforcement in extraterritorialaws relating to sex tourism by john pascoe category child prostitution tourism category sex tourism","main_words":["child","sex_tourism","cst","tourism","purpose","engaging","prostitution","children","commercially","facilitated","child_sexual","abuse","definition","child","united_nations","convention","rights","child","every","human","age","years","child_sex_tourism","results","mental","physical","consequences","children","may_include","sexually","transmitted","infection","including","hiv","aids","drug","addiction","pregnancy","social","possibly","death","according","state","department","united_states","child_sex_tourism","part","multibillion","dollar","sex_tourism","global","sex_tourism_industry","form","prostitution","children","child_prostitution","within","wider","issue","commercial_sexual","exploitation","children","child_sex_tourism","approximately","million","children","around","prostitution","children","child_sex_tourism","analysis","domestic","international","responses","center","children","law","page","cited","children","perform","prostitutes","child_sex_tourism","trade","often","lured","abducted","sexual","slavery","users","children","commercial_sexual","purposes","categorized","motive","although","pedophiles","popularly","associated","child_sex_tourism","nothe","majority","users","abusers","prefer","children","risk","sexually","transmitted","lower","also","situational","offender","situational","users","users","actively","seek","children","actual","act","may","lack","concern","check","age","prostitute","sexual_activity","pedophiles","use","plan","trips","seeking","trading","information","opportunities","child_sex_tourism","vulnerable","children","found","generally","areas","low_income","governments","laws","allow","prosecution","citizens","child_sexual","abuse","committed","outside","home_country","however","laws","situational","offenders","may","act","pedophiles","travel","specifically","purpose","exploiting","children","easily","background","child_sex_tourism","closely","linked","poverty","armed","conflicts","rapid","industrialization","population","growth","latin_americand","southeast_asia","instance","street","children","often","turn","prostitution","last","resort","additionally","vulnerable","children","areasy","targets","exploitation","traffickers","prostitution","thailand","cambodia","india","brazil","mexico","identified","leading","hotspots","child_sexual_exploitation","victims","child_sexual_exploitation","child_sex_tourism","also","complicated","varying","ages","consent","laws","example","age","consent","japan","bahrain","see","ages","consent","asia","special","sale","children","child_prostitution","child_pornography","reported","countries","origin","international","child_sex_tourists","vary","depending","regions","buthe","demand","usually","recognized","coming","countries_including","richer","countries","europe","north_america","russian","federation","japan","australiand_new_zealand","australians","instance","identified","largest","group","sex_tourists","prosecuted","thailand","per_cent","total","cases","investigated","action","pour","les","cambodia","april","american","french","vietnamese","coastal","regions","kenya","example","per_cent","per_cent","abusers","foreign","italians","per_cent","germans","per_cent","swiss","per_cent","tourists","coming","ugandand","united","republic","tanzania","fifth","sixth","list","costa","available","information","child","exploitation","unit","arrested","total","persons","suspicion","commercial_sexual","exploitation","children","arrested","costa","prostitution","thailand","thexact","number","child","prostitutes","known","health","system","research","institute","reports","children","prostitution","make","prostitutes","thailand","cambodia","estimated","third","prostitutes","india","federal","police","say","around","million","children","believed","involved","prostitution","recently","brazil","considered","worst","child_sex","trafficking","record","thailand","per","chris","rogers","report","bbc","world","brazil","thailand","world","popular","sex","tourist_destination","reports","brazil","athe_moment","high","trend","child_sex_tourism","geared","take","first","spot","beating","sex_tourism","targeting","children","creates","huge","monetary","incentives","traffickers","human_trafficking","impacts","estimated","million","child","victims","united_nations","office","drugs","crimes","recently","stated","global","trafficking","sexual_exploitation","one","fastest_growing","criminal","activities","world","unicef","notes","sexual_activity","often_seen","private","matter","making","communities","act","cases","sexual_exploitation","attitudes","make","children","far","vulnerable","sexual_exploitation","exploitation","children","takes_place","result","adult","sex","trade","local_people","sex_tourists","internet","provides","efficient","global","networking","tool","individuals","share","information","destinations","procurement","cases","involving","children","us","relatively","strict","domestic","laws","hold","american","citizen","permanent","resident","us","travels","abroad","purpose","engaging","illicit","conduct","minor","however","child_pornography","sex_tourism","human_trafficking","remain","fast_growing","industries","r","recently","introduced","international","megan","law","prevent","demand","child_sex","trafficking","international","megan","law","similar","domestic","megan","law","named","megan","new_jersey","provides","community","notification","sex","offender","living","area","would","alert","officials","abroad","offenders","intend","travel","countries","keep","sex","offender","lists","us","known","sex","offender","may","coming","united_states","sex_tourism","serious","problems","withe","sex","united_states","human_rights","organizationsuch","ecpat","unicef","believe","would","step","right","factors","pushing","brazil","top","list","destination","countries","thextensive","use","sport","fishing","industry","brazilian","amazon","ustate","department","report","states","federal","police","began","investigating","allegations","foreign","owned","travel_company","arranged","fishing","expeditions","amazon","region","reality","sex","tours","us","european","pedophiles","year","end","investigation","continuing","coordination","foreign","law_enforcement","officials","another","ustate","department","report","states","page","newer","trend","arranged","fishing","expeditions","amazon","organized","purpose","child_sex_tourism","europeand","american","recent","reports","fox","abc","world","news","helped","light","ecpat","usa","recently","posted","english","webcam","child_sex_tourism","according","federal","bureau","investigations","estimate","online","given_time","rooms","offers","internet","users","pay","webcam","sex","performances","found","week","investigation","conducted","warehouse","amsterdam","terre","des","hommes","dutch","action","using","computer","model","identified","australia","canada","germany","ghana","india","italy","mauritius","africa","turkey","united_kingdom","united_states","alleged","online","abusers","based","uk","another","traced","computers","us","among","webcam","child_sex","together","terre","des","hommes","netherlands","created","online","petition","pressure","governments","adopt","proactive","investigation","policies","order","protect","children","webcam","child_sex_tourism","global","response","recent_years","increase","prosecution","child_sex_tourism","least","countries","jurisdiction","allow","citizens","prosecuted","specifically","child_sexual","abuse","crimes","committed","whilst","abroad","another","nations","general","could","used","prosecute","citizens","crimes","child_sex_tourism","trips","may","countries","signed","ratified","optional","sale","children","child_prostitution","child_pornography","deeply","concerned","athe","widespread","continuing","practice","sex_tourism","arespecially","vulnerable","parties","pass","laws","within","territories","practices","punishable","appropriate","penalties","thatake","grave","nature","response","cst","non_governmental","organizations","ngos","tourism_industry","governments","begun","address","issue","world_tourism","organization","wto","established","task","force","combat","wto","ecpat","end","child_prostitution","child_pornography","trafficking","children","sexual","purposes","nordic","tour_operators","created","global","code","conduct","sexual_exploitation","children","travel_tourism","travel_tourism","april","travel","companies","countries","signed","code","enforcement","activities","us","immigration","customs","enforcement","ice","participates","investigating","child_sex_tourists","ice","launched","operation_predator","leading","arrest","child_sexual","abusers","including","outside","united_states","ice","agents","refuse","comment","means","methods","operation","media","reports","suggested","use","undercover","agents","internet","operations","sophisticated","technologies","ice","agents","bangkok","say","however","thathey","often","receive","information","local","ngos","foreigners","thailand","suspect","engaging","child_sexual","abuse","sometimes","us","based","law_enforcement","local","departments","officers","inform","known","sex","offenders","traveling","region","cases","local","ice","agents","work","thai","police","counterparts","monitor","movements","fox","sex","laws","thailand","part","civil","society","law","law_enforcement","united_kingdom","uk","police","child","exploitation","online","protection","centre","actively","involved","monitoring","child_sex_tourists","ando","prosecute","actively","offenders","well","policing","child_sex_tourism","asia","cambodia","trafficking","persons_report","reports","thathe","sale","virgin","girls","continues","serious","problem","cambodiand","significant","number","asiand","foreign","men","primarily","white","travel","cambodia","engage","child_sex_tourism","cambodia","law","trafficking","exploitation","human","persons","contains","legislation","againsthe","commercial_sexual","exploitation","children","law","focuses","largely","trafficking","also","addresses","prostitution","age","consent","cambodia","law","specifically","define","prostitution","children","estimated","prostitutes","vision","child_sex_tourism","prevention","project","china","trafficking","persons_report","reports","thathe_government","china","notake","sufficient","measures","reduce","demand","forced","labor","commercial_sex","acts","department","state","trafficking","persons_report","june","indonesia","trafficking","persons_report","reports","child_sex_tourism","prevalent","urban_areas","bali","island","indonesia","recently","islands","indonesia","like","bali","become","known","child_sex_tourism","islands","also","destinations","sex","trafficking","criminal_code","indonesian","citizen","punished","violating","child","protection","act","criminal_code","whether","inside","indonesia","outside","child","protect","act","general","protecthe","rights","children","specific","sections","provide","sexual","children","one","law","states","illegal","use","child","personal","commercial","monetary","gain","one","follow","law","punishment","ten_years","jail","monetary","fine","million","equivalento","us","korea","south_korean","men","major","drivers","child_sex_tourism","asia","time","korea","times","reported","international","symposium","held","talk","strategies","high","numbers","korean","child_sex_tourists","southeast_asia","symposium","conditions","child","youth","sex_tourism","korean","men","discussed","issues","concerning","korean","male","child","prostitutes","across","asia","cambodiand","philippines","male","korean","tourists","believed","abuse","situation","poor","cambodian","children","selling","sexual","favors","order","help","families","philippines","report","noted","increasing_number","koreans","bought","sex","prostitutes","philippine","government","urged","korean","governmento","take","firm","action","prostitutes","particular","buying","sex","children","trafficking","persons_report","reports","thathe","men","south_korea","create","demand","child_sex_tourism","surrounding","countries_including","southeast_asia","south_pacific","mongolia","technology","internet","helped","increase","accessibility","child_sex_tourism","republic","korea","south_korean","men","arrange","children","philippines","thailand","sex","korean","institute","criminology","study","published","january","shows","south_korean","men","primary","market","child_sex_tourism","southeast","foreigners","visiting","southeast_asia","majority","group","driving","demand","child_prostitution","across","region","article","goes","say","report","us_department","state","trafficking","persons_report","described","south","significant","source","demand","child_sex_tourism","southeast_asiand","pacific","islands","hee","jun","head","seoul","based","group","campaigning","sex","trafficking","claims","visit","brothel","vietnam","cambodia","see","written","korean","although","south_korea","legislation","place","prosecute","child_sex","offenders","abroad","report","stated","government","prosecuted","convicted","korean","sex_tourists","past","seven","years","mongolia","trafficking","persons_report","reports","japanese","tourists","engage","child_sex_tourism","mongolia","mongolian","government","implemented","laws","regarding","child_prostitution","criminal_code","organized","prostitution","anyone","age","age","sexual","consent","mongolia","prostitution","anyone","age","illegal","sex","person","age","illegal","well","withis","law","could","lead","three_years","jail","eighteen","months","community","service","rape","also_considered","illegal","mongolia","withe","punishment","two","six","years","prison","violations","injury","victims","intensified","philippines","child_sex_tourism","known","serious","problem","philippines","trafficking","persons_report","reports","tourists","coming","northeast","europe","north_america","engage","sex","children","new","technology","like","internet","children","form","men","countries","get","money","sending","pornographic","images","internet","prostitution","thailand","governmental","organizations","organizations","worked","together","shut","brothels","also","tried","increase","awareness","child_sex_tourism","made","attempts","stop","records","children","wereported","medical_treatment","injuries","relating","sexual","abuse","many","children","registered","birth","thailand","allowing","trafficked","tother","countries","forced","child","labor","including","sexual_exploitation","laos","article","states","human_trafficking","means","recruitment","moving","transfer","person","within","across","national","borders","means","deception","threats","use","oforce","debt","bondage","means","using","person","forced","labour","prostitution","anything","againsthe","fine","traditions","nation","various","body","organs","person","unlawful","purposes","mentioned","acts","committed","children","years","age","shall","considered","human_trafficking","even_though","deception","threat","use","oforce","debt","bondage","person","engaging","human_trafficking","shall","punished","five_years","fifteen","years","imprisonment","shall","fined","law","development","protection","women","article","states","acts","committed","children","years_old","even_though","deception","threat","force","debt","bondage","trafficking","shall","regarded","occurred","individual","withe","offender","offence","mentioned","whether","providing","assets","vehicles","offender","provision","shelter","traces","shall","considered","trafficking","women","children","according","ustate","department","report","police","corruption","weak","judicial","sector","population","understanding","court","system","anti","trafficking","law_enforcement","remained","problem","government","involvement","trafficking","persons","north_america","barbados","noticeable","action","taken","government","barbados","reduce","demand","commercial_sex","acts","though","problem","sex_tourism","including","child_sex_tourism","department","state","trafficking","persons_report","june","dominican","republic","child_sex_tourism","current","problem","particularly","coastal","resort","areas","child_sex_tourists","arriving","yearound","various_countries","also","reported_thathe","current","legislation","gaps","could","interpretation","application","code","protection","rights","children","adolescents","law","crime","using","children","adolescents","paid","sexual_activity","certain","modes","production","pornographic","material","seen","criminal","activities","possession","child_pornography","cuba","trafficking","persons_report","reports","thathe_government","cuba","made","known","efforts","reduce","demand","commercial_sex","additionally","reported_thathe","government","acknowledge","child_sex_tourism","problem","recently","banned","children","nightclubs","according","cuban","government","documents","training","provided","tourism_industry","identify","report","potential","sex_tourists","el_salvador","one","third","sexually","exploited","children","years","age","boys","median","age","entering","prostitution","among","children","interviewed","years","worked","average","ofive","days","per","week","although","nearly","worked","seven_days","week","recently","problem","increased","especially","due","migration","many","children","promises","jobs","abducted","sento","countries","inorth_america","foreigners","neighboring","countries","victims","salvadoran","children","rural_areas","forced","commercial_sexual","exploitation","urban_areas","government","el_salvador","fully","comply","withe","minimum","standards","trafficking","making","significant","efforts","reporting","period","government","sustained","anti","trafficking","law_enforcement","efforts","continued","provide","services","children","trafficked","sexual_exploitation","salvadoran","government","sustained","anti","trafficking","prevention","efforts","reporting","period","government","forged","continued","partnerships","ngos","international","organizations","foreign","governments","anti","trafficking","initiatives","may","government","collaborated","launch","campaign","aimed","specifically","increasing","awareness","commercial_sexual","exploitation","children","reaching","approximately","children","adults","government","included","anti","trafficking","information","training","gives","military","forces","prior","deployment","international","missions","jamaica","trafficking","persons_report","reports","ngos","organizations","local","thathere","child_sex_tourism","problem","near","jamaica","resort","areas","trinidad","tobago","according","governments","trinidad","tobago","reports","child_sex_tourism","south","us_department","state","reported","child_sex_tourism","problem","argentina","especially","border","buenos_aires","penal","code","specifically","prohibit","child_sex_tourism","child_sex","related","hoping","reduce","child_sex_tourism","governmental","authorities","passed","law","law","seek","closure","brothels","ngos","reported","effective","brothels","often","tipped","local","police","brazil","us_department","state","reported","child_sex_tourism","remains","serious","problem","particularly","tourist","areas","brazil","northeast","child_sex_tourists","come","europe","come","united_states","brazilian","authorities","directly","involved","sex_tourists","instead","allow","ngos","prosecute","participating","child_sex_tourism","brazilian","law","newly","introduced","states","submit","child","adolescent","defined","article","children","people","younger","years","adolescents","people","prostitution","sexual_exploitation","punishable","imprisonment","four","ten_years","fine","colombian","criminal_code","prohibits","organizing","facilitating","sexual","tourism","provides","penalties","years","imprisonment","buthere","reported","convictions","child_sex_tourists","recent_years","colombia","legislation","related","control","trafficking","children","particularly","follow","criminal_code","however","law","istill","pending","approval","code","children","adolescents","includes","rights","children","adolescents","victims","commercial_sexual","exploitation","ecuador","child_sex_tourism","occurs","mostly","urban_areas","city","galapagos_islands","peru","child_sex_tourism","present","iquitos","de","traffickers","reportedly","operate","illegally","certain","regions","governmental","authority","lacks","although","areas","country","known","peruvian","laws","practice","reported","convictions","child_sex_tourists","government","officials","tourism","service_providers","child_sex_tourism","conducted","public","awareness","campaign","issue","reached","outo","tourism_industry","raise","awareness","child_sex_tourism","date","businesses","signed","code","conduct","agreements","nationwide","uruguay","government","officials","maintained","efforts","reach","outo","hotel","workers","broader","tourism_sector","raise","awareness","child_sex_tourism","commercial_sexual","exploitation","children","uruguay","educational","system","continues","include","trafficking","education","high_schools","extraterritorial","jurisdiction","growing","number","countries","specific","extraterritorial","jurisdiction","citizens","homeland","engage","illicit","sexual","conduct","foreign_country","children","ecpat","reported","countries","extraterritorial","child_sex","legislation","following","list","australia","one","first","countries","introduce","laws","provide","jail","terms","citizens","residents","engage","sexual_activity","children","foreign_countries","laws","contained","crimes","child_sex_tourism","amendment","came","force","july","helping","fight","child_sex","crimes","abroad","australian","department","oforeign_affairs","trade","travel","bulletin","law","also","makes","offence","encourage","benefit","profit","activity","activity","children","crime","australian","citizens","permanent","residents","bodies","corporate","engage","facilitate","benefit","sexual_activity","children","years","age","overseas","offences","carry","penalties","years","imprisonment","individuals","fines","companies","new_zealand","crimes","amendment","act","offence","new_zealand","citizens","residents","engage","sexual","conduct","activities","child","another_country","url","january","swiss","federal","office","police","state","swiss","federal","authorities","stepped","efforts","fighting","child_sex_tourism","recent_years","special","unit","dealing","child_pornography","offences","closely","numerous","partner","services","home","abroad","since","june","online","form","available","general_public","report","cases","child_sex_tourism","appropriate","judicial","criminal_code","article","territorial","scope","application","offences","minors","abroad","states","code","also","applies","person","switzerland","committed","following","offences","abroad","acts","dependent","persons","art","sexual","acts","minors","payment","art","b","sexual","acts","children","art","victim","less","years","age","sexual","acts","minors","payment","amended","september","states","person","carries","sexual","acts","minor","induces","minor","carry","acts","makes","promises","payment","return","liable","sentence","exceeding","three_years","monetary","penalty","development","acts","children","states","person","engages","sexual","act","child","years","age","child","commit","activity","involves","child_sexual","act","liable","sentence","exceeding","five_years","monetary","penalty","act","offence","difference","age","persons","involved","three_years","russian","federation","criminal_code","states","operation","criminalaw","respect","persons","committed","offences","outside","boundaries","russian","federation","citizens","russian","federation","persons","permanently","residing","russian","federation","committed","outside","russian","federation","crime","againsthe","interests","guarded","present","code","shall","subjecto","accordance","withe","present","code","unless","decision","foreign","state","court","exists","concerning","crime","respect","persons","federal","act","december","amended","criminal_code","also","adding","laws","regarding","receiving","sexual","services","minor","amended","article","criminal_code","receipt","sexual","services","minor","aged","person","reached","age","punishable","hours","compulsory","work","years","forced","labour","years","deprivation","liberty","period","article","sexual","services","understood","mean","sexual","acts","sexual","nature","condition","performance","monetary","minor","third_party","promise","minor","third_party","article","amended","federal","act","ofebruary","states","provided","parts","one","twof","article","committed","withe","involvement","prostitution","persons","years_old","shall","punishable","deprivation","liberty","term","three_years","without","deprivation","righto","offices","engage","definite","activities","term","fifteen","years","restriction","liberty","term","ofrom","one_year","two_years","without","israeli","law","israeli","penal","code","chapter","section","states","israeli","shall","apply","foreign","committed","israeli","citizen","israel","without","exception","cases","relating","chapter","viii","article","x","prostitution","obscenity","regarding","b","article","x","minors","prostitution","way","trafficking","section","c","article","specific","client","person","served","act","prostitution","minor","shall","liable","three_years","imprisonment","ofebruary","section","c","process","amendmento","increase","imprisonment","three","five_years","law","acts","related","child_prostitution","child_pornography","protection","children","person","involved","child_prostitution","sells","child","pornographic","products","foreign","children","another_country","purpose","prostitution","shall","punished","imprisonment","labour","fine","japanese","nationals","commit","crimes","abroad","shall","punished","withe","penalty","penal","code","singapore","penal","code","section","commercial_sex","minor","outside","singapore","states","person","citizen","permanent","resident","singapore","outside","singapore","would","done","singapore","constitute","offence","section","b","shall","guilty","offence","canada","included","criminal_code","provisions","allow","arrest","prosecution","canadians","canada","offences","committed","foreign_countries","related","child_sex_tourism","child_prostitution","well","child_sexual_exploitation","acts","child_pornography","bills","c","c","came","force","may","july","respectively","convictions","carry","penalty","years","imprisonment","hong_kong","prevention","child_pornography","ordinance","cap","december","introduced","offences","regard","child_sex_tourism","giving","extraterritorial","jurisdiction","extraterritorial","sexual","offences","listed","new","schedule","crime","ordinance","cap","makes","illegal","act","committed","child","outside","hong_kong","child","connections","kong","also","offence","make","arrangement","relating","commission","acts","children","advertise","paper","south_korea","act","protection","children","juveniles","sexual","abuse","article","punishment","korean","citizens","commit","korean","citizen","sex","offense","child","juvenile","outside","territory","republic","korea","article","criminal","acthe","state","shall","tobtain","criminal","information","relevant","foreign_country","offender","according","ecpat","report","progress","needed","regard","extraterritorial","jurisdiction","concerning","nationals","sex","children","south_korean","law","applied","definition","child","varying","definitions","create","various","laws","applied","invite","lack","cooperation","lack","uniformity","enforcement","multiple","agencies","united_kingdom","sexual","offences","act","enables","united_kingdom","british","citizens","residents","commit","sexual","offences","children","overseas","prosecuted","england_wales","northern_ireland","similar","provisions","force","scotland","criminalaw","consolidation","scotland","act","offences","carry","penalties","life","imprisonment","anyone","found","guilty","placed","sex","offenders","register","two","british","citizens","jail","following","trials","based","legislation","barry","mccloud","andavid","graham","david","graham","sex_tourism","law","sky","news","may","united_states","protect","act","protect","act","april","federal","crime","united_states","us","citizen","permanent","resident","alien","engage","illicit","sexual","conduct","foreign_country","person","age","whether","nothe","us","citizen","permanent","resident","alien","intended","engage","illicit","sexual","conduct","prior","going","abroad","purposes","protect","act","illicit","sexual","conduct","includes","commercial_sex","act","foreign_country","person","age","law","defines","commercial_sex","act","sex","act","account","anything","value","given","person","age","congressional","passage","protect","act","prove","sex_tourists","went","abroad","withe","intent","children","something","almost","impossible","demonstrate","protect","act","shifted","burden","making","liable","act","penalties","doubled","years","prison","european","union","union","directive","sexual","abuse","sexual_exploitation","children","child_pornography","article","jurisdiction","coordination","prosecution","member","take","necessary","measures","establish","jurisdiction","offences","referred","articles","offence","committed","whole","part","within","territory","b","offender","one","nationals","meaning","member","prosecute","citizens","child_sex","offences","committed","abroad","member_states","law","article","references_externalinks","global","study","sexual_exploitation","children","travel_tourism","problem","enforcement","relating","sex_tourism","child_prostitution","tourism_category","sex_tourism"],"clean_bigrams":[["child","sex"],["sex","tourism"],["tourism","cst"],["commercially","facilitated"],["facilitated","child"],["child","sexual"],["sexual","abuse"],["united","nations"],["nations","convention"],["every","human"],["years","child"],["child","sex"],["sex","tourism"],["tourism","results"],["physical","consequences"],["may","include"],["include","sexually"],["sexually","transmitted"],["transmitted","infection"],["including","hiv"],["hiv","aids"],["aids","drug"],["drug","addiction"],["addiction","pregnancy"],["possibly","death"],["death","according"],["state","department"],["united","states"],["states","child"],["child","sex"],["sex","tourism"],["tourism","part"],["multibillion","dollar"],["dollar","sex"],["sex","tourism"],["tourism","global"],["global","sex"],["sex","tourism"],["tourism","industry"],["children","child"],["child","prostitution"],["prostitution","within"],["wider","issue"],["commercial","sexual"],["sexual","exploitation"],["children","child"],["child","sex"],["sex","tourism"],["approximately","million"],["million","children"],["children","around"],["children","child"],["child","sex"],["sex","tourism"],["tourism","analysis"],["international","responses"],["law","page"],["page","cited"],["child","sex"],["sex","tourism"],["tourism","trade"],["trade","often"],["sexual","slavery"],["slavery","users"],["commercial","sexual"],["sexual","purposes"],["motive","although"],["although","pedophiles"],["popularly","associated"],["child","sex"],["sex","tourism"],["nothe","majority"],["prefer","children"],["sexually","transmitted"],["also","situational"],["situational","offender"],["offender","situational"],["situational","users"],["actively","seek"],["actual","act"],["sexual","activity"],["activity","pedophiles"],["pedophiles","use"],["trading","information"],["child","sex"],["sex","tourism"],["vulnerable","children"],["found","generally"],["low","income"],["allow","prosecution"],["child","sexual"],["sexual","abuse"],["abuse","committed"],["committed","outside"],["home","country"],["country","however"],["child","sex"],["sex","tourismay"],["situational","offenders"],["may","act"],["travel","specifically"],["exploiting","children"],["background","child"],["child","sex"],["sex","tourism"],["closely","linked"],["poverty","armed"],["armed","conflicts"],["conflicts","rapid"],["rapid","industrialization"],["population","growth"],["latin","americand"],["americand","southeast"],["southeast","asia"],["instance","street"],["street","children"],["children","often"],["often","turn"],["last","resort"],["resort","additionally"],["additionally","vulnerable"],["vulnerable","children"],["children","areasy"],["areasy","targets"],["traffickers","prostitution"],["thailand","cambodia"],["cambodia","india"],["india","brazil"],["leading","hotspots"],["child","sexual"],["sexual","exploitation"],["exploitation","victims"],["child","sexual"],["sexual","exploitation"],["child","sex"],["sex","tourism"],["varying","ages"],["consent","laws"],["bahrain","see"],["see","ages"],["children","child"],["child","prostitution"],["prostitution","child"],["child","pornography"],["pornography","reported"],["reported","countries"],["international","child"],["child","sex"],["sex","tourists"],["tourists","vary"],["vary","depending"],["regions","buthe"],["buthe","demand"],["usually","recognized"],["countries","including"],["richer","countries"],["europe","north"],["north","america"],["russian","federation"],["federation","japan"],["japan","australiand"],["australiand","new"],["new","zealand"],["zealand","australians"],["largest","group"],["sex","tourists"],["tourists","prosecuted"],["thailand","per"],["per","cent"],["cases","investigated"],["action","pour"],["pour","les"],["american","french"],["coastal","regions"],["example","per"],["per","cent"],["per","cent"],["foreign","italians"],["italians","per"],["per","cent"],["cent","germans"],["germans","per"],["per","cent"],["cent","swiss"],["swiss","per"],["per","cent"],["tourists","coming"],["united","republic"],["tanzania","fifth"],["available","information"],["child","exploitation"],["exploitation","unit"],["commercial","sexual"],["sexual","exploitation"],["thailand","thexact"],["thexact","number"],["child","prostitutes"],["health","system"],["system","research"],["research","institute"],["institute","reports"],["prostitution","make"],["thailand","cambodia"],["federal","police"],["police","say"],["around","million"],["million","children"],["recently","brazil"],["worst","child"],["child","sex"],["sex","trafficking"],["trafficking","record"],["thailand","per"],["per","chris"],["chris","rogers"],["rogers","report"],["bbc","world"],["popular","sex"],["sex","tourist"],["tourist","destination"],["brazil","athe"],["athe","moment"],["high","trend"],["child","sex"],["sex","tourism"],["first","spot"],["spot","beating"],["sex","tourism"],["tourism","targeting"],["targeting","children"],["children","creates"],["creates","huge"],["huge","monetary"],["monetary","incentives"],["traffickers","human"],["human","trafficking"],["trafficking","impacts"],["estimated","million"],["million","child"],["child","victims"],["united","nations"],["nations","office"],["recently","stated"],["global","trafficking"],["sexual","exploitation"],["fastest","growing"],["growing","criminal"],["criminal","activities"],["world","unicef"],["unicef","notes"],["sexual","activity"],["often","seen"],["private","matter"],["matter","making"],["making","communities"],["sexual","exploitation"],["attitudes","make"],["make","children"],["children","far"],["sexual","exploitation"],["children","takes"],["takes","place"],["adult","sex"],["sex","trade"],["local","people"],["sex","tourists"],["internet","provides"],["efficient","global"],["global","networking"],["networking","tool"],["share","information"],["information","destinations"],["cases","involving"],["involving","children"],["relatively","strict"],["strict","domestic"],["domestic","laws"],["american","citizen"],["permanent","resident"],["travels","abroad"],["illicit","conduct"],["minor","however"],["however","child"],["child","pornography"],["pornography","sex"],["sex","tourism"],["human","trafficking"],["trafficking","remain"],["remain","fast"],["fast","growing"],["growing","industries"],["recently","introduced"],["international","megan"],["prevent","demand"],["child","sex"],["sex","trafficking"],["trafficking","international"],["international","megan"],["law","similar"],["domestic","megan"],["law","named"],["new","jersey"],["community","notification"],["sex","offender"],["would","alert"],["alert","officials"],["officials","abroad"],["offenders","intend"],["keep","sex"],["sex","offender"],["offender","lists"],["known","sex"],["sex","offender"],["offender","may"],["united","states"],["sex","tourism"],["serious","problems"],["problems","withe"],["withe","sex"],["united","states"],["states","human"],["human","rights"],["rights","organizationsuch"],["unicef","believe"],["factors","pushing"],["pushing","brazil"],["destination","countries"],["thextensive","use"],["sport","fishing"],["fishing","industry"],["brazilian","amazon"],["ustate","department"],["department","report"],["report","states"],["federal","police"],["began","investigating"],["investigating","allegations"],["foreign","owned"],["owned","travel"],["travel","company"],["company","arranged"],["arranged","fishing"],["fishing","expeditions"],["amazon","region"],["reality","sex"],["sex","tours"],["european","pedophiles"],["foreign","law"],["law","enforcement"],["enforcement","officials"],["officials","another"],["another","ustate"],["ustate","department"],["department","report"],["report","states"],["states","page"],["newer","trend"],["arranged","fishing"],["fishing","expeditions"],["child","sex"],["sex","tourism"],["europeand","american"],["recent","reports"],["abc","world"],["world","news"],["ecpat","usa"],["recently","posted"],["webcam","child"],["child","sex"],["sex","tourism"],["tourism","according"],["federal","bureau"],["investigations","estimate"],["given","time"],["rooms","offers"],["internet","users"],["webcam","sex"],["sex","performances"],["week","investigation"],["investigation","conducted"],["terre","des"],["des","hommes"],["hommes","dutch"],["dutch","action"],["computer","model"],["australia","canada"],["canada","germany"],["germany","ghana"],["ghana","india"],["india","italy"],["italy","mauritius"],["africa","turkey"],["united","kingdom"],["united","states"],["alleged","online"],["online","abusers"],["webcam","child"],["child","sex"],["terre","des"],["des","hommes"],["hommes","netherlands"],["online","petition"],["pressure","governments"],["adopt","proactive"],["proactive","investigation"],["investigation","policies"],["protect","children"],["webcam","child"],["child","sex"],["sex","tourism"],["tourism","global"],["global","response"],["recent","years"],["child","sex"],["sex","tourism"],["least","countries"],["prosecuted","specifically"],["child","sexual"],["sexual","abuse"],["abuse","crimes"],["crimes","committed"],["committed","whilst"],["whilst","abroad"],["another","nations"],["crimes","child"],["child","sex"],["sex","tourism"],["tourism","trips"],["may","countries"],["children","child"],["child","prostitution"],["prostitution","child"],["child","pornography"],["deeply","concerned"],["concerned","athe"],["athe","widespread"],["continuing","practice"],["sex","tourism"],["arespecially","vulnerable"],["pass","laws"],["laws","within"],["practices","punishable"],["appropriate","penalties"],["penalties","thatake"],["grave","nature"],["cst","non"],["non","governmental"],["governmental","organizations"],["organizations","ngos"],["tourism","industry"],["world","tourism"],["tourism","organization"],["organization","wto"],["wto","established"],["task","force"],["wto","ecpat"],["ecpat","end"],["end","child"],["child","prostitution"],["prostitution","child"],["child","pornography"],["sexual","purposes"],["nordic","tour"],["tour","operators"],["operators","created"],["sexual","exploitation"],["travel","companies"],["signed","code"],["enforcement","activities"],["us","immigration"],["customs","enforcement"],["ice","participates"],["participates","investigating"],["child","sex"],["sex","tourists"],["ice","launched"],["launched","operation"],["operation","predator"],["predator","leading"],["child","sexual"],["sexual","abusers"],["abusers","including"],["united","states"],["ice","agents"],["agents","refuse"],["operation","media"],["media","reports"],["undercover","agents"],["agents","internet"],["sophisticated","technologies"],["technologies","ice"],["ice","agents"],["say","however"],["however","thathey"],["thathey","often"],["often","receive"],["receive","information"],["local","ngos"],["child","sexual"],["sexual","abuse"],["abuse","sometimes"],["sometimes","us"],["us","based"],["based","law"],["law","enforcement"],["officers","inform"],["known","sex"],["sex","offenders"],["cases","local"],["local","ice"],["ice","agents"],["agents","work"],["thai","police"],["police","counterparts"],["fox","sex"],["sex","laws"],["thailand","part"],["part","civil"],["civil","society"],["law","enforcement"],["united","kingdom"],["kingdom","uk"],["uk","police"],["child","exploitation"],["online","protection"],["protection","centre"],["actively","involved"],["monitoring","child"],["child","sex"],["sex","tourists"],["tourists","ando"],["ando","prosecute"],["well","policing"],["child","sex"],["sex","tourism"],["tourism","asia"],["asia","cambodia"],["persons","report"],["reports","thathe"],["thathe","sale"],["virgin","girls"],["girls","continues"],["serious","problem"],["significant","number"],["foreign","men"],["men","primarily"],["primarily","white"],["white","travel"],["child","sex"],["sex","tourism"],["tourism","cambodia"],["human","persons"],["persons","contains"],["contains","legislation"],["legislation","againsthe"],["againsthe","commercial"],["commercial","sexual"],["sexual","exploitation"],["law","focuses"],["focuses","largely"],["also","addresses"],["addresses","prostitution"],["specifically","define"],["child","sex"],["sex","tourism"],["tourism","prevention"],["prevention","project"],["project","china"],["persons","report"],["reports","thathe"],["thathe","government"],["notake","sufficient"],["sufficient","measures"],["reduce","demand"],["demand","forced"],["forced","labor"],["labor","commercial"],["commercial","sex"],["sex","acts"],["acts","child"],["child","sex"],["sex","tourismus"],["tourismus","department"],["state","trafficking"],["persons","report"],["report","june"],["june","indonesia"],["persons","report"],["child","sex"],["sex","tourism"],["urban","areas"],["tourist","destinationsuch"],["island","indonesia"],["indonesia","recently"],["recently","islands"],["indonesia","like"],["like","bali"],["become","known"],["known","child"],["child","sex"],["sex","tourism"],["sex","trafficking"],["criminal","code"],["indonesian","citizen"],["child","protection"],["protection","act"],["criminal","code"],["code","whether"],["inside","indonesia"],["child","protect"],["protect","act"],["protecthe","rights"],["specific","sections"],["sections","provide"],["children","one"],["one","law"],["law","states"],["commercial","monetary"],["monetary","gain"],["ten","years"],["monetary","fine"],["equivalento","us"],["korea","south"],["south","korean"],["korean","men"],["major","drivers"],["child","sex"],["sex","tourism"],["tourism","asia"],["korea","times"],["times","reported"],["international","symposium"],["high","numbers"],["korean","child"],["child","sex"],["sex","tourists"],["southeast","asia"],["symposium","conditions"],["youth","sex"],["sex","tourism"],["korean","men"],["men","discussed"],["discussed","issues"],["issues","concerning"],["concerning","korean"],["korean","male"],["child","prostitutes"],["prostitutes","across"],["across","asia"],["male","korean"],["korean","tourists"],["poor","cambodian"],["cambodian","children"],["selling","sexual"],["sexual","favors"],["report","noted"],["increasing","number"],["koreans","bought"],["bought","sex"],["philippine","government"],["korean","governmento"],["governmento","take"],["take","firm"],["firm","action"],["particular","buying"],["buying","sex"],["persons","report"],["reports","thathe"],["thathe","men"],["south","korea"],["korea","create"],["create","demand"],["child","sex"],["sex","tourism"],["surrounding","countries"],["countries","including"],["including","southeast"],["southeast","asia"],["asia","south"],["south","pacific"],["mongolia","technology"],["helped","increase"],["increase","accessibility"],["child","sex"],["sex","tourism"],["korea","south"],["south","korean"],["korean","men"],["men","arrange"],["philippines","thailand"],["korean","institute"],["criminology","study"],["study","published"],["january","shows"],["south","korean"],["korean","men"],["primary","market"],["child","sex"],["sex","tourism"],["foreigners","visiting"],["visiting","southeast"],["southeast","asia"],["asia","south"],["south","koreans"],["majority","group"],["group","driving"],["driving","demand"],["child","prostitution"],["prostitution","across"],["article","goes"],["us","department"],["state","trafficking"],["persons","report"],["report","described"],["described","south"],["significant","source"],["child","sex"],["sex","tourism"],["southeast","asiand"],["pacific","islands"],["hee","jun"],["jun","head"],["seoul","based"],["based","group"],["group","campaigning"],["sex","trafficking"],["trafficking","claims"],["korean","although"],["although","south"],["south","korea"],["child","sex"],["sex","offenders"],["offenders","abroad"],["report","stated"],["korean","sex"],["sex","tourists"],["past","seven"],["seven","years"],["years","mongolia"],["persons","report"],["south","koreand"],["koreand","japanese"],["japanese","tourists"],["tourists","engage"],["child","sex"],["sex","tourism"],["mongolian","government"],["implemented","laws"],["laws","regarding"],["regarding","child"],["child","prostitution"],["criminal","code"],["organized","prostitution"],["sexual","consent"],["illegal","sex"],["withis","law"],["law","could"],["could","lead"],["three","years"],["eighteen","months"],["community","service"],["service","rape"],["also","considered"],["considered","illegal"],["mongolia","withe"],["withe","punishment"],["six","years"],["intensified","philippines"],["philippines","child"],["child","sex"],["sex","tourism"],["serious","problem"],["persons","report"],["tourists","coming"],["europe","north"],["north","america"],["new","technology"],["technology","like"],["children","form"],["get","money"],["sending","pornographic"],["pornographic","images"],["internet","prostitution"],["governmental","organizations"],["worked","together"],["also","tried"],["increase","awareness"],["child","sex"],["sex","tourism"],["made","attempts"],["children","wereported"],["medical","treatment"],["injuries","relating"],["sexual","abuse"],["abuse","many"],["many","children"],["thailand","allowing"],["trafficked","tother"],["tother","countries"],["child","labor"],["labor","including"],["including","sexual"],["sexual","exploitation"],["exploitation","laos"],["article","states"],["states","human"],["human","trafficking"],["trafficking","means"],["recruitment","moving"],["moving","transfer"],["person","within"],["across","national"],["national","borders"],["deception","threats"],["threats","use"],["use","oforce"],["oforce","debt"],["debt","bondage"],["forced","labour"],["labour","prostitution"],["prostitution","pornography"],["againsthe","fine"],["fine","traditions"],["various","body"],["body","organs"],["unlawful","purposes"],["mentioned","acts"],["acts","committed"],["age","shall"],["human","trafficking"],["trafficking","even"],["even","though"],["deception","threat"],["threat","use"],["use","oforce"],["oforce","debt"],["debt","bondage"],["person","engaging"],["human","trafficking"],["trafficking","shall"],["five","years"],["fifteen","years"],["years","imprisonment"],["women","article"],["article","states"],["acts","committed"],["years","old"],["even","though"],["deception","threat"],["threat","force"],["debt","bondage"],["bondage","trafficking"],["trafficking","shall"],["withe","offender"],["offence","mentioned"],["providing","assets"],["children","according"],["ustate","department"],["department","report"],["report","police"],["police","corruption"],["weak","judicial"],["judicial","sector"],["court","system"],["anti","trafficking"],["trafficking","law"],["law","enforcement"],["persons","north"],["north","america"],["america","barbados"],["noticeable","action"],["action","taken"],["reduce","demand"],["commercial","sex"],["sex","acts"],["acts","though"],["sex","tourism"],["tourism","including"],["including","child"],["child","sex"],["sex","tourism"],["state","trafficking"],["persons","report"],["report","june"],["june","dominican"],["dominican","republic"],["child","sex"],["sex","tourism"],["current","problem"],["problem","particularly"],["coastal","resort"],["resort","areas"],["child","sex"],["sex","tourists"],["tourists","arriving"],["arriving","yearound"],["various","countries"],["also","reported"],["reported","thathe"],["thathe","current"],["current","legislation"],["adolescents","law"],["using","children"],["paid","sexual"],["sexual","activity"],["certain","modes"],["pornographic","material"],["criminal","activities"],["child","pornography"],["persons","report"],["reports","thathe"],["thathe","government"],["known","efforts"],["reduce","demand"],["commercial","sex"],["sex","additionally"],["reported","thathe"],["thathe","government"],["child","sex"],["sex","tourism"],["tourism","problem"],["recently","banned"],["banned","children"],["nightclubs","according"],["cuban","government"],["government","documents"],["documents","training"],["tourism","industry"],["report","potential"],["potential","sex"],["sex","tourists"],["tourists","el"],["el","salvador"],["salvador","one"],["one","third"],["sexually","exploited"],["exploited","children"],["median","age"],["prostitution","among"],["children","interviewed"],["average","ofive"],["ofive","days"],["days","per"],["per","week"],["week","although"],["although","nearly"],["nearly","reported"],["reported","thathey"],["thathey","worked"],["worked","seven"],["seven","days"],["week","recently"],["increased","especially"],["especially","due"],["migration","many"],["many","children"],["sento","countries"],["countries","inorth"],["inorth","america"],["neighboring","countries"],["salvadoran","children"],["rural","areas"],["commercial","sexual"],["sexual","exploitation"],["urban","areas"],["el","salvador"],["fully","comply"],["comply","withe"],["withe","minimum"],["minimum","standards"],["making","significant"],["significant","efforts"],["reporting","period"],["government","sustained"],["sustained","anti"],["anti","trafficking"],["trafficking","law"],["law","enforcement"],["enforcement","efforts"],["provide","services"],["sexual","exploitation"],["salvadoran","government"],["government","sustained"],["sustained","anti"],["anti","trafficking"],["trafficking","prevention"],["prevention","efforts"],["reporting","period"],["government","forged"],["continued","partnerships"],["ngos","international"],["international","organizations"],["foreign","governments"],["anti","trafficking"],["trafficking","initiatives"],["government","collaborated"],["campaign","aimed"],["aimed","specifically"],["increasing","awareness"],["commercial","sexual"],["sexual","exploitation"],["children","reaching"],["reaching","approximately"],["approximately","children"],["government","included"],["included","anti"],["anti","trafficking"],["trafficking","information"],["military","forces"],["forces","prior"],["missions","jamaica"],["persons","report"],["child","sex"],["sex","tourism"],["tourism","problem"],["problem","near"],["near","jamaica"],["resort","areas"],["areas","trinidad"],["tobago","according"],["child","sex"],["sex","tourism"],["tourism","south"],["us","department"],["state","reported"],["child","sex"],["sex","tourism"],["tourism","problem"],["argentina","especially"],["buenos","aires"],["penal","code"],["specifically","prohibit"],["prohibit","child"],["child","sex"],["sex","tourism"],["child","sex"],["sex","related"],["reduce","child"],["child","sex"],["sex","tourism"],["tourism","governmental"],["governmental","authorities"],["authorities","passed"],["brothels","ngos"],["ngos","reported"],["often","tipped"],["local","police"],["us","department"],["state","reported"],["child","sex"],["sex","tourism"],["tourism","remains"],["serious","problem"],["problem","particularly"],["tourist","areas"],["child","sex"],["sex","tourists"],["tourists","come"],["united","states"],["states","brazilian"],["brazilian","authorities"],["directly","involved"],["sex","tourists"],["instead","allow"],["allow","ngos"],["child","sex"],["sex","tourism"],["brazilian","law"],["law","newly"],["newly","introduced"],["article","children"],["children","people"],["people","younger"],["years","adolescents"],["adolescents","people"],["sexual","exploitation"],["ten","years"],["colombian","criminal"],["criminal","code"],["code","prohibits"],["prohibits","organizing"],["facilitating","sexual"],["sexual","tourism"],["provides","penalties"],["years","imprisonment"],["imprisonment","buthere"],["reported","convictions"],["child","sex"],["sex","tourists"],["recent","years"],["years","colombia"],["legislation","related"],["control","trafficking"],["children","particularly"],["criminal","code"],["code","however"],["law","istill"],["istill","pending"],["pending","approval"],["adolescents","victims"],["commercial","sexual"],["sexual","exploitation"],["exploitation","ecuador"],["ecuador","child"],["child","sex"],["sex","tourism"],["tourism","occurs"],["occurs","mostly"],["urban","areas"],["tourist","destinationsuch"],["galapagos","islands"],["islands","peru"],["peru","child"],["child","sex"],["sex","tourism"],["traffickers","reportedly"],["reportedly","operate"],["operate","illegally"],["certain","regions"],["governmental","authority"],["authority","lacks"],["lacks","although"],["known","child"],["child","sex"],["sex","tourism"],["tourism","destinations"],["peruvian","laws"],["reported","convictions"],["child","sex"],["sex","tourists"],["government","officials"],["tourism","service"],["service","providers"],["child","sex"],["sex","tourism"],["tourism","conducted"],["public","awareness"],["awareness","campaign"],["reached","outo"],["tourism","industry"],["raise","awareness"],["child","sex"],["sex","tourism"],["date","businesses"],["signed","code"],["conduct","agreements"],["agreements","nationwide"],["nationwide","uruguay"],["uruguay","government"],["government","officials"],["officials","maintained"],["maintained","efforts"],["reach","outo"],["outo","hotel"],["hotel","workers"],["broader","tourism"],["tourism","sector"],["raise","awareness"],["child","sex"],["sex","tourism"],["commercial","sexual"],["sexual","exploitation"],["children","uruguay"],["educational","system"],["system","continues"],["include","trafficking"],["trafficking","education"],["high","schools"],["schools","extraterritorial"],["extraterritorial","jurisdiction"],["growing","number"],["specific","extraterritorial"],["extraterritorial","jurisdiction"],["illicit","sexual"],["sexual","conduct"],["foreign","country"],["ecpat","reported"],["reported","countries"],["extraterritorial","child"],["child","sex"],["sex","legislation"],["following","list"],["first","countries"],["introduce","laws"],["jail","terms"],["sexual","activity"],["foreign","countries"],["crimes","child"],["child","sex"],["sex","tourism"],["tourism","amendment"],["july","helping"],["fight","child"],["child","sex"],["sex","crimes"],["crimes","abroad"],["abroad","australian"],["australian","department"],["department","oforeign"],["oforeign","affairs"],["trade","travel"],["travel","bulletin"],["law","also"],["also","makes"],["encourage","benefit"],["australian","citizens"],["citizens","permanent"],["permanent","residents"],["bodies","corporate"],["sexual","activity"],["offences","carry"],["carry","penalties"],["years","imprisonment"],["companies","new"],["new","zealand"],["crimes","amendment"],["amendment","act"],["new","zealand"],["zealand","citizens"],["sexual","conduct"],["another","country"],["url","january"],["january","swiss"],["swiss","federal"],["federal","office"],["police","state"],["state","swiss"],["swiss","federal"],["federal","authorities"],["fighting","child"],["child","sex"],["sex","tourism"],["recent","years"],["unit","dealing"],["child","pornography"],["numerous","partner"],["partner","services"],["abroad","since"],["since","june"],["online","form"],["general","public"],["report","cases"],["child","sex"],["sex","tourism"],["appropriate","judicial"],["criminal","code"],["code","article"],["article","territorial"],["territorial","scope"],["application","offences"],["minors","abroad"],["abroad","states"],["code","also"],["also","applies"],["following","offences"],["offences","abroad"],["dependent","persons"],["persons","art"],["sexual","acts"],["payment","art"],["art","b"],["b","sexual"],["sexual","acts"],["children","art"],["sexual","acts"],["payment","amended"],["amended","september"],["september","states"],["sexual","acts"],["minor","induces"],["promises","payment"],["exceeding","three"],["three","years"],["monetary","penalty"],["children","states"],["sexual","act"],["child","sexual"],["sexual","act"],["exceeding","five"],["five","years"],["monetary","penalty"],["persons","involved"],["three","years"],["years","russian"],["russian","federation"],["federation","criminal"],["criminal","code"],["committed","offences"],["offences","outside"],["russian","federation"],["federation","citizens"],["russian","federation"],["persons","permanently"],["permanently","residing"],["russian","federation"],["committed","outside"],["russian","federation"],["crime","againsthe"],["againsthe","interests"],["interests","guarded"],["present","code"],["code","shall"],["accordance","withe"],["withe","present"],["present","code"],["code","unless"],["foreign","state"],["court","exists"],["exists","concerning"],["persons","federal"],["federal","act"],["december","amended"],["criminal","code"],["code","also"],["also","adding"],["adding","laws"],["laws","regarding"],["sexual","services"],["amended","article"],["criminal","code"],["sexual","services"],["minor","aged"],["compulsory","work"],["forced","labour"],["article","sexual"],["sexual","services"],["mean","sexual"],["sexual","acts"],["sexual","nature"],["minor","third"],["third","party"],["minor","third"],["third","party"],["party","article"],["article","amended"],["federal","act"],["ofebruary","states"],["parts","one"],["committed","withe"],["withe","involvement"],["years","old"],["old","shall"],["three","years"],["without","deprivation"],["definite","activities"],["fifteen","years"],["term","ofrom"],["ofrom","one"],["one","year"],["two","years"],["israeli","law"],["law","israeli"],["israeli","penal"],["penal","code"],["code","chapter"],["chapter","section"],["section","states"],["shall","apply"],["israeli","citizen"],["israel","without"],["without","exception"],["cases","relating"],["chapter","viii"],["viii","article"],["article","x"],["x","prostitution"],["obscenity","regarding"],["article","x"],["trafficking","section"],["section","c"],["person","served"],["minor","shall"],["three","years"],["years","imprisonment"],["ofebruary","section"],["section","c"],["five","years"],["acts","related"],["child","prostitution"],["prostitution","child"],["child","pornography"],["child","prostitution"],["sells","child"],["child","pornographic"],["pornographic","products"],["foreign","children"],["another","country"],["prostitution","shall"],["fine","japanese"],["japanese","nationals"],["crimes","abroad"],["abroad","shall"],["punished","withe"],["penalty","penal"],["penal","code"],["code","singapore"],["singapore","penal"],["penal","code"],["code","section"],["section","commercial"],["commercial","sex"],["outside","singapore"],["singapore","states"],["permanent","resident"],["outside","singapore"],["singapore","constitute"],["section","b"],["b","shall"],["offence","canada"],["criminal","code"],["code","provisions"],["offences","committed"],["foreign","countries"],["countries","related"],["child","sex"],["sex","tourism"],["child","prostitution"],["child","sexual"],["sexual","exploitation"],["acts","child"],["child","pornography"],["bills","c"],["july","respectively"],["respectively","convictions"],["convictions","carry"],["years","imprisonment"],["imprisonment","hong"],["hong","kong"],["child","pornography"],["pornography","ordinance"],["ordinance","cap"],["december","introduced"],["introduced","offences"],["child","sex"],["sex","tourism"],["tourism","giving"],["giving","extraterritorial"],["extraterritorial","jurisdiction"],["jurisdiction","extraterritorial"],["sexual","offences"],["offences","listed"],["new","schedule"],["crime","ordinance"],["ordinance","cap"],["makes","illegal"],["act","committed"],["child","outside"],["outside","hong"],["hong","kong"],["arrangement","relating"],["south","korea"],["sexual","abuse"],["abuse","article"],["article","punishment"],["korean","citizens"],["korean","citizen"],["sex","offense"],["juvenile","outside"],["criminal","acthe"],["acthe","state"],["state","shall"],["tobtain","criminal"],["criminal","information"],["relevant","foreign"],["foreign","country"],["offender","according"],["ecpat","report"],["report","progress"],["extraterritorial","jurisdiction"],["jurisdiction","concerning"],["concerning","nationals"],["south","korean"],["korean","law"],["varying","definitions"],["definitions","create"],["various","laws"],["multiple","agencies"],["agencies","united"],["united","kingdom"],["sexual","offences"],["offences","act"],["act","enables"],["enables","united"],["united","kingdom"],["kingdom","british"],["british","citizens"],["commit","sexual"],["sexual","offences"],["children","overseas"],["england","wales"],["northern","ireland"],["ireland","similar"],["similar","provisions"],["criminalaw","consolidation"],["consolidation","scotland"],["scotland","act"],["offences","carry"],["carry","penalties"],["life","imprisonment"],["anyone","found"],["found","guilty"],["sex","offenders"],["offenders","register"],["two","british"],["british","citizens"],["jail","following"],["following","trials"],["trials","based"],["legislation","barry"],["barry","mccloud"],["mccloud","andavid"],["andavid","graham"],["graham","david"],["david","graham"],["sex","tourism"],["tourism","law"],["law","sky"],["sky","news"],["news","may"],["may","united"],["united","states"],["protect","act"],["protect","act"],["federal","crime"],["united","states"],["us","citizen"],["permanent","resident"],["resident","alien"],["illicit","sexual"],["sexual","conduct"],["foreign","country"],["nothe","us"],["us","citizen"],["permanent","resident"],["resident","alien"],["alien","intended"],["illicit","sexual"],["sexual","conduct"],["conduct","prior"],["going","abroad"],["protect","act"],["act","illicit"],["illicit","sexual"],["sexual","conduct"],["conduct","includes"],["commercial","sex"],["sex","act"],["foreign","country"],["law","defines"],["commercial","sex"],["sex","act"],["sex","act"],["congressional","passage"],["protect","act"],["sex","tourists"],["tourists","went"],["went","abroad"],["abroad","withe"],["withe","intent"],["children","something"],["something","almost"],["almost","impossible"],["protect","act"],["act","shifted"],["burden","making"],["european","union"],["union","directive"],["sexual","abuse"],["sexual","exploitation"],["children","child"],["child","pornography"],["pornography","article"],["article","jurisdiction"],["prosecution","member"],["necessary","measures"],["offences","referred"],["part","within"],["nationals","meaning"],["child","sex"],["sex","offences"],["offences","committed"],["committed","abroad"],["member","states"],["article","references"],["references","externalinks"],["global","study"],["sexual","exploitation"],["tourism","problem"],["sex","tourism"],["category","child"],["child","prostitution"],["prostitution","tourism"],["tourism","category"],["category","sex"],["sex","tourism"]],"all_collocations":["child sex","sex tourism","tourism cst","commercially facilitated","facilitated child","child sexual","sexual abuse","united nations","nations convention","every human","years child","child sex","sex tourism","tourism results","physical consequences","may include","include sexually","sexually transmitted","transmitted infection","including hiv","hiv aids","aids drug","drug addiction","addiction pregnancy","possibly death","death according","state department","united states","states child","child sex","sex tourism","tourism part","multibillion dollar","dollar sex","sex tourism","tourism global","global sex","sex tourism","tourism industry","children child","child prostitution","prostitution within","wider issue","commercial sexual","sexual exploitation","children child","child sex","sex tourism","approximately million","million children","children around","children child","child sex","sex tourism","tourism analysis","international responses","law page","page cited","child sex","sex tourism","tourism trade","trade often","sexual slavery","slavery users","commercial sexual","sexual purposes","motive although","although pedophiles","popularly associated","child sex","sex tourism","nothe majority","prefer children","sexually transmitted","also situational","situational offender","offender situational","situational users","actively seek","actual act","sexual activity","activity pedophiles","pedophiles use","trading information","child sex","sex tourism","vulnerable children","found generally","low income","allow prosecution","child sexual","sexual abuse","abuse committed","committed outside","home country","country however","child sex","sex tourismay","situational offenders","may act","travel specifically","exploiting children","background child","child sex","sex tourism","closely linked","poverty armed","armed conflicts","conflicts rapid","rapid industrialization","population growth","latin americand","americand southeast","southeast asia","instance street","street children","children often","often turn","last resort","resort additionally","additionally vulnerable","vulnerable children","children areasy","areasy targets","traffickers prostitution","thailand cambodia","cambodia india","india brazil","leading hotspots","child sexual","sexual exploitation","exploitation victims","child sexual","sexual exploitation","child sex","sex tourism","varying ages","consent laws","bahrain see","see ages","children child","child prostitution","prostitution child","child pornography","pornography reported","reported countries","international child","child sex","sex tourists","tourists vary","vary depending","regions buthe","buthe demand","usually recognized","countries including","richer countries","europe north","north america","russian federation","federation japan","japan australiand","australiand new","new zealand","zealand australians","largest group","sex tourists","tourists prosecuted","thailand per","per cent","cases investigated","action pour","pour les","american french","coastal regions","example per","per cent","per cent","foreign italians","italians per","per cent","cent germans","germans per","per cent","cent swiss","swiss per","per cent","tourists coming","united republic","tanzania fifth","available information","child exploitation","exploitation unit","commercial sexual","sexual exploitation","thailand thexact","thexact number","child prostitutes","health system","system research","research institute","institute reports","prostitution make","thailand cambodia","federal police","police say","around million","million children","recently brazil","worst child","child sex","sex trafficking","trafficking record","thailand per","per chris","chris rogers","rogers report","bbc world","popular sex","sex tourist","tourist destination","brazil athe","athe moment","high trend","child sex","sex tourism","first spot","spot beating","sex tourism","tourism targeting","targeting children","children creates","creates huge","huge monetary","monetary incentives","traffickers human","human trafficking","trafficking impacts","estimated million","million child","child victims","united nations","nations office","recently stated","global trafficking","sexual exploitation","fastest growing","growing criminal","criminal activities","world unicef","unicef notes","sexual activity","often seen","private matter","matter making","making communities","sexual exploitation","attitudes make","make children","children far","sexual exploitation","children takes","takes place","adult sex","sex trade","local people","sex tourists","internet provides","efficient global","global networking","networking tool","share information","information destinations","cases involving","involving children","relatively strict","strict domestic","domestic laws","american citizen","permanent resident","travels abroad","illicit conduct","minor however","however child","child pornography","pornography sex","sex tourism","human trafficking","trafficking remain","remain fast","fast growing","growing industries","recently introduced","international megan","prevent demand","child sex","sex trafficking","trafficking international","international megan","law similar","domestic megan","law named","new jersey","community notification","sex offender","would alert","alert officials","officials abroad","offenders intend","keep sex","sex offender","offender lists","known sex","sex offender","offender may","united states","sex tourism","serious problems","problems withe","withe sex","united states","states human","human rights","rights organizationsuch","unicef believe","factors pushing","pushing brazil","destination countries","thextensive use","sport fishing","fishing industry","brazilian amazon","ustate department","department report","report states","federal police","began investigating","investigating allegations","foreign owned","owned travel","travel company","company arranged","arranged fishing","fishing expeditions","amazon region","reality sex","sex tours","european pedophiles","foreign law","law enforcement","enforcement officials","officials another","another ustate","ustate department","department report","report states","states page","newer trend","arranged fishing","fishing expeditions","child sex","sex tourism","europeand american","recent reports","abc world","world news","ecpat usa","recently posted","webcam child","child sex","sex tourism","tourism according","federal bureau","investigations estimate","given time","rooms offers","internet users","webcam sex","sex performances","week investigation","investigation conducted","terre des","des hommes","hommes dutch","dutch action","computer model","australia canada","canada germany","germany ghana","ghana india","india italy","italy mauritius","africa turkey","united kingdom","united states","alleged online","online abusers","webcam child","child sex","terre des","des hommes","hommes netherlands","online petition","pressure governments","adopt proactive","proactive investigation","investigation policies","protect children","webcam child","child sex","sex tourism","tourism global","global response","recent years","child sex","sex tourism","least countries","prosecuted specifically","child sexual","sexual abuse","abuse crimes","crimes committed","committed whilst","whilst abroad","another nations","crimes child","child sex","sex tourism","tourism trips","may countries","children child","child prostitution","prostitution child","child pornography","deeply concerned","concerned athe","athe widespread","continuing practice","sex tourism","arespecially vulnerable","pass laws","laws within","practices punishable","appropriate penalties","penalties thatake","grave nature","cst non","non governmental","governmental organizations","organizations ngos","tourism industry","world tourism","tourism organization","organization wto","wto established","task force","wto ecpat","ecpat end","end child","child prostitution","prostitution child","child pornography","sexual purposes","nordic tour","tour operators","operators created","sexual exploitation","travel companies","signed code","enforcement activities","us immigration","customs enforcement","ice participates","participates investigating","child sex","sex tourists","ice launched","launched operation","operation predator","predator leading","child sexual","sexual abusers","abusers including","united states","ice agents","agents refuse","operation media","media reports","undercover agents","agents internet","sophisticated technologies","technologies ice","ice agents","say however","however thathey","thathey often","often receive","receive information","local ngos","child sexual","sexual abuse","abuse sometimes","sometimes us","us based","based law","law enforcement","officers inform","known sex","sex offenders","cases local","local ice","ice agents","agents work","thai police","police counterparts","fox sex","sex laws","thailand part","part civil","civil society","law enforcement","united kingdom","kingdom uk","uk police","child exploitation","online protection","protection centre","actively involved","monitoring child","child sex","sex tourists","tourists ando","ando prosecute","well policing","child sex","sex tourism","tourism asia","asia cambodia","persons report","reports thathe","thathe sale","virgin girls","girls continues","serious problem","significant number","foreign men","men primarily","primarily white","white travel","child sex","sex tourism","tourism cambodia","human persons","persons contains","contains legislation","legislation againsthe","againsthe commercial","commercial sexual","sexual exploitation","law focuses","focuses largely","also addresses","addresses prostitution","specifically define","child sex","sex tourism","tourism prevention","prevention project","project china","persons report","reports thathe","thathe government","notake sufficient","sufficient measures","reduce demand","demand forced","forced labor","labor commercial","commercial sex","sex acts","acts child","child sex","sex tourismus","tourismus department","state trafficking","persons report","report june","june indonesia","persons report","child sex","sex tourism","urban areas","tourist destinationsuch","island indonesia","indonesia recently","recently islands","indonesia like","like bali","become known","known child","child sex","sex tourism","sex trafficking","criminal code","indonesian citizen","child protection","protection act","criminal code","code whether","inside indonesia","child protect","protect act","protecthe rights","specific sections","sections provide","children one","one law","law states","commercial monetary","monetary gain","ten years","monetary fine","equivalento us","korea south","south korean","korean men","major drivers","child sex","sex tourism","tourism asia","korea times","times reported","international symposium","high numbers","korean child","child sex","sex tourists","southeast asia","symposium conditions","youth sex","sex tourism","korean men","men discussed","discussed issues","issues concerning","concerning korean","korean male","child prostitutes","prostitutes across","across asia","male korean","korean tourists","poor cambodian","cambodian children","selling sexual","sexual favors","report noted","increasing number","koreans bought","bought sex","philippine government","korean governmento","governmento take","take firm","firm action","particular buying","buying sex","persons report","reports thathe","thathe men","south korea","korea create","create demand","child sex","sex tourism","surrounding countries","countries including","including southeast","southeast asia","asia south","south pacific","mongolia technology","helped increase","increase accessibility","child sex","sex tourism","korea south","south korean","korean men","men arrange","philippines thailand","korean institute","criminology study","study published","january shows","south korean","korean men","primary market","child sex","sex tourism","foreigners visiting","visiting southeast","southeast asia","asia south","south koreans","majority group","group driving","driving demand","child prostitution","prostitution across","article goes","us department","state trafficking","persons report","report described","described south","significant source","child sex","sex tourism","southeast asiand","pacific islands","hee jun","jun head","seoul based","based group","group campaigning","sex trafficking","trafficking claims","korean although","although south","south korea","child sex","sex offenders","offenders abroad","report stated","korean sex","sex tourists","past seven","seven years","years mongolia","persons report","south koreand","koreand japanese","japanese tourists","tourists engage","child sex","sex tourism","mongolian government","implemented laws","laws regarding","regarding child","child prostitution","criminal code","organized prostitution","sexual consent","illegal sex","withis law","law could","could lead","three years","eighteen months","community service","service rape","also considered","considered illegal","mongolia withe","withe punishment","six years","intensified philippines","philippines child","child sex","sex tourism","serious problem","persons report","tourists coming","europe north","north america","new technology","technology like","children form","get money","sending pornographic","pornographic images","internet prostitution","governmental organizations","worked together","also tried","increase awareness","child sex","sex tourism","made attempts","children wereported","medical treatment","injuries relating","sexual abuse","abuse many","many children","thailand allowing","trafficked tother","tother countries","child labor","labor including","including sexual","sexual exploitation","exploitation laos","article states","states human","human trafficking","trafficking means","recruitment moving","moving transfer","person within","across national","national borders","deception threats","threats use","use oforce","oforce debt","debt bondage","forced labour","labour prostitution","prostitution pornography","againsthe fine","fine traditions","various body","body organs","unlawful purposes","mentioned acts","acts committed","age shall","human trafficking","trafficking even","even though","deception threat","threat use","use oforce","oforce debt","debt bondage","person engaging","human trafficking","trafficking shall","five years","fifteen years","years imprisonment","women article","article states","acts committed","years old","even though","deception threat","threat force","debt bondage","bondage trafficking","trafficking shall","withe offender","offence mentioned","providing assets","children according","ustate department","department report","report police","police corruption","weak judicial","judicial sector","court system","anti trafficking","trafficking law","law enforcement","persons north","north america","america barbados","noticeable action","action taken","reduce demand","commercial sex","sex acts","acts though","sex tourism","tourism including","including child","child sex","sex tourism","state trafficking","persons report","report june","june dominican","dominican republic","child sex","sex tourism","current problem","problem particularly","coastal resort","resort areas","child sex","sex tourists","tourists arriving","arriving yearound","various countries","also reported","reported thathe","thathe current","current legislation","adolescents law","using children","paid sexual","sexual activity","certain modes","pornographic material","criminal activities","child pornography","persons report","reports thathe","thathe government","known efforts","reduce demand","commercial sex","sex additionally","reported thathe","thathe government","child sex","sex tourism","tourism problem","recently banned","banned children","nightclubs according","cuban government","government documents","documents training","tourism industry","report potential","potential sex","sex tourists","tourists el","el salvador","salvador one","one third","sexually exploited","exploited children","median age","prostitution among","children interviewed","average ofive","ofive days","days per","per week","week although","although nearly","nearly reported","reported thathey","thathey worked","worked seven","seven days","week recently","increased especially","especially due","migration many","many children","sento countries","countries inorth","inorth america","neighboring countries","salvadoran children","rural areas","commercial sexual","sexual exploitation","urban areas","el salvador","fully comply","comply withe","withe minimum","minimum standards","making significant","significant efforts","reporting period","government sustained","sustained anti","anti trafficking","trafficking law","law enforcement","enforcement efforts","provide services","sexual exploitation","salvadoran government","government sustained","sustained anti","anti trafficking","trafficking prevention","prevention efforts","reporting period","government forged","continued partnerships","ngos international","international organizations","foreign governments","anti trafficking","trafficking initiatives","government collaborated","campaign aimed","aimed specifically","increasing awareness","commercial sexual","sexual exploitation","children reaching","reaching approximately","approximately children","government included","included anti","anti trafficking","trafficking information","military forces","forces prior","missions jamaica","persons report","child sex","sex tourism","tourism problem","problem near","near jamaica","resort areas","areas trinidad","tobago according","child sex","sex tourism","tourism south","us department","state reported","child sex","sex tourism","tourism problem","argentina especially","buenos aires","penal code","specifically prohibit","prohibit child","child sex","sex tourism","child sex","sex related","reduce child","child sex","sex tourism","tourism governmental","governmental authorities","authorities passed","brothels ngos","ngos reported","often tipped","local police","us department","state reported","child sex","sex tourism","tourism remains","serious problem","problem particularly","tourist areas","child sex","sex tourists","tourists come","united states","states brazilian","brazilian authorities","directly involved","sex tourists","instead allow","allow ngos","child sex","sex tourism","brazilian law","law newly","newly introduced","article children","children people","people younger","years adolescents","adolescents people","sexual exploitation","ten years","colombian criminal","criminal code","code prohibits","prohibits organizing","facilitating sexual","sexual tourism","provides penalties","years imprisonment","imprisonment buthere","reported convictions","child sex","sex tourists","recent years","years colombia","legislation related","control trafficking","children particularly","criminal code","code however","law istill","istill pending","pending approval","adolescents victims","commercial sexual","sexual exploitation","exploitation ecuador","ecuador child","child sex","sex tourism","tourism occurs","occurs mostly","urban areas","tourist destinationsuch","galapagos islands","islands peru","peru child","child sex","sex tourism","traffickers reportedly","reportedly operate","operate illegally","certain regions","governmental authority","authority lacks","lacks although","known child","child sex","sex tourism","tourism destinations","peruvian laws","reported convictions","child sex","sex tourists","government officials","tourism service","service providers","child sex","sex tourism","tourism conducted","public awareness","awareness campaign","reached outo","tourism industry","raise awareness","child sex","sex tourism","date businesses","signed code","conduct agreements","agreements nationwide","nationwide uruguay","uruguay government","government officials","officials maintained","maintained efforts","reach outo","outo hotel","hotel workers","broader tourism","tourism sector","raise awareness","child sex","sex tourism","commercial sexual","sexual exploitation","children uruguay","educational system","system continues","include trafficking","trafficking education","high schools","schools extraterritorial","extraterritorial jurisdiction","growing number","specific extraterritorial","extraterritorial jurisdiction","illicit sexual","sexual conduct","foreign country","ecpat reported","reported countries","extraterritorial child","child sex","sex legislation","following list","first countries","introduce laws","jail terms","sexual activity","foreign countries","crimes child","child sex","sex tourism","tourism amendment","july helping","fight child","child sex","sex crimes","crimes abroad","abroad australian","australian department","department oforeign","oforeign affairs","trade travel","travel bulletin","law also","also makes","encourage benefit","australian citizens","citizens permanent","permanent residents","bodies corporate","sexual activity","offences carry","carry penalties","years imprisonment","companies new","new zealand","crimes amendment","amendment act","new zealand","zealand citizens","sexual conduct","another country","url january","january swiss","swiss federal","federal office","police state","state swiss","swiss federal","federal authorities","fighting child","child sex","sex tourism","recent years","unit dealing","child pornography","numerous partner","partner services","abroad since","since june","online form","general public","report cases","child sex","sex tourism","appropriate judicial","criminal code","code article","article territorial","territorial scope","application offences","minors abroad","abroad states","code also","also applies","following offences","offences abroad","dependent persons","persons art","sexual acts","payment art","art b","b sexual","sexual acts","children art","sexual acts","payment amended","amended september","september states","sexual acts","minor induces","promises payment","exceeding three","three years","monetary penalty","children states","sexual act","child sexual","sexual act","exceeding five","five years","monetary penalty","persons involved","three years","years russian","russian federation","federation criminal","criminal code","committed offences","offences outside","russian federation","federation citizens","russian federation","persons permanently","permanently residing","russian federation","committed outside","russian federation","crime againsthe","againsthe interests","interests guarded","present code","code shall","accordance withe","withe present","present code","code unless","foreign state","court exists","exists concerning","persons federal","federal act","december amended","criminal code","code also","also adding","adding laws","laws regarding","sexual services","amended article","criminal code","sexual services","minor aged","compulsory work","forced labour","article sexual","sexual services","mean sexual","sexual acts","sexual nature","minor third","third party","minor third","third party","party article","article amended","federal act","ofebruary states","parts one","committed withe","withe involvement","years old","old shall","three years","without deprivation","definite activities","fifteen years","term ofrom","ofrom one","one year","two years","israeli law","law israeli","israeli penal","penal code","code chapter","chapter section","section states","shall apply","israeli citizen","israel without","without exception","cases relating","chapter viii","viii article","article x","x prostitution","obscenity regarding","article x","trafficking section","section c","person served","minor shall","three years","years imprisonment","ofebruary section","section c","five years","acts related","child prostitution","prostitution child","child pornography","child prostitution","sells child","child pornographic","pornographic products","foreign children","another country","prostitution shall","fine japanese","japanese nationals","crimes abroad","abroad shall","punished withe","penalty penal","penal code","code singapore","singapore penal","penal code","code section","section commercial","commercial sex","outside singapore","singapore states","permanent resident","outside singapore","singapore constitute","section b","b shall","offence canada","criminal code","code provisions","offences committed","foreign countries","countries related","child sex","sex tourism","child prostitution","child sexual","sexual exploitation","acts child","child pornography","bills c","july respectively","respectively convictions","convictions carry","years imprisonment","imprisonment hong","hong kong","child pornography","pornography ordinance","ordinance cap","december introduced","introduced offences","child sex","sex tourism","tourism giving","giving extraterritorial","extraterritorial jurisdiction","jurisdiction extraterritorial","sexual offences","offences listed","new schedule","crime ordinance","ordinance cap","makes illegal","act committed","child outside","outside hong","hong kong","arrangement relating","south korea","sexual abuse","abuse article","article punishment","korean citizens","korean citizen","sex offense","juvenile outside","criminal acthe","acthe state","state shall","tobtain criminal","criminal information","relevant foreign","foreign country","offender according","ecpat report","report progress","extraterritorial jurisdiction","jurisdiction concerning","concerning nationals","south korean","korean law","varying definitions","definitions create","various laws","multiple agencies","agencies united","united kingdom","sexual offences","offences act","act enables","enables united","united kingdom","kingdom british","british citizens","commit sexual","sexual offences","children overseas","england wales","northern ireland","ireland similar","similar provisions","criminalaw consolidation","consolidation scotland","scotland act","offences carry","carry penalties","life imprisonment","anyone found","found guilty","sex offenders","offenders register","two british","british citizens","jail following","following trials","trials based","legislation barry","barry mccloud","mccloud andavid","andavid graham","graham david","david graham","sex tourism","tourism law","law sky","sky news","news may","may united","united states","protect act","protect act","federal crime","united states","us citizen","permanent resident","resident alien","illicit sexual","sexual conduct","foreign country","nothe us","us citizen","permanent resident","resident alien","alien intended","illicit sexual","sexual conduct","conduct prior","going abroad","protect act","act illicit","illicit sexual","sexual conduct","conduct includes","commercial sex","sex act","foreign country","law defines","commercial sex","sex act","sex act","congressional passage","protect act","sex tourists","tourists went","went abroad","abroad withe","withe intent","children something","something almost","almost impossible","protect act","act shifted","burden making","european union","union directive","sexual abuse","sexual exploitation","children child","child pornography","pornography article","article jurisdiction","prosecution member","necessary measures","offences referred","part within","nationals meaning","child sex","sex offences","offences committed","committed abroad","member states","article references","references externalinks","global study","sexual exploitation","tourism problem","sex tourism","category child","child prostitution","prostitution tourism","tourism category","category sex","sex tourism"],"new_description":"child sex_tourism cst tourism purpose engaging prostitution children commercially facilitated child_sexual abuse definition child united_nations convention rights child every human age years child_sex_tourism results mental physical consequences children may_include sexually transmitted infection including hiv aids drug addiction pregnancy social possibly death according state department united_states child_sex_tourism part multibillion dollar sex_tourism global sex_tourism_industry form prostitution children child_prostitution within wider issue commercial_sexual exploitation children child_sex_tourism approximately million children around prostitution children child_sex_tourism analysis domestic international responses center children law page cited children perform prostitutes child_sex_tourism trade often lured abducted sexual slavery users children commercial_sexual purposes categorized motive although pedophiles popularly associated child_sex_tourism nothe majority users abusers prefer children risk sexually transmitted lower also situational offender situational users users actively seek children actual act may lack concern check age prostitute sexual_activity pedophiles use plan trips seeking trading information opportunities child_sex_tourism vulnerable children found generally areas low_income governments laws allow prosecution citizens child_sexual abuse committed outside home_country however laws child_sex_tourismay situational offenders may act pedophiles travel specifically purpose exploiting children easily background child_sex_tourism closely linked poverty armed conflicts rapid industrialization population growth latin_americand southeast_asia instance street children often turn prostitution last resort additionally vulnerable children areasy targets exploitation traffickers prostitution thailand cambodia india brazil mexico identified leading hotspots child_sexual_exploitation victims child_sexual_exploitation child_sex_tourism also complicated varying ages consent laws example age consent japan bahrain see ages consent asia special sale children child_prostitution child_pornography reported countries origin international child_sex_tourists vary depending regions buthe demand usually recognized coming countries_including richer countries europe north_america russian federation japan australiand_new_zealand australians instance identified largest group sex_tourists prosecuted thailand per_cent total cases investigated action pour les cambodia april american french vietnamese coastal regions kenya example per_cent per_cent abusers foreign italians per_cent germans per_cent swiss per_cent tourists coming ugandand united republic tanzania fifth sixth list costa available information child exploitation unit arrested total persons suspicion commercial_sexual exploitation children arrested costa prostitution thailand thexact number child prostitutes known health system research institute reports children prostitution make prostitutes thailand cambodia estimated third prostitutes india federal police say around million children believed involved prostitution recently brazil considered worst child_sex trafficking record thailand per chris rogers report bbc world brazil thailand world popular sex tourist_destination reports brazil athe_moment high trend child_sex_tourism geared take first spot beating sex_tourism targeting children creates huge monetary incentives traffickers human_trafficking impacts estimated million child victims united_nations office drugs crimes recently stated global trafficking sexual_exploitation one fastest_growing criminal activities world unicef notes sexual_activity often_seen private matter making communities act cases sexual_exploitation attitudes make children far vulnerable sexual_exploitation exploitation children takes_place result adult sex trade local_people sex_tourists internet provides efficient global networking tool individuals share information destinations procurement cases involving children us relatively strict domestic laws hold american citizen permanent resident us travels abroad purpose engaging illicit conduct minor however child_pornography sex_tourism human_trafficking remain fast_growing industries r recently introduced international megan law prevent demand child_sex trafficking international megan law similar domestic megan law named megan new_jersey provides community notification sex offender living area would alert officials abroad offenders intend travel countries keep sex offender lists us known sex offender may coming united_states sex_tourism serious problems withe sex united_states human_rights organizationsuch ecpat unicef believe would step right factors pushing brazil top list destination countries thextensive use sport fishing industry brazilian amazon ustate department report states federal police began investigating allegations foreign owned travel_company arranged fishing expeditions amazon region reality sex tours us european pedophiles year end investigation continuing coordination foreign law_enforcement officials another ustate department report states page newer trend arranged fishing expeditions amazon organized purpose child_sex_tourism europeand american recent reports fox abc world news helped light ecpat usa recently posted english webcam child_sex_tourism according federal bureau investigations estimate online given_time rooms offers internet users pay webcam sex performances found week investigation conducted warehouse amsterdam terre des hommes dutch action using computer model identified australia canada germany ghana india italy mauritius africa turkey united_kingdom united_states alleged online abusers based uk another traced computers us among webcam child_sex together terre des hommes netherlands created online petition pressure governments adopt proactive investigation policies order protect children webcam child_sex_tourism global response recent_years increase prosecution child_sex_tourism least countries jurisdiction allow citizens prosecuted specifically child_sexual abuse crimes committed whilst abroad another nations general could used prosecute citizens crimes child_sex_tourism trips may countries signed ratified optional sale children child_prostitution child_pornography deeply concerned athe widespread continuing practice sex_tourism arespecially vulnerable parties pass laws within territories practices punishable appropriate penalties thatake grave nature response cst non_governmental organizations ngos tourism_industry governments begun address issue world_tourism organization wto established task force combat wto ecpat end child_prostitution child_pornography trafficking children sexual purposes nordic tour_operators created global code conduct sexual_exploitation children travel_tourism travel_tourism april travel companies countries signed code enforcement activities us immigration customs enforcement ice participates investigating child_sex_tourists ice launched operation_predator leading arrest child_sexual abusers including outside united_states ice agents refuse comment means methods operation media reports suggested use undercover agents internet operations sophisticated technologies ice agents bangkok say however thathey often receive information local ngos foreigners thailand suspect engaging child_sexual abuse sometimes us based law_enforcement local departments officers inform known sex offenders traveling region cases local ice agents work thai police counterparts monitor movements fox sex laws thailand part civil society law law_enforcement united_kingdom uk police child exploitation online protection centre actively involved monitoring child_sex_tourists ando prosecute actively offenders well policing child_sex_tourism asia cambodia trafficking persons_report reports thathe sale virgin girls continues serious problem cambodiand significant number asiand foreign men primarily white travel cambodia engage child_sex_tourism cambodia law trafficking exploitation human persons contains legislation againsthe commercial_sexual exploitation children law focuses largely trafficking also addresses prostitution age consent cambodia law specifically define prostitution children estimated prostitutes vision child_sex_tourism prevention project china trafficking persons_report reports thathe_government china notake sufficient measures reduce demand forced labor commercial_sex acts child_sex_tourismus department state trafficking persons_report june indonesia trafficking persons_report reports child_sex_tourism prevalent urban_areas tourist_destinationsuch bali island indonesia recently islands indonesia like bali become known child_sex_tourism islands also destinations sex trafficking criminal_code indonesian citizen punished violating child protection act criminal_code whether inside indonesia outside child protect act general protecthe rights children specific sections provide sexual children one law states illegal use child personal commercial monetary gain one follow law punishment ten_years jail monetary fine million equivalento us korea south_korean men major drivers child_sex_tourism asia time korea times reported international symposium held talk strategies high numbers korean child_sex_tourists southeast_asia symposium conditions child youth sex_tourism korean men discussed issues concerning korean male child prostitutes across asia cambodiand philippines male korean tourists believed abuse situation poor cambodian children selling sexual favors order help families philippines report noted increasing_number koreans bought sex prostitutes philippine government urged korean governmento take firm action prostitutes particular buying sex children trafficking persons_report reports thathe men south_korea create demand child_sex_tourism surrounding countries_including southeast_asia south_pacific mongolia technology internet helped increase accessibility child_sex_tourism republic korea south_korean men arrange children philippines thailand sex korean institute criminology study published january shows south_korean men primary market child_sex_tourism southeast foreigners visiting southeast_asia south_koreans majority group driving demand child_prostitution across region article goes say report us_department state trafficking persons_report described south significant source demand child_sex_tourism southeast_asiand pacific islands hee jun head seoul based group campaigning sex trafficking claims visit brothel vietnam cambodia see written korean although south_korea legislation place prosecute child_sex offenders abroad report stated government prosecuted convicted korean sex_tourists past seven years mongolia trafficking persons_report reports south_koreand japanese tourists engage child_sex_tourism mongolia mongolian government implemented laws regarding child_prostitution criminal_code organized prostitution anyone age age sexual consent mongolia prostitution anyone age illegal sex person age illegal well withis law could lead three_years jail eighteen months community service rape also_considered illegal mongolia withe punishment two six years prison violations injury victims intensified philippines child_sex_tourism known serious problem philippines trafficking persons_report reports tourists coming northeast europe north_america engage sex children new technology like internet children form men countries get money sending pornographic images internet prostitution thailand governmental organizations organizations worked together shut brothels also tried increase awareness child_sex_tourism made attempts stop records children wereported medical_treatment injuries relating sexual abuse many children registered birth thailand allowing trafficked tother countries forced child labor including sexual_exploitation laos article states human_trafficking means recruitment moving transfer person within across national borders means deception threats use oforce debt bondage means using person forced labour prostitution pornography anything againsthe fine traditions nation various body organs person unlawful purposes mentioned acts committed children years age shall considered human_trafficking even_though deception threat use oforce debt bondage person engaging human_trafficking shall punished five_years fifteen years imprisonment shall fined law development protection women article states acts committed children years_old even_though deception threat force debt bondage trafficking shall regarded occurred individual withe offender offence mentioned whether providing assets vehicles offender provision shelter traces shall considered trafficking women children according ustate department report police corruption weak judicial sector population understanding court system anti trafficking law_enforcement remained problem government involvement trafficking persons north_america barbados noticeable action taken government barbados reduce demand commercial_sex acts though problem sex_tourism including child_sex_tourism department state trafficking persons_report june dominican republic child_sex_tourism current problem particularly coastal resort areas child_sex_tourists arriving yearound various_countries also reported_thathe current legislation gaps could interpretation application code protection rights children adolescents law crime using children adolescents paid sexual_activity certain modes production pornographic material seen criminal activities possession child_pornography cuba trafficking persons_report reports thathe_government cuba made known efforts reduce demand commercial_sex additionally reported_thathe government acknowledge child_sex_tourism problem recently banned children nightclubs according cuban government documents training provided tourism_industry identify report potential sex_tourists el_salvador one third sexually exploited children years age boys median age entering prostitution among children interviewed years worked average ofive days per week although nearly reported_thathey worked seven_days week recently problem increased especially due migration many children promises jobs abducted sento countries inorth_america foreigners neighboring countries victims salvadoran children rural_areas forced commercial_sexual exploitation urban_areas government el_salvador fully comply withe minimum standards trafficking making significant efforts reporting period government sustained anti trafficking law_enforcement efforts continued provide services children trafficked sexual_exploitation salvadoran government sustained anti trafficking prevention efforts reporting period government forged continued partnerships ngos international organizations foreign governments anti trafficking initiatives may government collaborated launch campaign aimed specifically increasing awareness commercial_sexual exploitation children reaching approximately children adults government included anti trafficking information training gives military forces prior deployment international missions jamaica trafficking persons_report reports ngos organizations local thathere child_sex_tourism problem near jamaica resort areas trinidad tobago according governments trinidad tobago reports child_sex_tourism south us_department state reported child_sex_tourism problem argentina especially border buenos_aires penal code specifically prohibit child_sex_tourism child_sex related hoping reduce child_sex_tourism governmental authorities passed law law seek closure brothels ngos reported effective brothels often tipped local police brazil us_department state reported child_sex_tourism remains serious problem particularly tourist areas brazil northeast child_sex_tourists come europe come united_states brazilian authorities directly involved sex_tourists instead allow ngos prosecute participating child_sex_tourism brazilian law newly introduced states submit child adolescent defined article children people younger years adolescents people prostitution sexual_exploitation punishable imprisonment four ten_years fine colombian criminal_code prohibits organizing facilitating sexual tourism provides penalties years imprisonment buthere reported convictions child_sex_tourists recent_years colombia legislation related control trafficking children particularly follow criminal_code however law istill pending approval code children adolescents includes rights children adolescents victims commercial_sexual exploitation ecuador child_sex_tourism occurs mostly urban_areas tourist_destinationsuch city galapagos_islands peru child_sex_tourism present iquitos de traffickers reportedly operate illegally certain regions governmental authority lacks although areas country known child_sex_tourism_destinations peruvian laws practice reported convictions child_sex_tourists government officials tourism service_providers child_sex_tourism conducted public awareness campaign issue reached outo tourism_industry raise awareness child_sex_tourism date businesses signed code conduct agreements nationwide uruguay government officials maintained efforts reach outo hotel workers broader tourism_sector raise awareness child_sex_tourism commercial_sexual exploitation children uruguay educational system continues include trafficking education high_schools extraterritorial jurisdiction growing number countries specific extraterritorial jurisdiction citizens homeland engage illicit sexual conduct foreign_country children ecpat reported countries extraterritorial child_sex legislation following list australia one first countries introduce laws provide jail terms citizens residents engage sexual_activity children foreign_countries laws contained crimes child_sex_tourism amendment came force july helping fight child_sex crimes abroad australian department oforeign_affairs trade travel bulletin law also makes offence encourage benefit profit activity activity children crime australian citizens permanent residents bodies corporate engage facilitate benefit sexual_activity children years age overseas offences carry penalties years imprisonment individuals fines companies new_zealand crimes amendment act offence new_zealand citizens residents engage sexual conduct activities child another_country url january swiss federal office police state swiss federal authorities stepped efforts fighting child_sex_tourism recent_years special unit dealing child_pornography offences closely numerous partner services home abroad since june online form available general_public report cases child_sex_tourism appropriate judicial criminal_code article territorial scope application offences minors abroad states code also applies person switzerland committed following offences abroad acts dependent persons art sexual acts minors payment art b sexual acts children art victim less years age sexual acts minors payment amended september states person carries sexual acts minor induces minor carry acts makes promises payment return liable sentence exceeding three_years monetary penalty development acts children states person engages sexual act child years age child commit activity involves child_sexual act liable sentence exceeding five_years monetary penalty act offence difference age persons involved three_years russian federation criminal_code states operation criminalaw respect persons committed offences outside boundaries russian federation citizens russian federation persons permanently residing russian federation committed outside russian federation crime againsthe interests guarded present code shall subjecto accordance withe present code unless decision foreign state court exists concerning crime respect persons federal act december amended criminal_code also adding laws regarding receiving sexual services minor amended article criminal_code receipt sexual services minor aged person reached age punishable hours compulsory work years forced labour years deprivation liberty period article sexual services understood mean sexual acts sexual nature condition performance monetary minor third_party promise minor third_party article amended federal act ofebruary states provided parts one twof article committed withe involvement prostitution persons years_old shall punishable deprivation liberty term three_years without deprivation righto offices engage definite activities term fifteen years restriction liberty term ofrom one_year two_years without israeli law israeli penal code chapter section states israeli shall apply foreign committed israeli citizen israel without exception cases relating chapter viii article x prostitution obscenity regarding b article x minors prostitution way trafficking section c article specific client person served act prostitution minor shall liable three_years imprisonment ofebruary section c process amendmento increase imprisonment three five_years law acts related child_prostitution child_pornography protection children person involved child_prostitution sells child pornographic products foreign children another_country purpose prostitution shall punished imprisonment labour fine japanese nationals commit crimes abroad shall punished withe penalty penal code singapore penal code section commercial_sex minor outside singapore states person citizen permanent resident singapore outside singapore would done singapore constitute offence section b shall guilty offence canada included criminal_code provisions allow arrest prosecution canadians canada offences committed foreign_countries related child_sex_tourism child_prostitution well child_sexual_exploitation acts child_pornography bills c c came force may july respectively convictions carry penalty years imprisonment hong_kong prevention child_pornography ordinance cap december introduced offences regard child_sex_tourism giving extraterritorial jurisdiction extraterritorial sexual offences listed new schedule crime ordinance cap makes illegal act committed child outside hong_kong child connections kong also offence make arrangement relating commission acts children advertise paper south_korea act protection children juveniles sexual abuse article punishment korean citizens commit korean citizen sex offense child juvenile outside territory republic korea article criminal acthe state shall tobtain criminal information relevant foreign_country offender according ecpat report progress needed regard extraterritorial jurisdiction concerning nationals sex children south_korean law applied definition child varying definitions create various laws applied invite lack cooperation lack uniformity enforcement multiple agencies united_kingdom sexual offences act enables united_kingdom british citizens residents commit sexual offences children overseas prosecuted england_wales northern_ireland similar provisions force scotland criminalaw consolidation scotland act offences carry penalties life imprisonment anyone found guilty placed sex offenders register two british citizens jail following trials based legislation barry mccloud andavid graham david graham sex_tourism law sky news may united_states protect act protect act april federal crime united_states us citizen permanent resident alien engage illicit sexual conduct foreign_country person age whether nothe us citizen permanent resident alien intended engage illicit sexual conduct prior going abroad purposes protect act illicit sexual conduct includes commercial_sex act foreign_country person age law defines commercial_sex act sex act account anything value given person age congressional passage protect act prove sex_tourists went abroad withe intent children something almost impossible demonstrate protect act shifted burden making liable act penalties doubled years prison european union union directive sexual abuse sexual_exploitation children child_pornography article jurisdiction coordination prosecution member take necessary measures establish jurisdiction offences referred articles offence committed whole part within territory b offender one nationals meaning member prosecute citizens child_sex offences committed abroad member_states law article references_externalinks global study sexual_exploitation children travel_tourism problem enforcement relating sex_tourism john_category child_prostitution tourism_category sex_tourism"},{"title":"China National Tourism Administration","description":"nativename a nativename r logo width logo caption seal national emblem of the people s republic of chinasvg seal width px seal caption emblem of the people s republic of china picture width picture caption formed preceding dissolved superseding jurisdiction headquarters beijing employees budget minister name minister pfo minister name minister pfo chief name shao qiwei chief position chairman chief name chief position agency type national parent agency state council of the people s republic of china state council child agency child agency keydocument website wwwcntagovcn footnotes map width map caption the chinational tourism administration cnta is the china chinese government authority responsible for the development of tourism in the country the cnta isubordinate to the state council of the people s republic of china state council its headquarters are in beijing with regional branches in various provinces cnta does not have the authority of a full department within the chinese governmento enforce regulations but in otherespects it acts as a ministry provincial cnta offices in eachinese province reporto the central office in beijing cnta has eighteen overseas offices called cnto chinational tourism offices that are charged with promoting tourism to china cnta in brief in europe there are cntoffices in london and paris cnta is unique as a tourism office in that it is also responsible for controlling the outflow of tourists from chinabroad agency structure the agency is organized into the following areas office comprehensive coordination department of policy and legal affairs department of tourism promotion and internationaliaison department of planning development and finance department of quality standardization and administration department of affairs on tourism of hong kong macao taiwan department of personnel party committee office of retired cadres directly administered agencieservicenter of cnta information center of cnta china tourism association formerly known as the chinational tourism institute china tourism news office china travel and tourism press china tourismanagement institute china tourismanagement institute subordinate associations chinassociation of travel services china tourist hotels association china tourism automobile and cruise association and chinassociation of tourism journals tourist attraction rating categories the organisation administers the five tourist attraction rating categories ranging from a lowesto aaaaa highest see also china travel service tourism in china list of tourism related institutions in china tourism related institutions in china iperu tourist information and assistance visitor center externalinks chinational tourism administration chinational tourism administration category tourism in china category government agencies of china category state council of the people s republic of china category establishments in china category government agenciestablished in category organizations based in beijing category tourism agencies","main_words":["nativename","nativename","r","logo","width","logo","caption","seal","national","people","republic","seal","width_px","seal","caption","people","republic","china","picture","width","picture","caption","formed","preceding_dissolved_superseding_jurisdiction","headquarters","beijing","employees_budget_minister_name_minister_pfo_minister","shao","qiwei","chief_position","chairman","chief_name_chief","position","agency_type","national","state","council","people","republic","china","state","council","child_agency_child","agency_keydocument_website","footnotes_map_width_map_caption","chinational","tourism","administration","cnta","china","chinese","government","authority","responsible","development","tourism","country","cnta","state","council","people","republic","china","state","council","headquarters","beijing","regional","branches","various","provinces","cnta","authority","full","department","within","chinese","governmento","enforce","regulations","acts","ministry","provincial","cnta","offices","province","reporto","central","office","beijing","cnta","eighteen","overseas","offices","called","chinational","tourism","offices","charged","promoting_tourism","china","cnta","brief","europe","london","paris","cnta","unique","tourism","office","also","responsible","controlling","tourists","agency","structure","agency","organized","following","areas","office","comprehensive","coordination","department","policy","legal","affairs","department","tourism_promotion","department","planning","development","finance","department","quality","standardization","administration","department","affairs","tourism","hong_kong","macao","taiwan","department","personnel","party","committee","office","retired","directly","administered","cnta","information_center","cnta","china","tourism_association","formerly_known","chinational","tourism","institute","china","office","china","travel_tourism","press","china","tourismanagement","institute","china","tourismanagement","institute","associations","travel","services","china","tourist","hotels","association","china","tourism","automobile","cruise","association","tourism","journals","tourist_attraction","rating","categories","organisation","five","tourist_attraction","rating","categories","ranging","highest","see_also","china","travel","service","tourism","china","list","tourism_related","institutions","china","tourism_related","institutions","china","tourist_information","assistance","visitor_center","externalinks","chinational","tourism","administration","chinational","tourism","administration","category_tourism","agencies","china_category","state","council","people","republic","agenciestablished","category_organizations_based","beijing","category_tourism","agencies"],"clean_bigrams":[["nativename","r"],["r","logo"],["logo","width"],["width","logo"],["logo","caption"],["caption","seal"],["seal","national"],["seal","width"],["width","px"],["px","seal"],["seal","caption"],["china","picture"],["picture","width"],["width","picture"],["picture","caption"],["caption","formed"],["formed","preceding"],["preceding","dissolved"],["dissolved","superseding"],["superseding","jurisdiction"],["jurisdiction","headquarters"],["headquarters","beijing"],["beijing","employees"],["employees","budget"],["budget","minister"],["minister","name"],["name","minister"],["minister","pfo"],["pfo","minister"],["minister","name"],["name","minister"],["minister","pfo"],["pfo","chief"],["chief","name"],["name","shao"],["shao","qiwei"],["qiwei","chief"],["chief","position"],["position","chairman"],["chairman","chief"],["chief","name"],["name","chief"],["chief","position"],["position","agency"],["agency","type"],["type","national"],["national","parent"],["parent","agency"],["agency","state"],["state","council"],["china","state"],["state","council"],["council","child"],["child","agency"],["agency","child"],["child","agency"],["agency","keydocument"],["keydocument","website"],["footnotes","map"],["map","width"],["width","map"],["map","caption"],["chinational","tourism"],["tourism","administration"],["administration","cnta"],["cnta","china"],["china","chinese"],["chinese","government"],["government","authority"],["authority","responsible"],["state","council"],["china","state"],["state","council"],["headquarters","beijing"],["regional","branches"],["various","provinces"],["provinces","cnta"],["full","department"],["department","within"],["chinese","governmento"],["governmento","enforce"],["enforce","regulations"],["ministry","provincial"],["provincial","cnta"],["cnta","offices"],["province","reporto"],["central","office"],["beijing","cnta"],["eighteen","overseas"],["overseas","offices"],["offices","called"],["chinational","tourism"],["tourism","offices"],["promoting","tourism"],["china","cnta"],["paris","cnta"],["tourism","office"],["also","responsible"],["agency","structure"],["following","areas"],["areas","office"],["office","comprehensive"],["comprehensive","coordination"],["coordination","department"],["legal","affairs"],["affairs","department"],["tourism","promotion"],["planning","development"],["finance","department"],["quality","standardization"],["administration","department"],["hong","kong"],["kong","macao"],["macao","taiwan"],["taiwan","department"],["personnel","party"],["party","committee"],["committee","office"],["directly","administered"],["cnta","information"],["information","center"],["cnta","china"],["china","tourism"],["tourism","association"],["association","formerly"],["formerly","known"],["chinational","tourism"],["tourism","institute"],["institute","china"],["china","tourism"],["tourism","news"],["news","office"],["office","china"],["china","travel"],["tourism","press"],["press","china"],["china","tourismanagement"],["tourismanagement","institute"],["institute","china"],["china","tourismanagement"],["tourismanagement","institute"],["travel","services"],["services","china"],["china","tourist"],["tourist","hotels"],["hotels","association"],["association","china"],["china","tourism"],["tourism","automobile"],["cruise","association"],["tourism","journals"],["journals","tourist"],["tourist","attraction"],["attraction","rating"],["rating","categories"],["five","tourist"],["tourist","attraction"],["attraction","rating"],["rating","categories"],["categories","ranging"],["highest","see"],["see","also"],["also","china"],["china","travel"],["travel","service"],["service","tourism"],["china","list"],["tourism","related"],["related","institutions"],["china","tourism"],["tourism","related"],["related","institutions"],["china","tourist"],["tourist","information"],["assistance","visitor"],["visitor","center"],["center","externalinks"],["externalinks","chinational"],["chinational","tourism"],["tourism","administration"],["administration","chinational"],["chinational","tourism"],["tourism","administration"],["administration","category"],["category","tourism"],["china","category"],["category","government"],["government","agencies"],["china","category"],["category","state"],["state","council"],["china","category"],["category","establishments"],["china","category"],["category","government"],["government","agenciestablished"],["category","organizations"],["organizations","based"],["beijing","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["nativename r","r logo","logo width","width logo","logo caption","caption seal","seal national","seal width","width px","px seal","seal caption","china picture","picture width","width picture","picture caption","caption formed","formed preceding","preceding dissolved","dissolved superseding","superseding jurisdiction","jurisdiction headquarters","headquarters beijing","beijing employees","employees budget","budget minister","minister name","name minister","minister pfo","pfo minister","minister name","name minister","minister pfo","pfo chief","chief name","name shao","shao qiwei","qiwei chief","chief position","position chairman","chairman chief","chief name","name chief","chief position","position agency","agency type","type national","national parent","parent agency","agency state","state council","china state","state council","council child","child agency","agency child","child agency","agency keydocument","keydocument website","footnotes map","map width","width map","map caption","chinational tourism","tourism administration","administration cnta","cnta china","china chinese","chinese government","government authority","authority responsible","state council","china state","state council","headquarters beijing","regional branches","various provinces","provinces cnta","full department","department within","chinese governmento","governmento enforce","enforce regulations","ministry provincial","provincial cnta","cnta offices","province reporto","central office","beijing cnta","eighteen overseas","overseas offices","offices called","chinational tourism","tourism offices","promoting tourism","china cnta","paris cnta","tourism office","also responsible","agency structure","following areas","areas office","office comprehensive","comprehensive coordination","coordination department","legal affairs","affairs department","tourism promotion","planning development","finance department","quality standardization","administration department","hong kong","kong macao","macao taiwan","taiwan department","personnel party","party committee","committee office","directly administered","cnta information","information center","cnta china","china tourism","tourism association","association formerly","formerly known","chinational tourism","tourism institute","institute china","china tourism","tourism news","news office","office china","china travel","tourism press","press china","china tourismanagement","tourismanagement institute","institute china","china tourismanagement","tourismanagement institute","travel services","services china","china tourist","tourist hotels","hotels association","association china","china tourism","tourism automobile","cruise association","tourism journals","journals tourist","tourist attraction","attraction rating","rating categories","five tourist","tourist attraction","attraction rating","rating categories","categories ranging","highest see","see also","also china","china travel","travel service","service tourism","china list","tourism related","related institutions","china tourism","tourism related","related institutions","china tourist","tourist information","assistance visitor","visitor center","center externalinks","externalinks chinational","chinational tourism","tourism administration","administration chinational","chinational tourism","tourism administration","administration category","category tourism","china category","category government","government agencies","china category","category state","state council","china category","category establishments","china category","category government","government agenciestablished","category organizations","organizations based","beijing category","category tourism","tourism agencies"],"new_description":"nativename nativename r logo width logo caption seal national people republic seal width_px seal caption people republic china picture width picture caption formed preceding_dissolved_superseding_jurisdiction headquarters beijing employees_budget_minister_name_minister_pfo_minister name_minister_pfo_chief_name shao qiwei chief_position chairman chief_name_chief position agency_type national parent_agency state council people republic china state council child_agency_child agency_keydocument_website footnotes_map_width_map_caption chinational tourism administration cnta china chinese government authority responsible development tourism country cnta state council people republic china state council headquarters beijing regional branches various provinces cnta authority full department within chinese governmento enforce regulations acts ministry provincial cnta offices province reporto central office beijing cnta eighteen overseas offices called chinational tourism offices charged promoting_tourism china cnta brief europe london paris cnta unique tourism office also responsible controlling tourists agency structure agency organized following areas office comprehensive coordination department policy legal affairs department tourism_promotion department planning development finance department quality standardization administration department affairs tourism hong_kong macao taiwan department personnel party committee office retired directly administered cnta information_center cnta china tourism_association formerly_known chinational tourism institute china tourism_news office china travel_tourism press china tourismanagement institute china tourismanagement institute associations travel services china tourist hotels association china tourism automobile cruise association tourism journals tourist_attraction rating categories organisation five tourist_attraction rating categories ranging highest see_also china travel service tourism china list tourism_related institutions china tourism_related institutions china tourist_information assistance visitor_center externalinks chinational tourism administration chinational tourism administration category_tourism china_category_government agencies china_category state council people republic china_category_establishments china_category_government agenciestablished category_organizations_based beijing category_tourism agencies"},{"title":"Chris Haver","description":"christopher christerling haver is an american entrepreneur international businessmand adventure traveler with a background in commercial real estatechnology finance and internet startups he was the first american to climb and ski the seven summits beginning in and ending in early life chris haver was born on feb to joyce haver and ralphaver iin phoenix arizona rd generation phoenician chris haver is the grandson of ralphaveralph burgess haver an architecthat made a significant impact in phoenix withis affordable haver home tract housing developments and numerous commercial projectsuch as the north phoenix baptist church american express regional headquarters and the old phoenix city hall complex haver was an adventurous child from an early age athe age of two years he tried to scale a foot flagpole at a playground near his home as he grew up he took a significant interest in sports and went on to become an accomplished skier haver attended brophy college preparatory a prestigious all boys college preparatory in phoenix he graduated inotable accomplishmentseven summits while attending sdsu haver decided that he wanted to climb and ski the seven summits the tallest mountain on each of the seven continents before he was he first climbed mount everest in athe age of withe international goodwill expedition while on thexpedition he met mike mcdowell a founding partner of quark expeditions and other adventure travel enterprises he would gon to become one of haver s business associates and a close friend aftereturning from theverestrip haver broke both of his ankles while jumping off an foot cliff atonto natural bridge outside of payson arizona he was aiming for a deepond but missed and landed on a rock after sustaining two compound fractures haverequired multiple surgeries and years of physical therapy haveresumed his quest for the seven summits in by climbing and skiing mount mckinley inorth america in early he tackled africa s mount kilimanjaro later that year he conquered mount elbrus in european russiaustralia s mount kosciuszko and antarctica s mount massif mount vinson massif where he sustained frostbite one of his big toes he finished the quest in january in argentina on mount aconcaguapproximately two weekshy of his th birthday becoming the first american to accomplish the featrip to titanic in haver planned to join an expedition to the shipwreck of the rms titanic with deep ocean exploration when rms titanic heard of the trip the company wreck of the rms titanic litigation and controversy obtained a court order that banned haver and any other party from visiting the site in haver joinedeep ocean expeditions and other parties in a suit against rmst for salvager and possession rights while haver and the others lost in federal courthe case moved onto the th circuit appellate court where the judge ruled in their favor the decision was appealed once again when the case was presented to the usupreme courthe decision from the appellate court stood if the case had gone to trial chief justice sandra day o connor would have had to recuse herself due to her friendship withaver after the case haver joinedoe on an expedition to the shipwreck with mike mcdowell and a pilot where they had lunch on the bow of the ship in all they spent hours diving and photographing the site throughouthe course of litigating andiving the titanic haver became friends with film director andocumentarian james cameron haver went on to foundeep ocean one doo with mike mcdowell a company that aimed to bring the benefits of deep sea exploration to the public in doo worked with cameron s documentary film company to televise and host a live feed with cameron and the boys and girls clubs of america chris hosted thevent in phoenix while cameron was on a support shipositionedirectly above the titanic relationship with gregorio fuentes haver met gregorio fuentes considered by some to be the influence for ernest hemingway s the old mand the sea with a few of his business associates in cohimar cuba in after the group traded stories for a few hours haver and fuentes formed a quick friendship haver made it a pointo see fuentes and his grandson any time he was in cuba until his last visit in before fuentes death in famed radio personality paul harvey did a segment on hishow the rest of the story whichronicled chris and his friends finding and meetingregorio career america s cup after graduating from college haver began working with knight and carver a company that owned a marina in mission bay san diego mission bay of san diego in haver formed the mission bay organizing committee mboc to develop facilities for the and america s cup sailing races in san diego because none of the international teams had returned his phone calls or faxes haver snuck into the challenger of records dinner hosted by louis vitton athe san diego yacht club to meethe teams face to face after mingling during the cocktail hour he sat withe japanese team because it was the only open seat the reception dinner after meeting the team s pr director emily miura he realized she was the daughter of yuichiro miura the twof them had initially corresponded while haver was preparing to climb everest yuirchiro was the first person to ski mt everest in and became the first person to climb and ski all of the seven summits the japanese america s cup team became the firsto join up with knight carver and the mboc ultimately haver hosted six of the nine teams including france japan sweden australia spain and the usa in mission bay he was responsible for the complete design construction and facilities management for each of the teams haver hosted in the and america s cup races to present in haver expanded his privatequity group to include investments in software technology finance and real estate both in the united states and abroad since the mid s he has been a founding partner and or principal in companies many of which are still operating today real estate development haver has developed real estate both residential and commercial in the us and abroad under a number of different banners haver homes hhdc haver homes development corporation developed land in british columbia canadand eastern europe haver williams currently holds real estate assets in the us current business ventures haver williams haver homes h w energy solutions llc meridian working capital sun arms ezbetscom past business ventures dynamicampaign llcdk group cool water springs hhdc pet assure cdk group llcharitable activity private reliefforts haver coordinated one of the largest private humanitarian relieffort during the russian recession of thearly s in thend the group delivered nearly tons ofood and medicine vian antonov an airplane the grouprovided valuable supplies and resources to the people of moscow references externalinks haver williams deep ocean one broadcast haver homes profile rms titanic v haver proceedings category births category living people category adventure travel category american mountain climbers category american male ski mountaineers category american businesspeople","main_words":["christopher","haver","american","entrepreneur","international","background","commercial","real","finance","internet","startups","first_american","climb","ski","seven","summits","beginning","ending","early_life","chris","haver","born","feb","joyce","haver","iin","phoenix_arizona","generation","chris","haver","grandson","haver","made","significant","impact","phoenix","withis","affordable","haver","home","housing","developments","numerous","commercial","north","phoenix","baptist","church","american_express","regional","headquarters","old","phoenix","city_hall","complex","haver","adventurous","child","early","age","athe_age","two_years","tried","scale","foot","playground","near","home","grew","took","significant","interest","sports","went","become","accomplished","haver","attended","college","preparatory","prestigious","boys","college","preparatory","phoenix","graduated","summits","attending","haver","decided","wanted","climb","ski","seven","summits","tallest","mountain","seven","continents","first","climbed","mount","everest","athe_age","withe","international","goodwill","expedition","thexpedition","met","mike","mcdowell","founding","partner","expeditions","adventure_travel","enterprises","would","gon","become_one","haver","business","associates","close","friend","haver","broke","jumping","foot","cliff","natural","bridge","outside","arizona","aiming","missed","landed","rock","sustaining","two","compound","multiple","surgeries","years","physical","therapy","quest","seven","summits","climbing","skiing","mount","mckinley","inorth_america","early","africa","mount","kilimanjaro","later","year","mount","european","mount","antarctica","mount","mount","sustained","one","big","finished","quest","january","argentina","mount","two","th","birthday","becoming","first_american","accomplish","titanic","haver","planned","join","expedition","rms","titanic","deep","ocean","exploration","rms","titanic","heard","trip","company","rms","titanic","controversy","obtained","court","order","banned","haver","party","visiting","site","haver","ocean","expeditions","parties","suit","possession","rights","haver","others","lost","federal","courthe","case","moved","onto","th","circuit","appellate","court","judge","ruled","favor","decision","appealed","case","presented","courthe","decision","appellate","court","stood","case","gone","trial","chief","justice","sandra","day","connor","would","due","friendship","case","haver","expedition","mike","mcdowell","pilot","lunch","bow","ship","spent","hours","diving","site","throughouthe","course","titanic","haver","became","friends","film","director","james","cameron","haver","went","ocean","one","doo","mike","mcdowell","company","aimed","bring","benefits","deep","sea","exploration","public","doo","worked","cameron","documentary_film","company","host","live","feed","cameron","boys","girls","clubs","america","chris","hosted","thevent","phoenix","cameron","support","titanic","relationship","fuentes","haver","met","fuentes","considered","influence","ernest","hemingway","old","mand","sea","business","associates","cuba","group","traded","stories","hours","haver","fuentes","formed","quick","friendship","haver","made","pointo","see","fuentes","grandson","time","cuba","last","visit","fuentes","death","famed","radio","personality","paul","harvey","segment","rest","story","chris","friends","finding","career","america","cup","college","haver","began","working","knight","company","owned","marina","mission","bay","san_diego","mission","bay","san_diego","haver","formed","mission","bay","organizing","committee","develop","facilities","america","cup","sailing","races","san_diego","none","international","teams","returned","phone","calls","haver","records","dinner","hosted","louis","athe","san_diego","yacht","club","meethe","teams","face","face","cocktail","hour","sat","withe","japanese","team","open","seat","reception","dinner","meeting","team","director","emily","realized","daughter","twof","initially","haver","preparing","climb","everest","first_person","ski","everest","became","first_person","climb","ski","seven","summits","japanese","america","cup","team","became","firsto","join","knight","ultimately","haver","hosted","six","nine","teams","including","france","japan","sweden","australia","spain","usa","mission","bay","responsible","complete","design","construction","facilities","management","teams","haver","hosted","america","cup","races","present","haver","expanded","privatequity","group","include","investments","software","technology","finance","real_estate","united_states","abroad","since","mid","founding","partner","principal","companies","many","still","operating","today","real_estate","development","haver","developed","real_estate","residential","commercial","us","abroad","number","different","haver","homes","haver","homes","development_corporation","developed","land","british_columbia","canadand","eastern_europe","haver","williams","currently","holds","real_estate","assets","us","current","business","ventures","haver","williams","haver","homes","h","w","energy","solutions","llc","working","capital","sun","arms","past","business","ventures","group","cool","water","springs","pet","group","activity","private","haver","coordinated","one","largest","private","humanitarian","russian","recession","group","delivered","nearly","tons","ofood","medicine","vian","airplane","valuable","supplies","resources","people","moscow","references_externalinks","haver","williams","deep","ocean","one","broadcast","haver","homes","profile","rms","titanic","v","haver","proceedings","american","mountain","climbers","category_american","male","ski","mountaineers","category_american","businesspeople"],"clean_bigrams":[["american","entrepreneur"],["entrepreneur","international"],["adventure","traveler"],["commercial","real"],["internet","startups"],["first","american"],["seven","summits"],["summits","beginning"],["early","life"],["life","chris"],["chris","haver"],["joyce","haver"],["iin","phoenix"],["phoenix","arizona"],["chris","haver"],["haver","made"],["significant","impact"],["phoenix","withis"],["withis","affordable"],["affordable","haver"],["haver","home"],["housing","developments"],["numerous","commercial"],["north","phoenix"],["phoenix","baptist"],["baptist","church"],["church","american"],["american","express"],["express","regional"],["regional","headquarters"],["old","phoenix"],["phoenix","city"],["city","hall"],["hall","complex"],["complex","haver"],["adventurous","child"],["early","age"],["age","athe"],["athe","age"],["two","years"],["playground","near"],["significant","interest"],["haver","attended"],["college","preparatory"],["boys","college"],["college","preparatory"],["haver","decided"],["seven","summits"],["tallest","mountain"],["seven","continents"],["first","climbed"],["climbed","mount"],["mount","everest"],["athe","age"],["withe","international"],["international","goodwill"],["goodwill","expedition"],["met","mike"],["mike","mcdowell"],["founding","partner"],["adventure","travel"],["travel","enterprises"],["would","gon"],["become","one"],["business","associates"],["close","friend"],["haver","broke"],["foot","cliff"],["natural","bridge"],["bridge","outside"],["sustaining","two"],["two","compound"],["multiple","surgeries"],["physical","therapy"],["seven","summits"],["skiing","mount"],["mount","mckinley"],["mckinley","inorth"],["inorth","america"],["mount","kilimanjaro"],["kilimanjaro","later"],["th","birthday"],["birthday","becoming"],["first","american"],["titanic","haver"],["haver","planned"],["rms","titanic"],["deep","ocean"],["ocean","exploration"],["rms","titanic"],["titanic","heard"],["rms","titanic"],["controversy","obtained"],["court","order"],["banned","haver"],["ocean","expeditions"],["possession","rights"],["others","lost"],["federal","courthe"],["courthe","case"],["case","moved"],["moved","onto"],["th","circuit"],["circuit","appellate"],["appellate","court"],["judge","ruled"],["courthe","decision"],["appellate","court"],["court","stood"],["trial","chief"],["chief","justice"],["justice","sandra"],["sandra","day"],["connor","would"],["case","haver"],["mike","mcdowell"],["spent","hours"],["hours","diving"],["site","throughouthe"],["throughouthe","course"],["titanic","haver"],["haver","became"],["became","friends"],["film","director"],["james","cameron"],["cameron","haver"],["haver","went"],["ocean","one"],["one","doo"],["mike","mcdowell"],["deep","sea"],["sea","exploration"],["doo","worked"],["documentary","film"],["film","company"],["live","feed"],["girls","clubs"],["america","chris"],["chris","hosted"],["hosted","thevent"],["titanic","relationship"],["fuentes","haver"],["haver","met"],["fuentes","considered"],["ernest","hemingway"],["old","mand"],["business","associates"],["group","traded"],["traded","stories"],["hours","haver"],["fuentes","formed"],["quick","friendship"],["friendship","haver"],["haver","made"],["pointo","see"],["see","fuentes"],["last","visit"],["fuentes","death"],["famed","radio"],["radio","personality"],["personality","paul"],["paul","harvey"],["friends","finding"],["career","america"],["college","haver"],["haver","began"],["began","working"],["mission","bay"],["bay","san"],["san","diego"],["diego","mission"],["mission","bay"],["bay","san"],["san","diego"],["haver","formed"],["mission","bay"],["bay","organizing"],["organizing","committee"],["develop","facilities"],["cup","sailing"],["sailing","races"],["san","diego"],["international","teams"],["phone","calls"],["records","dinner"],["dinner","hosted"],["athe","san"],["san","diego"],["diego","yacht"],["yacht","club"],["meethe","teams"],["teams","face"],["cocktail","hour"],["sat","withe"],["withe","japanese"],["japanese","team"],["open","seat"],["reception","dinner"],["director","emily"],["climb","everest"],["first","person"],["first","person"],["seven","summits"],["japanese","america"],["cup","team"],["team","became"],["firsto","join"],["ultimately","haver"],["haver","hosted"],["hosted","six"],["nine","teams"],["teams","including"],["including","france"],["france","japan"],["japan","sweden"],["sweden","australia"],["australia","spain"],["mission","bay"],["complete","design"],["design","construction"],["facilities","management"],["teams","haver"],["haver","hosted"],["cup","races"],["haver","expanded"],["privatequity","group"],["include","investments"],["software","technology"],["technology","finance"],["real","estate"],["united","states"],["abroad","since"],["founding","partner"],["companies","many"],["still","operating"],["operating","today"],["today","real"],["real","estate"],["estate","development"],["development","haver"],["developed","real"],["real","estate"],["haver","homes"],["haver","homes"],["homes","development"],["development","corporation"],["corporation","developed"],["developed","land"],["british","columbia"],["columbia","canadand"],["canadand","eastern"],["eastern","europe"],["europe","haver"],["haver","williams"],["williams","currently"],["currently","holds"],["holds","real"],["real","estate"],["estate","assets"],["us","current"],["current","business"],["business","ventures"],["ventures","haver"],["haver","williams"],["williams","haver"],["haver","homes"],["homes","h"],["h","w"],["w","energy"],["energy","solutions"],["solutions","llc"],["working","capital"],["capital","sun"],["sun","arms"],["past","business"],["business","ventures"],["group","cool"],["cool","water"],["water","springs"],["activity","private"],["haver","coordinated"],["coordinated","one"],["largest","private"],["private","humanitarian"],["russian","recession"],["group","delivered"],["delivered","nearly"],["nearly","tons"],["tons","ofood"],["medicine","vian"],["valuable","supplies"],["moscow","references"],["references","externalinks"],["externalinks","haver"],["haver","williams"],["williams","deep"],["deep","ocean"],["ocean","one"],["one","broadcast"],["broadcast","haver"],["haver","homes"],["homes","profile"],["profile","rms"],["rms","titanic"],["titanic","v"],["v","haver"],["haver","proceedings"],["proceedings","category"],["category","births"],["births","category"],["category","living"],["living","people"],["people","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","american"],["american","mountain"],["mountain","climbers"],["climbers","category"],["category","american"],["american","male"],["male","ski"],["ski","mountaineers"],["mountaineers","category"],["category","american"],["american","businesspeople"]],"all_collocations":["american entrepreneur","entrepreneur international","adventure traveler","commercial real","internet startups","first american","seven summits","summits beginning","early life","life chris","chris haver","joyce haver","iin phoenix","phoenix arizona","chris haver","haver made","significant impact","phoenix withis","withis affordable","affordable haver","haver home","housing developments","numerous commercial","north phoenix","phoenix baptist","baptist church","church american","american express","express regional","regional headquarters","old phoenix","phoenix city","city hall","hall complex","complex haver","adventurous child","early age","age athe","athe age","two years","playground near","significant interest","haver attended","college preparatory","boys college","college preparatory","haver decided","seven summits","tallest mountain","seven continents","first climbed","climbed mount","mount everest","athe age","withe international","international goodwill","goodwill expedition","met mike","mike mcdowell","founding partner","adventure travel","travel enterprises","would gon","become one","business associates","close friend","haver broke","foot cliff","natural bridge","bridge outside","sustaining two","two compound","multiple surgeries","physical therapy","seven summits","skiing mount","mount mckinley","mckinley inorth","inorth america","mount kilimanjaro","kilimanjaro later","th birthday","birthday becoming","first american","titanic haver","haver planned","rms titanic","deep ocean","ocean exploration","rms titanic","titanic heard","rms titanic","controversy obtained","court order","banned haver","ocean expeditions","possession rights","others lost","federal courthe","courthe case","case moved","moved onto","th circuit","circuit appellate","appellate court","judge ruled","courthe decision","appellate court","court stood","trial chief","chief justice","justice sandra","sandra day","connor would","case haver","mike mcdowell","spent hours","hours diving","site throughouthe","throughouthe course","titanic haver","haver became","became friends","film director","james cameron","cameron haver","haver went","ocean one","one doo","mike mcdowell","deep sea","sea exploration","doo worked","documentary film","film company","live feed","girls clubs","america chris","chris hosted","hosted thevent","titanic relationship","fuentes haver","haver met","fuentes considered","ernest hemingway","old mand","business associates","group traded","traded stories","hours haver","fuentes formed","quick friendship","friendship haver","haver made","pointo see","see fuentes","last visit","fuentes death","famed radio","radio personality","personality paul","paul harvey","friends finding","career america","college haver","haver began","began working","mission bay","bay san","san diego","diego mission","mission bay","bay san","san diego","haver formed","mission bay","bay organizing","organizing committee","develop facilities","cup sailing","sailing races","san diego","international teams","phone calls","records dinner","dinner hosted","athe san","san diego","diego yacht","yacht club","meethe teams","teams face","cocktail hour","sat withe","withe japanese","japanese team","open seat","reception dinner","director emily","climb everest","first person","first person","seven summits","japanese america","cup team","team became","firsto join","ultimately haver","haver hosted","hosted six","nine teams","teams including","including france","france japan","japan sweden","sweden australia","australia spain","mission bay","complete design","design construction","facilities management","teams haver","haver hosted","cup races","haver expanded","privatequity group","include investments","software technology","technology finance","real estate","united states","abroad since","founding partner","companies many","still operating","operating today","today real","real estate","estate development","development haver","developed real","real estate","haver homes","haver homes","homes development","development corporation","corporation developed","developed land","british columbia","columbia canadand","canadand eastern","eastern europe","europe haver","haver williams","williams currently","currently holds","holds real","real estate","estate assets","us current","current business","business ventures","ventures haver","haver williams","williams haver","haver homes","homes h","h w","w energy","energy solutions","solutions llc","working capital","capital sun","sun arms","past business","business ventures","group cool","cool water","water springs","activity private","haver coordinated","coordinated one","largest private","private humanitarian","russian recession","group delivered","delivered nearly","nearly tons","tons ofood","medicine vian","valuable supplies","moscow references","references externalinks","externalinks haver","haver williams","williams deep","deep ocean","ocean one","one broadcast","broadcast haver","haver homes","homes profile","profile rms","rms titanic","titanic v","v haver","haver proceedings","proceedings category","category births","births category","category living","living people","people category","category adventure","adventure travel","travel category","category american","american mountain","mountain climbers","climbers category","category american","american male","male ski","ski mountaineers","mountaineers category","category american","american businesspeople"],"new_description":"christopher haver american entrepreneur international adventure_traveler background commercial real finance internet startups first_american climb ski seven summits beginning ending early_life chris haver born feb joyce haver iin phoenix_arizona generation chris haver grandson haver made significant impact phoenix withis affordable haver home housing developments numerous commercial north phoenix baptist church american_express regional headquarters old phoenix city_hall complex haver adventurous child early age athe_age two_years tried scale foot playground near home grew took significant interest sports went become accomplished haver attended college preparatory prestigious boys college preparatory phoenix graduated summits attending haver decided wanted climb ski seven summits tallest mountain seven continents first climbed mount everest athe_age withe international goodwill expedition thexpedition met mike mcdowell founding partner expeditions adventure_travel enterprises would gon become_one haver business associates close friend haver broke jumping foot cliff natural bridge outside arizona aiming missed landed rock sustaining two compound multiple surgeries years physical therapy quest seven summits climbing skiing mount mckinley inorth_america early africa mount kilimanjaro later year mount european mount antarctica mount mount sustained one big finished quest january argentina mount two th birthday becoming first_american accomplish titanic haver planned join expedition rms titanic deep ocean exploration rms titanic heard trip company rms titanic controversy obtained court order banned haver party visiting site haver ocean expeditions parties suit possession rights haver others lost federal courthe case moved onto th circuit appellate court judge ruled favor decision appealed case presented courthe decision appellate court stood case gone trial chief justice sandra day connor would due friendship case haver expedition mike mcdowell pilot lunch bow ship spent hours diving site throughouthe course titanic haver became friends film director james cameron haver went ocean one doo mike mcdowell company aimed bring benefits deep sea exploration public doo worked cameron documentary_film company host live feed cameron boys girls clubs america chris hosted thevent phoenix cameron support titanic relationship fuentes haver met fuentes considered influence ernest hemingway old mand sea business associates cuba group traded stories hours haver fuentes formed quick friendship haver made pointo see fuentes grandson time cuba last visit fuentes death famed radio personality paul harvey segment rest story chris friends finding career america cup college haver began working knight company owned marina mission bay san_diego mission bay san_diego haver formed mission bay organizing committee develop facilities america cup sailing races san_diego none international teams returned phone calls haver records dinner hosted louis athe san_diego yacht club meethe teams face face cocktail hour sat withe japanese team open seat reception dinner meeting team director emily realized daughter twof initially haver preparing climb everest first_person ski everest became first_person climb ski seven summits japanese america cup team became firsto join knight ultimately haver hosted six nine teams including france japan sweden australia spain usa mission bay responsible complete design construction facilities management teams haver hosted america cup races present haver expanded privatequity group include investments software technology finance real_estate united_states abroad since mid founding partner principal companies many still operating today real_estate development haver developed real_estate residential commercial us abroad number different haver homes haver homes development_corporation developed land british_columbia canadand eastern_europe haver williams currently holds real_estate assets us current business ventures haver williams haver homes h w energy solutions llc working capital sun arms past business ventures group cool water springs pet group activity private haver coordinated one largest private humanitarian russian recession thearly_thend group delivered nearly tons ofood medicine vian airplane valuable supplies resources people moscow references_externalinks haver williams deep ocean one broadcast haver homes profile rms titanic v haver proceedings category_births_category_living_people_category_adventure_travel_category american mountain climbers category_american male ski mountaineers category_american businesspeople"},{"title":"Christian tourism","description":"file s opedro jpg thumb px st peter s basilica in vatican city is a major christian tourist site christian tourism is a subcategory of religious tourism which is geared towards christians as one of the largest branches of religious tourism it is estimated that seven percent of the world s christians about million people are on the move as pilgrims each year christian tourism refers to thentire industry of christian travel tourism and hospitality in recent years it has grown to include not only christians embarking individually or in groups on pilgrimage s and missionary travel but alson religion based cruises leisure fellowship vacations crusades rallies retreats monastery visits guestays and christian camps as well as visiting christian tourist attractions christian pilgrimageach year millions of christians travel on pilgrimage the most popular pilgrim destination is the abraham ic holy land or jerusalem israel most christian pilgrimage destinations are based on the roman catholic faith especially shrines devoted to apparitions of the blessed virgin mary such as basilica of our lady of guadalupe in mexico sanctuary of our lady ofatima in portugal and sanctuary of our lady of lourdes in france there is also interest in pilgrimage to st peter s basilicathe holy see vatican in rome the capital of the catholichurch roman catholichurch although no definitive study has been completed on christian tourism some segments of the industry have been measured according to the religious conference management association in more than million people attended religious meetings rcma members an increase of more than million from with million attendees the united methodist church experienced an increase of in volunteers in mission between with almost volunteers and with volunteers the christian camp and conference association states that more than eight million people are involved in ccca member camps and conferences including more than churcheshortermissions draw million participants annually christian attractions including sight sound theatre attracts visitors a year while the holy land experience and focus on the family welcome center each receives about guests annually recently launched christian attractions include the creation museum and billy graham library both of which arexpected to receive about visitors each year as well churches in the united states possess a travel program or travel ministry published articles cbs early show rest relaxation religion time magazine spirit and adventure usa today on a wing and a prayer the new york timest century religious traveleave the sackcloth at home the los angeles times more agencies are serving the flock religious travelers companiesee increased interest in spiritual tours rocky mountainews in the footsteps of the faithful yahoo business traveler keeping the faith washington post seeking answers with field trips in faith nassau guardian bahamas religious niche being targeted by bahamas ministry references externalinks category types of tourism category christian culture tourism category religious tourism","main_words":["file","jpg","thumb","px","st_peter","basilica","vatican_city","major","christian","tourist","site","christian","tourism","subcategory","religious_tourism","geared_towards","christians","one","largest","branches","religious_tourism","estimated","seven","percent","world","christians","million_people","move","pilgrims","year","christian","tourism","refers","thentire","industry","christian","travel_tourism","hospitality","recent_years","grown","include","christians","individually","groups","pilgrimage","missionary","travel","alson","religion","based","cruises","leisure","fellowship","vacations","rallies","retreats","monastery","visits","christian","camps","well","visiting","christian","tourist_attractions","christian","year","millions","christians","travel","pilgrimage","popular","pilgrim","destination","abraham","holy_land","jerusalem","israel","christian","pilgrimage","destinations","based","roman","catholic","faith","especially","shrines","devoted","virgin","mary","basilica","lady","guadalupe","mexico","sanctuary","lady","portugal","sanctuary","lady","lourdes","france","also","interest","pilgrimage","st_peter","holy","see","rome","capital","catholichurch","roman","catholichurch","although","definitive","study","completed","christian","tourism","segments","industry","measured","according","religious","conference","management","association","million_people","attended","religious","meetings","members","increase","million","million","attendees","united","church","experienced","increase","volunteers","mission","almost","volunteers","volunteers","christian","camp","conference","association","states","eight","million_people","involved","member","camps","conferences","including","draw","million","participants","annually","christian","attractions","including","sight","sound","theatre","attracts","visitors","year","holy_land","experience","focus","family","welcome","center","receives","guests","annually","recently","launched","christian","attractions","include","creation","museum","billy","graham","library","arexpected","receive","visitors","year","well","churches","united_states","possess","travel","program","travel","ministry","published","articles","cbs","early","show","rest","relaxation","religion","time","magazine","spirit","adventure","usa_today","wing","prayer","new_york","century","religious","home","los_angeles","times","agencies","serving","flock","religious","travelers","increased","interest","spiritual","tours","rocky","footsteps","faithful","yahoo","keeping","faith","washington_post","seeking","answers","field","trips","faith","nassau","guardian","bahamas","religious","niche","targeted","bahamas","ministry","references_externalinks","category_types","tourism_category","christian","culture_tourism","category","religious_tourism"],"clean_bigrams":[["jpg","thumb"],["thumb","px"],["px","st"],["st","peter"],["vatican","city"],["major","christian"],["christian","tourist"],["tourist","site"],["site","christian"],["christian","tourism"],["religious","tourism"],["geared","towards"],["towards","christians"],["largest","branches"],["religious","tourism"],["seven","percent"],["million","people"],["year","christian"],["christian","tourism"],["tourism","refers"],["thentire","industry"],["christian","travel"],["travel","tourism"],["recent","years"],["missionary","travel"],["alson","religion"],["religion","based"],["based","cruises"],["cruises","leisure"],["leisure","fellowship"],["fellowship","vacations"],["rallies","retreats"],["retreats","monastery"],["monastery","visits"],["christian","camps"],["visiting","christian"],["christian","tourist"],["tourist","attractions"],["attractions","christian"],["year","millions"],["christians","travel"],["popular","pilgrim"],["pilgrim","destination"],["holy","land"],["jerusalem","israel"],["christian","pilgrimage"],["pilgrimage","destinations"],["roman","catholic"],["catholic","faith"],["faith","especially"],["especially","shrines"],["shrines","devoted"],["virgin","mary"],["mexico","sanctuary"],["also","interest"],["st","peter"],["holy","see"],["see","vatican"],["catholichurch","roman"],["roman","catholichurch"],["catholichurch","although"],["definitive","study"],["christian","tourism"],["measured","according"],["religious","conference"],["conference","management"],["management","association"],["million","people"],["people","attended"],["attended","religious"],["religious","meetings"],["million","attendees"],["church","experienced"],["almost","volunteers"],["christian","camp"],["conference","association"],["association","states"],["eight","million"],["million","people"],["member","camps"],["conferences","including"],["draw","million"],["million","participants"],["participants","annually"],["annually","christian"],["christian","attractions"],["attractions","including"],["including","sight"],["sight","sound"],["sound","theatre"],["theatre","attracts"],["attracts","visitors"],["holy","land"],["land","experience"],["family","welcome"],["welcome","center"],["guests","annually"],["annually","recently"],["recently","launched"],["launched","christian"],["christian","attractions"],["attractions","include"],["creation","museum"],["billy","graham"],["graham","library"],["well","churches"],["united","states"],["states","possess"],["travel","program"],["travel","ministry"],["ministry","published"],["published","articles"],["articles","cbs"],["cbs","early"],["early","show"],["show","rest"],["rest","relaxation"],["relaxation","religion"],["religion","time"],["time","magazine"],["magazine","spirit"],["adventure","usa"],["usa","today"],["new","york"],["century","religious"],["los","angeles"],["angeles","times"],["flock","religious"],["religious","travelers"],["increased","interest"],["spiritual","tours"],["tours","rocky"],["faithful","yahoo"],["yahoo","business"],["business","traveler"],["traveler","keeping"],["faith","washington"],["washington","post"],["post","seeking"],["seeking","answers"],["field","trips"],["faith","nassau"],["nassau","guardian"],["guardian","bahamas"],["bahamas","religious"],["religious","niche"],["bahamas","ministry"],["ministry","references"],["references","externalinks"],["externalinks","category"],["category","types"],["tourism","category"],["category","christian"],["christian","culture"],["culture","tourism"],["tourism","category"],["category","religious"],["religious","tourism"]],"all_collocations":["px st","st peter","vatican city","major christian","christian tourist","tourist site","site christian","christian tourism","religious tourism","geared towards","towards christians","largest branches","religious tourism","seven percent","million people","year christian","christian tourism","tourism refers","thentire industry","christian travel","travel tourism","recent years","missionary travel","alson religion","religion based","based cruises","cruises leisure","leisure fellowship","fellowship vacations","rallies retreats","retreats monastery","monastery visits","christian camps","visiting christian","christian tourist","tourist attractions","attractions christian","year millions","christians travel","popular pilgrim","pilgrim destination","holy land","jerusalem israel","christian pilgrimage","pilgrimage destinations","roman catholic","catholic faith","faith especially","especially shrines","shrines devoted","virgin mary","mexico sanctuary","also interest","st peter","holy see","see vatican","catholichurch roman","roman catholichurch","catholichurch although","definitive study","christian tourism","measured according","religious conference","conference management","management association","million people","people attended","attended religious","religious meetings","million attendees","church experienced","almost volunteers","christian camp","conference association","association states","eight million","million people","member camps","conferences including","draw million","million participants","participants annually","annually christian","christian attractions","attractions including","including sight","sight sound","sound theatre","theatre attracts","attracts visitors","holy land","land experience","family welcome","welcome center","guests annually","annually recently","recently launched","launched christian","christian attractions","attractions include","creation museum","billy graham","graham library","well churches","united states","states possess","travel program","travel ministry","ministry published","published articles","articles cbs","cbs early","early show","show rest","rest relaxation","relaxation religion","religion time","time magazine","magazine spirit","adventure usa","usa today","new york","century religious","los angeles","angeles times","flock religious","religious travelers","increased interest","spiritual tours","tours rocky","faithful yahoo","yahoo business","business traveler","traveler keeping","faith washington","washington post","post seeking","seeking answers","field trips","faith nassau","nassau guardian","guardian bahamas","bahamas religious","religious niche","bahamas ministry","ministry references","references externalinks","externalinks category","category types","tourism category","category christian","christian culture","culture tourism","tourism category","category religious","religious tourism"],"new_description":"file jpg thumb px st_peter basilica vatican_city major christian tourist site christian tourism subcategory religious_tourism geared_towards christians one largest branches religious_tourism estimated seven percent world christians million_people move pilgrims year christian tourism refers thentire industry christian travel_tourism hospitality recent_years grown include christians individually groups pilgrimage missionary travel alson religion based cruises leisure fellowship vacations rallies retreats monastery visits christian camps well visiting christian tourist_attractions christian year millions christians travel pilgrimage popular pilgrim destination abraham holy_land jerusalem israel christian pilgrimage destinations based roman catholic faith especially shrines devoted virgin mary basilica lady guadalupe mexico sanctuary lady portugal sanctuary lady lourdes france also interest pilgrimage st_peter holy see vatican rome capital catholichurch roman catholichurch although definitive study completed christian tourism segments industry measured according religious conference management association million_people attended religious meetings members increase million million attendees united church experienced increase volunteers mission almost volunteers volunteers christian camp conference association states eight million_people involved member camps conferences including draw million participants annually christian attractions including sight sound theatre attracts visitors year holy_land experience focus family welcome center receives guests annually recently launched christian attractions include creation museum billy graham library arexpected receive visitors year well churches united_states possess travel program travel ministry published articles cbs early show rest relaxation religion time magazine spirit adventure usa_today wing prayer new_york century religious home los_angeles times agencies serving flock religious travelers increased interest spiritual tours rocky footsteps faithful yahoo business_traveler keeping faith washington_post seeking answers field trips faith nassau guardian bahamas religious niche targeted bahamas ministry references_externalinks category_types tourism_category christian culture_tourism category religious_tourism"},{"title":"Chuckwagon","description":"image chuckwagonjpg thumb px a historical recreation of a chuckwagon athe texas parks and wildlifexpo in austin a chuckwagon or chuck wagon is a type ofield kitchen covered wagon historically used for the storage and transportation of perishable food and cooking equipment on the prairie s of the united states and canada such wagons formed part of a wagon train of settlers or fed traveling workersuch as cowboy s or lumberjack logger s in modern times chuckwagons feature in certain cooking competitions and events chuckwagons are also used in a type of horse racing known as chuckwagon racing while some form of mobile kitchen s had existed for generations the invention of the chuckwagon is attributed to charles goodnight a texas rancher the father of the texas panhandle in the driftway article nation who introduced the concept in after the american civil war the beef market in texas expanded some cattlemen herded cattle in parts of the country that did not have railroads which would mean they needed to be fed on the road for months at a time goodnight modified the studebaker th century wagonmaker studebaker wagon a durable army surplus wagon to suithe needs of cattle drives in the united states cowboys driving cattle from texas to sell inew mexico he added a chuck box to the back of the wagon with drawers and shelves for storage space and a hinged lid to provide a flat cooking surface a water barrel was also attached to the wagon and canvas was hung underneath to carry firewood a wagon box was used to store cooking supplies and cowboys personal items chuckwagon food typically included easy to preserve items like bean s and curing food preservation salted meats coffee and sourdough biscuits food would also be gathered en route there was no fresh fruit vegetables or eggs available and meat was not fresh unless animal was injureduring the run and therefore had to be killed the meathey ate was greasy cloth wrapped bacon salt pork and beef usually dried salted or smoked the wagon was also stocked with a water barrel and a sling to kindle wood to heat and cook foodsharpe p camping it up article texas monthly on cattle drives in the united states cattle drives it was common for the cookie who ran the wagon to be second in authority only to the trailboss the cookie would often act as cook barber dentist and banker the term chuck wagon comes from chuck a slang term for food and not from the nickname for charles cook offs image mvi chuckwagon exhibitjpg px righthumb charles goodnight s chuckwagon was named in as the official state vehicle of texas exhibit is athe texas cowboy hall ofame in the fort worth stockyards in fort worth texas fort worthe american chuckwagon association is an organization dedicated to the preservation of theritage of the chuckwagon its members participate in chuckwagon cook off s throughout much of the us through thesevents the members educate the public on the history and traditionsurrounding the chuckwagon at a chuckwagon cook off each wagon is judged on the authenticity of the wagons must be in soundrivable condition with equipment and construction available in the late s contents of the chuck box including utensils must also match what would have been useduring thera wagons are also judged on the attire of their cooks a typical chuckwagon cookoff is composed ofood categories meat usually chicken fried steak beans pinto bread sourdough or yeast dessert usually peach cobbler and potatoes a team of judges evaluates thentries from each wagon giving each a score once scores are tabulated prizes are awarded to the top wagons one of the most famous chuckwagon cook offs is the lincoln county cowboy symposium held annually for some two decades this event attracts thousands to ruidoso new mexico ruidoso new mexico among the few chuckwagon cook offs east of the mississippi river takes place during saddleup each february in pigeon forge tennessee held just outside great smoky mountains national park saddleup also features a cowboy symphony and cowboy church services over a four day period the academy of western artists presents annual award for outstanding chuckwagon cooking as well as honors in other fields relating to the culture of the american cowboy image chuckwagon races at calgary stampedejpg thumb right px the rangelanderby athe calgary stampede chuckwagon racing is an event at some rodeos mainly in western canada such as the calgary stampede chuckwagon races were held from until at cheyenne frontier days one of america s biggest rodeos there are a few professional chuckwagon racing circuits that operate inorth america withe premiere circuit being run by the world professional chuckwagon association wpca based in calgary alberta the western chuckwagon association out of grande prairie ab and canadian professional chuckwagon association out of saskatchewan a yearly chuckwagon racevent istill held in clinton arkansas chuckwagons are raced around a figureight barrel obstacle and the stove and tent poles within the wagon must not be losthe racing team also has from two to four outriders who load the stove and tent poles athe start and must finish the race withe chuckwagon many such races are held each year in western canadian cities and towns animal welfare chuckwagon racing is highlighted by animal welfarexperts as dangerous to the horses due to the unusually high risk of broken limbs and other bones horses die frequently as a result and animal welfare charities are trying to raise awareness abouthe sport in this light in july a horse died in the chuckwagon race on the opening night of the calgary stampede chuckwagon suppers file chuckwagon in girvin tx scn jpg px righthumb chuckwagon still used to prepare food at gatherings in pecos county texas pecos county texas image cooking in ashes dscn jpg px thumb right cooking in ashes tourists mostly in the summers can experience chuckwagon suppersometimes followed by liventertainment at locations across the western united statesee also covered wagon field kitchenotes externalinks american chuckwagon association lincoln county cowboy symposium category american cattlemen chuckwagon category american old west category cuisine of the western united states category types of restaurants category wagons category rodeo events fr chuckwagon chariot","main_words":["image","thumb","px","historical","recreation","chuckwagon","athe","texas","parks","austin","chuckwagon","chuck","wagon","type","kitchen","covered","wagon","historically","used","storage","transportation","food","cooking","equipment","prairie","united_states","canada","wagons","formed","part","wagon","train","settlers","fed","traveling","cowboy","modern_times","feature","certain","cooking","competitions","events","also_used","type","horse","racing","known","chuckwagon","racing","form","mobile","kitchen","existed","generations","invention","chuckwagon","attributed","charles","goodnight","texas","father","texas","article","nation","introduced","concept","american_civil_war","beef","market","texas","expanded","cattle","parts","country","railroads","would","mean","needed","fed","road","months","time","goodnight","modified","th_century","wagon","durable","army","surplus","wagon","needs","cattle","drives","united_states","cowboys","driving","cattle","texas","sell","inew_mexico","added","chuck","box","back","wagon","shelves","storage","space","provide","flat","cooking","surface","water","barrel","also","attached","wagon","canvas","hung","underneath","carry","firewood","wagon","box","used","store","cooking","supplies","cowboys","personal","items","chuckwagon","food","typically","included","easy","preserve","items","like","bean","curing","food","preservation","salted","meats","coffee","sourdough","biscuits","food","would_also","gathered","route","fresh","fruit","vegetables","eggs","available","meat","fresh","unless","animal","run","therefore","killed","ate","greasy","cloth","wrapped","bacon","salt","pork","beef","usually","dried","salted","smoked","wagon","also","stocked","water","barrel","kindle","wood","heat","cook","p","camping","article","texas","monthly","cattle","drives","united_states","cattle","drives","common","cookie","ran","wagon","second","authority","cookie","would","often","act","cook","barber","term","chuck","wagon","comes","chuck","slang_term","food","nickname","charles","cook","offs","image","chuckwagon","px","righthumb","charles","goodnight","chuckwagon","named","official","state","vehicle","texas","exhibit","athe","texas","cowboy","hall_ofame","fort_worth","fort_worth","texas","fort","american","chuckwagon","association","organization","dedicated","preservation","theritage","chuckwagon","members","participate","chuckwagon","cook","throughout","much","us","thesevents","members","educate","public","history","chuckwagon","chuckwagon","cook","wagon","judged","authenticity","wagons","must","condition","equipment","construction","available","late","contents","chuck","box","including","utensils","must_also","match","would","useduring","thera","wagons","also","judged","attire","cooks","typical","chuckwagon","composed","ofood","categories","meat","usually","chicken","fried","steak","beans","bread","sourdough","yeast","dessert","usually","potatoes","team","judges","wagon","giving","score","scores","prizes","awarded","top","wagons","one","famous","chuckwagon","cook","offs","lincoln","county","cowboy","symposium","held","annually","two","decades","event","attracts","thousands","new_mexico","new_mexico","among","chuckwagon","cook","offs","east","mississippi_river","takes_place","february","pigeon_forge_tennessee","held","outside","great","smoky","mountains","national_park","also","features","cowboy","cowboy","church","services","four","day","period","academy","western","artists","presents","annual","award","outstanding","chuckwagon","cooking","well","honors","fields","relating","culture","american","cowboy","image","chuckwagon","races","calgary","thumb","right","px","athe","calgary","stampede","chuckwagon","racing","event","mainly","western","canada","calgary","stampede","chuckwagon","races","held","frontier","days","one","america","biggest","professional","chuckwagon","racing","operate","inorth_america","withe","premiere","circuit","run","world","professional","chuckwagon","association","based","calgary","alberta","western","chuckwagon","association","grande","prairie","canadian","professional","chuckwagon","association","yearly","chuckwagon","istill","held","clinton","arkansas","around","barrel","obstacle","stove","tent","poles","within","wagon","must","losthe","racing","team","also","two","four","load","stove","tent","poles","athe_start","must","finish","race","withe","chuckwagon","many","races","held","year","western","canadian","cities","towns","animal_welfare","chuckwagon","racing","highlighted","animal","dangerous","horses","due","unusually","high","risk","broken","limbs","bones","horses","die","frequently","result","animal_welfare","charities","trying","raise","awareness","abouthe","sport","light","july","horse","died","chuckwagon","race","opening","night","calgary","stampede","chuckwagon","file","chuckwagon","jpg_px","righthumb","chuckwagon","still","used","prepare","food","gatherings","pecos","county","texas","pecos","county","texas","image","cooking","ashes","jpg_px_thumb","right","cooking","ashes","tourists","mostly","summers","experience","chuckwagon","followed","locations","across","western","united_statesee","also","covered","wagon","field","externalinks","american","chuckwagon","association","lincoln","county","cowboy","symposium","category_american","chuckwagon","category_american","old","west","category","cuisine","western","united_states","category_types","restaurants_category","wagons","category","rodeo","events","chuckwagon","chariot"],"clean_bigrams":[["thumb","px"],["historical","recreation"],["chuckwagon","athe"],["athe","texas"],["texas","parks"],["chuck","wagon"],["kitchen","covered"],["covered","wagon"],["wagon","historically"],["historically","used"],["cooking","equipment"],["united","states"],["wagons","formed"],["formed","part"],["wagon","train"],["fed","traveling"],["modern","times"],["certain","cooking"],["cooking","competitions"],["also","used"],["horse","racing"],["racing","known"],["chuckwagon","racing"],["mobile","kitchen"],["charles","goodnight"],["article","nation"],["american","civil"],["civil","war"],["beef","market"],["texas","expanded"],["would","mean"],["time","goodnight"],["goodnight","modified"],["th","century"],["durable","army"],["army","surplus"],["surplus","wagon"],["cattle","drives"],["united","states"],["states","cowboys"],["cowboys","driving"],["driving","cattle"],["sell","inew"],["inew","mexico"],["chuck","box"],["storage","space"],["flat","cooking"],["cooking","surface"],["water","barrel"],["also","attached"],["hung","underneath"],["carry","firewood"],["wagon","box"],["store","cooking"],["cooking","supplies"],["cowboys","personal"],["personal","items"],["items","chuckwagon"],["chuckwagon","food"],["food","typically"],["typically","included"],["included","easy"],["preserve","items"],["items","like"],["like","bean"],["curing","food"],["food","preservation"],["preservation","salted"],["salted","meats"],["meats","coffee"],["sourdough","biscuits"],["biscuits","food"],["food","would"],["would","also"],["fresh","fruit"],["fruit","vegetables"],["eggs","available"],["fresh","unless"],["unless","animal"],["greasy","cloth"],["cloth","wrapped"],["wrapped","bacon"],["bacon","salt"],["salt","pork"],["beef","usually"],["usually","dried"],["dried","salted"],["also","stocked"],["water","barrel"],["kindle","wood"],["p","camping"],["article","texas"],["texas","monthly"],["cattle","drives"],["united","states"],["states","cattle"],["cattle","drives"],["cookie","would"],["would","often"],["often","act"],["cook","barber"],["term","chuck"],["chuck","wagon"],["wagon","comes"],["slang","term"],["charles","cook"],["cook","offs"],["offs","image"],["image","chuckwagon"],["px","righthumb"],["righthumb","charles"],["charles","goodnight"],["official","state"],["state","vehicle"],["texas","exhibit"],["athe","texas"],["texas","cowboy"],["cowboy","hall"],["hall","ofame"],["fort","worth"],["fort","worth"],["worth","texas"],["texas","fort"],["american","chuckwagon"],["chuckwagon","association"],["organization","dedicated"],["members","participate"],["chuckwagon","cook"],["throughout","much"],["members","educate"],["chuckwagon","cook"],["wagons","must"],["construction","available"],["chuck","box"],["box","including"],["including","utensils"],["utensils","must"],["must","also"],["also","match"],["useduring","thera"],["thera","wagons"],["also","judged"],["typical","chuckwagon"],["composed","ofood"],["ofood","categories"],["categories","meat"],["meat","usually"],["usually","chicken"],["chicken","fried"],["fried","steak"],["steak","beans"],["bread","sourdough"],["yeast","dessert"],["dessert","usually"],["wagon","giving"],["top","wagons"],["wagons","one"],["famous","chuckwagon"],["chuckwagon","cook"],["cook","offs"],["lincoln","county"],["county","cowboy"],["cowboy","symposium"],["symposium","held"],["held","annually"],["two","decades"],["event","attracts"],["attracts","thousands"],["new","mexico"],["new","mexico"],["mexico","among"],["chuckwagon","cook"],["cook","offs"],["offs","east"],["mississippi","river"],["river","takes"],["takes","place"],["pigeon","forge"],["forge","tennessee"],["tennessee","held"],["outside","great"],["great","smoky"],["smoky","mountains"],["mountains","national"],["national","park"],["also","features"],["cowboy","church"],["church","services"],["four","day"],["day","period"],["western","artists"],["artists","presents"],["presents","annual"],["annual","award"],["outstanding","chuckwagon"],["chuckwagon","cooking"],["fields","relating"],["american","cowboy"],["cowboy","image"],["image","chuckwagon"],["chuckwagon","races"],["thumb","right"],["right","px"],["athe","calgary"],["calgary","stampede"],["stampede","chuckwagon"],["chuckwagon","racing"],["western","canada"],["calgary","stampede"],["stampede","chuckwagon"],["chuckwagon","races"],["frontier","days"],["days","one"],["professional","chuckwagon"],["chuckwagon","racing"],["operate","inorth"],["inorth","america"],["america","withe"],["withe","premiere"],["premiere","circuit"],["world","professional"],["professional","chuckwagon"],["chuckwagon","association"],["calgary","alberta"],["western","chuckwagon"],["chuckwagon","association"],["grande","prairie"],["canadian","professional"],["professional","chuckwagon"],["chuckwagon","association"],["yearly","chuckwagon"],["istill","held"],["clinton","arkansas"],["barrel","obstacle"],["tent","poles"],["poles","within"],["wagon","must"],["losthe","racing"],["racing","team"],["team","also"],["tent","poles"],["poles","athe"],["athe","start"],["must","finish"],["race","withe"],["withe","chuckwagon"],["chuckwagon","many"],["western","canadian"],["canadian","cities"],["towns","animal"],["animal","welfare"],["welfare","chuckwagon"],["chuckwagon","racing"],["horses","due"],["unusually","high"],["high","risk"],["broken","limbs"],["bones","horses"],["horses","die"],["die","frequently"],["animal","welfare"],["welfare","charities"],["raise","awareness"],["awareness","abouthe"],["abouthe","sport"],["horse","died"],["chuckwagon","race"],["opening","night"],["calgary","stampede"],["stampede","chuckwagon"],["file","chuckwagon"],["jpg","px"],["px","righthumb"],["righthumb","chuckwagon"],["chuckwagon","still"],["still","used"],["prepare","food"],["pecos","county"],["county","texas"],["texas","pecos"],["pecos","county"],["county","texas"],["texas","image"],["image","cooking"],["jpg","px"],["px","thumb"],["thumb","right"],["right","cooking"],["ashes","tourists"],["tourists","mostly"],["experience","chuckwagon"],["locations","across"],["western","united"],["united","statesee"],["statesee","also"],["also","covered"],["covered","wagon"],["wagon","field"],["externalinks","american"],["american","chuckwagon"],["chuckwagon","association"],["association","lincoln"],["lincoln","county"],["county","cowboy"],["cowboy","symposium"],["symposium","category"],["category","american"],["american","chuckwagon"],["chuckwagon","category"],["category","american"],["american","old"],["old","west"],["west","category"],["category","cuisine"],["western","united"],["united","states"],["states","category"],["category","types"],["restaurants","category"],["category","wagons"],["wagons","category"],["category","rodeo"],["rodeo","events"],["chuckwagon","chariot"]],"all_collocations":["historical recreation","chuckwagon athe","athe texas","texas parks","chuck wagon","kitchen covered","covered wagon","wagon historically","historically used","cooking equipment","united states","wagons formed","formed part","wagon train","fed traveling","modern times","certain cooking","cooking competitions","also used","horse racing","racing known","chuckwagon racing","mobile kitchen","charles goodnight","article nation","american civil","civil war","beef market","texas expanded","would mean","time goodnight","goodnight modified","th century","durable army","army surplus","surplus wagon","cattle drives","united states","states cowboys","cowboys driving","driving cattle","sell inew","inew mexico","chuck box","storage space","flat cooking","cooking surface","water barrel","also attached","hung underneath","carry firewood","wagon box","store cooking","cooking supplies","cowboys personal","personal items","items chuckwagon","chuckwagon food","food typically","typically included","included easy","preserve items","items like","like bean","curing food","food preservation","preservation salted","salted meats","meats coffee","sourdough biscuits","biscuits food","food would","would also","fresh fruit","fruit vegetables","eggs available","fresh unless","unless animal","greasy cloth","cloth wrapped","wrapped bacon","bacon salt","salt pork","beef usually","usually dried","dried salted","also stocked","water barrel","kindle wood","p camping","article texas","texas monthly","cattle drives","united states","states cattle","cattle drives","cookie would","would often","often act","cook barber","term chuck","chuck wagon","wagon comes","slang term","charles cook","cook offs","offs image","image chuckwagon","px righthumb","righthumb charles","charles goodnight","official state","state vehicle","texas exhibit","athe texas","texas cowboy","cowboy hall","hall ofame","fort worth","fort worth","worth texas","texas fort","american chuckwagon","chuckwagon association","organization dedicated","members participate","chuckwagon cook","throughout much","members educate","chuckwagon cook","wagons must","construction available","chuck box","box including","including utensils","utensils must","must also","also match","useduring thera","thera wagons","also judged","typical chuckwagon","composed ofood","ofood categories","categories meat","meat usually","usually chicken","chicken fried","fried steak","steak beans","bread sourdough","yeast dessert","dessert usually","wagon giving","top wagons","wagons one","famous chuckwagon","chuckwagon cook","cook offs","lincoln county","county cowboy","cowboy symposium","symposium held","held annually","two decades","event attracts","attracts thousands","new mexico","new mexico","mexico among","chuckwagon cook","cook offs","offs east","mississippi river","river takes","takes place","pigeon forge","forge tennessee","tennessee held","outside great","great smoky","smoky mountains","mountains national","national park","also features","cowboy church","church services","four day","day period","western artists","artists presents","presents annual","annual award","outstanding chuckwagon","chuckwagon cooking","fields relating","american cowboy","cowboy image","image chuckwagon","chuckwagon races","athe calgary","calgary stampede","stampede chuckwagon","chuckwagon racing","western canada","calgary stampede","stampede chuckwagon","chuckwagon races","frontier days","days one","professional chuckwagon","chuckwagon racing","operate inorth","inorth america","america withe","withe premiere","premiere circuit","world professional","professional chuckwagon","chuckwagon association","calgary alberta","western chuckwagon","chuckwagon association","grande prairie","canadian professional","professional chuckwagon","chuckwagon association","yearly chuckwagon","istill held","clinton arkansas","barrel obstacle","tent poles","poles within","wagon must","losthe racing","racing team","team also","tent poles","poles athe","athe start","must finish","race withe","withe chuckwagon","chuckwagon many","western canadian","canadian cities","towns animal","animal welfare","welfare chuckwagon","chuckwagon racing","horses due","unusually high","high risk","broken limbs","bones horses","horses die","die frequently","animal welfare","welfare charities","raise awareness","awareness abouthe","abouthe sport","horse died","chuckwagon race","opening night","calgary stampede","stampede chuckwagon","file chuckwagon","jpg px","px righthumb","righthumb chuckwagon","chuckwagon still","still used","prepare food","pecos county","county texas","texas pecos","pecos county","county texas","texas image","image cooking","jpg px","px thumb","right cooking","ashes tourists","tourists mostly","experience chuckwagon","locations across","western united","united statesee","statesee also","also covered","covered wagon","wagon field","externalinks american","american chuckwagon","chuckwagon association","association lincoln","lincoln county","county cowboy","cowboy symposium","symposium category","category american","american chuckwagon","chuckwagon category","category american","american old","old west","west category","category cuisine","western united","united states","states category","category types","restaurants category","category wagons","wagons category","category rodeo","rodeo events","chuckwagon chariot"],"new_description":"image thumb px historical recreation chuckwagon athe texas parks austin chuckwagon chuck wagon type kitchen covered wagon historically used storage transportation food cooking equipment prairie united_states canada wagons formed part wagon train settlers fed traveling cowboy modern_times feature certain cooking competitions events also_used type horse racing known chuckwagon racing form mobile kitchen existed generations invention chuckwagon attributed charles goodnight texas father texas article nation introduced concept american_civil_war beef market texas expanded cattle parts country railroads would mean needed fed road months time goodnight modified th_century wagon durable army surplus wagon needs cattle drives united_states cowboys driving cattle texas sell inew_mexico added chuck box back wagon shelves storage space provide flat cooking surface water barrel also attached wagon canvas hung underneath carry firewood wagon box used store cooking supplies cowboys personal items chuckwagon food typically included easy preserve items like bean curing food preservation salted meats coffee sourdough biscuits food would_also gathered route fresh fruit vegetables eggs available meat fresh unless animal run therefore killed ate greasy cloth wrapped bacon salt pork beef usually dried salted smoked wagon also stocked water barrel kindle wood heat cook p camping article texas monthly cattle drives united_states cattle drives common cookie ran wagon second authority cookie would often act cook barber term chuck wagon comes chuck slang_term food nickname charles cook offs image chuckwagon px righthumb charles goodnight chuckwagon named official state vehicle texas exhibit athe texas cowboy hall_ofame fort_worth fort_worth texas fort american chuckwagon association organization dedicated preservation theritage chuckwagon members participate chuckwagon cook throughout much us thesevents members educate public history chuckwagon chuckwagon cook wagon judged authenticity wagons must condition equipment construction available late contents chuck box including utensils must_also match would useduring thera wagons also judged attire cooks typical chuckwagon composed ofood categories meat usually chicken fried steak beans bread sourdough yeast dessert usually potatoes team judges wagon giving score scores prizes awarded top wagons one famous chuckwagon cook offs lincoln county cowboy symposium held annually two decades event attracts thousands new_mexico new_mexico among chuckwagon cook offs east mississippi_river takes_place february pigeon_forge_tennessee held outside great smoky mountains national_park also features cowboy cowboy church services four day period academy western artists presents annual award outstanding chuckwagon cooking well honors fields relating culture american cowboy image chuckwagon races calgary thumb right px athe calgary stampede chuckwagon racing event mainly western canada calgary stampede chuckwagon races held frontier days one america biggest professional chuckwagon racing operate inorth_america withe premiere circuit run world professional chuckwagon association based calgary alberta western chuckwagon association grande prairie canadian professional chuckwagon association yearly chuckwagon istill held clinton arkansas around barrel obstacle stove tent poles within wagon must losthe racing team also two four load stove tent poles athe_start must finish race withe chuckwagon many races held year western canadian cities towns animal_welfare chuckwagon racing highlighted animal dangerous horses due unusually high risk broken limbs bones horses die frequently result animal_welfare charities trying raise awareness abouthe sport light july horse died chuckwagon race opening night calgary stampede chuckwagon file chuckwagon jpg_px righthumb chuckwagon still used prepare food gatherings pecos county texas pecos county texas image cooking ashes jpg_px_thumb right cooking ashes tourists mostly summers experience chuckwagon followed locations across western united_statesee also covered wagon field externalinks american chuckwagon association lincoln county cowboy symposium category_american chuckwagon category_american old west category cuisine western united_states category_types restaurants_category wagons category rodeo events chuckwagon chariot"},{"title":"Churrascaria","description":"file churrasco cariocajpg thumb churrasco a churrascaria is a place where meat is cooked in churrasco style which translates roughly from the portuguese language portuguese for barbecue related terminology comes from the portuguese language a churrasqueiro isomebody who cooks churrasco style food in a churrascaria restaurant a churrasqueira is a barbecue grill used for thistyle of cooking distinctly a south american style rotisserie it owes its origins to the fireside roasts of the ga cho s of southern brazil traditionally from the pampa region centuries ago contemporary churrascarias in modern restaurants rod zio service is typically offered meat waiters come to the table with knives and a skewer on which are speared various kinds of meat be it beef pork filet mignon lamb and mutton lamb chicken duck ham with pineapple sausage fish or any other sort of local cut of meat a common cut of beef top sirloin cap is known as picanha in most parts of brazil the churrasco is roasted with charcoal in the south of brazil however mostly close to the borders of argentinand uruguay embers of wood are also used throughout portugal there are various located in towns cities and also by roadside onational highways while they offer the typical fare of barbecued chicken or beef they alsoffer chicken on rotisserie and a variety of other culinary dishesee also culinary arts references category types of restaurants category brazilian cuisine category portuguese cuisine category barbecue","main_words":["file","churrasco","thumb","churrasco","churrascaria","place","meat","cooked","churrasco","style","translates","roughly","portuguese_language","portuguese","barbecue","related","terminology","comes","portuguese_language","cooks","churrasco","style","food","churrascaria","restaurant","barbecue","grill","used","thistyle","cooking","distinctly","south_american","style","rotisserie","origins","cho","southern","brazil","traditionally","region","centuries","ago","contemporary","modern","restaurants","rod","zio","service","typically","offered","meat","waiters","come","table","knives","various","kinds","meat","beef","pork","lamb","mutton","lamb","chicken","duck","ham","pineapple","sausage","fish","sort","local","cut","meat","common","cut","beef","top","cap","known","parts","brazil","churrasco","roasted","charcoal","south","brazil","however","mostly","close","borders","argentinand","uruguay","wood","also_used","throughout","portugal","various","located","towns","cities","also","roadside","onational","highways","offer","typical","fare","chicken","beef","alsoffer","chicken","rotisserie","variety","culinary","also","culinary_arts","references_category","types","restaurants_category","brazilian","cuisine_category","portuguese","cuisine_category","barbecue"],"clean_bigrams":[["file","churrasco"],["thumb","churrasco"],["churrasco","style"],["translates","roughly"],["portuguese","language"],["language","portuguese"],["barbecue","related"],["related","terminology"],["terminology","comes"],["portuguese","language"],["cooks","churrasco"],["churrasco","style"],["style","food"],["churrascaria","restaurant"],["barbecue","grill"],["grill","used"],["cooking","distinctly"],["south","american"],["american","style"],["style","rotisserie"],["southern","brazil"],["brazil","traditionally"],["region","centuries"],["centuries","ago"],["ago","contemporary"],["modern","restaurants"],["restaurants","rod"],["rod","zio"],["zio","service"],["typically","offered"],["offered","meat"],["meat","waiters"],["waiters","come"],["various","kinds"],["beef","pork"],["mutton","lamb"],["lamb","chicken"],["chicken","duck"],["duck","ham"],["pineapple","sausage"],["sausage","fish"],["local","cut"],["common","cut"],["beef","top"],["brazil","however"],["however","mostly"],["mostly","close"],["argentinand","uruguay"],["also","used"],["used","throughout"],["throughout","portugal"],["various","located"],["towns","cities"],["roadside","onational"],["onational","highways"],["typical","fare"],["alsoffer","chicken"],["also","culinary"],["culinary","arts"],["arts","references"],["references","category"],["category","types"],["restaurants","category"],["category","brazilian"],["brazilian","cuisine"],["cuisine","category"],["category","portuguese"],["portuguese","cuisine"],["cuisine","category"],["category","barbecue"]],"all_collocations":["file churrasco","thumb churrasco","churrasco style","translates roughly","portuguese language","language portuguese","barbecue related","related terminology","terminology comes","portuguese language","cooks churrasco","churrasco style","style food","churrascaria restaurant","barbecue grill","grill used","cooking distinctly","south american","american style","style rotisserie","southern brazil","brazil traditionally","region centuries","centuries ago","ago contemporary","modern restaurants","restaurants rod","rod zio","zio service","typically offered","offered meat","meat waiters","waiters come","various kinds","beef pork","mutton lamb","lamb chicken","chicken duck","duck ham","pineapple sausage","sausage fish","local cut","common cut","beef top","brazil however","however mostly","mostly close","argentinand uruguay","also used","used throughout","throughout portugal","various located","towns cities","roadside onational","onational highways","typical fare","alsoffer chicken","also culinary","culinary arts","arts references","references category","category types","restaurants category","category brazilian","brazilian cuisine","cuisine category","category portuguese","portuguese cuisine","cuisine category","category barbecue"],"new_description":"file churrasco thumb churrasco churrascaria place meat cooked churrasco style translates roughly portuguese_language portuguese barbecue related terminology comes portuguese_language cooks churrasco style food churrascaria restaurant barbecue grill used thistyle cooking distinctly south_american style rotisserie origins cho southern brazil traditionally region centuries ago contemporary modern restaurants rod zio service typically offered meat waiters come table knives various kinds meat beef pork lamb mutton lamb chicken duck ham pineapple sausage fish sort local cut meat common cut beef top cap known parts brazil churrasco roasted charcoal south brazil however mostly close borders argentinand uruguay wood also_used throughout portugal various located towns cities also roadside onational highways offer typical fare chicken beef alsoffer chicken rotisserie variety culinary also culinary_arts references_category types restaurants_category brazilian cuisine_category portuguese cuisine_category barbecue"},{"title":"Cicerone","description":"cicerone is an old term for a guide one who conducts visitors and sightseers to museums galleries etc and explains matters of archaeological antiquarian historic or artistic interesthe word is presumably taken from cicero marcus tullius cicero as a type of learning and eloquence the oxford english dictionary finds examples of the usearlier in english languagenglish than italian language italian thearliest quotation being from joseph addison s dialogue on medals published posthumously it appears thathe word was first applied to learned antiquarians who show and explain to foreigners the antiquities and curiosities of the country quotation of in the new english dictionary see also bear leader guide museum docent category guides category tourism","main_words":["cicerone","old","term","guide","one","visitors","museums","galleries","etc","explains","matters","archaeological","historic","artistic","word","presumably","taken","marcus","type","learning","oxford_english_dictionary","finds","examples","english_languagenglish","italian","language","italian","thearliest","joseph","addison","dialogue","published","appears","thathe","word","first","applied","learned","show","explain","foreigners","antiquities","country","new","english_dictionary","see_also","bear","leader","guide","museum","category"],"clean_bigrams":[["old","term"],["guide","one"],["museums","galleries"],["galleries","etc"],["explains","matters"],["presumably","taken"],["oxford","english"],["english","dictionary"],["dictionary","finds"],["finds","examples"],["english","languagenglish"],["italian","language"],["language","italian"],["italian","thearliest"],["joseph","addison"],["appears","thathe"],["thathe","word"],["first","applied"],["new","english"],["english","dictionary"],["dictionary","see"],["see","also"],["also","bear"],["bear","leader"],["leader","guide"],["guide","museum"],["category","guides"],["guides","category"],["category","tourism"]],"all_collocations":["old term","guide one","museums galleries","galleries etc","explains matters","presumably taken","oxford english","english dictionary","dictionary finds","finds examples","english languagenglish","italian language","language italian","italian thearliest","joseph addison","appears thathe","thathe word","first applied","new english","english dictionary","dictionary see","see also","also bear","bear leader","leader guide","guide museum","category guides","guides category","category tourism"],"new_description":"cicerone old term guide one visitors museums galleries etc explains matters archaeological historic artistic word presumably taken marcus type learning oxford_english_dictionary finds examples english_languagenglish italian language italian thearliest joseph addison dialogue published appears thathe word first applied learned show explain foreigners antiquities country new english_dictionary see_also bear leader guide museum category guides_category_tourism"},{"title":"City Weekend","description":"city weekend china listings events and classifieds city weekend guide is a free bi weekly entertainment event and venue listing magazine based out of china news media china gateway its on linedition is both autonomous and complimentary to the print magazine city weekend is reader powered and sources most of its information directly from thexpat community city weekend is currently one of the highest circulation english magazines in chinavailable free how shanghai got its groove back china s formerly decadent window on the west is now its go gateway to the future map magazine and time out company time outhe magazine distinguishes itself by being one of the first privatenglish language publications in china it has been distributed since in beijing and in shanghai the magazine itself acts as a source of information for many in thexpat community cctv english channel rediscovering china staff rely on its reader powered website to access local communities and generateverything from national articles to factual news about local events venues and classified ads in china s two largest cities beijing and shanghai city weekend also publishes a variety ofree guides yearly including a bar and restaurant guide good for visitors better if you actually live in the city and the service directory a small english business and service phone book the magazine also producesupplements focusing on expat families parents kids as well ashanghai family and the real estate market home office city weekend is published by the swiss multinational publisheringier and its circulation is audited by bpa worldwide in city weekend launched an english language group buying platform called flashbuy the first one of its kind targeting english speakers in both beijing and shanghai city weekend is an entertainment and lifestyle guide in china founded in the magazine creates content related to dining nightlife arts culture health and wellness fashion and shopping local community news and travel in thenglish language city weekend ringiercom externalinks official website category establishments in china category biweekly magazines category chinese magazines category city guides category english language magazines category free magazines category listings magazines category local interest magazines category magazinestablished in category magazines published in shanghai","main_words":["city","weekend","china","listings","events","city","weekend","guide","free","weekly","entertainment","event","venue","listing","magazine","based","china","news","media","china","gateway","autonomous","complimentary","print","magazine","city","weekend","reader","powered","sources","information","directly","community","city","weekend","currently","one","highest","circulation","english","magazines","free","shanghai","got","groove","back","china","formerly","window","west","go","gateway","future","map","magazine_time","company","time","outhe","magazine","one","first","language","publications","china","distributed","since","beijing","shanghai","magazine","acts","source","information","many","community","english","channel","china","staff","rely","reader","powered","website","access","local_communities","national","articles","news","local","events","venues","classified","ads","china","two","largest","cities","beijing","shanghai","city","weekend","also","publishes","variety","ofree","guides","yearly","including","bar","restaurant_guide","good","visitors","better","actually","live","city","service","directory","small","english","business","service","phone","book","magazine","also","focusing","expat","families","parents","kids","well","family","real_estate","market","home","office","city","weekend","published","swiss","multinational","circulation","audited","worldwide","city","weekend","launched","english_language","group","buying","platform","called","first","one","kind","targeting","english","speakers","beijing","shanghai","city","weekend","entertainment","lifestyle","guide","china","founded","magazine","creates","content","related","dining","nightlife","arts","culture","health","wellness","fashion","shopping","local_community","news","travel","thenglish_language","city","weekend","externalinks_official_website_category_establishments","china_category","biweekly","magazines_category","chinese","magazines_category_city_guides","category_english_language_magazines","category_free_magazines","category","listings","magazines_category_local_interest_magazines","category_magazinestablished","category_magazines_published","shanghai"],"clean_bigrams":[["city","weekend"],["weekend","china"],["china","listings"],["listings","events"],["city","weekend"],["weekend","guide"],["weekly","entertainment"],["entertainment","event"],["venue","listing"],["listing","magazine"],["magazine","based"],["china","news"],["news","media"],["media","china"],["china","gateway"],["print","magazine"],["magazine","city"],["city","weekend"],["reader","powered"],["information","directly"],["community","city"],["city","weekend"],["currently","one"],["highest","circulation"],["circulation","english"],["english","magazines"],["shanghai","got"],["groove","back"],["back","china"],["go","gateway"],["future","map"],["map","magazine"],["company","time"],["time","outhe"],["outhe","magazine"],["language","publications"],["distributed","since"],["english","channel"],["china","staff"],["staff","rely"],["reader","powered"],["powered","website"],["access","local"],["local","communities"],["national","articles"],["local","events"],["events","venues"],["classified","ads"],["two","largest"],["largest","cities"],["cities","beijing"],["shanghai","city"],["city","weekend"],["weekend","also"],["also","publishes"],["variety","ofree"],["ofree","guides"],["guides","yearly"],["yearly","including"],["restaurant","guide"],["guide","good"],["visitors","better"],["actually","live"],["service","directory"],["small","english"],["english","business"],["service","phone"],["phone","book"],["magazine","also"],["expat","families"],["families","parents"],["parents","kids"],["real","estate"],["estate","market"],["market","home"],["home","office"],["office","city"],["city","weekend"],["swiss","multinational"],["city","weekend"],["weekend","launched"],["english","language"],["language","group"],["group","buying"],["buying","platform"],["platform","called"],["first","one"],["kind","targeting"],["targeting","english"],["english","speakers"],["shanghai","city"],["city","weekend"],["lifestyle","guide"],["china","founded"],["magazine","creates"],["creates","content"],["content","related"],["dining","nightlife"],["nightlife","arts"],["arts","culture"],["culture","health"],["wellness","fashion"],["shopping","local"],["local","community"],["community","news"],["thenglish","language"],["language","city"],["city","weekend"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["china","category"],["category","biweekly"],["biweekly","magazines"],["magazines","category"],["category","chinese"],["chinese","magazines"],["magazines","category"],["category","city"],["city","guides"],["guides","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","free"],["free","magazines"],["magazines","category"],["category","listings"],["listings","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"]],"all_collocations":["city weekend","weekend china","china listings","listings events","city weekend","weekend guide","weekly entertainment","entertainment event","venue listing","listing magazine","magazine based","china news","news media","media china","china gateway","print magazine","magazine city","city weekend","reader powered","information directly","community city","city weekend","currently one","highest circulation","circulation english","english magazines","shanghai got","groove back","back china","go gateway","future map","map magazine","company time","time outhe","outhe magazine","language publications","distributed since","english channel","china staff","staff rely","reader powered","powered website","access local","local communities","national articles","local events","events venues","classified ads","two largest","largest cities","cities beijing","shanghai city","city weekend","weekend also","also publishes","variety ofree","ofree guides","guides yearly","yearly including","restaurant guide","guide good","visitors better","actually live","service directory","small english","english business","service phone","phone book","magazine also","expat families","families parents","parents kids","real estate","estate market","market home","home office","office city","city weekend","swiss multinational","city weekend","weekend launched","english language","language group","group buying","buying platform","platform called","first one","kind targeting","targeting english","english speakers","shanghai city","city weekend","lifestyle guide","china founded","magazine creates","creates content","content related","dining nightlife","nightlife arts","arts culture","culture health","wellness fashion","shopping local","local community","community news","thenglish language","language city","city weekend","externalinks official","official website","website category","category establishments","china category","category biweekly","biweekly magazines","magazines category","category chinese","chinese magazines","magazines category","category city","city guides","guides category","category english","english language","language magazines","magazines category","category free","free magazines","magazines category","category listings","listings magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines published"],"new_description":"city weekend china listings events city weekend guide free weekly entertainment event venue listing magazine based china news media china gateway autonomous complimentary print magazine city weekend reader powered sources information directly community city weekend currently one highest circulation english magazines free shanghai got groove back china formerly window west go gateway future map magazine_time company time outhe magazine one first language publications china distributed since beijing shanghai magazine acts source information many community english channel china staff rely reader powered website access local_communities national articles news local events venues classified ads china two largest cities beijing shanghai city weekend also publishes variety ofree guides yearly including bar restaurant_guide good visitors better actually live city service directory small english business service phone book magazine also focusing expat families parents kids well family real_estate market home office city weekend published swiss multinational circulation audited worldwide city weekend launched english_language group buying platform called first one kind targeting english speakers beijing shanghai city weekend entertainment lifestyle guide china founded magazine creates content related dining nightlife arts culture health wellness fashion shopping local_community news travel thenglish_language city weekend externalinks_official_website_category_establishments china_category biweekly magazines_category chinese magazines_category_city_guides category_english_language_magazines category_free_magazines category listings magazines_category_local_interest_magazines category_magazinestablished category_magazines_published shanghai"},{"title":"Civil War Trails Program","description":"the civil war trails program founded by civil war trails inc of richmond virginia is a multi state heritage tourism initiative designed to draw connections between and encourage visitation to civil war sites efforts to increase visitation and signage have stepped up in recent years in preparation of the sesquicentennial of the american civil war civil war this includes and increased focus on lesser known sites withe addition of directional trailblazer signs for more than previously uninterpreted civil war sites in virginia maryland north carolinand west virginia tennessee joined the program in state participation the north carolina civil war trails program chapter includes more than sites this chapter was dedicated on the bentonville battlefield on march the main focus of the trails program is a driving tour of the key places of the carolinas campaign which culminated in the battle of bentonville it also includes the burnsidexpedition foster s raid among other key moments in the carolinas civil war history from the launch of its chapter in tennesseencouraged individual and community organizations to propose new sites for inclusion the statewide map in order to beligible for inclusion a proposed location must be as close as possible to where the civil war event happened and must havexisting parking for at leasthree cars and a bus externalinks official site category cultural tourism category american civil war sites category auto trails in the united states","main_words":["civil","war","trails","program","founded","civil_war","trails","inc","richmond","virginia","multi","state","heritage_tourism","initiative","designed","draw","connections","encourage","visitation","civil_war","sites","efforts","increase","visitation","signage","stepped","recent_years","preparation","american_civil_war","civil_war","includes","increased","focus","lesser","known","sites","withe","addition","trailblazer","signs","previously","civil_war","sites","virginia","maryland","north_carolinand","west_virginia","tennessee","joined","program","state","participation","north_carolina","civil_war","trails","program","chapter","includes","sites","chapter","dedicated","battlefield","march","main","focus","trails","program","driving","tour","key","places","carolinas","campaign","battle","also_includes","foster","raid","among","key","moments","carolinas","civil_war","history","launch","chapter","individual","community","organizations","propose","new","sites","inclusion","statewide","map","order","inclusion","proposed","location","must","close","possible","civil_war","event","happened","must","parking","cars","bus","externalinks_official","site_category","cultural_tourism","category_american","civil_war","sites","category","auto","trails","united_states"],"clean_bigrams":[["civil","war"],["war","trails"],["trails","program"],["program","founded"],["civil","war"],["war","trails"],["trails","inc"],["richmond","virginia"],["multi","state"],["state","heritage"],["heritage","tourism"],["tourism","initiative"],["initiative","designed"],["draw","connections"],["encourage","visitation"],["civil","war"],["war","sites"],["sites","efforts"],["increase","visitation"],["recent","years"],["american","civil"],["civil","war"],["war","civil"],["civil","war"],["increased","focus"],["lesser","known"],["known","sites"],["sites","withe"],["withe","addition"],["trailblazer","signs"],["civil","war"],["war","sites"],["virginia","maryland"],["maryland","north"],["north","carolinand"],["carolinand","west"],["west","virginia"],["virginia","tennessee"],["tennessee","joined"],["state","participation"],["north","carolina"],["carolina","civil"],["civil","war"],["war","trails"],["trails","program"],["program","chapter"],["chapter","includes"],["main","focus"],["trails","program"],["driving","tour"],["key","places"],["carolinas","campaign"],["also","includes"],["raid","among"],["key","moments"],["carolinas","civil"],["civil","war"],["war","history"],["community","organizations"],["propose","new"],["new","sites"],["statewide","map"],["proposed","location"],["location","must"],["civil","war"],["war","event"],["event","happened"],["bus","externalinks"],["externalinks","official"],["official","site"],["site","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","american"],["american","civil"],["civil","war"],["war","sites"],["sites","category"],["category","auto"],["auto","trails"],["united","states"]],"all_collocations":["civil war","war trails","trails program","program founded","civil war","war trails","trails inc","richmond virginia","multi state","state heritage","heritage tourism","tourism initiative","initiative designed","draw connections","encourage visitation","civil war","war sites","sites efforts","increase visitation","recent years","american civil","civil war","war civil","civil war","increased focus","lesser known","known sites","sites withe","withe addition","trailblazer signs","civil war","war sites","virginia maryland","maryland north","north carolinand","carolinand west","west virginia","virginia tennessee","tennessee joined","state participation","north carolina","carolina civil","civil war","war trails","trails program","program chapter","chapter includes","main focus","trails program","driving tour","key places","carolinas campaign","also includes","raid among","key moments","carolinas civil","civil war","war history","community organizations","propose new","new sites","statewide map","proposed location","location must","civil war","war event","event happened","bus externalinks","externalinks official","official site","site category","category cultural","cultural tourism","tourism category","category american","american civil","civil war","war sites","sites category","category auto","auto trails","united states"],"new_description":"civil war trails program founded civil_war trails inc richmond virginia multi state heritage_tourism initiative designed draw connections encourage visitation civil_war sites efforts increase visitation signage stepped recent_years preparation american_civil_war civil_war includes increased focus lesser known sites withe addition trailblazer signs previously civil_war sites virginia maryland north_carolinand west_virginia tennessee joined program state participation north_carolina civil_war trails program chapter includes sites chapter dedicated battlefield march main focus trails program driving tour key places carolinas campaign battle also_includes foster raid among key moments carolinas civil_war history launch chapter individual community organizations propose new sites inclusion statewide map order inclusion proposed location must close possible civil_war event happened must parking cars bus externalinks_official site_category cultural_tourism category_american civil_war sites category auto trails united_states"},{"title":"Clover Food Lab","description":"area served boston massachusetts boston brookline massachusetts brookline cambridge massachusetts cambridge burlington massachusetts burlington westford massachusetts westford key people ayr muir founderwanda reindorf cfo christopher anderson vp food vincenzo pileggi director of mobile operations r d chef megan pileggi director of hr development lucia jazayeri director of communications industry food industry food products fast food num employees may homepage clover food lab is a fast food chain founded in by mit material science graduate and harvard businesschool harvard mbayr muir which operates through food truck s and restaurants in cambridge massachusetts cambridge brookline massachusetts brookline and boston massachusetts united states the company serves a simple menu that changes day to day and withe seasons based on what is available from local food local farmers and includes a large mix of organic food organic ingredients the company s food and novel approach to business have been well reviewed in local and national press citationeeded the company began in september as one food truck serving the arearound the massachusetts institute of technology mit as ofall clover food lab had somemployees operating in locations including two cambridge restaurants harvard square and inman square and six food truckstationed near mit boston university boston south end boston south end neighborhood longwood medical area government center boston government center boston common dewey square and other locations in greater cambridgenvironmental vision the company was founded by ayr muir a graduate of mit in material science and harvard businesschool mba programuir a distant cousin of naturalist john muir has cited environmental motivations as a driving force behind the company s creation he wishes to shrink thecological footprint of the food industry by making fresh local sustainable agriculture sustainable vegetarian food as common and convenient as the fare at burger king or mcdonald s the company s food trucks are decommissioned and retrofitted cargo vehicles that use biodiesel recycled vegetable oil to help them run all of the company s utensils napkins and other items are compostable despite clover food lab s focus on local sustainable and vegetarian food muir consciously avoids brand management branding the company s food asuch fearing that none will eat it if we do file clover food lab harvard squarestaurant cambridge ma jpg thumb px clover food lab s restaurant in harvard square clover food lab s trucks and restaurants have minimalisminimalist somewhat industrial design and includelements that give them the look and feel of a laboratory the sides and walls are plain white menus are written on whiteboard s with black dry erase marker and the restaurants are brightly lit and have mostly stool seat stool seating the kitchen has a pop up quality as if the crew is here temporarily planning to relocatelsewhere staff enter customer orders and process credit andebit cards through an ipod touch system and give change from their money belt s instead of cash register s clover food lab s blt sandwich uses vegetarian bacon soy bacon and has been cited as the best blt sandwich in boston by mayor thomas menino the company was a winner of the food truck challenge a competition initiated by menino to bring healthy mobile food vending to boston whichas led to a rising trend in the city in the use ofood and coffee trucks clover food lab was named one of the top food trucks in the united states by the wall street journal and given the best of boston award for vegetarian food by the improper bostonian the company was one of several food truck services highlighted by the huffington post for its intense use of technology especially social media distinctive product and cult like following salmonella outbreak in july all clover locations were closed following a salmonella outbreak with at least confirmed cases of salmonella poisoning linked to clover the source of the salmonella outbreak was later attributed to a mexican poultry farm not clover pay what you want day typically held on the first day of operations of a new clover location pay what you want day allows the area to geto know the food and for the staff to work outheir pace in pay what you want day was experienced in central square cambridge central square withe opening of cloverhfi the restaurant continues operations for hours which maintains the tradition of the restaurant it replaced in clover food lab opened the doors to three new locations and one food truck all featuring pay what you want dayall proceeds made during the openings were donated to the food project see also don chow tacos kogi korean bbq list ofood trucks list of vegetariand vegan companies externalinks official website architect newspaper article harvard gazette article bostinno article harvard crimson article business journal article boston magazine article making of a mctopia fast company article questo become the vegetarian mcdonalds boston globe boston globe usa today category culture of boston category economy of boston category companies based in cambridge massachusetts category vegetarian companies and establishments category fast food chains of the united states category food trucks","main_words":["area","served","boston_massachusetts","boston","brookline","massachusetts","brookline","cambridge_massachusetts","cambridge","burlington","massachusetts","burlington","westford","massachusetts","westford","key_people","ayr","muir","cfo","christopher","anderson","food","director","mobile","operations","r","chef","megan","director","development","director","communications","industry","food_industry","food","products","fast_food","num_employees","may","homepage","clover_food","lab","fast_food","chain","founded","mit","material","science","graduate","harvard","businesschool","harvard","muir","operates","food_truck","restaurants","cambridge_massachusetts","cambridge","brookline","massachusetts","brookline","boston_massachusetts","united_states","company","serves","simple","menu","changes","day","day","withe","seasons","based","available","local_food","local","farmers","includes","large","mix","organic","food","organic","ingredients","company","food","novel","approach","business","well","reviewed","local","national","press","company","began","september","one","food_truck","serving","arearound","massachusetts","institute","technology","mit","clover_food","lab","operating","locations","including","two","cambridge","restaurants","harvard","square","square","six","food","near","mit","boston","university","boston","south","end","boston","south","end","neighborhood","medical","area","government","center","boston","government","center","boston","common","dewey","square","locations","greater","vision","company","founded","ayr","muir","graduate","mit","material","science","harvard","businesschool","distant","cousin","naturalist","john","muir","cited","environmental","motivations","driving","force","behind","company","creation","wishes","footprint","food_industry","making","fresh","local","sustainable","agriculture","sustainable","vegetarian","food","common","convenient","fare","burger_king","mcdonald","company","food_trucks","decommissioned","cargo","vehicles","use","vegetable","oil","help","run","company","utensils","items","despite","clover_food","lab","focus","local","sustainable","vegetarian","food","muir","consciously","brand","management","branding","company","food","asuch","fearing","none","eat","file","clover_food","lab","harvard","cambridge","jpg","thumb","px","clover_food","lab","restaurant","harvard","square","clover_food","lab","trucks","restaurants","somewhat","industrial","design","give","look","feel","laboratory","sides","walls","plain","white","menus","written","black","dry","marker","restaurants","lit","mostly","stool","seat","stool","seating","kitchen","pop","quality","crew","temporarily","planning","staff","enter","customer","orders","process","credit_cards","touch","system","give","change","money","belt","instead","cash","register","clover_food","lab","sandwich","uses","vegetarian","bacon","soy","bacon","cited","best","sandwich","boston","mayor","thomas","company","winner","food_truck","challenge","competition","initiated","bring","healthy","mobile_food","vending","boston","whichas","led","rising","trend","city","use","ofood","coffee","trucks","clover_food","lab","named","one","top","food_trucks","united_states","wall_street_journal","given","best","boston","award","vegetarian","food","company","one","several","food_truck","services","highlighted","huffington_post","intense","use","technology","especially","social_media","distinctive","product","cult","like","following","salmonella","outbreak","july","clover","locations","closed","following","salmonella","outbreak","least","confirmed","cases","salmonella","poisoning","linked","clover","source","salmonella","outbreak","later","attributed","mexican","poultry","farm","clover","pay","want","day","typically","held","first_day","operations","new","clover","location","pay","want","day","allows","area","geto","know","food","staff","work","outheir","pace","pay","want","day","experienced","central","square","cambridge","central","square","withe","opening","restaurant","continues","operations","hours","maintains","tradition","restaurant","replaced","clover_food","lab","opened","doors","three","new","locations","one","food_truck","featuring","pay","want","proceeds","made","openings","donated","food","project","see_also","chow_tacos","kogi","korean","bbq","list_ofood_trucks","list","vegetariand","vegan","companies","externalinks_official_website","architect","newspaper","article","harvard","gazette","article","article","harvard","article","business_journal","article","boston","magazine","article","making","fast","company","article","become","vegetarian","mcdonalds","boston_globe","boston_globe","usa_today","category_culture","boston","category_economy","boston","category_companies_based","vegetarian","companies","fast_food","chains","united_states","category_food","trucks"],"clean_bigrams":[["area","served"],["served","boston"],["boston","massachusetts"],["massachusetts","boston"],["boston","brookline"],["brookline","massachusetts"],["massachusetts","brookline"],["brookline","cambridge"],["cambridge","massachusetts"],["massachusetts","cambridge"],["cambridge","burlington"],["burlington","massachusetts"],["massachusetts","burlington"],["burlington","westford"],["westford","massachusetts"],["massachusetts","westford"],["westford","key"],["key","people"],["people","ayr"],["ayr","muir"],["cfo","christopher"],["christopher","anderson"],["mobile","operations"],["operations","r"],["chef","megan"],["communications","industry"],["industry","food"],["food","industry"],["industry","food"],["food","products"],["products","fast"],["fast","food"],["food","num"],["num","employees"],["employees","may"],["may","homepage"],["homepage","clover"],["clover","food"],["food","lab"],["fast","food"],["food","chain"],["chain","founded"],["mit","material"],["material","science"],["science","graduate"],["harvard","businesschool"],["businesschool","harvard"],["food","truck"],["cambridge","massachusetts"],["massachusetts","cambridge"],["cambridge","brookline"],["brookline","massachusetts"],["massachusetts","brookline"],["boston","massachusetts"],["massachusetts","united"],["united","states"],["company","serves"],["simple","menu"],["changes","day"],["withe","seasons"],["seasons","based"],["local","food"],["food","local"],["local","farmers"],["large","mix"],["organic","food"],["food","organic"],["organic","ingredients"],["novel","approach"],["well","reviewed"],["national","press"],["company","began"],["one","food"],["food","truck"],["truck","serving"],["massachusetts","institute"],["technology","mit"],["clover","food"],["food","lab"],["locations","including"],["including","two"],["two","cambridge"],["cambridge","restaurants"],["restaurants","harvard"],["harvard","square"],["six","food"],["near","mit"],["mit","boston"],["boston","university"],["university","boston"],["boston","south"],["south","end"],["end","boston"],["boston","south"],["south","end"],["end","neighborhood"],["medical","area"],["area","government"],["government","center"],["center","boston"],["boston","government"],["government","center"],["center","boston"],["boston","common"],["common","dewey"],["dewey","square"],["ayr","muir"],["mit","material"],["material","science"],["harvard","businesschool"],["distant","cousin"],["naturalist","john"],["john","muir"],["cited","environmental"],["environmental","motivations"],["driving","force"],["force","behind"],["food","industry"],["making","fresh"],["fresh","local"],["local","sustainable"],["sustainable","agriculture"],["agriculture","sustainable"],["sustainable","vegetarian"],["vegetarian","food"],["burger","king"],["food","trucks"],["cargo","vehicles"],["vegetable","oil"],["despite","clover"],["clover","food"],["food","lab"],["local","sustainable"],["sustainable","vegetarian"],["vegetarian","food"],["food","muir"],["muir","consciously"],["brand","management"],["management","branding"],["food","asuch"],["asuch","fearing"],["file","clover"],["clover","food"],["food","lab"],["lab","harvard"],["jpg","thumb"],["thumb","px"],["px","clover"],["clover","food"],["food","lab"],["harvard","square"],["square","clover"],["clover","food"],["food","lab"],["somewhat","industrial"],["industrial","design"],["plain","white"],["white","menus"],["black","dry"],["mostly","stool"],["stool","seat"],["seat","stool"],["stool","seating"],["temporarily","planning"],["staff","enter"],["enter","customer"],["customer","orders"],["process","credit"],["touch","system"],["give","change"],["money","belt"],["cash","register"],["clover","food"],["food","lab"],["sandwich","uses"],["uses","vegetarian"],["vegetarian","bacon"],["bacon","soy"],["soy","bacon"],["mayor","thomas"],["food","truck"],["truck","challenge"],["competition","initiated"],["bring","healthy"],["healthy","mobile"],["mobile","food"],["food","vending"],["boston","whichas"],["whichas","led"],["rising","trend"],["use","ofood"],["coffee","trucks"],["trucks","clover"],["clover","food"],["food","lab"],["named","one"],["top","food"],["food","trucks"],["united","states"],["wall","street"],["street","journal"],["boston","award"],["vegetarian","food"],["several","food"],["food","truck"],["truck","services"],["services","highlighted"],["huffington","post"],["intense","use"],["technology","especially"],["especially","social"],["social","media"],["media","distinctive"],["distinctive","product"],["cult","like"],["like","following"],["following","salmonella"],["salmonella","outbreak"],["clover","locations"],["closed","following"],["following","salmonella"],["salmonella","outbreak"],["least","confirmed"],["confirmed","cases"],["salmonella","poisoning"],["poisoning","linked"],["salmonella","outbreak"],["later","attributed"],["mexican","poultry"],["poultry","farm"],["clover","pay"],["want","day"],["day","typically"],["typically","held"],["first","day"],["new","clover"],["clover","location"],["location","pay"],["want","day"],["day","allows"],["geto","know"],["work","outheir"],["outheir","pace"],["want","day"],["central","square"],["square","cambridge"],["cambridge","central"],["central","square"],["square","withe"],["withe","opening"],["restaurant","continues"],["continues","operations"],["clover","food"],["food","lab"],["lab","opened"],["three","new"],["new","locations"],["one","food"],["food","truck"],["featuring","pay"],["proceeds","made"],["food","project"],["project","see"],["see","also"],["chow","tacos"],["tacos","kogi"],["kogi","korean"],["korean","bbq"],["bbq","list"],["list","ofood"],["ofood","trucks"],["trucks","list"],["vegetariand","vegan"],["vegan","companies"],["companies","externalinks"],["externalinks","official"],["official","website"],["website","architect"],["architect","newspaper"],["newspaper","article"],["article","harvard"],["harvard","gazette"],["gazette","article"],["article","harvard"],["article","business"],["business","journal"],["journal","article"],["article","boston"],["boston","magazine"],["magazine","article"],["article","making"],["fast","company"],["company","article"],["vegetarian","mcdonalds"],["mcdonalds","boston"],["boston","globe"],["globe","boston"],["boston","globe"],["globe","usa"],["usa","today"],["today","category"],["category","culture"],["boston","category"],["category","economy"],["boston","category"],["category","companies"],["companies","based"],["cambridge","massachusetts"],["massachusetts","category"],["category","vegetarian"],["vegetarian","companies"],["establishments","category"],["category","fast"],["fast","food"],["food","chains"],["united","states"],["states","category"],["category","food"],["food","trucks"]],"all_collocations":["area served","served boston","boston massachusetts","massachusetts boston","boston brookline","brookline massachusetts","massachusetts brookline","brookline cambridge","cambridge massachusetts","massachusetts cambridge","cambridge burlington","burlington massachusetts","massachusetts burlington","burlington westford","westford massachusetts","massachusetts westford","westford key","key people","people ayr","ayr muir","cfo christopher","christopher anderson","mobile operations","operations r","chef megan","communications industry","industry food","food industry","industry food","food products","products fast","fast food","food num","num employees","employees may","may homepage","homepage clover","clover food","food lab","fast food","food chain","chain founded","mit material","material science","science graduate","harvard businesschool","businesschool harvard","food truck","cambridge massachusetts","massachusetts cambridge","cambridge brookline","brookline massachusetts","massachusetts brookline","boston massachusetts","massachusetts united","united states","company serves","simple menu","changes day","withe seasons","seasons based","local food","food local","local farmers","large mix","organic food","food organic","organic ingredients","novel approach","well reviewed","national press","company began","one food","food truck","truck serving","massachusetts institute","technology mit","clover food","food lab","locations including","including two","two cambridge","cambridge restaurants","restaurants harvard","harvard square","six food","near mit","mit boston","boston university","university boston","boston south","south end","end boston","boston south","south end","end neighborhood","medical area","area government","government center","center boston","boston government","government center","center boston","boston common","common dewey","dewey square","ayr muir","mit material","material science","harvard businesschool","distant cousin","naturalist john","john muir","cited environmental","environmental motivations","driving force","force behind","food industry","making fresh","fresh local","local sustainable","sustainable agriculture","agriculture sustainable","sustainable vegetarian","vegetarian food","burger king","food trucks","cargo vehicles","vegetable oil","despite clover","clover food","food lab","local sustainable","sustainable vegetarian","vegetarian food","food muir","muir consciously","brand management","management branding","food asuch","asuch fearing","file clover","clover food","food lab","lab harvard","px clover","clover food","food lab","harvard square","square clover","clover food","food lab","somewhat industrial","industrial design","plain white","white menus","black dry","mostly stool","stool seat","seat stool","stool seating","temporarily planning","staff enter","enter customer","customer orders","process credit","touch system","give change","money belt","cash register","clover food","food lab","sandwich uses","uses vegetarian","vegetarian bacon","bacon soy","soy bacon","mayor thomas","food truck","truck challenge","competition initiated","bring healthy","healthy mobile","mobile food","food vending","boston whichas","whichas led","rising trend","use ofood","coffee trucks","trucks clover","clover food","food lab","named one","top food","food trucks","united states","wall street","street journal","boston award","vegetarian food","several food","food truck","truck services","services highlighted","huffington post","intense use","technology especially","especially social","social media","media distinctive","distinctive product","cult like","like following","following salmonella","salmonella outbreak","clover locations","closed following","following salmonella","salmonella outbreak","least confirmed","confirmed cases","salmonella poisoning","poisoning linked","salmonella outbreak","later attributed","mexican poultry","poultry farm","clover pay","want day","day typically","typically held","first day","new clover","clover location","location pay","want day","day allows","geto know","work outheir","outheir pace","want day","central square","square cambridge","cambridge central","central square","square withe","withe opening","restaurant continues","continues operations","clover food","food lab","lab opened","three new","new locations","one food","food truck","featuring pay","proceeds made","food project","project see","see also","chow tacos","tacos kogi","kogi korean","korean bbq","bbq list","list ofood","ofood trucks","trucks list","vegetariand vegan","vegan companies","companies externalinks","externalinks official","official website","website architect","architect newspaper","newspaper article","article harvard","harvard gazette","gazette article","article harvard","article business","business journal","journal article","article boston","boston magazine","magazine article","article making","fast company","company article","vegetarian mcdonalds","mcdonalds boston","boston globe","globe boston","boston globe","globe usa","usa today","today category","category culture","boston category","category economy","boston category","category companies","companies based","cambridge massachusetts","massachusetts category","category vegetarian","vegetarian companies","establishments category","category fast","fast food","food chains","united states","states category","category food","food trucks"],"new_description":"area served boston_massachusetts boston brookline massachusetts brookline cambridge_massachusetts cambridge burlington massachusetts burlington westford massachusetts westford key_people ayr muir cfo christopher anderson food director mobile operations r chef megan director development director communications industry food_industry food products fast_food num_employees may homepage clover_food lab fast_food chain founded mit material science graduate harvard businesschool harvard muir operates food_truck restaurants cambridge_massachusetts cambridge brookline massachusetts brookline boston_massachusetts united_states company serves simple menu changes day day withe seasons based available local_food local farmers includes large mix organic food organic ingredients company food novel approach business well reviewed local national press company began september one food_truck serving arearound massachusetts institute technology mit clover_food lab operating locations including two cambridge restaurants harvard square square six food near mit boston university boston south end boston south end neighborhood medical area government center boston government center boston common dewey square locations greater vision company founded ayr muir graduate mit material science harvard businesschool distant cousin naturalist john muir cited environmental motivations driving force behind company creation wishes footprint food_industry making fresh local sustainable agriculture sustainable vegetarian food common convenient fare burger_king mcdonald company food_trucks decommissioned cargo vehicles use vegetable oil help run company utensils items despite clover_food lab focus local sustainable vegetarian food muir consciously brand management branding company food asuch fearing none eat file clover_food lab harvard cambridge jpg thumb px clover_food lab restaurant harvard square clover_food lab trucks restaurants somewhat industrial design give look feel laboratory sides walls plain white menus written black dry marker restaurants lit mostly stool seat stool seating kitchen pop quality crew temporarily planning staff enter customer orders process credit_cards touch system give change money belt instead cash register clover_food lab sandwich uses vegetarian bacon soy bacon cited best sandwich boston mayor thomas company winner food_truck challenge competition initiated bring healthy mobile_food vending boston whichas led rising trend city use ofood coffee trucks clover_food lab named one top food_trucks united_states wall_street_journal given best boston award vegetarian food company one several food_truck services highlighted huffington_post intense use technology especially social_media distinctive product cult like following salmonella outbreak july clover locations closed following salmonella outbreak least confirmed cases salmonella poisoning linked clover source salmonella outbreak later attributed mexican poultry farm clover pay want day typically held first_day operations new clover location pay want day allows area geto know food staff work outheir pace pay want day experienced central square cambridge central square withe opening restaurant continues operations hours maintains tradition restaurant replaced clover_food lab opened doors three new locations one food_truck featuring pay want proceeds made openings donated food project see_also chow_tacos kogi korean bbq list_ofood_trucks list vegetariand vegan companies externalinks_official_website architect newspaper article harvard gazette article article harvard article business_journal article boston magazine article making fast company article become vegetarian mcdonalds boston_globe boston_globe usa_today category_culture boston category_economy boston category_companies_based cambridge_massachusetts_category vegetarian companies establishments_category fast_food chains united_states category_food trucks"},{"title":"Club drug","description":"filecstasy monogramjpg thumb right px a selection of mdma pills which are oftenicknamed ecstasy or e club drugs also called rave drugs or party drugs are a loosely defined category of recreational drug s which are associated with disco th ques in the s and nightclub s dance club s electronic dance music parties and rave s in the s to the s erowid reference unlike many other categoriesuch as opiate s which arestablished according to pharmaceutical or chemical properties club drugs are a category of convenience in which drugs are includedue to the locations they are consumed and or where the user goes while under the influence of the drugs club drugs are generally used by teens and young adults this group of drugs are also calledesigner drug s as most are synthesized in chemicalab eg mdma ketamine lsd rather than being sourced from plants as with marijuana which comes from the cannabis plant file raveonjpg thumb left px some club drug users take the drugs because they believe thathe substances effects enhance thexperience of rave and electronic dance musiclubs pulsating lights brightly colored projected images and massive sound systems witheavy bassline s club drugs range from entactogensuch as mdma ecstasy c b nexus and inhalant s eg nitrous oxide and poppers to stimulant s eg amphetamine and cocaine depressantsedatives quaaludes gamma hydroxybutyric acid ghb rohypnol and psychedelic drug psychedelic and hallucinogenic drugs lsd and n dimethyltryptamine dmt dancers at all night parties andancevents have used some of these drugs for their stimulating propertiesince the s mod subculture in uk whose members took amphetamine s to stay up all night in the s disco scene the club drugs of choice shifted to the stimulant cocaine and the depressant quaaludes were so common at disco clubs thathe drug was nicknamedisco biscuits in the s and s methamphetamine s and mdmare sold and used in many clubs club drugs vary by country and region in some regions even opiatesuch as heroin and morphine have been sold at clubs though this practice is relatively uncommonorconon states that other synthetic drugs used in clubs or which are sold as ecstasy include harmaline piperazines eg benzylpiperazine bzp and tfmppara methoxyamphetamine pma pmma mephedrone generally used outside the us and mdpv the legal status of club drugs varies according to the region and the drug some drugs are legal in some jurisdictionsuch as poppers which are often sold as room deodorizer or leather polish to get aroundrug laws and nitrous oxide which is legal when used from a whipped cream can other club drugsuch as amphetamine or mdmare generally illegal unless the individual has a lawful prescription from a doctor some club drugs are almost always illegal such as cocaine there are a range of risks from using club drugs as with all drugs including legal drugs like alcohol to illegal drugs like benzylpiperazine bzp using drugs can increase the risk of injury due to falls dangerous orisky behaviour eg unsafe sex and if the user drives injury or death due to impairedriving accidentsome club drugsuch as cocaine and amphetamines are addictive and regular use can lead to the user craving more of the drug some club drugs are more associated with overdosesome club drugs can cause adverse health effects which can be harmful to the user such as the dehydration associated with mdma use in an all night dance club setting file mdma capsulesjpg thumb right px mdma capsules mdma ecstasy is a popular club drug in the rave and electronic dance music scenes and inightclub s it is known under many nicknames including e and molly mdma is often considered the drug of choice within the rave culture and is also used at clubs festivals house party house parties and free party free parties in the ravenvironmenthe sensory effects from the music and lighting are often highly synergy synergistic withe drug the psychedelic quality of mdmand its amphetamine likenergizing effect offers multiple reasons for its appeal to users in the rave setting some users enjoy the feeling of mass communion from the inhibition reducing effects of the drug while others use it as party fuel for all night dancing mdma is taken by users less frequently than other stimulants typically less than once per week effects include g reater enjoyment of dancing d istortions of perceptions particularly light music and touch and a rtificial feelings of empathy and emotional warmth mdma isometimes taken in conjunction with other psychoactive drugsuch as lsdmt psilocybin mushroom s and c b usersometimes use menthol ated products while taking mdma for its cooling sensation stimulants file blue crystal methjpg thumb left px a blue form of crystal meth a number of stimulants are used as club drugs various amphetamines and methamphetamines are used astimulants as is cocaine these drugs enable clubgoers to dance all night cocaine is a powerful nervousystem stimulant its effects can last from fifteen or thirty minutes to an hour the duration of cocaine s effects depends on the amountaken and the route of administration cocaine can be in the form ofine white powder bitter to the taste when inhaled or injected it causes a numbing effect cocaine increases alertness feelings of well being and euphoria energy and motor activity feelings of competence and sexuality cocaine stimulant effects are similar to that of amphetamine however theseffects tend to be much shorter lasting and more prominent depressantsedatives file quaaludejpg thumb right px a variety of quaalude pills and capsules methaqualone quaaludes became increasingly popular as a recreational drug in the late s and s known variously as ludes or sopers alsoaps in the us and mandrakes and mandies in the uk australiand new zealand the drug was often used by hippies and by people who went dancing at glam rock clubs in the s and at discoth que discos one slang term for quaaludes in the disco era was disco biscuits in the mid s there were bars in manhattan called juice bars that only served non alcoholic drinks that catered to people who liked to dance on methaqualone purported methaqualone is in a significant minority of cases found to be inert or contain diphenhydramine or benzodiazepines methaqualone is one of the most commonly used recreational drugs in south africa it is also popular elsewhere in africand india commonly known as mandrax m pills buttons or smarties a mixture of crushed mandrax and cannabis drug cannabis smoked usually through a tobacco pipe smoking pipe made from the neck of a broken bottle the depressant gamma hydroxybutyric acid ghb also used by assailants as a date rape drug in which case they slip it into a victim s drink is intentionally taken by some users as a party drug and club drug rohypnol also used as a date rape drug is a sedative hypnotic that causes intoxication and impairs cognitive functions this may appear as lack of concentration confusion and anterograde amnesia it can be described as a hangover likeffect which can persisto the next day it also impairs psychomotor functionsimilar tother benzodiazepines and nonbenzodiazepine hypnotic drugs the previously mentioned selection of drugs are generally categorized as club drugs by the mediand the united states governmenthis distinction probably does not have an accurate correlation to real usage patterns for example alcoholic beverages beer wine hard liquor is generally not included under the category of club drugs even though it is probably used more thany other drug at clubs particularly those that are liquor licensed nightclub s or bar s psychedelic drugs file pink elephants on parade blotter lsdumbojpg thumb lsd is widely known as a psychedelic drug and often features psychedelic art work on its blotting paper drugs blotters a psychedelic drug is a drug medication whose primary action is to alter cognition and perception typically by serotonin receptor agonist agonising serotonin receptors causing thought and visual auditory changes and heightened state of consciousness psychedelic drugs induce heightened state of consciousness brain scanshow guardiancom retrieved major psychedelic drugs include bufotenin racemorphan lsd n dimethyltryptamine dmt and psilocybin mushroom s noto be confused with psychoactive drugsuch astimulant s and opioid s which induce states of altered consciousness psychedelics tend to affecthe mind in ways that result in thexperience being qualitatively different from those of ordinary consciousness whereastimulants cause an energized feeling and opiates produce a dreamy relaxed state the psychedelic experience is often compared to non ordinary forms of consciousnessuch as trance meditation yoga religious ecstasy dream ing and evenear death experience s with a few exceptions most psychedelic drugs fall intone of the three following families of chemical compounds tryptamine s phenethylamine s and lysergamides many psychedelic drugs are illegal worldwide under the single convention narcotic drugs un conventions unless used in a medical oreligious context despite these regulations recreational use of psychedelics is common including at rave s and edm concerts and festivals file hopoppersjpg thumb left px a selection of small bottles of poppers a volatile drug inhaled at dance clubs for the rush it can provide poppers are small bottles of volatile drugs which are inhaled by clubgoers for the rush or high thathey can create nitritesuch as alkyl nitrite originally came asmall glass capsules that were popped open which led to the nickname poppers the drug became popular in the us first on the disco club scene of the s where dancers used the drug for the rush it provides and because it was perceived to enhance thexperience of dancing to loud bass heavy disco the drug became popular again the mid s and s rave and electronic dance music scenes as with disco clubgoers rave participants and edm enthusiasts used the drug because its rush or high was perceived to enhance thexperience of dancing to pulsating music and lights recreational use of nitrous oxide nitrous oxide is a dissociative inhalanthat can cause depersonalisation derealisation feeling like the world is not real dizziness euphoria emotion euphoriand some soundistortion flanging in some cases it may cause slight hallucination s and have a mild aphrodisiac effect while medical grade nitrous oxide is only available to dentists and other licensed health care providers recreational users often obtain the drug by inhaling the nitrous oxide used in whipped cream aerosol cans nitrous oxide users also buy small whippet canisters of nitrous oxide intended for use in restaurant whipped cream dispensers and then crack open these canisters to inhale the gas users typically transfer the gas to a plastic bag or balloon prior to inhaling it file g o kjpg thumb right px ketamine from the street drug trade in the form of crystals ketamine a dissociative anesthetic has a long history of being used in clubs and was one of the most popular substances used in the new york club kids club kid scene ketamine produces a dissociative state characterized by a sense of detachment from one s physical body and thexternal world which is known as depersonalization anderealization effects include hallucinations changes in the perception of distances relative scale color andurations time as well as a slowing of the visual system s ability to update whathe user iseeing in the synthetic phenethylaminesuch as c i c b andimethoxy bromoamphetamine dob have been referred to as club drugs due to their stimulating and psychedelic nature and their chemical relationship with mdma bbc i by late derivates of the psychedelic x drugs the nbome s and especially i nbome had become common at raves in europe wpuls the drug organizationorconon states that other synthetic drugs used in clubs or which are sold as ecstasy include harmaline piperazines eg benzylpiperazine bzp and tfmppara methoxyamphetamine pma pmma mephedrone generally used outside the us and mdpv though far less common than other club drugs like mdma ketamine or lsd heroin can be found in some of new york city s clubs marijuanand related cannabis products are used by some clubgoers for example some rohypnol and ketamine users mix the powderedrug with marijuanand smoke it desired effects although each club drug has different effects their use in clubs reflects their perceived contribution to the user s experience dancing to a beat as lights flash to the musiclub drug users are generally taking the drugs to enhance social intimacy and sensory stimulation from the dance club experiencegahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun some club drugs popularity stems from their ability to induceuphoria lowered inhibition and an intoxicated feeling some drugsuch as amphetamine and cocaine give the dancer hyperactivity and energy to dance all night many drugs produce a feeling of heightened physical sensation and increased libido and sexual pleasure some club drugsuch as lsdmt mdma c b and ketaminenhance thexperience of being in a nightclub with pulsating lights and flashing lasers and throbbing dance music because they cause hallucinations or unusual perception effects risks and adverseffects although research continues into the full scope of theffects of illegal drugs regular and unsafe use of club drugs is widely accepted to have damaging sideffects and carry a risk of addiction increased heart rate a steep increase in body temperature increase in blood pressure spasms andehydration are all common sideffects of mdmand methamphetamine breathing and respiratory issues drowsiness nauseand confusion are common sideffects of saidrugs they can also make the user anxioustressed and panicked or even hallucinate withdrawal is also a risk with many club drugs drug cravings as the chemicaleaves the user s body can be complicated by sleep deprivation dehydration and hypoglycaemia to result in debilitating come downs which can result in depression like symptoms in the worst instance club drugs result in the death of the user from cardiac arrest or water intoxication due to the increase in heart rate and thirstiness induced inconsistency in the strength and exact composition of the suppliedrug causing users toverdose wide variance in the measured rate of deaths caused by drugsuch as ecstasy across countriesuggesthat user and societal environmental factors may also affecthe lethality of club drugs drug interactions file drug addicted in tallinn tramjpg thumb right px an unconscious teen on a tram car anotherisk is drug interactionsome club drug users take multiple drugs athe same time club drugs often are taken together with alcohol or with other drugs to enhance their effect gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun drug interactions can cause hazardousideffects when club drug users are in a liquor licensed nightclub users may mix pills or powders mdma c b ghb ketamine with consumption of alcoholic drinksuch as beer wine or hard liquor some depressantsuch as rohypnol are dangerous to take while drinking alcohol ketamine often is taken in trail mixes of methamphetamine phencyclidine cocaine sildenafil citrate viagra morphine or heroin gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun injury or death due to risky behaviour anotherisk with club drugs is one shared by all drugs from legal drugs like alcohol to abused over the counter drugs taking large amounts of dextromethorphan cough syrup and illegal drugs benzylpiperazine bzp amphetamine s etc while impaired the user is more likely to be injured engage in dangerous orisky behaviour eg unsafe sex or if she or he drives have an accident resulting injury or death due to impairedriving file bzptabletjpg righthumb px a tablet sold as mdma it contained no mdma instead it contained benzylpiperazine bzp methamphetamine and caffeine in many cases illegal club drugs are misrepresented gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun that is a dealer will tell a purchaser that she has a certain illegal drug for sale while in facthe dealer s pills capsules or bags of powder do not contain that chemical for example mdma ecstasy is very hard to synthesize in illegal underground labs and methamphetamine is much easier it can be made from household chemicals and over the counter cold remedies containing pseudoephedrine asuch what dealersell as mdma is often methamphetamine powder similarly pillsold by drug dealers as lsd a drug which only the top chemists have the training to synthesize most often containo lsd instead they often contain phencyclidine pcp a veterinary tranquilizer which produces disassociation and hallucinations in humans in some cases the dealer has intentionally substituted a less expensive more available illegal drug for another drug in other cases the substitution was made by a higher level drug cartel organization and the dealer may in fact believe thathe bogus product is mdma or lsd cutting adulteration and spiking file flavcocainejpg thumb left px baggies of cocaine adulterated with fruit flavoured powder and colouring withexception of marijuana which typically is uncut and unlaced many illegal drugs especially those which come in a powder or pill form are cut with other substances or spiked with other drugs cocaine amphetamines and other stimulants often have caffeine powder added as this increases the dealer s profit by bulking outhe powder so that less expensive cocaine or amphetamine has to be used in making the product some substances used to cut illegal drugs are not inherently harmful as they are just used to pad or bulk out a quantity of the illegal drug and increase profitsuch as the lactose milk sugar a white powder often added to heroin even fairly innocuous powders that are added to illegal drugs though can have adverseffects with some routes of illegal drug administration such as injection with some drugs adulterants are sometimes added to make the product more appealing for example flavoured cocaine has flavoured powder added to the drug whereas the main goal of cutting is to bulk out a quantity of purexpensive illegal drugs with an innocuous and not overly harmful substance lactose or fairly low impact product eg caffeine in amphetamine pills the goal of spiking is to try to make lower quality illegal drug or a lower potency source of illegal drugs give the user the type of high or psychedelic experience she or he iseeking while it was earlier stated that marijuana is most often uncut and un spiked some dealers add pcp to marijuana this nicknamed wet marijuana because adding this disassociative psychedelic to low grade low thc marijuana can convert it into a cannabis that createstriking hallucinogenic effects drug researchers learned that some dealers were spiking marijuana when they tested us teens who stated thathey had only used a single illegal drug marijuanand the teens tested positive for marijuanand pcp some dealers who have a very small quantity of mdma powder to sell spike it with less expensive and easier to produce methamphetamine powder street cocaine is often adulterated or cut with talc lactose sucrose glucose mannitol inositol caffeine procaine phencyclidine phenytoin lignocaine strychnine amphetamine or heroin a common methamphetamine adulterant is dimethyl sulfone a solvent and cosmetic base without known effect on the nervousystem other adulterants include dimethylamphetamine hcl ephedrine hcl sodium thiosulfate sodium chloride sodium glutamate and a mixture of caffeine with sodium benzoate not all club drugs are addictive nitrous oxide is not addictive however some club drugs are addictive amphetamine heavily used in recreational fashion pose a serious risk of addiction cocaine addiction is a psychological desire to use cocaine regularly cocaine overdose may result in cardiovascular and brain damage such as vasoconstriction constricting blood vessels in the brain causing stroke s and constricting arteries in theart causing myocardial infarction heart attacks cocaine use and its effects the use of cocaine creates euphoriand high amounts of energy if taken in large unsafe doses it is possible to cause mood swings paranoia insomnia psychosis high blood pressure a tachycardia fast heart rate panic attacks cognitive dysfunction cognitive impairments andrastichanges in personality the symptoms of cocaine withdrawalso known as comedown drugs comedown or crash range fromoderate to severe dysphoria depression moodepression anxiety weakness psychological and physical weakness pain and compulsive craving withdrawal cravings file ghb do s andon ts drugslabwebm thumb right px a video warning abouthe dangers of ghb addiction occurs when repeatedrug use disrupts the normal balance of brain circuits that control rewards memory and cognition ultimately leading to compulsive drug takingdepartment of health and human servicesamhsa office of applied studies national survey on drug use and health ages years and up american heart association johns hopkins university study principles of addiction medicine psychology today national gambling impact commission study national council on problem gambling illinois institute for addiction recovery society for advancement of sexual health all psych journal addiction and the brain time although there have been reported fatalities due to ghb withdrawal reports are inconclusive and furtheresearch is needed ketamine risks ketamine use as a recreational drug has been implicated in deaths globally with more than deaths in england wales in the years of they include accidental poisonings drownings traffic accidents and suicidessee max daly the sademise of nancy lee one of britain s ketamine casualties at vice online july see accessed june the majority of deaths were among young peoplethe crown drug relatedeaths involving ketamine in england wales a report of the mortality team lifevents and population sources division office for national statistics the crown uk see and accessed june this has led to increased regulation eg upgrading ketamine from a class c to a class banned substance in the uk hayley dixon ketamine death of public schoolgirl an act of stupidity which destroyed family athe telegraph online february see accessed june at sufficiently high doses ketamine users may experience what is called the k hole a state of extreme dissociation with visual and auditory hallucinations acute treatment file woodstock festival medicaljpg thumb right px a music fan who has had a drug overdose athe woodstock music festival is placed onto a wheeled cot by paramedics the main treatment for individuals facing acute medical issues due to club drug consumption or overdoses is cardiorespiratory maintenance gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun since club drug users may have consumed multiple drugs a mix of drugs and alcohol or a drug adulterated with other chemicals it is hard for doctors to knowhatype of overdose to treat for even if the user is conscious and can tell the medical team what drug they think they took a doctorecommends cardiac monitoring pulse oximetry urinalysis and performance of a comprehensive chemistry panel to check for electrolyte imbalance renal toxicity and possible underlying disorders and preventing seizures gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun some doctors use activated charcoal and a cathartic to detoxify the drugs in the gastrointestinal system gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun cooling the victim is recommended to avoid hyperthermia if the victim overdosed on rohypnol the antidote flumazenil can be given this the only club drug for which there is antidote gahlinger paul club drugs mdma gamma hydroxybutyrate ghb rohypnol and ketamine in am fam physician jun in the mid to late s disco club scene there was a thriving drug subculture particularly for drugs that would enhance thexperience of dancing to the loudance music and the flashing lights on the dancefloor substancesuch as cocaine gootenberg paul between cocand cocaine a century or more of pp he says thathe relationship of cocaine to s disco culture cannot be stressed enough nicknamed blow amyl nitrite poppers amyl butyl and isobutyl nitrite collectively known as alkyl nitrites are clear yellow liquids which are inhaled for their intoxicating effects nitrites originally came asmall glass capsules that were popped open this led to nitrites beingiven the name poppers buthis form of the drug is rarely found in the uk the drug became popular in the uk first on the disco club scene of the s and then at dance and ravenues in the s and s available at and quaalude s quaaludes were described as the other quintessential s club drug which suspends motor coordination k according to peter braunstein massive quantities of drugs were ingested in discoth ques throughouthe s the use of club drugs expanded into collegesocial parties and raves as raves grew in popularity through the late s and into the late s drug usagespecially mdma grewithemuch like discos raves made use oflashing lights loud techno electronic dance music to enhance the user experience before their scheduling some club drugs especially designer drug designer drugs referred to as researchemical researchemicals were advertised as alcohol free andrug free anothereason that drug producers create new drugs is to avoidrug laws in australia club drugs are used in australia in a variety of dance clubs and nightclubs one in ten australians has used mdmat least once in their lifetime however one in thirty have used mdma in the past months one in a hundred australians has used ketamine at least once in their lives and a total ofive hundred in the past months one in two hundred australians have used ghb at least once in their lives and one in one thousand in the past months regarding thentire australian population seven per cent of australians have used cocaine at least once in their lifetime and two per cent of australians have used it in the past months australia defence force adf nd in era generations from teens to young adults and mature aged people these drugs are commonly used and sold nightclubs and pubs throughout australia see also party pills rave nightclub route baroute world s first cocaine bar furthereading hunt geoffrey moloney molly and evans kristin youth drugs and nightlife routledge knowles cynthia r up all night a closer look at club drugs and rave cultured house pressanders bill drugs clubs and young people sociological and public health perspectives routledge references externalinks clubdrugsgov from the national institute on drug abuserowid reference category dance culture category drug culture category disco category rave category euphoriants category inhalants category sedatives category hypnotics category stimulants category psychedelic drugs category dissociative drugs category s fads and trends category s fads and trends category s fads and trends category s fads and trends category s fads and trends category s fads and trends category nightclubs category musical subcultures hr droga za silovanje pt boa noite cinderela","main_words":["thumb","right","px","selection","mdma","pills","ecstasy","e","club_drugs","also_called","rave","drugs","party","drugs","loosely","defined","category","recreational","drug","associated","disco","th","nightclub","dance","club","electronic_dance_music","parties","rave","reference","unlike","many","according","chemical","properties","club_drugs","category","convenience","drugs","locations","consumed","user","goes","influence","drugs","club_drugs","generally","used","teens","young","adults","group","drugs","also","drug","mdma","ketamine","lsd","rather","sourced","plants","marijuana","comes","cannabis","plant","file","thumb","left_px","club_drug_users","take","drugs","believe","thathe","substances","effects","enhance","thexperience","rave","electronic_dance","pulsating","lights","colored","projected","images","massive","club_drugs","range","mdma","ecstasy","c","b","nitrous_oxide","poppers","stimulant","amphetamine","cocaine","quaaludes","gamma","acid","ghb","rohypnol","psychedelic","drug","psychedelic","drugs","lsd","n","dmt","dancers","night","parties","used","drugs","stimulating","mod","subculture","uk","whose","members","took","amphetamine","stay","night","disco","scene","club_drugs","choice","shifted","stimulant","cocaine","quaaludes","common","disco","clubs","thathe","drug","biscuits","methamphetamine","sold","used","many","clubs","club_drugs","vary","country","region","regions","even","heroin","morphine","sold","clubs","though","practice","relatively","states","synthetic","drugs","used","clubs","sold","ecstasy","include","benzylpiperazine","bzp","generally","used","outside","us","legal","status","club_drugs","varies","according","region","drug","drugs","legal","poppers","often","sold","room","leather","polish","get","laws","nitrous_oxide","legal","used","whipped","cream","club_drugsuch","amphetamine","generally","illegal","unless","individual","prescription","doctor","club_drugs","almost","always","illegal","cocaine","range","risks","using","club_drugs","drugs","including","legal","drugs","like","alcohol","illegal_drugs","like","benzylpiperazine","bzp","using","drugs","increase","risk","injury","due","falls","dangerous","behaviour","unsafe","sex","user","drives","injury","death","due","club_drugsuch","cocaine","addictive","regular","use","lead","user","craving","drug","club_drugs","associated","club_drugs","cause","adverse","health","effects","harmful","user","associated","mdma","use","night","dance","club","setting","file","mdma","thumb","right","px","mdma","capsules","mdma","ecstasy","popular","club_drug","rave","electronic_dance_music","scenes","known","many","including","e","molly","mdma","often","considered","drug","choice","within","rave_culture","also_used","clubs","festivals","house","party","house","parties","free","party","free","parties","sensory","effects","music","lighting","often","highly","withe","drug","psychedelic","quality","amphetamine","effect","offers","multiple","reasons","appeal","users","rave","setting","users","enjoy","feeling","mass","reducing","effects","drug","others","use","party","fuel","night","dancing","mdma","taken","users","less","frequently","stimulants","typically","less","per","week","effects","include","g","enjoyment","dancing","perceptions","particularly","light","music","touch","feelings","emotional","warmth","mdma","isometimes","taken","conjunction","drugsuch","psilocybin","mushroom","c","b","use","products","taking","mdma","cooling","sensation","stimulants","crystal","thumb","left_px","blue","form","crystal","number","stimulants","used","club_drugs","various","used","cocaine","drugs","enable","clubgoers","dance","night","cocaine","powerful","stimulant","effects","last","fifteen","thirty","minutes","hour","duration","cocaine","effects","depends","route","administration","cocaine","form","ofine","white","powder","bitter","taste","inhaled","causes","effect","cocaine","increases","feelings","well","energy","motor","activity","feelings","competence","cocaine","stimulant","effects","similar","amphetamine","however","tend","much","shorter","lasting","prominent","file","thumb","right","px","variety","pills","capsules","methaqualone","quaaludes","became_increasingly_popular","recreational","drug","late","known","variously","us","uk","australiand_new_zealand","drug","often_used","hippies","people","went","dancing","rock","clubs","discoth_que","discos","one","slang_term","quaaludes","disco","era","disco","biscuits","mid","bars","manhattan","called","juice","bars","served","non_alcoholic","drinks","catered","people","liked","dance","methaqualone","methaqualone","significant","minority","cases","found","inert","contain","methaqualone","one","commonly_used","recreational","drugs","south_africa","also_popular","elsewhere","africand","india","commonly_known","pills","mixture","crushed","cannabis","drug","cannabis","smoked","usually","tobacco","pipe","smoking","pipe","made","neck","broken","bottle","gamma","acid","ghb","also_used","date","rape","drug","case","victim","drink","intentionally","taken","users","party","drug","club_drug","rohypnol","also_used","date","rape","drug","causes","intoxication","cognitive","functions","may","appear","lack","concentration","confusion","amnesia","described","next_day","also","tother","drugs","previously","mentioned","selection","drugs","generally","categorized","club_drugs","mediand","united_states","distinction","probably","accurate","correlation","real","usage","patterns","example","alcoholic_beverages","beer","wine","hard","liquor","generally","included","category","club_drugs","even_though","probably","used","thany","drug","clubs","particularly","liquor","licensed","nightclub","bar","psychedelic","drugs","file","pink","elephants","parade","thumb","lsd","widely","known","psychedelic","drug","often","features","psychedelic","art","work","paper","drugs","psychedelic","drug","drug","medication","whose","primary","action","alter","perception","typically","causing","thought","visual","auditory","changes","state","consciousness","psychedelic","drugs","induce","state","consciousness","brain","retrieved","major","psychedelic","drugs","include","lsd","n","dmt","psilocybin","mushroom","noto","confused","drugsuch","induce","states","altered","consciousness","tend","affecthe","mind","ways","result","thexperience","different","ordinary","consciousness","cause","feeling","produce","relaxed","state","psychedelic","experience","often","compared","non","ordinary","forms","trance","yoga","religious","ecstasy","dream","ing","death","experience","exceptions","psychedelic","drugs","fall","intone","three","following","families","chemical","many","psychedelic","drugs","illegal","worldwide","single","convention","drugs","conventions","unless","used","medical","context","despite","regulations","recreational","use","common","including","rave","edm","concerts","festivals","file","thumb","left_px","selection","small","bottles","poppers","drug","inhaled","dance","clubs","rush","provide","poppers","small","bottles","drugs","inhaled","clubgoers","rush","high","thathey","create","nitrite","originally","came","asmall","glass","capsules","open","led","nickname","poppers","drug","became_popular","us","first","disco","club","scene","dancers","used","drug","rush","provides","perceived","enhance","thexperience","dancing","loud","bass","heavy","disco","drug","became_popular","mid","rave","electronic_dance_music","scenes","disco","clubgoers","rave","participants","edm","enthusiasts","used","drug","rush","high","perceived","enhance","thexperience","dancing","pulsating","music","lights","recreational","use","nitrous_oxide","nitrous_oxide","dissociative","cause","feeling","like","world","real","emotion","cases","may","cause","slight","mild","effect","medical","grade","nitrous_oxide","available","dentists","licensed","health_care","providers","recreational","users","often","obtain","drug","nitrous_oxide","used","whipped","cream","cans","nitrous_oxide","users","also","buy","small","nitrous_oxide","intended","use","restaurant","whipped","cream","crack","open","gas","users","typically","transfer","gas","plastic","bag","balloon","prior","file","g","thumb","right","px","ketamine","street","drug","trade","form","ketamine","dissociative","long","history","used","clubs","one","popular","substances","used","new_york","club","kids","club","kid","scene","ketamine","produces","dissociative","state","characterized","sense","detachment","one","physical","body","thexternal","world","known","effects","include","hallucinations","changes","perception","distances","relative","scale","color","time","well","visual","system","ability","update","whathe","user","synthetic","c","c","b","referred","club_drugs","due","stimulating","psychedelic","nature","chemical","relationship","mdma","bbc","late","psychedelic","x","drugs","nbome","especially","nbome","become","common","raves","europe","drug","states","synthetic","drugs","used","clubs","sold","ecstasy","include","benzylpiperazine","bzp","generally","used","outside","us","though","far","less_common","club_drugs","like","mdma","ketamine","lsd","heroin","found","new_york","city","clubs","marijuanand","related","cannabis","products","used","clubgoers","example","rohypnol","ketamine","users","mix","marijuanand","smoke","desired","effects","although","club_drug","different","effects","use","clubs","reflects","perceived","contribution","user","experience","dancing","beat","lights","flash","musiclub","generally","taking","drugs","enhance","social","sensory","stimulation","dance","club","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","club_drugs","popularity","stems","ability","lowered","intoxicated","feeling","drugsuch","amphetamine","cocaine","give","dancer","energy","dance","night","many","drugs","produce","feeling","physical","sensation","increased","sexual","pleasure","club_drugsuch","mdma","c","b","thexperience","nightclub","pulsating","lights","dance_music","cause","hallucinations","unusual","perception","effects","risks","although","research","continues","full","scope","theffects","illegal_drugs","regular","unsafe","use","club_drugs","widely","accepted","damaging","sideffects","carry","risk","addiction","increased","heart","rate","steep","increase","body","temperature","increase","blood","pressure","common","sideffects","methamphetamine","breathing","respiratory","issues","confusion","common","sideffects","also","make","user","even","withdrawal","also","risk","many","club_drugs","drug","cravings","user","body","complicated","sleep","deprivation","result","come","downs","result","depression","like","symptoms","worst","instance","club_drugs","result","death","user","cardiac","arrest","water","intoxication","due","increase","heart","rate","induced","strength","exact","composition","causing","users","wide","measured","rate","deaths","caused","drugsuch","ecstasy","across","user","environmental","factors","may_also","affecthe","club_drugs","drug","interactions","file","drug","tallinn","thumb","right","px","teen","tram","car","drug","club_drug_users","take","multiple","drugs","athe_time","club_drugs","often","taken","together","alcohol","drugs","enhance","effect","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","drug","interactions","cause","club_drug_users","liquor","licensed","nightclub","users","may","mix","pills","mdma","c","b","ghb","ketamine","consumption","beer","wine","hard","liquor","rohypnol","dangerous","take","drinking","alcohol","ketamine","often","taken","trail","methamphetamine","cocaine","morphine","heroin","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","injury","death","due","risky","behaviour","club_drugs","one","shared","drugs","legal","drugs","like","alcohol","counter","drugs","taking","large","amounts","syrup","illegal_drugs","benzylpiperazine","bzp","amphetamine","etc","user","likely","injured","engage","dangerous","behaviour","unsafe","sex","drives","accident","resulting","injury","death","due","file","righthumb_px","tablet","sold","mdma","contained","mdma","instead","contained","benzylpiperazine","bzp","methamphetamine","caffeine","many_cases","illegal","club_drugs","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","dealer","tell","certain","illegal_drug","sale","facthe","dealer","pills","capsules","bags","powder","contain","chemical","example","mdma","ecstasy","hard","illegal","underground","labs","methamphetamine","much","easier","made","household","chemicals","counter","cold","containing","asuch","mdma","often","methamphetamine","powder","similarly","drug","dealers","lsd","drug","top","chemists","training","often","lsd","instead","often","contain","veterinary","produces","hallucinations","humans","cases","dealer","intentionally","less","expensive","available","illegal_drug","another","drug","cases","made","higher","level","drug","organization","dealer","may","fact","believe","thathe","product","mdma","lsd","cutting","file","thumb","left_px","cocaine","adulterated","fruit","flavoured","powder","withexception","marijuana","typically","many","illegal_drugs","especially","come","powder","form","cut","substances","drugs","cocaine","stimulants","often","caffeine","powder","added","increases","dealer","profit","outhe","powder","less","expensive","cocaine","amphetamine","used","making","product","substances","used","cut","illegal_drugs","harmful","used","pad","bulk","quantity","illegal_drug","increase","milk","sugar","white","powder","often","added","heroin","even","fairly","added","illegal_drugs","though","routes","illegal_drug","administration","injection","drugs","sometimes","added","make","product","appealing","example","flavoured","cocaine","flavoured","powder","added","drug","whereas","main","goal","cutting","bulk","quantity","illegal_drugs","harmful","substance","fairly","low_impact","product","caffeine","amphetamine","pills","goal","try","make","lower","quality","illegal_drug","lower","source","illegal_drugs","give","user","type","high","psychedelic","experience","earlier","stated","marijuana","often","dealers","add","marijuana","nicknamed","wet","marijuana","adding","psychedelic","low","grade","low","marijuana","convert","cannabis","effects","drug","researchers","learned","dealers","marijuana","tested","us","teens","stated_thathey","used","single","illegal_drug","marijuanand","teens","tested","positive","marijuanand","dealers","small","quantity","mdma","powder","sell","spike","less","expensive","easier","produce","methamphetamine","powder","street","cocaine","often","adulterated","cut","caffeine","amphetamine","heroin","common","methamphetamine","cosmetic","base","without","known","effect","include","sodium","sodium","sodium","mixture","caffeine","sodium","club_drugs","addictive","nitrous_oxide","addictive","however","club_drugs","addictive","amphetamine","heavily","used","recreational","fashion","pose","serious","risk","addiction","cocaine","addiction","psychological","desire","use","cocaine","regularly","cocaine","overdose","may","result","brain","damage","blood","vessels","brain","causing","stroke","theart","causing","heart","attacks","cocaine","use","effects","use","cocaine","creates","high","amounts","energy","taken","large","unsafe","possible","cause","mood","swings","high","blood","pressure","fast","heart","rate","panic","attacks","cognitive","cognitive","personality","symptoms","cocaine","known","drugs","crash","range","severe","depression","anxiety","weakness","psychological","physical","weakness","pain","craving","withdrawal","cravings","file","ghb","thumb","right","px","video","warning","abouthe","dangers","ghb","addiction","occurs","use","normal","balance","brain","control","rewards","memory","ultimately","leading","drug","health","human","office","applied","studies","national","survey","drug_use","health","ages","years","american","heart","association","johns","hopkins","university","study","principles","addiction","medicine","psychology","today","national","gambling","impact","commission","study","national","council","problem","gambling","illinois","institute","addiction","recovery","society","advancement","sexual","health","journal","addiction","brain","time","although","reported","due","ghb","withdrawal","reports","needed","ketamine","risks","ketamine","use","recreational","drug","deaths","globally","deaths","england_wales","years","include","accidental","poisonings","traffic","accidents","max","nancy","lee","one","britain","ketamine","casualties","vice","online","july","see","accessed","june","majority","deaths","among","young","crown","drug","involving","ketamine","england_wales","report","mortality","team","population","sources","division","office","national","statistics","crown","uk","see","accessed","june","led","increased","regulation","upgrading","ketamine","class","c","class","banned","substance","uk","dixon","ketamine","death","public","act","destroyed","family","athe","telegraph","online","february","see","accessed","june","sufficiently","high","ketamine","users","may","experience","called","k","hole","state","extreme","visual","auditory","hallucinations","acute","treatment","file","woodstock","festival","thumb","right","px","music","fan","drug","overdose","athe","woodstock","music_festival","placed","onto","main","treatment","individuals","facing","acute","medical","issues","due","club_drug","consumption","maintenance","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","since","club_drug_users","may","consumed","multiple","drugs","mix","drugs","alcohol","drug","adulterated","chemicals","hard","doctors","overdose","treat","even","user","conscious","tell","medical","team","drug","think","took","cardiac","monitoring","pulse","performance","comprehensive","chemistry","panel","check","renal","possible","underlying","disorders","preventing","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","doctors","use","activated","charcoal","drugs","system","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","cooling","victim","recommended","avoid","victim","rohypnol","given","club_drug","gahlinger","paul","club_drugs","mdma","gamma","hydroxybutyrate","ghb","rohypnol","ketamine","fam","physician","jun","mid","late","disco","club","scene","thriving","drug","subculture","particularly","drugs","would","enhance","thexperience","dancing","music","lights","cocaine","paul","cocaine","century","pp","says","thathe","relationship","cocaine","disco","culture","cannot","enough","nicknamed","blow","nitrite","poppers","nitrite","collectively","known","nitrites","clear","yellow","inhaled","effects","nitrites","originally","came","asmall","glass","capsules","open","led","nitrites","name","poppers","buthis","form","drug","rarely","found","uk","drug","became_popular","uk","first","disco","club","scene","dance","available","quaaludes","described","club_drug","motor","coordination","k","according","peter","massive","quantities","drugs","discoth_ques","throughouthe","use","club_drugs","expanded","parties","raves","raves","grew","popularity","late","late","drug","mdma","like","discos","raves","made","use","lights","loud","techno","electronic_dance_music","enhance","user","experience","scheduling","club_drugs","especially","designer","drug","designer","drugs","referred","advertised","alcohol_free","andrug","free","anothereason","drug","producers","create","new","drugs","laws","australia","club_drugs","used","australia","variety","dance","clubs","nightclubs","one","ten","australians","used","least","lifetime","however","one","thirty","used","mdma","past","months","one","hundred","australians","used","ketamine","least","lives","total","ofive","hundred","past","months","one","two","hundred","australians","used","ghb","least","lives","one","one","thousand","past","months","regarding","thentire","australian","population","seven","per_cent","australians","used","cocaine","least","lifetime","two","per_cent","australians","used","past","months","australia","defence","force","era","generations","teens","young","adults","mature","aged","people","drugs","commonly_used","sold","nightclubs","pubs","throughout","australia","see_also","party","pills","rave","nightclub","route","world","first","cocaine","bar","furthereading","hunt","geoffrey","molly","evans","youth","drugs","nightlife","routledge","cynthia","r","night","closer","look","club_drugs","rave","house","bill","drugs","clubs","young_people","sociological","public_health","perspectives","routledge","references_externalinks","national","institute","drug","reference","category_dance","culture_category","drug","culture_category","disco","category","rave","category","category","category","category","category","stimulants","category","psychedelic","drugs","category","dissociative","drugs","category","fads","trends","category","fads","trends","category","fads","trends","category","fads","trends","category","fads","trends","category","fads","trends","category_nightclubs_category","musical","subcultures"],"clean_bigrams":[["thumb","right"],["right","px"],["mdma","pills"],["e","club"],["club","drugs"],["drugs","also"],["also","called"],["called","rave"],["rave","drugs"],["party","drugs"],["loosely","defined"],["defined","category"],["recreational","drug"],["disco","th"],["th","ques"],["dance","club"],["electronic","dance"],["dance","music"],["music","parties"],["reference","unlike"],["unlike","many"],["chemical","properties"],["properties","club"],["club","drugs"],["drugs","category"],["user","goes"],["drugs","club"],["club","drugs"],["generally","used"],["young","adults"],["drugs","also"],["mdma","ketamine"],["ketamine","lsd"],["lsd","rather"],["cannabis","plant"],["plant","file"],["thumb","left"],["left","px"],["club","drug"],["drug","users"],["users","take"],["believe","thathe"],["thathe","substances"],["substances","effects"],["effects","enhance"],["enhance","thexperience"],["electronic","dance"],["pulsating","lights"],["colored","projected"],["projected","images"],["massive","sound"],["sound","systems"],["club","drugs"],["drugs","range"],["mdma","ecstasy"],["ecstasy","c"],["c","b"],["nitrous","oxide"],["quaaludes","gamma"],["acid","ghb"],["ghb","rohypnol"],["psychedelic","drug"],["drug","psychedelic"],["psychedelic","drugs"],["drugs","lsd"],["lsd","n"],["dmt","dancers"],["night","parties"],["mod","subculture"],["uk","whose"],["whose","members"],["members","took"],["took","amphetamine"],["disco","scene"],["club","drugs"],["choice","shifted"],["stimulant","cocaine"],["disco","clubs"],["clubs","thathe"],["thathe","drug"],["many","clubs"],["clubs","club"],["club","drugs"],["drugs","vary"],["regions","even"],["clubs","though"],["synthetic","drugs"],["drugs","used"],["ecstasy","include"],["benzylpiperazine","bzp"],["generally","used"],["used","outside"],["legal","status"],["club","drugs"],["drugs","varies"],["varies","according"],["often","sold"],["leather","polish"],["nitrous","oxide"],["whipped","cream"],["club","drugsuch"],["generally","illegal"],["illegal","unless"],["club","drugs"],["almost","always"],["always","illegal"],["using","club"],["club","drugs"],["drugs","including"],["including","legal"],["legal","drugs"],["drugs","like"],["like","alcohol"],["illegal","drugs"],["drugs","like"],["like","benzylpiperazine"],["benzylpiperazine","bzp"],["bzp","using"],["using","drugs"],["injury","due"],["falls","dangerous"],["unsafe","sex"],["user","drives"],["drives","injury"],["death","due"],["club","drugsuch"],["regular","use"],["user","craving"],["club","drugs"],["club","drugs"],["cause","adverse"],["adverse","health"],["health","effects"],["mdma","use"],["night","dance"],["dance","club"],["club","setting"],["setting","file"],["file","mdma"],["thumb","right"],["right","px"],["px","mdma"],["mdma","capsules"],["capsules","mdma"],["mdma","ecstasy"],["popular","club"],["club","drug"],["electronic","dance"],["dance","music"],["music","scenes"],["including","e"],["molly","mdma"],["often","considered"],["choice","within"],["rave","culture"],["also","used"],["clubs","festivals"],["festivals","house"],["house","party"],["party","house"],["house","parties"],["free","party"],["party","free"],["free","parties"],["sensory","effects"],["often","highly"],["withe","drug"],["drug","psychedelic"],["psychedelic","quality"],["effect","offers"],["offers","multiple"],["multiple","reasons"],["rave","setting"],["users","enjoy"],["reducing","effects"],["effects","drug"],["others","use"],["party","fuel"],["night","dancing"],["dancing","mdma"],["users","less"],["less","frequently"],["stimulants","typically"],["typically","less"],["per","week"],["week","effects"],["effects","include"],["include","g"],["perceptions","particularly"],["particularly","light"],["light","music"],["emotional","warmth"],["warmth","mdma"],["mdma","isometimes"],["isometimes","taken"],["psilocybin","mushroom"],["c","b"],["taking","mdma"],["cooling","sensation"],["sensation","stimulants"],["stimulants","file"],["file","blue"],["blue","crystal"],["thumb","left"],["left","px"],["blue","form"],["club","drugs"],["drugs","various"],["used","cocaine"],["drugs","enable"],["enable","clubgoers"],["night","cocaine"],["stimulant","effects"],["thirty","minutes"],["effects","depends"],["administration","cocaine"],["form","ofine"],["ofine","white"],["white","powder"],["powder","bitter"],["effect","cocaine"],["cocaine","increases"],["motor","activity"],["activity","feelings"],["cocaine","stimulant"],["stimulant","effects"],["amphetamine","however"],["much","shorter"],["shorter","lasting"],["thumb","right"],["right","px"],["pills","capsules"],["capsules","methaqualone"],["methaqualone","quaaludes"],["quaaludes","became"],["became","increasingly"],["increasingly","popular"],["recreational","drug"],["known","variously"],["uk","australiand"],["australiand","new"],["new","zealand"],["often","used"],["went","dancing"],["rock","clubs"],["discoth","que"],["que","discos"],["discos","one"],["one","slang"],["slang","term"],["disco","era"],["disco","biscuits"],["manhattan","called"],["called","juice"],["juice","bars"],["served","non"],["non","alcoholic"],["alcoholic","drinks"],["significant","minority"],["cases","found"],["commonly","used"],["used","recreational"],["recreational","drugs"],["south","africa"],["also","popular"],["popular","elsewhere"],["africand","india"],["india","commonly"],["commonly","known"],["cannabis","drug"],["drug","cannabis"],["cannabis","smoked"],["smoked","usually"],["tobacco","pipe"],["pipe","smoking"],["smoking","pipe"],["pipe","made"],["broken","bottle"],["acid","ghb"],["ghb","also"],["also","used"],["date","rape"],["rape","drug"],["intentionally","taken"],["party","drug"],["club","drug"],["drug","rohypnol"],["rohypnol","also"],["also","used"],["date","rape"],["rape","drug"],["causes","intoxication"],["cognitive","functions"],["may","appear"],["concentration","confusion"],["next","day"],["previously","mentioned"],["mentioned","selection"],["generally","categorized"],["club","drugs"],["united","states"],["distinction","probably"],["accurate","correlation"],["real","usage"],["usage","patterns"],["example","alcoholic"],["alcoholic","beverages"],["beverages","beer"],["beer","wine"],["wine","hard"],["hard","liquor"],["club","drugs"],["drugs","even"],["even","though"],["probably","used"],["clubs","particularly"],["liquor","licensed"],["licensed","nightclub"],["psychedelic","drugs"],["drugs","file"],["file","pink"],["pink","elephants"],["thumb","lsd"],["widely","known"],["psychedelic","drug"],["often","features"],["features","psychedelic"],["psychedelic","art"],["art","work"],["paper","drugs"],["psychedelic","drug"],["drug","medication"],["medication","whose"],["whose","primary"],["primary","action"],["perception","typically"],["causing","thought"],["visual","auditory"],["auditory","changes"],["consciousness","psychedelic"],["psychedelic","drugs"],["drugs","induce"],["consciousness","brain"],["retrieved","major"],["major","psychedelic"],["psychedelic","drugs"],["drugs","include"],["lsd","n"],["psilocybin","mushroom"],["induce","states"],["altered","consciousness"],["affecthe","mind"],["ordinary","consciousness"],["relaxed","state"],["psychedelic","experience"],["often","compared"],["non","ordinary"],["ordinary","forms"],["yoga","religious"],["religious","ecstasy"],["ecstasy","dream"],["dream","ing"],["death","experience"],["psychedelic","drugs"],["drugs","fall"],["fall","intone"],["three","following"],["following","families"],["many","psychedelic"],["psychedelic","drugs"],["illegal","worldwide"],["single","convention"],["conventions","unless"],["unless","used"],["context","despite"],["regulations","recreational"],["recreational","use"],["common","including"],["edm","concerts"],["festivals","file"],["thumb","left"],["left","px"],["small","bottles"],["drug","inhaled"],["dance","clubs"],["provide","poppers"],["small","bottles"],["high","thathey"],["nitrite","originally"],["originally","came"],["came","asmall"],["asmall","glass"],["glass","capsules"],["nickname","poppers"],["drug","became"],["became","popular"],["us","first"],["disco","club"],["club","scene"],["dancers","used"],["enhance","thexperience"],["loud","bass"],["bass","heavy"],["heavy","disco"],["drug","became"],["became","popular"],["electronic","dance"],["dance","music"],["music","scenes"],["disco","clubgoers"],["clubgoers","rave"],["rave","participants"],["edm","enthusiasts"],["enthusiasts","used"],["enhance","thexperience"],["pulsating","music"],["lights","recreational"],["recreational","use"],["nitrous","oxide"],["oxide","nitrous"],["nitrous","oxide"],["feeling","like"],["may","cause"],["cause","slight"],["medical","grade"],["grade","nitrous"],["nitrous","oxide"],["licensed","health"],["health","care"],["care","providers"],["providers","recreational"],["recreational","users"],["users","often"],["often","obtain"],["nitrous","oxide"],["oxide","used"],["whipped","cream"],["cans","nitrous"],["nitrous","oxide"],["oxide","users"],["users","also"],["also","buy"],["buy","small"],["nitrous","oxide"],["oxide","intended"],["restaurant","whipped"],["whipped","cream"],["crack","open"],["gas","users"],["users","typically"],["typically","transfer"],["plastic","bag"],["balloon","prior"],["file","g"],["thumb","right"],["right","px"],["px","ketamine"],["street","drug"],["drug","trade"],["long","history"],["popular","substances"],["substances","used"],["new","york"],["york","club"],["club","kids"],["kids","club"],["club","kid"],["kid","scene"],["scene","ketamine"],["ketamine","produces"],["dissociative","state"],["state","characterized"],["physical","body"],["thexternal","world"],["effects","include"],["include","hallucinations"],["hallucinations","changes"],["distances","relative"],["relative","scale"],["scale","color"],["visual","system"],["update","whathe"],["whathe","user"],["c","b"],["club","drugs"],["drugs","due"],["psychedelic","nature"],["chemical","relationship"],["mdma","bbc"],["psychedelic","x"],["x","drugs"],["become","common"],["synthetic","drugs"],["drugs","used"],["ecstasy","include"],["benzylpiperazine","bzp"],["generally","used"],["used","outside"],["though","far"],["far","less"],["less","common"],["club","drugs"],["drugs","like"],["like","mdma"],["mdma","ketamine"],["ketamine","lsd"],["lsd","heroin"],["new","york"],["york","city"],["clubs","marijuanand"],["marijuanand","related"],["related","cannabis"],["cannabis","products"],["ketamine","users"],["users","mix"],["marijuanand","smoke"],["desired","effects"],["effects","although"],["club","drug"],["different","effects"],["clubs","reflects"],["perceived","contribution"],["user","experience"],["experience","dancing"],["lights","flash"],["musiclub","drug"],["drug","users"],["generally","taking"],["enhance","social"],["sensory","stimulation"],["dance","club"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["club","drugs"],["drugs","popularity"],["popularity","stems"],["intoxicated","feeling"],["cocaine","give"],["night","many"],["many","drugs"],["drugs","produce"],["physical","sensation"],["sexual","pleasure"],["club","drugsuch"],["mdma","c"],["c","b"],["pulsating","lights"],["dance","music"],["cause","hallucinations"],["unusual","perception"],["perception","effects"],["effects","risks"],["although","research"],["research","continues"],["full","scope"],["illegal","drugs"],["drugs","regular"],["unsafe","use"],["club","drugs"],["widely","accepted"],["damaging","sideffects"],["addiction","increased"],["increased","heart"],["heart","rate"],["steep","increase"],["body","temperature"],["temperature","increase"],["blood","pressure"],["common","sideffects"],["methamphetamine","breathing"],["respiratory","issues"],["common","sideffects"],["also","make"],["many","club"],["club","drugs"],["drugs","drug"],["drug","cravings"],["sleep","deprivation"],["come","downs"],["depression","like"],["like","symptoms"],["worst","instance"],["instance","club"],["club","drugs"],["drugs","result"],["cardiac","arrest"],["water","intoxication"],["intoxication","due"],["heart","rate"],["exact","composition"],["causing","users"],["measured","rate"],["deaths","caused"],["ecstasy","across"],["environmental","factors"],["factors","may"],["may","also"],["also","affecthe"],["club","drugs"],["drugs","drug"],["drug","interactions"],["interactions","file"],["file","drug"],["thumb","right"],["right","px"],["tram","car"],["club","drug"],["drug","users"],["users","take"],["take","multiple"],["multiple","drugs"],["drugs","athe"],["time","club"],["club","drugs"],["drugs","often"],["taken","together"],["effect","gahlinger"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["jun","drug"],["drug","interactions"],["club","drug"],["drug","users"],["liquor","licensed"],["licensed","nightclub"],["nightclub","users"],["users","may"],["may","mix"],["mix","pills"],["mdma","c"],["c","b"],["b","ghb"],["ghb","ketamine"],["alcoholic","drinksuch"],["beer","wine"],["wine","hard"],["hard","liquor"],["drinking","alcohol"],["alcohol","ketamine"],["ketamine","often"],["heroin","gahlinger"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["jun","injury"],["death","due"],["risky","behaviour"],["club","drugs"],["one","shared"],["legal","drugs"],["drugs","like"],["like","alcohol"],["counter","drugs"],["drugs","taking"],["taking","large"],["large","amounts"],["illegal","drugs"],["drugs","benzylpiperazine"],["benzylpiperazine","bzp"],["bzp","amphetamine"],["injured","engage"],["unsafe","sex"],["accident","resulting"],["resulting","injury"],["death","due"],["righthumb","px"],["tablet","sold"],["mdma","instead"],["contained","benzylpiperazine"],["benzylpiperazine","bzp"],["bzp","methamphetamine"],["many","cases"],["cases","illegal"],["illegal","club"],["club","drugs"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["certain","illegal"],["illegal","drug"],["facthe","dealer"],["pills","capsules"],["example","mdma"],["mdma","ecstasy"],["illegal","underground"],["underground","labs"],["much","easier"],["household","chemicals"],["counter","cold"],["often","methamphetamine"],["methamphetamine","powder"],["powder","similarly"],["drug","dealers"],["top","chemists"],["lsd","instead"],["often","contain"],["less","expensive"],["available","illegal"],["illegal","drug"],["another","drug"],["higher","level"],["level","drug"],["dealer","may"],["fact","believe"],["believe","thathe"],["lsd","cutting"],["thumb","left"],["left","px"],["cocaine","adulterated"],["fruit","flavoured"],["flavoured","powder"],["many","illegal"],["illegal","drugs"],["drugs","especially"],["drugs","cocaine"],["stimulants","often"],["caffeine","powder"],["powder","added"],["outhe","powder"],["less","expensive"],["expensive","cocaine"],["substances","used"],["cut","illegal"],["illegal","drugs"],["illegal","drug"],["milk","sugar"],["white","powder"],["powder","often"],["often","added"],["heroin","even"],["even","fairly"],["illegal","drugs"],["drugs","though"],["illegal","drug"],["drug","administration"],["sometimes","added"],["example","flavoured"],["flavoured","cocaine"],["flavoured","powder"],["powder","added"],["drug","whereas"],["main","goal"],["illegal","drugs"],["harmful","substance"],["fairly","low"],["low","impact"],["impact","product"],["amphetamine","pills"],["make","lower"],["lower","quality"],["quality","illegal"],["illegal","drug"],["illegal","drugs"],["drugs","give"],["psychedelic","experience"],["earlier","stated"],["dealers","add"],["nicknamed","wet"],["wet","marijuana"],["low","grade"],["grade","low"],["effects","drug"],["drug","researchers"],["researchers","learned"],["tested","us"],["us","teens"],["stated","thathey"],["single","illegal"],["illegal","drug"],["drug","marijuanand"],["teens","tested"],["tested","positive"],["small","quantity"],["mdma","powder"],["sell","spike"],["less","expensive"],["produce","methamphetamine"],["methamphetamine","powder"],["powder","street"],["street","cocaine"],["often","adulterated"],["common","methamphetamine"],["cosmetic","base"],["base","without"],["without","known"],["known","effect"],["club","drugs"],["addictive","nitrous"],["nitrous","oxide"],["addictive","however"],["club","drugs"],["addictive","amphetamine"],["amphetamine","heavily"],["heavily","used"],["used","recreational"],["recreational","fashion"],["fashion","pose"],["serious","risk"],["addiction","cocaine"],["cocaine","addiction"],["psychological","desire"],["use","cocaine"],["cocaine","regularly"],["regularly","cocaine"],["cocaine","overdose"],["overdose","may"],["may","result"],["brain","damage"],["blood","vessels"],["brain","causing"],["causing","stroke"],["theart","causing"],["heart","attacks"],["attacks","cocaine"],["cocaine","use"],["use","cocaine"],["cocaine","creates"],["high","amounts"],["large","unsafe"],["cause","mood"],["mood","swings"],["high","blood"],["blood","pressure"],["fast","heart"],["heart","rate"],["rate","panic"],["panic","attacks"],["attacks","cognitive"],["crash","range"],["anxiety","weakness"],["weakness","psychological"],["physical","weakness"],["weakness","pain"],["craving","withdrawal"],["withdrawal","cravings"],["cravings","file"],["file","ghb"],["thumb","right"],["right","px"],["video","warning"],["warning","abouthe"],["abouthe","dangers"],["ghb","addiction"],["addiction","occurs"],["normal","balance"],["control","rewards"],["rewards","memory"],["ultimately","leading"],["applied","studies"],["studies","national"],["national","survey"],["drug","use"],["health","ages"],["ages","years"],["american","heart"],["heart","association"],["association","johns"],["johns","hopkins"],["hopkins","university"],["university","study"],["study","principles"],["addiction","medicine"],["medicine","psychology"],["psychology","today"],["today","national"],["national","gambling"],["gambling","impact"],["impact","commission"],["commission","study"],["study","national"],["national","council"],["problem","gambling"],["gambling","illinois"],["illinois","institute"],["addiction","recovery"],["recovery","society"],["sexual","health"],["journal","addiction"],["brain","time"],["time","although"],["ghb","withdrawal"],["withdrawal","reports"],["needed","ketamine"],["ketamine","risks"],["risks","ketamine"],["ketamine","use"],["recreational","drug"],["deaths","globally"],["england","wales"],["include","accidental"],["accidental","poisonings"],["traffic","accidents"],["nancy","lee"],["lee","one"],["ketamine","casualties"],["vice","online"],["online","july"],["july","see"],["see","accessed"],["accessed","june"],["among","young"],["crown","drug"],["involving","ketamine"],["england","wales"],["mortality","team"],["population","sources"],["sources","division"],["division","office"],["national","statistics"],["crown","uk"],["uk","see"],["see","accessed"],["accessed","june"],["increased","regulation"],["upgrading","ketamine"],["class","c"],["class","banned"],["banned","substance"],["dixon","ketamine"],["ketamine","death"],["destroyed","family"],["family","athe"],["athe","telegraph"],["telegraph","online"],["online","february"],["february","see"],["see","accessed"],["accessed","june"],["sufficiently","high"],["ketamine","users"],["users","may"],["may","experience"],["k","hole"],["visual","auditory"],["auditory","hallucinations"],["hallucinations","acute"],["acute","treatment"],["treatment","file"],["file","woodstock"],["woodstock","festival"],["thumb","right"],["right","px"],["music","fan"],["drug","overdose"],["overdose","athe"],["athe","woodstock"],["woodstock","music"],["music","festival"],["placed","onto"],["main","treatment"],["individuals","facing"],["facing","acute"],["acute","medical"],["medical","issues"],["issues","due"],["club","drug"],["drug","consumption"],["maintenance","gahlinger"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["jun","since"],["since","club"],["club","drug"],["drug","users"],["users","may"],["consumed","multiple"],["multiple","drugs"],["drug","adulterated"],["medical","team"],["cardiac","monitoring"],["monitoring","pulse"],["comprehensive","chemistry"],["chemistry","panel"],["possible","underlying"],["underlying","disorders"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["doctors","use"],["use","activated"],["activated","charcoal"],["system","gahlinger"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["jun","cooling"],["club","drug"],["gahlinger","paul"],["paul","club"],["club","drugs"],["drugs","mdma"],["mdma","gamma"],["gamma","hydroxybutyrate"],["hydroxybutyrate","ghb"],["ghb","rohypnol"],["fam","physician"],["physician","jun"],["disco","club"],["club","scene"],["thriving","drug"],["drug","subculture"],["subculture","particularly"],["would","enhance"],["enhance","thexperience"],["says","thathe"],["thathe","relationship"],["disco","culture"],["enough","nicknamed"],["nicknamed","blow"],["nitrite","poppers"],["nitrite","collectively"],["collectively","known"],["clear","yellow"],["effects","nitrites"],["nitrites","originally"],["originally","came"],["came","asmall"],["asmall","glass"],["glass","capsules"],["name","poppers"],["poppers","buthis"],["buthis","form"],["rarely","found"],["drug","became"],["became","popular"],["uk","first"],["disco","club"],["club","scene"],["club","drug"],["motor","coordination"],["coordination","k"],["k","according"],["massive","quantities"],["discoth","ques"],["ques","throughouthe"],["club","drugs"],["drugs","expanded"],["raves","grew"],["like","discos"],["discos","raves"],["raves","made"],["made","use"],["lights","loud"],["loud","techno"],["techno","electronic"],["electronic","dance"],["dance","music"],["user","experience"],["club","drugs"],["drugs","especially"],["especially","designer"],["designer","drug"],["drug","designer"],["designer","drugs"],["drugs","referred"],["alcohol","free"],["free","andrug"],["andrug","free"],["free","anothereason"],["drug","producers"],["producers","create"],["create","new"],["new","drugs"],["australia","club"],["club","drugs"],["drugs","used"],["dance","clubs"],["nightclubs","one"],["ten","australians"],["lifetime","however"],["however","one"],["used","mdma"],["past","months"],["months","one"],["hundred","australians"],["used","ketamine"],["total","ofive"],["ofive","hundred"],["past","months"],["months","one"],["two","hundred"],["hundred","australians"],["used","ghb"],["one","thousand"],["past","months"],["months","regarding"],["regarding","thentire"],["thentire","australian"],["australian","population"],["population","seven"],["seven","per"],["per","cent"],["used","cocaine"],["two","per"],["per","cent"],["past","months"],["months","australia"],["australia","defence"],["defence","force"],["era","generations"],["young","adults"],["mature","aged"],["aged","people"],["commonly","used"],["sold","nightclubs"],["pubs","throughout"],["throughout","australia"],["australia","see"],["see","also"],["also","party"],["party","pills"],["pills","rave"],["rave","nightclub"],["nightclub","route"],["first","cocaine"],["cocaine","bar"],["bar","furthereading"],["furthereading","hunt"],["hunt","geoffrey"],["youth","drugs"],["nightlife","routledge"],["cynthia","r"],["closer","look"],["club","drugs"],["bill","drugs"],["drugs","clubs"],["young","people"],["people","sociological"],["public","health"],["health","perspectives"],["perspectives","routledge"],["routledge","references"],["references","externalinks"],["national","institute"],["reference","category"],["category","dance"],["dance","culture"],["culture","category"],["category","drug"],["drug","culture"],["culture","category"],["category","disco"],["disco","category"],["category","rave"],["rave","category"],["category","stimulants"],["stimulants","category"],["category","psychedelic"],["psychedelic","drugs"],["drugs","category"],["category","dissociative"],["dissociative","drugs"],["drugs","category"],["trends","category"],["trends","category"],["trends","category"],["trends","category"],["trends","category"],["trends","category"],["category","nightclubs"],["nightclubs","category"],["category","musical"],["musical","subcultures"]],"all_collocations":["mdma pills","e club","club drugs","drugs also","also called","called rave","rave drugs","party drugs","loosely defined","defined category","recreational drug","disco th","th ques","dance club","electronic dance","dance music","music parties","reference unlike","unlike many","chemical properties","properties club","club drugs","drugs category","user goes","drugs club","club drugs","generally used","young adults","drugs also","mdma ketamine","ketamine lsd","lsd rather","cannabis plant","plant file","left px","club drug","drug users","users take","believe thathe","thathe substances","substances effects","effects enhance","enhance thexperience","electronic dance","pulsating lights","colored projected","projected images","massive sound","sound systems","club drugs","drugs range","mdma ecstasy","ecstasy c","c b","nitrous oxide","quaaludes gamma","acid ghb","ghb rohypnol","psychedelic drug","drug psychedelic","psychedelic drugs","drugs lsd","lsd n","dmt dancers","night parties","mod subculture","uk whose","whose members","members took","took amphetamine","disco scene","club drugs","choice shifted","stimulant cocaine","disco clubs","clubs thathe","thathe drug","many clubs","clubs club","club drugs","drugs vary","regions even","clubs though","synthetic drugs","drugs used","ecstasy include","benzylpiperazine bzp","generally used","used outside","legal status","club drugs","drugs varies","varies according","often sold","leather polish","nitrous oxide","whipped cream","club drugsuch","generally illegal","illegal unless","club drugs","almost always","always illegal","using club","club drugs","drugs including","including legal","legal drugs","drugs like","like alcohol","illegal drugs","drugs like","like benzylpiperazine","benzylpiperazine bzp","bzp using","using drugs","injury due","falls dangerous","unsafe sex","user drives","drives injury","death due","club drugsuch","regular use","user craving","club drugs","club drugs","cause adverse","adverse health","health effects","mdma use","night dance","dance club","club setting","setting file","file mdma","px mdma","mdma capsules","capsules mdma","mdma ecstasy","popular club","club drug","electronic dance","dance music","music scenes","including e","molly mdma","often considered","choice within","rave culture","also used","clubs festivals","festivals house","house party","party house","house parties","free party","party free","free parties","sensory effects","often highly","withe drug","drug psychedelic","psychedelic quality","effect offers","offers multiple","multiple reasons","rave setting","users enjoy","reducing effects","effects drug","others use","party fuel","night dancing","dancing mdma","users less","less frequently","stimulants typically","typically less","per week","week effects","effects include","include g","perceptions particularly","particularly light","light music","emotional warmth","warmth mdma","mdma isometimes","isometimes taken","psilocybin mushroom","c b","taking mdma","cooling sensation","sensation stimulants","stimulants file","file blue","blue crystal","left px","blue form","club drugs","drugs various","used cocaine","drugs enable","enable clubgoers","night cocaine","stimulant effects","thirty minutes","effects depends","administration cocaine","form ofine","ofine white","white powder","powder bitter","effect cocaine","cocaine increases","motor activity","activity feelings","cocaine stimulant","stimulant effects","amphetamine however","much shorter","shorter lasting","pills capsules","capsules methaqualone","methaqualone quaaludes","quaaludes became","became increasingly","increasingly popular","recreational drug","known variously","uk australiand","australiand new","new zealand","often used","went dancing","rock clubs","discoth que","que discos","discos one","one slang","slang term","disco era","disco biscuits","manhattan called","called juice","juice bars","served non","non alcoholic","alcoholic drinks","significant minority","cases found","commonly used","used recreational","recreational drugs","south africa","also popular","popular elsewhere","africand india","india commonly","commonly known","cannabis drug","drug cannabis","cannabis smoked","smoked usually","tobacco pipe","pipe smoking","smoking pipe","pipe made","broken bottle","acid ghb","ghb also","also used","date rape","rape drug","intentionally taken","party drug","club drug","drug rohypnol","rohypnol also","also used","date rape","rape drug","causes intoxication","cognitive functions","may appear","concentration confusion","next day","previously mentioned","mentioned selection","generally categorized","club drugs","united states","distinction probably","accurate correlation","real usage","usage patterns","example alcoholic","alcoholic beverages","beverages beer","beer wine","wine hard","hard liquor","club drugs","drugs even","even though","probably used","clubs particularly","liquor licensed","licensed nightclub","psychedelic drugs","drugs file","file pink","pink elephants","thumb lsd","widely known","psychedelic drug","often features","features psychedelic","psychedelic art","art work","paper drugs","psychedelic drug","drug medication","medication whose","whose primary","primary action","perception typically","causing thought","visual auditory","auditory changes","consciousness psychedelic","psychedelic drugs","drugs induce","consciousness brain","retrieved major","major psychedelic","psychedelic drugs","drugs include","lsd n","psilocybin mushroom","induce states","altered consciousness","affecthe mind","ordinary consciousness","relaxed state","psychedelic experience","often compared","non ordinary","ordinary forms","yoga religious","religious ecstasy","ecstasy dream","dream ing","death experience","psychedelic drugs","drugs fall","fall intone","three following","following families","many psychedelic","psychedelic drugs","illegal worldwide","single convention","conventions unless","unless used","context despite","regulations recreational","recreational use","common including","edm concerts","festivals file","left px","small bottles","drug inhaled","dance clubs","provide poppers","small bottles","high thathey","nitrite originally","originally came","came asmall","asmall glass","glass capsules","nickname poppers","drug became","became popular","us first","disco club","club scene","dancers used","enhance thexperience","loud bass","bass heavy","heavy disco","drug became","became popular","electronic dance","dance music","music scenes","disco clubgoers","clubgoers rave","rave participants","edm enthusiasts","enthusiasts used","enhance thexperience","pulsating music","lights recreational","recreational use","nitrous oxide","oxide nitrous","nitrous oxide","feeling like","may cause","cause slight","medical grade","grade nitrous","nitrous oxide","licensed health","health care","care providers","providers recreational","recreational users","users often","often obtain","nitrous oxide","oxide used","whipped cream","cans nitrous","nitrous oxide","oxide users","users also","also buy","buy small","nitrous oxide","oxide intended","restaurant whipped","whipped cream","crack open","gas users","users typically","typically transfer","plastic bag","balloon prior","file g","px ketamine","street drug","drug trade","long history","popular substances","substances used","new york","york club","club kids","kids club","club kid","kid scene","scene ketamine","ketamine produces","dissociative state","state characterized","physical body","thexternal world","effects include","include hallucinations","hallucinations changes","distances relative","relative scale","scale color","visual system","update whathe","whathe user","c b","club drugs","drugs due","psychedelic nature","chemical relationship","mdma bbc","psychedelic x","x drugs","become common","synthetic drugs","drugs used","ecstasy include","benzylpiperazine bzp","generally used","used outside","though far","far less","less common","club drugs","drugs like","like mdma","mdma ketamine","ketamine lsd","lsd heroin","new york","york city","clubs marijuanand","marijuanand related","related cannabis","cannabis products","ketamine users","users mix","marijuanand smoke","desired effects","effects although","club drug","different effects","clubs reflects","perceived contribution","user experience","experience dancing","lights flash","musiclub drug","drug users","generally taking","enhance social","sensory stimulation","dance club","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","club drugs","drugs popularity","popularity stems","intoxicated feeling","cocaine give","night many","many drugs","drugs produce","physical sensation","sexual pleasure","club drugsuch","mdma c","c b","pulsating lights","dance music","cause hallucinations","unusual perception","perception effects","effects risks","although research","research continues","full scope","illegal drugs","drugs regular","unsafe use","club drugs","widely accepted","damaging sideffects","addiction increased","increased heart","heart rate","steep increase","body temperature","temperature increase","blood pressure","common sideffects","methamphetamine breathing","respiratory issues","common sideffects","also make","many club","club drugs","drugs drug","drug cravings","sleep deprivation","come downs","depression like","like symptoms","worst instance","instance club","club drugs","drugs result","cardiac arrest","water intoxication","intoxication due","heart rate","exact composition","causing users","measured rate","deaths caused","ecstasy across","environmental factors","factors may","may also","also affecthe","club drugs","drugs drug","drug interactions","interactions file","file drug","tram car","club drug","drug users","users take","take multiple","multiple drugs","drugs athe","time club","club drugs","drugs often","taken together","effect gahlinger","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","jun drug","drug interactions","club drug","drug users","liquor licensed","licensed nightclub","nightclub users","users may","may mix","mix pills","mdma c","c b","b ghb","ghb ketamine","alcoholic drinksuch","beer wine","wine hard","hard liquor","drinking alcohol","alcohol ketamine","ketamine often","heroin gahlinger","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","jun injury","death due","risky behaviour","club drugs","one shared","legal drugs","drugs like","like alcohol","counter drugs","drugs taking","taking large","large amounts","illegal drugs","drugs benzylpiperazine","benzylpiperazine bzp","bzp amphetamine","injured engage","unsafe sex","accident resulting","resulting injury","death due","righthumb px","tablet sold","mdma instead","contained benzylpiperazine","benzylpiperazine bzp","bzp methamphetamine","many cases","cases illegal","illegal club","club drugs","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","certain illegal","illegal drug","facthe dealer","pills capsules","example mdma","mdma ecstasy","illegal underground","underground labs","much easier","household chemicals","counter cold","often methamphetamine","methamphetamine powder","powder similarly","drug dealers","top chemists","lsd instead","often contain","less expensive","available illegal","illegal drug","another drug","higher level","level drug","dealer may","fact believe","believe thathe","lsd cutting","left px","cocaine adulterated","fruit flavoured","flavoured powder","many illegal","illegal drugs","drugs especially","drugs cocaine","stimulants often","caffeine powder","powder added","outhe powder","less expensive","expensive cocaine","substances used","cut illegal","illegal drugs","illegal drug","milk sugar","white powder","powder often","often added","heroin even","even fairly","illegal drugs","drugs though","illegal drug","drug administration","sometimes added","example flavoured","flavoured cocaine","flavoured powder","powder added","drug whereas","main goal","illegal drugs","harmful substance","fairly low","low impact","impact product","amphetamine pills","make lower","lower quality","quality illegal","illegal drug","illegal drugs","drugs give","psychedelic experience","earlier stated","dealers add","nicknamed wet","wet marijuana","low grade","grade low","effects drug","drug researchers","researchers learned","tested us","us teens","stated thathey","single illegal","illegal drug","drug marijuanand","teens tested","tested positive","small quantity","mdma powder","sell spike","less expensive","produce methamphetamine","methamphetamine powder","powder street","street cocaine","often adulterated","common methamphetamine","cosmetic base","base without","without known","known effect","club drugs","addictive nitrous","nitrous oxide","addictive however","club drugs","addictive amphetamine","amphetamine heavily","heavily used","used recreational","recreational fashion","fashion pose","serious risk","addiction cocaine","cocaine addiction","psychological desire","use cocaine","cocaine regularly","regularly cocaine","cocaine overdose","overdose may","may result","brain damage","blood vessels","brain causing","causing stroke","theart causing","heart attacks","attacks cocaine","cocaine use","use cocaine","cocaine creates","high amounts","large unsafe","cause mood","mood swings","high blood","blood pressure","fast heart","heart rate","rate panic","panic attacks","attacks cognitive","crash range","anxiety weakness","weakness psychological","physical weakness","weakness pain","craving withdrawal","withdrawal cravings","cravings file","file ghb","video warning","warning abouthe","abouthe dangers","ghb addiction","addiction occurs","normal balance","control rewards","rewards memory","ultimately leading","applied studies","studies national","national survey","drug use","health ages","ages years","american heart","heart association","association johns","johns hopkins","hopkins university","university study","study principles","addiction medicine","medicine psychology","psychology today","today national","national gambling","gambling impact","impact commission","commission study","study national","national council","problem gambling","gambling illinois","illinois institute","addiction recovery","recovery society","sexual health","journal addiction","brain time","time although","ghb withdrawal","withdrawal reports","needed ketamine","ketamine risks","risks ketamine","ketamine use","recreational drug","deaths globally","england wales","include accidental","accidental poisonings","traffic accidents","nancy lee","lee one","ketamine casualties","vice online","online july","july see","see accessed","accessed june","among young","crown drug","involving ketamine","england wales","mortality team","population sources","sources division","division office","national statistics","crown uk","uk see","see accessed","accessed june","increased regulation","upgrading ketamine","class c","class banned","banned substance","dixon ketamine","ketamine death","destroyed family","family athe","athe telegraph","telegraph online","online february","february see","see accessed","accessed june","sufficiently high","ketamine users","users may","may experience","k hole","visual auditory","auditory hallucinations","hallucinations acute","acute treatment","treatment file","file woodstock","woodstock festival","music fan","drug overdose","overdose athe","athe woodstock","woodstock music","music festival","placed onto","main treatment","individuals facing","facing acute","acute medical","medical issues","issues due","club drug","drug consumption","maintenance gahlinger","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","jun since","since club","club drug","drug users","users may","consumed multiple","multiple drugs","drug adulterated","medical team","cardiac monitoring","monitoring pulse","comprehensive chemistry","chemistry panel","possible underlying","underlying disorders","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","doctors use","use activated","activated charcoal","system gahlinger","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","jun cooling","club drug","gahlinger paul","paul club","club drugs","drugs mdma","mdma gamma","gamma hydroxybutyrate","hydroxybutyrate ghb","ghb rohypnol","fam physician","physician jun","disco club","club scene","thriving drug","drug subculture","subculture particularly","would enhance","enhance thexperience","says thathe","thathe relationship","disco culture","enough nicknamed","nicknamed blow","nitrite poppers","nitrite collectively","collectively known","clear yellow","effects nitrites","nitrites originally","originally came","came asmall","asmall glass","glass capsules","name poppers","poppers buthis","buthis form","rarely found","drug became","became popular","uk first","disco club","club scene","club drug","motor coordination","coordination k","k according","massive quantities","discoth ques","ques throughouthe","club drugs","drugs expanded","raves grew","like discos","discos raves","raves made","made use","lights loud","loud techno","techno electronic","electronic dance","dance music","user experience","club drugs","drugs especially","especially designer","designer drug","drug designer","designer drugs","drugs referred","alcohol free","free andrug","andrug free","free anothereason","drug producers","producers create","create new","new drugs","australia club","club drugs","drugs used","dance clubs","nightclubs one","ten australians","lifetime however","however one","used mdma","past months","months one","hundred australians","used ketamine","total ofive","ofive hundred","past months","months one","two hundred","hundred australians","used ghb","one thousand","past months","months regarding","regarding thentire","thentire australian","australian population","population seven","seven per","per cent","used cocaine","two per","per cent","past months","months australia","australia defence","defence force","era generations","young adults","mature aged","aged people","commonly used","sold nightclubs","pubs throughout","throughout australia","australia see","see also","also party","party pills","pills rave","rave nightclub","nightclub route","first cocaine","cocaine bar","bar furthereading","furthereading hunt","hunt geoffrey","youth drugs","nightlife routledge","cynthia r","closer look","club drugs","bill drugs","drugs clubs","young people","people sociological","public health","health perspectives","perspectives routledge","routledge references","references externalinks","national institute","reference category","category dance","dance culture","culture category","category drug","drug culture","culture category","category disco","disco category","category rave","rave category","category stimulants","stimulants category","category psychedelic","psychedelic drugs","drugs category","category dissociative","dissociative drugs","drugs category","trends category","trends category","trends category","trends category","trends category","trends category","category nightclubs","nightclubs category","category musical","musical subcultures"],"new_description":"thumb right px selection mdma pills ecstasy e club_drugs also_called rave drugs party drugs loosely defined category recreational drug associated disco th ques nightclub dance club electronic_dance_music parties rave reference unlike many according chemical properties club_drugs category convenience drugs locations consumed user goes influence drugs club_drugs generally used teens young adults group drugs also drug mdma ketamine lsd rather sourced plants marijuana comes cannabis plant file thumb left_px club_drug_users take drugs believe thathe substances effects enhance thexperience rave electronic_dance pulsating lights colored projected images massive sound_systems club_drugs range mdma ecstasy c b nitrous_oxide poppers stimulant amphetamine cocaine quaaludes gamma acid ghb rohypnol psychedelic drug psychedelic drugs lsd n dmt dancers night parties used drugs stimulating mod subculture uk whose members took amphetamine stay night disco scene club_drugs choice shifted stimulant cocaine quaaludes common disco clubs thathe drug biscuits methamphetamine sold used many clubs club_drugs vary country region regions even heroin morphine sold clubs though practice relatively states synthetic drugs used clubs sold ecstasy include benzylpiperazine bzp generally used outside us legal status club_drugs varies according region drug drugs legal poppers often sold room leather polish get laws nitrous_oxide legal used whipped cream club_drugsuch amphetamine generally illegal unless individual prescription doctor club_drugs almost always illegal cocaine range risks using club_drugs drugs including legal drugs like alcohol illegal_drugs like benzylpiperazine bzp using drugs increase risk injury due falls dangerous behaviour unsafe sex user drives injury death due club_drugsuch cocaine addictive regular use lead user craving drug club_drugs associated club_drugs cause adverse health effects harmful user associated mdma use night dance club setting file mdma thumb right px mdma capsules mdma ecstasy popular club_drug rave electronic_dance_music scenes known many including e molly mdma often considered drug choice within rave_culture also_used clubs festivals house party house parties free party free parties sensory effects music lighting often highly withe drug psychedelic quality amphetamine effect offers multiple reasons appeal users rave setting users enjoy feeling mass reducing effects drug others use party fuel night dancing mdma taken users less frequently stimulants typically less per week effects include g enjoyment dancing perceptions particularly light music touch feelings emotional warmth mdma isometimes taken conjunction drugsuch psilocybin mushroom c b use products taking mdma cooling sensation stimulants file_blue crystal thumb left_px blue form crystal number stimulants used club_drugs various used cocaine drugs enable clubgoers dance night cocaine powerful stimulant effects last fifteen thirty minutes hour duration cocaine effects depends route administration cocaine form ofine white powder bitter taste inhaled causes effect cocaine increases feelings well energy motor activity feelings competence cocaine stimulant effects similar amphetamine however tend much shorter lasting prominent file thumb right px variety pills capsules methaqualone quaaludes became_increasingly_popular recreational drug late known variously us uk australiand_new_zealand drug often_used hippies people went dancing rock clubs discoth_que discos one slang_term quaaludes disco era disco biscuits mid bars manhattan called juice bars served non_alcoholic drinks catered people liked dance methaqualone methaqualone significant minority cases found inert contain methaqualone one commonly_used recreational drugs south_africa also_popular elsewhere africand india commonly_known pills mixture crushed cannabis drug cannabis smoked usually tobacco pipe smoking pipe made neck broken bottle gamma acid ghb also_used date rape drug case victim drink intentionally taken users party drug club_drug rohypnol also_used date rape drug causes intoxication cognitive functions may appear lack concentration confusion amnesia described next_day also tother drugs previously mentioned selection drugs generally categorized club_drugs mediand united_states distinction probably accurate correlation real usage patterns example alcoholic_beverages beer wine hard liquor generally included category club_drugs even_though probably used thany drug clubs particularly liquor licensed nightclub bar psychedelic drugs file pink elephants parade thumb lsd widely known psychedelic drug often features psychedelic art work paper drugs psychedelic drug drug medication whose primary action alter perception typically causing thought visual auditory changes state consciousness psychedelic drugs induce state consciousness brain retrieved major psychedelic drugs include lsd n dmt psilocybin mushroom noto confused drugsuch induce states altered consciousness tend affecthe mind ways result thexperience different ordinary consciousness cause feeling produce relaxed state psychedelic experience often compared non ordinary forms trance yoga religious ecstasy dream ing death experience exceptions psychedelic drugs fall intone three following families chemical many psychedelic drugs illegal worldwide single convention drugs conventions unless used medical context despite regulations recreational use common including rave edm concerts festivals file thumb left_px selection small bottles poppers drug inhaled dance clubs rush provide poppers small bottles drugs inhaled clubgoers rush high thathey create nitrite originally came asmall glass capsules open led nickname poppers drug became_popular us first disco club scene dancers used drug rush provides perceived enhance thexperience dancing loud bass heavy disco drug became_popular mid rave electronic_dance_music scenes disco clubgoers rave participants edm enthusiasts used drug rush high perceived enhance thexperience dancing pulsating music lights recreational use nitrous_oxide nitrous_oxide dissociative cause feeling like world real emotion cases may cause slight mild effect medical grade nitrous_oxide available dentists licensed health_care providers recreational users often obtain drug nitrous_oxide used whipped cream cans nitrous_oxide users also buy small nitrous_oxide intended use restaurant whipped cream crack open gas users typically transfer gas plastic bag balloon prior file g thumb right px ketamine street drug trade form ketamine dissociative long history used clubs one popular substances used new_york club kids club kid scene ketamine produces dissociative state characterized sense detachment one physical body thexternal world known effects include hallucinations changes perception distances relative scale color time well visual system ability update whathe user synthetic c c b referred club_drugs due stimulating psychedelic nature chemical relationship mdma bbc late psychedelic x drugs nbome especially nbome become common raves europe drug states synthetic drugs used clubs sold ecstasy include benzylpiperazine bzp generally used outside us though far less_common club_drugs like mdma ketamine lsd heroin found new_york city clubs marijuanand related cannabis products used clubgoers example rohypnol ketamine users mix marijuanand smoke desired effects although club_drug different effects use clubs reflects perceived contribution user experience dancing beat lights flash musiclub drug_users generally taking drugs enhance social sensory stimulation dance club paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun club_drugs popularity stems ability lowered intoxicated feeling drugsuch amphetamine cocaine give dancer energy dance night many drugs produce feeling physical sensation increased sexual pleasure club_drugsuch mdma c b thexperience nightclub pulsating lights dance_music cause hallucinations unusual perception effects risks although research continues full scope theffects illegal_drugs regular unsafe use club_drugs widely accepted damaging sideffects carry risk addiction increased heart rate steep increase body temperature increase blood pressure common sideffects methamphetamine breathing respiratory issues confusion common sideffects also make user even withdrawal also risk many club_drugs drug cravings user body complicated sleep deprivation result come downs result depression like symptoms worst instance club_drugs result death user cardiac arrest water intoxication due increase heart rate induced strength exact composition causing users wide measured rate deaths caused drugsuch ecstasy across user environmental factors may_also affecthe club_drugs drug interactions file drug tallinn thumb right px teen tram car drug club_drug_users take multiple drugs athe_time club_drugs often taken together alcohol drugs enhance effect gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun drug interactions cause club_drug_users liquor licensed nightclub users may mix pills mdma c b ghb ketamine consumption alcoholic_drinksuch beer wine hard liquor rohypnol dangerous take drinking alcohol ketamine often taken trail methamphetamine cocaine morphine heroin gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun injury death due risky behaviour club_drugs one shared drugs legal drugs like alcohol counter drugs taking large amounts syrup illegal_drugs benzylpiperazine bzp amphetamine etc user likely injured engage dangerous behaviour unsafe sex drives accident resulting injury death due file righthumb_px tablet sold mdma contained mdma instead contained benzylpiperazine bzp methamphetamine caffeine many_cases illegal club_drugs gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun dealer tell certain illegal_drug sale facthe dealer pills capsules bags powder contain chemical example mdma ecstasy hard illegal underground labs methamphetamine much easier made household chemicals counter cold containing asuch mdma often methamphetamine powder similarly drug dealers lsd drug top chemists training often lsd instead often contain veterinary produces hallucinations humans cases dealer intentionally less expensive available illegal_drug another drug cases made higher level drug organization dealer may fact believe thathe product mdma lsd cutting file thumb left_px cocaine adulterated fruit flavoured powder withexception marijuana typically many illegal_drugs especially come powder form cut substances drugs cocaine stimulants often caffeine powder added increases dealer profit outhe powder less expensive cocaine amphetamine used making product substances used cut illegal_drugs harmful used pad bulk quantity illegal_drug increase milk sugar white powder often added heroin even fairly added illegal_drugs though routes illegal_drug administration injection drugs sometimes added make product appealing example flavoured cocaine flavoured powder added drug whereas main goal cutting bulk quantity illegal_drugs harmful substance fairly low_impact product caffeine amphetamine pills goal try make lower quality illegal_drug lower source illegal_drugs give user type high psychedelic experience earlier stated marijuana often dealers add marijuana nicknamed wet marijuana adding psychedelic low grade low marijuana convert cannabis effects drug researchers learned dealers marijuana tested us teens stated_thathey used single illegal_drug marijuanand teens tested positive marijuanand dealers small quantity mdma powder sell spike less expensive easier produce methamphetamine powder street cocaine often adulterated cut caffeine amphetamine heroin common methamphetamine cosmetic base without known effect include sodium sodium sodium mixture caffeine sodium club_drugs addictive nitrous_oxide addictive however club_drugs addictive amphetamine heavily used recreational fashion pose serious risk addiction cocaine addiction psychological desire use cocaine regularly cocaine overdose may result brain damage blood vessels brain causing stroke theart causing heart attacks cocaine use effects use cocaine creates high amounts energy taken large unsafe possible cause mood swings high blood pressure fast heart rate panic attacks cognitive cognitive personality symptoms cocaine known drugs crash range severe depression anxiety weakness psychological physical weakness pain craving withdrawal cravings file ghb thumb right px video warning abouthe dangers ghb addiction occurs use normal balance brain control rewards memory ultimately leading drug health human office applied studies national survey drug_use health ages years american heart association johns hopkins university study principles addiction medicine psychology today national gambling impact commission study national council problem gambling illinois institute addiction recovery society advancement sexual health journal addiction brain time although reported due ghb withdrawal reports needed ketamine risks ketamine use recreational drug deaths globally deaths england_wales years include accidental poisonings traffic accidents max nancy lee one britain ketamine casualties vice online july see accessed june majority deaths among young crown drug involving ketamine england_wales report mortality team population sources division office national statistics crown uk see accessed june led increased regulation upgrading ketamine class c class banned substance uk dixon ketamine death public act destroyed family athe telegraph online february see accessed june sufficiently high ketamine users may experience called k hole state extreme visual auditory hallucinations acute treatment file woodstock festival thumb right px music fan drug overdose athe woodstock music_festival placed onto main treatment individuals facing acute medical issues due club_drug consumption maintenance gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun since club_drug_users may consumed multiple drugs mix drugs alcohol drug adulterated chemicals hard doctors overdose treat even user conscious tell medical team drug think took cardiac monitoring pulse performance comprehensive chemistry panel check renal possible underlying disorders preventing gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun doctors use activated charcoal drugs system gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun cooling victim recommended avoid victim rohypnol given club_drug gahlinger paul club_drugs mdma gamma hydroxybutyrate ghb rohypnol ketamine fam physician jun mid late disco club scene thriving drug subculture particularly drugs would enhance thexperience dancing music lights cocaine paul cocaine century pp says thathe relationship cocaine disco culture cannot enough nicknamed blow nitrite poppers nitrite collectively known nitrites clear yellow inhaled effects nitrites originally came asmall glass capsules open led nitrites name poppers buthis form drug rarely found uk drug became_popular uk first disco club scene dance available quaaludes described club_drug motor coordination k according peter massive quantities drugs discoth_ques throughouthe use club_drugs expanded parties raves raves grew popularity late late drug mdma like discos raves made use lights loud techno electronic_dance_music enhance user experience scheduling club_drugs especially designer drug designer drugs referred advertised alcohol_free andrug free anothereason drug producers create new drugs laws australia club_drugs used australia variety dance clubs nightclubs one ten australians used least lifetime however one thirty used mdma past months one hundred australians used ketamine least lives total ofive hundred past months one two hundred australians used ghb least lives one one thousand past months regarding thentire australian population seven per_cent australians used cocaine least lifetime two per_cent australians used past months australia defence force era generations teens young adults mature aged people drugs commonly_used sold nightclubs pubs throughout australia see_also party pills rave nightclub route world first cocaine bar furthereading hunt geoffrey molly evans youth drugs nightlife routledge cynthia r night closer look club_drugs rave house bill drugs clubs young_people sociological public_health perspectives routledge references_externalinks national institute drug reference category_dance culture_category drug culture_category disco category rave category category category category category stimulants category psychedelic drugs category dissociative drugs category fads trends category fads trends category fads trends category fads trends category fads trends category fads trends category_nightclubs_category musical subcultures"},{"title":"Clubbing (subculture)","description":"clubbing also known as club culturelated to rave raving is the custom of visiting and gathering socially at nightclub s discotheques disco s or just clubs and festivals that includesocializing listening to music dancing drinking alcoholic beverage alcohol and sometimes using recreational drugs in most cases it is done to hear new music on larger systems than one would usually have in their domicile or for socializing and meeting new people clubbing and raves have historically referred to grass roots organized anti establishment and unlicensed all night dance party parties typically featuring electronically producedance music such as techno house music house trance music trance andrum and bassa rave review conceptual interests and analytical shifts in research on rave culture tammy l anderson and philip r kavanaugh university of delaware musiclub music varies from a wide range of electronic dance music edm which is a form of electronic music such as house music house and especially deep house techno drum and bass hip hop music hip hop electro music electro trance music trance funk breakbeat dubstep disco music is usually performed by djs who are playing tunes on turntables cd players or laptops using different additional techniques to express themselvesuch as beat juggling scratching beatmatching needle drop djing needle drop back spinning phrasing dj phrasing and other tricks and gigs depending on the type of music they are playing they can mix twor more prerecorded tunes athe same time or sometimes music is performed as a live act by musicians who play the sounds over a basic matrix sometimes combined with a vjing performance history clubbing is rooted in disco wave of the s but began evolving in the s with dj ing and rave party raves the subculture took shape in the late s and early s at underground rave parties in the us and london reynolds numerousocial changes have however occurred since then to transform thisubculture into a mainstreamovement youth oriented lifestyle and global activity see bennett reynolds hill electronic dance music and youth culturexploring change and consequence in london england tammy l anderson phd principal investigator and associate professor department of sociology and criminal justice university of delaware from the beginning clubbing while it was more rave subculture has involved mostlyounger people between and years of age a subculturemerged around raves featuring an ethos of peace love unity and respecthe plur doctrine rooted in community and empathy for others hill hutson reynolds today however tammy l anderson says the rave scene has given way to a more nightclubased electronic dance music edm scene featuring an older years of age crowd which very much involves the consumption of alcoholelectronic dance music and youth culturexploring change and consequence in london england tammy l anderson phd principal investigator and associate professor department of sociology and criminal justice university of delawareferences category subcultures category nightclubs category djing category electronic dance musicategory drug culture category drinking culture category articles created via the article wizard category dance culture category electronic music festivals","main_words":["clubbing","also_known","club","rave","raving","custom","visiting","gathering","socially","nightclub","disco","clubs","festivals","music","dancing","drinking","alcoholic_beverage","alcohol","sometimes","using","recreational","drugs","cases","done","hear","new","music","larger","systems","one","would","usually","socializing","meeting","new","people","clubbing","raves","historically","referred","grass","roots","organized","anti","establishment","unlicensed","night","dance","party","parties","typically","featuring","music","techno","house_music","house","trance_music","trance","rave","review","conceptual","interests","analytical","shifts","research","rave_culture","tammy","l","anderson","philip","r","university","delaware","musiclub","music","varies","wide_range","electronic_dance_music","edm","form","electronic_music","house_music","house","especially","deep","house","techno","drum","bass","hip_hop","music","hip_hop","electro","music","electro","trance_music","trance","funk","breakbeat","disco","music","usually","performed","djs","playing","tunes","players","using","different","additional","techniques","express","beat","needle","drop","djing","needle","drop","back","spinning","tricks","gigs","depending","type","music","playing","mix","twor","tunes","athe_time","sometimes","music","performed","live","act","musicians","play","sounds","basic","sometimes","combined","performance","history","clubbing","rooted","disco","wave","began","evolving","ing","rave","party","raves","subculture","took","shape","late","early","underground","rave","parties","us","london","reynolds","changes","however","occurred","since","transform","youth","oriented","lifestyle","global","activity","see","bennett","reynolds","hill","electronic_dance_music","youth","change","consequence","london_england","tammy","l","anderson","phd","principal","associate","professor","department","sociology","criminal","justice","university","delaware","beginning","clubbing","rave","subculture","involved","people","years","age","around","raves","featuring","peace","love","unity","respecthe","rooted","community","others","hill","reynolds","today","however","tammy","l","anderson","says","rave_scene","given","way","electronic_dance_music","edm","scene","featuring","older","years","age","crowd","much","involves","consumption","dance_music","youth","change","consequence","london_england","tammy","l","anderson","phd","principal","associate","professor","department","sociology","criminal","justice","university","category","subcultures","category_nightclubs_category","djing","drug","culture_category","articles_created_via","music_festivals"],"clean_bigrams":[["clubbing","also"],["also","known"],["rave","raving"],["gathering","socially"],["music","dancing"],["dancing","drinking"],["drinking","alcoholic"],["alcoholic","beverage"],["beverage","alcohol"],["sometimes","using"],["using","recreational"],["recreational","drugs"],["hear","new"],["new","music"],["larger","systems"],["one","would"],["would","usually"],["meeting","new"],["new","people"],["people","clubbing"],["historically","referred"],["grass","roots"],["roots","organized"],["organized","anti"],["anti","establishment"],["night","dance"],["dance","party"],["party","parties"],["parties","typically"],["typically","featuring"],["techno","house"],["house","music"],["music","house"],["house","trance"],["trance","music"],["music","trance"],["rave","review"],["review","conceptual"],["conceptual","interests"],["analytical","shifts"],["rave","culture"],["culture","tammy"],["tammy","l"],["l","anderson"],["philip","r"],["delaware","musiclub"],["musiclub","music"],["music","varies"],["wide","range"],["electronic","dance"],["dance","music"],["music","edm"],["electronic","music"],["music","house"],["house","music"],["music","house"],["especially","deep"],["deep","house"],["house","techno"],["techno","drum"],["bass","hip"],["hip","hop"],["hop","music"],["music","hip"],["hip","hop"],["hop","electro"],["electro","music"],["music","electro"],["electro","trance"],["trance","music"],["music","trance"],["trance","funk"],["funk","breakbeat"],["disco","music"],["usually","performed"],["playing","tunes"],["using","different"],["different","additional"],["additional","techniques"],["needle","drop"],["drop","djing"],["djing","needle"],["needle","drop"],["drop","back"],["back","spinning"],["gigs","depending"],["mix","twor"],["tunes","athe"],["sometimes","music"],["live","act"],["sometimes","combined"],["performance","history"],["history","clubbing"],["disco","wave"],["began","evolving"],["rave","party"],["party","raves"],["subculture","took"],["took","shape"],["underground","rave"],["rave","parties"],["london","reynolds"],["however","occurred"],["occurred","since"],["youth","oriented"],["oriented","lifestyle"],["global","activity"],["activity","see"],["see","bennett"],["bennett","reynolds"],["reynolds","hill"],["hill","electronic"],["electronic","dance"],["dance","music"],["london","england"],["england","tammy"],["tammy","l"],["l","anderson"],["anderson","phd"],["phd","principal"],["associate","professor"],["professor","department"],["criminal","justice"],["justice","university"],["beginning","clubbing"],["rave","subculture"],["around","raves"],["raves","featuring"],["peace","love"],["love","unity"],["others","hill"],["reynolds","today"],["today","however"],["however","tammy"],["tammy","l"],["l","anderson"],["anderson","says"],["rave","scene"],["given","way"],["electronic","dance"],["dance","music"],["music","edm"],["edm","scene"],["scene","featuring"],["older","years"],["age","crowd"],["much","involves"],["dance","music"],["london","england"],["england","tammy"],["tammy","l"],["l","anderson"],["anderson","phd"],["phd","principal"],["associate","professor"],["professor","department"],["criminal","justice"],["justice","university"],["category","subcultures"],["subcultures","category"],["category","nightclubs"],["nightclubs","category"],["category","djing"],["djing","category"],["category","electronic"],["electronic","dance"],["dance","musicategory"],["musicategory","drug"],["drug","culture"],["culture","category"],["category","drinking"],["drinking","culture"],["culture","category"],["category","articles"],["articles","created"],["created","via"],["article","wizard"],["wizard","category"],["category","dance"],["dance","culture"],["culture","category"],["category","electronic"],["electronic","music"],["music","festivals"]],"all_collocations":["clubbing also","also known","rave raving","gathering socially","music dancing","dancing drinking","drinking alcoholic","alcoholic beverage","beverage alcohol","sometimes using","using recreational","recreational drugs","hear new","new music","larger systems","one would","would usually","meeting new","new people","people clubbing","historically referred","grass roots","roots organized","organized anti","anti establishment","night dance","dance party","party parties","parties typically","typically featuring","techno house","house music","music house","house trance","trance music","music trance","rave review","review conceptual","conceptual interests","analytical shifts","rave culture","culture tammy","tammy l","l anderson","philip r","delaware musiclub","musiclub music","music varies","wide range","electronic dance","dance music","music edm","electronic music","music house","house music","music house","especially deep","deep house","house techno","techno drum","bass hip","hip hop","hop music","music hip","hip hop","hop electro","electro music","music electro","electro trance","trance music","music trance","trance funk","funk breakbeat","disco music","usually performed","playing tunes","using different","different additional","additional techniques","needle drop","drop djing","djing needle","needle drop","drop back","back spinning","gigs depending","mix twor","tunes athe","sometimes music","live act","sometimes combined","performance history","history clubbing","disco wave","began evolving","rave party","party raves","subculture took","took shape","underground rave","rave parties","london reynolds","however occurred","occurred since","youth oriented","oriented lifestyle","global activity","activity see","see bennett","bennett reynolds","reynolds hill","hill electronic","electronic dance","dance music","london england","england tammy","tammy l","l anderson","anderson phd","phd principal","associate professor","professor department","criminal justice","justice university","beginning clubbing","rave subculture","around raves","raves featuring","peace love","love unity","others hill","reynolds today","today however","however tammy","tammy l","l anderson","anderson says","rave scene","given way","electronic dance","dance music","music edm","edm scene","scene featuring","older years","age crowd","much involves","dance music","london england","england tammy","tammy l","l anderson","anderson phd","phd principal","associate professor","professor department","criminal justice","justice university","category subcultures","subcultures category","category nightclubs","nightclubs category","category djing","djing category","category electronic","electronic dance","dance musicategory","musicategory drug","drug culture","culture category","category drinking","drinking culture","culture category","category articles","articles created","created via","article wizard","wizard category","category dance","dance culture","culture category","category electronic","electronic music","music festivals"],"new_description":"clubbing also_known club rave raving custom visiting gathering socially nightclub disco clubs festivals music dancing drinking alcoholic_beverage alcohol sometimes using recreational drugs cases done hear new music larger systems one would usually socializing meeting new people clubbing raves historically referred grass roots organized anti establishment unlicensed night dance party parties typically featuring music techno house_music house trance_music trance rave review conceptual interests analytical shifts research rave_culture tammy l anderson philip r university delaware musiclub music varies wide_range electronic_dance_music edm form electronic_music house_music house especially deep house techno drum bass hip_hop music hip_hop electro music electro trance_music trance funk breakbeat disco music usually performed djs playing tunes players using different additional techniques express beat needle drop djing needle drop back spinning tricks gigs depending type music playing mix twor tunes athe_time sometimes music performed live act musicians play sounds basic sometimes combined performance history clubbing rooted disco wave began evolving ing rave party raves subculture took shape late early underground rave parties us london reynolds changes however occurred since transform youth oriented lifestyle global activity see bennett reynolds hill electronic_dance_music youth change consequence london_england tammy l anderson phd principal associate professor department sociology criminal justice university delaware beginning clubbing rave subculture involved people years age around raves featuring peace love unity respecthe rooted community others hill reynolds today however tammy l anderson says rave_scene given way electronic_dance_music edm scene featuring older years age crowd much involves consumption dance_music youth change consequence london_england tammy l anderson phd principal associate professor department sociology criminal justice university category subcultures category_nightclubs_category djing category_electronic_dance_musicategory drug culture_category drinking_culture_category articles_created_via article_wizard_category_dance culture_category_electronic music_festivals"},{"title":"Coaching inn","description":"file thegeorgesouthwarkjpg thumb uprighthe george inn southwark is the only galleried coaching inn to survive in london in europe from approximately the mid th century for a period of about years the coaching inn sometimes called a coaching house or staging inn was a vital part of the inland transport infrastructure as an inn serving coach carriage coach travellers just as with roadhouse facility roadhouses in other countries although many survive and some still offer overnight accommodation in general they have lostheir original function and now fulfil much the same function as ordinary pub s there are few motels withe function of refueling to motor vehicles buthe feeding function to horses was required for coaching inn file the cockjpg thumb painting of the first cock hotel in sutton london sutton surrey by thomas rowlandson in coaching inn stabled teams of horse s for stagecoach es and mail coach es and replaced tired teams with fresh teams traditionally they were seven miles apart buthis depended very much on the terrain somengland english towns had as many as ten such inn s and rivalry between them was intense not only for the income from the stagecoach operators but for the revenue for food andrink supplied to the wealthy passengers chipping barnet hertfordshire was one such location and even today boasts an unusually high number of historic pubs along its high street due to its former position the great north road great britain great north road from london to the north of england cock and bull a pair of coaching inns alongside the former a road great britain a road or the old roman road watling street in stony stratford buckinghamshirengland named respectively the cock and the bull are said to have given rise to the term cock and bull stories coaches or the mail coach would stop in the town on their way from london to the north and many a traveller s tall tale would be further embellished as it passed between the two hostelries fuelled by ale and an interested audience hence any suspiciously elaborate tale would become a cock and bull story this a cock and bull story in itself however as there is no evidence to suggesthathis where the phrase originated the phrase first recorded in may instead be an allusion to aesop s fables witheir incredible talking animals as thislightly predates coaching inns the names of the two inns could have been a reference to cock and bull stories as to encourage the passing of such anecdotes within their doors file stonystratford cockandbulljpg thumb upright public house pub signs pub signs of the cock and the bull historic inns examples of historic sites of coaching inns in centralondon include the plaque on the nomura building close to the museum of london london wall commemorating the bull and mouth inn golden cross house opposite st martin s in the fields recalls the golden cross charing cross coaching inn historic inns in oxford include the bear inn oxford bear inn originally established in and the lamb flag oxford lamb flag examples of historic inns in wales include the black boy inn built and the groes inn the black lion in cardigan established is probably the oldest welsh coaching inn see also inn public house stagecoach inn disambiguation coaching era the stage and mail coach travel in and around bath bristol and somerset roy gallop fiducia externalinks coaching inns by anne woodley stagecoaches and coaching inns cottontown photos of examples of what may be considered coaching inns in geographorguk category coaching inns category transport infrastructure category drinking establishments in europe category tourist accommodations","main_words":["file","thumb_uprighthe","george","inn","southwark","coaching_inn","survive","approximately","mid_th","century","period","years","coaching_inn","sometimes_called","coaching","house","inn","vital","part","inland","transport","infrastructure","inn","serving","coach","carriage","coach","travellers","roadhouse","facility","roadhouses","countries","although_many","survive","still","offer","overnight","accommodation","general","lostheir","original","function","much","function","ordinary","pub","motels","withe","function","motor_vehicles","buthe","feeding","function","horses","required","coaching_inn","file","thumb","painting","first","cock","hotel","sutton","london","sutton","surrey","thomas","coaching_inn","teams","horse","stagecoach","mail","coach","replaced","tired","teams","fresh","teams","traditionally","seven","miles","apart","buthis","depended","much","terrain","english","towns","many","ten","inn","rivalry","intense","income","stagecoach","operators","revenue","food_andrink","supplied","wealthy","passengers","barnet","hertfordshire","one","location","even","today","unusually","high","number","along","high_street","due","former","position","great","north","road","great_britain","great","north","road","london","north","england","cock","bull","pair","coaching_inns","alongside","former","road","great_britain","road","old","roman","road","street","stratford","named","respectively","cock","bull","said","given","rise","term","cock","bull","stories","coaches","mail","coach","would","stop","town","way","london","north","many","traveller","tall","tale","would","passed","two","ale","interested","audience","hence","elaborate","tale","would_become","cock","bull","story","cock","bull","story","however","evidence","phrase","originated","phrase","first","recorded","may","instead","witheir","incredible","talking","animals","coaching_inns","names","two","inns","could","reference","cock","bull","stories","encourage","passing","anecdotes","within","doors","file","thumb","upright","pub_signs","cock","bull","historic","inns","examples","historic_sites","coaching_inns","centralondon","include","plaque","nomura","building","close","museum","london","commemorating","bull","mouth","inn","golden","cross","house","opposite","st_martin","fields","recalls","golden","cross","cross","coaching_inn","historic","inns","oxford","include","bear","inn","oxford","bear","inn","originally","established","lamb_flag","oxford","lamb_flag","examples","historic","inns","wales","include","black","boy","inn","built","inn","black","lion","established","probably","oldest","welsh","coaching_inn","see_also","inn","public_house","stagecoach","inn","disambiguation","coaching","era","stage","mail","coach","travel","around","bath","bristol","somerset","roy","externalinks","coaching_inns","anne","coaching_inns","photos","examples","may","considered","coaching_inns","category","coaching_inns","category_transport","infrastructure","category_drinking_establishments","accommodations"],"clean_bigrams":[["thumb","uprighthe"],["uprighthe","george"],["george","inn"],["inn","southwark"],["coaching","inn"],["mid","th"],["th","century"],["coaching","inn"],["inn","sometimes"],["sometimes","called"],["coaching","house"],["vital","part"],["inland","transport"],["transport","infrastructure"],["inn","serving"],["serving","coach"],["coach","carriage"],["carriage","coach"],["coach","travellers"],["roadhouse","facility"],["facility","roadhouses"],["countries","although"],["although","many"],["many","survive"],["still","offer"],["offer","overnight"],["overnight","accommodation"],["lostheir","original"],["original","function"],["ordinary","pub"],["motels","withe"],["withe","function"],["motor","vehicles"],["vehicles","buthe"],["buthe","feeding"],["feeding","function"],["coaching","inn"],["inn","file"],["thumb","painting"],["first","cock"],["cock","hotel"],["sutton","london"],["london","sutton"],["sutton","surrey"],["coaching","inn"],["mail","coach"],["replaced","tired"],["tired","teams"],["fresh","teams"],["teams","traditionally"],["seven","miles"],["miles","apart"],["apart","buthis"],["buthis","depended"],["english","towns"],["stagecoach","operators"],["food","andrink"],["andrink","supplied"],["wealthy","passengers"],["barnet","hertfordshire"],["even","today"],["unusually","high"],["high","number"],["historic","pubs"],["pubs","along"],["high","street"],["street","due"],["former","position"],["great","north"],["north","road"],["road","great"],["great","britain"],["britain","great"],["great","north"],["north","road"],["england","cock"],["coaching","inns"],["inns","alongside"],["road","great"],["great","britain"],["old","roman"],["roman","road"],["named","respectively"],["given","rise"],["term","cock"],["bull","stories"],["stories","coaches"],["mail","coach"],["coach","would"],["would","stop"],["tall","tale"],["tale","would"],["interested","audience"],["audience","hence"],["elaborate","tale"],["tale","would"],["would","become"],["bull","story"],["bull","story"],["phrase","originated"],["phrase","first"],["first","recorded"],["may","instead"],["witheir","incredible"],["incredible","talking"],["talking","animals"],["coaching","inns"],["two","inns"],["inns","could"],["bull","stories"],["anecdotes","within"],["doors","file"],["thumb","upright"],["upright","public"],["public","house"],["house","pub"],["pub","signs"],["signs","pub"],["pub","signs"],["bull","historic"],["historic","inns"],["inns","examples"],["historic","sites"],["coaching","inns"],["centralondon","include"],["nomura","building"],["building","close"],["london","london"],["london","wall"],["wall","commemorating"],["mouth","inn"],["inn","golden"],["golden","cross"],["cross","house"],["house","opposite"],["opposite","st"],["st","martin"],["fields","recalls"],["golden","cross"],["cross","coaching"],["coaching","inn"],["inn","historic"],["historic","inns"],["oxford","include"],["bear","inn"],["inn","oxford"],["oxford","bear"],["bear","inn"],["inn","originally"],["originally","established"],["lamb","flag"],["flag","oxford"],["oxford","lamb"],["lamb","flag"],["flag","examples"],["historic","inns"],["wales","include"],["black","boy"],["boy","inn"],["inn","built"],["black","lion"],["oldest","welsh"],["welsh","coaching"],["coaching","inn"],["inn","see"],["see","also"],["also","inn"],["inn","public"],["public","house"],["house","stagecoach"],["stagecoach","inn"],["inn","disambiguation"],["disambiguation","coaching"],["coaching","era"],["mail","coach"],["coach","travel"],["around","bath"],["bath","bristol"],["somerset","roy"],["externalinks","coaching"],["coaching","inns"],["coaching","inns"],["considered","coaching"],["coaching","inns"],["geographorguk","category"],["category","coaching"],["coaching","inns"],["inns","category"],["category","transport"],["transport","infrastructure"],["infrastructure","category"],["category","drinking"],["drinking","establishments"],["europe","category"],["category","tourist"],["tourist","accommodations"]],"all_collocations":["thumb uprighthe","uprighthe george","george inn","inn southwark","coaching inn","mid th","th century","coaching inn","inn sometimes","sometimes called","coaching house","vital part","inland transport","transport infrastructure","inn serving","serving coach","coach carriage","carriage coach","coach travellers","roadhouse facility","facility roadhouses","countries although","although many","many survive","still offer","offer overnight","overnight accommodation","lostheir original","original function","ordinary pub","motels withe","withe function","motor vehicles","vehicles buthe","buthe feeding","feeding function","coaching inn","inn file","thumb painting","first cock","cock hotel","sutton london","london sutton","sutton surrey","coaching inn","mail coach","replaced tired","tired teams","fresh teams","teams traditionally","seven miles","miles apart","apart buthis","buthis depended","english towns","stagecoach operators","food andrink","andrink supplied","wealthy passengers","barnet hertfordshire","even today","unusually high","high number","historic pubs","pubs along","high street","street due","former position","great north","north road","road great","great britain","britain great","great north","north road","england cock","coaching inns","inns alongside","road great","great britain","old roman","roman road","named respectively","given rise","term cock","bull stories","stories coaches","mail coach","coach would","would stop","tall tale","tale would","interested audience","audience hence","elaborate tale","tale would","would become","bull story","bull story","phrase originated","phrase first","first recorded","may instead","witheir incredible","incredible talking","talking animals","coaching inns","two inns","inns could","bull stories","anecdotes within","doors file","upright public","public house","house pub","pub signs","signs pub","pub signs","bull historic","historic inns","inns examples","historic sites","coaching inns","centralondon include","nomura building","building close","london london","london wall","wall commemorating","mouth inn","inn golden","golden cross","cross house","house opposite","opposite st","st martin","fields recalls","golden cross","cross coaching","coaching inn","inn historic","historic inns","oxford include","bear inn","inn oxford","oxford bear","bear inn","inn originally","originally established","lamb flag","flag oxford","oxford lamb","lamb flag","flag examples","historic inns","wales include","black boy","boy inn","inn built","black lion","oldest welsh","welsh coaching","coaching inn","inn see","see also","also inn","inn public","public house","house stagecoach","stagecoach inn","inn disambiguation","disambiguation coaching","coaching era","mail coach","coach travel","around bath","bath bristol","somerset roy","externalinks coaching","coaching inns","coaching inns","considered coaching","coaching inns","geographorguk category","category coaching","coaching inns","inns category","category transport","transport infrastructure","infrastructure category","category drinking","drinking establishments","europe category","category tourist","tourist accommodations"],"new_description":"file thumb_uprighthe george inn southwark coaching_inn survive london_europe approximately mid_th century period years coaching_inn sometimes_called coaching house inn vital part inland transport infrastructure inn serving coach carriage coach travellers roadhouse facility roadhouses countries although_many survive still offer overnight accommodation general lostheir original function much function ordinary pub motels withe function motor_vehicles buthe feeding function horses required coaching_inn file thumb painting first cock hotel sutton london sutton surrey thomas coaching_inn teams horse stagecoach mail coach replaced tired teams fresh teams traditionally seven miles apart buthis depended much terrain english towns many ten inn rivalry intense income stagecoach operators revenue food_andrink supplied wealthy passengers barnet hertfordshire one location even today unusually high number historic_pubs along high_street due former position great north road great_britain great north road london north england cock bull pair coaching_inns alongside former road great_britain road old roman road street stratford named respectively cock bull said given rise term cock bull stories coaches mail coach would stop town way london north many traveller tall tale would passed two ale interested audience hence elaborate tale would_become cock bull story cock bull story however evidence phrase originated phrase first recorded may instead witheir incredible talking animals coaching_inns names two inns could reference cock bull stories encourage passing anecdotes within doors file thumb upright public_house_pub_signs pub_signs cock bull historic inns examples historic_sites coaching_inns centralondon include plaque nomura building close museum london london_wall commemorating bull mouth inn golden cross house opposite st_martin fields recalls golden cross cross coaching_inn historic inns oxford include bear inn oxford bear inn originally established lamb_flag oxford lamb_flag examples historic inns wales include black boy inn built inn black lion established probably oldest welsh coaching_inn see_also inn public_house stagecoach inn disambiguation coaching era stage mail coach travel around bath bristol somerset roy externalinks coaching_inns anne coaching_inns photos examples may considered coaching_inns geographorguk category coaching_inns category_transport infrastructure category_drinking_establishments europe_category_tourist accommodations"},{"title":"Coffeehouse","description":"image caf de florejpg thumb caf de flore paris image pariscafediscussionpng thumb discussing the franco prussian war in a paris caf the illustrated londonewseptember a coffeehouse coffee shop or caf sometimespelled cafe is an establishment which primarily serves hot coffee related coffee beverages eg caf latte cappuccino espresso teand other hot beveragesome coffeehouses also serve cold beveragesuch as iced coffee and iced tea many caf s also serve some type ofood such as light snacks muffin s or pastries coffeehouses range from owner operated small business es to large multinational corporations in continental europe caf s often serve alcoholic beverages and light food but elsewhere the term caf may also refer to a tearoom uk and us tea room greasy spoon a small and inexpensive restaurant colloquially called a caff transport caf or other casual eating andrinking place a coffeehouse may share some of the same characteristics of a bar orestaurant but it is different from a cafeteria many coffeehouses in the middleast and in west asian immigrant districts in the western world offer shisha nargile in greek and turkish flavored tobacco smoked through a hookah espresso bar espresso bars are a type of coffeehouse that specializes in serving espresso and espresso basedrinks from a cultural standpoint coffeehouses largely serve as centers of social interaction the coffeehouse provides patrons with a place to congregate talk read writentertain one another or pass the time whether individually or in small groupsince the development of wi fi coffeehouses withis capability have also become places for patrons to access the internet on their laptop s and tablet computer s a coffeehouse can serve as an informal club for its regular members as early as the s beatnik erand the s folk music scene coffeehouses have hosted singer songwriter performances typically in thevening imagevolution of the word coffeesvg thumb evolution of the word coffee thumb evolution of the word coffee the most common english spelling caf is the french portuguese and spanish spelling and was adopted by english speaking countries in the late th century oxford english dictionary nd ed entry number caf as english generally makes little use of diacritic al marks anglicisation tends tomithem and to place the onus on the readers to remember how it is pronounced withouthe presence of the accenthus the spelling cafe has become very common in english language usage throughouthe world especially for the less formal ie greasy spoon variety although orthographic linguistic prescription prescriptivists often disapprove of ithe italian spelling caff is alsometimes used in english oxford english dictionary nd ed entry number caff n in southern england especially around london in the s the french pronunciation was often facetiously altered to and spelt caff oxford english dictionary nd ed entry number caff thenglish words coffee and caf derive from the italian word for coffee caff attested as cave in venice in and in turn derived from the arabic language arabic qahuwa the arabic language arabic term qahuwa originally referred to a type of wine but after the wine ban by muhammad mohammed the name was transferred to coffee because of the similarousing effect it induced european knowledge of coffee the plant itseeds and the beverage made from the seeds came through european contact with turkey likely via venetian ottoman trade relations the translingual word root kafe appears in many european languages with various naturalized spellings including portuguese spanish and french caf german kaffee polish language polish kawa ukrainian language ukrainian kavand others coffeehouses in mecca became a concern of imam s who viewed them as places for political gatherings andrinking they were banned for muslims between and in the first coffeehouse was opened in damascus and not long after there were many coffeehouses in cairo image meddah story tellerpng righthumb storyteller culture of the ottoman empire meddah at a coffeehouse in the ottoman empire the ottoman empire ottoman chronicler i brahim pevi reports in his writings abouthe opening of the first coffeehouse in istanbul various legends involving the introduction of coffee to istanbul at a kiva han in the late th century circulate in culinary tradition but with no documentation the th century french traveler and writer jean chardin gave a lively description of the persia n coffeehouse scene file th century coffeehousengland x jpg thumb right coffeehouse in london th century file amedeo preziosistanbul cafejpg thumb right a caf in istanbul th century in the th century coffee appeared for the firstime in europe outside the ottoman empire and coffeehouses werestablished and quickly became popular the first coffeehouses appeared in venice in reich anna coffee tea history in a cup herbarist due to the traffic between republic of venice la serenissimand the ottomans the very first one is recorded in the first coffeehouse in england waset up in oxford in by a jew ish manamed jacob athe angel in the parish of st peter in theast a building on the same site now houses a cafe bar called the grand cafe oxford s queen s lane coffee housestablished in is also still in existence today the first coffeehouse in london was opened in st michael s alley cornhillondon cornhill the proprietor was pasqua ros e the servant of a trader in turkish people turkish goods namedaniel edwards who imported the coffee and assisted ros e in setting up thestablishment in st michael s alley cornhill from to the number of london coffee houses began to multiply and also began to gain political importance due to their popularity as places of debate by there were more than coffeehouses in england pasqua ros e also established the first coffeehouse in paris in and held a citywide coffee monopoly until procopio cut opened the caf procope in procopecomake coffee at home history of coffee this coffeehouse still exists today and was a popular meeting place of the french age of enlightenment voltaire jean jacques rousseau andenis diderot frequented it and it is arguably the birthplace of thencyclop die the first modern encyclopedia in kara hamie a former ottoman janissary from constantinople opened the first coffee shop in bucharesthen the capital of the wallachia principality of wallachia in the center of the city where today sits the main building of the national bank of romaniamerica had its first coffeehouse in boston in the first cafeteria in vienna was founded in by a ukrainian resident jerzy franciszekulczycki who was also the firsto serve coffee with milk there is a statue of kulczycki on a street also named after him however the coffee culture of drinking coffee was itself widespread in the country in the second half of the th century the first registered coffeehouse in vienna was founded by an armenian merchant named johannes theodat also known as johannes diodato in teply karl dieinf hrung des kaffees in wien verein f r geschichte der stadt wien vol p cited in seibel anna maria die bedeutung der griechen f r das wirtschaftliche und kulturelleben in wien p online available under othesunivieacat pdfifteen years later four other armenians owned coffeehouses though charles ii of england charles ii later tried to suppress the london coffeehouses as places where the disaffected met and spread scandalous reports concerning the conduct of his majesty and his ministers the public flocked to them for several decades following the restoration the wit s gathered around john dryden at will s coffee house in russell street covent garden the coffeehouses were great socialevellers open to all men and indifferento social status and as a result associated with equality and republicanismore generally coffeehouses becameeting places where business could be carried onews exchanged and the london gazette government announcements read lloyd s of london had its origins in lloyd s coffee house a coffeehouse run by edward lloyd where underwriters of ship insurance meto do business by there were coffeehouses in london each attracted a particular clientele divided by occupation or attitude such as tory tories and whig british political faction whigs wits and stockjobber s merchants and lawyers booksellers and authors men ofashion or the cits of the city of london old city center according tone french visitor antoine fran ois pr vost coffeehouses where you have the righto read all the papers for and againsthe government were the seats of english liberty pr vost abb adventures of a man of quality translation of s jour en angleterre v of moires et aventures d un homme de qualit qui s est retir du monde g routledge sons london filestatua gonzalo torrente ballester cafe novelty salamancajpg thumb the statue of the writer gonzalo torrente ballester in caf novelty salamanca spain founded in the banning of women from coffeehouses was not universal but does appear to have been common in europe in germany women frequented them but in england france they were banned milie du ch telet purportedly dressed in drag clothing drag to gain entrance to a coffeehouse in paris in a well known engraving of a parisian caf c the gentlemen hang their hats on pegs and sit at long communal tablestrewn with papers and writing implements coffeepots are ranged at an open fire with a hanging cauldron of boiling water the only woman present presidesex segregation separated in a canopied booth from which she serves coffee in tall cups the traditional tale of the origins of the viennese caf begins withe mysteriousacks of green beans left behind when the turks were defeated in the battle of vienna in all the sacks of coffee were granted to the victorious kings of poland polish king john iii sobieski jan iii sobieski who in turn gave them tone of his officers jerzy franciszekulczycki kulczycki began the first coffeehouse in vienna withe hoard however it is nowidely accepted thathe first coffeehouse was actually opened by an armenian merchant named johannes diodato asdvadzadur in london coffeehouses preceded the club organization club of the mid th century european countries in ireland the united kingdom a caf withe acute accent isimilar to those in other european countries while a cafe without acute accent and often pronounced caff is more likely to be a greasy spoon styleating place serving mainly fried food in particular breakfast dishes which skimmed away some of the more aristocraticlientele jonathan s coffee house in saw the listing of stock and commodity prices that evolved into the london stock exchange lloyd s coffee house provided the venue for merchants and shippers to discuss insurance deals leading to thestablishment of lloyd s of london insurance markethe lloyd s register classification society and otherelated businesses auctions in salesrooms attached to coffeehouses provided the start for the great auction houses of sotheby s and christie s during the th century the oldest extant coffeehouses in italy werestablished cafflorian in venice antico caff greco in rome pedrocchi caff pedrocchin padua caff dell ussero in pisand caffiorio in turin victorian era victorian england the temperance movement set up coffeehouses for the working class es as a place of relaxation free of alcohol an alternative to the public house pub in th century dublin coffeehouses functioned as early reading centers and themergence of circulation and subscription libraries which provided greater print access for the public the coffeehouses was a social magnet where different strata of society came together to discuss topics of the newspapers and pamphlets most coffeehouses of the th century werequipped witheir own printing presses or incorporated a book shop later most would merge as coffeehouses grew into public reading centers circulating libraries in dublin expanded resembling public libraries as they lent books public library fees were then expensive book borrowing from circulating libraries was more affordable circulating library keepers could keep fees low because they were also printers publishers and newspaper proprietors one of the first circulating libraries was established by james hoey in competition grew as did the number of patrons wanting several books at a time women were not allowed in coffeehouseso circulating libraries would targethem by carrying books tailored to female readers another lure of circulating libraries was that most were flexible witheir loan terms and rates which increased circulation of books it was cheaper to have a yearly subscription to borrow than to purchase books having circulating libraries increased people s ability to read as access to books became affordable in the th and th centuries coffeehouses were commonly meeting point for writer s and artist s across europe current day europe file kafeneion ithakijpg thumb right coffeehouse in greece file vincent willem van gogh cafe terrace at night yorck jpg thumb cafe terrace at night september by vincent van gogh in most european countriesuch as austria denmark germany norway sweden portugal and others the term caf means a restaurant primarily serving coffee as well as pastry pastriesuch as cake s tart s pie s danish pastry danish pastries or bun s many caf s also serve light mealsuch asandwich es european caf s often have tables on the sidewalk pavement sidewalk as well as indoorsome caf s also serve alcoholic beverages eg wine particularly in southern europe in the netherlands and belgium a caf is thequivalent of a bar establishment bar and also sells alcoholic beverages in the netherlands a serves coffee while a cannabis coffee shops coffee shop using thenglish term sellsoft drugs cannabis drug cannabis and hashish and is generally not allowed to sell alcoholic beverages in france most caf serve as lunch restaurants in the day and bars in thevening they generally do not have pastries except during mornings where a croissant or pain au chocolat can be purchased with breakfast coffee in italy caf s are similar to those found in france and known as bar they typically serve a variety of espresso coffee cakes and alcoholic drinks bars in city centres usually have different prices for consumption athe bar and consumption at a table united states coffee shops in the united states arose from thespresso and pastry centered italian coffeehouses of the italian american immigrant communities in the major us cities notably new york city s little italy manhattan little italy and greenwich village boston s north end bostonorth end and san francisco s north beach san francisco california north beach from the late s onward coffeehouses also served as a venue for entertainment most commonly folk music folk performers during the american folk music revival this was likely due to thease at accommodating in a small space a lone performer accompanying himself or herself with only a guitar both greenwich village and north beach became major haunts of the beat generation beats who were highly identified withese coffeehouses as the youth culture of the s evolved non italians consciously copied these coffeehouses the political nature of much of s folk music made the music a natural tie in with coffeehouses witheir association with political action a number of well known performers like joan baez and bob dylan began their careers performing in coffeehouses bluesinger lightnin hopkins bemoaned his woman s inattentiveness to her domestic situation due to her overindulgence in coffeehouse socializing in hisong coffeehouse bluestarting in withe opening of the historic last exit on brooklyn coffeehouseattle became known for its thriving countercultural coffeehouse scene the starbucks chain later standardized and mainstreamed this espresso bar espresso bar model from the s through the mid s churches and individuals in the united states used the coffeehouse concept for outreach they were often storefronts and had names like the lost coin greenwich village the gathering place riverside catacomb chapel new york city and jesus for you buffalo ny christian music often guitar based was performed coffee and food was provided and bible study christian bible studies were convened as people of varying backgrounds gathered in a casual setting that was purposefully differenthan the traditional church an out of print book published by the ministry of david wilkerson titled a coffeehouse manual served as a guide for christian coffeehouses including a list of name suggestions for coffeehousessources tim schultz director jesus for you a coffeehouse manual bethany fellowship in general prior to aboutrue coffeehouses were little known in most american cities apart from those located on or near college campuses or in districts associated with writers artists or the counterculture during this time the word coffee shop usually denoted family style restaurants that served full meals and of whose revenue coffee represented only a small portion morecently that usage of the word has waned and now coffee shop often refers to a true coffeehouse image pastriesold at a coffee shopjpg thumb right coffeehouses often sell pastries or other food items caf s may have an outdoor section terrace pavement or sidewalk cafe sidewalk caf with seats tables and parasols this especially the case with european caf s caf s offer a more open public space compared to many of the traditional pubs they have replaced which were more male dominated with a focus on drinking alcohol one of the original uses of the caf as a place for information exchange and communication was reintroduced in the s withe internet caf or hotspot wi fi the spread of modern style caf s to urband rural areas went hand in hand withe rising use of mobile computers and internet access in a contemporary styled venue help to create a youthful modern place compared to the traditional pubs or old fashionediner s thathey replaced middleast image syriadamascuscoffeehouse jpg thumb right coffeehouse in damascus in the middleasthe coffeehouse maqha qahveh khaneh serves as an important social gathering place for men assemble in coffeehouses to drink coffee usually arabicoffee and tea in addition men go there to listen to music read books play chess and backgammon watch tv and enjoy other social activities around the arab world and in turkey hookah shisha is traditionally served as well coffeehouses in egypt are colloquially called ahwah which is the dialectal pronunciation of qahwah literally coffee the is debuccalization debuccalized to see also arabic phonology local variations also commonly served in ahwah are tea sh y and herbal tea s especially the highly popular hibiscus tea hibiscus blend egyptian arabic karkadeh or ennab the first ahwah opened around the s and were originally patronized mostly by older people with youths frequenting but not always ordering there were associated by the s with clubs cairo bursalexandriand gharza rural inns in thearly th century some of them became crucial venues for political and social debates image coffeeoverdosejpg thumb right a coffee shop in angeles philippines angeles city philippines in chinan abundance of recently startedomesticoffeehouse chains may be seen accommodating business people for conspicuous consumption with coffee pricesometimes even higher than in the west india coffee culture has expanded in the pastwentyears chains like indian coffee house caf coffee day barista lavazza have become very popular cafes are considered good venues to conduct office meetings and for friends to meet in malaysiand singapore traditional breakfast and coffee shops are called kopi tiam the word is a portmanteau of the malay language malay word for coffee as borrowed and altered from english and the minan hokkien dialect word for shope h e j poj ti menus typically feature simple offerings a variety ofoods based on egg food egg toast and coconut jam plus coffee teand milo drink milo a malted chocolate drink which is extremely popular in southeast asiand australasia particularly singapore and malaysia singapore also has coffee shops known as cafes and in the past few years there has a been a rise in cafe culture with urbaniteseeking out specialty coffees even with popular jointsuch astarbucks and coffee bean the millennials in particular sought for gourmet coffees as well as the relaxing and cosy ambience amidsthe hustle and bustle of the city moreover cafes have also changed the social scenes of singapore instead of crowding at shopping malls the youngsters could now hang out at cafes in the philippines coffee shop chains like starbucks became prevalent in upper and middle class professionals especially in makati however carinderias also serve coffee alongside viands eventsuch as kapihan often officiated at bakeshops and restaurants that also served coffee for breakfast and merienda in australia coffee shops are generally called caf since the post world war iinflux of italian immigrants introduced espresso coffee machines to australia in the s there has been a steady rise in caf culture the past decade haseen a rapid rise in demand for locally or on site roasted specialty coffee particularly in sydney and melbourne withe flat white remaining a popular coffee drink egypt and ethiopia in cairo the capital of egypt most caf s have shisha waterpipe most egyptians indulge in the habit of smoking shisha while hanging out athe caf watching a match studying or even sometimes finishing some work in addis ababa the capital of ethiopia independent coffeehouses that struggled prior to have become popular with young professionals who do not have time for traditional coffee roasting at home onestablishment whichas become well known is the tomoca coffee shop which opened in united kingdom haunts for teenager s in particular italians in the united kingdom italian run espresso bars and their formica plastic formica topped tables were a feature of soho that provided a backdrop as well as a title for cliff richard s film expresso bongo the first was the moka in frith street opened by gina lollobrigida in witheir exotic gaggia espresso machine coffee machine s coke pepsi weak frothy coffee andsuncrush orange fountain s lyn perry cabbages and cuppas in adventures in the mediatheque personal selections ofilms london bfi southbank university of the third age pp they spread tother urban centres during the s providing cheap warm places for young people to congregate and an ambience faremoved from the global coffee bar standard which would bestablished in the final decades of the century by chainsuch astarbucks and pret a manger specifically the section headed the first coffeehouse in england was the angel which opened in oxford in espresso bar file baliuagjf jpg thumb right upright interior of an espresso bar from baliuag bulacan philippines thespresso bar is a type of coffeehouse that specializes in coffee beverages made from espressoriginating in italy thespresso bar haspread throughouthe world in various forms primexamples that are internationally known are starbucks coffee based in seattle washington us and costa coffee based in dunstable uk the first and second largest coffeehouse chains respectively although thespresso bar exists in some form throughout much of the world thespresso bar is typically centered around a long counter with a high yield espresso machine usually bean to cup machines automatic or semiautomatic pump type machine although occasionally a manually operated lever and piston system and a display case containing pastries and occasionally savory itemsuch asandwiches in the traditional italian bar customers either order athe bar and consume their beveragestanding or if they wish to sit down and be served are usually charged a higher price in some bars there is an additional charge for drinkserved at an outside table in other countriespecially the united stateseating areas for customers to relax and work are provided free of charge somespresso bars also sell coffee paraphernalia candy and even music north american espresso bars were also athe forefront of widespreadoption of public wifi access points to provide internet services to people doing work on laptop computers on the premises the offerings athe typical espresso bare generally quite italianate inspiration biscotti cannoli and pizzelle are a common traditional accompanimento a latte caffe latte or cappuccino some upscalespresso bars even offer alcoholic beveragesuch as grappand sambuca nevertheless typical pastries are not alwaystrictly italianate and common additions include scones muffins croissant s and even doughnuts there is usually a large selection of teas well and the north american espresso bar culture is responsible for the popularization of the indian spiced tea drink masala chaicedrinks are also popular in some countries including both iced teand iced coffee as well as blendedrinksuch astarbucks frappucino a worker in an espresso bar is referred to as a barista the barista is a skilled position that requires familiarity withe drinks being made often very elaboratespecially inorth american stylespresso bars a reasonable facility with some rather esoteric equipment as well as the usual customer service skills file caf m lange wienjpg caf m lange vienna file kozhikode medical colleg jpg coffee shop in calicut file porto cafe majesticjpg caf majestic porto see also coffee servicenglish coffeehouses in the th and th centuries greasy spoon kafana list of coffeehouse chains manga cafe tea house abbas h coffee houses early public libraries and the printrade in eighteenth century dublin library information history furthereading marie france boyer photographs by eric morin the french caf london thames hudson brian cowan the socialife of coffee themergence of the british coffeehouse yale university press markman ellis the coffee house a cultural history weidenfeld nicolson robert hume percolating society irish examiner april p ray oldenburg the great good place oldenburg the great good place cafes coffee shops community centers general stores bars hangouts and how they get you through the day new york parragon books tom standage a history of the world in six glasses walker company ahmet yar the coffeehouses in early modern istanbul public space sociability and surveillance ma thesis bo azi niversitesi librarybounedutr ahmet yar osmanl ehir mek nlar kahvehane literat r ottoman urban spaces an evaluation of literature on coffeehouses tali d t rkiye ara t rmalar literat r dergisi talidorg antony wild coffee a dark history w norton company new york fourth estate london category coffeehouses category types of restaurants category coffee culture","main_words":["image","caf_de","thumb","caf_de","paris","image","thumb","discussing","franco","war","paris","caf","illustrated","coffeehouse","coffee_shop","caf","cafe","establishment","primarily","serves","hot","coffee","related","coffee","beverages","caf","latte","cappuccino","espresso","teand","hot","coffeehouses","also_serve","cold","beveragesuch","iced","coffee","iced","tea","many","caf","also_serve","type","ofood","light","snacks","pastries","coffeehouses","range","owner","operated","small","business","large","multinational","corporations","continental_europe","caf","often","serve_alcoholic_beverages","light","food","elsewhere","term","caf","may_also","refer","tearoom","uk","us","tea_room","greasy_spoon","small","inexpensive","restaurant","colloquially","called","caff","transport","caf","casual","eating","andrinking","place","coffeehouse","may","share","characteristics","bar","orestaurant","different","cafeteria","many","coffeehouses","middleast","west","asian","immigrant","districts","western","world","offer","shisha","greek","turkish","tobacco","smoked","espresso","bar","espresso","bars","type","coffeehouse","specializes","serving","espresso","espresso","cultural","coffeehouses","largely","serve","centers","social","interaction","coffeehouse","provides","patrons","place","congregate","talk","read","one","another","pass","time","whether","individually","small","development","coffeehouses","withis","capability","also","become","places","patrons","access","internet","laptop","tablet","computer","coffeehouse","serve","informal","club","regular","members","early","folk","music","scene","coffeehouses","hosted","singer","performances","typically","thevening","word","thumb","evolution","word","coffee","thumb","evolution","word","coffee","common","english","spelling","caf","french","portuguese","spanish","spelling","adopted","english_speaking","countries","late_th","century","oxford_english_dictionary","ed","entry","number","caf","english","generally","makes","little","use","marks","tends","place","readers","remember","pronounced","withouthe","presence","spelling","cafe","become","common","english_language","usage","throughouthe_world","especially","less","formal","greasy_spoon","variety","although","prescription","often","ithe","italian","spelling","caff","alsometimes","used","english","oxford_english_dictionary","ed","entry","number","caff","n","southern","england","especially","around","london","french","pronunciation","often","altered","caff","oxford_english_dictionary","ed","entry","number","caff","thenglish","words","coffee","italian","word","coffee","caff","cave","venice","turn","derived","arabic","language","arabic","arabic","language","arabic","term","originally","referred","type","wine","wine","ban","mohammed","name","transferred","coffee","effect","induced","european","knowledge","coffee","plant","beverage","made","seeds","came","european","contact","turkey","likely","via","venetian","ottoman","trade","relations","word","root","kafe","appears","many","european","languages","various","spellings","including","portuguese","spanish","french","caf","german","polish","language","polish","ukrainian","language","ukrainian","others","coffeehouses","mecca","became","concern","viewed","places","political","gatherings","andrinking","banned","muslims","first","coffeehouse","opened","damascus","long","many","coffeehouses","cairo","image","story","righthumb","culture","ottoman","empire","coffeehouse","ottoman","empire","ottoman","empire","ottoman","reports","writings","abouthe","opening","first","coffeehouse","istanbul","various","legends","involving","introduction","coffee","istanbul","kiva","late_th","century","culinary","tradition","documentation","th_century","french","traveler","writer","jean","gave","description","n","coffeehouse","scene","file","th_century","x","jpg","thumb","right","coffeehouse","london","th_century","file","thumb","right","caf","istanbul","th_century","th_century","coffee","appeared","firstime","europe","outside","ottoman","empire","coffeehouses","werestablished","quickly","became_popular","first","coffeehouses","appeared","venice","reich","anna","coffee","tea","history","cup","due","traffic","republic","venice","la","ottomans","first","one","recorded","first","coffeehouse","england","waset","oxford","jacob","athe","angel","parish","st_peter","theast","building","site","houses","cafe","bar","called","grand","cafe","oxford","queen","lane","coffee","also","still","existence","today","first","coffeehouse","london","opened","st","michael","alley","proprietor","ros","e","servant","trader","turkish","people","turkish","goods","edwards","imported","coffee","assisted","ros","e","setting","thestablishment","st","michael","alley","number","london","began","also","began","gain","political","importance","due","popularity","places","debate","coffeehouses","england","ros","e","also","established","first","coffeehouse","paris","held","coffee","monopoly","cut","opened","caf","coffee","home","history","coffee","coffeehouse","still","exists","today","popular","meeting_place","french","age","enlightenment","jean","jacques","frequented","arguably","birthplace","die","first","modern","encyclopedia","former","ottoman","constantinople","opened","first","coffee_shop","capital","center","city","today","sits","main_building","national","bank","first","coffeehouse","boston","first","cafeteria","vienna","founded","ukrainian","resident","also","firsto","serve","coffee","milk","statue","street","also","named","however","coffee","culture","drinking","coffee","widespread","country","second_half","th_century","first","registered","coffeehouse","vienna","founded","merchant","named","johannes","also_known","johannes","karl","des","wien","f","r","geschichte","der","stadt","wien","vol","p","cited","anna","maria","die","der","f","r","das","und","wien","p","online","available","years_later","four","owned","coffeehouses","though","charles","ii","england","charles","ii","later","tried","london","coffeehouses","places","met","spread","reports","concerning","conduct","ministers","public","flocked","several","decades","following","restoration","gathered","around","house","russell","street_covent_garden","coffeehouses","great","open","men","social","status","result","associated","equality","generally","coffeehouses","places","business","could","carried","exchanged","london","gazette","government","announcements","read","lloyd","london","origins","lloyd","coffee_house","coffeehouse","run","edward","lloyd","ship","insurance","business","coffeehouses","london","attracted","particular","clientele","divided","occupation","attitude","british","political","merchants","lawyers","authors","men","ofashion","city","london","old","city","center","according","tone","french","visitor","antoine","fran_ois","coffeehouses","righto","read","papers","againsthe","government","seats","english","liberty","adventures","man","quality","translation","v","de","est","monde","g","routledge","sons","london","cafe","novelty","thumb","statue","writer","caf","novelty","spain","founded","banning","women","coffeehouses","universal","appear","common","europe","germany","women","frequented","england","france","banned","dressed","drag","clothing","drag","gain","entrance","coffeehouse","paris","well_known","engraving","parisian","caf","c","gentlemen","hang","hats","sit","long","communal","papers","writing","implements","ranged","open","fire","hanging","boiling","water","woman","present","segregation","separated","booth","serves","coffee","tall","cups","traditional","tale","origins","caf","begins","withe","green","beans","left","behind","defeated","battle","vienna","coffee","granted","kings","poland","polish","king","john","iii","jan","iii","turn","gave","tone","officers","began","first","coffeehouse","vienna","withe","however","accepted","thathe_first","coffeehouse","actually","opened","merchant","named","johannes","london","coffeehouses","preceded","club","organization","club","mid_th","century","european_countries","ireland_united_kingdom","caf","withe","acute","isimilar","european_countries","cafe","without","acute","often","pronounced","caff","likely","greasy_spoon","place","serving","mainly","fried","food","particular","breakfast","dishes","away","jonathan","coffee_house","saw","listing","stock","commodity","prices","evolved","london","stock","exchange","lloyd","coffee_house","provided","venue","merchants","discuss","insurance","deals","leading","thestablishment","lloyd","london","insurance","markethe","lloyd","register","classification","society","otherelated","businesses","attached","coffeehouses","provided","start","great","auction","houses","christie","th_century","oldest","extant","coffeehouses","italy","werestablished","venice","caff","rome","caff","padua","caff","dell","turin","victorian_era","victorian","england","temperance","movement","set","coffeehouses","working_class","place","relaxation","free","alcohol","alternative","public_house_pub","th_century","dublin","coffeehouses","functioned","early","reading","centers","themergence","circulation","subscription","libraries","provided","greater","print","access","public","coffeehouses","social","magnet","different","society","came","together","discuss","topics","newspapers","pamphlets","coffeehouses","th_century","werequipped","witheir","printing","presses","incorporated","book","shop","later","would","merge","coffeehouses","grew","public","reading","centers","circulating","libraries","dublin","expanded","resembling","public","libraries","fees","expensive","book","circulating","libraries","affordable","circulating","library","keepers","could","keep","fees","low","also","printers","publishers","newspaper","proprietors","one","first","circulating","libraries","established","james","competition","grew","number","patrons","wanting","several","books","time","women","allowed","circulating","libraries","would","carrying","books","tailored","female","readers","another","lure","circulating","libraries","flexible","witheir","loan","terms","rates","increased","circulation","books","cheaper","yearly","subscription","purchase","books","circulating","libraries","increased","people","ability","read","access","books","became","affordable","th","th_centuries","coffeehouses","commonly","meeting","point","writer","artist","across_europe","current","day","europe","file","thumb","right","coffeehouse","greece","file","vincent","willem","van","cafe","terrace","night","jpg","thumb","cafe","terrace","night","september","vincent","van","austria","denmark","germany","norway","sweden","portugal","others","term","caf","means","restaurant","primarily","serving","coffee","well","pastry","cake","tart","pie","danish","pastry","danish","pastries","bun","many","caf","also_serve","light","mealsuch","european","caf","often","tables","sidewalk","pavement","sidewalk","well","caf","also_serve","alcoholic_beverages","wine","particularly","southern","europe","netherlands","belgium","caf","thequivalent","sells","alcoholic_beverages","netherlands","serves","coffee","cannabis","coffee_shops","coffee_shop","using","thenglish","term","drugs","cannabis","drug","cannabis","generally","allowed","sell","alcoholic_beverages","france","caf","serve","lunch","restaurants","day","bars","thevening","generally","pastries","except","mornings","pain","purchased","breakfast","coffee","italy","caf","similar","found","france","known","bar","typically","serve","variety","espresso","coffee","cakes","alcoholic_drinks","bars","city","centres","usually","different","prices","consumption","athe","bar","consumption","table","united_states","coffee_shops","united_states","arose","thespresso","pastry","centered","italian","coffeehouses","italian","american","immigrant","communities","major","us","cities","notably","new_york","city","little","italy","manhattan","little","italy","greenwich","village","boston","north","end","end","san_francisco","north","beach","san_francisco_california","north","beach","late","coffeehouses","also_served","venue","entertainment","commonly","folk","music","folk","performers","american","folk","music","revival","likely","due","thease","accommodating","small","space","lone","accompanying","guitar","greenwich","village","north","beach","became","major","haunts","beat","generation","beats","highly","identified","withese","coffeehouses","youth","culture","evolved","non","italians","consciously","copied","coffeehouses","political","nature","much","folk","music","made","music","natural","tie","coffeehouses","witheir","association","political","action","number","well_known","performers","like","joan","bob","dylan","began","careers","performing","coffeehouses","lightnin","hopkins","woman","domestic","situation","due","coffeehouse","socializing","coffeehouse","withe","opening","historic","last","exit","brooklyn","became_known","thriving","coffeehouse","scene","starbucks","chain","later","standardized","espresso","bar","espresso","bar","model","mid","churches","individuals","united_states","used","coffeehouse","concept","outreach","often","names","like","lost","coin","greenwich","village","gathering","place","riverside","chapel","new_york","city","jesus","buffalo","christian","music","often","guitar","based","performed","coffee","food","provided","bible","study","christian","bible","studies","people","varying","backgrounds","gathered","casual","setting","traditional","church","print","book","published","ministry","david","titled","coffeehouse","manual","served","guide","christian","coffeehouses","including","list","name","suggestions","tim","director","jesus","coffeehouse","manual","fellowship","general","prior","coffeehouses","little_known","american","cities","apart","located_near","college","campuses","districts","associated","writers","artists","time","word","coffee_shop","usually","served","full","meals","whose","revenue","coffee","represented","small","portion","morecently","usage","word","coffee_shop","often","refers","true","coffeehouse","image","coffee","thumb","right","coffeehouses","often","sell","pastries","food_items","caf","may","outdoor","section","terrace","pavement","sidewalk","cafe","sidewalk","caf","seats","tables","especially","case","european","caf","caf","offer","open","public_space","compared","many","traditional","pubs","replaced","male","dominated","focus","drinking","alcohol","one","original","uses","caf","place","information","exchange","communication","reintroduced","withe","internet","caf","hotspot","spread","modern","style","caf","urband","rural_areas","went","hand","hand","withe","rising","use","mobile","computers","internet","access","contemporary","styled","venue","help","create","modern","place","compared","traditional","pubs","old","thathey","replaced","middleast","image","jpg","thumb","right","coffeehouse","damascus","coffeehouse","serves","important","social","gathering","place","men","coffeehouses","drink","coffee","usually","tea","addition","men","go","listen","music","read","chess","watch","enjoy","social","activities","around","arab","world","turkey","shisha","traditionally","served","well","coffeehouses","egypt","colloquially","called","pronunciation","literally","coffee","see_also","arabic","local","variations","also_commonly","served","tea","herbal","tea","especially","highly","popular","tea","blend","egyptian","arabic","first_opened","around","originally","patronized","mostly","older","people","frequenting","always","ordering","associated","clubs","cairo","rural","inns","thearly_th","century","became","crucial","venues","political","social","debates","image","thumb","right","coffee_shop","angeles","philippines","angeles","city","philippines","abundance","recently","chains","may","seen","accommodating","business","people","consumption","coffee","even","higher","west","india","coffee","culture","expanded","chains","like","indian","coffee_house","caf","coffee","day","barista","become_popular","cafes","considered","good","venues","conduct","office","meetings","friends","meet","malaysiand","singapore","traditional","breakfast","coffee_shops","called","kopi","tiam","word","portmanteau","malay","language","malay","word","coffee","altered","english","hokkien","dialect","word","h","e","j","menus","typically","feature","simple","offerings","variety","ofoods","based","egg","food","egg","toast","coconut","jam","plus","coffee","teand","milo","drink","milo","chocolate","drink","extremely","popular","southeast_asiand","australasia","particularly","singapore","malaysia","singapore","also","coffee_shops","known","cafes","past_years","rise","cafe","culture","specialty","even","popular","coffee","bean","particular","sought","gourmet","well","ambience","city","moreover","cafes","also","changed","social","scenes","singapore","instead","shopping_malls","youngsters","could","hang","cafes","philippines","coffee_shop","chains","like","starbucks","became","prevalent","upper","middle_class","professionals","especially","however","also_serve","coffee","alongside","eventsuch","often","restaurants","also_served","coffee","breakfast","australia","coffee_shops","generally","called","caf","since","post","world_war","italian","immigrants","introduced","espresso","coffee","machines","australia","steady","rise","caf","culture","past","decade","haseen","rapid","rise","demand","locally","site","roasted","specialty","coffee","particularly","sydney","melbourne","withe","flat","white","remaining","popular","coffee","drink","egypt","ethiopia","cairo","capital","egypt","caf","shisha","habit","smoking","shisha","hanging","athe","caf","watching","match","studying","even","sometimes","finishing","work","capital","ethiopia","independent","coffeehouses","struggled","prior","become_popular","young","professionals","time","traditional","coffee","roasting","home","whichas","become","well_known","coffee_shop","opened","united_kingdom","haunts","particular","italians","united_kingdom","italian","run","espresso","bars","formica","plastic","formica","topped","tables","feature","soho","provided","backdrop","well","title","cliff","richard","film","first","street","opened","gina","witheir","exotic","espresso","machine","coffee","machine","weak","coffee","orange","fountain","perry","adventures","personal","selections","london","university","third","age","pp","spread","tother","urban","centres","providing","cheap","warm","places","young_people","congregate","ambience","global","coffee","bar","standard","would","bestablished","final","decades","century","chainsuch","specifically","section","headed","first","coffeehouse","england","angel","opened","oxford","espresso","bar","file_jpg","thumb","right_upright","interior","espresso","bar","philippines","thespresso","bar","type","coffeehouse","specializes","coffee","beverages","made","italy","thespresso","bar","haspread","throughouthe_world","various","forms","internationally","known","starbucks","coffee","based","seattle_washington","us","costa","coffee","based","uk","first","second_largest","coffeehouse","chains","respectively","although","thespresso","bar","exists","form","throughout","much","world","thespresso","bar","typically","centered","around","long","counter","high","yield","espresso","machine","usually","bean","cup","machines","automatic","pump","type","machine","although","occasionally","manually","operated","system","display","case","containing","pastries","occasionally","itemsuch","traditional","italian","bar","customers","either","order","athe","bar","consume","wish","sit","served","usually","charged","higher","price","bars","additional","charge","outside","table","united","areas","customers","relax","work","provided","free","charge","bars_also","sell","coffee","candy","even","music","north_american","espresso","bars_also","athe","forefront","public","wifi","access","points","provide","internet","services","people","work","laptop","computers","premises","offerings","athe","typical","espresso","bare","generally","quite","italianate","inspiration","common","traditional","latte","latte","cappuccino","bars","even","offer","alcoholic_beveragesuch","nevertheless","typical","pastries","italianate","common","additions","include","even","usually","large","selection","teas","well","north_american","espresso","bar","culture","responsible","indian","spiced","tea","drink","also_popular","countries_including","iced","teand","iced","coffee","well","worker","espresso","bar","referred","barista","barista","skilled","position","requires","familiarity","withe","drinks","made","often","bars","reasonable","facility","rather","equipment","well","usual","customer_service","skills","file","caf","caf","vienna","file","medical","jpg","coffee_shop","file","porto","cafe","caf","porto","see_also","coffee","coffeehouses","th","th_centuries","greasy_spoon","kafana","list","coffeehouse","chains","manga","cafe","tea_house","h","early","public","libraries","eighteenth_century","dublin","library","information","history","furthereading","marie","france","boyer","photographs","eric","french","caf","london","thames","hudson","brian","cowan","socialife","coffee","themergence","british","coffeehouse","yale_university_press","ellis","coffee_house","cultural_history","robert","society","irish","examiner","april","p","ray","great","good","place","great","good","place","cafes","coffee_shops","community","centers","general","stores","bars","get","day","new_york","books","tom","history","world","six","glasses","walker","company","coffeehouses","early","modern","istanbul","public_space","surveillance","thesis","r","ottoman","urban","spaces","evaluation","literature","coffeehouses","r","wild","coffee","dark","history","w","norton","company","new_york","fourth","estate","london_category","coffeehouses","category_types","restaurants_category","coffee","culture"],"clean_bigrams":[["image","caf"],["caf","de"],["thumb","caf"],["caf","de"],["paris","image"],["thumb","discussing"],["paris","caf"],["coffeehouse","coffee"],["coffee","shop"],["primarily","serves"],["serves","hot"],["hot","coffee"],["coffee","related"],["related","coffee"],["coffee","beverages"],["caf","latte"],["latte","cappuccino"],["cappuccino","espresso"],["espresso","teand"],["coffeehouses","also"],["also","serve"],["serve","cold"],["cold","beveragesuch"],["iced","coffee"],["iced","tea"],["tea","many"],["many","caf"],["also","serve"],["type","ofood"],["light","snacks"],["pastries","coffeehouses"],["coffeehouses","range"],["owner","operated"],["operated","small"],["small","business"],["large","multinational"],["multinational","corporations"],["continental","europe"],["europe","caf"],["often","serve"],["serve","alcoholic"],["alcoholic","beverages"],["light","food"],["term","caf"],["caf","may"],["may","also"],["also","refer"],["tearoom","uk"],["us","tea"],["tea","room"],["room","greasy"],["greasy","spoon"],["inexpensive","restaurant"],["restaurant","colloquially"],["colloquially","called"],["caff","transport"],["transport","caf"],["casual","eating"],["eating","andrinking"],["andrinking","place"],["coffeehouse","may"],["may","share"],["bar","orestaurant"],["cafeteria","many"],["many","coffeehouses"],["west","asian"],["asian","immigrant"],["immigrant","districts"],["western","world"],["world","offer"],["offer","shisha"],["tobacco","smoked"],["espresso","bar"],["bar","espresso"],["espresso","bars"],["serving","espresso"],["coffeehouses","largely"],["largely","serve"],["social","interaction"],["coffeehouse","provides"],["provides","patrons"],["congregate","talk"],["talk","read"],["one","another"],["time","whether"],["whether","individually"],["coffeehouses","withis"],["withis","capability"],["also","become"],["become","places"],["tablet","computer"],["informal","club"],["regular","members"],["folk","music"],["music","scene"],["scene","coffeehouses"],["hosted","singer"],["performances","typically"],["thumb","evolution"],["word","coffee"],["coffee","thumb"],["thumb","evolution"],["word","coffee"],["common","english"],["english","spelling"],["spelling","caf"],["french","portuguese"],["portuguese","spanish"],["spanish","spelling"],["english","speaking"],["speaking","countries"],["late","th"],["th","century"],["century","oxford"],["oxford","english"],["english","dictionary"],["ed","entry"],["entry","number"],["number","caf"],["english","generally"],["generally","makes"],["makes","little"],["little","use"],["pronounced","withouthe"],["withouthe","presence"],["spelling","cafe"],["common","english"],["english","language"],["language","usage"],["usage","throughouthe"],["throughouthe","world"],["world","especially"],["less","formal"],["greasy","spoon"],["spoon","variety"],["variety","although"],["ithe","italian"],["italian","spelling"],["spelling","caff"],["alsometimes","used"],["english","oxford"],["oxford","english"],["english","dictionary"],["ed","entry"],["entry","number"],["number","caff"],["caff","n"],["southern","england"],["england","especially"],["especially","around"],["around","london"],["french","pronunciation"],["caff","oxford"],["oxford","english"],["english","dictionary"],["ed","entry"],["entry","number"],["number","caff"],["caff","thenglish"],["thenglish","words"],["words","coffee"],["caf","derive"],["italian","word"],["word","coffee"],["coffee","caff"],["turn","derived"],["arabic","language"],["language","arabic"],["arabic","language"],["language","arabic"],["arabic","term"],["originally","referred"],["wine","ban"],["induced","european"],["european","knowledge"],["beverage","made"],["seeds","came"],["european","contact"],["turkey","likely"],["likely","via"],["via","venetian"],["venetian","ottoman"],["ottoman","trade"],["trade","relations"],["word","root"],["root","kafe"],["kafe","appears"],["many","european"],["european","languages"],["spellings","including"],["including","portuguese"],["portuguese","spanish"],["french","caf"],["caf","german"],["polish","language"],["language","polish"],["ukrainian","language"],["language","ukrainian"],["others","coffeehouses"],["mecca","became"],["political","gatherings"],["gatherings","andrinking"],["first","coffeehouse"],["many","coffeehouses"],["cairo","image"],["ottoman","empire"],["ottoman","empire"],["empire","ottoman"],["ottoman","empire"],["empire","ottoman"],["writings","abouthe"],["abouthe","opening"],["first","coffeehouse"],["istanbul","various"],["various","legends"],["legends","involving"],["late","th"],["th","century"],["culinary","tradition"],["th","century"],["century","french"],["french","traveler"],["writer","jean"],["n","coffeehouse"],["coffeehouse","scene"],["scene","file"],["file","th"],["th","century"],["x","jpg"],["jpg","thumb"],["thumb","right"],["right","coffeehouse"],["london","th"],["th","century"],["century","file"],["thumb","right"],["istanbul","th"],["th","century"],["th","century"],["century","coffee"],["coffee","appeared"],["europe","outside"],["ottoman","empire"],["coffeehouses","werestablished"],["quickly","became"],["became","popular"],["first","coffeehouses"],["coffeehouses","appeared"],["reich","anna"],["anna","coffee"],["coffee","tea"],["tea","history"],["venice","la"],["first","one"],["first","coffeehouse"],["england","waset"],["jacob","athe"],["athe","angel"],["st","peter"],["cafe","bar"],["bar","called"],["grand","cafe"],["cafe","oxford"],["lane","coffee"],["also","still"],["existence","today"],["first","coffeehouse"],["st","michael"],["ros","e"],["turkish","people"],["people","turkish"],["turkish","goods"],["assisted","ros"],["ros","e"],["st","michael"],["london","coffee"],["coffee","houses"],["houses","began"],["also","began"],["gain","political"],["political","importance"],["importance","due"],["ros","e"],["e","also"],["also","established"],["first","coffeehouse"],["coffee","monopoly"],["cut","opened"],["caf","coffee"],["home","history"],["coffeehouse","still"],["still","exists"],["exists","today"],["popular","meeting"],["meeting","place"],["french","age"],["jean","jacques"],["first","modern"],["modern","encyclopedia"],["former","ottoman"],["constantinople","opened"],["first","coffee"],["coffee","shop"],["today","sits"],["main","building"],["national","bank"],["first","coffeehouse"],["first","cafeteria"],["ukrainian","resident"],["firsto","serve"],["serve","coffee"],["street","also"],["also","named"],["coffee","culture"],["drinking","coffee"],["second","half"],["th","century"],["first","registered"],["registered","coffeehouse"],["merchant","named"],["named","johannes"],["also","known"],["f","r"],["r","geschichte"],["geschichte","der"],["der","stadt"],["stadt","wien"],["wien","vol"],["vol","p"],["p","cited"],["anna","maria"],["maria","die"],["f","r"],["r","das"],["wien","p"],["p","online"],["online","available"],["years","later"],["later","four"],["owned","coffeehouses"],["coffeehouses","though"],["though","charles"],["charles","ii"],["england","charles"],["charles","ii"],["ii","later"],["later","tried"],["london","coffeehouses"],["reports","concerning"],["public","flocked"],["several","decades"],["decades","following"],["gathered","around"],["around","john"],["coffee","house"],["russell","street"],["street","covent"],["covent","garden"],["social","status"],["result","associated"],["generally","coffeehouses"],["business","could"],["london","gazette"],["gazette","government"],["government","announcements"],["announcements","read"],["read","lloyd"],["coffee","house"],["coffeehouse","run"],["edward","lloyd"],["ship","insurance"],["particular","clientele"],["clientele","divided"],["british","political"],["authors","men"],["men","ofashion"],["london","old"],["old","city"],["city","center"],["center","according"],["according","tone"],["tone","french"],["french","visitor"],["visitor","antoine"],["antoine","fran"],["fran","ois"],["righto","read"],["againsthe","government"],["english","liberty"],["quality","translation"],["monde","g"],["g","routledge"],["routledge","sons"],["sons","london"],["cafe","novelty"],["caf","novelty"],["spain","founded"],["germany","women"],["women","frequented"],["england","france"],["drag","clothing"],["clothing","drag"],["gain","entrance"],["well","known"],["known","engraving"],["parisian","caf"],["caf","c"],["gentlemen","hang"],["long","communal"],["writing","implements"],["open","fire"],["boiling","water"],["woman","present"],["segregation","separated"],["serves","coffee"],["tall","cups"],["traditional","tale"],["caf","begins"],["begins","withe"],["green","beans"],["beans","left"],["left","behind"],["poland","polish"],["polish","king"],["king","john"],["john","iii"],["jan","iii"],["turn","gave"],["first","coffeehouse"],["vienna","withe"],["accepted","thathe"],["thathe","first"],["first","coffeehouse"],["actually","opened"],["merchant","named"],["named","johannes"],["london","coffeehouses"],["coffeehouses","preceded"],["club","organization"],["organization","club"],["mid","th"],["th","century"],["century","european"],["european","countries"],["united","kingdom"],["caf","withe"],["withe","acute"],["european","countries"],["cafe","without"],["without","acute"],["often","pronounced"],["pronounced","caff"],["greasy","spoon"],["place","serving"],["serving","mainly"],["mainly","fried"],["fried","food"],["particular","breakfast"],["breakfast","dishes"],["coffee","house"],["commodity","prices"],["london","stock"],["stock","exchange"],["exchange","lloyd"],["coffee","house"],["house","provided"],["discuss","insurance"],["insurance","deals"],["deals","leading"],["london","insurance"],["insurance","markethe"],["markethe","lloyd"],["register","classification"],["classification","society"],["otherelated","businesses"],["coffeehouses","provided"],["great","auction"],["auction","houses"],["th","century"],["oldest","extant"],["extant","coffeehouses"],["italy","werestablished"],["caff","greco"],["padua","caff"],["caff","dell"],["turin","victorian"],["victorian","era"],["era","victorian"],["victorian","england"],["temperance","movement"],["movement","set"],["working","class"],["relaxation","free"],["public","house"],["house","pub"],["th","century"],["century","dublin"],["dublin","coffeehouses"],["coffeehouses","functioned"],["early","reading"],["reading","centers"],["subscription","libraries"],["provided","greater"],["greater","print"],["print","access"],["social","magnet"],["society","came"],["came","together"],["discuss","topics"],["th","century"],["century","werequipped"],["werequipped","witheir"],["printing","presses"],["book","shop"],["shop","later"],["would","merge"],["coffeehouses","grew"],["public","reading"],["reading","centers"],["centers","circulating"],["circulating","libraries"],["dublin","expanded"],["expanded","resembling"],["resembling","public"],["public","libraries"],["books","public"],["public","library"],["library","fees"],["expensive","book"],["circulating","libraries"],["affordable","circulating"],["circulating","library"],["library","keepers"],["keepers","could"],["could","keep"],["keep","fees"],["fees","low"],["also","printers"],["printers","publishers"],["newspaper","proprietors"],["proprietors","one"],["first","circulating"],["circulating","libraries"],["competition","grew"],["patrons","wanting"],["wanting","several"],["several","books"],["time","women"],["circulating","libraries"],["libraries","would"],["carrying","books"],["books","tailored"],["female","readers"],["readers","another"],["another","lure"],["circulating","libraries"],["flexible","witheir"],["witheir","loan"],["loan","terms"],["increased","circulation"],["yearly","subscription"],["purchase","books"],["circulating","libraries"],["libraries","increased"],["increased","people"],["books","became"],["became","affordable"],["th","centuries"],["centuries","coffeehouses"],["commonly","meeting"],["meeting","point"],["across","europe"],["europe","current"],["current","day"],["day","europe"],["europe","file"],["thumb","right"],["right","coffeehouse"],["greece","file"],["file","vincent"],["vincent","willem"],["willem","van"],["cafe","terrace"],["jpg","thumb"],["thumb","cafe"],["cafe","terrace"],["night","september"],["vincent","van"],["european","countriesuch"],["austria","denmark"],["denmark","germany"],["germany","norway"],["norway","sweden"],["sweden","portugal"],["term","caf"],["caf","means"],["restaurant","primarily"],["primarily","serving"],["serving","coffee"],["danish","pastry"],["pastry","danish"],["danish","pastries"],["many","caf"],["also","serve"],["serve","light"],["light","mealsuch"],["european","caf"],["sidewalk","pavement"],["pavement","sidewalk"],["also","serve"],["serve","alcoholic"],["alcoholic","beverages"],["wine","particularly"],["southern","europe"],["bar","establishment"],["establishment","bar"],["also","sells"],["sells","alcoholic"],["alcoholic","beverages"],["serves","coffee"],["cannabis","coffee"],["coffee","shops"],["shops","coffee"],["coffee","shop"],["shop","using"],["using","thenglish"],["thenglish","term"],["drugs","cannabis"],["cannabis","drug"],["drug","cannabis"],["sell","alcoholic"],["alcoholic","beverages"],["caf","serve"],["lunch","restaurants"],["pastries","except"],["breakfast","coffee"],["italy","caf"],["typically","serve"],["espresso","coffee"],["coffee","cakes"],["alcoholic","drinks"],["drinks","bars"],["city","centres"],["centres","usually"],["different","prices"],["consumption","athe"],["athe","bar"],["table","united"],["united","states"],["states","coffee"],["coffee","shops"],["united","states"],["states","arose"],["pastry","centered"],["centered","italian"],["italian","coffeehouses"],["italian","american"],["american","immigrant"],["immigrant","communities"],["major","us"],["us","cities"],["cities","notably"],["notably","new"],["new","york"],["york","city"],["little","italy"],["italy","manhattan"],["manhattan","little"],["little","italy"],["greenwich","village"],["village","boston"],["north","end"],["san","francisco"],["north","beach"],["beach","san"],["san","francisco"],["francisco","california"],["california","north"],["north","beach"],["coffeehouses","also"],["also","served"],["commonly","folk"],["folk","music"],["music","folk"],["folk","performers"],["american","folk"],["folk","music"],["music","revival"],["likely","due"],["small","space"],["greenwich","village"],["north","beach"],["beach","became"],["became","major"],["major","haunts"],["beat","generation"],["generation","beats"],["highly","identified"],["identified","withese"],["withese","coffeehouses"],["youth","culture"],["evolved","non"],["non","italians"],["italians","consciously"],["consciously","copied"],["political","nature"],["folk","music"],["music","made"],["natural","tie"],["coffeehouses","witheir"],["witheir","association"],["political","action"],["well","known"],["known","performers"],["performers","like"],["like","joan"],["bob","dylan"],["dylan","began"],["careers","performing"],["lightnin","hopkins"],["domestic","situation"],["situation","due"],["coffeehouse","socializing"],["withe","opening"],["historic","last"],["last","exit"],["became","known"],["coffeehouse","scene"],["starbucks","chain"],["chain","later"],["later","standardized"],["espresso","bar"],["bar","espresso"],["espresso","bar"],["bar","model"],["united","states"],["states","used"],["coffeehouse","concept"],["names","like"],["lost","coin"],["coin","greenwich"],["greenwich","village"],["gathering","place"],["place","riverside"],["chapel","new"],["new","york"],["york","city"],["christian","music"],["music","often"],["often","guitar"],["guitar","based"],["performed","coffee"],["bible","study"],["study","christian"],["christian","bible"],["bible","studies"],["varying","backgrounds"],["backgrounds","gathered"],["casual","setting"],["traditional","church"],["print","book"],["book","published"],["coffeehouse","manual"],["manual","served"],["christian","coffeehouses"],["coffeehouses","including"],["name","suggestions"],["director","jesus"],["coffeehouse","manual"],["general","prior"],["little","known"],["american","cities"],["cities","apart"],["near","college"],["college","campuses"],["districts","associated"],["writers","artists"],["word","coffee"],["coffee","shop"],["shop","usually"],["family","style"],["style","restaurants"],["served","full"],["full","meals"],["whose","revenue"],["revenue","coffee"],["coffee","represented"],["small","portion"],["portion","morecently"],["word","coffee"],["coffee","shop"],["shop","often"],["often","refers"],["true","coffeehouse"],["coffeehouse","image"],["coffee","thumb"],["thumb","right"],["right","coffeehouses"],["coffeehouses","often"],["often","sell"],["sell","pastries"],["food","items"],["items","caf"],["caf","may"],["outdoor","section"],["section","terrace"],["terrace","pavement"],["pavement","sidewalk"],["sidewalk","cafe"],["cafe","sidewalk"],["sidewalk","caf"],["seats","tables"],["european","caf"],["open","public"],["public","space"],["space","compared"],["traditional","pubs"],["male","dominated"],["drinking","alcohol"],["alcohol","one"],["original","uses"],["information","exchange"],["withe","internet"],["internet","caf"],["modern","style"],["style","caf"],["urband","rural"],["rural","areas"],["areas","went"],["went","hand"],["hand","withe"],["withe","rising"],["rising","use"],["mobile","computers"],["internet","access"],["contemporary","styled"],["styled","venue"],["venue","help"],["modern","place"],["place","compared"],["traditional","pubs"],["thathey","replaced"],["replaced","middleast"],["middleast","image"],["jpg","thumb"],["thumb","right"],["right","coffeehouse"],["important","social"],["social","gathering"],["gathering","place"],["drink","coffee"],["coffee","usually"],["addition","men"],["men","go"],["music","read"],["read","books"],["books","play"],["play","chess"],["watch","tv"],["social","activities"],["activities","around"],["arab","world"],["traditionally","served"],["well","coffeehouses"],["colloquially","called"],["literally","coffee"],["see","also"],["also","arabic"],["local","variations"],["variations","also"],["also","commonly"],["commonly","served"],["herbal","tea"],["highly","popular"],["blend","egyptian"],["egyptian","arabic"],["opened","around"],["originally","patronized"],["patronized","mostly"],["older","people"],["always","ordering"],["clubs","cairo"],["rural","inns"],["thearly","th"],["th","century"],["became","crucial"],["crucial","venues"],["social","debates"],["debates","image"],["thumb","right"],["coffee","shop"],["angeles","philippines"],["philippines","angeles"],["angeles","city"],["city","philippines"],["chains","may"],["seen","accommodating"],["accommodating","business"],["business","people"],["even","higher"],["west","india"],["india","coffee"],["coffee","culture"],["chains","like"],["like","indian"],["indian","coffee"],["coffee","house"],["house","caf"],["caf","coffee"],["coffee","day"],["day","barista"],["become","popular"],["popular","cafes"],["considered","good"],["good","venues"],["conduct","office"],["office","meetings"],["malaysiand","singapore"],["singapore","traditional"],["traditional","breakfast"],["breakfast","coffee"],["coffee","shops"],["called","kopi"],["kopi","tiam"],["malay","language"],["language","malay"],["malay","word"],["word","coffee"],["hokkien","dialect"],["dialect","word"],["h","e"],["e","j"],["menus","typically"],["typically","feature"],["feature","simple"],["simple","offerings"],["variety","ofoods"],["ofoods","based"],["egg","food"],["food","egg"],["egg","toast"],["coconut","jam"],["jam","plus"],["plus","coffee"],["coffee","teand"],["teand","milo"],["milo","drink"],["drink","milo"],["chocolate","drink"],["extremely","popular"],["southeast","asiand"],["asiand","australasia"],["australasia","particularly"],["particularly","singapore"],["malaysia","singapore"],["singapore","also"],["also","coffee"],["coffee","shops"],["shops","known"],["cafe","culture"],["popular","coffee"],["coffee","bean"],["particular","sought"],["city","moreover"],["moreover","cafes"],["also","changed"],["social","scenes"],["singapore","instead"],["shopping","malls"],["youngsters","could"],["philippines","coffee"],["coffee","shop"],["shop","chains"],["chains","like"],["like","starbucks"],["starbucks","became"],["became","prevalent"],["middle","class"],["class","professionals"],["professionals","especially"],["also","serve"],["serve","coffee"],["coffee","alongside"],["also","served"],["served","coffee"],["australia","coffee"],["coffee","shops"],["generally","called"],["called","caf"],["caf","since"],["post","world"],["world","war"],["italian","immigrants"],["immigrants","introduced"],["introduced","espresso"],["espresso","coffee"],["coffee","machines"],["steady","rise"],["caf","culture"],["past","decade"],["decade","haseen"],["rapid","rise"],["site","roasted"],["roasted","specialty"],["specialty","coffee"],["coffee","particularly"],["melbourne","withe"],["withe","flat"],["flat","white"],["white","remaining"],["popular","coffee"],["coffee","drink"],["drink","egypt"],["smoking","shisha"],["athe","caf"],["caf","watching"],["match","studying"],["even","sometimes"],["sometimes","finishing"],["ethiopia","independent"],["independent","coffeehouses"],["struggled","prior"],["become","popular"],["young","professionals"],["traditional","coffee"],["coffee","roasting"],["whichas","become"],["become","well"],["well","known"],["coffee","shop"],["united","kingdom"],["kingdom","haunts"],["particular","italians"],["united","kingdom"],["kingdom","italian"],["italian","run"],["run","espresso"],["espresso","bars"],["formica","plastic"],["plastic","formica"],["formica","topped"],["topped","tables"],["cliff","richard"],["street","opened"],["witheir","exotic"],["espresso","machine"],["machine","coffee"],["coffee","machine"],["orange","fountain"],["personal","selections"],["third","age"],["age","pp"],["spread","tother"],["tother","urban"],["urban","centres"],["providing","cheap"],["cheap","warm"],["warm","places"],["young","people"],["global","coffee"],["coffee","bar"],["bar","standard"],["would","bestablished"],["final","decades"],["manger","specifically"],["section","headed"],["first","coffeehouse"],["espresso","bar"],["bar","file"],["jpg","thumb"],["thumb","right"],["right","upright"],["upright","interior"],["espresso","bar"],["philippines","thespresso"],["thespresso","bar"],["coffee","beverages"],["beverages","made"],["italy","thespresso"],["thespresso","bar"],["bar","haspread"],["haspread","throughouthe"],["throughouthe","world"],["various","forms"],["internationally","known"],["starbucks","coffee"],["coffee","based"],["seattle","washington"],["washington","us"],["costa","coffee"],["coffee","based"],["second","largest"],["largest","coffeehouse"],["coffeehouse","chains"],["chains","respectively"],["respectively","although"],["although","thespresso"],["thespresso","bar"],["bar","exists"],["form","throughout"],["throughout","much"],["world","thespresso"],["thespresso","bar"],["typically","centered"],["centered","around"],["long","counter"],["high","yield"],["yield","espresso"],["espresso","machine"],["machine","usually"],["usually","bean"],["cup","machines"],["machines","automatic"],["pump","type"],["type","machine"],["machine","although"],["although","occasionally"],["manually","operated"],["display","case"],["case","containing"],["containing","pastries"],["traditional","italian"],["italian","bar"],["bar","customers"],["customers","either"],["either","order"],["order","athe"],["athe","bar"],["usually","charged"],["higher","price"],["additional","charge"],["outside","table"],["table","united"],["provided","free"],["bars","also"],["also","sell"],["sell","coffee"],["even","music"],["music","north"],["north","american"],["american","espresso"],["espresso","bars"],["bars","also"],["also","athe"],["athe","forefront"],["public","wifi"],["wifi","access"],["access","points"],["provide","internet"],["internet","services"],["laptop","computers"],["offerings","athe"],["athe","typical"],["typical","espresso"],["espresso","bare"],["bare","generally"],["generally","quite"],["quite","italianate"],["italianate","inspiration"],["common","traditional"],["latte","cappuccino"],["bars","even"],["even","offer"],["offer","alcoholic"],["alcoholic","beveragesuch"],["nevertheless","typical"],["typical","pastries"],["common","additions"],["additions","include"],["large","selection"],["teas","well"],["north","american"],["american","espresso"],["espresso","bar"],["bar","culture"],["indian","spiced"],["spiced","tea"],["tea","drink"],["also","popular"],["countries","including"],["iced","teand"],["teand","iced"],["iced","coffee"],["espresso","bar"],["skilled","position"],["requires","familiarity"],["familiarity","withe"],["withe","drinks"],["made","often"],["inorth","american"],["reasonable","facility"],["usual","customer"],["customer","service"],["service","skills"],["skills","file"],["file","caf"],["vienna","file"],["jpg","coffee"],["coffee","shop"],["file","porto"],["porto","cafe"],["porto","see"],["see","also"],["also","coffee"],["th","centuries"],["centuries","greasy"],["greasy","spoon"],["spoon","kafana"],["kafana","list"],["coffeehouse","chains"],["chains","manga"],["manga","cafe"],["cafe","tea"],["tea","house"],["h","coffee"],["coffee","houses"],["houses","early"],["early","public"],["public","libraries"],["eighteenth","century"],["century","dublin"],["dublin","library"],["library","information"],["information","history"],["history","furthereading"],["furthereading","marie"],["marie","france"],["france","boyer"],["boyer","photographs"],["french","caf"],["caf","london"],["london","thames"],["thames","hudson"],["hudson","brian"],["brian","cowan"],["coffee","themergence"],["british","coffeehouse"],["coffeehouse","yale"],["yale","university"],["university","press"],["coffee","house"],["cultural","history"],["society","irish"],["irish","examiner"],["examiner","april"],["april","p"],["p","ray"],["great","good"],["good","place"],["great","good"],["good","place"],["place","cafes"],["cafes","coffee"],["coffee","shops"],["shops","community"],["community","centers"],["centers","general"],["general","stores"],["stores","bars"],["day","new"],["new","york"],["books","tom"],["six","glasses"],["glasses","walker"],["walker","company"],["early","modern"],["modern","istanbul"],["istanbul","public"],["public","space"],["r","ottoman"],["ottoman","urban"],["urban","spaces"],["wild","coffee"],["dark","history"],["history","w"],["w","norton"],["norton","company"],["company","new"],["new","york"],["york","fourth"],["fourth","estate"],["estate","london"],["london","category"],["category","coffeehouses"],["coffeehouses","category"],["category","types"],["restaurants","category"],["category","coffee"],["coffee","culture"]],"all_collocations":["image caf","caf de","thumb caf","caf de","paris image","thumb discussing","paris caf","coffeehouse coffee","coffee shop","primarily serves","serves hot","hot coffee","coffee related","related coffee","coffee beverages","caf latte","latte cappuccino","cappuccino espresso","espresso teand","coffeehouses also","also serve","serve cold","cold beveragesuch","iced coffee","iced tea","tea many","many caf","also serve","type ofood","light snacks","pastries coffeehouses","coffeehouses range","owner operated","operated small","small business","large multinational","multinational corporations","continental europe","europe caf","often serve","serve alcoholic","alcoholic beverages","light food","term caf","caf may","may also","also refer","tearoom uk","us tea","tea room","room greasy","greasy spoon","inexpensive restaurant","restaurant colloquially","colloquially called","caff transport","transport caf","casual eating","eating andrinking","andrinking place","coffeehouse may","may share","bar orestaurant","cafeteria many","many coffeehouses","west asian","asian immigrant","immigrant districts","western world","world offer","offer shisha","tobacco smoked","espresso bar","bar espresso","espresso bars","serving espresso","coffeehouses largely","largely serve","social interaction","coffeehouse provides","provides patrons","congregate talk","talk read","one another","time whether","whether individually","coffeehouses withis","withis capability","also become","become places","tablet computer","informal club","regular members","folk music","music scene","scene coffeehouses","hosted singer","performances typically","thumb evolution","word coffee","coffee thumb","thumb evolution","word coffee","common english","english spelling","spelling caf","french portuguese","portuguese spanish","spanish spelling","english speaking","speaking countries","late th","th century","century oxford","oxford english","english dictionary","ed entry","entry number","number caf","english generally","generally makes","makes little","little use","pronounced withouthe","withouthe presence","spelling cafe","common english","english language","language usage","usage throughouthe","throughouthe world","world especially","less formal","greasy spoon","spoon variety","variety although","ithe italian","italian spelling","spelling caff","alsometimes used","english oxford","oxford english","english dictionary","ed entry","entry number","number caff","caff n","southern england","england especially","especially around","around london","french pronunciation","caff oxford","oxford english","english dictionary","ed entry","entry number","number caff","caff thenglish","thenglish words","words coffee","caf derive","italian word","word coffee","coffee caff","turn derived","arabic language","language arabic","arabic language","language arabic","arabic term","originally referred","wine ban","induced european","european knowledge","beverage made","seeds came","european contact","turkey likely","likely via","via venetian","venetian ottoman","ottoman trade","trade relations","word root","root kafe","kafe appears","many european","european languages","spellings including","including portuguese","portuguese spanish","french caf","caf german","polish language","language polish","ukrainian language","language ukrainian","others coffeehouses","mecca became","political gatherings","gatherings andrinking","first coffeehouse","many coffeehouses","cairo image","ottoman empire","ottoman empire","empire ottoman","ottoman empire","empire ottoman","writings abouthe","abouthe opening","first coffeehouse","istanbul various","various legends","legends involving","late th","th century","culinary tradition","th century","century french","french traveler","writer jean","n coffeehouse","coffeehouse scene","scene file","file th","th century","x jpg","right coffeehouse","london th","th century","century file","istanbul th","th century","th century","century coffee","coffee appeared","europe outside","ottoman empire","coffeehouses werestablished","quickly became","became popular","first coffeehouses","coffeehouses appeared","reich anna","anna coffee","coffee tea","tea history","venice la","first one","first coffeehouse","england waset","jacob athe","athe angel","st peter","cafe bar","bar called","grand cafe","cafe oxford","lane coffee","also still","existence today","first coffeehouse","st michael","ros e","turkish people","people turkish","turkish goods","assisted ros","ros e","st michael","london coffee","coffee houses","houses began","also began","gain political","political importance","importance due","ros e","e also","also established","first coffeehouse","coffee monopoly","cut opened","caf coffee","home history","coffeehouse still","still exists","exists today","popular meeting","meeting place","french age","jean jacques","first modern","modern encyclopedia","former ottoman","constantinople opened","first coffee","coffee shop","today sits","main building","national bank","first coffeehouse","first cafeteria","ukrainian resident","firsto serve","serve coffee","street also","also named","coffee culture","drinking coffee","second half","th century","first registered","registered coffeehouse","merchant named","named johannes","also known","f r","r geschichte","geschichte der","der stadt","stadt wien","wien vol","vol p","p cited","anna maria","maria die","f r","r das","wien p","p online","online available","years later","later four","owned coffeehouses","coffeehouses though","though charles","charles ii","england charles","charles ii","ii later","later tried","london coffeehouses","reports concerning","public flocked","several decades","decades following","gathered around","around john","coffee house","russell street","street covent","covent garden","social status","result associated","generally coffeehouses","business could","london gazette","gazette government","government announcements","announcements read","read lloyd","coffee house","coffeehouse run","edward lloyd","ship insurance","particular clientele","clientele divided","british political","authors men","men ofashion","london old","old city","city center","center according","according tone","tone french","french visitor","visitor antoine","antoine fran","fran ois","righto read","againsthe government","english liberty","quality translation","monde g","g routledge","routledge sons","sons london","cafe novelty","caf novelty","spain founded","germany women","women frequented","england france","drag clothing","clothing drag","gain entrance","well known","known engraving","parisian caf","caf c","gentlemen hang","long communal","writing implements","open fire","boiling water","woman present","segregation separated","serves coffee","tall cups","traditional tale","caf begins","begins withe","green beans","beans left","left behind","poland polish","polish king","king john","john iii","jan iii","turn gave","first coffeehouse","vienna withe","accepted thathe","thathe first","first coffeehouse","actually opened","merchant named","named johannes","london coffeehouses","coffeehouses preceded","club organization","organization club","mid th","th century","century european","european countries","united kingdom","caf withe","withe acute","european countries","cafe without","without acute","often pronounced","pronounced caff","greasy spoon","place serving","serving mainly","mainly fried","fried food","particular breakfast","breakfast dishes","coffee house","commodity prices","london stock","stock exchange","exchange lloyd","coffee house","house provided","discuss insurance","insurance deals","deals leading","london insurance","insurance markethe","markethe lloyd","register classification","classification society","otherelated businesses","coffeehouses provided","great auction","auction houses","th century","oldest extant","extant coffeehouses","italy werestablished","caff greco","padua caff","caff dell","turin victorian","victorian era","era victorian","victorian england","temperance movement","movement set","working class","relaxation free","public house","house pub","th century","century dublin","dublin coffeehouses","coffeehouses functioned","early reading","reading centers","subscription libraries","provided greater","greater print","print access","social magnet","society came","came together","discuss topics","th century","century werequipped","werequipped witheir","printing presses","book shop","shop later","would merge","coffeehouses grew","public reading","reading centers","centers circulating","circulating libraries","dublin expanded","expanded resembling","resembling public","public libraries","books public","public library","library fees","expensive book","circulating libraries","affordable circulating","circulating library","library keepers","keepers could","could keep","keep fees","fees low","also printers","printers publishers","newspaper proprietors","proprietors one","first circulating","circulating libraries","competition grew","patrons wanting","wanting several","several books","time women","circulating libraries","libraries would","carrying books","books tailored","female readers","readers another","another lure","circulating libraries","flexible witheir","witheir loan","loan terms","increased circulation","yearly subscription","purchase books","circulating libraries","libraries increased","increased people","books became","became affordable","th centuries","centuries coffeehouses","commonly meeting","meeting point","across europe","europe current","current day","day europe","europe file","right coffeehouse","greece file","file vincent","vincent willem","willem van","cafe terrace","thumb cafe","cafe terrace","night september","vincent van","european countriesuch","austria denmark","denmark germany","germany norway","norway sweden","sweden portugal","term caf","caf means","restaurant primarily","primarily serving","serving coffee","danish pastry","pastry danish","danish pastries","many caf","also serve","serve light","light mealsuch","european caf","sidewalk pavement","pavement sidewalk","also serve","serve alcoholic","alcoholic beverages","wine particularly","southern europe","bar establishment","establishment bar","also sells","sells alcoholic","alcoholic beverages","serves coffee","cannabis coffee","coffee shops","shops coffee","coffee shop","shop using","using thenglish","thenglish term","drugs cannabis","cannabis drug","drug cannabis","sell alcoholic","alcoholic beverages","caf serve","lunch restaurants","pastries except","breakfast coffee","italy caf","typically serve","espresso coffee","coffee cakes","alcoholic drinks","drinks bars","city centres","centres usually","different prices","consumption athe","athe bar","table united","united states","states coffee","coffee shops","united states","states arose","pastry centered","centered italian","italian coffeehouses","italian american","american immigrant","immigrant communities","major us","us cities","cities notably","notably new","new york","york city","little italy","italy manhattan","manhattan little","little italy","greenwich village","village boston","north end","san francisco","north beach","beach san","san francisco","francisco california","california north","north beach","coffeehouses also","also served","commonly folk","folk music","music folk","folk performers","american folk","folk music","music revival","likely due","small space","greenwich village","north beach","beach became","became major","major haunts","beat generation","generation beats","highly identified","identified withese","withese coffeehouses","youth culture","evolved non","non italians","italians consciously","consciously copied","political nature","folk music","music made","natural tie","coffeehouses witheir","witheir association","political action","well known","known performers","performers like","like joan","bob dylan","dylan began","careers performing","lightnin hopkins","domestic situation","situation due","coffeehouse socializing","withe opening","historic last","last exit","became known","coffeehouse scene","starbucks chain","chain later","later standardized","espresso bar","bar espresso","espresso bar","bar model","united states","states used","coffeehouse concept","names like","lost coin","coin greenwich","greenwich village","gathering place","place riverside","chapel new","new york","york city","christian music","music often","often guitar","guitar based","performed coffee","bible study","study christian","christian bible","bible studies","varying backgrounds","backgrounds gathered","casual setting","traditional church","print book","book published","coffeehouse manual","manual served","christian coffeehouses","coffeehouses including","name suggestions","director jesus","coffeehouse manual","general prior","little known","american cities","cities apart","near college","college campuses","districts associated","writers artists","word coffee","coffee shop","shop usually","family style","style restaurants","served full","full meals","whose revenue","revenue coffee","coffee represented","small portion","portion morecently","word coffee","coffee shop","shop often","often refers","true coffeehouse","coffeehouse image","coffee thumb","right coffeehouses","coffeehouses often","often sell","sell pastries","food items","items caf","caf may","outdoor section","section terrace","terrace pavement","pavement sidewalk","sidewalk cafe","cafe sidewalk","sidewalk caf","seats tables","european caf","open public","public space","space compared","traditional pubs","male dominated","drinking alcohol","alcohol one","original uses","information exchange","withe internet","internet caf","modern style","style caf","urband rural","rural areas","areas went","went hand","hand withe","withe rising","rising use","mobile computers","internet access","contemporary styled","styled venue","venue help","modern place","place compared","traditional pubs","thathey replaced","replaced middleast","middleast image","right coffeehouse","important social","social gathering","gathering place","drink coffee","coffee usually","addition men","men go","music read","read books","books play","play chess","watch tv","social activities","activities around","arab world","traditionally served","well coffeehouses","colloquially called","literally coffee","see also","also arabic","local variations","variations also","also commonly","commonly served","herbal tea","highly popular","blend egyptian","egyptian arabic","opened around","originally patronized","patronized mostly","older people","always ordering","clubs cairo","rural inns","thearly th","th century","became crucial","crucial venues","social debates","debates image","coffee shop","angeles philippines","philippines angeles","angeles city","city philippines","chains may","seen accommodating","accommodating business","business people","even higher","west india","india coffee","coffee culture","chains like","like indian","indian coffee","coffee house","house caf","caf coffee","coffee day","day barista","become popular","popular cafes","considered good","good venues","conduct office","office meetings","malaysiand singapore","singapore traditional","traditional breakfast","breakfast coffee","coffee shops","called kopi","kopi tiam","malay language","language malay","malay word","word coffee","hokkien dialect","dialect word","h e","e j","menus typically","typically feature","feature simple","simple offerings","variety ofoods","ofoods based","egg food","food egg","egg toast","coconut jam","jam plus","plus coffee","coffee teand","teand milo","milo drink","drink milo","chocolate drink","extremely popular","southeast asiand","asiand australasia","australasia particularly","particularly singapore","malaysia singapore","singapore also","also coffee","coffee shops","shops known","cafe culture","popular coffee","coffee bean","particular sought","city moreover","moreover cafes","also changed","social scenes","singapore instead","shopping malls","youngsters could","philippines coffee","coffee shop","shop chains","chains like","like starbucks","starbucks became","became prevalent","middle class","class professionals","professionals especially","also serve","serve coffee","coffee alongside","also served","served coffee","australia coffee","coffee shops","generally called","called caf","caf since","post world","world war","italian immigrants","immigrants introduced","introduced espresso","espresso coffee","coffee machines","steady rise","caf culture","past decade","decade haseen","rapid rise","site roasted","roasted specialty","specialty coffee","coffee particularly","melbourne withe","withe flat","flat white","white remaining","popular coffee","coffee drink","drink egypt","smoking shisha","athe caf","caf watching","match studying","even sometimes","sometimes finishing","ethiopia independent","independent coffeehouses","struggled prior","become popular","young professionals","traditional coffee","coffee roasting","whichas become","become well","well known","coffee shop","united kingdom","kingdom haunts","particular italians","united kingdom","kingdom italian","italian run","run espresso","espresso bars","formica plastic","plastic formica","formica topped","topped tables","cliff richard","street opened","witheir exotic","espresso machine","machine coffee","coffee machine","orange fountain","personal selections","third age","age pp","spread tother","tother urban","urban centres","providing cheap","cheap warm","warm places","young people","global coffee","coffee bar","bar standard","would bestablished","final decades","manger specifically","section headed","first coffeehouse","espresso bar","bar file","right upright","upright interior","espresso bar","philippines thespresso","thespresso bar","coffee beverages","beverages made","italy thespresso","thespresso bar","bar haspread","haspread throughouthe","throughouthe world","various forms","internationally known","starbucks coffee","coffee based","seattle washington","washington us","costa coffee","coffee based","second largest","largest coffeehouse","coffeehouse chains","chains respectively","respectively although","although thespresso","thespresso bar","bar exists","form throughout","throughout much","world thespresso","thespresso bar","typically centered","centered around","long counter","high yield","yield espresso","espresso machine","machine usually","usually bean","cup machines","machines automatic","pump type","type machine","machine although","although occasionally","manually operated","display case","case containing","containing pastries","traditional italian","italian bar","bar customers","customers either","either order","order athe","athe bar","usually charged","higher price","additional charge","outside table","table united","provided free","bars also","also sell","sell coffee","even music","music north","north american","american espresso","espresso bars","bars also","also athe","athe forefront","public wifi","wifi access","access points","provide internet","internet services","laptop computers","offerings athe","athe typical","typical espresso","espresso bare","bare generally","generally quite","quite italianate","italianate inspiration","common traditional","latte cappuccino","bars even","even offer","offer alcoholic","alcoholic beveragesuch","nevertheless typical","typical pastries","common additions","additions include","large selection","teas well","north american","american espresso","espresso bar","bar culture","indian spiced","spiced tea","tea drink","also popular","countries including","iced teand","teand iced","iced coffee","espresso bar","skilled position","requires familiarity","familiarity withe","withe drinks","made often","inorth american","reasonable facility","usual customer","customer service","service skills","skills file","file caf","vienna file","jpg coffee","coffee shop","file porto","porto cafe","porto see","see also","also coffee","th centuries","centuries greasy","greasy spoon","spoon kafana","kafana list","coffeehouse chains","chains manga","manga cafe","cafe tea","tea house","h coffee","coffee houses","houses early","early public","public libraries","eighteenth century","century dublin","dublin library","library information","information history","history furthereading","furthereading marie","marie france","france boyer","boyer photographs","french caf","caf london","london thames","thames hudson","hudson brian","brian cowan","coffee themergence","british coffeehouse","coffeehouse yale","yale university","university press","coffee house","cultural history","society irish","irish examiner","examiner april","april p","p ray","great good","good place","great good","good place","place cafes","cafes coffee","coffee shops","shops community","community centers","centers general","general stores","stores bars","day new","new york","books tom","six glasses","glasses walker","walker company","early modern","modern istanbul","istanbul public","public space","r ottoman","ottoman urban","urban spaces","wild coffee","dark history","history w","w norton","norton company","company new","new york","york fourth","fourth estate","estate london","london category","category coffeehouses","coffeehouses category","category types","restaurants category","category coffee","coffee culture"],"new_description":"image caf_de thumb caf_de paris image thumb discussing franco war paris caf illustrated coffeehouse coffee_shop caf cafe establishment primarily serves hot coffee related coffee beverages caf latte cappuccino espresso teand hot coffeehouses also_serve cold beveragesuch iced coffee iced tea many caf also_serve type ofood light snacks pastries coffeehouses range owner operated small business large multinational corporations continental_europe caf often serve_alcoholic_beverages light food elsewhere term caf may_also refer tearoom uk us tea_room greasy_spoon small inexpensive restaurant colloquially called caff transport caf casual eating andrinking place coffeehouse may share characteristics bar orestaurant different cafeteria many coffeehouses middleast west asian immigrant districts western world offer shisha greek turkish tobacco smoked espresso bar espresso bars type coffeehouse specializes serving espresso espresso cultural coffeehouses largely serve centers social interaction coffeehouse provides patrons place congregate talk read one another pass time whether individually small development coffeehouses withis capability also become places patrons access internet laptop tablet computer coffeehouse serve informal club regular members early folk music scene coffeehouses hosted singer performances typically thevening word thumb evolution word coffee thumb evolution word coffee common english spelling caf french portuguese spanish spelling adopted english_speaking countries late_th century oxford_english_dictionary ed entry number caf english generally makes little use marks tends place readers remember pronounced withouthe presence spelling cafe become common english_language usage throughouthe_world especially less formal greasy_spoon variety although prescription often ithe italian spelling caff alsometimes used english oxford_english_dictionary ed entry number caff n southern england especially around london french pronunciation often altered caff oxford_english_dictionary ed entry number caff thenglish words coffee caf_derive italian word coffee caff cave venice turn derived arabic language arabic arabic language arabic term originally referred type wine wine ban mohammed name transferred coffee effect induced european knowledge coffee plant beverage made seeds came european contact turkey likely via venetian ottoman trade relations word root kafe appears many european languages various spellings including portuguese spanish french caf german polish language polish ukrainian language ukrainian others coffeehouses mecca became concern viewed places political gatherings andrinking banned muslims first coffeehouse opened damascus long many coffeehouses cairo image story righthumb culture ottoman empire coffeehouse ottoman empire ottoman empire ottoman reports writings abouthe opening first coffeehouse istanbul various legends involving introduction coffee istanbul kiva late_th century culinary tradition documentation th_century french traveler writer jean gave description n coffeehouse scene file th_century x jpg thumb right coffeehouse london th_century file thumb right caf istanbul th_century th_century coffee appeared firstime europe outside ottoman empire coffeehouses werestablished quickly became_popular first coffeehouses appeared venice reich anna coffee tea history cup due traffic republic venice la ottomans first one recorded first coffeehouse england waset oxford jacob athe angel parish st_peter theast building site houses cafe bar called grand cafe oxford queen lane coffee also still existence today first coffeehouse london opened st michael alley proprietor ros e servant trader turkish people turkish goods edwards imported coffee assisted ros e setting thestablishment st michael alley number london coffee_houses began also began gain political importance due popularity places debate coffeehouses england ros e also established first coffeehouse paris held coffee monopoly cut opened caf coffee home history coffee coffeehouse still exists today popular meeting_place french age enlightenment jean jacques frequented arguably birthplace die first modern encyclopedia former ottoman constantinople opened first coffee_shop capital center city today sits main_building national bank first coffeehouse boston first cafeteria vienna founded ukrainian resident also firsto serve coffee milk statue street also named however coffee culture drinking coffee widespread country second_half th_century first registered coffeehouse vienna founded merchant named johannes also_known johannes karl des wien f r geschichte der stadt wien vol p cited anna maria die der f r das und wien p online available years_later four owned coffeehouses though charles ii england charles ii later tried london coffeehouses places met spread reports concerning conduct ministers public flocked several decades following restoration gathered around john_coffee house russell street_covent_garden coffeehouses great open men social status result associated equality generally coffeehouses places business could carried exchanged london gazette government announcements read lloyd london origins lloyd coffee_house coffeehouse run edward lloyd ship insurance business coffeehouses london attracted particular clientele divided occupation attitude british political merchants lawyers authors men ofashion city london old city center according tone french visitor antoine fran_ois coffeehouses righto read papers againsthe government seats english liberty adventures man quality translation v de est monde g routledge sons london cafe novelty thumb statue writer caf novelty spain founded banning women coffeehouses universal appear common europe germany women frequented england france banned dressed drag clothing drag gain entrance coffeehouse paris well_known engraving parisian caf c gentlemen hang hats sit long communal papers writing implements ranged open fire hanging boiling water woman present segregation separated booth serves coffee tall cups traditional tale origins caf begins withe green beans left behind defeated battle vienna coffee granted kings poland polish king john iii jan iii turn gave tone officers began first coffeehouse vienna withe however accepted thathe_first coffeehouse actually opened merchant named johannes london coffeehouses preceded club organization club mid_th century european_countries ireland_united_kingdom caf withe acute isimilar european_countries cafe without acute often pronounced caff likely greasy_spoon place serving mainly fried food particular breakfast dishes away jonathan coffee_house saw listing stock commodity prices evolved london stock exchange lloyd coffee_house provided venue merchants discuss insurance deals leading thestablishment lloyd london insurance markethe lloyd register classification society otherelated businesses attached coffeehouses provided start great auction houses christie th_century oldest extant coffeehouses italy werestablished venice caff greco rome caff padua caff dell turin victorian_era victorian england temperance movement set coffeehouses working_class place relaxation free alcohol alternative public_house_pub th_century dublin coffeehouses functioned early reading centers themergence circulation subscription libraries provided greater print access public coffeehouses social magnet different society came together discuss topics newspapers pamphlets coffeehouses th_century werequipped witheir printing presses incorporated book shop later would merge coffeehouses grew public reading centers circulating libraries dublin expanded resembling public libraries books_public_library fees expensive book circulating libraries affordable circulating library keepers could keep fees low also printers publishers newspaper proprietors one first circulating libraries established james competition grew number patrons wanting several books time women allowed circulating libraries would carrying books tailored female readers another lure circulating libraries flexible witheir loan terms rates increased circulation books cheaper yearly subscription purchase books circulating libraries increased people ability read access books became affordable th th_centuries coffeehouses commonly meeting point writer artist across_europe current day europe file thumb right coffeehouse greece file vincent willem van cafe terrace night jpg thumb cafe terrace night september vincent van european_countriesuch austria denmark germany norway sweden portugal others term caf means restaurant primarily serving coffee well pastry cake tart pie danish pastry danish pastries bun many caf also_serve light mealsuch european caf often tables sidewalk pavement sidewalk well caf also_serve alcoholic_beverages wine particularly southern europe netherlands belgium caf thequivalent bar_establishment_bar_also sells alcoholic_beverages netherlands serves coffee cannabis coffee_shops coffee_shop using thenglish term drugs cannabis drug cannabis generally allowed sell alcoholic_beverages france caf serve lunch restaurants day bars thevening generally pastries except mornings pain purchased breakfast coffee italy caf similar found france known bar typically serve variety espresso coffee cakes alcoholic_drinks bars city centres usually different prices consumption athe bar consumption table united_states coffee_shops united_states arose thespresso pastry centered italian coffeehouses italian american immigrant communities major us cities notably new_york city little italy manhattan little italy greenwich village boston north end end san_francisco north beach san_francisco_california north beach late coffeehouses also_served venue entertainment commonly folk music folk performers american folk music revival likely due thease accommodating small space lone accompanying guitar greenwich village north beach became major haunts beat generation beats highly identified withese coffeehouses youth culture evolved non italians consciously copied coffeehouses political nature much folk music made music natural tie coffeehouses witheir association political action number well_known performers like joan bob dylan began careers performing coffeehouses lightnin hopkins woman domestic situation due coffeehouse socializing coffeehouse withe opening historic last exit brooklyn became_known thriving coffeehouse scene starbucks chain later standardized espresso bar espresso bar model mid churches individuals united_states used coffeehouse concept outreach often names like lost coin greenwich village gathering place riverside chapel new_york city jesus buffalo christian music often guitar based performed coffee food provided bible study christian bible studies people varying backgrounds gathered casual setting traditional church print book published ministry david titled coffeehouse manual served guide christian coffeehouses including list name suggestions tim director jesus coffeehouse manual fellowship general prior coffeehouses little_known american cities apart located_near college campuses districts associated writers artists time word coffee_shop usually family_style_restaurants served full meals whose revenue coffee represented small portion morecently usage word coffee_shop often refers true coffeehouse image coffee thumb right coffeehouses often sell pastries food_items caf may outdoor section terrace pavement sidewalk cafe sidewalk caf seats tables especially case european caf caf offer open public_space compared many traditional pubs replaced male dominated focus drinking alcohol one original uses caf place information exchange communication reintroduced withe internet caf hotspot spread modern style caf urband rural_areas went hand hand withe rising use mobile computers internet access contemporary styled venue help create modern place compared traditional pubs old thathey replaced middleast image jpg thumb right coffeehouse damascus coffeehouse serves important social gathering place men coffeehouses drink coffee usually tea addition men go listen music read books_play chess watch tv enjoy social activities around arab world turkey shisha traditionally served well coffeehouses egypt colloquially called pronunciation literally coffee see_also arabic local variations also_commonly served tea herbal tea especially highly popular tea blend egyptian arabic first_opened around originally patronized mostly older people frequenting always ordering associated clubs cairo rural inns thearly_th century became crucial venues political social debates image thumb right coffee_shop angeles philippines angeles city philippines abundance recently chains may seen accommodating business people consumption coffee even higher west india coffee culture expanded chains like indian coffee_house caf coffee day barista become_popular cafes considered good venues conduct office meetings friends meet malaysiand singapore traditional breakfast coffee_shops called kopi tiam word portmanteau malay language malay word coffee altered english hokkien dialect word h e j menus typically feature simple offerings variety ofoods based egg food egg toast coconut jam plus coffee teand milo drink milo chocolate drink extremely popular southeast_asiand australasia particularly singapore malaysia singapore also coffee_shops known cafes past_years rise cafe culture specialty even popular coffee bean particular sought gourmet well ambience city moreover cafes also changed social scenes singapore instead shopping_malls youngsters could hang cafes philippines coffee_shop chains like starbucks became prevalent upper middle_class professionals especially however also_serve coffee alongside eventsuch often restaurants also_served coffee breakfast australia coffee_shops generally called caf since post world_war italian immigrants introduced espresso coffee machines australia steady rise caf culture past decade haseen rapid rise demand locally site roasted specialty coffee particularly sydney melbourne withe flat white remaining popular coffee drink egypt ethiopia cairo capital egypt caf shisha habit smoking shisha hanging athe caf watching match studying even sometimes finishing work capital ethiopia independent coffeehouses struggled prior become_popular young professionals time traditional coffee roasting home whichas become well_known coffee_shop opened united_kingdom haunts particular italians united_kingdom italian run espresso bars formica plastic formica topped tables feature soho provided backdrop well title cliff richard film first street opened gina witheir exotic espresso machine coffee machine weak coffee orange fountain perry adventures personal selections london university third age pp spread tother urban centres providing cheap warm places young_people congregate ambience global coffee bar standard would bestablished final decades century chainsuch manger specifically section headed first coffeehouse england angel opened oxford espresso bar file_jpg thumb right_upright interior espresso bar philippines thespresso bar type coffeehouse specializes coffee beverages made italy thespresso bar haspread throughouthe_world various forms internationally known starbucks coffee based seattle_washington us costa coffee based uk first second_largest coffeehouse chains respectively although thespresso bar exists form throughout much world thespresso bar typically centered around long counter high yield espresso machine usually bean cup machines automatic pump type machine although occasionally manually operated system display case containing pastries occasionally itemsuch traditional italian bar customers either order athe bar consume wish sit served usually charged higher price bars additional charge outside table united areas customers relax work provided free charge bars_also sell coffee candy even music north_american espresso bars_also athe forefront public wifi access points provide internet services people work laptop computers premises offerings athe typical espresso bare generally quite italianate inspiration common traditional latte latte cappuccino bars even offer alcoholic_beveragesuch nevertheless typical pastries italianate common additions include even usually large selection teas well north_american espresso bar culture responsible indian spiced tea drink also_popular countries_including iced teand iced coffee well worker espresso bar referred barista barista skilled position requires familiarity withe drinks made often inorth_american bars reasonable facility rather equipment well usual customer_service skills file caf caf vienna file medical jpg coffee_shop file porto cafe caf porto see_also coffee coffeehouses th th_centuries greasy_spoon kafana list coffeehouse chains manga cafe tea_house h coffee_houses early public libraries eighteenth_century dublin library information history furthereading marie france boyer photographs eric french caf london thames hudson brian cowan socialife coffee themergence british coffeehouse yale_university_press ellis coffee_house cultural_history robert society irish examiner april p ray great good place great good place cafes coffee_shops community centers general stores bars get day new_york books tom history world six glasses walker company coffeehouses early modern istanbul public_space surveillance thesis r ottoman urban spaces evaluation literature coffeehouses r wild coffee dark history w norton company new_york fourth estate london_category coffeehouses category_types restaurants_category coffee culture"},{"title":"Coghlan's Guides","description":"image coghlans railway companion coverpng thumb right iron road book image coghlans new guide to paris coverpng px thumb right coghlan s new guide to paris image coghlans guide to south italy coverpng thumb right coghlan s guide to south italy coghlan s guides were a series of travel guide book s to europe written by francis coghlan in the mid th century list of coghlan s guides by date of publication a guide to france or travellers their own commissionershewing the cheapest and most expeditiousystem of travelling illustrated with an engraved plan of calais etc j onwhyn london s indexes s index contents index list of coghlan s guides by geographicoverage index index contents great britain coast companion to rye winchelsea hastingst leonards east bourne brighton worthing and bognor london hughes contents index index see also charles francis coghlan thespian son of coghlan externalinks worldcat francis coghlancestrycom coghlan family category travel guide books category series of books category publications established in the s category tourism in europe","main_words":["image","railway","companion","coverpng_thumb","right","iron","road","book","image","new","guide","paris","px_thumb","right","coghlan","new","guide","paris","image","guide","south","italy","coverpng_thumb","right","coghlan","guide","south","italy","coghlan","guides","series","travel_guide_book","europe","written","francis","coghlan","mid_th","century","list","coghlan","guides","date","publication","guide","france","travellers","cheapest","travelling","illustrated","plan","calais","etc","j","london","index","contents","index","list","coghlan","guides","geographicoverage","index_index","contents","great_britain","coast","companion","rye","east","brighton","london","hughes","contents","charles","francis","coghlan","son","coghlan","externalinks","francis","coghlan","family","category_travel_guide_books","category_series","books_category","publications_established","category_tourism","europe"],"clean_bigrams":[["railway","companion"],["companion","coverpng"],["coverpng","thumb"],["thumb","right"],["right","iron"],["iron","road"],["road","book"],["book","image"],["new","guide"],["paris","coverpng"],["coverpng","px"],["px","thumb"],["thumb","right"],["right","coghlan"],["new","guide"],["paris","image"],["south","italy"],["italy","coverpng"],["coverpng","thumb"],["thumb","right"],["right","coghlan"],["south","italy"],["italy","coghlan"],["travel","guide"],["guide","book"],["europe","written"],["francis","coghlan"],["mid","th"],["th","century"],["century","list"],["travelling","illustrated"],["calais","etc"],["etc","j"],["index","contents"],["contents","index"],["index","list"],["geographicoverage","index"],["index","index"],["index","contents"],["contents","great"],["great","britain"],["britain","coast"],["coast","companion"],["london","hughes"],["hughes","contents"],["contents","index"],["index","index"],["index","see"],["see","also"],["also","charles"],["charles","francis"],["francis","coghlan"],["coghlan","externalinks"],["francis","coghlan"],["coghlan","family"],["family","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","tourism"]],"all_collocations":["railway companion","companion coverpng","coverpng thumb","right iron","iron road","road book","book image","new guide","paris coverpng","coverpng px","px thumb","right coghlan","new guide","paris image","south italy","italy coverpng","coverpng thumb","right coghlan","south italy","italy coghlan","travel guide","guide book","europe written","francis coghlan","mid th","th century","century list","travelling illustrated","calais etc","etc j","index contents","contents index","index list","geographicoverage index","index index","index contents","contents great","great britain","britain coast","coast companion","london hughes","hughes contents","contents index","index index","index see","see also","also charles","charles francis","francis coghlan","coghlan externalinks","francis coghlan","coghlan family","family category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category tourism"],"new_description":"image railway companion coverpng_thumb right iron road book image new guide paris coverpng px_thumb right coghlan new guide paris image guide south italy coverpng_thumb right coghlan guide south italy coghlan guides series travel_guide_book europe written francis coghlan mid_th century list coghlan guides date publication guide france travellers cheapest travelling illustrated plan calais etc j london index contents index list coghlan guides geographicoverage index_index contents great_britain coast companion rye east brighton london hughes contents index_index_see_also charles francis coghlan son coghlan externalinks francis coghlan family category_travel_guide_books category_series books_category publications_established category_tourism europe"},{"title":"Combination plate","description":"file dalbathjpg thumb px nepalese cuisinepalese dal bhat served on a thali a type of compartment plate a combination plate can refer to several things including a combination meal a type of tableware a type of dental dentures crystal s and or mineral s that have formed in a combination a printing plate that has both line drawings and halftones a combination wall plate molded with a variety of ports for various electrical itemsuch aswitches and plugs file cashew chicken springfieldjpg thumb a combination plate of american chinese food served on a disposable compartment plate dish a combination plate may refer to a meal or plate with a combination ofoods a combination plate may refer to a type of tableware plate dishware plate dish or platter dishware platter that is designed with separate compartments for foods to be placed in patent file date april patent publication date june this has also been referred to as a compartment plate and a partition plate combination plate meals are sometimeserved on this type of plate inepal this type of plate is called a thali thaali and is typically made of metal inepalese cuisine the dish daal bhaat is often served on a thaalin the united states compartment plates have been used to serve table d h te dinners in the united states combination plates have been used as a part of us army mess kit s file asianafoodjpg an airline meal served on a partition tray file segmentteller geschirr plaste kantine ddrjpg plastic partitioned tableware file applepietabekurabejpg apple pieserved on partitioned tableware file open mess kitjpg a mess kit with a combination plate bottom in dentistry the term has referred to dentures prepared and cast with a combination of materialsuch as gold and rubber plastic and metallic material and gold and porcelain gemology a combination plate refers to twor more crystal s and or mineral s that have formed in a combination file wulfenite mimetite jpg a rare and fine combination plate from the tsumeb mine glassy mostly transparent smoky colored wulfenite crystals with sharp beveledges are richly and aesthetically scattered on the matrix bundles of lustrous yellowish tan mimetite are concentrated athe top of the piece and the largest wulfenite at mm is aesthetically framed by two mimetite crystal clusters in printing and graphic arts a printing plate that has bothalftones and line drawings often combined wall plate file kombination lichtschalter steckdose usajpg thumb a combination wall plate a combination plate can refer to a combination wall plate that has a combination of ports for switches plugs etc issn see also banchan blue plate special foodpairing meat and three plate lunch issn furthereading category kitchenware category restauranterminology category american cuisine category serving andining category printing category food combinations","main_words":["file","thumb","px","dal","served","thali","type","compartment","plate","combination","plate","refer","several","things","including","combination","meal","type","tableware","type","dental","crystal","mineral","formed","combination","printing","plate","line","drawings","combination","wall","plate","variety","ports","various","electrical","itemsuch","file","chicken","thumb","combination","plate","american","chinese","food_served","disposable","compartment","plate","dish","combination","plate","may","refer","meal","plate","combination","ofoods","combination","plate","may","refer","type","tableware","plate","plate","dish","platter","platter","designed","separate","foods","placed","patent","file","date","april","patent","publication","date","june","also_referred","compartment","plate","partition","plate","combination","plate","meals","type","plate","inepal","type","plate","called","thali","typically","made","metal","cuisine","dish","often_served","united_states","compartment","plates","used","serve","table","h","dinners","united_states","combination","plates","used","part","us_army","mess","kit","file","airline","meal","served","partition","tray","file","plastic","tableware","file","apple","tableware","file","open","mess","mess","kit","combination","plate","bottom","dentistry","term","referred","prepared","cast","combination","materialsuch","gold","rubber","plastic","metallic","material","gold","porcelain","combination","plate","refers","twor","crystal","mineral","formed","combination","file_jpg","rare","fine","combination","plate","mine","mostly","transparent","smoky","colored","sharp","aesthetically","scattered","tan","concentrated","athe_top","piece","largest","aesthetically","framed","two","crystal","printing","graphic","arts","printing","plate","line","drawings","often","combined","wall","plate","file","thumb","combination","wall","plate","combination","plate","refer","combination","wall","plate","combination","ports","etc","issn","see_also","blue_plate","special","meat","three","plate_lunch","issn","furthereading","category","kitchenware","category_restauranterminology","category_american","cuisine_category","serving","andining","category","printing","category_food","combinations"],"clean_bigrams":[["thumb","px"],["compartment","plate"],["plate","combination"],["combination","plate"],["several","things"],["things","including"],["combination","meal"],["printing","plate"],["line","drawings"],["combination","wall"],["wall","plate"],["various","electrical"],["electrical","itemsuch"],["combination","plate"],["american","chinese"],["chinese","food"],["food","served"],["disposable","compartment"],["compartment","plate"],["plate","dish"],["combination","plate"],["plate","may"],["may","refer"],["plate","combination"],["combination","ofoods"],["combination","plate"],["plate","may"],["may","refer"],["tableware","plate"],["plate","dish"],["patent","file"],["file","date"],["date","april"],["april","patent"],["patent","publication"],["publication","date"],["date","june"],["compartment","plate"],["partition","plate"],["plate","combination"],["combination","plate"],["plate","meals"],["plate","inepal"],["typically","made"],["often","served"],["united","states"],["states","compartment"],["compartment","plates"],["serve","table"],["united","states"],["states","combination"],["combination","plates"],["us","army"],["army","mess"],["mess","kit"],["airline","meal"],["meal","served"],["partition","tray"],["tray","file"],["tableware","file"],["tableware","file"],["file","open"],["open","mess"],["mess","kit"],["combination","plate"],["plate","bottom"],["rubber","plastic"],["metallic","material"],["combination","plate"],["plate","refers"],["combination","file"],["fine","combination"],["combination","plate"],["mostly","transparent"],["transparent","smoky"],["smoky","colored"],["aesthetically","scattered"],["concentrated","athe"],["athe","top"],["aesthetically","framed"],["graphic","arts"],["printing","plate"],["line","drawings"],["drawings","often"],["often","combined"],["combined","wall"],["wall","plate"],["plate","file"],["combination","wall"],["wall","plate"],["plate","combination"],["combination","plate"],["combination","wall"],["wall","plate"],["plate","combination"],["etc","issn"],["issn","see"],["see","also"],["blue","plate"],["plate","special"],["three","plate"],["plate","lunch"],["lunch","issn"],["issn","furthereading"],["furthereading","category"],["category","kitchenware"],["kitchenware","category"],["category","restauranterminology"],["restauranterminology","category"],["category","american"],["american","cuisine"],["cuisine","category"],["category","serving"],["serving","andining"],["andining","category"],["category","printing"],["printing","category"],["category","food"],["food","combinations"]],"all_collocations":["compartment plate","plate combination","combination plate","several things","things including","combination meal","printing plate","line drawings","combination wall","wall plate","various electrical","electrical itemsuch","combination plate","american chinese","chinese food","food served","disposable compartment","compartment plate","plate dish","combination plate","plate may","may refer","plate combination","combination ofoods","combination plate","plate may","may refer","tableware plate","plate dish","patent file","file date","date april","april patent","patent publication","publication date","date june","compartment plate","partition plate","plate combination","combination plate","plate meals","plate inepal","typically made","often served","united states","states compartment","compartment plates","serve table","united states","states combination","combination plates","us army","army mess","mess kit","airline meal","meal served","partition tray","tray file","tableware file","tableware file","file open","open mess","mess kit","combination plate","plate bottom","rubber plastic","metallic material","combination plate","plate refers","combination file","fine combination","combination plate","mostly transparent","transparent smoky","smoky colored","aesthetically scattered","concentrated athe","athe top","aesthetically framed","graphic arts","printing plate","line drawings","drawings often","often combined","combined wall","wall plate","plate file","combination wall","wall plate","plate combination","combination plate","combination wall","wall plate","plate combination","etc issn","issn see","see also","blue plate","plate special","three plate","plate lunch","lunch issn","issn furthereading","furthereading category","category kitchenware","kitchenware category","category restauranterminology","restauranterminology category","category american","american cuisine","cuisine category","category serving","serving andining","andining category","category printing","printing category","category food","food combinations"],"new_description":"file thumb px dal served thali type compartment plate combination plate refer several things including combination meal type tableware type dental crystal mineral formed combination printing plate line drawings combination wall plate variety ports various electrical itemsuch file chicken thumb combination plate american chinese food_served disposable compartment plate dish combination plate may refer meal plate combination ofoods combination plate may refer type tableware plate plate dish platter platter designed separate foods placed patent file date april patent publication date june also_referred compartment plate partition plate combination plate meals type plate inepal type plate called thali typically made metal cuisine dish often_served united_states compartment plates used serve table h dinners united_states combination plates used part us_army mess kit file airline meal served partition tray file plastic tableware file apple tableware file open mess mess kit combination plate bottom dentistry term referred prepared cast combination materialsuch gold rubber plastic metallic material gold porcelain combination plate refers twor crystal mineral formed combination file_jpg rare fine combination plate mine mostly transparent smoky colored sharp aesthetically scattered tan concentrated athe_top piece largest aesthetically framed two crystal printing graphic arts printing plate line drawings often combined wall plate file thumb combination wall plate combination plate refer combination wall plate combination ports etc issn see_also blue_plate special meat three plate_lunch issn furthereading category kitchenware category_restauranterminology category_american cuisine_category serving andining category printing category_food combinations"},{"title":"Commercial surrogacy in India","description":"commercial surrogacy india was legalized india in the availability of medical infrastructure and potential surrogates combined with international demand has fueled the growth of the industry see surrogate mothers receive medical nutritional and overall health care through surrogacy agreements theconomic scale of surrogacy india is unknown but study backed by the united nations in july estimated the business at more than million a year with over fertility clinics across india manji s case baby manji yamada v union of indianr insc september baby manji was born at akanksha infertility clinic the girl who was born in late july arrived at kansainternational airport from indiaccompanied by her year old grandmother emkio yamada the japanese government issued the visa last week after the indian government granted the baby a travel certificate in september in line with a supreme court direction balaz v india in jan balaz v union of india the gujarat high court conferred indianationality law indian citizenship on two twin babies fathered through compensated surrogacy by a germanational in anandistricthe court observed we are primarily concerned withe rights of two newborn innocent babies much more than the rights of the biological parentsurrogate mother or the donor of the ovum ova emotional and legal relationship of the babies withe surrogate mother and the donor of the ova is alsof vital importance the court considered the surrogacy laws of countries like ukraine japand the united states because india does not offer dual citizenship the children will have to converto indianationality law overseas citizenship of india overseas citizenship of india if they also hold non indian citizenship see a not for profit public private initiative of ministry of overseas indian affairs the ministry of overseas indian affairs moiand confederation of indian industry confederation of indian industry cii was launched on may balaz the petitioner submitted before the supreme courthat he shall be submitting his passports before the indian consulate in berlin he also agreed that a ngo in germany shall respond back to india on the status of the children and their welfare the union of india responded that india shall make all attempts to have the children sento germany german authorities have also agreed to reconsider the case if approached by the indian in may the balaz twins were provided thexit and entry documents that allowed them to leave india for germany the parents agreed to adopthem in germany according to german rules pdf indian council for medical research guidelines the indian council for medical researchas given guidelines in the yearegulating assisted reproductive technology procedures the law commission of india submitted the th report on assisted reproductive technology procedures discussing the importance and need for surrogacy and also the steps taken to control surrogacy arrangements the following observations had been made by the law commission surrogacy arrangement will continue to be governed by contract amongst parties which will contain all the terms requiring consent of surrogate mother to bear child agreement of her husband other family members for the samedical procedures of artificial insemination reimbursement of all reasonablexpenses for carrying child to full term willingness to hand over the child born to the commissioning parent s etc but such an arrangement should not be for commercial purposes a surrogacy arrangement should provide for financial support for surrogate child in thevent of death of the commissioning couple or individual before delivery of the child or divorce between the intended parents and subsequent willingness of none to take delivery of the child a surrogacy contract should necessarily take care of life insurance cover for surrogate mother one of the intended parentshould be a donor as well because the bond of love and affection with a child primarily emanates from biological relationship also the chances of various kinds of child abuse whichave beenoticed in cases of adoptions will be reduced in case the intended parent isingle he or she should be a donor to be able to have a surrogate child otherwise adoption is the way to have a child which is resorted to if biological natural parents and adoptive parents are different legislation itself should recognize a surrogate child to be the legitimate child of the commissioning parent s withouthere being any need for adoption or even declaration of guardian the birth certificate of the surrogate child should contain the name s of the commissioning parent s only righto privacy of donor as well asurrogate mother should be protected sex selective surrogacy should be prohibited cases of abortionshould be governed by the medical termination of pregnancy act only surrogacy risk and conditions indiaccording to the guardian there was a mother who died because she did not gethe proper medical attention conservativestimateshow that more than children are now being born through surrogates india everyear in an industry worth billion domestic demand is increasing but as fertility levels drop elsewhere at least of these are commissioned by overseas mainly western couples most of the industry is operating unchecked india s medical research watchdog drafted regulations more than two years ago yethey still await presentation in parliament leaving the surrogates and baby factories open to abuse according to dr manish banker from the pulse women s hospital reported to come back on a patient she suddenly had a convulsion and fell on the floor he said we immediately took her for treatment since she washowing signs of distress we conducted an emergency cesarean section delivery assisted reproductive technology bill the assisted reproductive technology bill has a been pending for quite a while and it has not been presented in the indian parliament see also fertility tourismedical tourism india surrogacy adrienne arieff the sacred thread furthereading see also category human reproduction surrogacy category health india surrogacy category medical tourism category surrogacy category healthcare industry india","main_words":["commercial","surrogacy","india","india","availability","medical","infrastructure","potential","surrogates","combined","international","demand","fueled","growth","industry","see","surrogate","mothers","receive","medical","nutritional","overall","health_care","surrogacy","agreements","theconomic","scale","surrogacy","india","unknown","study","backed","united_nations","july","estimated","business","million","year","fertility","clinics","across","india","manji","case","baby","manji","v","union","september","baby","manji","born","infertility","clinic","girl","born","late","july","arrived","airport","year_old","grandmother","japanese","government","issued","visa","last","week","indian","government","granted","baby","travel","certificate","september","line","supreme_court","direction","balaz","v","india","jan","balaz","v","union","india","high_court","conferred","law","indian","citizenship","two","twin","babies","fathered","surrogacy","germanational","court","observed","primarily","concerned","withe","rights","two","innocent","babies","much","rights","biological","mother","donor","emotional","legal","relationship","babies","withe","surrogate","mother","donor","vital","importance","court","considered","surrogacy","laws","countries","like","ukraine","japand","united_states","india","offer","dual","citizenship","children","law","overseas","citizenship","india","overseas","citizenship","india","also","hold","non","indian","citizenship","see","profit","public_private","initiative","ministry","overseas","indian","affairs","ministry","overseas","indian","affairs","confederation","indian","industry","confederation","indian","industry","cii","launched","may","balaz","submitted","supreme","shall","indian","berlin","also","agreed","germany","shall","respond","back","india","status","children","welfare","union","india","responded","india","shall","make","attempts","children","sento","germany_german","authorities","also","agreed","case","approached","indian","may","balaz","twins","provided","thexit","entry","documents","allowed","leave","india","germany","parents","agreed","germany","according","german","rules","pdf","indian","council","medical","research","guidelines","indian","council","medical","researchas","given","guidelines","assisted","reproductive","technology","procedures","law","commission","india","submitted","th","report","assisted","reproductive","technology","procedures","discussing","importance","need","surrogacy","also","steps","taken","control","surrogacy","arrangements","following","observations","made","law","commission","surrogacy","arrangement","continue","governed","contract","amongst","parties","contain","terms","requiring","consent","surrogate","mother","bear","child","agreement","husband","family","members","procedures","artificial","insemination","carrying","child","full","term","willingness","hand","child","born","commissioning","parent","etc","arrangement","commercial","purposes","surrogacy","arrangement","provide","financial","support","surrogate","child","thevent","death","commissioning","couple","individual","delivery","child","intended","parents","subsequent","willingness","none","take","delivery","child","surrogacy","contract","necessarily","take","care","life","insurance","cover","surrogate","mother","one","intended","donor","well","bond","love","affection","child","primarily","biological","relationship","also","chances","various","kinds","child","abuse","whichave","cases","reduced","case","intended","parent","donor","able","surrogate","child","otherwise","adoption","way","child","biological","natural","parents","parents","different","legislation","recognize","surrogate","child","legitimate","child","commissioning","parent","need","adoption","even","declaration","guardian","birth","certificate","surrogate","child","contain","name","commissioning","parent","righto","privacy","donor","well","mother","protected","sex","selective","surrogacy","prohibited","cases","governed","medical","termination","pregnancy","act","surrogacy","risk","conditions","guardian","mother","died","gethe","proper","medical","attention","children","born","surrogates","india","everyear","industry","worth","billion","domestic","demand","increasing","fertility","levels","drop","elsewhere","least","commissioned","overseas","mainly","western","couples","industry","operating","india","medical","research","regulations","two_years","ago","yethey","still","presentation","parliament","leaving","surrogates","baby","factories","open","abuse","according","pulse","women","hospital","reported","come","back","patient","suddenly","fell","floor","said","immediately","took","treatment","since","signs","conducted","emergency","section","delivery","assisted","reproductive","technology","bill","assisted","reproductive","technology","bill","pending","quite","presented","indian","parliament","see_also","fertility","surrogacy","sacred","furthereading","see_also","category_human","reproduction","surrogacy","category","health","india","surrogacy","category_medical","tourism_category","surrogacy","category","healthcare","industry","india"],"clean_bigrams":[["commercial","surrogacy"],["surrogacy","india"],["medical","infrastructure"],["potential","surrogates"],["surrogates","combined"],["international","demand"],["industry","see"],["see","surrogate"],["surrogate","mothers"],["mothers","receive"],["receive","medical"],["medical","nutritional"],["overall","health"],["health","care"],["surrogacy","agreements"],["agreements","theconomic"],["theconomic","scale"],["surrogacy","india"],["study","backed"],["united","nations"],["july","estimated"],["fertility","clinics"],["clinics","across"],["across","india"],["india","manji"],["case","baby"],["baby","manji"],["v","union"],["september","baby"],["baby","manji"],["infertility","clinic"],["late","july"],["july","arrived"],["year","old"],["old","grandmother"],["japanese","government"],["government","issued"],["visa","last"],["last","week"],["indian","government"],["government","granted"],["travel","certificate"],["supreme","court"],["court","direction"],["direction","balaz"],["balaz","v"],["v","india"],["jan","balaz"],["balaz","v"],["v","union"],["high","court"],["court","conferred"],["law","indian"],["indian","citizenship"],["two","twin"],["twin","babies"],["babies","fathered"],["court","observed"],["primarily","concerned"],["concerned","withe"],["withe","rights"],["innocent","babies"],["babies","much"],["legal","relationship"],["babies","withe"],["withe","surrogate"],["surrogate","mother"],["vital","importance"],["court","considered"],["surrogacy","laws"],["countries","like"],["like","ukraine"],["ukraine","japand"],["united","states"],["offer","dual"],["dual","citizenship"],["law","overseas"],["overseas","citizenship"],["india","overseas"],["overseas","citizenship"],["also","hold"],["hold","non"],["non","indian"],["indian","citizenship"],["citizenship","see"],["profit","public"],["public","private"],["private","initiative"],["overseas","indian"],["indian","affairs"],["overseas","indian"],["indian","affairs"],["indian","industry"],["industry","confederation"],["indian","industry"],["industry","cii"],["may","balaz"],["also","agreed"],["germany","shall"],["shall","respond"],["respond","back"],["india","responded"],["india","shall"],["shall","make"],["children","sento"],["sento","germany"],["germany","german"],["german","authorities"],["also","agreed"],["may","balaz"],["balaz","twins"],["provided","thexit"],["entry","documents"],["leave","india"],["parents","agreed"],["germany","according"],["german","rules"],["rules","pdf"],["pdf","indian"],["indian","council"],["medical","research"],["research","guidelines"],["indian","council"],["medical","researchas"],["researchas","given"],["given","guidelines"],["assisted","reproductive"],["reproductive","technology"],["technology","procedures"],["law","commission"],["india","submitted"],["th","report"],["assisted","reproductive"],["reproductive","technology"],["technology","procedures"],["procedures","discussing"],["steps","taken"],["control","surrogacy"],["surrogacy","arrangements"],["following","observations"],["law","commission"],["commission","surrogacy"],["surrogacy","arrangement"],["contract","amongst"],["amongst","parties"],["terms","requiring"],["requiring","consent"],["surrogate","mother"],["bear","child"],["child","agreement"],["family","members"],["artificial","insemination"],["carrying","child"],["full","term"],["term","willingness"],["child","born"],["commissioning","parent"],["commercial","purposes"],["surrogacy","arrangement"],["financial","support"],["surrogate","child"],["commissioning","couple"],["intended","parents"],["subsequent","willingness"],["take","delivery"],["surrogacy","contract"],["necessarily","take"],["take","care"],["life","insurance"],["insurance","cover"],["surrogate","mother"],["mother","one"],["child","primarily"],["biological","relationship"],["relationship","also"],["various","kinds"],["child","abuse"],["abuse","whichave"],["intended","parent"],["surrogate","child"],["child","otherwise"],["otherwise","adoption"],["biological","natural"],["natural","parents"],["different","legislation"],["surrogate","child"],["legitimate","child"],["commissioning","parent"],["even","declaration"],["birth","certificate"],["surrogate","child"],["commissioning","parent"],["righto","privacy"],["protected","sex"],["sex","selective"],["selective","surrogacy"],["prohibited","cases"],["medical","termination"],["pregnancy","act"],["surrogacy","risk"],["gethe","proper"],["proper","medical"],["medical","attention"],["surrogates","india"],["india","everyear"],["industry","worth"],["worth","billion"],["billion","domestic"],["domestic","demand"],["fertility","levels"],["levels","drop"],["drop","elsewhere"],["overseas","mainly"],["mainly","western"],["western","couples"],["medical","research"],["two","years"],["years","ago"],["ago","yethey"],["yethey","still"],["parliament","leaving"],["baby","factories"],["factories","open"],["abuse","according"],["pulse","women"],["hospital","reported"],["come","back"],["immediately","took"],["treatment","since"],["section","delivery"],["delivery","assisted"],["assisted","reproductive"],["reproductive","technology"],["technology","bill"],["assisted","reproductive"],["reproductive","technology"],["technology","bill"],["indian","parliament"],["parliament","see"],["see","also"],["also","fertility"],["tourism","india"],["india","surrogacy"],["furthereading","see"],["see","also"],["also","category"],["category","human"],["human","reproduction"],["reproduction","surrogacy"],["surrogacy","category"],["category","health"],["health","india"],["india","surrogacy"],["surrogacy","category"],["category","medical"],["medical","tourism"],["tourism","category"],["category","surrogacy"],["surrogacy","category"],["category","healthcare"],["healthcare","industry"],["industry","india"]],"all_collocations":["commercial surrogacy","surrogacy india","medical infrastructure","potential surrogates","surrogates combined","international demand","industry see","see surrogate","surrogate mothers","mothers receive","receive medical","medical nutritional","overall health","health care","surrogacy agreements","agreements theconomic","theconomic scale","surrogacy india","study backed","united nations","july estimated","fertility clinics","clinics across","across india","india manji","case baby","baby manji","v union","september baby","baby manji","infertility clinic","late july","july arrived","year old","old grandmother","japanese government","government issued","visa last","last week","indian government","government granted","travel certificate","supreme court","court direction","direction balaz","balaz v","v india","jan balaz","balaz v","v union","high court","court conferred","law indian","indian citizenship","two twin","twin babies","babies fathered","court observed","primarily concerned","concerned withe","withe rights","innocent babies","babies much","legal relationship","babies withe","withe surrogate","surrogate mother","vital importance","court considered","surrogacy laws","countries like","like ukraine","ukraine japand","united states","offer dual","dual citizenship","law overseas","overseas citizenship","india overseas","overseas citizenship","also hold","hold non","non indian","indian citizenship","citizenship see","profit public","public private","private initiative","overseas indian","indian affairs","overseas indian","indian affairs","indian industry","industry confederation","indian industry","industry cii","may balaz","also agreed","germany shall","shall respond","respond back","india responded","india shall","shall make","children sento","sento germany","germany german","german authorities","also agreed","may balaz","balaz twins","provided thexit","entry documents","leave india","parents agreed","germany according","german rules","rules pdf","pdf indian","indian council","medical research","research guidelines","indian council","medical researchas","researchas given","given guidelines","assisted reproductive","reproductive technology","technology procedures","law commission","india submitted","th report","assisted reproductive","reproductive technology","technology procedures","procedures discussing","steps taken","control surrogacy","surrogacy arrangements","following observations","law commission","commission surrogacy","surrogacy arrangement","contract amongst","amongst parties","terms requiring","requiring consent","surrogate mother","bear child","child agreement","family members","artificial insemination","carrying child","full term","term willingness","child born","commissioning parent","commercial purposes","surrogacy arrangement","financial support","surrogate child","commissioning couple","intended parents","subsequent willingness","take delivery","surrogacy contract","necessarily take","take care","life insurance","insurance cover","surrogate mother","mother one","child primarily","biological relationship","relationship also","various kinds","child abuse","abuse whichave","intended parent","surrogate child","child otherwise","otherwise adoption","biological natural","natural parents","different legislation","surrogate child","legitimate child","commissioning parent","even declaration","birth certificate","surrogate child","commissioning parent","righto privacy","protected sex","sex selective","selective surrogacy","prohibited cases","medical termination","pregnancy act","surrogacy risk","gethe proper","proper medical","medical attention","surrogates india","india everyear","industry worth","worth billion","billion domestic","domestic demand","fertility levels","levels drop","drop elsewhere","overseas mainly","mainly western","western couples","medical research","two years","years ago","ago yethey","yethey still","parliament leaving","baby factories","factories open","abuse according","pulse women","hospital reported","come back","immediately took","treatment since","section delivery","delivery assisted","assisted reproductive","reproductive technology","technology bill","assisted reproductive","reproductive technology","technology bill","indian parliament","parliament see","see also","also fertility","tourism india","india surrogacy","furthereading see","see also","also category","category human","human reproduction","reproduction surrogacy","surrogacy category","category health","health india","india surrogacy","surrogacy category","category medical","medical tourism","tourism category","category surrogacy","surrogacy category","category healthcare","healthcare industry","industry india"],"new_description":"commercial surrogacy india india availability medical infrastructure potential surrogates combined international demand fueled growth industry see surrogate mothers receive medical nutritional overall health_care surrogacy agreements theconomic scale surrogacy india unknown study backed united_nations july estimated business million year fertility clinics across india manji case baby manji v union september baby manji born infertility clinic girl born late july arrived airport year_old grandmother japanese government issued visa last week indian government granted baby travel certificate september line supreme_court direction balaz v india jan balaz v union india high_court conferred law indian citizenship two twin babies fathered surrogacy germanational court observed primarily concerned withe rights two innocent babies much rights biological mother donor emotional legal relationship babies withe surrogate mother donor vital importance court considered surrogacy laws countries like ukraine japand united_states india offer dual citizenship children law overseas citizenship india overseas citizenship india also hold non indian citizenship see profit public_private initiative ministry overseas indian affairs ministry overseas indian affairs confederation indian industry confederation indian industry cii launched may balaz submitted supreme shall indian berlin also agreed germany shall respond back india status children welfare union india responded india shall make attempts children sento germany_german authorities also agreed case approached indian may balaz twins provided thexit entry documents allowed leave india germany parents agreed germany according german rules pdf indian council medical research guidelines indian council medical researchas given guidelines assisted reproductive technology procedures law commission india submitted th report assisted reproductive technology procedures discussing importance need surrogacy also steps taken control surrogacy arrangements following observations made law commission surrogacy arrangement continue governed contract amongst parties contain terms requiring consent surrogate mother bear child agreement husband family members procedures artificial insemination carrying child full term willingness hand child born commissioning parent etc arrangement commercial purposes surrogacy arrangement provide financial support surrogate child thevent death commissioning couple individual delivery child intended parents subsequent willingness none take delivery child surrogacy contract necessarily take care life insurance cover surrogate mother one intended donor well bond love affection child primarily biological relationship also chances various kinds child abuse whichave cases reduced case intended parent donor able surrogate child otherwise adoption way child biological natural parents parents different legislation recognize surrogate child legitimate child commissioning parent need adoption even declaration guardian birth certificate surrogate child contain name commissioning parent righto privacy donor well mother protected sex selective surrogacy prohibited cases governed medical termination pregnancy act surrogacy risk conditions guardian mother died gethe proper medical attention children born surrogates india everyear industry worth billion domestic demand increasing fertility levels drop elsewhere least commissioned overseas mainly western couples industry operating india medical research regulations two_years ago yethey still presentation parliament leaving surrogates baby factories open abuse according pulse women hospital reported come back patient suddenly fell floor said immediately took treatment since signs conducted emergency section delivery assisted reproductive technology bill assisted reproductive technology bill pending quite presented indian parliament see_also fertility tourism_india surrogacy sacred furthereading see_also category_human reproduction surrogacy category health india surrogacy category_medical tourism_category surrogacy category healthcare industry india"},{"title":"Compagnia Italiana Turismo","description":"cithe compagnia italiana turismo was an italian travel agency and tourism promotion quango privatized in it was established by royal charter in as the national fascist party fascistourist promotion agency in contrasto the italian liberal party liberal enit and the bourgeois touring club italiano its first president was ezio maria gray an enthusiastic fascist and corporatism corporatist bosworth passim its goal was to promote italy as an international tourist destination and to support italian foreign tourism to do this it created a network of travel agency travel agencies in italy and worldwide its founding members were the ferrovie dello stato the banco di sicilia the banco di napoli and enithe italianational tourist board taina syrj ma visitez l italie italian state tourist propagandabroadministrative structure and practical realization in turun yliopiston julkaisujannales universitatis turkuensiseries b humaniora not seen category travel agencies category tourism in italy category tourism agencies category companiestablished in","main_words":["italiana","turismo","italian","travel_agency","tourism_promotion","established","royal","charter","national","fascist","party","promotion","agency","contrasto","italian","liberal","party","liberal","touring_club","italiano","first","president","maria","gray","enthusiastic","fascist","goal","promote","italy","support","italian","foreign","tourism","created","network","travel_agency","travel_agencies","italy","worldwide","founding","members","tourist_board","l","italie","italian","state","tourist","structure","practical","realization","b","seen","category_travel","agencies_category_tourism"],"clean_bigrams":[["italiana","turismo"],["italian","travel"],["travel","agency"],["tourism","promotion"],["royal","charter"],["national","fascist"],["fascist","party"],["promotion","agency"],["italian","liberal"],["liberal","party"],["party","liberal"],["touring","club"],["club","italiano"],["first","president"],["maria","gray"],["enthusiastic","fascist"],["promote","italy"],["international","tourist"],["tourist","destination"],["support","italian"],["italian","foreign"],["foreign","tourism"],["travel","agency"],["agency","travel"],["travel","agencies"],["founding","members"],["tourist","board"],["l","italie"],["italie","italian"],["italian","state"],["state","tourist"],["practical","realization"],["seen","category"],["category","travel"],["travel","agencies"],["agencies","category"],["category","tourism"],["italy","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","companiestablished"]],"all_collocations":["italiana turismo","italian travel","travel agency","tourism promotion","royal charter","national fascist","fascist party","promotion agency","italian liberal","liberal party","party liberal","touring club","club italiano","first president","maria gray","enthusiastic fascist","promote italy","international tourist","tourist destination","support italian","italian foreign","foreign tourism","travel agency","agency travel","travel agencies","founding members","tourist board","l italie","italie italian","italian state","state tourist","practical realization","seen category","category travel","travel agencies","agencies category","category tourism","italy category","category tourism","tourism agencies","agencies category","category companiestablished"],"new_description":"italiana turismo italian travel_agency tourism_promotion established royal charter national fascist party promotion agency contrasto italian liberal party liberal touring_club italiano first president maria gray enthusiastic fascist goal promote italy international_tourist_destination support italian foreign tourism created network travel_agency travel_agencies italy worldwide founding members tourist_board l italie italian state tourist structure practical realization b seen category_travel agencies_category_tourism italy_category_tourism agencies_category_companiestablished"},{"title":"Concession stand","description":"a concession stand american english snackiosk or snack bar british english irish english is a place where patron s can purchase snack s or food at a movie theatre cinemamusement park fair stadium or other entertainment venue somevents or venues contract outhe righto sell food to third parties those contracts are often referred to as a concession contract concession hence the name for a stand where food isold usually prices for goods at concession stands are greater than elsewhere for the convenience of being close to an attraction with outside food andrink being prohibited and they often contribute significant revenue to the venue operator especially in the case of movie theatre foyer area c food andrinks movie theatres concession stands were not originally operated by the movie theaters and food was often sold by people attending the film or by vendors outside of theater movie theaters were at first hostile to food in their facilities but during the great depression theaters added concession stands as a way to increase revenue in theconomically stagnantimes by the s concession stands were a main fixture in many theaters during world war ii candy wascarce at concession stands because of the rationing sugarationingoing on athe time and popcorn became more popular than before in the late s and early s as movie ticket sales were down sales ofood at concession stands increased in the us concession owners arepresented by the national association of concessionaires and the national independent concessionaires association types ofood concession stands typically sell junk food the most basiconcessions at movie theaters include candy popcorn and soft drinks larger concession facilities in stadiums amusement park s and newer movie theatre s havenabled the sale of a limited selection ofast food includingrilling stations and hotplates to prepare hot foods hamburgers french fries pizza hot dog s corn dog s nachos pretzel s and churro s and freezers to store coldessertsnow cone s and ice cream stadiums for sports and rock concertsell beer and other mild alcoholic beverages usually in plasticuplastic disposable cup since glass bottles could be used as projectiles by unruly spectators formal entertainment venue such asymphony concert halls and opera houses often eschew fast food and junk food for more upscale fare including wine coffee and tea bakedesserts and pastries although the above are the most popular common staples at concession stands there are often region specific variations for instance citizens bank park has philadelphia style food stands including several which serve cheesesteak s hoagies and otheregional specialties busch stadium includestandard ballpark fare like bratwurst nachos and peanuts but also hast louis area favoritesuch as pork steak sandwiches and toasted ravioli uniquely busch stadium also allows outside food andrink including soft sidedrink coolers the concourse of many newer arenas now include multiple concession stands that essentially form a food court serving a variety ofast food modern stadiums also include numerous grilling stations and soda fountains bars caf s and restaurants club seating and luxury box es havexclusive access to high end restaurants caf s bars and catering not available to regular ticketholders atemporary outdoor eventsuch as fair s food truck s may operate as concession stands concession operators concessions are often contracted outo third parties including major fast food chain s legends hospitality management llc yankee stadium and cowboystadium andelaware north td garden and emiratestadium are companies that specialize in stadium catering alternatively concession stands can be operated by fast food chainsuch as mcdonald s pizza or tim hortons file concession stand at hanlans pointjpg a concession stand by the name oflora dew at hanlan s point in toronto ontario the image was taken in andepicts a typical stand from thatime period file hillsboro stadium concession standjpg the concession stand at hillsboro stadium in hillsbororegon is an outdoor stand at american football field file greathallpittmuralsjpg at heinz field in pittsburgh pennsylvania the goaline stand incorporatesports and food into their concession stand file overijse frietkot ajpg a mobile snack bar in overijse belgium externalinks what makes a good concession stand category types of restaurants category cinemas and movie theaters","main_words":["concession","stand","american_english","snack_bar","british_english","irish","english","place","patron","purchase","snack","food","movie","theatre","park","fair","stadium","entertainment","venue","venues","contract","outhe","righto","sell","food","third","parties","contracts","often_referred","concession","contract","concession","hence","name","stand","food","isold","usually","prices","goods","concession_stands","greater","elsewhere","convenience","close","attraction","outside","food_andrink","prohibited","often","contribute","significant","revenue","venue","operator","especially","case","movie","theatre","area","c","food_andrinks","movie","theatres","concession_stands","originally","operated","movie_theaters","food","often","sold","people","attending","film","vendors","outside","theater","movie_theaters","first","hostile","food","facilities","great_depression","theaters","added","concession_stands","way","increase","revenue","concession_stands","main","many","theaters","world_war","ii","candy","concession_stands","athe_time","became_popular","late","early","movie","ticket","sales","sales","ofood","concession_stands","increased","us","concession","owners","arepresented","national","association","national","independent","association","types_ofood","concession_stands","typically","sell","food","movie_theaters","include","candy","soft_drinks","larger","concession","facilities","amusement_park","newer","movie","theatre","sale","limited","selection","ofast_food","stations","prepare","hot","foods","hamburgers","french_fries","pizza","hot_dog","corn","dog","nachos","freezers","store","cone","ice_cream","sports","rock","beer","mild","alcoholic_beverages","usually","disposable","cup","since","glass","bottles","could","used","spectators","formal","entertainment","venue","concert","halls","often","fast_food","food","upscale","fare","including","wine","coffee","tea","pastries","although","popular","common","staples","concession_stands","often","region","specific","variations","instance","citizens","bank","park","philadelphia","style","food","stands","including","several","serve","specialties","stadium","fare","like","nachos","also","louis","area","pork","steak","sandwiches","stadium","also","allows","outside","food_andrink","including","soft","concourse","many","newer","include","multiple","concession_stands","essentially","form","food_court","serving","variety","ofast_food","modern","also_include","numerous","stations","bars","caf","restaurants","club","seating","luxury","box","access","high_end_restaurants","caf","bars","catering","available","regular","outdoor","eventsuch","fair","food_truck","may","operate","concession_stands","concession","operators","concessions","often","contracted","outo","third","parties","including","major","fast_food","chain","legends","hospitality_management","llc","yankee","stadium","north","garden","companies","specialize","stadium","catering","alternatively","concession_stands","operated","fast_food","chainsuch","mcdonald","pizza","tim","hortons","file","concession_stand","concession_stand","name","oflora","point","toronto","ontario","image","taken","typical","stand","thatime","period","file","stadium","concession","concession_stand","stadium","outdoor","stand","american","football","field","file","heinz","field","pittsburgh","pennsylvania","stand","food","concession_stand","file","mobile","snack_bar","belgium","externalinks","makes","good","concession_stand","category_types","restaurants_category","cinemas","movie_theaters"],"clean_bigrams":[["concession","stand"],["stand","american"],["american","english"],["snack","bar"],["bar","british"],["british","english"],["english","irish"],["irish","english"],["purchase","snack"],["movie","theatre"],["park","fair"],["fair","stadium"],["entertainment","venue"],["venues","contract"],["contract","outhe"],["outhe","righto"],["righto","sell"],["sell","food"],["third","parties"],["often","referred"],["concession","contract"],["contract","concession"],["concession","hence"],["food","isold"],["isold","usually"],["usually","prices"],["concession","stands"],["outside","food"],["food","andrink"],["often","contribute"],["contribute","significant"],["significant","revenue"],["venue","operator"],["operator","especially"],["movie","theatre"],["area","c"],["c","food"],["food","andrinks"],["andrinks","movie"],["movie","theatres"],["theatres","concession"],["concession","stands"],["originally","operated"],["movie","theaters"],["often","sold"],["people","attending"],["vendors","outside"],["theater","movie"],["movie","theaters"],["first","hostile"],["great","depression"],["depression","theaters"],["theaters","added"],["added","concession"],["concession","stands"],["increase","revenue"],["concession","stands"],["many","theaters"],["world","war"],["war","ii"],["ii","candy"],["concession","stands"],["athe","time"],["movie","ticket"],["ticket","sales"],["sales","ofood"],["ofood","concession"],["concession","stands"],["stands","increased"],["us","concession"],["concession","owners"],["owners","arepresented"],["national","association"],["national","independent"],["association","types"],["types","ofood"],["ofood","concession"],["concession","stands"],["stands","typically"],["typically","sell"],["sell","food"],["movie","theaters"],["theaters","include"],["include","candy"],["soft","drinks"],["drinks","larger"],["larger","concession"],["concession","facilities"],["amusement","park"],["newer","movie"],["movie","theatre"],["limited","selection"],["selection","ofast"],["ofast","food"],["prepare","hot"],["hot","foods"],["foods","hamburgers"],["hamburgers","french"],["french","fries"],["fries","pizza"],["pizza","hot"],["hot","dog"],["corn","dog"],["ice","cream"],["mild","alcoholic"],["alcoholic","beverages"],["beverages","usually"],["disposable","cup"],["cup","since"],["since","glass"],["glass","bottles"],["bottles","could"],["spectators","formal"],["formal","entertainment"],["entertainment","venue"],["concert","halls"],["opera","houses"],["houses","often"],["fast","food"],["upscale","fare"],["fare","including"],["including","wine"],["wine","coffee"],["pastries","although"],["popular","common"],["common","staples"],["concession","stands"],["often","region"],["region","specific"],["specific","variations"],["instance","citizens"],["citizens","bank"],["bank","park"],["philadelphia","style"],["style","food"],["food","stands"],["stands","including"],["including","several"],["specialties","busch"],["busch","stadium"],["fare","like"],["louis","area"],["pork","steak"],["steak","sandwiches"],["busch","stadium"],["stadium","also"],["also","allows"],["allows","outside"],["outside","food"],["food","andrink"],["andrink","including"],["including","soft"],["many","newer"],["include","multiple"],["multiple","concession"],["concession","stands"],["essentially","form"],["food","court"],["court","serving"],["variety","ofast"],["ofast","food"],["food","modern"],["also","include"],["include","numerous"],["soda","fountains"],["fountains","bars"],["bars","caf"],["restaurants","club"],["club","seating"],["luxury","box"],["high","end"],["end","restaurants"],["restaurants","caf"],["outdoor","eventsuch"],["food","truck"],["may","operate"],["concession","stands"],["stands","concession"],["concession","operators"],["operators","concessions"],["often","contracted"],["contracted","outo"],["outo","third"],["third","parties"],["parties","including"],["including","major"],["major","fast"],["fast","food"],["food","chain"],["legends","hospitality"],["hospitality","management"],["management","llc"],["llc","yankee"],["yankee","stadium"],["stadium","catering"],["catering","alternatively"],["alternatively","concession"],["concession","stands"],["fast","food"],["food","chainsuch"],["tim","hortons"],["hortons","file"],["file","concession"],["concession","stand"],["concession","stand"],["name","oflora"],["toronto","ontario"],["typical","stand"],["thatime","period"],["period","file"],["stadium","concession"],["concession","stand"],["outdoor","stand"],["stand","american"],["american","football"],["football","field"],["field","file"],["heinz","field"],["pittsburgh","pennsylvania"],["concession","stand"],["stand","file"],["mobile","snack"],["snack","bar"],["belgium","externalinks"],["good","concession"],["concession","stand"],["stand","category"],["category","types"],["restaurants","category"],["category","cinemas"],["movie","theaters"]],"all_collocations":["concession stand","stand american","american english","snack bar","bar british","british english","english irish","irish english","purchase snack","movie theatre","park fair","fair stadium","entertainment venue","venues contract","contract outhe","outhe righto","righto sell","sell food","third parties","often referred","concession contract","contract concession","concession hence","food isold","isold usually","usually prices","concession stands","outside food","food andrink","often contribute","contribute significant","significant revenue","venue operator","operator especially","movie theatre","area c","c food","food andrinks","andrinks movie","movie theatres","theatres concession","concession stands","originally operated","movie theaters","often sold","people attending","vendors outside","theater movie","movie theaters","first hostile","great depression","depression theaters","theaters added","added concession","concession stands","increase revenue","concession stands","many theaters","world war","war ii","ii candy","concession stands","athe time","movie ticket","ticket sales","sales ofood","ofood concession","concession stands","stands increased","us concession","concession owners","owners arepresented","national association","national independent","association types","types ofood","ofood concession","concession stands","stands typically","typically sell","sell food","movie theaters","theaters include","include candy","soft drinks","drinks larger","larger concession","concession facilities","amusement park","newer movie","movie theatre","limited selection","selection ofast","ofast food","prepare hot","hot foods","foods hamburgers","hamburgers french","french fries","fries pizza","pizza hot","hot dog","corn dog","ice cream","mild alcoholic","alcoholic beverages","beverages usually","disposable cup","cup since","since glass","glass bottles","bottles could","spectators formal","formal entertainment","entertainment venue","concert halls","opera houses","houses often","fast food","upscale fare","fare including","including wine","wine coffee","pastries although","popular common","common staples","concession stands","often region","region specific","specific variations","instance citizens","citizens bank","bank park","philadelphia style","style food","food stands","stands including","including several","specialties busch","busch stadium","fare like","louis area","pork steak","steak sandwiches","busch stadium","stadium also","also allows","allows outside","outside food","food andrink","andrink including","including soft","many newer","include multiple","multiple concession","concession stands","essentially form","food court","court serving","variety ofast","ofast food","food modern","also include","include numerous","soda fountains","fountains bars","bars caf","restaurants club","club seating","luxury box","high end","end restaurants","restaurants caf","outdoor eventsuch","food truck","may operate","concession stands","stands concession","concession operators","operators concessions","often contracted","contracted outo","outo third","third parties","parties including","including major","major fast","fast food","food chain","legends hospitality","hospitality management","management llc","llc yankee","yankee stadium","stadium catering","catering alternatively","alternatively concession","concession stands","fast food","food chainsuch","tim hortons","hortons file","file concession","concession stand","concession stand","name oflora","toronto ontario","typical stand","thatime period","period file","stadium concession","concession stand","outdoor stand","stand american","american football","football field","field file","heinz field","pittsburgh pennsylvania","concession stand","stand file","mobile snack","snack bar","belgium externalinks","good concession","concession stand","stand category","category types","restaurants category","category cinemas","movie theaters"],"new_description":"concession stand american_english snack_bar british_english irish english place patron purchase snack food movie theatre park fair stadium entertainment venue venues contract outhe righto sell food third parties contracts often_referred concession contract concession hence name stand food isold usually prices goods concession_stands greater elsewhere convenience close attraction outside food_andrink prohibited often contribute significant revenue venue operator especially case movie theatre area c food_andrinks movie theatres concession_stands originally operated movie_theaters food often sold people attending film vendors outside theater movie_theaters first hostile food facilities great_depression theaters added concession_stands way increase revenue concession_stands main many theaters world_war ii candy concession_stands athe_time became_popular late early movie ticket sales sales ofood concession_stands increased us concession owners arepresented national association national independent association types_ofood concession_stands typically sell food movie_theaters include candy soft_drinks larger concession facilities amusement_park newer movie theatre sale limited selection ofast_food stations prepare hot foods hamburgers french_fries pizza hot_dog corn dog nachos freezers store cone ice_cream sports rock beer mild alcoholic_beverages usually disposable cup since glass bottles could used spectators formal entertainment venue concert halls opera_houses often fast_food food upscale fare including wine coffee tea pastries although popular common staples concession_stands often region specific variations instance citizens bank park philadelphia style food stands including several serve specialties busch stadium fare like nachos also louis area pork steak sandwiches busch stadium also allows outside food_andrink including soft concourse many newer include multiple concession_stands essentially form food_court serving variety ofast_food modern also_include numerous stations soda_fountains bars caf restaurants club seating luxury box access high_end_restaurants caf bars catering available regular outdoor eventsuch fair food_truck may operate concession_stands concession operators concessions often contracted outo third parties including major fast_food chain legends hospitality_management llc yankee stadium north garden companies specialize stadium catering alternatively concession_stands operated fast_food chainsuch mcdonald pizza tim hortons file concession_stand concession_stand name oflora point toronto ontario image taken typical stand thatime period file stadium concession concession_stand stadium outdoor stand american football field file heinz field pittsburgh pennsylvania stand food concession_stand file mobile snack_bar belgium externalinks makes good concession_stand category_types restaurants_category cinemas movie_theaters"},{"title":"Concierge","description":"file a hotel concierge handing room keys rome jpg thumb px a hotel concierge a concierge is an employee of an apartment building hotel or office building a modern concierge may also serve as a personalifestyle management lifestyle manager like a secretary or an adjutant duties and functions the concierge serves guests of an apartment building hotel or office building with dutiesimilar to those of a receptionisthe position can also be maintained by a security guard over the shift work late night shift a similar position known as the portero exists in spanish speaking regions in medieval times the concierge was an officer of the king who was charged with executing justice withe help of his bailiff s later on in the th century the concierge was a high official of the kingdom appointed by the king to maintain order and oversee the police and prisonerecords in th century and early th century apartment buildings particularly in paris the concierge was known as a suisse as the post was often filled by swiss he often had a small apartment on the ground floor called la loge and was able to monitor all comings and goings however such settings are now extremely rare most concierges in small or middle sized buildings have been replaced by the partime services of doorman profession door staff some larger apartment buildings or groups of buildings retain the use of concierges the concierge may for instance keep the mail of absentedwellers bentrusted withe apartment keys to deal with emergencies when residents are absent provide information to residents and guests provide access control enforce rules and act as a go between foresidents and management when management is not on site a modern concierge may also serve as a lifestyle management lifestyle manager like a secretary or an adjutant in hotels oresorts a concierge assists guests by performing various tasksuch as making restaurant reservations booking hotels arranging for spa services recommending night life hot spots booking transportation like taxi limousines airplanes boats etcoordinating porter service luggage assistance request procuring tickets to special events and assisting with various travel arrangements and tours of local attractions concierges also assist with sending and receiving parcels concierge services in hospitals concierge services are becoming increasingly available a hospital concierge providesimilar services to those of a hotel concierge but serves patients and employees as well this helps hospital employees who work long shifts and helps to provide work life balance there are numerous independent personal concierge companies that providerrand services and information services for their memberservices include informational requestsetting dinnereservations making telephone calls researching travel arrangements and more typically concierge companies will bill on an hourly rate andepending upon the type of task fees can vary drastically other companies bill a flat monthly fee based upon the number of requests a member is allowed to placeach month in the united kingdom since the year and as of concierge has become a key marketing and loyalty tool in the banking sector and offered as a benefit on luxury credit card s thiservice offering is also known as lifestyle management concierges also entertain their clients the owners and operators of concierge lifestyle management and errand service businesses are supported and advocated by the non profit international concierge and lifestyle management association iclmand the national concierge association the french word concierge is likely derived from the old french cumcerges itself related to the medievalatin consergius or the latin conservus fellow slave another possibility suggested by french authors as early as the th century is that concierge is a contraction grammar contraction of comte des cierges count of candles a servant responsible for maintaining the lighting and cleanliness of middle ages medieval palaces popular culture the film home alone lost inew york had a concierge named mr hector portrayed by tim curry who works athe plaza hotel and wasuspicious of kevin mccallister in the wes anderson film the grand budapest hotel monsieur gustav h portrayed by ralph fiennes is the concierge h ctor elizondo portrays a concierge of the plaza hotel in the american dad season episode fartbreak hotel there was a reference by hector to having done other concierge roles the film for love or money film for love or money with michael j fox in main role describe the story about concierge at a luxurious hotel who is dreaming topen his own hotel on roosevelt island see also concierge medicine doorman profession doorman property caretakereceptionist shopping concierge duty officer externalinks the international concierge and lifestyle management association les clefs d or usa national concierge association american hotelodging educational institute category hospitality occupations","main_words":["file","hotel","concierge","room","keys","rome","jpg","thumb","px","hotel","concierge","concierge","employee","apartment","building","hotel","office","building","modern","concierge","may_also","serve","management","lifestyle","manager","like","secretary","duties","functions","concierge","serves","guests","apartment","building","hotel","office","building","position","also","maintained","security","guard","shift","work","late_night","shift","similar","position","known","exists","spanish","speaking","regions","medieval","times","concierge","officer","king","charged","justice","withe_help","later","th_century","concierge","high","official","kingdom","appointed","king","maintain","order","oversee","police","th_century","early_th","century","apartment","buildings","particularly","paris","concierge","known","post","often","filled","swiss","often","small","apartment","ground_floor","called","la","able","monitor","however","settings","extremely","rare","concierges","small","middle","sized","buildings","replaced","partime","services","doorman","profession","door","staff","larger","apartment","buildings","groups","buildings","retain","use","concierges","concierge","may","instance","keep","mail","withe","apartment","keys","deal","emergencies","residents","provide_information","residents","guests","provide","access","control","enforce","rules","act","go","management","management","site","modern","concierge","may_also","serve","lifestyle","management","lifestyle","manager","like","secretary","hotels","concierge","assists","guests","performing","various","tasksuch","making","restaurant_reservations","booking","hotels","arranging","spa","services","recommending","night","life","hot","spots","booking","transportation","like","taxi","airplanes","boats","porter","service","luggage","assistance","request","procuring","tickets","special_events","assisting","various","travel","arrangements","tours","local","attractions","concierges","also","assist","sending","receiving","concierge","services","hospitals","concierge","services","becoming_increasingly","available","hospital","concierge","services","hotel","concierge","serves","patients","employees","well","helps","hospital","employees","work","long","shifts","helps","provide","work","life","balance","numerous","independent","personal","concierge","companies","services","information","services","include","informational","making","telephone","calls","researching","travel","arrangements","typically","concierge","companies","bill","hourly","rate","upon","type","task","fees","vary","companies","bill","flat","monthly","fee","based_upon","number","requests","member","allowed","month","united_kingdom","since","year","concierge","become","key","marketing","loyalty","tool","banking","sector","offered","benefit","luxury","credit_card","thiservice","offering","also_known","lifestyle","management","concierges","also","entertain","clients","owners","operators","concierge","lifestyle","management","service","businesses","supported","advocated","non_profit","international","concierge","lifestyle","management","association","national","concierge","association","french","word","concierge","likely","derived","old","french","related","latin","fellow","slave","another","possibility","suggested","french","authors","early_th","century","concierge","contraction","contraction","des","count","candles","servant","responsible","maintaining","lighting","cleanliness","middle_ages","medieval","popular_culture","film","home","alone","lost","inew_york","concierge","named","hector","portrayed","tim","curry","works","athe","plaza","hotel","kevin","anderson","film","grand","budapest","hotel","h","portrayed","ralph","concierge","h","concierge","plaza","hotel","american","season","episode","hotel","reference","hector","done","concierge","roles","film","love","money","film","love","money","michael","j","fox","main","role","describe","story","concierge","luxurious","hotel","topen","hotel","roosevelt","island","see_also","concierge","medicine","doorman","profession","doorman","property","shopping","concierge","duty","officer","externalinks","international","concierge","lifestyle","management","association","les","usa","national","concierge","association","american","hotelodging","educational","institute","category_hospitality_occupations"],"clean_bigrams":[["hotel","concierge"],["room","keys"],["keys","rome"],["rome","jpg"],["jpg","thumb"],["thumb","px"],["hotel","concierge"],["apartment","building"],["building","hotel"],["office","building"],["modern","concierge"],["concierge","may"],["may","also"],["also","serve"],["management","lifestyle"],["lifestyle","manager"],["manager","like"],["concierge","serves"],["serves","guests"],["apartment","building"],["building","hotel"],["office","building"],["security","guard"],["shift","work"],["work","late"],["late","night"],["night","shift"],["similar","position"],["position","known"],["spanish","speaking"],["speaking","regions"],["medieval","times"],["justice","withe"],["withe","help"],["th","century"],["high","official"],["kingdom","appointed"],["maintain","order"],["th","century"],["early","th"],["th","century"],["century","apartment"],["apartment","buildings"],["buildings","particularly"],["often","filled"],["small","apartment"],["ground","floor"],["floor","called"],["called","la"],["extremely","rare"],["middle","sized"],["sized","buildings"],["partime","services"],["doorman","profession"],["profession","door"],["door","staff"],["larger","apartment"],["apartment","buildings"],["buildings","retain"],["concierge","may"],["instance","keep"],["withe","apartment"],["apartment","keys"],["provide","information"],["guests","provide"],["provide","access"],["access","control"],["control","enforce"],["enforce","rules"],["modern","concierge"],["concierge","may"],["may","also"],["also","serve"],["lifestyle","management"],["management","lifestyle"],["lifestyle","manager"],["manager","like"],["concierge","assists"],["assists","guests"],["performing","various"],["various","tasksuch"],["making","restaurant"],["restaurant","reservations"],["reservations","booking"],["booking","hotels"],["hotels","arranging"],["spa","services"],["services","recommending"],["recommending","night"],["night","life"],["life","hot"],["hot","spots"],["spots","booking"],["booking","transportation"],["transportation","like"],["like","taxi"],["airplanes","boats"],["porter","service"],["service","luggage"],["luggage","assistance"],["assistance","request"],["request","procuring"],["procuring","tickets"],["special","events"],["various","travel"],["travel","arrangements"],["local","attractions"],["attractions","concierges"],["concierges","also"],["also","assist"],["concierge","services"],["hospitals","concierge"],["concierge","services"],["becoming","increasingly"],["increasingly","available"],["hospital","concierge"],["concierge","services"],["hotel","concierge"],["concierge","serves"],["serves","patients"],["helps","hospital"],["hospital","employees"],["work","long"],["long","shifts"],["provide","work"],["work","life"],["life","balance"],["numerous","independent"],["independent","personal"],["personal","concierge"],["concierge","companies"],["information","services"],["include","informational"],["making","telephone"],["telephone","calls"],["calls","researching"],["researching","travel"],["travel","arrangements"],["typically","concierge"],["concierge","companies"],["companies","bill"],["hourly","rate"],["task","fees"],["companies","bill"],["flat","monthly"],["monthly","fee"],["fee","based"],["based","upon"],["united","kingdom"],["kingdom","since"],["key","marketing"],["loyalty","tool"],["banking","sector"],["luxury","credit"],["credit","card"],["thiservice","offering"],["also","known"],["lifestyle","management"],["management","concierges"],["concierges","also"],["also","entertain"],["concierge","lifestyle"],["lifestyle","management"],["service","businesses"],["non","profit"],["profit","international"],["international","concierge"],["concierge","lifestyle"],["lifestyle","management"],["management","association"],["national","concierge"],["concierge","association"],["french","word"],["word","concierge"],["likely","derived"],["old","french"],["fellow","slave"],["slave","another"],["another","possibility"],["possibility","suggested"],["french","authors"],["early","th"],["th","century"],["servant","responsible"],["middle","ages"],["ages","medieval"],["popular","culture"],["film","home"],["home","alone"],["alone","lost"],["lost","inew"],["inew","york"],["concierge","named"],["hector","portrayed"],["tim","curry"],["works","athe"],["athe","plaza"],["plaza","hotel"],["anderson","film"],["grand","budapest"],["budapest","hotel"],["h","portrayed"],["concierge","h"],["plaza","hotel"],["season","episode"],["concierge","roles"],["money","film"],["michael","j"],["j","fox"],["main","role"],["role","describe"],["luxurious","hotel"],["roosevelt","island"],["island","see"],["see","also"],["also","concierge"],["concierge","medicine"],["medicine","doorman"],["doorman","profession"],["profession","doorman"],["doorman","property"],["shopping","concierge"],["concierge","duty"],["duty","officer"],["officer","externalinks"],["international","concierge"],["concierge","lifestyle"],["lifestyle","management"],["management","association"],["association","les"],["usa","national"],["national","concierge"],["concierge","association"],["association","american"],["american","hotelodging"],["hotelodging","educational"],["educational","institute"],["institute","category"],["category","hospitality"],["hospitality","occupations"]],"all_collocations":["hotel concierge","room keys","keys rome","rome jpg","hotel concierge","apartment building","building hotel","office building","modern concierge","concierge may","may also","also serve","management lifestyle","lifestyle manager","manager like","concierge serves","serves guests","apartment building","building hotel","office building","security guard","shift work","work late","late night","night shift","similar position","position known","spanish speaking","speaking regions","medieval times","justice withe","withe help","th century","high official","kingdom appointed","maintain order","th century","early th","th century","century apartment","apartment buildings","buildings particularly","often filled","small apartment","ground floor","floor called","called la","extremely rare","middle sized","sized buildings","partime services","doorman profession","profession door","door staff","larger apartment","apartment buildings","buildings retain","concierge may","instance keep","withe apartment","apartment keys","provide information","guests provide","provide access","access control","control enforce","enforce rules","modern concierge","concierge may","may also","also serve","lifestyle management","management lifestyle","lifestyle manager","manager like","concierge assists","assists guests","performing various","various tasksuch","making restaurant","restaurant reservations","reservations booking","booking hotels","hotels arranging","spa services","services recommending","recommending night","night life","life hot","hot spots","spots booking","booking transportation","transportation like","like taxi","airplanes boats","porter service","service luggage","luggage assistance","assistance request","request procuring","procuring tickets","special events","various travel","travel arrangements","local attractions","attractions concierges","concierges also","also assist","concierge services","hospitals concierge","concierge services","becoming increasingly","increasingly available","hospital concierge","concierge services","hotel concierge","concierge serves","serves patients","helps hospital","hospital employees","work long","long shifts","provide work","work life","life balance","numerous independent","independent personal","personal concierge","concierge companies","information services","include informational","making telephone","telephone calls","calls researching","researching travel","travel arrangements","typically concierge","concierge companies","companies bill","hourly rate","task fees","companies bill","flat monthly","monthly fee","fee based","based upon","united kingdom","kingdom since","key marketing","loyalty tool","banking sector","luxury credit","credit card","thiservice offering","also known","lifestyle management","management concierges","concierges also","also entertain","concierge lifestyle","lifestyle management","service businesses","non profit","profit international","international concierge","concierge lifestyle","lifestyle management","management association","national concierge","concierge association","french word","word concierge","likely derived","old french","fellow slave","slave another","another possibility","possibility suggested","french authors","early th","th century","servant responsible","middle ages","ages medieval","popular culture","film home","home alone","alone lost","lost inew","inew york","concierge named","hector portrayed","tim curry","works athe","athe plaza","plaza hotel","anderson film","grand budapest","budapest hotel","h portrayed","concierge h","plaza hotel","season episode","concierge roles","money film","michael j","j fox","main role","role describe","luxurious hotel","roosevelt island","island see","see also","also concierge","concierge medicine","medicine doorman","doorman profession","profession doorman","doorman property","shopping concierge","concierge duty","duty officer","officer externalinks","international concierge","concierge lifestyle","lifestyle management","management association","association les","usa national","national concierge","concierge association","association american","american hotelodging","hotelodging educational","educational institute","institute category","category hospitality","hospitality occupations"],"new_description":"file hotel concierge room keys rome jpg thumb px hotel concierge concierge employee apartment building hotel office building modern concierge may_also serve management lifestyle manager like secretary duties functions concierge serves guests apartment building hotel office building position also maintained security guard shift work late_night shift similar position known exists spanish speaking regions medieval times concierge officer king charged justice withe_help later th_century concierge high official kingdom appointed king maintain order oversee police th_century early_th century apartment buildings particularly paris concierge known post often filled swiss often small apartment ground_floor called la able monitor however settings extremely rare concierges small middle sized buildings replaced partime services doorman profession door staff larger apartment buildings groups buildings retain use concierges concierge may instance keep mail withe apartment keys deal emergencies residents provide_information residents guests provide access control enforce rules act go management management site modern concierge may_also serve lifestyle management lifestyle manager like secretary hotels concierge assists guests performing various tasksuch making restaurant_reservations booking hotels arranging spa services recommending night life hot spots booking transportation like taxi airplanes boats porter service luggage assistance request procuring tickets special_events assisting various travel arrangements tours local attractions concierges also assist sending receiving concierge services hospitals concierge services becoming_increasingly available hospital concierge services hotel concierge serves patients employees well helps hospital employees work long shifts helps provide work life balance numerous independent personal concierge companies services information services include informational making telephone calls researching travel arrangements typically concierge companies bill hourly rate upon type task fees vary companies bill flat monthly fee based_upon number requests member allowed month united_kingdom since year concierge become key marketing loyalty tool banking sector offered benefit luxury credit_card thiservice offering also_known lifestyle management concierges also entertain clients owners operators concierge lifestyle management service businesses supported advocated non_profit international concierge lifestyle management association national concierge association french word concierge likely derived old french related latin fellow slave another possibility suggested french authors early_th century concierge contraction contraction des count candles servant responsible maintaining lighting cleanliness middle_ages medieval popular_culture film home alone lost inew_york concierge named hector portrayed tim curry works athe plaza hotel kevin anderson film grand budapest hotel h portrayed ralph concierge h concierge plaza hotel american season episode hotel reference hector done concierge roles film love money film love money michael j fox main role describe story concierge luxurious hotel topen hotel roosevelt island see_also concierge medicine doorman profession doorman property shopping concierge duty officer externalinks international concierge lifestyle management association les usa national concierge association american hotelodging educational institute category_hospitality_occupations"},{"title":"Cond\u00e9 Nast Traveller","description":"company cond nast country united kingdom based london languagenglish website issn oclcond nastraveller is published by cond nast publications ltd from vogue house in hanover square mayfair london it is a luxury travel magazine aimed athe upmarket independentraveler it can be differentiated from the cond nastraveler american version of the magazine because of the uk spelling of the word traveller and contains mainly original uk contenthough some features are used from the us magazine and repackaged for a uk audience history and profile cond nastraveller wastarted in the magazine runseveral industry recognized awards the most important being the cond nastravellereaders awards which take placeveryear other annual awards include the readerspawards the gold list most luxurious hotels and the hot list best new hotels the latter two are compiled from recommendations from the magazine s editors and writers the cond nastraveller innovation andesign awards highlighthe best in travel irrigation andesign and are often attended by high profile figuresuch as designer paul smith fashion designer paul smith artist anish kapoor and architect richard rogersirichard rogers its first editor isarah miller the current editor is melinda stevens and the publishing director isimon leadsford melinda stevens was named new editor of the year athe british society of magazineditors awards as of the magazine was the recipient of awards including the ppa consumer lifestyle magazine of the year externalinks category establishments in the united kingdom category british lifestyle magazines category cond nast magazines category london magazines category magazinestablished in category tourismagazines","main_words":["company","cond","nast","country_united","kingdom","based","london","languagenglish_website_issn","nastraveller","published","cond","nast","publications","ltd","vogue","house","hanover","square","mayfair","london","luxury","travel_magazine","aimed","athe","upmarket","cond","american","version","magazine","uk","spelling","word","traveller","contains","mainly","original","uk","features","used","us","magazine","uk","audience","history","profile","cond","nastraveller","wastarted","magazine","industry","recognized","awards","important","cond","awards","take","annual","awards","include","gold","list","luxurious","hotels","hot","list","best_new","hotels","latter","two","compiled","recommendations","magazine","editors","writers","cond","nastraveller","innovation","andesign","awards","best","travel","irrigation","andesign","often","attended","high_profile","designer","paul","smith","fashion","designer","paul","smith","artist","architect","richard","rogers","first","editor","miller","current","editor","melinda","stevens","publishing","director","melinda","stevens","named","new","editor","year","athe","british","society","magazineditors","awards","magazine","recipient","awards","including","consumer","lifestyle_magazine","year","externalinks_category_establishments","united_kingdom","category_british","lifestyle_magazines_category","cond","nast","magazines_category","london","magazines_category_magazinestablished","category_tourismagazines"],"clean_bigrams":[["company","cond"],["cond","nast"],["nast","country"],["country","united"],["united","kingdom"],["kingdom","based"],["based","london"],["london","languagenglish"],["languagenglish","website"],["website","issn"],["cond","nast"],["nast","publications"],["publications","ltd"],["vogue","house"],["hanover","square"],["square","mayfair"],["mayfair","london"],["luxury","travel"],["travel","magazine"],["magazine","aimed"],["aimed","athe"],["athe","upmarket"],["american","version"],["uk","spelling"],["word","traveller"],["contains","mainly"],["mainly","original"],["original","uk"],["us","magazine"],["uk","audience"],["audience","history"],["profile","cond"],["cond","nastraveller"],["nastraveller","wastarted"],["industry","recognized"],["recognized","awards"],["annual","awards"],["awards","include"],["gold","list"],["luxurious","hotels"],["hot","list"],["list","best"],["best","new"],["new","hotels"],["latter","two"],["cond","nastraveller"],["nastraveller","innovation"],["innovation","andesign"],["andesign","awards"],["travel","irrigation"],["irrigation","andesign"],["often","attended"],["high","profile"],["designer","paul"],["paul","smith"],["smith","fashion"],["fashion","designer"],["designer","paul"],["paul","smith"],["smith","artist"],["architect","richard"],["first","editor"],["current","editor"],["melinda","stevens"],["publishing","director"],["melinda","stevens"],["named","new"],["new","editor"],["year","athe"],["athe","british"],["british","society"],["magazineditors","awards"],["awards","including"],["consumer","lifestyle"],["lifestyle","magazine"],["year","externalinks"],["externalinks","category"],["category","establishments"],["united","kingdom"],["kingdom","category"],["category","british"],["british","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","cond"],["cond","nast"],["nast","magazines"],["magazines","category"],["category","london"],["london","magazines"],["magazines","category"],["category","magazinestablished"],["category","tourismagazines"]],"all_collocations":["company cond","cond nast","nast country","country united","united kingdom","kingdom based","based london","london languagenglish","languagenglish website","website issn","cond nast","nast publications","publications ltd","vogue house","hanover square","square mayfair","mayfair london","luxury travel","travel magazine","magazine aimed","aimed athe","athe upmarket","american version","uk spelling","word traveller","contains mainly","mainly original","original uk","us magazine","uk audience","audience history","profile cond","cond nastraveller","nastraveller wastarted","industry recognized","recognized awards","annual awards","awards include","gold list","luxurious hotels","hot list","list best","best new","new hotels","latter two","cond nastraveller","nastraveller innovation","innovation andesign","andesign awards","travel irrigation","irrigation andesign","often attended","high profile","designer paul","paul smith","smith fashion","fashion designer","designer paul","paul smith","smith artist","architect richard","first editor","current editor","melinda stevens","publishing director","melinda stevens","named new","new editor","year athe","athe british","british society","magazineditors awards","awards including","consumer lifestyle","lifestyle magazine","year externalinks","externalinks category","category establishments","united kingdom","kingdom category","category british","british lifestyle","lifestyle magazines","magazines category","category cond","cond nast","nast magazines","magazines category","category london","london magazines","magazines category","category magazinestablished","category tourismagazines"],"new_description":"company cond nast country_united kingdom based london languagenglish_website_issn nastraveller published cond nast publications ltd vogue house hanover square mayfair london luxury travel_magazine aimed athe upmarket cond american version magazine uk spelling word traveller contains mainly original uk features used us magazine uk audience history profile cond nastraveller wastarted magazine industry recognized awards important cond awards take annual awards include gold list luxurious hotels hot list best_new hotels latter two compiled recommendations magazine editors writers cond nastraveller innovation andesign awards best travel irrigation andesign often attended high_profile designer paul smith fashion designer paul smith artist architect richard rogers first editor miller current editor melinda stevens publishing director melinda stevens named new editor year athe british society magazineditors awards magazine recipient awards including consumer lifestyle_magazine year externalinks_category_establishments united_kingdom category_british lifestyle_magazines_category cond nast magazines_category london magazines_category_magazinestablished category_tourismagazines"},{"title":"Coney Island (restaurant)","description":"file detroit december american coney island jpg thumb the interior of american coney island in detroit a coney island is a type of restauranthat is popular in the northern united states particularly in michigan as well as the name for the coney island hot dog after which the restaurant style is named origins file detroit december lafayette coney island american coney island jpg thumb lefthe original two coney islands in detroit coney islands are a unique type of greek american restaurantwof the most well known coney island restaurants are the lafayette coney island the american coney island which are located in adjacent buildings on lafayette boulevard in downtown detroithey have a common root withe original restaurant having been established by greek immigrant brothers bill and gus keros in the brothers got into a business dispute soon thereafter and in splitheirestaurant into the two establishments that existoday many european immigrants of thearly twentieth century entered the united states through ellisland one of their firstops was often the coney island neighborhood of the city where hot dogs were very popular the original restaurant name thus referred to the restaurant being an immigrant owned establishment serving coney island s food of choice thus the term coney island was an intentional reference to immigration as much as a descriptive name typical menu image coneyhdogjpg frame right one to go the menu of all coney island restaurants centers on the coney island hot dog which is a natural casing hot dog in a steamed bun dressed with chili con carne chili diced onion s and yellow mustard condiment mustard this item is usually referred to simply as a coney another popular item on most coney island restaurant menus is the loose hamburger which consists of crumbled ground beef in a hot dog bun covered in the same condiments as a coney island hot dog many coney islands also serve chili fries which are french fries covered in chili sometimes with mustard onions and or cheese added many coney islands offer other greek and greek american dishesuch as gyrosouvlaki shish kebab spanakopita saganaki and greek salad s as well as usual american diner fare such as regular hamburger sandwich es breakfast items andessert s growth of the coney island restaurant since the owners of the first coney island restaurants did notrademark the name or business plan many otherestaurants began using the same name and formula coney islands were opened throughouthe city by greek american greek immigrants coney islands have developed a distinctive dining style that is repeated in hundreds of different restaurants throughouthe metropolitan detroit areand elsewhere in michigand other nearby states there are some regional variations though such as the chili sauce which is more liquid in detroit area coney island restaurants compared to the drier sauce served in coney island restaurantserved in the nearby jackson michigand flint michigan areas many greek diners in buffalo new york and throughout upstate new york northeastern pennsylvania particularly wilkes barre and new jersey are similar in formato detroit style coney islands even serving their own style of dogs called a texas hot or texas wiener unlike the coney island restaurants in detroithough the texas hot is oftenothe dominant menu item in thesestablishmentsioux city iowalso has a handful of coney island eateries as does the houston texas oklahoma city oklahomand tulsa oklahomarea coney island restaurant chains national coney island national coney island is the oldest coney island restaurant chain michigan with locations including detroit st clair shores and other metro detroit area cities greek immigrant james giftos is credited with founding the national chili company after acquiring the company from the previous owners in shortly after he opened the first national coney island in macomb mall of roseville michigan the venue wasmall and seated about customers the menu consisted of coney island hot dogs and loose hamburgers with a few snacks and beverages national uses the chili from its affiliate national chili company national has its hot dogs made by alexander hornung out of st clair shores metropolitan baking company which is based in hamtramck michigan supplies the buns the signature dishes and their ingredients haven t changed over the years buthe menu was expanded to the typical menus of most coney islands over the years the business expanded to more than locations primarily in east metro detroit withe originalocation still in operation as the chain grew the interior evolved into a classy atmosphere with bright neon lights and brass fixtures tom giftos jr son of james giftos took over the family business after james giftos passing in and began to implement national coney island express locations a food court variation of his father s coney islands coney kits are now sold through the business and consists of the company s hot dogs and chili sauce and comes with buns mustard and onions leo s coney island the leo s coney island chain was created by greek brothers peter and leo stassinopoulos the brothers are nephews to bill and gust keros who founded americand lafayette coney islands peter and leo worked at local coney island restaurants until they opened their own coney island in called the southfield souvlaki coney island in southfield michigan one location opened in michigand another in farmington hills in the name leo s coney island was given to its newest location in troy michigan from then on the chain took on the name leo s coney island the brothers began franchising in and are now the largest coney island chain world within michigan leo s coney islands have reached as far as birch run and grand rapids where they offer both styles of the coney island hot dog the first leo s outside of michigan opened in february in chicago illinois but closed on september much of the success is attributed to leo stassinopoulos jr taking over as chief operating officer in they gained local fame for their coney island hot dogs and greek salads with a greek saladressing recipe passedown from generations leo s uses buns from the metropolitan baking company and the coney sauce is their own recipe manufactured by the milton chili company located in madison heights the natural casing hot dogs are supplied by the koegel meat company which gives the leo s coney island coney a sweet and smoky taste from the natural hardwood smoke that koegel uses to make its hot dogs in popular culture detroit s american coney island lafayette coney island have both been featured on episodes of travel channel shows man v food and food warsee also list of greek restaurants references category greek american culture in michigan category greek american cuisine category greek restaurants category hot dog restaurants category michigan culture category restaurants in detroit category types of restaurants","main_words":["file","detroit","december","american","coney_island","jpg","thumb_interior","american","coney_island","detroit","coney_island","type","restauranthat","popular","northern","united_states","particularly","michigan","well","name","coney_island","hot_dog","restaurant","style","named","origins","file","detroit","december","lafayette","coney_island","american","coney_island","jpg","thumb","lefthe","original","two","coney_islands","detroit","coney_islands","unique","type","greek","american","well_known","coney_island","restaurants","lafayette","coney_island","american","coney_island","located","adjacent","buildings","lafayette","boulevard","downtown","common","root","withe","original","restaurant","established","greek","immigrant","brothers","bill","brothers","got","business","dispute","soon","thereafter","two","establishments","many","european","immigrants","thearly","twentieth_century","entered","united_states","one","often","coney_island","neighborhood","city","hot_dogs","popular","original","restaurant","name","thus","referred","restaurant","immigrant","owned","establishment","serving","coney_island","food","choice","thus","term","coney_island","intentional","reference","immigration","much","descriptive","name","typical","menu","image","frame","right","one","go","menu","coney_island","restaurants","centers","coney_island","hot_dog","natural","hot_dog","bun","dressed","chili","con","carne","chili","onion","yellow","mustard","condiment","mustard","item","usually","referred","simply","coney","another","popular","item","coney_island","restaurant_menus","loose","hamburger","consists","ground","beef","hot_dog","bun","covered","condiments","coney_island","hot_dog","many","coney_islands","also_serve","chili","fries","french_fries","covered","chili","sometimes","mustard","onions","cheese","added","many","coney_islands","offer","greek","greek","american","dishesuch","shish","kebab","greek","salad","well","usual","american","diner","fare","regular","hamburger","sandwich","breakfast","items","andessert","growth","coney_island","restaurant","since","owners","first","coney_island","restaurants","name","business","plan","many","otherestaurants","began","using","name","formula","coney_islands","opened","throughouthe","city","greek","american","greek","immigrants","coney_islands","developed","distinctive","dining","style","repeated","hundreds","different","restaurants","throughouthe","metropolitan","detroit","areand","elsewhere","michigand","nearby","states","regional","variations","though","chili","sauce","liquid","detroit","area","coney_island","restaurants","compared","sauce","served","coney_island","nearby","jackson","michigand","flint","michigan","areas","many","greek","diners","buffalo_new_york","throughout","new_york","northeastern","pennsylvania","particularly","new_jersey","similar","detroit","style","coney_islands","even","serving","style","dogs","called","texas","hot","texas","unlike","coney_island","restaurants","texas","hot","dominant","menu","item","city","handful","coney_island","eateries","houston_texas","oklahoma_city","tulsa","coney_island","restaurant_chains","national","coney_island","national","coney_island","oldest","coney_island","restaurant_chain","michigan","locations","including","detroit","st","shores","metro","detroit","area","cities","greek","immigrant","james","giftos","credited","founding","national","chili","company","acquiring","company","previous","owners","shortly","opened","first","national","coney_island","mall","michigan","venue","seated","customers","menu","consisted","coney_island","hot_dogs","loose","hamburgers","snacks","beverages","national","uses","chili","affiliate","national","chili","company","national","hot_dogs","made","alexander","st","shores","metropolitan","baking","company_based","michigan","supplies","buns","signature_dishes","ingredients","changed","years","buthe","menu","expanded","typical","menus","coney_islands","years","business","expanded","locations","primarily","east","metro","detroit","withe","still","operation","chain","grew","interior","evolved","atmosphere","bright","neon","lights","brass","tom","giftos","son","james","giftos","took","family","business","james","giftos","passing","began","implement","national","coney_island","express","locations","food_court","variation","father","coney_islands","coney","kits","sold","business","consists","company","hot_dogs","chili","sauce","comes","buns","mustard","onions","leo","coney_island","leo","coney_island","chain","created","greek","brothers","peter","leo","brothers","bill","founded","americand","lafayette","coney_islands","peter","leo","worked","local","coney_island","restaurants","opened","coney_island","called","southfield","coney_island","southfield","michigan","one","location","opened","michigand","another","hills","name","leo","coney_island","given","newest","location","troy","michigan","chain","took","name","leo","coney_island","brothers","began","franchising","largest","coney_island","chain","world","within","michigan","leo","coney_islands","reached","far","birch","run","grand","rapids","offer","styles","coney_island","hot_dog","first","leo","outside","michigan","opened","february","chicago_illinois","closed","september","much","success","attributed","leo","taking","chief","operating","officer","gained","local","fame","coney_island","hot_dogs","greek","salads","greek","recipe","generations","leo","uses","buns","metropolitan","baking","company","coney","sauce","recipe","manufactured","milton","chili","company","located","madison","heights","natural","hot_dogs","supplied","meat","company","gives","leo","coney_island","coney","sweet","smoky","taste","natural","smoke","uses","make","hot_dogs","popular_culture","detroit","american","coney_island","lafayette","coney_island","featured","episodes","travel_channel","shows","man","v","food","food","also_list","greek","restaurants","references_category","greek","american_culture","michigan","category","greek","american","cuisine_category","greek","restaurants_category","hot_dog","restaurants_category","michigan","detroit","category_types","restaurants"],"clean_bigrams":[["file","detroit"],["detroit","december"],["december","american"],["american","coney"],["coney","island"],["island","jpg"],["jpg","thumb"],["american","coney"],["coney","island"],["detroit","coney"],["coney","island"],["northern","united"],["united","states"],["states","particularly"],["coney","island"],["island","hot"],["hot","dog"],["restaurant","style"],["named","origins"],["origins","file"],["file","detroit"],["detroit","december"],["december","lafayette"],["lafayette","coney"],["coney","island"],["island","american"],["american","coney"],["coney","island"],["island","jpg"],["jpg","thumb"],["thumb","lefthe"],["lefthe","original"],["original","two"],["two","coney"],["coney","islands"],["detroit","coney"],["coney","islands"],["unique","type"],["greek","american"],["well","known"],["known","coney"],["coney","island"],["island","restaurants"],["lafayette","coney"],["coney","island"],["island","american"],["american","coney"],["coney","island"],["adjacent","buildings"],["lafayette","boulevard"],["common","root"],["root","withe"],["withe","original"],["original","restaurant"],["greek","immigrant"],["immigrant","brothers"],["brothers","bill"],["brothers","got"],["business","dispute"],["dispute","soon"],["soon","thereafter"],["two","establishments"],["many","european"],["european","immigrants"],["thearly","twentieth"],["twentieth","century"],["century","entered"],["united","states"],["coney","island"],["island","neighborhood"],["hot","dogs"],["original","restaurant"],["restaurant","name"],["name","thus"],["thus","referred"],["immigrant","owned"],["owned","establishment"],["establishment","serving"],["serving","coney"],["coney","island"],["choice","thus"],["term","coney"],["coney","island"],["intentional","reference"],["descriptive","name"],["name","typical"],["typical","menu"],["menu","image"],["frame","right"],["right","one"],["coney","island"],["island","restaurants"],["restaurants","centers"],["coney","island"],["island","hot"],["hot","dog"],["hot","dog"],["dog","bun"],["bun","dressed"],["chili","con"],["con","carne"],["carne","chili"],["yellow","mustard"],["mustard","condiment"],["condiment","mustard"],["usually","referred"],["coney","another"],["another","popular"],["popular","item"],["coney","island"],["island","restaurant"],["restaurant","menus"],["loose","hamburger"],["ground","beef"],["hot","dog"],["dog","bun"],["bun","covered"],["coney","island"],["island","hot"],["hot","dog"],["dog","many"],["many","coney"],["coney","islands"],["islands","also"],["also","serve"],["serve","chili"],["chili","fries"],["french","fries"],["fries","covered"],["chili","sometimes"],["mustard","onions"],["cheese","added"],["added","many"],["many","coney"],["coney","islands"],["islands","offer"],["greek","american"],["american","dishesuch"],["shish","kebab"],["greek","salad"],["usual","american"],["american","diner"],["diner","fare"],["regular","hamburger"],["hamburger","sandwich"],["breakfast","items"],["items","andessert"],["coney","island"],["island","restaurant"],["restaurant","since"],["first","coney"],["coney","island"],["island","restaurants"],["business","plan"],["plan","many"],["many","otherestaurants"],["otherestaurants","began"],["began","using"],["formula","coney"],["coney","islands"],["opened","throughouthe"],["throughouthe","city"],["greek","american"],["american","greek"],["greek","immigrants"],["immigrants","coney"],["coney","islands"],["distinctive","dining"],["dining","style"],["different","restaurants"],["restaurants","throughouthe"],["throughouthe","metropolitan"],["metropolitan","detroit"],["detroit","areand"],["areand","elsewhere"],["nearby","states"],["regional","variations"],["variations","though"],["chili","sauce"],["detroit","area"],["area","coney"],["coney","island"],["island","restaurants"],["restaurants","compared"],["sauce","served"],["coney","island"],["nearby","jackson"],["jackson","michigand"],["michigand","flint"],["flint","michigan"],["michigan","areas"],["areas","many"],["many","greek"],["greek","diners"],["buffalo","new"],["new","york"],["new","york"],["york","northeastern"],["northeastern","pennsylvania"],["pennsylvania","particularly"],["new","jersey"],["detroit","style"],["style","coney"],["coney","islands"],["islands","even"],["even","serving"],["dogs","called"],["texas","hot"],["coney","island"],["island","restaurants"],["texas","hot"],["dominant","menu"],["menu","item"],["coney","island"],["island","eateries"],["houston","texas"],["texas","oklahoma"],["oklahoma","city"],["coney","island"],["island","restaurant"],["restaurant","chains"],["chains","national"],["national","coney"],["coney","island"],["island","national"],["national","coney"],["coney","island"],["oldest","coney"],["coney","island"],["island","restaurant"],["restaurant","chain"],["chain","michigan"],["locations","including"],["including","detroit"],["detroit","st"],["metro","detroit"],["detroit","area"],["area","cities"],["cities","greek"],["greek","immigrant"],["immigrant","james"],["james","giftos"],["national","chili"],["chili","company"],["previous","owners"],["first","national"],["national","coney"],["coney","island"],["menu","consisted"],["coney","island"],["island","hot"],["hot","dogs"],["loose","hamburgers"],["beverages","national"],["national","uses"],["affiliate","national"],["national","chili"],["chili","company"],["company","national"],["hot","dogs"],["dogs","made"],["shores","metropolitan"],["metropolitan","baking"],["baking","company"],["michigan","supplies"],["signature","dishes"],["years","buthe"],["buthe","menu"],["typical","menus"],["coney","islands"],["business","expanded"],["locations","primarily"],["east","metro"],["metro","detroit"],["detroit","withe"],["chain","grew"],["interior","evolved"],["bright","neon"],["neon","lights"],["tom","giftos"],["james","giftos"],["giftos","took"],["family","business"],["james","giftos"],["giftos","passing"],["implement","national"],["national","coney"],["coney","island"],["island","express"],["express","locations"],["food","court"],["court","variation"],["coney","islands"],["islands","coney"],["coney","kits"],["hot","dogs"],["chili","sauce"],["buns","mustard"],["mustard","onions"],["onions","leo"],["coney","island"],["coney","island"],["island","chain"],["greek","brothers"],["brothers","peter"],["brothers","bill"],["founded","americand"],["americand","lafayette"],["lafayette","coney"],["coney","islands"],["islands","peter"],["leo","worked"],["local","coney"],["coney","island"],["island","restaurants"],["coney","island"],["coney","island"],["southfield","michigan"],["michigan","one"],["one","location"],["location","opened"],["michigand","another"],["name","leo"],["coney","island"],["newest","location"],["troy","michigan"],["chain","took"],["name","leo"],["coney","island"],["brothers","began"],["began","franchising"],["largest","coney"],["coney","island"],["island","chain"],["chain","world"],["world","within"],["within","michigan"],["michigan","leo"],["coney","islands"],["birch","run"],["grand","rapids"],["coney","island"],["island","hot"],["hot","dog"],["first","leo"],["michigan","opened"],["chicago","illinois"],["september","much"],["chief","operating"],["operating","officer"],["gained","local"],["local","fame"],["coney","island"],["island","hot"],["hot","dogs"],["greek","salads"],["generations","leo"],["uses","buns"],["metropolitan","baking"],["baking","company"],["coney","sauce"],["recipe","manufactured"],["milton","chili"],["chili","company"],["company","located"],["madison","heights"],["hot","dogs"],["meat","company"],["coney","island"],["island","coney"],["smoky","taste"],["hot","dogs"],["popular","culture"],["culture","detroit"],["american","coney"],["coney","island"],["island","lafayette"],["lafayette","coney"],["coney","island"],["travel","channel"],["channel","shows"],["shows","man"],["man","v"],["v","food"],["also","list"],["greek","restaurants"],["restaurants","references"],["references","category"],["category","greek"],["greek","american"],["american","culture"],["michigan","category"],["category","greek"],["greek","american"],["american","cuisine"],["cuisine","category"],["category","greek"],["greek","restaurants"],["restaurants","category"],["category","hot"],["hot","dog"],["dog","restaurants"],["restaurants","category"],["category","michigan"],["michigan","culture"],["culture","category"],["category","restaurants"],["detroit","category"],["category","types"]],"all_collocations":["file detroit","detroit december","december american","american coney","coney island","island jpg","american coney","coney island","detroit coney","coney island","northern united","united states","states particularly","coney island","island hot","hot dog","restaurant style","named origins","origins file","file detroit","detroit december","december lafayette","lafayette coney","coney island","island american","american coney","coney island","island jpg","thumb lefthe","lefthe original","original two","two coney","coney islands","detroit coney","coney islands","unique type","greek american","well known","known coney","coney island","island restaurants","lafayette coney","coney island","island american","american coney","coney island","adjacent buildings","lafayette boulevard","common root","root withe","withe original","original restaurant","greek immigrant","immigrant brothers","brothers bill","brothers got","business dispute","dispute soon","soon thereafter","two establishments","many european","european immigrants","thearly twentieth","twentieth century","century entered","united states","coney island","island neighborhood","hot dogs","original restaurant","restaurant name","name thus","thus referred","immigrant owned","owned establishment","establishment serving","serving coney","coney island","choice thus","term coney","coney island","intentional reference","descriptive name","name typical","typical menu","menu image","frame right","right one","coney island","island restaurants","restaurants centers","coney island","island hot","hot dog","hot dog","dog bun","bun dressed","chili con","con carne","carne chili","yellow mustard","mustard condiment","condiment mustard","usually referred","coney another","another popular","popular item","coney island","island restaurant","restaurant menus","loose hamburger","ground beef","hot dog","dog bun","bun covered","coney island","island hot","hot dog","dog many","many coney","coney islands","islands also","also serve","serve chili","chili fries","french fries","fries covered","chili sometimes","mustard onions","cheese added","added many","many coney","coney islands","islands offer","greek american","american dishesuch","shish kebab","greek salad","usual american","american diner","diner fare","regular hamburger","hamburger sandwich","breakfast items","items andessert","coney island","island restaurant","restaurant since","first coney","coney island","island restaurants","business plan","plan many","many otherestaurants","otherestaurants began","began using","formula coney","coney islands","opened throughouthe","throughouthe city","greek american","american greek","greek immigrants","immigrants coney","coney islands","distinctive dining","dining style","different restaurants","restaurants throughouthe","throughouthe metropolitan","metropolitan detroit","detroit areand","areand elsewhere","nearby states","regional variations","variations though","chili sauce","detroit area","area coney","coney island","island restaurants","restaurants compared","sauce served","coney island","nearby jackson","jackson michigand","michigand flint","flint michigan","michigan areas","areas many","many greek","greek diners","buffalo new","new york","new york","york northeastern","northeastern pennsylvania","pennsylvania particularly","new jersey","detroit style","style coney","coney islands","islands even","even serving","dogs called","texas hot","coney island","island restaurants","texas hot","dominant menu","menu item","coney island","island eateries","houston texas","texas oklahoma","oklahoma city","coney island","island restaurant","restaurant chains","chains national","national coney","coney island","island national","national coney","coney island","oldest coney","coney island","island restaurant","restaurant chain","chain michigan","locations including","including detroit","detroit st","metro detroit","detroit area","area cities","cities greek","greek immigrant","immigrant james","james giftos","national chili","chili company","previous owners","first national","national coney","coney island","menu consisted","coney island","island hot","hot dogs","loose hamburgers","beverages national","national uses","affiliate national","national chili","chili company","company national","hot dogs","dogs made","shores metropolitan","metropolitan baking","baking company","michigan supplies","signature dishes","years buthe","buthe menu","typical menus","coney islands","business expanded","locations primarily","east metro","metro detroit","detroit withe","chain grew","interior evolved","bright neon","neon lights","tom giftos","james giftos","giftos took","family business","james giftos","giftos passing","implement national","national coney","coney island","island express","express locations","food court","court variation","coney islands","islands coney","coney kits","hot dogs","chili sauce","buns mustard","mustard onions","onions leo","coney island","coney island","island chain","greek brothers","brothers peter","brothers bill","founded americand","americand lafayette","lafayette coney","coney islands","islands peter","leo worked","local coney","coney island","island restaurants","coney island","coney island","southfield michigan","michigan one","one location","location opened","michigand another","name leo","coney island","newest location","troy michigan","chain took","name leo","coney island","brothers began","began franchising","largest coney","coney island","island chain","chain world","world within","within michigan","michigan leo","coney islands","birch run","grand rapids","coney island","island hot","hot dog","first leo","michigan opened","chicago illinois","september much","chief operating","operating officer","gained local","local fame","coney island","island hot","hot dogs","greek salads","generations leo","uses buns","metropolitan baking","baking company","coney sauce","recipe manufactured","milton chili","chili company","company located","madison heights","hot dogs","meat company","coney island","island coney","smoky taste","hot dogs","popular culture","culture detroit","american coney","coney island","island lafayette","lafayette coney","coney island","travel channel","channel shows","shows man","man v","v food","also list","greek restaurants","restaurants references","references category","category greek","greek american","american culture","michigan category","category greek","greek american","american cuisine","cuisine category","category greek","greek restaurants","restaurants category","category hot","hot dog","dog restaurants","restaurants category","category michigan","michigan culture","culture category","category restaurants","detroit category","category types"],"new_description":"file detroit december american coney_island jpg thumb_interior american coney_island detroit coney_island type restauranthat popular northern united_states particularly michigan well name coney_island hot_dog restaurant style named origins file detroit december lafayette coney_island american coney_island jpg thumb lefthe original two coney_islands detroit coney_islands unique type greek american well_known coney_island restaurants lafayette coney_island american coney_island located adjacent buildings lafayette boulevard downtown common root withe original restaurant established greek immigrant brothers bill brothers got business dispute soon thereafter two establishments many european immigrants thearly twentieth_century entered united_states one often coney_island neighborhood city hot_dogs popular original restaurant name thus referred restaurant immigrant owned establishment serving coney_island food choice thus term coney_island intentional reference immigration much descriptive name typical menu image frame right one go menu coney_island restaurants centers coney_island hot_dog natural hot_dog bun dressed chili con carne chili onion yellow mustard condiment mustard item usually referred simply coney another popular item coney_island restaurant_menus loose hamburger consists ground beef hot_dog bun covered condiments coney_island hot_dog many coney_islands also_serve chili fries french_fries covered chili sometimes mustard onions cheese added many coney_islands offer greek greek american dishesuch shish kebab greek salad well usual american diner fare regular hamburger sandwich breakfast items andessert growth coney_island restaurant since owners first coney_island restaurants name business plan many otherestaurants began using name formula coney_islands opened throughouthe city greek american greek immigrants coney_islands developed distinctive dining style repeated hundreds different restaurants throughouthe metropolitan detroit areand elsewhere michigand nearby states regional variations though chili sauce liquid detroit area coney_island restaurants compared sauce served coney_island nearby jackson michigand flint michigan areas many greek diners buffalo_new_york throughout new_york northeastern pennsylvania particularly new_jersey similar detroit style coney_islands even serving style dogs called texas hot texas unlike coney_island restaurants texas hot dominant menu item city handful coney_island eateries houston_texas oklahoma_city tulsa coney_island restaurant_chains national coney_island national coney_island oldest coney_island restaurant_chain michigan locations including detroit st shores metro detroit area cities greek immigrant james giftos credited founding national chili company acquiring company previous owners shortly opened first national coney_island mall michigan venue seated customers menu consisted coney_island hot_dogs loose hamburgers snacks beverages national uses chili affiliate national chili company national hot_dogs made alexander st shores metropolitan baking company_based michigan supplies buns signature_dishes ingredients changed years buthe menu expanded typical menus coney_islands years business expanded locations primarily east metro detroit withe still operation chain grew interior evolved atmosphere bright neon lights brass tom giftos son james giftos took family business james giftos passing began implement national coney_island express locations food_court variation father coney_islands coney kits sold business consists company hot_dogs chili sauce comes buns mustard onions leo coney_island leo coney_island chain created greek brothers peter leo brothers bill founded americand lafayette coney_islands peter leo worked local coney_island restaurants opened coney_island called southfield coney_island southfield michigan one location opened michigand another hills name leo coney_island given newest location troy michigan chain took name leo coney_island brothers began franchising largest coney_island chain world within michigan leo coney_islands reached far birch run grand rapids offer styles coney_island hot_dog first leo outside michigan opened february chicago_illinois closed september much success attributed leo taking chief operating officer gained local fame coney_island hot_dogs greek salads greek recipe generations leo uses buns metropolitan baking company coney sauce recipe manufactured milton chili company located madison heights natural hot_dogs supplied meat company gives leo coney_island coney sweet smoky taste natural smoke uses make hot_dogs popular_culture detroit american coney_island lafayette coney_island featured episodes travel_channel shows man v food food also_list greek restaurants references_category greek american_culture michigan category greek american cuisine_category greek restaurants_category hot_dog restaurants_category michigan culture_category_restaurants detroit category_types restaurants"},{"title":"Consumer import of prescription drugs","description":"consumer import of prescription drugs refers to an individual person typically a patient getting prescription drugs from a foreign country for their own personal use in their own country import mechanisms people might have drugshipped to them from online pharmacies they might do medical tourism to another country purchase drugs there then bring them home individual consumers will only consider seeking drugs from other countries if they have some barrier to access in their own country one barrier to access is high local prices when drug prices are lower elsewhere another barrier to access could be legal restrictions preventing an individual from getting a drug they want international drug market pricesome marketsethe price of drugs by the prices in other nearby markets for example in europeople freely and easily travel to different countries and the price of drugs in one country affects the price in other nearby countries having this kind of competitivexchange can keeprices low but it can also lead to less accessibility to drugsometimes a manufacturer may choose to not offer a drug to a poorer country because that couldisturb their attempto sell the drug at a higher price in a richer country as businesses manufacturers and sellers of drugs wish to control the supply of drugs in their own marketplace if somehow low cost drugs come into a market from lower cost markets then that forces price based selling the trips agreement is an example of a world trade organization treaty which regulates how drugs can be traded in the international marketplace some developing countries might get access to lower cost drugs through compulsory licenses compulsory licenses affect markets outside the country in which they are issued variation in legality drugs which are legal in one place may not be legal in another by region canada to united states people in the united states haveasy access to canada the quality of medicine in canada is comparable to that of the united states drug prices are often much lower in canada than in the united states to save money some consumers in the united stateseek to purchase drugs in canada different people have publishedifferent perspectives on this practice society and culture petition for government reform consumers may feel that prescription drugs which are available to multiple countries to be of equivalent quality and feel comfortable buying and using drugs by choosing to purchase from the country which offers the drugs athe lowest price legal status governments typically oversee the import of prescription drugso bringing a prescription drug from a foreign country could be illegal drug trade category drug pricing category medical tourism","main_words":["consumer","import","prescription","drugs","refers","individual","person","typically","patient","getting","prescription","drugs","foreign_country","personal","use","country","import","mechanisms","people","might","online","might","medical_tourism","another_country","purchase","drugs","bring","home","individual","consumers","consider","seeking","drugs","countries","barrier","access","country","one","barrier","access","high","local","prices","drug","prices","lower","elsewhere","another","barrier","access","could","legal","restrictions","preventing","individual","getting","drug","want","international","drug","market","price","drugs","prices","nearby","markets","example","freely","easily","travel","different_countries","price","drugs","one","country","affects","price","nearby","countries","kind","low","also","lead","less","accessibility","manufacturer","may","choose","offer","drug","poorer","country","attempto","sell","drug","higher","price","richer","country","businesses","manufacturers","sellers","drugs","wish","control","supply","drugs","marketplace","low_cost","drugs","come","market","lower_cost","markets","forces","price","based","selling","trips","agreement","example","world_trade","organization","treaty","regulates","drugs","traded","international","marketplace","developing_countries","might","get","access","lower_cost","drugs","compulsory","licenses","compulsory","licenses","affect","markets","outside","country","issued","variation","legality","drugs","legal","one","place","may","legal","another","region","canada","united_states","people","united_states","access","canada","quality","medicine","canada","comparable","united_states","drug","prices","often","much","lower","canada","united_states","save","money","consumers","united","purchase","drugs","canada","different","people","perspectives","practice","society","culture","petition","government","reform","consumers","may","feel","prescription","drugs","available","multiple","countries","equivalent","quality","feel","comfortable","buying","using","drugs","choosing","purchase","country","offers","drugs","athe","lowest","price","legal","status","governments","typically","oversee","import","prescription","bringing","prescription","drug","foreign_country","could","illegal_drug","trade","category","drug","pricing","category_medical","tourism"],"clean_bigrams":[["consumer","import"],["prescription","drugs"],["drugs","refers"],["individual","person"],["person","typically"],["patient","getting"],["getting","prescription"],["prescription","drugs"],["foreign","country"],["personal","use"],["country","import"],["import","mechanisms"],["mechanisms","people"],["people","might"],["medical","tourism"],["another","country"],["country","purchase"],["purchase","drugs"],["home","individual"],["individual","consumers"],["consider","seeking"],["seeking","drugs"],["country","one"],["one","barrier"],["high","local"],["local","prices"],["drug","prices"],["lower","elsewhere"],["elsewhere","another"],["another","barrier"],["access","could"],["legal","restrictions"],["restrictions","preventing"],["want","international"],["international","drug"],["drug","market"],["nearby","markets"],["easily","travel"],["different","countries"],["one","country"],["country","affects"],["nearby","countries"],["also","lead"],["less","accessibility"],["manufacturer","may"],["may","choose"],["poorer","country"],["attempto","sell"],["higher","price"],["richer","country"],["businesses","manufacturers"],["drugs","wish"],["low","cost"],["cost","drugs"],["drugs","come"],["lower","cost"],["cost","markets"],["forces","price"],["price","based"],["based","selling"],["trips","agreement"],["world","trade"],["trade","organization"],["organization","treaty"],["international","marketplace"],["developing","countries"],["countries","might"],["might","get"],["get","access"],["lower","cost"],["cost","drugs"],["compulsory","licenses"],["licenses","compulsory"],["compulsory","licenses"],["licenses","affect"],["affect","markets"],["markets","outside"],["issued","variation"],["legality","drugs"],["one","place"],["place","may"],["region","canada"],["united","states"],["states","people"],["united","states"],["united","states"],["states","drug"],["drug","prices"],["often","much"],["much","lower"],["united","states"],["save","money"],["purchase","drugs"],["canada","different"],["different","people"],["practice","society"],["culture","petition"],["government","reform"],["reform","consumers"],["consumers","may"],["may","feel"],["prescription","drugs"],["multiple","countries"],["equivalent","quality"],["feel","comfortable"],["comfortable","buying"],["using","drugs"],["drugs","athe"],["athe","lowest"],["lowest","price"],["price","legal"],["legal","status"],["status","governments"],["governments","typically"],["typically","oversee"],["prescription","drug"],["foreign","country"],["country","could"],["illegal","drug"],["drug","trade"],["trade","category"],["category","drug"],["drug","pricing"],["pricing","category"],["category","medical"],["medical","tourism"]],"all_collocations":["consumer import","prescription drugs","drugs refers","individual person","person typically","patient getting","getting prescription","prescription drugs","foreign country","personal use","country import","import mechanisms","mechanisms people","people might","medical tourism","another country","country purchase","purchase drugs","home individual","individual consumers","consider seeking","seeking drugs","country one","one barrier","high local","local prices","drug prices","lower elsewhere","elsewhere another","another barrier","access could","legal restrictions","restrictions preventing","want international","international drug","drug market","nearby markets","easily travel","different countries","one country","country affects","nearby countries","also lead","less accessibility","manufacturer may","may choose","poorer country","attempto sell","higher price","richer country","businesses manufacturers","drugs wish","low cost","cost drugs","drugs come","lower cost","cost markets","forces price","price based","based selling","trips agreement","world trade","trade organization","organization treaty","international marketplace","developing countries","countries might","might get","get access","lower cost","cost drugs","compulsory licenses","licenses compulsory","compulsory licenses","licenses affect","affect markets","markets outside","issued variation","legality drugs","one place","place may","region canada","united states","states people","united states","united states","states drug","drug prices","often much","much lower","united states","save money","purchase drugs","canada different","different people","practice society","culture petition","government reform","reform consumers","consumers may","may feel","prescription drugs","multiple countries","equivalent quality","feel comfortable","comfortable buying","using drugs","drugs athe","athe lowest","lowest price","price legal","legal status","status governments","governments typically","typically oversee","prescription drug","foreign country","country could","illegal drug","drug trade","trade category","category drug","drug pricing","pricing category","category medical","medical tourism"],"new_description":"consumer import prescription drugs refers individual person typically patient getting prescription drugs foreign_country personal use country import mechanisms people might online might medical_tourism another_country purchase drugs bring home individual consumers consider seeking drugs countries barrier access country one barrier access high local prices drug prices lower elsewhere another barrier access could legal restrictions preventing individual getting drug want international drug market price drugs prices nearby markets example freely easily travel different_countries price drugs one country affects price nearby countries kind low also lead less accessibility manufacturer may choose offer drug poorer country attempto sell drug higher price richer country businesses manufacturers sellers drugs wish control supply drugs marketplace low_cost drugs come market lower_cost markets forces price based selling trips agreement example world_trade organization treaty regulates drugs traded international marketplace developing_countries might get access lower_cost drugs compulsory licenses compulsory licenses affect markets outside country issued variation legality drugs legal one place may legal another region canada united_states people united_states access canada quality medicine canada comparable united_states drug prices often much lower canada united_states save money consumers united purchase drugs canada different people perspectives practice society culture petition government reform consumers may feel prescription drugs available multiple countries equivalent quality feel comfortable buying using drugs choosing purchase country offers drugs athe lowest price legal status governments typically oversee import prescription bringing prescription drug foreign_country could illegal_drug trade category drug pricing category_medical tourism"},{"title":"Cook's Travellers Handbooks","description":"image cooks handbook to norway andenmark coverpng thumb right cook s handbook to norway andenmark cook s travellers handbooks were a series of travel guide book s for tourists published in the th centuries by thomas cook son of london the firm s founder thomas cook produced his first handbook to england the s later expanding to europe near east north africand beyond compared with other guidesuch as murray s handbooks for travellers murray s cook s aimed at a broader and lessophisticated middle class audience the bookserved to advertise cook s larger business of organizing travel tours the series continues today as traveller guides issued by thomas cook publishing of peterborough england list of cook s travel guides by geographicoveraged cook s guide to paris ed great britain reprint ed ed ed ed new zealand ed north africa index ed index ed cook s handbook to scandinavia sweden index ed ed index see also thomas cook european timetablexternalinks worldcathomas cook touring handbooks category travel guide books category series of books category publications established in the s","main_words":["image","cooks","handbook","norway","andenmark","coverpng_thumb","right","cook","handbook","norway","andenmark","cook","travellers","handbooks","series","travel_guide_book","tourists","published","th_centuries","thomas_cook_son","london","firm","founder","thomas_cook","produced","first","handbook","england","later","expanding","europe","near","east","north","africand","beyond","compared","guidesuch","murray","handbooks","travellers","murray","cook","aimed","broader","middle_class","audience","advertise","cook","larger","business","organizing","travel","tours","series","continues","today","traveller","guides","issued","thomas_cook","publishing","peterborough","england","list","cook","travel_guides","cook","guide","paris","ed","great_britain","ed","ed","ed","ed","new_zealand","ed","north","africa","index_ed","index_ed","cook","handbook","scandinavia","sweden","index_ed","thomas_cook_european","cook","touring","handbooks","category_travel_guide_books","category_series","books_category","publications_established"],"clean_bigrams":[["image","cooks"],["cooks","handbook"],["norway","andenmark"],["andenmark","coverpng"],["coverpng","thumb"],["thumb","right"],["right","cook"],["norway","andenmark"],["andenmark","cook"],["travellers","handbooks"],["travel","guide"],["guide","book"],["tourists","published"],["th","centuries"],["thomas","cook"],["cook","son"],["founder","thomas"],["thomas","cook"],["cook","produced"],["first","handbook"],["later","expanding"],["europe","near"],["near","east"],["east","north"],["north","africand"],["africand","beyond"],["beyond","compared"],["travellers","murray"],["middle","class"],["class","audience"],["advertise","cook"],["larger","business"],["organizing","travel"],["travel","tours"],["series","continues"],["continues","today"],["traveller","guides"],["guides","issued"],["thomas","cook"],["cook","publishing"],["peterborough","england"],["england","list"],["travel","guides"],["paris","ed"],["ed","great"],["great","britain"],["ed","ed"],["ed","ed"],["ed","ed"],["ed","new"],["new","zealand"],["zealand","ed"],["ed","north"],["north","africa"],["africa","index"],["index","ed"],["ed","index"],["index","ed"],["ed","cook"],["scandinavia","sweden"],["sweden","index"],["index","ed"],["ed","ed"],["ed","index"],["index","see"],["see","also"],["also","thomas"],["thomas","cook"],["cook","european"],["cook","touring"],["touring","handbooks"],["handbooks","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"]],"all_collocations":["image cooks","cooks handbook","norway andenmark","andenmark coverpng","coverpng thumb","right cook","norway andenmark","andenmark cook","travellers handbooks","travel guide","guide book","tourists published","th centuries","thomas cook","cook son","founder thomas","thomas cook","cook produced","first handbook","later expanding","europe near","near east","east north","north africand","africand beyond","beyond compared","travellers murray","middle class","class audience","advertise cook","larger business","organizing travel","travel tours","series continues","continues today","traveller guides","guides issued","thomas cook","cook publishing","peterborough england","england list","travel guides","paris ed","ed great","great britain","ed ed","ed ed","ed ed","ed new","new zealand","zealand ed","ed north","north africa","africa index","index ed","ed index","index ed","ed cook","scandinavia sweden","sweden index","index ed","ed ed","ed index","index see","see also","also thomas","thomas cook","cook european","cook touring","touring handbooks","handbooks category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established"],"new_description":"image cooks handbook norway andenmark coverpng_thumb right cook handbook norway andenmark cook travellers handbooks series travel_guide_book tourists published th_centuries thomas_cook_son london firm founder thomas_cook produced first handbook england later expanding europe near east north africand beyond compared guidesuch murray handbooks travellers murray cook aimed broader middle_class audience advertise cook larger business organizing travel tours series continues today traveller guides issued thomas_cook publishing peterborough england list cook travel_guides cook guide paris ed great_britain ed ed ed ed new_zealand ed north africa index_ed index_ed cook handbook scandinavia sweden index_ed ed_index_see_also thomas_cook_european cook touring handbooks category_travel_guide_books category_series books_category publications_established"},{"title":"Cosmopolis XXI","description":"cosmopolis xxi was a late s russian concept launch vehicle billed as a space tourism vehicle similar to mojave aerospace scaled composites tier one tier one program designed and built by the myasishchev design bureau it would use the m x launch aircraft derived fromyasishchev m and the proposed c spaceplane or itsuccessor thexplorer it would be a tstso two stage to suborbit launch platform thexplorer spaceplane is a suborbital tourist spaceplane based on the c design the plane is being developed by space adventures withe russian federal space agency and is designed to carry passengers it is to be air launched by carrier aircraft from a space adventurespaceporthe spaceport for thexplorer is being developed with prodea the company of anousheh ansari anousheh and amir ansari who funded the ansari x prize in the united arab emirates the ras al khaimah spaceport referencespacecom suborbital rocketship fleeto carry touristspaceward in style february externalinkspace tourism pioneerspace adventures and the ansari x prize title sponsors to provide first suborbital spaceflightourism vehiclespaceadventures new group to developassenger spaceship msnbc spacecraft at space adventures category myasishchev aircraft category human spaceflight programs category space adventures category space tourism","main_words":["late","russian","concept","launch_vehicle","billed","space_tourism","vehicle","similar","mojave","aerospace","scaled_composites","tier_one","tier_one","program","designed","built","design","bureau","would","use","x","launch","aircraft","derived","proposed","c","spaceplane","thexplorer","would","two_stage","launch","platform","thexplorer","spaceplane","suborbital","tourist","spaceplane","based","c","design","plane","developed","space_adventures","withe","russian","federal","space_agency","designed","carry","passengers","air_launched","carrier_aircraft","space","spaceport","thexplorer","developed","company","anousheh","ansari","anousheh","ansari","funded","ansari_x_prize","united_arab_emirates","spaceport","suborbital","rocketship","carry","style","february","tourism","adventures","ansari_x_prize","title","sponsors","provide","first","suborbital","new","group","spaceship","msnbc","spacecraft","space_adventures","human_spaceflight","programs","category_space","adventures","category_space_tourism"],"clean_bigrams":[["russian","concept"],["concept","launch"],["launch","vehicle"],["vehicle","billed"],["space","tourism"],["tourism","vehicle"],["vehicle","similar"],["mojave","aerospace"],["aerospace","scaled"],["scaled","composites"],["composites","tier"],["tier","one"],["one","tier"],["tier","one"],["one","program"],["program","designed"],["design","bureau"],["would","use"],["x","launch"],["launch","aircraft"],["aircraft","derived"],["proposed","c"],["c","spaceplane"],["two","stage"],["launch","platform"],["platform","thexplorer"],["thexplorer","spaceplane"],["suborbital","tourist"],["tourist","spaceplane"],["spaceplane","based"],["c","design"],["space","adventures"],["adventures","withe"],["withe","russian"],["russian","federal"],["federal","space"],["space","agency"],["carry","passengers"],["air","launched"],["carrier","aircraft"],["anousheh","ansari"],["ansari","anousheh"],["anousheh","ansari"],["ansari","x"],["x","prize"],["united","arab"],["arab","emirates"],["suborbital","rocketship"],["style","february"],["ansari","x"],["x","prize"],["prize","title"],["title","sponsors"],["provide","first"],["first","suborbital"],["new","group"],["spaceship","msnbc"],["msnbc","spacecraft"],["space","adventures"],["adventures","category"],["aircraft","category"],["category","human"],["human","spaceflight"],["spaceflight","programs"],["programs","category"],["category","space"],["space","adventures"],["adventures","category"],["category","space"],["space","tourism"]],"all_collocations":["russian concept","concept launch","launch vehicle","vehicle billed","space tourism","tourism vehicle","vehicle similar","mojave aerospace","aerospace scaled","scaled composites","composites tier","tier one","one tier","tier one","one program","program designed","design bureau","would use","x launch","launch aircraft","aircraft derived","proposed c","c spaceplane","two stage","launch platform","platform thexplorer","thexplorer spaceplane","suborbital tourist","tourist spaceplane","spaceplane based","c design","space adventures","adventures withe","withe russian","russian federal","federal space","space agency","carry passengers","air launched","carrier aircraft","anousheh ansari","ansari anousheh","anousheh ansari","ansari x","x prize","united arab","arab emirates","suborbital rocketship","style february","ansari x","x prize","prize title","title sponsors","provide first","first suborbital","new group","spaceship msnbc","msnbc spacecraft","space adventures","adventures category","aircraft category","category human","human spaceflight","spaceflight programs","programs category","category space","space adventures","adventures category","category space","space tourism"],"new_description":"late russian concept launch_vehicle billed space_tourism vehicle similar mojave aerospace scaled_composites tier_one tier_one program designed built design bureau would use x launch aircraft derived proposed c spaceplane thexplorer would two_stage launch platform thexplorer spaceplane suborbital tourist spaceplane based c design plane developed space_adventures withe russian federal space_agency designed carry passengers air_launched carrier_aircraft space spaceport thexplorer developed company anousheh ansari anousheh ansari funded ansari_x_prize united_arab_emirates spaceport suborbital rocketship carry style february tourism adventures ansari_x_prize title sponsors provide first suborbital new group spaceship msnbc spacecraft space_adventures category_aircraft_category human_spaceflight programs category_space adventures category_space_tourism"},{"title":"Cosplay restaurant","description":"file akihabara maids jpg thumb maids promoting cafes in akihabara tokyo are theme restaurant s and pubs that originated in akihabara tokyo japan around the year they include and where the service staff dress as elegant maid s or as butlersuch restaurants and caf s have quickly become a staple of japanese otaku culture compared with service at normal coffeehouse caf s the service at cosplay caf s involves the creation of a rather different atmosphere the staff treathe customers as master form of address masters and mistress form of address mistresses in a private home rather than merely as caf customers the popularity of cosplay restaurants and maid cafes haspread totheregions in japan such as osaka s den town as well as to places outside japan such as hong kong taiwan singapore mexico canadand the philippines maid caf in a standard maid cafe the femalemployees dress up as french maid s occasionally the maids may wearabbit or cat ears for extra kawaii cute appeal and refer to the customers as either or upon entering one of such stores the customer is greeted withe customary offered a oshibori wipe towel and shown a foodrink menu popular dishes include cake sometimes baked by the maids themselves ice cream ice cream omurice spaghetti as well as drinksuch as coca cola tea milk or alcoholic beveragesuch as beer or in some cases even champagne other options of service include taking instant camera polaroid pictures either of the maid alone together with another maid or withe customer which are then decorated using colored marker pen markers or stickers playing card video games and or even slightly more unusual onesuch as being slapped by one or more of the maids therexists a wide range of establishments catering to specific tastes and offering different services to customers in other stores the outfits and even the setting itself change in school themed cafes for example customers areferred to asenpainstead of master or mistress inside regular tables areplaced by school desks and even the menu iserved in trays reminiscent of the ones used in elementary schools in japanese schools other themes include or cafes izakaya recently withe maid cafe scene booming additional related services have become popular these include a foot or hand massage photography sessions the customer typically rents time in a studio during whiche can tell a maid which costume to wear and how to pose or even dates with maids butler caf while most cosplay restaurants and maid cafes cater mostly to men there is also a type for women called the butler s in these cafes are well dressed malemployees and may wear either a typical waiter s uniform or even a tuxedo clothing tuxedor tails full scale butler cafe opens doors in akihabara district mainichi daily news retrieved april one butler cafe has its waiters cosplay as teenage schoolboys in an efforto appeal to the fujoshi who enjoy boys love there are also cross dressing butler cafes where female staff dress up as butlers instead of actual men withe popularity of maid cafes a number of other businesses have followed within akihabaralone can find severalegitimate massage parlors a maid eyeglasstore and at least one cosplay maid izakaya north america one maid cafe which opened in the west was the i maid cafe located in scarborough toronto scarborough ontario and was featured in cbc television cbc s newsmagazine the hour canadian tv series the hour the cafe was closed inovember because management failed to pay back rent in decemberoyal t opened in culver city californiand has been featured in several magazinesuch as elle magazinelle and the la times it is a combination of maid cafe store and art gallery the restaurant closed after five years in september a japanese franchise crepe house uni opened in davis california but closed in their workers wore maid uniforms but it was not exactly a maid cafe in a maid cafe called chou anime opened up in the midtown district of detroit michigan information abouthe cafe can be seen on their website chou anime was officially closed on saturday september due to not seeing a steady flow of customers in august maid cafe ny opened inew york city new york while also serving food the store alsoffers various cosplay items for sale and live music entertainment see also maid in akihabara short japanese television drama cosplay externalinks maid cafe database category cosplay category japanese culture category japanese popular culture category restaurants in japan category types of coffeehouses category theme restaurants category akihabara category types of restaurants","main_words":["file","akihabara","maids","jpg","thumb","maids","promoting","cafes","akihabara","tokyo","theme","restaurant","pubs","originated","akihabara","tokyo_japan","around","year","include","service","staff","dress","elegant","maid","restaurants","caf","quickly","become","staple","japanese","culture","compared","service","normal","coffeehouse","caf","service","cosplay","caf","involves","creation","rather","different","atmosphere","staff","customers","master","form","address","masters","form","address","private","home","rather","merely","caf","customers","popularity","cosplay","restaurants","maid","cafes","haspread","japan","osaka","den","town","well","places","outside","japan","hong_kong","taiwan","singapore","mexico","canadand","philippines","maid","caf","standard","maid","cafe","dress","french","maid","occasionally","maids","may","cat","ears","extra","appeal","refer","customers","either","upon","entering","one","stores","customer","greeted","withe","customary","offered","towel","shown","menu","popular","dishes","include","cake","sometimes","baked","maids","ice_cream","ice_cream","well","coca","cola","tea","milk","alcoholic_beveragesuch","beer","cases","even","options","service","include","taking","instant","camera","pictures","either","maid","alone","together","another","maid","withe","customer","decorated","using","colored","marker","pen","markers","playing","card","video_games","even","slightly","unusual","one","maids","wide_range","establishments","catering","specific","tastes","offering","different","services","customers","stores","even","setting","change","school","themed","cafes","example","customers","areferred","master","inside","regular","tables","school","even","menu","iserved","trays","ones","used","elementary_schools","japanese","schools","themes","include","cafes","izakaya","recently","withe","maid","cafe","scene","booming","additional","related","services","become_popular","include","foot","hand","massage","photography","sessions","customer","typically","time","studio","whiche","tell","maid","costume","wear","pose","even","dates","maids","butler","caf","cosplay","restaurants","maid","cafes","cater","mostly","men","also","type","women","called","butler","cafes","well","dressed","may","wear","either","typical","waiter","uniform","even","clothing","tails","full_scale","butler","cafe","opens","doors","akihabara","district","daily_news","retrieved_april","one","butler","cafe","waiters","cosplay","teenage","efforto","appeal","enjoy","boys","love","also","cross","dressing","butler","cafes","female","staff","dress","butlers","instead","actual","men","withe","popularity","maid","cafes","number","businesses","followed","within","find","massage","parlors","maid","least_one","cosplay","maid","izakaya","north_america","one","maid","cafe","opened","west","maid","cafe","located","scarborough","toronto","scarborough","ontario","featured","cbc","television","cbc","hour","canadian","tv_series","hour","cafe","closed","inovember","management","failed","pay","back","rent","opened","city","californiand","featured","several","la","times","combination","maid","cafe","store","art","gallery","restaurant","closed","five_years","september","japanese","franchise","house","opened","davis","california","closed","workers","wore","maid","uniforms","exactly","maid","cafe","maid","cafe","called","anime","opened","midtown","district","detroit","michigan","information_abouthe","cafe","seen","website","anime","officially","closed","saturday","september","due","seeing","steady","flow","customers","august","maid","cafe","opened","inew_york_city","new_york","also","serving","food","store","alsoffers","various","cosplay","items","sale","live_music","entertainment","see_also","maid","akihabara","short","japanese","television","drama","cosplay","externalinks","maid","cafe","database","category","cosplay","category_japanese","culture_category","japanese","coffeehouses","akihabara","category_types","restaurants"],"clean_bigrams":[["file","akihabara"],["akihabara","maids"],["maids","jpg"],["jpg","thumb"],["thumb","maids"],["maids","promoting"],["promoting","cafes"],["akihabara","tokyo"],["theme","restaurant"],["akihabara","tokyo"],["tokyo","japan"],["japan","around"],["service","staff"],["staff","dress"],["elegant","maid"],["quickly","become"],["japanese","culture"],["culture","compared"],["normal","coffeehouse"],["coffeehouse","caf"],["cosplay","caf"],["rather","different"],["different","atmosphere"],["master","form"],["address","masters"],["private","home"],["home","rather"],["caf","customers"],["cosplay","restaurants"],["maid","cafes"],["cafes","haspread"],["den","town"],["places","outside"],["outside","japan"],["hong","kong"],["kong","taiwan"],["taiwan","singapore"],["singapore","mexico"],["mexico","canadand"],["philippines","maid"],["maid","caf"],["standard","maid"],["maid","cafe"],["french","maid"],["maids","may"],["cat","ears"],["upon","entering"],["entering","one"],["greeted","withe"],["withe","customary"],["customary","offered"],["menu","popular"],["popular","dishes"],["dishes","include"],["include","cake"],["cake","sometimes"],["sometimes","baked"],["ice","cream"],["cream","ice"],["ice","cream"],["coca","cola"],["cola","tea"],["tea","milk"],["alcoholic","beveragesuch"],["cases","even"],["service","include"],["include","taking"],["taking","instant"],["instant","camera"],["pictures","either"],["maid","alone"],["alone","together"],["another","maid"],["withe","customer"],["decorated","using"],["using","colored"],["colored","marker"],["marker","pen"],["pen","markers"],["playing","card"],["card","video"],["video","games"],["even","slightly"],["wide","range"],["establishments","catering"],["specific","tastes"],["offering","different"],["different","services"],["school","themed"],["themed","cafes"],["example","customers"],["customers","areferred"],["inside","regular"],["regular","tables"],["menu","iserved"],["ones","used"],["elementary","schools"],["japanese","schools"],["themes","include"],["cafes","izakaya"],["izakaya","recently"],["recently","withe"],["withe","maid"],["maid","cafe"],["cafe","scene"],["scene","booming"],["booming","additional"],["additional","related"],["related","services"],["become","popular"],["hand","massage"],["massage","photography"],["photography","sessions"],["customer","typically"],["even","dates"],["maids","butler"],["butler","caf"],["cosplay","restaurants"],["maid","cafes"],["cafes","cater"],["cater","mostly"],["women","called"],["butler","cafes"],["well","dressed"],["may","wear"],["wear","either"],["typical","waiter"],["tails","full"],["full","scale"],["scale","butler"],["butler","cafe"],["cafe","opens"],["opens","doors"],["akihabara","district"],["daily","news"],["news","retrieved"],["retrieved","april"],["april","one"],["one","butler"],["butler","cafe"],["waiters","cosplay"],["efforto","appeal"],["enjoy","boys"],["boys","love"],["also","cross"],["cross","dressing"],["dressing","butler"],["butler","cafes"],["female","staff"],["staff","dress"],["butlers","instead"],["actual","men"],["men","withe"],["withe","popularity"],["maid","cafes"],["followed","within"],["massage","parlors"],["least","one"],["one","cosplay"],["cosplay","maid"],["maid","izakaya"],["izakaya","north"],["north","america"],["america","one"],["one","maid"],["maid","cafe"],["maid","cafe"],["cafe","located"],["scarborough","toronto"],["toronto","scarborough"],["scarborough","ontario"],["cbc","television"],["television","cbc"],["hour","canadian"],["canadian","tv"],["tv","series"],["closed","inovember"],["management","failed"],["pay","back"],["back","rent"],["city","californiand"],["la","times"],["maid","cafe"],["cafe","store"],["art","gallery"],["restaurant","closed"],["five","years"],["japanese","franchise"],["davis","california"],["workers","wore"],["wore","maid"],["maid","uniforms"],["maid","cafe"],["maid","cafe"],["cafe","called"],["anime","opened"],["midtown","district"],["detroit","michigan"],["michigan","information"],["information","abouthe"],["abouthe","cafe"],["officially","closed"],["saturday","september"],["september","due"],["steady","flow"],["august","maid"],["maid","cafe"],["opened","inew"],["inew","york"],["york","city"],["city","new"],["new","york"],["also","serving"],["serving","food"],["store","alsoffers"],["alsoffers","various"],["various","cosplay"],["cosplay","items"],["live","music"],["music","entertainment"],["entertainment","see"],["see","also"],["also","maid"],["akihabara","short"],["short","japanese"],["japanese","television"],["television","drama"],["drama","cosplay"],["cosplay","externalinks"],["externalinks","maid"],["maid","cafe"],["cafe","database"],["database","category"],["category","cosplay"],["cosplay","category"],["category","japanese"],["japanese","culture"],["culture","category"],["category","japanese"],["japanese","popular"],["popular","culture"],["culture","category"],["category","restaurants"],["japan","category"],["category","types"],["coffeehouses","category"],["category","theme"],["theme","restaurants"],["restaurants","category"],["category","akihabara"],["akihabara","category"],["category","types"]],"all_collocations":["file akihabara","akihabara maids","maids jpg","thumb maids","maids promoting","promoting cafes","akihabara tokyo","theme restaurant","akihabara tokyo","tokyo japan","japan around","service staff","staff dress","elegant maid","quickly become","japanese culture","culture compared","normal coffeehouse","coffeehouse caf","cosplay caf","rather different","different atmosphere","master form","address masters","private home","home rather","caf customers","cosplay restaurants","maid cafes","cafes haspread","den town","places outside","outside japan","hong kong","kong taiwan","taiwan singapore","singapore mexico","mexico canadand","philippines maid","maid caf","standard maid","maid cafe","french maid","maids may","cat ears","upon entering","entering one","greeted withe","withe customary","customary offered","menu popular","popular dishes","dishes include","include cake","cake sometimes","sometimes baked","ice cream","cream ice","ice cream","coca cola","cola tea","tea milk","alcoholic beveragesuch","cases even","service include","include taking","taking instant","instant camera","pictures either","maid alone","alone together","another maid","withe customer","decorated using","using colored","colored marker","marker pen","pen markers","playing card","card video","video games","even slightly","wide range","establishments catering","specific tastes","offering different","different services","school themed","themed cafes","example customers","customers areferred","inside regular","regular tables","menu iserved","ones used","elementary schools","japanese schools","themes include","cafes izakaya","izakaya recently","recently withe","withe maid","maid cafe","cafe scene","scene booming","booming additional","additional related","related services","become popular","hand massage","massage photography","photography sessions","customer typically","even dates","maids butler","butler caf","cosplay restaurants","maid cafes","cafes cater","cater mostly","women called","butler cafes","well dressed","may wear","wear either","typical waiter","tails full","full scale","scale butler","butler cafe","cafe opens","opens doors","akihabara district","daily news","news retrieved","retrieved april","april one","one butler","butler cafe","waiters cosplay","efforto appeal","enjoy boys","boys love","also cross","cross dressing","dressing butler","butler cafes","female staff","staff dress","butlers instead","actual men","men withe","withe popularity","maid cafes","followed within","massage parlors","least one","one cosplay","cosplay maid","maid izakaya","izakaya north","north america","america one","one maid","maid cafe","maid cafe","cafe located","scarborough toronto","toronto scarborough","scarborough ontario","cbc television","television cbc","hour canadian","canadian tv","tv series","closed inovember","management failed","pay back","back rent","city californiand","la times","maid cafe","cafe store","art gallery","restaurant closed","five years","japanese franchise","davis california","workers wore","wore maid","maid uniforms","maid cafe","maid cafe","cafe called","anime opened","midtown district","detroit michigan","michigan information","information abouthe","abouthe cafe","officially closed","saturday september","september due","steady flow","august maid","maid cafe","opened inew","inew york","york city","city new","new york","also serving","serving food","store alsoffers","alsoffers various","various cosplay","cosplay items","live music","music entertainment","entertainment see","see also","also maid","akihabara short","short japanese","japanese television","television drama","drama cosplay","cosplay externalinks","externalinks maid","maid cafe","cafe database","database category","category cosplay","cosplay category","category japanese","japanese culture","culture category","category japanese","japanese popular","popular culture","culture category","category restaurants","japan category","category types","coffeehouses category","category theme","theme restaurants","restaurants category","category akihabara","akihabara category","category types"],"new_description":"file akihabara maids jpg thumb maids promoting cafes akihabara tokyo theme restaurant pubs originated akihabara tokyo_japan around year include service staff dress elegant maid restaurants caf quickly become staple japanese culture compared service normal coffeehouse caf service cosplay caf involves creation rather different atmosphere staff customers master form address masters form address private home rather merely caf customers popularity cosplay restaurants maid cafes haspread japan osaka den town well places outside japan hong_kong taiwan singapore mexico canadand philippines maid caf standard maid cafe dress french maid occasionally maids may cat ears extra appeal refer customers either upon entering one stores customer greeted withe customary offered towel shown menu popular dishes include cake sometimes baked maids ice_cream ice_cream well drinksuch coca cola tea milk alcoholic_beveragesuch beer cases even options service include taking instant camera pictures either maid alone together another maid withe customer decorated using colored marker pen markers playing card video_games even slightly unusual one maids wide_range establishments catering specific tastes offering different services customers stores even setting change school themed cafes example customers areferred master inside regular tables school even menu iserved trays ones used elementary_schools japanese schools themes include cafes izakaya recently withe maid cafe scene booming additional related services become_popular include foot hand massage photography sessions customer typically time studio whiche tell maid costume wear pose even dates maids butler caf cosplay restaurants maid cafes cater mostly men also type women called butler cafes well dressed may wear either typical waiter uniform even clothing tails full_scale butler cafe opens doors akihabara district daily_news retrieved_april one butler cafe waiters cosplay teenage efforto appeal enjoy boys love also cross dressing butler cafes female staff dress butlers instead actual men withe popularity maid cafes number businesses followed within find massage parlors maid least_one cosplay maid izakaya north_america one maid cafe opened west maid cafe located scarborough toronto scarborough ontario featured cbc television cbc hour canadian tv_series hour cafe closed inovember management failed pay back rent opened city californiand featured several la times combination maid cafe store art gallery restaurant closed five_years september japanese franchise house opened davis california closed workers wore maid uniforms exactly maid cafe maid cafe called anime opened midtown district detroit michigan information_abouthe cafe seen website anime officially closed saturday september due seeing steady flow customers august maid cafe opened inew_york_city new_york also serving food store alsoffers various cosplay items sale live_music entertainment see_also maid akihabara short japanese television drama cosplay externalinks maid cafe database category cosplay category_japanese culture_category japanese popular_culture_category_restaurants japan_category_types coffeehouses category_theme_restaurants_category akihabara category_types restaurants"},{"title":"Costa Rica Traveler","description":"costa rica traveler is a complimentary bilingual english and spanish travel magazine that focuses on costa rica s natural and cultural wonders the bimonthly print magazine and website feature travel and cultural information the country the company was founded in by andr s madrigal and peter majerle since madrigal is a photographer and graphic design er majerle is a writer and translator and both are avid travelers the duo decided to combine talents and publish a travel magazine thus costa rica traveler was born the first magazine which was written in english only was published in since then the magazine has developed into a well known source if information for people who wanto get independenthoughts on whato do where to stay and whato see in costa rica editorial direction each edition of cr traveler contains information about costa rica s diverse landscape s cultures and peoples they alsoffer guides to the country s museums beaches volcano es and more additionally the tropicaliving section provides insight into buying property and living in costa rica thisection covers real estate art design architecture local culture and much more the magazine also has an international traveler section which takes readers to a new corner of the planet with each issue articles focus on thessence of top worldestinations as well as offer tips to make a trip go more smoothly the magazine offers active narratives accurate journalism reporting modern design and photographs that show the visitor whathey can expect when visiting the different areas nexto the printed magazine costa rica traveler also has a website the website offers all of the magazine s accumulated articles on the web visitors can check out current issues watch the galleries oread the blog where they can find news on costa rica tour and hotel reviews and other information that are from interest externalinks category costa rican magazines category magazinestablished in category spanish language magazines category tourismagazines category bi monthly magazines category local interest magazines","main_words":["costa","rica","traveler","complimentary","bilingual","english","spanish","travel_magazine","focuses","costa_rica","natural","cultural","wonders","bimonthly","print","magazine","website","feature","travel","cultural","information","country","company","founded","andr","madrigal","peter","since","madrigal","photographer","graphic","design","writer","translator","avid","travelers","duo","decided","combine","talents","publish","travel_magazine","thus","costa_rica","traveler","born","first","magazine","written","english","published","since","magazine","developed","well_known","source","information","people","wanto","get","whato","stay","whato","see","costa_rica","editorial","direction","edition","traveler","contains","information","costa_rica","diverse","landscape","cultures","peoples","alsoffer","guides","country","museums","beaches","volcano","additionally","section","provides","insight","buying","property","living","costa_rica","thisection","covers","real_estate","art","design","architecture","local_culture","much","magazine","also","section","takes","readers","new","corner","planet","issue","articles","focus","thessence","top","well","offer","tips","make","trip","go","smoothly","magazine","offers","active","narratives","accurate","journalism","reporting","modern","design","photographs","show","visitor","whathey","expect","visiting","different","areas","nexto","printed","magazine","costa_rica","traveler","also","website","website","offers","magazine","accumulated","articles","web","visitors","check","current","issues","watch","galleries","blog","find","news","costa_rica","tour","hotel","reviews","information","interest","externalinks_category","costa","magazines_category_magazinestablished","category","category_tourismagazines","category"],"clean_bigrams":[["costa","rica"],["rica","traveler"],["complimentary","bilingual"],["bilingual","english"],["spanish","travel"],["travel","magazine"],["costa","rica"],["cultural","wonders"],["bimonthly","print"],["print","magazine"],["website","feature"],["feature","travel"],["cultural","information"],["since","madrigal"],["graphic","design"],["avid","travelers"],["duo","decided"],["combine","talents"],["travel","magazine"],["magazine","thus"],["thus","costa"],["costa","rica"],["rica","traveler"],["first","magazine"],["well","known"],["known","source"],["wanto","get"],["whato","see"],["costa","rica"],["rica","editorial"],["editorial","direction"],["traveler","contains"],["contains","information"],["costa","rica"],["diverse","landscape"],["alsoffer","guides"],["museums","beaches"],["beaches","volcano"],["section","provides"],["provides","insight"],["buying","property"],["costa","rica"],["rica","thisection"],["thisection","covers"],["covers","real"],["real","estate"],["estate","art"],["art","design"],["design","architecture"],["architecture","local"],["local","culture"],["magazine","also"],["international","traveler"],["traveler","section"],["takes","readers"],["new","corner"],["issue","articles"],["articles","focus"],["offer","tips"],["trip","go"],["magazine","offers"],["offers","active"],["active","narratives"],["narratives","accurate"],["accurate","journalism"],["journalism","reporting"],["reporting","modern"],["modern","design"],["visitor","whathey"],["different","areas"],["areas","nexto"],["printed","magazine"],["magazine","costa"],["costa","rica"],["rica","traveler"],["traveler","also"],["website","offers"],["accumulated","articles"],["web","visitors"],["current","issues"],["issues","watch"],["find","news"],["costa","rica"],["rica","tour"],["hotel","reviews"],["interest","externalinks"],["externalinks","category"],["category","costa"],["magazines","category"],["category","magazinestablished"],["category","spanish"],["spanish","language"],["language","magazines"],["magazines","category"],["category","tourismagazines"],["tourismagazines","category"],["monthly","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"]],"all_collocations":["costa rica","rica traveler","complimentary bilingual","bilingual english","spanish travel","travel magazine","costa rica","cultural wonders","bimonthly print","print magazine","website feature","feature travel","cultural information","since madrigal","graphic design","avid travelers","duo decided","combine talents","travel magazine","magazine thus","thus costa","costa rica","rica traveler","first magazine","well known","known source","wanto get","whato see","costa rica","rica editorial","editorial direction","traveler contains","contains information","costa rica","diverse landscape","alsoffer guides","museums beaches","beaches volcano","section provides","provides insight","buying property","costa rica","rica thisection","thisection covers","covers real","real estate","estate art","art design","design architecture","architecture local","local culture","magazine also","international traveler","traveler section","takes readers","new corner","issue articles","articles focus","offer tips","trip go","magazine offers","offers active","active narratives","narratives accurate","accurate journalism","journalism reporting","reporting modern","modern design","visitor whathey","different areas","areas nexto","printed magazine","magazine costa","costa rica","rica traveler","traveler also","website offers","accumulated articles","web visitors","current issues","issues watch","find news","costa rica","rica tour","hotel reviews","interest externalinks","externalinks category","category costa","magazines category","category magazinestablished","category spanish","spanish language","language magazines","magazines category","category tourismagazines","tourismagazines category","monthly magazines","magazines category","category local","local interest","interest magazines"],"new_description":"costa rica traveler complimentary bilingual english spanish travel_magazine focuses costa_rica natural cultural wonders bimonthly print magazine website feature travel cultural information country company founded andr madrigal peter since madrigal photographer graphic design writer translator avid travelers duo decided combine talents publish travel_magazine thus costa_rica traveler born first magazine written english published since magazine developed well_known source information people wanto get whato stay whato see costa_rica editorial direction edition traveler contains information costa_rica diverse landscape cultures peoples alsoffer guides country museums beaches volcano additionally section provides insight buying property living costa_rica thisection covers real_estate art design architecture local_culture much magazine also international_traveler section takes readers new corner planet issue articles focus thessence top well offer tips make trip go smoothly magazine offers active narratives accurate journalism reporting modern design photographs show visitor whathey expect visiting different areas nexto printed magazine costa_rica traveler also website website offers magazine accumulated articles web visitors check current issues watch galleries blog find news costa_rica tour hotel reviews information interest externalinks_category costa magazines_category_magazinestablished category spanish_language_magazines category_tourismagazines category monthly_magazines_category_local_interest_magazines"},{"title":"Counter service","description":"redirect foodservice counter service category restauranterminology","main_words":["redirect","foodservice","counter","service","category_restauranterminology"],"clean_bigrams":[["redirect","foodservice"],["foodservice","counter"],["counter","service"],["service","category"],["category","restauranterminology"]],"all_collocations":["redirect foodservice","foodservice counter","counter service","service category","category restauranterminology"],"new_description":"redirect foodservice counter service category_restauranterminology"},{"title":"Cover charge","description":"image doormanjpg thumbouncer doorman clubouncer s are sometimes responsible for collecting a cover charge a cover charge is an entrance fee sometimes charged at bar establishment bar s nightclub s orestaurant s the american heritage dictionary defines it as a fixed amount added to the bill at a nightclub orestaurant for entertainment or service cover charge the american heritage dictionary of thenglish language fourth edition copyright by houghton mifflin company updated in published by houghton mifflin company in restaurants cover charges or couvert charges generally do not include the cost ofood that ispecifically ordered but in somestablishments they do include the cost of bread butter olives and other accompaniments which are provided as a matter of course file hk central city hallower block chinese restaurantable setting oct jpg thumb right px when a group of people sit at a table in a restaurant some restaurants will charge a feeven for a guest who does not order any food this charge is for the service of setting outhe tablecloth napkin and cutlery the oxford english dictionary defines a cover charge as a charge for service added to the basicharge in a restaurant oed entry for cover charge such a charge is made in many countries usually described by the word equivalento cover couvert coperto example of use of coperto in italian cubierto from concise oxford spanish dictionary cubierto in restaurant cover chargetc a place setting at a restaurant in english and in other languages is often referred to as a cover oed meaning of cover the utensils laid for each person s use atable the plate napkin knife fork spoon etc newnham davis dinners diners ch collected from an earlier article in the pall mall gazette this the menu for a dinner of six covers a very admirable dinner or equivalenterm in other languages a term sometimes used in the us is table charge the charge is typically a few us dollar s or equivalent restaurants included in the toptablecom website mainly in the uk which levy a cover charge between one and ten poundsterling about us to although the charge is often said to be for bread butter olives etc taken to the table it is payable whether or nothey areaten restaurants in english speaking countriesometimes have a menu in french in these and otherestaurants the cover charge isometimes described withe french word couverthis term and the related charge originating in france has been used withis meaning in english since at least newnham davis dinners diners ch collected from an earlier article in the pall mall gazette and the bill three couverts caviar s the french word both means table setting and is the past participle of couvrir to cover couvert in larousse french dictionary couvert or cover in the sense of place setting derived from the french past participle according to the oed cover after french couverthe covering or furniture of a table for the meale of a prince cotgrave the cloth plates knives forks etc with which a table is covered or laid the portion of these appropriated to each guesthe couvert or cover charge has been levied for manyears certainly in english speaking countries by the concept and term was later used in the us in the s by illegal bars called speakeasy speakeasies during the prohibition era ban on alcohol manhattan saloonkeeper texas guinan tex guinan was an early example of a barequiring a cover charge from patrons in the us the cover charge later became an entry charge where both entertainment and food andrink are provided and carries thexpectation of entertainment in most countries wherestaurant cover charges are made the practice is far from universal many restaurants make no charge tourist destinations may be more likely to make this charge which unwary visitors may not anticipate gratuity tips are usually much lower internationally than the typical in restaurants in the usa without cover charge the total outlay for the meal including tip is not necessarily higher the term cover charge is used in other cases and can be confusing a practice sometimes called a cover charge in the usa is to make a flat charge for unlimited food restaurants may make a charge to diners who book but fail to show up this occasionally called a cover chargexample of restaurant which calls its no show charge a cover charge legal restrictions according to massachusetts law subjecto a penalty of up to no cafe restaurant or bar can require payment of a minimum or cover charge unless a sign is conspicuously posted with at least one inchigh letterstating that a minimum charge or cover charge shall be charged and indicating the amount children under thirteen may not be chargedadministration of the governmentitle xx public safety and good order chapter licenses theatrical exhibitions public amusements etchapter section d minimum or cover charge section d no innholder common victualler or person owning managing or controlling a cafe restaurant or other eating or drinking establishment shall require any person to pay a minimum charge or cover charge unless a sign is conspicuously posted at every entrance to any dining room orooms where sucharge is required in letters no less than one inch in height stating that a minimum charge or cover charge shall be charged and also stating the amount of charge provided however that no such innholder common victualler or person owning managing or controlling a cafe restaurant or other eating or drinking establishment shall require a person under thirteen years of age to pay a minimum charge or cover charge whoever violates thisection shall be punished by a fine of not more than fifty dollars this lawas put in place to resolve the problem of secret cover charges which are indicated only in tiny text on the menu clubgoers would then find this cover charge added to their first drink order in illinois bars cannot impose a cover charge unless the fee goes towards the cost off setting entertainment costsuch as a live band in the italian regional government in lazio which includes rome began requiring restaurants in the region to remove the cover charge for pane coperto bread and cover from their bills in theuropean union ruled thathe regionalawas invalid buthe region is continuing to try to abolish the practice no more pane coperto business models file shinichi osawat beta nightclubjpg thumb right px bars often impose a cover charge for thexpense of paying entertainersuch as djs cover charges bars and clubs that use cover charges use them for several reasons in some cases popular bars and clubs have a substantial excess demand patrons are lined up outside the club waiting to get in this case the club can gain additional revenue from customers by requiring an entrance charge other bars and clubs use cover charges only onights when there is liventertainment or a dj to cover the costs of hiring the performers cover charges are usually much lower for local semi professional bands or entertainers than for better known touring bands from otheregions inorth america the cover charge for a performance by a local teenage band may be as low as a few dollars a show by a nationally known band with a recording contract may have a to cover somexpensive jazz clubs and comedy clubs have both a cover charge and a minimum drink requirement many sports bars have cover charge when they are showing a boxing or a ufc pay per view evento help defray to costs of ordering the pay per view material price discrimination in economics the term price discrimination refers to charging different prices to different customers based on the anticipated pricelasticity of demand elasticity of demand of different customers bars often offer student discounts because university or college students will have a different willingness to pay than average consumer due to their budget constraints thus the bar sets a lower price for entry for university and college students because students havelastic demand in some bars there are different cover charges for legal drinking age customers and for minors who may not purchase or drink alcohol eg a cover charge for those over and an cover for minorsome bars have lower cover charges for some categoriesuch as college or university students with student identification some have lower cover charges for members of the club or of nightclub organizations or associations cover charge is waived at some clubs for early arrivals before pm or midnight for people whorder food or if the club is in a hotel for hotel guestsome bars customarily or ladies night occasionally waive the cover charge for women in hopes that doing so will increase their number ofemale customers and thereby attract male customers as well the bar usually allows the band or performers to provide a list of guests who will be admitted without paying the cover charge the guest listhe bouncer doorman bouncer may waive the cover charge for some customersuch as regular customers who usually purchase a large number of drinks as well bouncersometimes waive the cover charge for their friends in what could be described as nepotism or even as an illegal action akin to theft or embezzlementhat deprives the bouncer s employer of revenue to which it is entitled revenue sharing with performers bars and clubs have different policies for how the cover charge ishared if at all withe performers different revenue sharing agreements are oftenegotiated by different performers the range of revenue sharing arrangements range from the band or performers retaining all of the money collected for the cover charge to a split between the bar and the band to arrangements where the baretains all of the cover charge a variant of these revenue sharing arrangements occurs in cases where the bar also gives the band a share of the bar s alcohol sales receiptsome bars may also agree to a guarantee in which the bar promises to pay the band a certain amount even if this less than the amount collected athe door luxury cover charges luxury clubs with unusual architecture and interior design and a unique atmosphere sometimes have cover charges even when there is no liventertainment or dj in these cases the cover charge simply contributes to the club s profits for example mike viscuso s on broadway a glam disco dining palace has a cover charge of james brennan stingaree a glam restaurant and club lounge has a cover charge of some high end and luxury bars and nightclubs have yearly membership fees which can be interpreted as annual cover charges for example frederick s has a year membership the keating lounge has annual membership fee and the core club has a membership fee a variant of these annual fees are table charges at somelite nightclubs in which a customer agrees to spend a minimum amount in order to reserve a table in the club eg in thevening no cover charge some bars and clubs do not charge an entrance fee which is indicated in signstating no cover or no cover charge these bars use the liventertainers to draw and retain customers in thestablishment so thathe customers will buy drinks to attract more female customers bars often have a no cover for women policy sometimes on a ladies night in some cases these policies have been challenged in lawsuits as discrimination discriminatory and are illegal in some jurisdictions in the united states a ladies night is a promotion marketing promotional event often at a bar establishment bar or nightclub where female patrons pay less than male patrons for the cover charge or drinkstate courts in california maryland pennsylvaniand wisconsin have ruled that ladies night discounts are unlawful gender discrimination under state or local statutes however courts in illinois minnesotand washington ustate washington have rejected a variety of challenges to such discounts claims against ladies nights under thequal protection clause of the fourteenth amendmento the united states constitution have failed under the state action united states constitutionalaw state action doctrine hollander v swindells donovan wl edny similar actions have failed under the civil rights act of usc hollander v copacabana nightclub fsupp d sdny comiskey v jftj corp f d th cir ladies nights may have federal tax implications though us v covey gas oil f d th cir federal claims were also involved in the unsuccessful challenge in washington see below the california supreme court has ruled that ladies days at a car wash and ladies nights at a nightclub violate california s unruh civil rights act in koire v metro car wash koire v metro car wash p d cand angelucci v century supper club angelucci v century supper club p d ca the unruh act provides all persons within the jurisdiction of thistate are free and equal and no matter whatheir sex arentitled to the full and equal accommodations advantages facilities privileges or services in all business establishments of every kind whatsoever the court considered the statutory defense thathe promotionserve substantial business and social purposes but concluded that merely being profitable is not a sufficient defense the court accused the wisconsin supreme court of sexual stereotyping for upholding a similar practice koire held that public policy in california strongly supports eradication of discrimination based on sex the unruh act expressly prohibitsex discrimination by business enterprises koire concluded the legality of sex based price discounts cannot depend on the subjective value judgments about which types of sex basedistinctions are important or harmful thexpress language of the unruh act provides a clear and objective standard by which to determine the legality of the practices at issue the legislature has clearly stated that business establishments must providequal advantages and privileges to all customers no matter whatheir sex strong public policy supports application of the act in this case the defendants have advanced no convincing argumenthathis court should carve out a judicial exception for their sex based price discounts the straightforward proscription of the act should be respected subsequento the decision california passed the gender tax repeal act of which specifically prohibits differential pricing based solely on a customer s gendereric d hone and franchesca van buren is the death knell ringing for ladies nights nevada lawyer march in angelucci the california supreme court ruled that discrimination victims did not have to ask the offending business to be treated equally in order to have standing to file an unruh act or gender tax repeal act claim courts have not found violations on the unruh act with discounts for which any customer could theoretically qualify for starkman v mann theatres corp calapp d the california supreme court opined a multitude of promotional discounts come to mind which are clearly permissible under the unruh act for example a business establishment might offereduced rates to all customers one day each week or a business might offer a discounto any customer who meets a condition which any patron could satisfy eg presenting a coupon or sporting a certain color shirt or a particular bumper sticker in additionothing prevents a business from offering discounts for purchasing commodities in quantity or for making advance reservations the key is thathe discounts must be applicable alike to persons of every sex coloracetc instead of being contingent on some arbitrary class based generalization the koire precedent has not been extended to strike down mother s day promotions cohn v corinthian colleges incalapp th koire was one of the precedents cited in the lower court but nothe state supreme court in re marriage cases which was overturned by california proposition in re marriage cases calrptr d ladies nights in illinois have been upheld under the anti discrimination provision of the dram shop act dock club inc v illinois liquor control commissione d ill app the court determined thathe discount was intended to encourage women to attend the bar in greater numbers rather than to discourage attendance by malesjohn e theuman exclusion of one sex from admission tor enjoyment of equal privileges in places of accommodation or entertainment as actionable sex discrimination under state law alr th montgomery county s human relations law has been interpreted to not only prohibit ladies nights but also a skirt and gownight where a customer is given a discount for wearing a skirt or gown peppin v woodsidelicatessen a d md app the court noted that againsthisuperficially humorous backdrop we must decide whether thiseemingly innocuous business practice constitutes unlawful discrimination within the meaning of a county ordinance the montgomery county code human relations law prohibited any distinction with respecto any person based on race color sex marital status religious creed ancestry national origin handicap or sexual orientation in connection with admission to service or sales in or price quality or use of any facility or service of any place of public accommodation resort or amusement in the county the maryland s appellate court s reviewas far from de novo and the court emphasized that although we believe the judge s findings to be contradicted by american cultural realities we need not focus on the circuit court s determination oureview is that of the agency s conclusion based upon facts presented athearing the record is replete with evidence that skirt and gownight was intended to andid have the sameffect and serve the same function as ladies night ie it provided price discounts to women and in fact operated as a merextension of ladies nighthe court also stressed the peculiarity and strictness of the municipal ordinance it was interpreting we believe the ordinance is unambiguous thus while allowed to do so under thequal protection clause of the fourteenth amendmento the constitution of the united states we are not allowed under the montgomery county ordinance or the maryland constitution to engage in a balancing test attempts by municipal governments to prevent ladies nights have been struck down as ultra vires in re on sale liquor license class b nw d minn app in june the minnesota department of human rightsaid bars are discriminating against males by holding ladies night promotions but said it will not seek out bars that have a ladies night although this question has not been litigated inevada two nevadattorneys advise for the time being businesseshould exercise caution in utilizingender based pricing scheme promotions while the ability of a plaintiff to succeed on such a claim in district court remains unknownevada equal rights commissionerc has the ability to pursue such claims on the administrative level therefore businesseshould engage in a cost benefit analysis keeping in mind thathey might have to spend time and resources defending a sex discrimination charge in front of nerc or elsewhere new york the new york state human rights appeal boardisapproved of a new york yankees ladies day promotion which originated in as being in a modern technological society where women and men are to be on equal footing as a matter of public policy abosh v new york yankees inc no cps appeal no such promotions violate the pennsylvania human relations act as unlawful gender discrimination where male patrons are charged an entrance fee or a greater charge for drinks and female patrons are not charged an identical entrance fee or the same charge for drinks as male patrons in pennsylvania liquor control board v dobrinoff the commonwealth court specifically found that where a female patron was exempt from a cover charge a go bar engaged in unlawful gender discrimination pa commonwealth cthe pennsylvania liquor control board hastated as recently as that it will issue citations against establishments whicharge patrons differing amounts based on gender see liquor control board advisory opinion of july ladies nights have been found noto violate state anti discrimination law or the federal constitution by the washington supreme court even if held at a stadium owned by a city maclean v first northwest industries of america inc p d wa the washington supreme court concluded thathe respondent hashowno discrimination against men as a class and no damage to himself as a consequence he has no right of action under the state law against discrimination in parthe court emphasized in its ruling evidence presented in the trial courthat women do not manifesthe same interest in basketball that men do and thathe discount was only one of many discounts and promotions the others available regardless of gender finally the majority noted thato decide important constitutional questions upon a complaint asterile as this would be apto erode public respect for thequal rights amendment andeterather than promote the serious goals for which it was adopted the dissenting justices emphasized their broader interpretation of the applicable prohibition and the potential for such promotions to reinforce stereotypes one dissenting justice proposed thathe complainant be allowed no damages but only thathe practice benjoined the dissent concluded it may be that application of thequal rights amendmento the promotional activity of defendant is nothe sort of thing the voters had in mind when they adopted hjr then again an equally persuasive argument could be made thaticket price differentials based on sex were indeed one of a number of activities which they hoped to end it is idle to speculate no evidence of any kind exists i see no escape from finding in this case thathe plain language of const art proscribes the activity in which the defendants havengaged any further clarification of popular intent must come through the process of constitutional amendment not by the imaginings of this court const arthe wisconsin supreme court has held that such promotions violate the state s public accommodation law novak v madison motel associates nw d wis app the court noted thathe text and legislative history of the statute permitted no distinction between sex race and other forms of discrimination some comedy club s and strip bars may allow patrons to enter without paying a fee withe implicit or explicit expectation thathe customers will buy alcoholic beverage s while inside some bars with no cover charge policies may have higher prices for their snacks and beer to make up for the lack of a cover charge many nightclubs oriented towards electronic dance music have a cover charge in some cases because many of their patrons are not drinking alcohol due to use of other drugsuch as mdma bottles of water are alsoften priced at up to offsethe loss of revenue from reduced sales of alcohol category hospitality industry category payments","main_words":["image","doorman","clubouncer","sometimes","responsible","collecting","cover_charge","cover_charge","entrance","fee","sometimes","charged","bar_establishment_bar","nightclub","orestaurant","american","heritage","dictionary","defines","fixed","amount","added","bill","nightclub","orestaurant","entertainment","service","cover_charge","american","heritage","dictionary","thenglish_language","fourth_edition","copyright","houghton","mifflin","company","updated","published","houghton","mifflin","company","restaurants","cover_charges","couvert","charges","generally","include","cost","ofood","ordered","somestablishments","include","cost","bread","butter","olives","provided","matter","course","file","central","city","block","chinese","setting","oct","jpg","thumb","right","px","group","people","sit","table","restaurant","restaurants","charge","guest","order","food","charge","service","setting","outhe","napkin","cutlery","oxford_english_dictionary","defines","cover_charge","charge","service","added","restaurant","oed","entry","cover_charge","charge","made","many_countries","usually","described","word","equivalento","cover","couvert","coperto","example","use","coperto","italian","oxford","spanish","dictionary","restaurant","cover","place","setting","restaurant","english_languages","often_referred","cover","oed","meaning","cover","utensils","laid","person","use","plate","napkin","knife","fork","spoon","etc","davis","dinners","diners","collected","earlier","article","mall","gazette","menu","dinner","six","covers","dinner","languages","term","sometimes","used","us","table","charge","charge","typically","us","dollar","equivalent","restaurants","included","website","mainly","uk","levy","cover_charge","one","ten","us","although","charge","often","said","bread","butter","olives","etc","taken","table","payable","whether","restaurants","english_speaking","menu","french","otherestaurants","cover_charge","isometimes","described","withe","french","word","term","related","charge","originating","france","used","withis","meaning","english","since","least","davis","dinners","diners","collected","earlier","article","mall","gazette","bill","three","caviar","french","word","means","table","setting","past","cover","couvert","french","dictionary","couvert","cover","sense","place","setting","derived","french","past","according","oed","cover","french","covering","furniture","table","prince","cloth","plates","knives","forks","etc","table","covered","laid","portion","couvert","cover_charge","manyears","certainly","english_speaking","countries","concept","term","later","used","us","illegal","bars","called","speakeasy","speakeasies","prohibition","era","ban","alcohol","manhattan","texas","tex","early","example","cover_charge","patrons","us","cover_charge","later_became","entry","charge","entertainment","food_andrink","provided","carries","entertainment","countries","cover_charges","made","practice","far","universal","many_restaurants","make","charge","tourist_destinations","may","likely","make","charge","visitors","may","gratuity","tips","usually","much","lower","internationally","typical","restaurants","usa","without","cover_charge","total","meal","including","tip","necessarily","higher","term","cover_charge","used","cases","practice","sometimes_called","cover_charge","usa","make","flat","charge","unlimited","may","make","charge","diners","book","fail","show","occasionally","called","cover","restaurant","calls","show","charge","cover_charge","legal","restrictions","according","massachusetts","law","subjecto","penalty","cafe","restaurant","bar","require","payment","minimum","cover_charge","unless","sign","posted","least_one","minimum","charge","cover_charge","shall","charged","indicating","amount","children","thirteen","may","public","safety","good","order","chapter","licenses","theatrical","exhibitions","public","amusements","section","minimum","cover_charge","section","common","person","owning","managing","controlling","cafe","restaurant","eating","drinking_establishment","shall","require","person","pay","minimum","charge","cover_charge","unless","sign","posted","every","entrance","dining_room","required","letters","less","one","inch","height","stating","minimum","charge","cover_charge","shall","charged","also","stating","amount","charge","provided","however","common","person","owning","managing","controlling","cafe","restaurant","eating","drinking_establishment","shall","require","person","thirteen","years","age","pay","minimum","charge","cover_charge","thisection","shall","punished","fine","fifty","dollars","lawas","put","place","resolve","problem","secret","cover_charges","indicated","tiny","text","menu","clubgoers","would","find","cover_charge","added","first","drink","order","illinois","bars","cannot","impose","cover_charge","unless","fee","goes","towards","cost","setting","entertainment","live","band","italian","regional","government","includes","rome","began","requiring","restaurants","region","remove","cover_charge","coperto","bread","cover","bills","theuropean_union","ruled","thathe","buthe","region","continuing","try","practice","coperto","business_models","file","beta","thumb","right","px","bars","often","impose","cover_charge","thexpense","paying","djs","cover_charges","bars","clubs","use","cover_charges","use","several","reasons","cases","popular","bars","clubs","substantial","excess","demand","patrons","lined","outside","club","waiting","get","case","club","gain","additional","revenue","customers","requiring","entrance","charge","bars","clubs","use","cover_charges","cover","costs","hiring","performers","cover_charges","usually","much","lower","local","semi","professional","bands","entertainers","better_known","touring","bands","otheregions","inorth_america","cover_charge","performance","local","teenage","band","may","low","dollars","show","nationally","known","band","recording","contract","may","cover","jazz_clubs","comedy","clubs","cover_charge","minimum","drink","requirement","many","sports","bars","cover_charge","showing","boxing","pay_per","view","help","costs","ordering","pay_per","view","material","price","discrimination","economics","term","price","discrimination","refers","charging","different","prices","different","customers","based","anticipated","demand","demand","different","customers","bars","often","offer","student","discounts","university","college_students","different","willingness","pay","average","consumer","due","budget","constraints","thus","bar","sets","lower","price","entry","university","college_students","students","demand","bars","different","cover_charges","legal","drinking_age","customers","minors","may","purchase","drink","alcohol","cover_charge","cover","bars","lower","cover_charges","college","university","students","student","identification","lower","cover_charges","members","club","nightclub","organizations","associations","cover_charge","clubs","early","arrivals","midnight","people","food","club","hotel","hotel","bars","customarily","ladies","night","occasionally","waive","cover_charge","women","hopes","increase","number","ofemale","customers","thereby","attract","male","customers","well","bar","usually","allows","band","performers","provide","list","guests","admitted","without","paying","cover_charge","guest","bouncer_doorman","bouncer","may","waive","cover_charge","regular","customers","usually","purchase","large_number","drinks","well","waive","cover_charge","friends","could","described","even","illegal","action","akin","theft","bouncer","employer","revenue","entitled","revenue","sharing","performers","bars","clubs","different","policies","cover_charge","withe","performers","different","revenue","sharing","agreements","different","performers","range","revenue","sharing","arrangements","range","band","performers","retaining","money","collected","cover_charge","split","bar","band","arrangements","cover_charge","variant","revenue","sharing","arrangements","occurs","cases","bar_also","gives","band","share","bar","alcohol","sales","agree","guarantee","bar","promises","pay","band","certain","amount","even","less","amount","collected","athe","door","luxury","cover_charges","luxury","clubs","unusual","architecture","interior","design","unique","atmosphere","sometimes","cover_charges","even","cases","cover_charge","simply","contributes","club","profits","example","mike","broadway","disco","dining","palace","cover_charge","james","restaurant","club","lounge","cover_charge","high_end","luxury","bars","nightclubs","yearly","membership","fees","interpreted","annual","cover_charges","example","frederick","year","membership","lounge","annual","membership","fee","core","club","membership","fee","variant","annual","fees","table","charges","nightclubs","customer","agrees","spend","minimum","amount","order","reserve","table","club","thevening","cover_charge","bars","clubs","charge","entrance","fee","indicated","cover","cover_charge","bars","use","draw","retain","customers","thestablishment","thathe","customers","buy","drinks","attract","female","customers","bars","often","cover","women","policy","sometimes","ladies","night","cases","policies","challenged","lawsuits","discrimination","discriminatory","illegal","jurisdictions","united_states","ladies","night","promotion","marketing","promotional","event","often","bar_establishment_bar","nightclub","female","patrons","pay","less","male","patrons","cover_charge","courts","california","maryland","pennsylvaniand","wisconsin","ruled","ladies","night","discounts","unlawful","gender","discrimination","state","local","statutes","however","courts","illinois","washington","ustate","washington","rejected","variety","challenges","discounts","claims","ladies","nights","thequal","protection","clause","amendmento","united_states","constitution","failed","state","action","united_states","state","action","v","similar","actions","failed","civil_rights","act","v","copacabana","nightclub","v","corp","f","th","ladies","nights","may","federal","tax","implications","though","us","v","gas","oil","f","th","federal","claims","also","involved","unsuccessful","challenge","washington","see","california","supreme_court","ruled","ladies","days","car","wash","ladies","nights","nightclub","violate","california","unruh","civil_rights","act","koire","v","metro","car","wash","koire","v","metro","car","wash","p","cand","v","century","supper_club","v","century","supper_club","p","unruh","act","provides","persons","within","jurisdiction","free","equal","matter","sex","full","equal","accommodations","advantages","facilities","privileges","services","business","establishments","every","kind","court","considered","statutory","defense","thathe","substantial","business","social","purposes","concluded","merely","profitable","sufficient","defense","court","accused","wisconsin","supreme_court","sexual","similar","practice","koire","held","public","policy","california","strongly","supports","discrimination","based","sex","unruh","act","expressly","discrimination","business","enterprises","koire","concluded","legality","sex","based","price","discounts","cannot","depend","value","types","sex","important","harmful","language","unruh","act","provides","clear","objective","standard","determine","legality","practices","issue","legislature","clearly","stated","business","establishments","must","advantages","privileges","customers","matter","sex","strong","public","policy","supports","application","act","case","advanced","convincing","court","judicial","exception","sex","based","price","discounts","act","respected","decision","california","passed","gender","tax","repeal","act","specifically","prohibits","pricing","based","solely","customer","van","death","ladies","nights","nevada","lawyer","march","california","supreme_court","ruled","discrimination","victims","ask","business","treated","equally","order","standing","file","unruh","act","gender","tax","repeal","act","claim","courts","found","violations","unruh","act","discounts","customer","could","theoretically","qualify","v","mann","theatres","corp","california","supreme_court","multitude","promotional","discounts","come","mind","clearly","unruh","act","example","business","establishment","might","rates","customers","one_day","week","business","might","offer","customer","meets","condition","patron","could","satisfy","presenting","sporting","certain","color","shirt","particular","bumper","business","offering","discounts","purchasing","commodities","quantity","making","advance","reservations","key","thathe","discounts","must","applicable","alike","persons","every","sex","instead","contingent","arbitrary","class","based","koire","extended","strike","mother","day","promotions","v","colleges","th","koire","one","cited","lower","court","nothe","state","supreme_court","marriage","cases","overturned","california","proposition","marriage","cases","ladies","nights","illinois","upheld","anti","discrimination","provision","shop","act","dock","club","inc","v","illinois","liquor","control","ill","app","court","determined","thathe","discount","intended","encourage","women","attend","bar","greater","numbers","rather","discourage","attendance","e","exclusion","one","sex","admission","tor","enjoyment","equal","privileges","places","accommodation","entertainment","sex","discrimination","state","law","th","montgomery","county","human","relations","law","interpreted","prohibit","ladies","nights","also","customer","given","discount","wearing","v","app","court","noted","humorous","backdrop","must","decide","whether","business","practice","unlawful","discrimination","within","meaning","county","ordinance","montgomery","county","code","human","relations","law","prohibited","distinction","respecto","person","based","race","color","sex","status","religious","ancestry","national","origin","sexual","orientation","connection","admission","service","sales","price","quality","use","facility","service","place","public","accommodation","resort","amusement","county","maryland","appellate","court","far","de","court","emphasized","although","believe","judge","findings","american","cultural","realities","need","focus","circuit","court","agency","conclusion","based_upon","facts","presented","athearing","record","evidence","intended","andid","serve","function","ladies","night","provided","price","discounts","women","fact","operated","ladies","nighthe","court","also","municipal","ordinance","interpreting","believe","ordinance","thus","allowed","thequal","protection","clause","amendmento","constitution","united_states","allowed","montgomery","county","ordinance","maryland","constitution","engage","balancing","test","attempts","municipal","governments","prevent","ladies","nights","struck","ultra","sale","liquor","license","class","b","app","june","minnesota","department","human","bars","males","holding","ladies","night","promotions","said","seek","bars","ladies","night","although","question","inevada","two","advise","time","exercise","based","pricing","scheme","promotions","ability","claim","district","court","remains","equal","rights","ability","pursue","claims","administrative","level","therefore","engage","cost","benefit","analysis","keeping","mind","thathey","might","spend","time","resources","sex","discrimination","charge","front","elsewhere","new_york","new_york","state","human_rights","appeal","new_york","ladies","day","promotion","originated","modern","technological","society","women","men","equal","matter","public","policy","v","new_york","inc","appeal","promotions","violate","pennsylvania","human","relations","act","unlawful","gender","discrimination","male","patrons","charged","entrance","fee","greater","charge","drinks","female","patrons","charged","identical","entrance","fee","charge","drinks","male","patrons","pennsylvania","liquor","control","board","v","commonwealth","court","specifically","found","female","patron","cover_charge","go","bar","engaged","unlawful","gender","discrimination","commonwealth","pennsylvania","liquor","control","board","hastated","recently","issue","citations","establishments","patrons","differing","amounts","based","gender","see","liquor","control","board","advisory","opinion","july","ladies","nights","found","noto","violate","state","anti","discrimination","law","federal","constitution","washington","supreme_court","even","held","stadium","owned","city","v","first","northwest","industries","america","inc","p","washington","supreme_court","concluded","thathe","discrimination","men","class","damage","consequence","right","action","state","law","discrimination","parthe","court","emphasized","ruling","evidence","presented","trial","women","interest","basketball","men","thathe","discount","one","many","discounts","promotions","others","available","regardless","gender","finally","majority","noted","thato","decide","important","constitutional","questions","upon","would","erode","public","respect","thequal","rights","amendment","promote","serious","goals","adopted","emphasized","broader","interpretation","applicable","prohibition","potential","promotions","reinforce","stereotypes","one","justice","proposed","thathe","allowed","damages","thathe","practice","concluded","may","application","thequal","rights","amendmento","promotional","activity","nothe","sort","thing","voters","mind","adopted","equally","argument","could","made","price","based","sex","indeed","one","number","activities","hoped","end","idle","evidence","kind","exists","see","escape","finding","case","thathe","plain","language","art","activity","popular","intent","must","come","process","constitutional","amendment","court","arthe","wisconsin","supreme_court","held","promotions","violate","state","public","accommodation","law","v","madison","motel","associates","wis","app","court","noted_thathe","text","legislative","history","permitted","distinction","sex","race","forms","discrimination","comedy","club","strip","bars_may","allow","patrons","enter","without","paying","fee","withe","expectation","thathe","customers","buy","alcoholic_beverage","inside","bars","cover_charge","policies","may","higher","prices","snacks","beer","make","lack","cover_charge","many","nightclubs","oriented","towards","electronic_dance_music","cover_charge","cases","many","patrons","drinking","alcohol","due","use","drugsuch","mdma","bottles","water","alsoften","priced","loss","revenue","reduced","sales","alcohol","category_hospitality_industry","category","payments"],"clean_bigrams":[["doorman","clubouncer"],["sometimes","responsible"],["cover","charge"],["cover","charge"],["entrance","fee"],["fee","sometimes"],["sometimes","charged"],["bar","establishment"],["establishment","bar"],["nightclub","orestaurant"],["american","heritage"],["heritage","dictionary"],["dictionary","defines"],["fixed","amount"],["amount","added"],["nightclub","orestaurant"],["service","cover"],["cover","charge"],["american","heritage"],["heritage","dictionary"],["thenglish","language"],["language","fourth"],["fourth","edition"],["edition","copyright"],["houghton","mifflin"],["mifflin","company"],["company","updated"],["houghton","mifflin"],["mifflin","company"],["restaurants","cover"],["cover","charges"],["couvert","charges"],["charges","generally"],["cost","ofood"],["bread","butter"],["butter","olives"],["course","file"],["central","city"],["block","chinese"],["setting","oct"],["oct","jpg"],["jpg","thumb"],["thumb","right"],["right","px"],["people","sit"],["setting","outhe"],["oxford","english"],["english","dictionary"],["dictionary","defines"],["cover","charge"],["service","added"],["restaurant","oed"],["oed","entry"],["cover","charge"],["many","countries"],["countries","usually"],["usually","described"],["word","equivalento"],["equivalento","cover"],["cover","couvert"],["couvert","coperto"],["coperto","example"],["oxford","spanish"],["spanish","dictionary"],["restaurant","cover"],["place","setting"],["often","referred"],["cover","oed"],["oed","meaning"],["utensils","laid"],["plate","napkin"],["napkin","knife"],["knife","fork"],["fork","spoon"],["spoon","etc"],["davis","dinners"],["dinners","diners"],["earlier","article"],["mall","gazette"],["six","covers"],["term","sometimes"],["sometimes","used"],["table","charge"],["us","dollar"],["equivalent","restaurants"],["restaurants","included"],["website","mainly"],["cover","charge"],["often","said"],["bread","butter"],["butter","olives"],["olives","etc"],["etc","taken"],["payable","whether"],["english","speaking"],["cover","charge"],["charge","isometimes"],["isometimes","described"],["described","withe"],["withe","french"],["french","word"],["related","charge"],["charge","originating"],["used","withis"],["withis","meaning"],["english","since"],["davis","dinners"],["dinners","diners"],["earlier","article"],["mall","gazette"],["bill","three"],["french","word"],["means","table"],["table","setting"],["cover","couvert"],["french","dictionary"],["dictionary","couvert"],["place","setting"],["setting","derived"],["french","past"],["oed","cover"],["cloth","plates"],["plates","knives"],["knives","forks"],["forks","etc"],["cover","charge"],["manyears","certainly"],["english","speaking"],["speaking","countries"],["later","used"],["illegal","bars"],["bars","called"],["called","speakeasy"],["speakeasy","speakeasies"],["prohibition","era"],["era","ban"],["alcohol","manhattan"],["early","example"],["cover","charge"],["cover","charge"],["charge","later"],["later","became"],["entry","charge"],["food","andrink"],["cover","charges"],["universal","many"],["many","restaurants"],["restaurants","make"],["charge","tourist"],["tourist","destinations"],["destinations","may"],["visitors","may"],["gratuity","tips"],["usually","much"],["much","lower"],["lower","internationally"],["usa","without"],["without","cover"],["cover","charge"],["meal","including"],["including","tip"],["necessarily","higher"],["term","cover"],["cover","charge"],["practice","sometimes"],["sometimes","called"],["cover","charge"],["flat","charge"],["unlimited","food"],["food","restaurants"],["restaurants","may"],["may","make"],["occasionally","called"],["show","charge"],["cover","charge"],["charge","legal"],["legal","restrictions"],["restrictions","according"],["massachusetts","law"],["law","subjecto"],["cafe","restaurant"],["require","payment"],["cover","charge"],["charge","unless"],["least","one"],["minimum","charge"],["cover","charge"],["charge","shall"],["amount","children"],["thirteen","may"],["public","safety"],["good","order"],["order","chapter"],["chapter","licenses"],["licenses","theatrical"],["theatrical","exhibitions"],["exhibitions","public"],["public","amusements"],["cover","charge"],["charge","section"],["person","owning"],["owning","managing"],["cafe","restaurant"],["drinking","establishment"],["establishment","shall"],["shall","require"],["minimum","charge"],["cover","charge"],["charge","unless"],["every","entrance"],["dining","room"],["one","inch"],["height","stating"],["minimum","charge"],["cover","charge"],["charge","shall"],["also","stating"],["charge","provided"],["provided","however"],["person","owning"],["owning","managing"],["cafe","restaurant"],["drinking","establishment"],["establishment","shall"],["shall","require"],["thirteen","years"],["minimum","charge"],["cover","charge"],["thisection","shall"],["fifty","dollars"],["lawas","put"],["secret","cover"],["cover","charges"],["tiny","text"],["menu","clubgoers"],["clubgoers","would"],["cover","charge"],["charge","added"],["first","drink"],["drink","order"],["illinois","bars"],["cover","charge"],["charge","unless"],["fee","goes"],["goes","towards"],["setting","entertainment"],["live","band"],["italian","regional"],["regional","government"],["includes","rome"],["rome","began"],["began","requiring"],["requiring","restaurants"],["cover","charge"],["coperto","bread"],["theuropean","union"],["union","ruled"],["ruled","thathe"],["buthe","region"],["coperto","business"],["business","models"],["models","file"],["thumb","right"],["right","px"],["px","bars"],["bars","often"],["often","impose"],["cover","charge"],["djs","cover"],["cover","charges"],["charges","bars"],["clubs","use"],["use","cover"],["cover","charges"],["charges","use"],["several","reasons"],["cases","popular"],["popular","bars"],["substantial","excess"],["excess","demand"],["demand","patrons"],["club","waiting"],["gain","additional"],["additional","revenue"],["entrance","charge"],["clubs","use"],["use","cover"],["cover","charges"],["performers","cover"],["cover","charges"],["usually","much"],["much","lower"],["local","semi"],["semi","professional"],["professional","bands"],["better","known"],["known","touring"],["touring","bands"],["otheregions","inorth"],["inorth","america"],["cover","charge"],["local","teenage"],["teenage","band"],["band","may"],["nationally","known"],["known","band"],["recording","contract"],["contract","may"],["jazz","clubs"],["comedy","clubs"],["cover","charge"],["minimum","drink"],["drink","requirement"],["requirement","many"],["many","sports"],["sports","bars"],["cover","charge"],["pay","per"],["per","view"],["pay","per"],["per","view"],["view","material"],["material","price"],["price","discrimination"],["term","price"],["price","discrimination"],["discrimination","refers"],["charging","different"],["different","prices"],["different","customers"],["customers","based"],["different","customers"],["customers","bars"],["bars","often"],["often","offer"],["offer","student"],["student","discounts"],["college","students"],["different","willingness"],["average","consumer"],["consumer","due"],["budget","constraints"],["constraints","thus"],["bar","sets"],["lower","price"],["college","students"],["different","cover"],["cover","charges"],["legal","drinking"],["drinking","age"],["age","customers"],["drink","alcohol"],["cover","charge"],["lower","cover"],["cover","charges"],["university","students"],["student","identification"],["lower","cover"],["cover","charges"],["nightclub","organizations"],["associations","cover"],["cover","charge"],["early","arrivals"],["bars","customarily"],["ladies","night"],["night","occasionally"],["occasionally","waive"],["cover","charge"],["number","ofemale"],["ofemale","customers"],["thereby","attract"],["attract","male"],["male","customers"],["bar","usually"],["usually","allows"],["admitted","without"],["without","paying"],["cover","charge"],["bouncer","doorman"],["doorman","bouncer"],["bouncer","may"],["may","waive"],["cover","charge"],["regular","customers"],["usually","purchase"],["large","number"],["cover","charge"],["illegal","action"],["action","akin"],["entitled","revenue"],["revenue","sharing"],["performers","bars"],["different","policies"],["cover","charge"],["withe","performers"],["performers","different"],["different","revenue"],["revenue","sharing"],["sharing","agreements"],["different","performers"],["revenue","sharing"],["sharing","arrangements"],["arrangements","range"],["performers","retaining"],["money","collected"],["cover","charge"],["cover","charge"],["revenue","sharing"],["sharing","arrangements"],["arrangements","occurs"],["bar","also"],["also","gives"],["alcohol","sales"],["bars","may"],["may","also"],["also","agree"],["bar","promises"],["certain","amount"],["amount","even"],["amount","collected"],["collected","athe"],["athe","door"],["door","luxury"],["luxury","cover"],["cover","charges"],["charges","luxury"],["luxury","clubs"],["unusual","architecture"],["interior","design"],["unique","atmosphere"],["atmosphere","sometimes"],["cover","charges"],["charges","even"],["cover","charge"],["charge","simply"],["simply","contributes"],["example","mike"],["disco","dining"],["dining","palace"],["cover","charge"],["club","lounge"],["cover","charge"],["high","end"],["luxury","bars"],["yearly","membership"],["membership","fees"],["annual","cover"],["cover","charges"],["example","frederick"],["year","membership"],["annual","membership"],["membership","fee"],["core","club"],["membership","fee"],["annual","fees"],["table","charges"],["customer","agrees"],["minimum","amount"],["cover","charge"],["entrance","fee"],["cover","charge"],["bars","use"],["retain","customers"],["thathe","customers"],["buy","drinks"],["female","customers"],["customers","bars"],["bars","often"],["women","policy"],["policy","sometimes"],["ladies","night"],["discrimination","discriminatory"],["united","states"],["ladies","night"],["promotion","marketing"],["marketing","promotional"],["promotional","event"],["event","often"],["bar","establishment"],["establishment","bar"],["female","patrons"],["patrons","pay"],["pay","less"],["male","patrons"],["cover","charge"],["california","maryland"],["maryland","pennsylvaniand"],["pennsylvaniand","wisconsin"],["ladies","night"],["night","discounts"],["unlawful","gender"],["gender","discrimination"],["local","statutes"],["statutes","however"],["however","courts"],["washington","ustate"],["ustate","washington"],["discounts","claims"],["ladies","nights"],["thequal","protection"],["protection","clause"],["united","states"],["states","constitution"],["state","action"],["action","united"],["united","states"],["state","action"],["similar","actions"],["civil","rights"],["rights","act"],["v","copacabana"],["copacabana","nightclub"],["corp","f"],["ladies","nights"],["nights","may"],["federal","tax"],["tax","implications"],["implications","though"],["though","us"],["us","v"],["gas","oil"],["oil","f"],["federal","claims"],["also","involved"],["unsuccessful","challenge"],["washington","see"],["california","supreme"],["supreme","court"],["court","ruled"],["ladies","days"],["car","wash"],["ladies","nights"],["nightclub","violate"],["violate","california"],["unruh","civil"],["civil","rights"],["rights","act"],["koire","v"],["v","metro"],["metro","car"],["car","wash"],["wash","koire"],["koire","v"],["v","metro"],["metro","car"],["car","wash"],["wash","p"],["v","century"],["century","supper"],["supper","club"],["v","century"],["century","supper"],["supper","club"],["club","p"],["unruh","act"],["act","provides"],["persons","within"],["equal","accommodations"],["accommodations","advantages"],["advantages","facilities"],["facilities","privileges"],["business","establishments"],["every","kind"],["court","considered"],["statutory","defense"],["defense","thathe"],["substantial","business"],["social","purposes"],["sufficient","defense"],["court","accused"],["wisconsin","supreme"],["supreme","court"],["similar","practice"],["practice","koire"],["koire","held"],["public","policy"],["california","strongly"],["strongly","supports"],["discrimination","based"],["unruh","act"],["act","expressly"],["business","enterprises"],["enterprises","koire"],["koire","concluded"],["sex","based"],["based","price"],["price","discounts"],["unruh","act"],["act","provides"],["objective","standard"],["clearly","stated"],["business","establishments"],["establishments","must"],["sex","strong"],["strong","public"],["public","policy"],["policy","supports"],["supports","application"],["judicial","exception"],["sex","based"],["based","price"],["price","discounts"],["decision","california"],["california","passed"],["gender","tax"],["tax","repeal"],["repeal","act"],["specifically","prohibits"],["pricing","based"],["based","solely"],["ladies","nights"],["nights","nevada"],["nevada","lawyer"],["lawyer","march"],["california","supreme"],["supreme","court"],["court","ruled"],["discrimination","victims"],["treated","equally"],["unruh","act"],["gender","tax"],["tax","repeal"],["repeal","act"],["act","claim"],["claim","courts"],["found","violations"],["unruh","act"],["customer","could"],["could","theoretically"],["theoretically","qualify"],["v","mann"],["mann","theatres"],["theatres","corp"],["california","supreme"],["supreme","court"],["promotional","discounts"],["discounts","come"],["unruh","act"],["business","establishment"],["establishment","might"],["customers","one"],["one","day"],["business","might"],["might","offer"],["patron","could"],["could","satisfy"],["certain","color"],["color","shirt"],["particular","bumper"],["offering","discounts"],["purchasing","commodities"],["making","advance"],["advance","reservations"],["thathe","discounts"],["discounts","must"],["applicable","alike"],["every","sex"],["arbitrary","class"],["class","based"],["day","promotions"],["th","koire"],["lower","court"],["nothe","state"],["state","supreme"],["supreme","court"],["marriage","cases"],["california","proposition"],["marriage","cases"],["ladies","nights"],["anti","discrimination"],["discrimination","provision"],["shop","act"],["act","dock"],["dock","club"],["club","inc"],["inc","v"],["v","illinois"],["illinois","liquor"],["liquor","control"],["ill","app"],["court","determined"],["determined","thathe"],["thathe","discount"],["encourage","women"],["greater","numbers"],["numbers","rather"],["discourage","attendance"],["one","sex"],["admission","tor"],["tor","enjoyment"],["equal","privileges"],["sex","discrimination"],["state","law"],["th","montgomery"],["montgomery","county"],["human","relations"],["relations","law"],["prohibit","ladies"],["ladies","nights"],["court","noted"],["humorous","backdrop"],["must","decide"],["decide","whether"],["business","practice"],["unlawful","discrimination"],["discrimination","within"],["county","ordinance"],["montgomery","county"],["county","code"],["code","human"],["human","relations"],["relations","law"],["law","prohibited"],["person","based"],["race","color"],["color","sex"],["status","religious"],["ancestry","national"],["national","origin"],["sexual","orientation"],["price","quality"],["public","accommodation"],["accommodation","resort"],["appellate","court"],["court","emphasized"],["american","cultural"],["cultural","realities"],["circuit","court"],["conclusion","based"],["based","upon"],["upon","facts"],["facts","presented"],["presented","athearing"],["ladies","night"],["provided","price"],["price","discounts"],["fact","operated"],["ladies","nighthe"],["nighthe","court"],["court","also"],["municipal","ordinance"],["thequal","protection"],["protection","clause"],["united","states"],["montgomery","county"],["county","ordinance"],["maryland","constitution"],["balancing","test"],["test","attempts"],["municipal","governments"],["prevent","ladies"],["ladies","nights"],["sale","liquor"],["liquor","license"],["license","class"],["class","b"],["minnesota","department"],["holding","ladies"],["ladies","night"],["night","promotions"],["ladies","night"],["night","although"],["inevada","two"],["based","pricing"],["pricing","scheme"],["scheme","promotions"],["district","court"],["court","remains"],["equal","rights"],["administrative","level"],["level","therefore"],["cost","benefit"],["benefit","analysis"],["analysis","keeping"],["mind","thathey"],["thathey","might"],["spend","time"],["sex","discrimination"],["discrimination","charge"],["elsewhere","new"],["new","york"],["new","york"],["york","state"],["state","human"],["human","rights"],["rights","appeal"],["new","york"],["ladies","day"],["day","promotion"],["modern","technological"],["technological","society"],["public","policy"],["v","new"],["new","york"],["promotions","violate"],["pennsylvania","human"],["human","relations"],["relations","act"],["unlawful","gender"],["gender","discrimination"],["male","patrons"],["entrance","fee"],["greater","charge"],["female","patrons"],["identical","entrance"],["entrance","fee"],["male","patrons"],["pennsylvania","liquor"],["liquor","control"],["control","board"],["board","v"],["commonwealth","court"],["court","specifically"],["specifically","found"],["female","patron"],["cover","charge"],["go","bar"],["bar","engaged"],["unlawful","gender"],["gender","discrimination"],["pennsylvania","liquor"],["liquor","control"],["control","board"],["board","hastated"],["issue","citations"],["patrons","differing"],["differing","amounts"],["amounts","based"],["gender","see"],["see","liquor"],["liquor","control"],["control","board"],["board","advisory"],["advisory","opinion"],["july","ladies"],["ladies","nights"],["found","noto"],["noto","violate"],["violate","state"],["state","anti"],["anti","discrimination"],["discrimination","law"],["federal","constitution"],["washington","supreme"],["supreme","court"],["court","even"],["stadium","owned"],["v","first"],["first","northwest"],["northwest","industries"],["america","inc"],["inc","p"],["washington","supreme"],["supreme","court"],["court","concluded"],["concluded","thathe"],["state","law"],["parthe","court"],["court","emphasized"],["ruling","evidence"],["evidence","presented"],["thathe","discount"],["many","discounts"],["others","available"],["available","regardless"],["gender","finally"],["majority","noted"],["noted","thato"],["thato","decide"],["decide","important"],["important","constitutional"],["constitutional","questions"],["questions","upon"],["erode","public"],["public","respect"],["thequal","rights"],["rights","amendment"],["serious","goals"],["broader","interpretation"],["applicable","prohibition"],["reinforce","stereotypes"],["stereotypes","one"],["justice","proposed"],["proposed","thathe"],["thathe","practice"],["thequal","rights"],["rights","amendmento"],["promotional","activity"],["nothe","sort"],["argument","could"],["indeed","one"],["kind","exists"],["case","thathe"],["thathe","plain"],["plain","language"],["popular","intent"],["intent","must"],["must","come"],["constitutional","amendment"],["arthe","wisconsin"],["wisconsin","supreme"],["supreme","court"],["promotions","violate"],["violate","state"],["public","accommodation"],["accommodation","law"],["v","madison"],["madison","motel"],["motel","associates"],["wis","app"],["court","noted"],["noted","thathe"],["thathe","text"],["legislative","history"],["sex","race"],["comedy","club"],["strip","bars"],["bars","may"],["may","allow"],["allow","patrons"],["enter","without"],["without","paying"],["fee","withe"],["expectation","thathe"],["thathe","customers"],["buy","alcoholic"],["alcoholic","beverage"],["cover","charge"],["charge","policies"],["policies","may"],["higher","prices"],["cover","charge"],["charge","many"],["many","nightclubs"],["nightclubs","oriented"],["oriented","towards"],["towards","electronic"],["electronic","dance"],["dance","music"],["cover","charge"],["drinking","alcohol"],["alcohol","due"],["mdma","bottles"],["alsoften","priced"],["reduced","sales"],["alcohol","category"],["category","hospitality"],["hospitality","industry"],["industry","category"],["category","payments"]],"all_collocations":["doorman clubouncer","sometimes responsible","cover charge","cover charge","entrance fee","fee sometimes","sometimes charged","bar establishment","establishment bar","nightclub orestaurant","american heritage","heritage dictionary","dictionary defines","fixed amount","amount added","nightclub orestaurant","service cover","cover charge","american heritage","heritage dictionary","thenglish language","language fourth","fourth edition","edition copyright","houghton mifflin","mifflin company","company updated","houghton mifflin","mifflin company","restaurants cover","cover charges","couvert charges","charges generally","cost ofood","bread butter","butter olives","course file","central city","block chinese","setting oct","oct jpg","people sit","setting outhe","oxford english","english dictionary","dictionary defines","cover charge","service added","restaurant oed","oed entry","cover charge","many countries","countries usually","usually described","word equivalento","equivalento cover","cover couvert","couvert coperto","coperto example","oxford spanish","spanish dictionary","restaurant cover","place setting","often referred","cover oed","oed meaning","utensils laid","plate napkin","napkin knife","knife fork","fork spoon","spoon etc","davis dinners","dinners diners","earlier article","mall gazette","six covers","term sometimes","sometimes used","table charge","us dollar","equivalent restaurants","restaurants included","website mainly","cover charge","often said","bread butter","butter olives","olives etc","etc taken","payable whether","english speaking","cover charge","charge isometimes","isometimes described","described withe","withe french","french word","related charge","charge originating","used withis","withis meaning","english since","davis dinners","dinners diners","earlier article","mall gazette","bill three","french word","means table","table setting","cover couvert","french dictionary","dictionary couvert","place setting","setting derived","french past","oed cover","cloth plates","plates knives","knives forks","forks etc","cover charge","manyears certainly","english speaking","speaking countries","later used","illegal bars","bars called","called speakeasy","speakeasy speakeasies","prohibition era","era ban","alcohol manhattan","early example","cover charge","cover charge","charge later","later became","entry charge","food andrink","cover charges","universal many","many restaurants","restaurants make","charge tourist","tourist destinations","destinations may","visitors may","gratuity tips","usually much","much lower","lower internationally","usa without","without cover","cover charge","meal including","including tip","necessarily higher","term cover","cover charge","practice sometimes","sometimes called","cover charge","flat charge","unlimited food","food restaurants","restaurants may","may make","occasionally called","show charge","cover charge","charge legal","legal restrictions","restrictions according","massachusetts law","law subjecto","cafe restaurant","require payment","cover charge","charge unless","least one","minimum charge","cover charge","charge shall","amount children","thirteen may","public safety","good order","order chapter","chapter licenses","licenses theatrical","theatrical exhibitions","exhibitions public","public amusements","cover charge","charge section","person owning","owning managing","cafe restaurant","drinking establishment","establishment shall","shall require","minimum charge","cover charge","charge unless","every entrance","dining room","one inch","height stating","minimum charge","cover charge","charge shall","also stating","charge provided","provided however","person owning","owning managing","cafe restaurant","drinking establishment","establishment shall","shall require","thirteen years","minimum charge","cover charge","thisection shall","fifty dollars","lawas put","secret cover","cover charges","tiny text","menu clubgoers","clubgoers would","cover charge","charge added","first drink","drink order","illinois bars","cover charge","charge unless","fee goes","goes towards","setting entertainment","live band","italian regional","regional government","includes rome","rome began","began requiring","requiring restaurants","cover charge","coperto bread","theuropean union","union ruled","ruled thathe","buthe region","coperto business","business models","models file","px bars","bars often","often impose","cover charge","djs cover","cover charges","charges bars","clubs use","use cover","cover charges","charges use","several reasons","cases popular","popular bars","substantial excess","excess demand","demand patrons","club waiting","gain additional","additional revenue","entrance charge","clubs use","use cover","cover charges","performers cover","cover charges","usually much","much lower","local semi","semi professional","professional bands","better known","known touring","touring bands","otheregions inorth","inorth america","cover charge","local teenage","teenage band","band may","nationally known","known band","recording contract","contract may","jazz clubs","comedy clubs","cover charge","minimum drink","drink requirement","requirement many","many sports","sports bars","cover charge","pay per","per view","pay per","per view","view material","material price","price discrimination","term price","price discrimination","discrimination refers","charging different","different prices","different customers","customers based","different customers","customers bars","bars often","often offer","offer student","student discounts","college students","different willingness","average consumer","consumer due","budget constraints","constraints thus","bar sets","lower price","college students","different cover","cover charges","legal drinking","drinking age","age customers","drink alcohol","cover charge","lower cover","cover charges","university students","student identification","lower cover","cover charges","nightclub organizations","associations cover","cover charge","early arrivals","bars customarily","ladies night","night occasionally","occasionally waive","cover charge","number ofemale","ofemale customers","thereby attract","attract male","male customers","bar usually","usually allows","admitted without","without paying","cover charge","bouncer doorman","doorman bouncer","bouncer may","may waive","cover charge","regular customers","usually purchase","large number","cover charge","illegal action","action akin","entitled revenue","revenue sharing","performers bars","different policies","cover charge","withe performers","performers different","different revenue","revenue sharing","sharing agreements","different performers","revenue sharing","sharing arrangements","arrangements range","performers retaining","money collected","cover charge","cover charge","revenue sharing","sharing arrangements","arrangements occurs","bar also","also gives","alcohol sales","bars may","may also","also agree","bar promises","certain amount","amount even","amount collected","collected athe","athe door","door luxury","luxury cover","cover charges","charges luxury","luxury clubs","unusual architecture","interior design","unique atmosphere","atmosphere sometimes","cover charges","charges even","cover charge","charge simply","simply contributes","example mike","disco dining","dining palace","cover charge","club lounge","cover charge","high end","luxury bars","yearly membership","membership fees","annual cover","cover charges","example frederick","year membership","annual membership","membership fee","core club","membership fee","annual fees","table charges","customer agrees","minimum amount","cover charge","entrance fee","cover charge","bars use","retain customers","thathe customers","buy drinks","female customers","customers bars","bars often","women policy","policy sometimes","ladies night","discrimination discriminatory","united states","ladies night","promotion marketing","marketing promotional","promotional event","event often","bar establishment","establishment bar","female patrons","patrons pay","pay less","male patrons","cover charge","california maryland","maryland pennsylvaniand","pennsylvaniand wisconsin","ladies night","night discounts","unlawful gender","gender discrimination","local statutes","statutes however","however courts","washington ustate","ustate washington","discounts claims","ladies nights","thequal protection","protection clause","united states","states constitution","state action","action united","united states","state action","similar actions","civil rights","rights act","v copacabana","copacabana nightclub","corp f","ladies nights","nights may","federal tax","tax implications","implications though","though us","us v","gas oil","oil f","federal claims","also involved","unsuccessful challenge","washington see","california supreme","supreme court","court ruled","ladies days","car wash","ladies nights","nightclub violate","violate california","unruh civil","civil rights","rights act","koire v","v metro","metro car","car wash","wash koire","koire v","v metro","metro car","car wash","wash p","v century","century supper","supper club","v century","century supper","supper club","club p","unruh act","act provides","persons within","equal accommodations","accommodations advantages","advantages facilities","facilities privileges","business establishments","every kind","court considered","statutory defense","defense thathe","substantial business","social purposes","sufficient defense","court accused","wisconsin supreme","supreme court","similar practice","practice koire","koire held","public policy","california strongly","strongly supports","discrimination based","unruh act","act expressly","business enterprises","enterprises koire","koire concluded","sex based","based price","price discounts","unruh act","act provides","objective standard","clearly stated","business establishments","establishments must","sex strong","strong public","public policy","policy supports","supports application","judicial exception","sex based","based price","price discounts","decision california","california passed","gender tax","tax repeal","repeal act","specifically prohibits","pricing based","based solely","ladies nights","nights nevada","nevada lawyer","lawyer march","california supreme","supreme court","court ruled","discrimination victims","treated equally","unruh act","gender tax","tax repeal","repeal act","act claim","claim courts","found violations","unruh act","customer could","could theoretically","theoretically qualify","v mann","mann theatres","theatres corp","california supreme","supreme court","promotional discounts","discounts come","unruh act","business establishment","establishment might","customers one","one day","business might","might offer","patron could","could satisfy","certain color","color shirt","particular bumper","offering discounts","purchasing commodities","making advance","advance reservations","thathe discounts","discounts must","applicable alike","every sex","arbitrary class","class based","day promotions","th koire","lower court","nothe state","state supreme","supreme court","marriage cases","california proposition","marriage cases","ladies nights","anti discrimination","discrimination provision","shop act","act dock","dock club","club inc","inc v","v illinois","illinois liquor","liquor control","ill app","court determined","determined thathe","thathe discount","encourage women","greater numbers","numbers rather","discourage attendance","one sex","admission tor","tor enjoyment","equal privileges","sex discrimination","state law","th montgomery","montgomery county","human relations","relations law","prohibit ladies","ladies nights","court noted","humorous backdrop","must decide","decide whether","business practice","unlawful discrimination","discrimination within","county ordinance","montgomery county","county code","code human","human relations","relations law","law prohibited","person based","race color","color sex","status religious","ancestry national","national origin","sexual orientation","price quality","public accommodation","accommodation resort","appellate court","court emphasized","american cultural","cultural realities","circuit court","conclusion based","based upon","upon facts","facts presented","presented athearing","ladies night","provided price","price discounts","fact operated","ladies nighthe","nighthe court","court also","municipal ordinance","thequal protection","protection clause","united states","montgomery county","county ordinance","maryland constitution","balancing test","test attempts","municipal governments","prevent ladies","ladies nights","sale liquor","liquor license","license class","class b","minnesota department","holding ladies","ladies night","night promotions","ladies night","night although","inevada two","based pricing","pricing scheme","scheme promotions","district court","court remains","equal rights","administrative level","level therefore","cost benefit","benefit analysis","analysis keeping","mind thathey","thathey might","spend time","sex discrimination","discrimination charge","elsewhere new","new york","new york","york state","state human","human rights","rights appeal","new york","ladies day","day promotion","modern technological","technological society","public policy","v new","new york","promotions violate","pennsylvania human","human relations","relations act","unlawful gender","gender discrimination","male patrons","entrance fee","greater charge","female patrons","identical entrance","entrance fee","male patrons","pennsylvania liquor","liquor control","control board","board v","commonwealth court","court specifically","specifically found","female patron","cover charge","go bar","bar engaged","unlawful gender","gender discrimination","pennsylvania liquor","liquor control","control board","board hastated","issue citations","patrons differing","differing amounts","amounts based","gender see","see liquor","liquor control","control board","board advisory","advisory opinion","july ladies","ladies nights","found noto","noto violate","violate state","state anti","anti discrimination","discrimination law","federal constitution","washington supreme","supreme court","court even","stadium owned","v first","first northwest","northwest industries","america inc","inc p","washington supreme","supreme court","court concluded","concluded thathe","state law","parthe court","court emphasized","ruling evidence","evidence presented","thathe discount","many discounts","others available","available regardless","gender finally","majority noted","noted thato","thato decide","decide important","important constitutional","constitutional questions","questions upon","erode public","public respect","thequal rights","rights amendment","serious goals","broader interpretation","applicable prohibition","reinforce stereotypes","stereotypes one","justice proposed","proposed thathe","thathe practice","thequal rights","rights amendmento","promotional activity","nothe sort","argument could","indeed one","kind exists","case thathe","thathe plain","plain language","popular intent","intent must","must come","constitutional amendment","arthe wisconsin","wisconsin supreme","supreme court","promotions violate","violate state","public accommodation","accommodation law","v madison","madison motel","motel associates","wis app","court noted","noted thathe","thathe text","legislative history","sex race","comedy club","strip bars","bars may","may allow","allow patrons","enter without","without paying","fee withe","expectation thathe","thathe customers","buy alcoholic","alcoholic beverage","cover charge","charge policies","policies may","higher prices","cover charge","charge many","many nightclubs","nightclubs oriented","oriented towards","towards electronic","electronic dance","dance music","cover charge","drinking alcohol","alcohol due","mdma bottles","alsoften priced","reduced sales","alcohol category","category hospitality","hospitality industry","industry category","category payments"],"new_description":"image doorman clubouncer sometimes responsible collecting cover_charge cover_charge entrance fee sometimes charged bar_establishment_bar nightclub orestaurant american heritage dictionary defines fixed amount added bill nightclub orestaurant entertainment service cover_charge american heritage dictionary thenglish_language fourth_edition copyright houghton mifflin company updated published houghton mifflin company restaurants cover_charges couvert charges generally include cost ofood ordered somestablishments include cost bread butter olives provided matter course file central city block chinese setting oct jpg thumb right px group people sit table restaurant restaurants charge guest order food charge service setting outhe napkin cutlery oxford_english_dictionary defines cover_charge charge service added restaurant oed entry cover_charge charge made many_countries usually described word equivalento cover couvert coperto example use coperto italian oxford spanish dictionary restaurant cover place setting restaurant english_languages often_referred cover oed meaning cover utensils laid person use plate napkin knife fork spoon etc davis dinners diners collected earlier article mall gazette menu dinner six covers dinner languages term sometimes used us table charge charge typically us dollar equivalent restaurants included website mainly uk levy cover_charge one ten us although charge often said bread butter olives etc taken table payable whether restaurants english_speaking menu french otherestaurants cover_charge isometimes described withe french word term related charge originating france used withis meaning english since least davis dinners diners collected earlier article mall gazette bill three caviar french word means table setting past cover couvert french dictionary couvert cover sense place setting derived french past according oed cover french covering furniture table prince cloth plates knives forks etc table covered laid portion couvert cover_charge manyears certainly english_speaking countries concept term later used us illegal bars called speakeasy speakeasies prohibition era ban alcohol manhattan texas tex early example cover_charge patrons us cover_charge later_became entry charge entertainment food_andrink provided carries entertainment countries cover_charges made practice far universal many_restaurants make charge tourist_destinations may likely make charge visitors may gratuity tips usually much lower internationally typical restaurants usa without cover_charge total meal including tip necessarily higher term cover_charge used cases practice sometimes_called cover_charge usa make flat charge unlimited food_restaurants may make charge diners book fail show occasionally called cover restaurant calls show charge cover_charge legal restrictions according massachusetts law subjecto penalty cafe restaurant bar require payment minimum cover_charge unless sign posted least_one minimum charge cover_charge shall charged indicating amount children thirteen may public safety good order chapter licenses theatrical exhibitions public amusements section minimum cover_charge section common person owning managing controlling cafe restaurant eating drinking_establishment shall require person pay minimum charge cover_charge unless sign posted every entrance dining_room required letters less one inch height stating minimum charge cover_charge shall charged also stating amount charge provided however common person owning managing controlling cafe restaurant eating drinking_establishment shall require person thirteen years age pay minimum charge cover_charge thisection shall punished fine fifty dollars lawas put place resolve problem secret cover_charges indicated tiny text menu clubgoers would find cover_charge added first drink order illinois bars cannot impose cover_charge unless fee goes towards cost setting entertainment live band italian regional government includes rome began requiring restaurants region remove cover_charge coperto bread cover bills theuropean_union ruled thathe buthe region continuing try practice coperto business_models file beta thumb right px bars often impose cover_charge thexpense paying djs cover_charges bars clubs use cover_charges use several reasons cases popular bars clubs substantial excess demand patrons lined outside club waiting get case club gain additional revenue customers requiring entrance charge bars clubs use cover_charges cover costs hiring performers cover_charges usually much lower local semi professional bands entertainers better_known touring bands otheregions inorth_america cover_charge performance local teenage band may low dollars show nationally known band recording contract may cover jazz_clubs comedy clubs cover_charge minimum drink requirement many sports bars cover_charge showing boxing pay_per view help costs ordering pay_per view material price discrimination economics term price discrimination refers charging different prices different customers based anticipated demand demand different customers bars often offer student discounts university college_students different willingness pay average consumer due budget constraints thus bar sets lower price entry university college_students students demand bars different cover_charges legal drinking_age customers minors may purchase drink alcohol cover_charge cover bars lower cover_charges college university students student identification lower cover_charges members club nightclub organizations associations cover_charge clubs early arrivals midnight people food club hotel hotel bars customarily ladies night occasionally waive cover_charge women hopes increase number ofemale customers thereby attract male customers well bar usually allows band performers provide list guests admitted without paying cover_charge guest bouncer_doorman bouncer may waive cover_charge regular customers usually purchase large_number drinks well waive cover_charge friends could described even illegal action akin theft bouncer employer revenue entitled revenue sharing performers bars clubs different policies cover_charge withe performers different revenue sharing agreements different performers range revenue sharing arrangements range band performers retaining money collected cover_charge split bar band arrangements cover_charge variant revenue sharing arrangements occurs cases bar_also gives band share bar alcohol sales bars_may_also agree guarantee bar promises pay band certain amount even less amount collected athe door luxury cover_charges luxury clubs unusual architecture interior design unique atmosphere sometimes cover_charges even cases cover_charge simply contributes club profits example mike broadway disco dining palace cover_charge james restaurant club lounge cover_charge high_end luxury bars nightclubs yearly membership fees interpreted annual cover_charges example frederick year membership lounge annual membership fee core club membership fee variant annual fees table charges nightclubs customer agrees spend minimum amount order reserve table club thevening cover_charge bars clubs charge entrance fee indicated cover cover_charge bars use draw retain customers thestablishment thathe customers buy drinks attract female customers bars often cover women policy sometimes ladies night cases policies challenged lawsuits discrimination discriminatory illegal jurisdictions united_states ladies night promotion marketing promotional event often bar_establishment_bar nightclub female patrons pay less male patrons cover_charge courts california maryland pennsylvaniand wisconsin ruled ladies night discounts unlawful gender discrimination state local statutes however courts illinois washington ustate washington rejected variety challenges discounts claims ladies nights thequal protection clause amendmento united_states constitution failed state action united_states state action v similar actions failed civil_rights act v copacabana nightclub v corp f th ladies nights may federal tax implications though us v gas oil f th federal claims also involved unsuccessful challenge washington see california supreme_court ruled ladies days car wash ladies nights nightclub violate california unruh civil_rights act koire v metro car wash koire v metro car wash p cand v century supper_club v century supper_club p unruh act provides persons within jurisdiction free equal matter sex full equal accommodations advantages facilities privileges services business establishments every kind court considered statutory defense thathe substantial business social purposes concluded merely profitable sufficient defense court accused wisconsin supreme_court sexual similar practice koire held public policy california strongly supports discrimination based sex unruh act expressly discrimination business enterprises koire concluded legality sex based price discounts cannot depend value types sex important harmful language unruh act provides clear objective standard determine legality practices issue legislature clearly stated business establishments must advantages privileges customers matter sex strong public policy supports application act case advanced convincing court judicial exception sex based price discounts act respected decision california passed gender tax repeal act specifically prohibits pricing based solely customer van death ladies nights nevada lawyer march california supreme_court ruled discrimination victims ask business treated equally order standing file unruh act gender tax repeal act claim courts found violations unruh act discounts customer could theoretically qualify v mann theatres corp california supreme_court multitude promotional discounts come mind clearly unruh act example business establishment might rates customers one_day week business might offer customer meets condition patron could satisfy presenting sporting certain color shirt particular bumper business offering discounts purchasing commodities quantity making advance reservations key thathe discounts must applicable alike persons every sex instead contingent arbitrary class based koire extended strike mother day promotions v colleges th koire one cited lower court nothe state supreme_court marriage cases overturned california proposition marriage cases ladies nights illinois upheld anti discrimination provision shop act dock club inc v illinois liquor control ill app court determined thathe discount intended encourage women attend bar greater numbers rather discourage attendance e exclusion one sex admission tor enjoyment equal privileges places accommodation entertainment sex discrimination state law th montgomery county human relations law interpreted prohibit ladies nights also customer given discount wearing v app court noted humorous backdrop must decide whether business practice unlawful discrimination within meaning county ordinance montgomery county code human relations law prohibited distinction respecto person based race color sex status religious ancestry national origin sexual orientation connection admission service sales price quality use facility service place public accommodation resort amusement county maryland appellate court far de court emphasized although believe judge findings american cultural realities need focus circuit court agency conclusion based_upon facts presented athearing record evidence intended andid serve function ladies night provided price discounts women fact operated ladies nighthe court also municipal ordinance interpreting believe ordinance thus allowed thequal protection clause amendmento constitution united_states allowed montgomery county ordinance maryland constitution engage balancing test attempts municipal governments prevent ladies nights struck ultra sale liquor license class b app june minnesota department human bars males holding ladies night promotions said seek bars ladies night although question inevada two advise time exercise based pricing scheme promotions ability claim district court remains equal rights ability pursue claims administrative level therefore engage cost benefit analysis keeping mind thathey might spend time resources sex discrimination charge front elsewhere new_york new_york state human_rights appeal new_york ladies day promotion originated modern technological society women men equal matter public policy v new_york inc appeal promotions violate pennsylvania human relations act unlawful gender discrimination male patrons charged entrance fee greater charge drinks female patrons charged identical entrance fee charge drinks male patrons pennsylvania liquor control board v commonwealth court specifically found female patron cover_charge go bar engaged unlawful gender discrimination commonwealth pennsylvania liquor control board hastated recently issue citations establishments patrons differing amounts based gender see liquor control board advisory opinion july ladies nights found noto violate state anti discrimination law federal constitution washington supreme_court even held stadium owned city v first northwest industries america inc p washington supreme_court concluded thathe discrimination men class damage consequence right action state law discrimination parthe court emphasized ruling evidence presented trial women interest basketball men thathe discount one many discounts promotions others available regardless gender finally majority noted thato decide important constitutional questions upon would erode public respect thequal rights amendment promote serious goals adopted emphasized broader interpretation applicable prohibition potential promotions reinforce stereotypes one justice proposed thathe allowed damages thathe practice concluded may application thequal rights amendmento promotional activity nothe sort thing voters mind adopted equally argument could made price based sex indeed one number activities hoped end idle evidence kind exists see escape finding case thathe plain language art activity popular intent must come process constitutional amendment court arthe wisconsin supreme_court held promotions violate state public accommodation law v madison motel associates wis app court noted_thathe text legislative history permitted distinction sex race forms discrimination comedy club strip bars_may allow patrons enter without paying fee withe expectation thathe customers buy alcoholic_beverage inside bars cover_charge policies may higher prices snacks beer make lack cover_charge many nightclubs oriented towards electronic_dance_music cover_charge cases many patrons drinking alcohol due use drugsuch mdma bottles water alsoften priced loss revenue reduced sales alcohol category_hospitality_industry category payments"},{"title":"Croatian National Tourist Board","description":"nativename a nativename r logo croatianational tourist boardjpeg logo width logo caption seal width seal caption formed preceding dissolved superseding jurisdiction headquarters iblerov trg zagreb croatia employees budget minister name minister pfo chief name ratomir ivi chief position director chief name chief position parent agency child agency child agency website footnotes the croatianational tourist board or htz is croatia s national tourist organization founded with a view to promoting and creating the identity and to enhance the reputation of croatian tourism the mission also includes the planning and implementation of a common strategy and the conception of its promotion proposal and the performance of promotional activities of mutual interest for all subjects in tourism in the country and abroad as well as raising the overall quality of the whole range of tourist services on offer in the republic of croatia its headquarters is located in zagreb foreigners flocking to fifth avenue real estate weekly june home page croatianational tourist board retrieved september externalinks category government agenciestablished in category government agencies of croatia category tourism agencies category tourism in croatia category establishments in croatia category business organizations based in croatia","main_words":["nativename","nativename","r","logo","tourist","logo","width","logo","caption","seal","width","seal","caption","formed","preceding_dissolved_superseding_jurisdiction","headquarters","zagreb","croatia","position","director","chief_name_chief","position_parent_agency_child","agency_child","agency_website_footnotes","tourist_board","croatia","national_tourist","organization","founded","view","promoting","creating","identity","enhance","reputation","croatian","tourism","mission","also_includes","planning","implementation","common","strategy","conception","promotion","proposal","performance","promotional","activities","mutual","interest","subjects","tourism","country","abroad","well","raising","overall","quality","whole","range","tourist","services","offer","republic","croatia","headquarters","located","zagreb","foreigners","fifth","avenue","real_estate","weekly","june","home","page","tourist_board","retrieved","september","externalinks_category","category_government","agencies","croatia","category_tourism","agencies_category_tourism","croatia","category_establishments","croatia","category","business","organizations_based","croatia"],"clean_bigrams":[["nativename","r"],["r","logo"],["logo","width"],["width","logo"],["logo","caption"],["caption","seal"],["seal","width"],["width","seal"],["seal","caption"],["caption","formed"],["formed","preceding"],["preceding","dissolved"],["dissolved","superseding"],["superseding","jurisdiction"],["jurisdiction","headquarters"],["zagreb","croatia"],["croatia","employees"],["employees","budget"],["budget","minister"],["minister","name"],["name","minister"],["minister","pfo"],["pfo","chief"],["chief","name"],["name","chief"],["chief","position"],["position","director"],["director","chief"],["chief","name"],["name","chief"],["chief","position"],["position","parent"],["parent","agency"],["agency","child"],["child","agency"],["agency","child"],["child","agency"],["agency","website"],["website","footnotes"],["tourist","board"],["national","tourist"],["tourist","organization"],["organization","founded"],["croatian","tourism"],["mission","also"],["also","includes"],["common","strategy"],["promotion","proposal"],["promotional","activities"],["mutual","interest"],["overall","quality"],["whole","range"],["tourist","services"],["zagreb","foreigners"],["fifth","avenue"],["avenue","real"],["real","estate"],["estate","weekly"],["weekly","june"],["june","home"],["home","page"],["tourist","board"],["board","retrieved"],["retrieved","september"],["september","externalinks"],["externalinks","category"],["category","government"],["government","agenciestablished"],["category","government"],["government","agencies"],["croatia","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["croatia","category"],["category","establishments"],["croatia","category"],["category","business"],["business","organizations"],["organizations","based"]],"all_collocations":["nativename r","r logo","logo width","width logo","logo caption","caption seal","seal width","width seal","seal caption","caption formed","formed preceding","preceding dissolved","dissolved superseding","superseding jurisdiction","jurisdiction headquarters","zagreb croatia","croatia employees","employees budget","budget minister","minister name","name minister","minister pfo","pfo chief","chief name","name chief","chief position","position director","director chief","chief name","name chief","chief position","position parent","parent agency","agency child","child agency","agency child","child agency","agency website","website footnotes","tourist board","national tourist","tourist organization","organization founded","croatian tourism","mission also","also includes","common strategy","promotion proposal","promotional activities","mutual interest","overall quality","whole range","tourist services","zagreb foreigners","fifth avenue","avenue real","real estate","estate weekly","weekly june","june home","home page","tourist board","board retrieved","retrieved september","september externalinks","externalinks category","category government","government agenciestablished","category government","government agencies","croatia category","category tourism","tourism agencies","agencies category","category tourism","croatia category","category establishments","croatia category","category business","business organizations","organizations based"],"new_description":"nativename nativename r logo tourist logo width logo caption seal width seal caption formed preceding_dissolved_superseding_jurisdiction headquarters zagreb croatia employees_budget_minister_name_minister_pfo_chief_name_chief position director chief_name_chief position_parent_agency_child agency_child agency_website_footnotes tourist_board croatia national_tourist organization founded view promoting creating identity enhance reputation croatian tourism mission also_includes planning implementation common strategy conception promotion proposal performance promotional activities mutual interest subjects tourism country abroad well raising overall quality whole range tourist services offer republic croatia headquarters located zagreb foreigners fifth avenue real_estate weekly june home page tourist_board retrieved september externalinks_category government_agenciestablished category_government agencies croatia category_tourism agencies_category_tourism croatia category_establishments croatia category business organizations_based croatia"},{"title":"Crooked Road, Virginia","description":"the crooked road is a heritage trail in southwestern virginia that explores the musical history of the region along southwest virginia s blue ridge and cumberland mountains the crooked road winds through almost miles of scenic terrain southwest virginia including counties four cities and towns the crooked road musical heritage the crooked road celebrates the musical heritage of western virginiand southwest virginiand appalachian music with old time music folk music bluegrass music it also celebrates traditional dance such as clogging buck dancing square dance and other traditional dancesinging and music there are major venues in virginia to showcase the crooked trail including theartwood the southwest virginiartisan gateway in abingdon virginiand the ralph stanley museum in clintwood virginia the idea for virginia s crooked road began to germinate in the minds of virginians in january a number of public officials musicians and others were interested in an economic development strategy for the appalachian region of southwestern virginiand they wanted to draw on the region s rich musical heritage over time the project grew and today it includes ten counties three cities ten towns and four state agencies the crooked road virginia s heritage music trail the crooked road nd the crooked road starts in and goes through southwestern virginia from rocky mount virginia to breaks interstate park on the virginia border the counties the crooked road passes through include carroll county virginia dickinson county virginia floyd county virginia franklin county virginia grayson county virginia patrick county virginia scott county virginia wise county virginiand washington county virginia crooked road map abrahamichael harmonic highways motorcycling virginia s crooked road blacksburg va pocahontas press pages illustrations maps portraits chaney ryan straightening the crooked road ethnography no the crooked road virginia s heritage music trail the crooked road nd crooked road virginia s heritage music trail the crooked road a treasury of american music abingdon va the crooked road summary the songs and tunes collected here were selected from cd recordings currently being sold by artists who live along the crooked road in southwest virginia s blue ridge and cumberland mountains going down the crooked road roanoke va roanoke times mcneill kylene barker et al christmas along the crooked road summary featurestellar musicians from southwest virginiand northwest north carolina performing some of their favorite holiday songs new and old in bluegrass oldtime and mountain style notes by kylene barker mcneill andebbie robinson biographical information abouthe musicians credits andurations on container insert national council for the traditional arts music from the crooked road mountain music of virginia national tour celebrating the living musical culture of southwest virginia silver spring md ncta notes presented with major support from the crooked road virginia s heritage music trail the virginia tourism corporation the national endowment for the arts a national tour of old time bluegrass mountain gospel and flatfoot dance featuring sammy shelor wayne henderson the whitetop mountain band elizabeth laprelle kirk sutphin eddie bond no speed limit saffle michael perpetuating the culture of musical memories virginia s crooked road musik und erinnern skeens betty and libby bondurant grazing along the crooked road recipes and stories past and present pounding mill va henderson publishing notes first edition october second edition april map of the crooked road virginia s heritage music trail on lining papers in memory of betty skeens thornton tim blazing new trails the crooked road offers a model for promoting a scenic region virginia business no virginia s heritage music trail the crooked road virginia s heritage music trail abingdon va virginia s heritage music trail notes cover title visitor guide cover a place of beauty a place of song this the crooked road an authentic music that has been preserved by the region s musicians for generations externalinks the crooked road the crooked road category appalachian culture category appalachian musicategory appalachian folk songs category bluegrass musicategory old time musicategory american folk dances category dances of the united states category performing arts in virginia category dance in virginia category heritage trails category cultural tourism","main_words":["crooked","road","heritage","trail","southwestern","virginia","explores","musical","history","region","along","southwest","virginia","blue","ridge","cumberland","mountains","crooked_road","winds","almost","miles","scenic","terrain","southwest","virginia","including","counties","four","cities","towns","crooked_road","musical","heritage","crooked_road","celebrates","musical","heritage","western","virginiand","southwest","virginiand","appalachian","music","old","time","music","folk","music","bluegrass","music","also","celebrates","traditional","dance","buck","dancing","square","dance","traditional","music","major","venues","virginia","showcase","crooked","trail","including","southwest","gateway","abingdon","virginiand","ralph","stanley","museum","virginia","idea","virginia","crooked_road","began","minds","january","number","public","officials","musicians","others","interested","economic_development","strategy","appalachian","region","southwestern","virginiand","wanted","draw","region","rich","musical","heritage","time","project","grew","today","includes","ten","counties","three","cities","ten","towns","four","state","agencies","crooked_road","virginia","heritage","music","trail","crooked_road","crooked_road","starts","goes","southwestern","virginia","rocky","mount","virginia","breaks","interstate","park","virginia","border","counties","crooked_road","passes","include","carroll","county_virginia","county_virginia","county_virginia","franklin","county_virginia","county_virginia","patrick","county_virginia","scott","county_virginia","wise","washington","county_virginia","crooked_road","map","highways","virginia","crooked_road","press_pages","illustrations","maps","portraits","chaney","ryan","crooked_road","ethnography","crooked_road","virginia","heritage","music","trail","crooked_road","crooked_road","virginia","heritage","music","trail","crooked_road","treasury","american","music","abingdon","crooked_road","summary","songs","tunes","collected","selected","recordings","currently","sold","artists","live","along","crooked_road","southwest","virginia","blue","ridge","cumberland","mountains","going","crooked_road","roanoke","roanoke","times","barker","christmas","along","crooked_road","summary","musicians","southwest","virginiand","northwest","north_carolina","performing","favorite","holiday","songs","new","old","bluegrass","mountain","style","notes","barker","robinson","biographical","information_abouthe","musicians","credits","container","national","council","traditional","arts","music","crooked_road","mountain","music","virginia","national","tour","celebrating","living","musical","culture","southwest","virginia","silver","spring","notes","presented","major","support","crooked_road","virginia","heritage","music","trail","virginia","tourism","corporation","national","endowment","arts","national","tour","old","time","bluegrass","mountain","dance","featuring","sammy","wayne","henderson","mountain","band","elizabeth","kirk","eddie","bond","speed","limit","michael","culture","musical","memories","virginia","crooked_road","und","betty","grazing","along","crooked_road","recipes","stories","past","present","mill","henderson","publishing","notes","first_edition","october","second","edition","april","map","crooked_road","virginia","heritage","music","trail","lining","papers","memory","betty","tim","new","trails","crooked_road","offers","model","promoting","scenic","region","virginia","business","virginia","heritage","music","trail","crooked_road","virginia","heritage","music","trail","abingdon","virginia","heritage","music","trail","notes","cover","title","visitor","guide","cover","place","beauty","place","song","crooked_road","authentic","music","preserved","region","musicians","generations","externalinks","crooked_road","crooked_road","category","appalachian","culture_category","appalachian","musicategory","appalachian","folk","songs","category","bluegrass","musicategory","old","time","musicategory","american","folk","dances","united_states","category","performing","arts","virginia","category_dance","virginia","category","heritage","trails","category_cultural_tourism"],"clean_bigrams":[["crooked","road"],["heritage","trail"],["southwestern","virginia"],["musical","history"],["region","along"],["along","southwest"],["southwest","virginia"],["blue","ridge"],["cumberland","mountains"],["crooked","road"],["road","winds"],["almost","miles"],["scenic","terrain"],["terrain","southwest"],["southwest","virginia"],["virginia","including"],["including","counties"],["counties","four"],["four","cities"],["crooked","road"],["road","musical"],["musical","heritage"],["crooked","road"],["road","celebrates"],["musical","heritage"],["western","virginiand"],["virginiand","southwest"],["southwest","virginiand"],["virginiand","appalachian"],["appalachian","music"],["old","time"],["time","music"],["music","folk"],["folk","music"],["music","bluegrass"],["bluegrass","music"],["also","celebrates"],["celebrates","traditional"],["traditional","dance"],["buck","dancing"],["dancing","square"],["square","dance"],["major","venues"],["crooked","trail"],["trail","including"],["abingdon","virginiand"],["ralph","stanley"],["stanley","museum"],["virginia","crooked"],["crooked","road"],["road","began"],["public","officials"],["officials","musicians"],["economic","development"],["development","strategy"],["appalachian","region"],["southwestern","virginiand"],["rich","musical"],["musical","heritage"],["project","grew"],["includes","ten"],["ten","counties"],["counties","three"],["three","cities"],["cities","ten"],["ten","towns"],["four","state"],["state","agencies"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["crooked","road"],["crooked","road"],["road","starts"],["southwestern","virginia"],["rocky","mount"],["mount","virginia"],["breaks","interstate"],["interstate","park"],["virginia","border"],["crooked","road"],["road","passes"],["include","carroll"],["carroll","county"],["county","virginia"],["county","virginia"],["county","virginia"],["virginia","franklin"],["franklin","county"],["county","virginia"],["county","virginia"],["virginia","patrick"],["patrick","county"],["county","virginia"],["virginia","scott"],["scott","county"],["county","virginia"],["virginia","wise"],["wise","county"],["county","virginiand"],["virginiand","washington"],["washington","county"],["county","virginia"],["virginia","crooked"],["crooked","road"],["road","map"],["virginia","crooked"],["crooked","road"],["press","pages"],["pages","illustrations"],["illustrations","maps"],["maps","portraits"],["portraits","chaney"],["chaney","ryan"],["crooked","road"],["road","ethnography"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["crooked","road"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["crooked","road"],["american","music"],["music","abingdon"],["crooked","road"],["road","summary"],["tunes","collected"],["recordings","currently"],["live","along"],["crooked","road"],["southwest","virginia"],["blue","ridge"],["cumberland","mountains"],["mountains","going"],["crooked","road"],["road","roanoke"],["roanoke","times"],["christmas","along"],["crooked","road"],["road","summary"],["southwest","virginiand"],["virginiand","northwest"],["northwest","north"],["north","carolina"],["carolina","performing"],["favorite","holiday"],["holiday","songs"],["songs","new"],["bluegrass","mountain"],["mountain","style"],["style","notes"],["robinson","biographical"],["biographical","information"],["information","abouthe"],["abouthe","musicians"],["musicians","credits"],["national","council"],["traditional","arts"],["arts","music"],["crooked","road"],["road","mountain"],["mountain","music"],["virginia","national"],["national","tour"],["tour","celebrating"],["living","musical"],["musical","culture"],["southwest","virginia"],["virginia","silver"],["silver","spring"],["notes","presented"],["major","support"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["virginia","tourism"],["tourism","corporation"],["national","endowment"],["national","tour"],["old","time"],["time","bluegrass"],["bluegrass","mountain"],["dance","featuring"],["featuring","sammy"],["wayne","henderson"],["mountain","band"],["band","elizabeth"],["eddie","bond"],["speed","limit"],["musical","memories"],["memories","virginia"],["virginia","crooked"],["crooked","road"],["grazing","along"],["crooked","road"],["road","recipes"],["stories","past"],["henderson","publishing"],["publishing","notes"],["notes","first"],["first","edition"],["edition","october"],["october","second"],["second","edition"],["edition","april"],["april","map"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["lining","papers"],["new","trails"],["crooked","road"],["road","offers"],["scenic","region"],["region","virginia"],["virginia","business"],["heritage","music"],["music","trail"],["crooked","road"],["road","virginia"],["heritage","music"],["music","trail"],["trail","abingdon"],["heritage","music"],["music","trail"],["trail","notes"],["notes","cover"],["cover","title"],["title","visitor"],["visitor","guide"],["guide","cover"],["crooked","road"],["authentic","music"],["generations","externalinks"],["crooked","road"],["crooked","road"],["road","category"],["category","appalachian"],["appalachian","culture"],["culture","category"],["category","appalachian"],["appalachian","musicategory"],["musicategory","appalachian"],["appalachian","folk"],["folk","songs"],["songs","category"],["category","bluegrass"],["bluegrass","musicategory"],["musicategory","old"],["old","time"],["time","musicategory"],["musicategory","american"],["american","folk"],["folk","dances"],["dances","category"],["category","dances"],["united","states"],["states","category"],["category","performing"],["performing","arts"],["virginia","category"],["category","dance"],["virginia","category"],["category","heritage"],["heritage","trails"],["trails","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["crooked road","heritage trail","southwestern virginia","musical history","region along","along southwest","southwest virginia","blue ridge","cumberland mountains","crooked road","road winds","almost miles","scenic terrain","terrain southwest","southwest virginia","virginia including","including counties","counties four","four cities","crooked road","road musical","musical heritage","crooked road","road celebrates","musical heritage","western virginiand","virginiand southwest","southwest virginiand","virginiand appalachian","appalachian music","old time","time music","music folk","folk music","music bluegrass","bluegrass music","also celebrates","celebrates traditional","traditional dance","buck dancing","dancing square","square dance","major venues","crooked trail","trail including","abingdon virginiand","ralph stanley","stanley museum","virginia crooked","crooked road","road began","public officials","officials musicians","economic development","development strategy","appalachian region","southwestern virginiand","rich musical","musical heritage","project grew","includes ten","ten counties","counties three","three cities","cities ten","ten towns","four state","state agencies","crooked road","road virginia","heritage music","music trail","crooked road","crooked road","road starts","southwestern virginia","rocky mount","mount virginia","breaks interstate","interstate park","virginia border","crooked road","road passes","include carroll","carroll county","county virginia","county virginia","county virginia","virginia franklin","franklin county","county virginia","county virginia","virginia patrick","patrick county","county virginia","virginia scott","scott county","county virginia","virginia wise","wise county","county virginiand","virginiand washington","washington county","county virginia","virginia crooked","crooked road","road map","virginia crooked","crooked road","press pages","pages illustrations","illustrations maps","maps portraits","portraits chaney","chaney ryan","crooked road","road ethnography","crooked road","road virginia","heritage music","music trail","crooked road","crooked road","road virginia","heritage music","music trail","crooked road","american music","music abingdon","crooked road","road summary","tunes collected","recordings currently","live along","crooked road","southwest virginia","blue ridge","cumberland mountains","mountains going","crooked road","road roanoke","roanoke times","christmas along","crooked road","road summary","southwest virginiand","virginiand northwest","northwest north","north carolina","carolina performing","favorite holiday","holiday songs","songs new","bluegrass mountain","mountain style","style notes","robinson biographical","biographical information","information abouthe","abouthe musicians","musicians credits","national council","traditional arts","arts music","crooked road","road mountain","mountain music","virginia national","national tour","tour celebrating","living musical","musical culture","southwest virginia","virginia silver","silver spring","notes presented","major support","crooked road","road virginia","heritage music","music trail","virginia tourism","tourism corporation","national endowment","national tour","old time","time bluegrass","bluegrass mountain","dance featuring","featuring sammy","wayne henderson","mountain band","band elizabeth","eddie bond","speed limit","musical memories","memories virginia","virginia crooked","crooked road","grazing along","crooked road","road recipes","stories past","henderson publishing","publishing notes","notes first","first edition","edition october","october second","second edition","edition april","april map","crooked road","road virginia","heritage music","music trail","lining papers","new trails","crooked road","road offers","scenic region","region virginia","virginia business","heritage music","music trail","crooked road","road virginia","heritage music","music trail","trail abingdon","heritage music","music trail","trail notes","notes cover","cover title","title visitor","visitor guide","guide cover","crooked road","authentic music","generations externalinks","crooked road","crooked road","road category","category appalachian","appalachian culture","culture category","category appalachian","appalachian musicategory","musicategory appalachian","appalachian folk","folk songs","songs category","category bluegrass","bluegrass musicategory","musicategory old","old time","time musicategory","musicategory american","american folk","folk dances","dances category","category dances","united states","states category","category performing","performing arts","virginia category","category dance","virginia category","category heritage","heritage trails","trails category","category cultural","cultural tourism"],"new_description":"crooked road heritage trail southwestern virginia explores musical history region along southwest virginia blue ridge cumberland mountains crooked_road winds almost miles scenic terrain southwest virginia including counties four cities towns crooked_road musical heritage crooked_road celebrates musical heritage western virginiand southwest virginiand appalachian music old time music folk music bluegrass music also celebrates traditional dance buck dancing square dance traditional music major venues virginia showcase crooked trail including southwest gateway abingdon virginiand ralph stanley museum virginia idea virginia crooked_road began minds january number public officials musicians others interested economic_development strategy appalachian region southwestern virginiand wanted draw region rich musical heritage time project grew today includes ten counties three cities ten towns four state agencies crooked_road virginia heritage music trail crooked_road crooked_road starts goes southwestern virginia rocky mount virginia breaks interstate park virginia border counties crooked_road passes include carroll county_virginia county_virginia county_virginia franklin county_virginia county_virginia patrick county_virginia scott county_virginia wise county_virginiand washington county_virginia crooked_road map highways virginia crooked_road press_pages illustrations maps portraits chaney ryan crooked_road ethnography crooked_road virginia heritage music trail crooked_road crooked_road virginia heritage music trail crooked_road treasury american music abingdon crooked_road summary songs tunes collected selected recordings currently sold artists live along crooked_road southwest virginia blue ridge cumberland mountains going crooked_road roanoke roanoke times barker christmas along crooked_road summary musicians southwest virginiand northwest north_carolina performing favorite holiday songs new old bluegrass mountain style notes barker robinson biographical information_abouthe musicians credits container national council traditional arts music crooked_road mountain music virginia national tour celebrating living musical culture southwest virginia silver spring notes presented major support crooked_road virginia heritage music trail virginia tourism corporation national endowment arts national tour old time bluegrass mountain dance featuring sammy wayne henderson mountain band elizabeth kirk eddie bond speed limit michael culture musical memories virginia crooked_road und betty grazing along crooked_road recipes stories past present mill henderson publishing notes first_edition october second edition april map crooked_road virginia heritage music trail lining papers memory betty tim new trails crooked_road offers model promoting scenic region virginia business virginia heritage music trail crooked_road virginia heritage music trail abingdon virginia heritage music trail notes cover title visitor guide cover place beauty place song crooked_road authentic music preserved region musicians generations externalinks crooked_road crooked_road category appalachian culture_category appalachian musicategory appalachian folk songs category bluegrass musicategory old time musicategory american folk dances category_dances united_states category performing arts virginia category_dance virginia category heritage trails category_cultural_tourism"},{"title":"Cross-Strait Tourism Exchange Association","description":"taiwan headquarters employees budget minister name shao qiwei minister pfo president chief name chief position parent agency child agency child agency website association for tourism exchange across the taiwan straits footnotes the crosstraitourism exchange association cstea or association for tourism exchange across the taiwan straits atets is a semi officialist of diplomatic missions of taiwan representative office of the people s republic of china in taiwan handling tourism related affairs its counterpart body in mainland china by the republic of china is the taiwan straitourism association the cstea office is located in ruentex tower at dan districtaipei dan districtaipei the official opening ceremony of cstea in taiwan was held athe grand hotel taipei grand hotel in taipei on may the ceremony was attended by people from both sides of the taiwan strait shao qiwei president of cstea represented mainland chinand served as both of the main speaker and master of ceremonies during the banquet kao koong lian vice chairperson of straits exchange foundation and janice lai director general of the tourism bureau of the ministry of transportation and communications republic of china roc ministry of transportation and communications and chairperson of taiwan straitourism association were also present during the ceremony the main tasks of csteare consulting in tourism related affairs facilitating communications handling disputes promoting crosstraitourism the office is accessible within walking distance southeast from daan station of the taipei metro see also taiwan straitourism association list of diplomatic missions in taiwan crosstrait relations category organizations established in category establishments in taiwan category organizations based in taipei category tourism agencies category tourism in china category tourism in taiwan category crosstrait relations","main_words":["taiwan","headquarters","employees_budget_minister_name","shao","qiwei","president","chief_name_chief","position_parent_agency_child","agency_child","agency_website","association","tourism","exchange","across","taiwan","straits","footnotes","crosstraitourism","exchange","association","cstea","association","tourism","exchange","across","taiwan","straits","semi","diplomatic","missions","taiwan","representative","office","people","republic","china","taiwan","handling","tourism_related","affairs","counterpart","body","mainland","china","republic","china","taiwan","straitourism","association","cstea","office","located","tower","dan","dan","official","opening","ceremony","cstea","taiwan","held_athe","grand","hotel","taipei","grand","hotel","taipei","may","ceremony","attended","people","sides","taiwan","strait","shao","qiwei","president","cstea","represented","mainland","chinand","served","main","speaker","master","ceremonies","banquet","vice","chairperson","straits","exchange","foundation","director","general","tourism","bureau","ministry","transportation","communications","republic","china","ministry","transportation","communications","chairperson","taiwan","straitourism","association","also","present","ceremony","main","tasks","consulting","tourism_related","affairs","facilitating","communications","handling","disputes","promoting","crosstraitourism","office","accessible","within","walking","distance","southeast","station","taipei","metro","see_also","taiwan","straitourism","association","list","diplomatic","missions","taiwan","crosstrait","relations","category_organizations","established","category_establishments","taiwan","category_organizations_based","taipei","category_tourism","agencies_category_tourism","taiwan","category","crosstrait","relations"],"clean_bigrams":[["taiwan","headquarters"],["headquarters","employees"],["employees","budget"],["budget","minister"],["minister","name"],["name","shao"],["shao","qiwei"],["qiwei","minister"],["minister","pfo"],["pfo","president"],["president","chief"],["chief","name"],["name","chief"],["chief","position"],["position","parent"],["parent","agency"],["agency","child"],["child","agency"],["agency","child"],["child","agency"],["agency","website"],["website","association"],["tourism","exchange"],["exchange","across"],["taiwan","straits"],["straits","footnotes"],["crosstraitourism","exchange"],["exchange","association"],["association","cstea"],["tourism","exchange"],["exchange","across"],["taiwan","straits"],["diplomatic","missions"],["taiwan","representative"],["representative","office"],["taiwan","handling"],["handling","tourism"],["tourism","related"],["related","affairs"],["counterpart","body"],["mainland","china"],["taiwan","straitourism"],["straitourism","association"],["association","cstea"],["cstea","office"],["official","opening"],["opening","ceremony"],["held","athe"],["athe","grand"],["grand","hotel"],["hotel","taipei"],["taipei","grand"],["grand","hotel"],["hotel","taipei"],["taiwan","strait"],["strait","shao"],["shao","qiwei"],["qiwei","president"],["cstea","represented"],["represented","mainland"],["mainland","chinand"],["chinand","served"],["main","speaker"],["vice","chairperson"],["straits","exchange"],["exchange","foundation"],["director","general"],["tourism","bureau"],["communications","republic"],["taiwan","straitourism"],["straitourism","association"],["also","present"],["main","tasks"],["tourism","related"],["related","affairs"],["affairs","facilitating"],["facilitating","communications"],["communications","handling"],["handling","disputes"],["disputes","promoting"],["promoting","crosstraitourism"],["accessible","within"],["within","walking"],["walking","distance"],["distance","southeast"],["taipei","metro"],["metro","see"],["see","also"],["also","taiwan"],["taiwan","straitourism"],["straitourism","association"],["association","list"],["diplomatic","missions"],["taiwan","crosstrait"],["crosstrait","relations"],["relations","category"],["category","organizations"],["organizations","established"],["category","establishments"],["taiwan","category"],["category","organizations"],["organizations","based"],["taipei","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["china","category"],["category","tourism"],["taiwan","category"],["category","crosstrait"],["crosstrait","relations"]],"all_collocations":["taiwan headquarters","headquarters employees","employees budget","budget minister","minister name","name shao","shao qiwei","qiwei minister","minister pfo","pfo president","president chief","chief name","name chief","chief position","position parent","parent agency","agency child","child agency","agency child","child agency","agency website","website association","tourism exchange","exchange across","taiwan straits","straits footnotes","crosstraitourism exchange","exchange association","association cstea","tourism exchange","exchange across","taiwan straits","diplomatic missions","taiwan representative","representative office","taiwan handling","handling tourism","tourism related","related affairs","counterpart body","mainland china","taiwan straitourism","straitourism association","association cstea","cstea office","official opening","opening ceremony","held athe","athe grand","grand hotel","hotel taipei","taipei grand","grand hotel","hotel taipei","taiwan strait","strait shao","shao qiwei","qiwei president","cstea represented","represented mainland","mainland chinand","chinand served","main speaker","vice chairperson","straits exchange","exchange foundation","director general","tourism bureau","communications republic","taiwan straitourism","straitourism association","also present","main tasks","tourism related","related affairs","affairs facilitating","facilitating communications","communications handling","handling disputes","disputes promoting","promoting crosstraitourism","accessible within","within walking","walking distance","distance southeast","taipei metro","metro see","see also","also taiwan","taiwan straitourism","straitourism association","association list","diplomatic missions","taiwan crosstrait","crosstrait relations","relations category","category organizations","organizations established","category establishments","taiwan category","category organizations","organizations based","taipei category","category tourism","tourism agencies","agencies category","category tourism","china category","category tourism","taiwan category","category crosstrait","crosstrait relations"],"new_description":"taiwan headquarters employees_budget_minister_name shao qiwei minister_pfo president chief_name_chief position_parent_agency_child agency_child agency_website association tourism exchange across taiwan straits footnotes crosstraitourism exchange association cstea association tourism exchange across taiwan straits semi diplomatic missions taiwan representative office people republic china taiwan handling tourism_related affairs counterpart body mainland china republic china taiwan straitourism association cstea office located tower dan dan official opening ceremony cstea taiwan held_athe grand hotel taipei grand hotel taipei may ceremony attended people sides taiwan strait shao qiwei president cstea represented mainland chinand served main speaker master ceremonies banquet vice chairperson straits exchange foundation director general tourism bureau ministry transportation communications republic china ministry transportation communications chairperson taiwan straitourism association also present ceremony main tasks consulting tourism_related affairs facilitating communications handling disputes promoting crosstraitourism office accessible within walking distance southeast station taipei metro see_also taiwan straitourism association list diplomatic missions taiwan crosstrait relations category_organizations established category_establishments taiwan category_organizations_based taipei category_tourism agencies_category_tourism china_category_tourism taiwan category crosstrait relations"},{"title":"Cruise International","description":"cruise international is a united kingdom british consumer travel magazine the only british travel magazine sold on the newsstandedicated to cruise holidays and website overview launched inovember launch of cruise international press gazette by the chelsea magazine company chelsea magazine company website and owned by paul dobson the magazine is published six times a year with distribution around the uk for magazine retailers travel agency travel agents and ports there is also annual cruise planner the magazine is the biggest selling consumer cruise travel magazine in the uk every issue combines destination features and ship reviews with celebrity interviews recipes and the latest news for both oceand river cruises the magazine is edited by liz jarvis liz jarvis contributors include julie peasgood the magazine s website cruise international website was relaunched in september new statesman coverage of cruise internationalcom press gazette coverage of cruise internationalcom relaunch and redesigned in and features the latest cruise travel news features celebrity interviews recipes blog posts and tips and ideas about where to cruise in october the magazine was awarded the silver award for best holiday magazine athe british travel awards cruise international awards in cruise internationalaunched the cruise international awards cruise international awards they are britain s first ever and only consumer focused awards dedicated to celebrating the best of the cruise industry the awards were announced by the daily mirror the daily mirror s captain greybeard announces the cruise international awards and industry body discover cruises discover cruises coverage cruise international awards the first awards were hosted by nick hewer in the awards were hosted by gyles brandrethe cruise international awards took place athe british film institute and were hosted by jenni falconer in the awards were hosted by caprice bourret caprice references externalinks official site issn category articles created via the article wizard category british business magazines category professional and trade magazines category tourismagazines category magazinestablished in category british bi monthly magazines","main_words":["cruise","international","united_kingdom","british","consumer","travel_magazine","sold","cruise","holidays","website","overview","launched","inovember","launch","press","gazette","chelsea","magazine","company","chelsea","magazine","company","website","owned","paul","magazine_published","six","times","year","distribution","around","uk","magazine","retailers","travel_agency","travel_agents","ports","also","annual","cruise","planner","magazine","biggest","selling","consumer","cruise","travel_magazine","uk","every","issue","combines","destination","features","ship","reviews","celebrity","interviews","recipes","latest","news","magazine","edited","liz","liz","contributors","include","julie","magazine","website","website","relaunched","september","new","statesman","coverage","cruise","press","gazette","coverage","cruise","relaunch","redesigned","features","latest","cruise","travel","news","features","celebrity","interviews","recipes","blog","posts","tips","ideas","cruise","october","magazine","awarded","silver","award","best","holiday","magazine","athe","british_travel_awards","cruise_international_awards","cruise","cruise_international_awards","cruise_international_awards","britain","first_ever","consumer","focused","awards","dedicated","celebrating","best","cruise","industry","awards","announced","daily","mirror","daily","mirror","captain","announces","cruise_international_awards","industry","body","discover","cruises","discover","cruises","coverage","cruise_international_awards","first","awards","hosted","nick","awards","hosted","cruise_international_awards","took_place","athe","british","film","institute","hosted","awards","hosted","references_externalinks_official","site","issn","category_articles_created_via","business","magazines_category","professional","trade","magazines_category","category_british"],"clean_bigrams":[["cruise","international"],["united","kingdom"],["kingdom","british"],["british","consumer"],["consumer","travel"],["travel","magazine"],["british","travel"],["travel","magazine"],["magazine","sold"],["cruise","holidays"],["website","overview"],["overview","launched"],["launched","inovember"],["inovember","launch"],["cruise","international"],["international","press"],["press","gazette"],["chelsea","magazine"],["magazine","company"],["company","chelsea"],["chelsea","magazine"],["magazine","company"],["company","website"],["published","six"],["six","times"],["distribution","around"],["magazine","retailers"],["retailers","travel"],["travel","agency"],["agency","travel"],["travel","agents"],["also","annual"],["annual","cruise"],["cruise","planner"],["biggest","selling"],["selling","consumer"],["consumer","cruise"],["cruise","travel"],["travel","magazine"],["uk","every"],["every","issue"],["issue","combines"],["combines","destination"],["destination","features"],["ship","reviews"],["celebrity","interviews"],["interviews","recipes"],["latest","news"],["river","cruises"],["contributors","include"],["include","julie"],["website","cruise"],["cruise","international"],["international","website"],["september","new"],["new","statesman"],["statesman","coverage"],["coverage","cruise"],["press","gazette"],["gazette","coverage"],["coverage","cruise"],["latest","cruise"],["cruise","travel"],["travel","news"],["news","features"],["features","celebrity"],["celebrity","interviews"],["interviews","recipes"],["recipes","blog"],["blog","posts"],["silver","award"],["best","holiday"],["holiday","magazine"],["magazine","athe"],["athe","british"],["british","travel"],["travel","awards"],["awards","cruise"],["cruise","international"],["international","awards"],["awards","cruise"],["cruise","international"],["international","awards"],["awards","cruise"],["cruise","international"],["international","awards"],["first","ever"],["consumer","focused"],["focused","awards"],["awards","dedicated"],["cruise","industry"],["daily","mirror"],["daily","mirror"],["cruise","international"],["international","awards"],["industry","body"],["body","discover"],["discover","cruises"],["cruises","discover"],["discover","cruises"],["cruises","coverage"],["coverage","cruise"],["cruise","international"],["international","awards"],["first","awards"],["cruise","international"],["international","awards"],["awards","took"],["took","place"],["place","athe"],["athe","british"],["british","film"],["film","institute"],["references","externalinks"],["externalinks","official"],["official","site"],["site","issn"],["issn","category"],["category","articles"],["articles","created"],["created","via"],["article","wizard"],["wizard","category"],["category","british"],["british","business"],["business","magazines"],["magazines","category"],["category","professional"],["trade","magazines"],["magazines","category"],["category","tourismagazines"],["tourismagazines","category"],["category","magazinestablished"],["category","british"],["monthly","magazines"]],"all_collocations":["cruise international","united kingdom","kingdom british","british consumer","consumer travel","travel magazine","british travel","travel magazine","magazine sold","cruise holidays","website overview","overview launched","launched inovember","inovember launch","cruise international","international press","press gazette","chelsea magazine","magazine company","company chelsea","chelsea magazine","magazine company","company website","published six","six times","distribution around","magazine retailers","retailers travel","travel agency","agency travel","travel agents","also annual","annual cruise","cruise planner","biggest selling","selling consumer","consumer cruise","cruise travel","travel magazine","uk every","every issue","issue combines","combines destination","destination features","ship reviews","celebrity interviews","interviews recipes","latest news","river cruises","contributors include","include julie","website cruise","cruise international","international website","september new","new statesman","statesman coverage","coverage cruise","press gazette","gazette coverage","coverage cruise","latest cruise","cruise travel","travel news","news features","features celebrity","celebrity interviews","interviews recipes","recipes blog","blog posts","silver award","best holiday","holiday magazine","magazine athe","athe british","british travel","travel awards","awards cruise","cruise international","international awards","awards cruise","cruise international","international awards","awards cruise","cruise international","international awards","first ever","consumer focused","focused awards","awards dedicated","cruise industry","daily mirror","daily mirror","cruise international","international awards","industry body","body discover","discover cruises","cruises discover","discover cruises","cruises coverage","coverage cruise","cruise international","international awards","first awards","cruise international","international awards","awards took","took place","place athe","athe british","british film","film institute","references externalinks","externalinks official","official site","site issn","issn category","category articles","articles created","created via","article wizard","wizard category","category british","british business","business magazines","magazines category","category professional","trade magazines","magazines category","category tourismagazines","tourismagazines category","category magazinestablished","category british","monthly magazines"],"new_description":"cruise international united_kingdom british consumer travel_magazine british_travel_magazine sold cruise holidays website overview launched inovember launch cruise_international press gazette chelsea magazine company chelsea magazine company website owned paul magazine_published six times year distribution around uk magazine retailers travel_agency travel_agents ports also annual cruise planner magazine biggest selling consumer cruise travel_magazine uk every issue combines destination features ship reviews celebrity interviews recipes latest news river_cruises magazine edited liz liz contributors include julie magazine website cruise_international website relaunched september new statesman coverage cruise press gazette coverage cruise relaunch redesigned features latest cruise travel news features celebrity interviews recipes blog posts tips ideas cruise october magazine awarded silver award best holiday magazine athe british_travel_awards cruise_international_awards cruise cruise_international_awards cruise_international_awards britain first_ever consumer focused awards dedicated celebrating best cruise industry awards announced daily mirror daily mirror captain announces cruise_international_awards industry body discover cruises discover cruises coverage cruise_international_awards first awards hosted nick awards hosted cruise_international_awards took_place athe british film institute hosted awards hosted references_externalinks_official site issn category_articles_created_via article_wizard_category_british business magazines_category professional trade magazines_category tourismagazines_category_magazinestablished category_british monthly_magazines"},{"title":"Cuisine of Minorca","description":"file formatge i sobrassadajpg thumb x px minorcan sobrassadand mah n cheese mah n cheese minorcan cuisine refers to the typical food andrink of minorca is a rocky island in the balearic islands balearic archipelago in spain consisting of eight municipalities featuring a mediterranean climate the weather is milder in the south while in the northere are strong winds all yearound marine salt carried by the wind to the pastures where cows graze is what gives the cheese its typical flavour fish is a certain source ofood but additionally there are horses pigs used for cold cuts and cows the skin of which is used to produce leather and the milk to produce cheese agriculture ismall scale and varied consisting of typical mediterranean products within this typical mediterranean cuisine there are also the influences of various invading people particularly thenglish who brought plum cake puddings and punch drink punch the rural and marine cuisine is mostly based on greens and vegetables from one s own garden locally produced meat and fish and seafood caught in the same dayaadd menorca una volta per l illa ed triangle postals p cold cuts are used aseasoning olive oil although not produced on the island is also a fundamental ingredient in local dishes minorcan cuisine is atimes a survival cuisine which preserves the original flavour of its high quality products to the maximum it isimple with few complications and above all seasonal it is based on fishing particularly longline fishing and on seafood especially crustaceans clams and squid fruits and vegetables are cultivated in as much variety as possible and on a small scale only for local consumption until the second half of the twentieth century goats were in such abundance thathey were only eaten when there was a famine caused by spoiled crops or insufficient fishing today they are a luxury the legs of minorcan kids are particularly appreciated there were so many rabbits on the island that roman emperor augustus had to send ferrets to help withunting them for this reason rabbit is a common element of the cuisine in later times there were periods when hunting them was forbidden in the seventeenth century thenglish unsuccessfully attempted to introduce deer and hares few are left nowadays but rabbits and various fowl are still hunted or bred general aspects the recipes and ways of minorcan cuisine have been mostly transmitted through oral tradition as opposed to catalonia for example wherecipe books can be found even from the middle ages in minorca the first written mentions of its cuisine are only found in some notes belonging to archduke ludwig salvator of austria who referencesome typical cooking but without any recipes there is nothing else until when de re cibaria by pedro ballester is published a major work that collects a substantial part of popular wisdom and offers detailed anonymous recipes which nevertheless require prior knowledge of local cuisine in order to be interpreted menorca gastronom a y cocina p minorcan cuisine is based on local products from land or sea classic mediterranean crops had a strong influencencouraging the use of olive oil wine legumes and foods pickled in salthe substratum of arabiculture arab culture is also important as well as additions from french and english cuisine in particular owing to theirespective periods of domination in theighteenth century being a small island meanthathe region passed through periods of scarcity for various reaons yet very flavourful dishes were still createdespite also being very modest simpler versions of dishes that once belonged only to a minority were created that were now accessible to everyone under any circumstances this known asurvival cuisine and it is not absolutely exclusive to the island even during times of abundance it is believed that a dish containing superfluous ingredients is not necessarily better but actually the opposite and the simplicity of a cuisine that would normally be considered poor and rural is more appreciated even today when most products can be obtained all yearound minorca has a seasonal cuisine with seasonal ingredients and recipes which follows the cycles of nature and marked holidays according to its traditions basic ingredients fish pearly razorfish archosargus probatocephalusheepsheadstingrays wings and liver scorpaena scrofa scorpionfish groupers goosefish rock fish in general and salted cod seafood mussels cockle bivalve cockle squid cuttlefish octopushrimp scampi lobster crab sea snails vegetables vine tomatoes onion garlichili pepper aubergine courgette legumes dry white string beans called guixons on the island greens chard spinach peas called fesols on the island cabbage fruits figs peaches apricots pears grapes oranges lemons nuts dates almonds pine nuts meat chicken food chicken rabbit pork beef cold cuts mushroomsaffron milk cap scotch bonnet dry mushrooms other olive oil bread honey capers wineggsnails ricotta figat similar to spanish fig cake and meringue specialties file ingredients maonesajpg thumbasic ingredients of mayonnaiseggs olive oil and lemon juice mayonnaise supposedly originates in the city of mah n according to this theory thisauce an emulsion of eggs and olive oil became known as a consequence of the briefrench occupation of the island which would take ito france according to a differentheory it was invented in a french town called maiona or perhaps baiona third is based on the dislike of the french towards garlic as they tasted the minorcan aioli the french asked for the garlic to be removed which lefthem with a white sauce made of olive and eggs mayonnaisepla josep el que hemenjat barcelona premsa catalana in any case mayonnaise with or without garlic is a product ofrequent use in the traditional cuisine of the island since ancientimes on its own or as an ingredient in dishes mah n cheese file mahon cheesejpg lefthumb mah n cheese a local cheese is produced in minorca mah n cheese it features denominaci n de origen denominaci n de origen protegida protectedemonination of origin it is pressed instead of boiled and has a characteristic orange colourm a parallelepiped shape and rounded corners it is made and matured only in minorcaccording to tradition and to the norms of the do in the definitve form of the denomination of origin was given as queso mah n and later in the word menorca was added making the full name mah n menorca there are four main varieties according to maturation time mild semi mature and aged ricotta or freshigh quality cottage cheese is also made in the same dairy shops in minorca but it does not have a specific name and is not widely known since it is consumed only locallyfuster xim g mez manel menorca gastronom a y cocina sant llu s triangle postals cold cuts file sobrassadajpg thumb minorcan sobrassada withexception of the sobrassada the cold cuts made in minorcare an evolution of the roman legacy everything is made of pork the slaughter of the pigs usually undertaken in winter is called porquejades or porquetjades blood is added as an ingrediento some of these products which gives them a black colour similarly to the cuisine of the catalan cuisine the spices used are few and not very varied buthey are the ones that giveach product a distinct personality and makes them different and flavourul the spices normally used are black pepper white pepper paprika in sobrassadanise cinnamon and salt some also add other typical mediterranean spicesuch as thyme rosemary and oregano file plat amb dues pilotes d una escudella i carn d ollajpg thumb piles and butifarras of escudella white botifarra of grayish clear brown color since it does not contain blood it has the form of the ball that is used for thescudella i carn d olla escudella it is made up of meat and other parts of the pig and it isurrounded by a fine membrane it is generally eaten cooked usually fried black botifarra it has the same ingredients and species thathe white one but contains in addition pig blood itshape is like the one of a fine botifarra it is often eaten fried with sobrassadand it isometimes eaten raw camot or cuixot in ciudadela it is a cooked black and very greasy sausage basically the same as majorcan camaiot but with less pellets it usually contains pig minced meat blood black pepper a pinch of paprikand another one of anise its appearance is very different from the othersince it is inserted within a pig leg where the name comes from it is eaten raw cut in very fine slices or cooked carnixulla or meat and xua it is a cured raw sausage of chopped lean meat mixed with bacon cut in small squares and marinated with salt pepper and sometimes other species thelaboration process goes through a drying process inside the intestine while other transformations take place contrary from the sobrassada fermentation does notake place its aspect reminds one of a whip this cold cut is the only specific one of minorcand perhaps the oldest one of the island minorcan sobrassada thinner and lesspicy than the majorcan these cold cuts arelaborated in all the balearic islands traditional dishes vegetables legumes and greens file carbassopng thumb stuffed zucchini file tom quetsgif thumb spinach rubiol traditional dish from the patronal feasts of the island file rubioljpg thumb spinach rubiol traditional dish from the patronal feasts of the island minorcan cuisine is very mediterranean rich in vegetables of all types the island has been very self sufficient providing these type ofresh products thus they have never gone missing thanks to the farming activity as part of theconomy even to this day time in which the crops represent approximately half of the minorcan territory menorca gastronomia i cuina p the salad hanging bouquetomatoes etc and other green vegetables to prepare salads and stir fry stand out onions italian green peppers red pepper garlic roman lettuce to prepare salads mediterranean green vegetables that are fried stuffed or oven baked likeggplanthat in minorca ismall and very white in its interior a variety of the summer season that cannot be cultivated in a greenhouse zucchini that is prepared in a similar way or the artichoke that is also from a local variety smallong and purple colored that is eaten mainly as a side dish battered and fried oven baked or in stews fruits are also abundant specially figs that are also eaten in savoury dishes like for example the oliaigua local green vegetables are prepared a thousand ways menorca gastronomia i cuina p some of the most common are the phaseolus vulgaris guixons the vicia faba habas the lentils and the chickpeas mushrooms are very much appreciated oven baked fried with or without sauce to accompany meats and the wild asparagus very appreciated in the oliaigua local soup or simply with a tortilla olive oil is the grease that is used to cook these dishes and is also common in pastry while olives themselves are appreciated in this cooking just like local capers menorca gastronomia i cuina p until a few decades ago there were hundreds of olive trees in minorca but nowadays these are not cultivated some minorcan dishes that contain these ingredients are oven baked eggplant a species of local eggplant is used that ismaller and more tender they are thinly laminated and oven baked in a single layer covered in shredded bread with minced garlic and basil it isimilar to the carbassonada made with zucchininstead of eggplant and usually has chopped onion and is eaten in the other balearic islands oven baked tomates and stuffed zucchini are also traditional oliaigua which in its origin was the scantiest soup food for when you were lackingredients it is usually eaten with figs during the summer menorca gastronomia i cuina p cauldron perol consists of a layer of laminated potatoes another of laminated tomatoes covered with shredded bread garlic basil and grilled you can add fish gilt head bream or striped red mullet for example in between the layers of potatoes and tomatoes menorca gastronomia i cuina p cuttlefish with fesols is a stewith fresh cuttlefish and peas it is very common that is also traditionally served as a tapas tapa sometimes little balls of minced meat are added menorca gastronomia i cuina p a lot of salty products are made with wheat flour many of which the breadough oftencircles the land s produce like for example the rubiols the m inorcan flaonsalty pasta filled with cheese to the agujas or croissants made with breadough and shaped like a half moon filled with sobrassada menorca gastronomia i cuina p the formatjadestand out common in easter time the salty cocas are usually rectangular open or closed and can be traditionally filled with a stir fry vegetables or pepper even though some have meat or fish on christmas eve it is common to eat before the midnight mass bread rolls filled with diced meat and soaked in milk and oven cooked menorca gastronomia i cuina p file calderetajpg lefthumb x px kaldera or as it is best known lobster kaldereta fish and seafood sea products for their insular condition are widely consumed traditionally freshwater whitefish is used justhe same like for example goosefish or the hake like the oily fish like the atlantic mackerel or the sardine for example very fresh boughthe same day it is fished this type of cooking with fish is traditional because many minorcans have a boat in which they go fishing on weekends and in summer it was a customary and it still happens to go around the island on a boat an excursion that forced you to eathe captured and cooked fish on board the scorpaena or scrofamong themenorca gastronomia i cuina p is a highly appreciated and abundant fish another appreciated fish is the rajiformes menorca gastronomia i cuina p that can be oven baked grilled or in a paella number of seafood shells and mollusks are also used these products just like thearth products change according to the season they are cooked in pots or boilers rice and sometimes also in salty pies or puddings oven baked grilled or in the oven in minorca there is a greatradition of eating varied fish and even octopus or squid in the form of meatballs the cod aburrida menorca gastronom a y cocina p that is prepared mixing cod sauce with garlic and oil dressing is a dish that has the resemblance with others cooked in catalonia provence and other nearby areasome minorcan dishes with fish and seafood are stuffed calamari oven baked or in a saucepan its an elaboration that has been established in the minorcan cookbook and has an established reputation for itsubtlety of aromas lobster stew until not long ago this type of sauce or bread soup was a poor fisher s dish since minorcan s lobsters wereasy to find add bits of lobster on top of onions tomato garlic and parsley and boil over higheat kaldereta is the best known internationally minorcan dish and of all the minorcan pots the most emblematic is lobster menorca gastronomia i cuina p other pots that are prepared a lot are made ofish usually roca fish like the grouper pot baked common cockle covered with shredded bread garlic and parsley cabracho scorpion fish meatballs menorca gastronom a y cocina p with a saut ed and chopped sauce some put a little of grated mah n cheese shredded in the meatballs mixed withe fish you can do it with other fish for example the ones used in soups meatballs in meat sauce are also prepared which in this case contain pine nuts it can beaten as a tapa in bars and not only as a main dish pig farming is common locally because pigs areasy to raise and traditional sausages are very popular there is also cattle farming which is the traditional source of milk to make cheese among other things meat and hides the latter being used as a raw material for the local traditionaleather craftsmen a very old recipe is for example the feixets or chaplain s partridges thinly sliced veal rolls filled with boiled egg bacon and sobrasada menorca gastronomia i cuina p lamb and mutton lamb chicken food chicken and rabbit are also consumed there are local varieties of chicken and lamb gameats which are currently very limited are mainly rabbits and birds rabbits are hunted withe help of dogs including an indigenous breed the rabbit s dog and shotguns while for the haunting of birds typical techniques are the use of decoy and the fencing in the neck snails are also part of this gastronomy both in simple preparations with alioli for example and in many more sophisticated onesuch asnails with sea crab some minorcan dishes with meats or sausages are arroz de la tierra rice of the land which is not made with rice but with wheat crushed in a mortar and baked with assorted sausages it resembles the african couscous menorca gastronomia i cuina p fried lamb or fried pork sometimes called frit menorqu by the islanders macarrones with gravy menorca gastronomia i cuina penne pastand meat cooked halfway between the typical italian way the pasta is cooked separately and then added to the rest of the ingredients and the traditional catalan way the pasta is cooked athend withe rest of ingredients like the noodles casserole it also has a british influence where gravy is a kind of simple meat preparation serving as a bed for the pasta typical desserts and pastries file coca bambajpg thumb px bamba snack coca bamba file crespells menorquinsjpg thumb px crespells file crespelletsjpg thumb px crespellets file orelletesjpg thumb px plate of orelletes the minorcan bakery pastry andessert making incorporates ideas techniques and products from cultures as diverse as jewish arabic and english the brief stay of the french in the island served to create the gat according to the technique of the frenchousewives of the moment but incorporating almonds in the recipe from the british the islanders took a taste for puddings they use catalan cream abundantly and they also use meringue in the italian way to take advantage of thegg whites to decorate desserts and cakes this taste for very sweet recipes ishared in common with other neighbours in the southern mediterranean the amargos or bitters are cookies made with egg whites and almondsimilar to italian amaretti with almonds and to the french macarons the buelos de todos lasantos fritters of all saints are made with soft cheese fromahon for all saints day when the panellets are also cooked the carquinyoli menorquines or carquinyols des mercadal which are square shaped unlike the continental carquinyoli s they are like chocolate tablets and have a homogeneous texture although they are also dry and hard they are made with almonds egg white sugar and flour the coca de tomate de ciutadella de menorca ciudadela flatbread with slices of tomato garlic parsley sugar and chopped cookie the coca bamba or coca de san juan in ciudadela thick and tall in the middle flatbread in the form of snail that contains boiled potato and is eaten for breakfast as an afternoon snack or withot chocolate during the local festivities pudin is made withe cocas that get hard after a few days of non consumption withe same recipe for coca bambare also made individual round small cocas or coquitas covered with apricots cherries or other seasonal fruit withe same dough are also made the buelos de pasta bamba fritters the crespells of minorcare flower shaped cookies with aboutwelve petals covered with fine sugar and stuffed either with jam or with a paste made of cottage cheese and lemon they have a round hole in the middle to see whathey are stuffed with in the other balearic islands crespells are very differenthe crespellets or crespellines are dry round large and thin cookies with a toothedge the cuscuss has the appearance of loaf of bread covered with candied fruit and pine nuts like a coca de san juan the dough is made with catalan style rustic bread which isoaked in water with sugar almonds are added cinnamon lemon peel etc and then it is kneaded again thensaimada is made both in majorcand in minorca the formatjades de reques n are sweet formatjadestuffed with a mixture containing cottage cheese and lemon peel alayor cookies are a kind of round bun with a closed hole in the middle the doughas a bit of anise in ithey areaten mainly at breakfast and as an afternoon snack dunked in milk they can be opened in half and spread with jam or honey they can be soft or hard inside we can know depending on the appearance of the outer surface layer gat is a kind of cake where the flour is replaced with chopped almonds the macarrones de la ciudadelare small white cookies made with egg white lots of sugar and sometimes also bits of almonds they have a six pointed flower shape orelletes which are pronounced oran in minorca menorca gastronom a y cocina p are friedough they are thin irregular and crisp aromatised with muscat wine and served with warm honey minorcan pastissets in minorcare five or six petalled flower shaped cookies covered with fine sugar and made with lard flour egg sugar lemon zest pudin de reques n menorqu n or minorcan cottage cheese pudding with alayor cookies and traditionally garnished with raisins and pine nuts pudding of coca bamba sometimes made with ensaimadas like a custardessert consistent enough to be cut into pieces grapes and cheese a simple desserthe rubiol is a sweet empanada similar to the sweet pastisset of valencia typical of majorcand minorca rissats rectangular biscuits decorated with curled waves drawn on the surface with a fork they are similar to the crespellines tatis are like the catalan carquinyolis but with chocolate turr n quemado fromercadal a peculiar kind of nougatortada cake made of chopped almonds is frequent in the spanish gastronomy which in minorca has the particularity of being usually covered completely with burnt egg yolk and meringue and sometimes also sugar this decoration is very typical of the island is usually found in the monas de pascua easter cakes birthday cakes and brazos de gitano swiss rolls which if not filled with catalan cream are usually also stuffed inside with egg yolk typical drinks calent an artisan drink that is infused witherbs cinnamon anise and saffron and it can be drunk hot or ice cold estomagale is a soft herbs liquor with a very particular flavor and texture frigola is thyme in minorca in the islands it is also a traditional digestive made withyme flowers gin de menorca comes from the british presence on the island in the th century the xoriguer distillery which produces the well known gin xoriguer is located in the port of mah n licor de rosas liquor of roses is a liquor of greek origin that was broughto the island by greek workers and merchants in theighteenth century and that in minorca iserved in the baptisms gastronom a en las islas baleares pellofa gin with lemon skin and a little siphon pomada gin with lemon juice the minorcan ratafia is made by soaking herbs from the island in aguardiente for eight days it has lemon bark green walnut carnationutmeg and cinnamon in it other liquors are also made with mah n chamomile orange or lemon flower etcf brega jaumellibre de la ratafia cosset nia edicionsengri which is a kind of hot punch with aromatised wine dating from the time of the british presence in theighteenth century in spite of the similarity of the word it has nothing to do withe sangria wine has been produced in minorca since time immemorial currently there are four wineries vi a sa cudia vi as binifadet ferrer de muntpalau and the bodega vino de s illa in alayor whichave the distinctive name of wine of the land of the island of minorcand have obtained international distinctions the malvas a began to be produced in minorca when commerce started with ancient greecespecially in alayor and san luis but later it was lost since it has been cultivated again with vines from corsica whichasimilar geological and climatic features to minorca s gastronom a en las islas baleares fruit liqueurs they are made by macerating the fruits in brandy gastronomic fairs cuinaart menorca is a gastronomic fair that is celebrated every april since as a showcase for minorcan products it consists of exhibitors debates tastings conferences etc it is aimed at all types of public references category gastronomy category spanish cuisine","main_words":["file","thumb","x","px","minorcan","mah_n","cheese","mah_n","cheese","minorcan","cuisine","refers","typical","food_andrink","minorca","rocky","island","balearic","islands","balearic","archipelago","spain","consisting","eight","municipalities","featuring","mediterranean","climate","weather","south","strong","winds","yearound","marine","salt","carried","wind","gives","cheese","typical","flavour","fish","certain","source","ofood","additionally","horses","pigs","used","cold","cuts","skin","used","produce","leather","milk","produce","cheese","agriculture","scale","varied","consisting","typical","mediterranean","products","within","typical","mediterranean","cuisine","also","influences","various","people","particularly","thenglish","brought","cake","puddings","punch","drink","punch","rural","marine","cuisine","mostly","based","greens","vegetables","one","garden","locally","produced","meat","fish","seafood","caught","menorca","una","volta","per","l","ed","triangle","p","cold","cuts","used","olive","oil","although","produced","island","also","fundamental","ingredient","local","dishes","minorcan","cuisine","atimes","survival","cuisine","original","flavour","high_quality","products","maximum","complications","seasonal","based","fishing","particularly","fishing","seafood","especially","clams","squid","fruits","vegetables","cultivated","much","variety","possible","small_scale","local","consumption","second_half","twentieth_century","goats","abundance","thathey","eaten","famine","caused","crops","insufficient","fishing","today","luxury","legs","minorcan","kids","particularly","appreciated","many","rabbits","island","augustus","send","help","reason","rabbit","common","element","cuisine","later","times","periods","hunting","forbidden","seventeenth_century","thenglish","unsuccessfully","attempted","introduce","deer","left","nowadays","rabbits","various","still","bred","general","aspects","recipes","ways","minorcan","cuisine","mostly","transmitted","oral","tradition","opposed","catalonia","example","books","found","even","middle_ages","minorca","first","written","mentions","cuisine","found","notes","belonging","archduke","ludwig","austria","typical","cooking","without","recipes","nothing","else","de","pedro","published","major","work","substantial","part","popular","wisdom","offers","detailed","anonymous","recipes","nevertheless","require","prior","knowledge","local","cuisine","order","interpreted","menorca","gastronom","cocina","p","minorcan","cuisine","based","local","products","land","sea","classic","mediterranean","crops","strong","use","olive","oil","wine","legumes","foods","pickled","arab","culture","also","important","well","additions","french","english","cuisine","particular","owing","theirespective","periods","domination","theighteenth","century","small","island","region","passed","periods","various","yet","dishes","still","also","modest","simpler","versions","dishes","belonged","minority","created","accessible","everyone","circumstances","known","cuisine","absolutely","exclusive","island","even","times","abundance","believed","dish","containing","ingredients","necessarily","better","actually","opposite","simplicity","cuisine","would","normally","considered","poor","rural","appreciated","even","today","products","obtained","yearound","minorca","seasonal","cuisine","seasonal","ingredients","recipes","follows","cycles","nature","marked","holidays","according","traditions","basic","ingredients","fish","wings","liver","rock","fish","general","salted","cod","seafood","mussels","cockle","cockle","squid","lobster","crab","sea","vegetables","vine","tomatoes","onion","pepper","aubergine","legumes","dry","white","string","beans","called","island","greens","spinach","peas","called","island","fruits","apricots","grapes","nuts","dates","almonds","pine","nuts","meat","chicken","food","chicken","rabbit","pork","beef","cold","cuts","milk","cap","scotch","dry","mushrooms","olive","oil","bread","honey","similar","spanish","cake","meringue","specialties","file","ingredients","ingredients","olive","oil","lemon","juice","mayonnaise","supposedly","originates","city","mah_n","according","theory","eggs","olive","oil","became_known","consequence","occupation","island","would_take","ito","france","according","invented","french","town","called","perhaps","third","based","french","towards","garlic","minorcan","french","asked","garlic","removed","white","sauce","made","olive","eggs","el","que","barcelona","case","mayonnaise","without","garlic","product","use","traditional","cuisine","island","since","ancientimes","ingredient","dishes","mah_n","cheese","file","lefthumb","mah_n","cheese","local","cheese","produced","minorca","mah_n","cheese","features","n","de","n","de","origin","instead","boiled","characteristic","orange","shape","rounded","corners","made","tradition","norms","form","denomination","origin","given","mah_n","later","word","menorca","added","making","full","name","mah_n","menorca","four","main","varieties","according","time","mild","semi","mature","aged","quality","cottage","cheese","also_made","dairy","shops","minorca","specific","name","widely","known","since","consumed","g","menorca","gastronom","cocina","sant","triangle","cold","cuts","file","thumb","minorcan","sobrassada","withexception","sobrassada","cold","cuts","made","evolution","roman","legacy","everything","made","pork","slaughter","pigs","usually","undertaken","winter","called","blood","added","products","gives","black","colour","similarly","cuisine","catalan","cuisine","spices","used","varied","buthey","ones","product","distinct","personality","makes","different","spices","normally","used","black","pepper","white","pepper","cinnamon","salt","also","add","typical","mediterranean","file","una","carn","thumb","piles","white","clear","brown","color","since","contain","blood","form","ball","used","carn","made","meat","parts","pig","fine","generally","eaten","cooked","usually","fried","black","ingredients","species","thathe","white","one","contains","addition","pig","blood","like","one","fine","often","eaten","fried","isometimes","eaten","raw","cooked","black","greasy","sausage","basically","less","usually","contains","pig","minced","meat","blood","black","pepper","another","one","appearance","different","inserted","within","pig","leg","name","comes","eaten","raw","cut","fine","slices","cooked","meat","cured","raw","sausage","chopped","lean","meat","mixed","bacon","cut","small","marinated","salt","pepper","sometimes","species","process","goes","drying","process","inside","transformations","take_place","contrary","sobrassada","fermentation","notake","place","aspect","one","whip","cold","cut","specific","one","perhaps","oldest","one","island","minorcan","sobrassada","cold","cuts","balearic","islands","traditional","dishes","vegetables","legumes","greens","file","thumb","stuffed","zucchini","file","tom","thumb","spinach","traditional","dish","island","file","thumb","spinach","traditional","dish","island","minorcan","cuisine","mediterranean","rich","vegetables","types","island","self","sufficient","providing","type","ofresh","products","thus","never","gone","missing","thanks","farming","activity","part","theconomy","even","day","time","crops","represent","approximately","half","minorcan","territory","menorca_gastronomia","cuina_p","salad","hanging","etc","green","vegetables","prepare","salads","stir","fry","stand","onions","italian","green","peppers","red","pepper","garlic","roman","lettuce","prepare","salads","mediterranean","green","vegetables","fried","stuffed","oven","baked","minorca","white","interior","variety","summer","season","cannot","cultivated","greenhouse","zucchini","prepared","similar","way","also","local","variety","colored","eaten","mainly","side","dish","battered","fried","oven","baked","fruits","also","abundant","specially","also","eaten","savoury","dishes","like","example","local","green","vegetables","prepared","thousand","ways","menorca_gastronomia","cuina_p","common","mushrooms","much","appreciated","oven","baked","fried","without","sauce","accompany","meats","wild","appreciated","local","soup","simply","tortilla","olive","oil","grease","used","cook","dishes","also_common","pastry","olives","appreciated","cooking","like","cuina_p","decades","ago","hundreds","olive","trees","minorca","nowadays","cultivated","minorcan","dishes","contain","ingredients","oven","baked","eggplant","species","local","eggplant","used","tender","laminated","oven","baked","single","layer","covered","shredded","bread","minced","garlic","basil","isimilar","made","eggplant","usually","chopped","onion","eaten","balearic","islands","oven","baked","stuffed","zucchini","also","traditional","origin","soup","food","usually","eaten","summer","menorca_gastronomia","cuina_p","consists","layer","laminated","potatoes","another","laminated","tomatoes","covered","shredded","bread","garlic","basil","grilled","add","fish","head","red","example","layers","potatoes","tomatoes","menorca_gastronomia","cuina_p","fresh","peas","common","also","traditionally","served","tapas","sometimes","little","balls","minced","meat","added","menorca_gastronomia","cuina_p","lot","salty","products","made","wheat","flour","many","breadough","land","produce","like","example","pasta","filled","cheese","made","breadough","shaped","like","half","moon","filled","sobrassada","menorca_gastronomia","cuina_p","common","easter","time","salty","usually","rectangular","open","closed","traditionally","filled","stir","fry","vegetables","pepper","even_though","meat","fish","christmas","eve","common","eat","midnight","mass","bread","rolls","filled","meat","milk","oven","cooked","menorca_gastronomia","cuina_p","file","lefthumb","x","px","best_known","lobster","fish","seafood","sea","products","condition","widely","consumed","traditionally","used","justhe","like","example","like","fish","like","atlantic","example","fresh","boughthe","day","type","cooking","fish","traditional","many","boat","go","fishing","weekends","summer","customary","still","happens","go","around","island","boat","excursion","forced","eathe","captured","cooked","fish","board","cuina_p","highly","appreciated","abundant","fish","another","appreciated","fish","menorca_gastronomia","cuina_p","oven","baked","grilled","number","seafood","shells","also_used","products","like","thearth","products","change","according","season","cooked","pots","rice","sometimes","also","salty","pies","puddings","oven","baked","grilled","oven","minorca","eating","varied","fish","even","octopus","squid","form","meatballs","cod","menorca","gastronom","cocina","p","prepared","mixing","cod","sauce","garlic","oil","dressing","dish","others","cooked","catalonia","provence","nearby","minorcan","dishes","fish","seafood","stuffed","oven","baked","established","minorcan","cookbook","established","reputation","lobster","long","ago","type","sauce","bread","soup","poor","fisher","dish","since","minorcan","find","add","bits","lobster","top","onions","tomato","garlic","parsley","best_known","internationally","minorcan","dish","minorcan","pots","lobster","menorca_gastronomia","cuina_p","pots","prepared","lot","made","ofish","usually","fish","like","pot","baked","common","cockle","covered","shredded","bread","garlic","parsley","fish","meatballs","menorca","gastronom","cocina","p","saut","ed","chopped","sauce","put","little","mah_n","cheese","shredded","meatballs","mixed","withe","fish","fish","example","ones","used","soups","meatballs","meat","sauce","also","prepared","case","contain","pine","nuts","beaten","bars","main","dish","pig","farming","common","locally","pigs","areasy","raise","traditional","sausages","popular","also","cattle","farming","traditional","source","milk","make","cheese","among","things","meat","latter","used","raw","material","local","old","recipe","example","sliced","veal","rolls","filled","boiled","egg","bacon","menorca_gastronomia","cuina_p","lamb","mutton","lamb","chicken","food","chicken","rabbit","also","consumed","local","varieties","chicken","lamb","currently","limited","mainly","rabbits","birds","rabbits","withe_help","dogs","including","indigenous","breed","rabbit","dog","birds","typical","techniques","use","neck","also","part","gastronomy","simple","preparations","example","many","sophisticated","sea","crab","minorcan","dishes","meats","sausages","arroz","de_la","tierra","rice","land","made","rice","wheat","crushed","mortar","baked","assorted","sausages","resembles","african","menorca_gastronomia","cuina_p","fried","lamb","fried","pork","sometimes_called","islanders","gravy","menorca_gastronomia","meat","cooked","halfway","typical","italian","way","pasta","cooked","separately","added","rest","ingredients","traditional","catalan","way","pasta","cooked","athend","withe","rest","ingredients","like","noodles","also","british","influence","gravy","kind","simple","meat","preparation","serving","bed","pasta","typical","desserts","pastries","file","coca","thumb","px","bamba","snack","coca","bamba","file","crespells","thumb","px","crespells","file","thumb","px","file","thumb","px","plate","minorcan","bakery","pastry","andessert","making","incorporates","ideas","techniques","products","cultures","diverse","jewish","arabic","english","brief","stay","french","island","served","create","according","technique","moment","incorporating","almonds","recipe","british","islanders","took","taste","puddings","use","catalan","cream","also_use","meringue","italian","way","take_advantage","whites","desserts","cakes","taste","sweet","recipes","common","southern","mediterranean","cookies","made","egg","whites","italian","almonds","french","de","fritters","saints","made","soft","cheese","saints","day","also","cooked","des","square","shaped","unlike","continental","like","chocolate","tablets","texture","although","also","dry","hard","made","almonds","egg","white","sugar","flour","coca","de","de","de","menorca","flatbread","slices","tomato","garlic","parsley","sugar","chopped","cookie","coca","bamba","coca","de","san_juan","thick","tall","middle","flatbread","form","contains","boiled","potato","eaten","breakfast","afternoon","snack","withot","chocolate","local","festivities","made","withe","get","hard","days","non","consumption","withe","recipe","coca","also_made","individual","round","small","covered","apricots","seasonal","fruit","withe","dough","also_made","de","pasta","bamba","fritters","crespells","flower","shaped","cookies","covered","fine","sugar","stuffed","either","jam","made","cottage","cheese","lemon","round","hole","middle","see","whathey","stuffed","balearic","islands","crespells","dry","round","large","thin","cookies","appearance","bread","covered","fruit","pine","nuts","like","coca","de","san_juan","dough","made","catalan","style","rustic","bread","water","sugar","almonds","added","cinnamon","lemon","peel","etc","made","minorca","de","n","sweet","mixture","containing","cottage","cheese","lemon","peel","alayor","cookies","kind","round","bun","closed","hole","middle","bit","mainly","breakfast","afternoon","snack","milk","opened","half","spread","jam","honey","soft","hard","inside","know","depending","appearance","outer","surface","layer","kind","cake","flour","replaced","chopped","almonds","de_la","small","white","cookies","made","egg","white","lots","sugar","sometimes","also","bits","almonds","six","pointed","flower","shape","pronounced","minorca","menorca","gastronom","cocina","p","thin","crisp","wine","served","warm","honey","minorcan","five","six","flower","shaped","cookies","covered","fine","sugar","made","flour","egg","sugar","lemon","de","n","n","minorcan","cottage","cheese","pudding","alayor","cookies","traditionally","pine","nuts","pudding","coca","bamba","sometimes","made","like","consistent","enough","cut","pieces","grapes","cheese","simple","sweet","similar","sweet","valencia","typical","minorca","rectangular","biscuits","decorated","waves","drawn","surface","fork","similar","like","catalan","chocolate","n","peculiar","kind","cake","made","chopped","almonds","frequent","spanish","gastronomy","minorca","usually","covered","completely","burnt","egg","meringue","sometimes","also","sugar","decoration","typical","island","usually","found","de","easter","cakes","birthday","cakes","de","swiss","rolls","filled","catalan","cream","usually","also","stuffed","inside","egg","typical","drinks","artisan","drink","cinnamon","drunk","hot","ice","cold","soft","herbs","liquor","particular","flavor","texture","minorca","islands","also","traditional","made","flowers","gin","de","menorca","comes","british","presence","island","th_century","distillery","produces","well_known","gin","located","port","mah_n","de","liquor","roses","liquor","greek","origin","broughto","island","greek","workers","merchants","theighteenth","century","minorca","iserved","gastronom","las","gin","lemon","skin","little","gin","lemon","juice","minorcan","made","herbs","island","eight","days","lemon","green","cinnamon","liquors","also_made","mah_n","orange","lemon","flower","de_la","kind","hot","punch","wine","dating","time","british","presence","theighteenth","century","spite","word","nothing","withe","wine","produced","minorca","since","time","currently","four","wineries","de","vino","de","alayor","whichave","distinctive","name","wine","land","island","obtained","international","distinctions","began","produced","minorca","commerce","started","ancient","alayor","san","luis","later","lost","since","cultivated","vines","corsica","geological","features","minorca","gastronom","las","fruit","made","fruits","gastronomic","fairs","menorca","gastronomic","fair","celebrated","every","april","since","showcase","minorcan","products","consists","exhibitors","debates","tastings","conferences","etc","aimed","types","public","references_category","gastronomy","category","spanish","cuisine"],"clean_bigrams":[["thumb","x"],["x","px"],["px","minorcan"],["mah","n"],["n","cheese"],["cheese","mah"],["mah","n"],["n","cheese"],["cheese","minorcan"],["minorcan","cuisine"],["cuisine","refers"],["typical","food"],["food","andrink"],["rocky","island"],["balearic","islands"],["islands","balearic"],["balearic","archipelago"],["spain","consisting"],["eight","municipalities"],["municipalities","featuring"],["mediterranean","climate"],["strong","winds"],["yearound","marine"],["marine","salt"],["salt","carried"],["typical","flavour"],["flavour","fish"],["certain","source"],["source","ofood"],["horses","pigs"],["pigs","used"],["cold","cuts"],["produce","leather"],["produce","cheese"],["cheese","agriculture"],["varied","consisting"],["typical","mediterranean"],["mediterranean","products"],["products","within"],["typical","mediterranean"],["mediterranean","cuisine"],["people","particularly"],["particularly","thenglish"],["cake","puddings"],["punch","drink"],["drink","punch"],["marine","cuisine"],["mostly","based"],["garden","locally"],["locally","produced"],["produced","meat"],["seafood","caught"],["menorca","una"],["una","volta"],["volta","per"],["per","l"],["ed","triangle"],["p","cold"],["cold","cuts"],["olive","oil"],["oil","although"],["fundamental","ingredient"],["local","dishes"],["dishes","minorcan"],["minorcan","cuisine"],["survival","cuisine"],["original","flavour"],["high","quality"],["quality","products"],["fishing","particularly"],["seafood","especially"],["squid","fruits"],["much","variety"],["small","scale"],["local","consumption"],["second","half"],["twentieth","century"],["century","goats"],["abundance","thathey"],["famine","caused"],["insufficient","fishing"],["fishing","today"],["minorcan","kids"],["particularly","appreciated"],["many","rabbits"],["roman","emperor"],["emperor","augustus"],["reason","rabbit"],["common","element"],["later","times"],["seventeenth","century"],["century","thenglish"],["thenglish","unsuccessfully"],["unsuccessfully","attempted"],["introduce","deer"],["left","nowadays"],["bred","general"],["general","aspects"],["minorcan","cuisine"],["mostly","transmitted"],["oral","tradition"],["found","even"],["middle","ages"],["first","written"],["written","mentions"],["notes","belonging"],["archduke","ludwig"],["typical","cooking"],["nothing","else"],["major","work"],["substantial","part"],["popular","wisdom"],["offers","detailed"],["detailed","anonymous"],["anonymous","recipes"],["nevertheless","require"],["require","prior"],["prior","knowledge"],["local","cuisine"],["interpreted","menorca"],["menorca","gastronom"],["cocina","p"],["p","minorcan"],["minorcan","cuisine"],["local","products"],["sea","classic"],["classic","mediterranean"],["mediterranean","crops"],["olive","oil"],["oil","wine"],["wine","legumes"],["foods","pickled"],["arab","culture"],["also","important"],["english","cuisine"],["particular","owing"],["theirespective","periods"],["theighteenth","century"],["small","island"],["region","passed"],["modest","simpler"],["simpler","versions"],["absolutely","exclusive"],["island","even"],["dish","containing"],["necessarily","better"],["would","normally"],["considered","poor"],["appreciated","even"],["even","today"],["yearound","minorca"],["seasonal","cuisine"],["seasonal","ingredients"],["marked","holidays"],["holidays","according"],["traditions","basic"],["basic","ingredients"],["ingredients","fish"],["rock","fish"],["salted","cod"],["cod","seafood"],["seafood","mussels"],["mussels","cockle"],["cockle","squid"],["lobster","crab"],["crab","sea"],["vegetables","vine"],["vine","tomatoes"],["tomatoes","onion"],["pepper","aubergine"],["legumes","dry"],["dry","white"],["white","string"],["string","beans"],["beans","called"],["island","greens"],["spinach","peas"],["peas","called"],["nuts","dates"],["dates","almonds"],["almonds","pine"],["pine","nuts"],["nuts","meat"],["meat","chicken"],["chicken","food"],["food","chicken"],["chicken","rabbit"],["rabbit","pork"],["pork","beef"],["beef","cold"],["cold","cuts"],["milk","cap"],["cap","scotch"],["dry","mushrooms"],["olive","oil"],["oil","bread"],["bread","honey"],["meringue","specialties"],["specialties","file"],["file","ingredients"],["olive","oil"],["lemon","juice"],["juice","mayonnaise"],["mayonnaise","supposedly"],["supposedly","originates"],["mah","n"],["n","according"],["olive","oil"],["oil","became"],["became","known"],["would","take"],["take","ito"],["ito","france"],["france","according"],["french","town"],["town","called"],["french","towards"],["towards","garlic"],["french","asked"],["white","sauce"],["sauce","made"],["el","que"],["case","mayonnaise"],["without","garlic"],["traditional","cuisine"],["island","since"],["since","ancientimes"],["dishes","mah"],["mah","n"],["n","cheese"],["cheese","file"],["lefthumb","mah"],["mah","n"],["n","cheese"],["local","cheese"],["minorca","mah"],["mah","n"],["n","cheese"],["n","de"],["n","de"],["characteristic","orange"],["rounded","corners"],["mah","n"],["word","menorca"],["added","making"],["full","name"],["name","mah"],["mah","n"],["n","menorca"],["four","main"],["main","varieties"],["varieties","according"],["time","mild"],["mild","semi"],["semi","mature"],["quality","cottage"],["cottage","cheese"],["also","made"],["dairy","shops"],["specific","name"],["widely","known"],["known","since"],["menorca","gastronom"],["cocina","sant"],["cold","cuts"],["cuts","file"],["thumb","minorcan"],["minorcan","sobrassada"],["sobrassada","withexception"],["cold","cuts"],["cuts","made"],["roman","legacy"],["legacy","everything"],["pigs","usually"],["usually","undertaken"],["black","colour"],["colour","similarly"],["catalan","cuisine"],["spices","used"],["varied","buthey"],["distinct","personality"],["spices","normally"],["normally","used"],["black","pepper"],["pepper","white"],["white","pepper"],["also","add"],["typical","mediterranean"],["thumb","piles"],["clear","brown"],["brown","color"],["color","since"],["contain","blood"],["generally","eaten"],["eaten","cooked"],["cooked","usually"],["usually","fried"],["fried","black"],["species","thathe"],["thathe","white"],["white","one"],["addition","pig"],["pig","blood"],["often","eaten"],["eaten","fried"],["isometimes","eaten"],["eaten","raw"],["cooked","black"],["greasy","sausage"],["sausage","basically"],["usually","contains"],["contains","pig"],["pig","minced"],["minced","meat"],["meat","blood"],["blood","black"],["black","pepper"],["another","one"],["inserted","within"],["pig","leg"],["name","comes"],["eaten","raw"],["raw","cut"],["fine","slices"],["cured","raw"],["raw","sausage"],["chopped","lean"],["lean","meat"],["meat","mixed"],["bacon","cut"],["salt","pepper"],["process","goes"],["drying","process"],["process","inside"],["transformations","take"],["take","place"],["place","contrary"],["sobrassada","fermentation"],["notake","place"],["cold","cut"],["specific","one"],["oldest","one"],["island","minorcan"],["minorcan","sobrassada"],["cold","cuts"],["balearic","islands"],["islands","traditional"],["traditional","dishes"],["dishes","vegetables"],["vegetables","legumes"],["greens","file"],["thumb","stuffed"],["stuffed","zucchini"],["zucchini","file"],["file","tom"],["thumb","spinach"],["traditional","dish"],["island","file"],["thumb","spinach"],["traditional","dish"],["island","minorcan"],["minorcan","cuisine"],["mediterranean","rich"],["self","sufficient"],["sufficient","providing"],["type","ofresh"],["ofresh","products"],["products","thus"],["never","gone"],["gone","missing"],["missing","thanks"],["farming","activity"],["theconomy","even"],["day","time"],["crops","represent"],["represent","approximately"],["approximately","half"],["minorcan","territory"],["territory","menorca"],["menorca","gastronomia"],["cuina","p"],["salad","hanging"],["green","vegetables"],["prepare","salads"],["stir","fry"],["fry","stand"],["onions","italian"],["italian","green"],["green","peppers"],["peppers","red"],["red","pepper"],["pepper","garlic"],["garlic","roman"],["roman","lettuce"],["prepare","salads"],["salads","mediterranean"],["mediterranean","green"],["green","vegetables"],["fried","stuffed"],["oven","baked"],["summer","season"],["greenhouse","zucchini"],["similar","way"],["local","variety"],["eaten","mainly"],["side","dish"],["dish","battered"],["fried","oven"],["oven","baked"],["also","abundant"],["abundant","specially"],["also","eaten"],["savoury","dishes"],["dishes","like"],["local","green"],["green","vegetables"],["thousand","ways"],["ways","menorca"],["menorca","gastronomia"],["cuina","p"],["much","appreciated"],["appreciated","oven"],["oven","baked"],["baked","fried"],["without","sauce"],["accompany","meats"],["local","soup"],["tortilla","olive"],["olive","oil"],["also","common"],["like","local"],["menorca","gastronomia"],["cuina","p"],["decades","ago"],["olive","trees"],["minorcan","dishes"],["oven","baked"],["baked","eggplant"],["local","eggplant"],["oven","baked"],["single","layer"],["layer","covered"],["shredded","bread"],["minced","garlic"],["garlic","basil"],["chopped","onion"],["balearic","islands"],["islands","oven"],["oven","baked"],["stuffed","zucchini"],["also","traditional"],["soup","food"],["usually","eaten"],["summer","menorca"],["menorca","gastronomia"],["cuina","p"],["laminated","potatoes"],["potatoes","another"],["laminated","tomatoes"],["tomatoes","covered"],["shredded","bread"],["bread","garlic"],["garlic","basil"],["add","fish"],["tomatoes","menorca"],["menorca","gastronomia"],["cuina","p"],["also","traditionally"],["traditionally","served"],["sometimes","little"],["little","balls"],["minced","meat"],["added","menorca"],["menorca","gastronomia"],["cuina","p"],["salty","products"],["wheat","flour"],["flour","many"],["produce","like"],["pasta","filled"],["shaped","like"],["half","moon"],["moon","filled"],["sobrassada","menorca"],["menorca","gastronomia"],["cuina","p"],["easter","time"],["usually","rectangular"],["rectangular","open"],["traditionally","filled"],["stir","fry"],["fry","vegetables"],["pepper","even"],["even","though"],["christmas","eve"],["midnight","mass"],["mass","bread"],["bread","rolls"],["rolls","filled"],["oven","cooked"],["cooked","menorca"],["menorca","gastronomia"],["cuina","p"],["p","file"],["lefthumb","x"],["x","px"],["best","known"],["known","lobster"],["seafood","sea"],["sea","products"],["widely","consumed"],["consumed","traditionally"],["used","justhe"],["fish","like"],["fresh","boughthe"],["go","fishing"],["still","happens"],["go","around"],["eathe","captured"],["cooked","fish"],["cuina","p"],["highly","appreciated"],["abundant","fish"],["fish","another"],["another","appreciated"],["appreciated","fish"],["menorca","gastronomia"],["cuina","p"],["oven","baked"],["baked","grilled"],["seafood","shells"],["also","used"],["like","thearth"],["thearth","products"],["products","change"],["change","according"],["sometimes","also"],["salty","pies"],["puddings","oven"],["oven","baked"],["baked","grilled"],["eating","varied"],["varied","fish"],["even","octopus"],["menorca","gastronom"],["cocina","p"],["prepared","mixing"],["mixing","cod"],["cod","sauce"],["oil","dressing"],["others","cooked"],["catalonia","provence"],["minorcan","dishes"],["oven","baked"],["minorcan","cookbook"],["established","reputation"],["long","ago"],["bread","soup"],["poor","fisher"],["dish","since"],["since","minorcan"],["find","add"],["add","bits"],["onions","tomato"],["tomato","garlic"],["garlic","parsley"],["best","known"],["known","internationally"],["internationally","minorcan"],["minorcan","dish"],["minorcan","pots"],["lobster","menorca"],["menorca","gastronomia"],["cuina","p"],["made","ofish"],["ofish","usually"],["fish","like"],["pot","baked"],["baked","common"],["common","cockle"],["cockle","covered"],["shredded","bread"],["bread","garlic"],["garlic","parsley"],["fish","meatballs"],["meatballs","menorca"],["menorca","gastronom"],["cocina","p"],["saut","ed"],["chopped","sauce"],["mah","n"],["n","cheese"],["cheese","shredded"],["meatballs","mixed"],["mixed","withe"],["withe","fish"],["ones","used"],["soups","meatballs"],["meat","sauce"],["also","prepared"],["case","contain"],["contain","pine"],["pine","nuts"],["main","dish"],["dish","pig"],["pig","farming"],["common","locally"],["pigs","areasy"],["traditional","sausages"],["also","cattle"],["cattle","farming"],["traditional","source"],["make","cheese"],["cheese","among"],["things","meat"],["raw","material"],["old","recipe"],["sliced","veal"],["veal","rolls"],["rolls","filled"],["boiled","egg"],["egg","bacon"],["menorca","gastronomia"],["cuina","p"],["p","lamb"],["mutton","lamb"],["lamb","chicken"],["chicken","food"],["food","chicken"],["chicken","rabbit"],["also","consumed"],["local","varieties"],["mainly","rabbits"],["birds","rabbits"],["withe","help"],["dogs","including"],["indigenous","breed"],["birds","typical"],["typical","techniques"],["also","part"],["simple","preparations"],["sea","crab"],["minorcan","dishes"],["arroz","de"],["de","la"],["la","tierra"],["tierra","rice"],["wheat","crushed"],["assorted","sausages"],["menorca","gastronomia"],["cuina","p"],["p","fried"],["fried","lamb"],["fried","pork"],["pork","sometimes"],["sometimes","called"],["gravy","menorca"],["menorca","gastronomia"],["meat","cooked"],["cooked","halfway"],["typical","italian"],["italian","way"],["cooked","separately"],["traditional","catalan"],["catalan","way"],["cooked","athend"],["athend","withe"],["withe","rest"],["ingredients","like"],["british","influence"],["simple","meat"],["meat","preparation"],["preparation","serving"],["pasta","typical"],["typical","desserts"],["pastries","file"],["file","coca"],["thumb","px"],["px","bamba"],["bamba","snack"],["snack","coca"],["coca","bamba"],["bamba","file"],["file","crespells"],["thumb","px"],["px","crespells"],["crespells","file"],["thumb","px"],["thumb","px"],["px","plate"],["minorcan","bakery"],["bakery","pastry"],["pastry","andessert"],["andessert","making"],["making","incorporates"],["incorporates","ideas"],["ideas","techniques"],["jewish","arabic"],["brief","stay"],["island","served"],["incorporating","almonds"],["islanders","took"],["use","catalan"],["catalan","cream"],["also","use"],["use","meringue"],["italian","way"],["take","advantage"],["sweet","recipes"],["southern","mediterranean"],["cookies","made"],["egg","whites"],["soft","cheese"],["saints","day"],["also","cooked"],["square","shaped"],["shaped","unlike"],["like","chocolate"],["chocolate","tablets"],["texture","although"],["also","dry"],["almonds","egg"],["egg","white"],["white","sugar"],["coca","de"],["de","menorca"],["tomato","garlic"],["garlic","parsley"],["parsley","sugar"],["chopped","cookie"],["coca","bamba"],["coca","de"],["de","san"],["san","juan"],["middle","flatbread"],["contains","boiled"],["boiled","potato"],["afternoon","snack"],["withot","chocolate"],["local","festivities"],["made","withe"],["get","hard"],["non","consumption"],["consumption","withe"],["also","made"],["made","individual"],["individual","round"],["round","small"],["seasonal","fruit"],["fruit","withe"],["also","made"],["de","pasta"],["pasta","bamba"],["bamba","fritters"],["flower","shaped"],["shaped","cookies"],["cookies","covered"],["fine","sugar"],["stuffed","either"],["cottage","cheese"],["round","hole"],["see","whathey"],["balearic","islands"],["islands","crespells"],["dry","round"],["round","large"],["thin","cookies"],["bread","covered"],["pine","nuts"],["nuts","like"],["coca","de"],["de","san"],["san","juan"],["catalan","style"],["style","rustic"],["rustic","bread"],["sugar","almonds"],["added","cinnamon"],["cinnamon","lemon"],["lemon","peel"],["peel","etc"],["mixture","containing"],["containing","cottage"],["cottage","cheese"],["lemon","peel"],["peel","alayor"],["alayor","cookies"],["round","bun"],["closed","hole"],["afternoon","snack"],["hard","inside"],["know","depending"],["outer","surface"],["surface","layer"],["chopped","almonds"],["de","la"],["small","white"],["white","cookies"],["cookies","made"],["egg","white"],["white","lots"],["sometimes","also"],["also","bits"],["six","pointed"],["pointed","flower"],["flower","shape"],["minorca","menorca"],["menorca","gastronom"],["cocina","p"],["warm","honey"],["honey","minorcan"],["flower","shaped"],["shaped","cookies"],["cookies","covered"],["fine","sugar"],["flour","egg"],["egg","sugar"],["sugar","lemon"],["minorcan","cottage"],["cottage","cheese"],["cheese","pudding"],["alayor","cookies"],["pine","nuts"],["nuts","pudding"],["coca","bamba"],["bamba","sometimes"],["sometimes","made"],["consistent","enough"],["pieces","grapes"],["valencia","typical"],["rectangular","biscuits"],["biscuits","decorated"],["waves","drawn"],["peculiar","kind"],["cake","made"],["chopped","almonds"],["spanish","gastronomy"],["usually","covered"],["covered","completely"],["burnt","egg"],["sometimes","also"],["also","sugar"],["usually","found"],["easter","cakes"],["cakes","birthday"],["birthday","cakes"],["swiss","rolls"],["rolls","filled"],["catalan","cream"],["usually","also"],["also","stuffed"],["stuffed","inside"],["typical","drinks"],["artisan","drink"],["drunk","hot"],["ice","cold"],["soft","herbs"],["herbs","liquor"],["particular","flavor"],["also","traditional"],["flowers","gin"],["gin","de"],["de","menorca"],["menorca","comes"],["british","presence"],["th","century"],["well","known"],["known","gin"],["mah","n"],["n","de"],["greek","origin"],["greek","workers"],["theighteenth","century"],["minorca","iserved"],["lemon","skin"],["lemon","juice"],["eight","days"],["also","made"],["mah","n"],["lemon","flower"],["de","la"],["hot","punch"],["wine","dating"],["british","presence"],["theighteenth","century"],["minorca","since"],["since","time"],["four","wineries"],["vino","de"],["alayor","whichave"],["distinctive","name"],["obtained","international"],["international","distinctions"],["commerce","started"],["san","luis"],["lost","since"],["gastronomic","fairs"],["gastronomic","fair"],["celebrated","every"],["every","april"],["april","since"],["minorcan","products"],["exhibitors","debates"],["debates","tastings"],["tastings","conferences"],["conferences","etc"],["public","references"],["references","category"],["category","gastronomy"],["gastronomy","category"],["category","spanish"],["spanish","cuisine"]],"all_collocations":["thumb x","x px","px minorcan","mah n","n cheese","cheese mah","mah n","n cheese","cheese minorcan","minorcan cuisine","cuisine refers","typical food","food andrink","rocky island","balearic islands","islands balearic","balearic archipelago","spain consisting","eight municipalities","municipalities featuring","mediterranean climate","strong winds","yearound marine","marine salt","salt carried","typical flavour","flavour fish","certain source","source ofood","horses pigs","pigs used","cold cuts","produce leather","produce cheese","cheese agriculture","varied consisting","typical mediterranean","mediterranean products","products within","typical mediterranean","mediterranean cuisine","people particularly","particularly thenglish","cake puddings","punch drink","drink punch","marine cuisine","mostly based","garden locally","locally produced","produced meat","seafood caught","menorca una","una volta","volta per","per l","ed triangle","p cold","cold cuts","olive oil","oil although","fundamental ingredient","local dishes","dishes minorcan","minorcan cuisine","survival cuisine","original flavour","high quality","quality products","fishing particularly","seafood especially","squid fruits","much variety","small scale","local consumption","second half","twentieth century","century goats","abundance thathey","famine caused","insufficient fishing","fishing today","minorcan kids","particularly appreciated","many rabbits","roman emperor","emperor augustus","reason rabbit","common element","later times","seventeenth century","century thenglish","thenglish unsuccessfully","unsuccessfully attempted","introduce deer","left nowadays","bred general","general aspects","minorcan cuisine","mostly transmitted","oral tradition","found even","middle ages","first written","written mentions","notes belonging","archduke ludwig","typical cooking","nothing else","major work","substantial part","popular wisdom","offers detailed","detailed anonymous","anonymous recipes","nevertheless require","require prior","prior knowledge","local cuisine","interpreted menorca","menorca gastronom","cocina p","p minorcan","minorcan cuisine","local products","sea classic","classic mediterranean","mediterranean crops","olive oil","oil wine","wine legumes","foods pickled","arab culture","also important","english cuisine","particular owing","theirespective periods","theighteenth century","small island","region passed","modest simpler","simpler versions","absolutely exclusive","island even","dish containing","necessarily better","would normally","considered poor","appreciated even","even today","yearound minorca","seasonal cuisine","seasonal ingredients","marked holidays","holidays according","traditions basic","basic ingredients","ingredients fish","rock fish","salted cod","cod seafood","seafood mussels","mussels cockle","cockle squid","lobster crab","crab sea","vegetables vine","vine tomatoes","tomatoes onion","pepper aubergine","legumes dry","dry white","white string","string beans","beans called","island greens","spinach peas","peas called","nuts dates","dates almonds","almonds pine","pine nuts","nuts meat","meat chicken","chicken food","food chicken","chicken rabbit","rabbit pork","pork beef","beef cold","cold cuts","milk cap","cap scotch","dry mushrooms","olive oil","oil bread","bread honey","meringue specialties","specialties file","file ingredients","olive oil","lemon juice","juice mayonnaise","mayonnaise supposedly","supposedly originates","mah n","n according","olive oil","oil became","became known","would take","take ito","ito france","france according","french town","town called","french towards","towards garlic","french asked","white sauce","sauce made","el que","case mayonnaise","without garlic","traditional cuisine","island since","since ancientimes","dishes mah","mah n","n cheese","cheese file","lefthumb mah","mah n","n cheese","local cheese","minorca mah","mah n","n cheese","n de","n de","characteristic orange","rounded corners","mah n","word menorca","added making","full name","name mah","mah n","n menorca","four main","main varieties","varieties according","time mild","mild semi","semi mature","quality cottage","cottage cheese","also made","dairy shops","specific name","widely known","known since","menorca gastronom","cocina sant","cold cuts","cuts file","thumb minorcan","minorcan sobrassada","sobrassada withexception","cold cuts","cuts made","roman legacy","legacy everything","pigs usually","usually undertaken","black colour","colour similarly","catalan cuisine","spices used","varied buthey","distinct personality","spices normally","normally used","black pepper","pepper white","white pepper","also add","typical mediterranean","thumb piles","clear brown","brown color","color since","contain blood","generally eaten","eaten cooked","cooked usually","usually fried","fried black","species thathe","thathe white","white one","addition pig","pig blood","often eaten","eaten fried","isometimes eaten","eaten raw","cooked black","greasy sausage","sausage basically","usually contains","contains pig","pig minced","minced meat","meat blood","blood black","black pepper","another one","inserted within","pig leg","name comes","eaten raw","raw cut","fine slices","cured raw","raw sausage","chopped lean","lean meat","meat mixed","bacon cut","salt pepper","process goes","drying process","process inside","transformations take","take place","place contrary","sobrassada fermentation","notake place","cold cut","specific one","oldest one","island minorcan","minorcan sobrassada","cold cuts","balearic islands","islands traditional","traditional dishes","dishes vegetables","vegetables legumes","greens file","thumb stuffed","stuffed zucchini","zucchini file","file tom","thumb spinach","traditional dish","island file","thumb spinach","traditional dish","island minorcan","minorcan cuisine","mediterranean rich","self sufficient","sufficient providing","type ofresh","ofresh products","products thus","never gone","gone missing","missing thanks","farming activity","theconomy even","day time","crops represent","represent approximately","approximately half","minorcan territory","territory menorca","menorca gastronomia","cuina p","salad hanging","green vegetables","prepare salads","stir fry","fry stand","onions italian","italian green","green peppers","peppers red","red pepper","pepper garlic","garlic roman","roman lettuce","prepare salads","salads mediterranean","mediterranean green","green vegetables","fried stuffed","oven baked","summer season","greenhouse zucchini","similar way","local variety","eaten mainly","side dish","dish battered","fried oven","oven baked","also abundant","abundant specially","also eaten","savoury dishes","dishes like","local green","green vegetables","thousand ways","ways menorca","menorca gastronomia","cuina p","much appreciated","appreciated oven","oven baked","baked fried","without sauce","accompany meats","local soup","tortilla olive","olive oil","also common","like local","menorca gastronomia","cuina p","decades ago","olive trees","minorcan dishes","oven baked","baked eggplant","local eggplant","oven baked","single layer","layer covered","shredded bread","minced garlic","garlic basil","chopped onion","balearic islands","islands oven","oven baked","stuffed zucchini","also traditional","soup food","usually eaten","summer menorca","menorca gastronomia","cuina p","laminated potatoes","potatoes another","laminated tomatoes","tomatoes covered","shredded bread","bread garlic","garlic basil","add fish","tomatoes menorca","menorca gastronomia","cuina p","also traditionally","traditionally served","sometimes little","little balls","minced meat","added menorca","menorca gastronomia","cuina p","salty products","wheat flour","flour many","produce like","pasta filled","shaped like","half moon","moon filled","sobrassada menorca","menorca gastronomia","cuina p","easter time","usually rectangular","rectangular open","traditionally filled","stir fry","fry vegetables","pepper even","even though","christmas eve","midnight mass","mass bread","bread rolls","rolls filled","oven cooked","cooked menorca","menorca gastronomia","cuina p","p file","lefthumb x","x px","best known","known lobster","seafood sea","sea products","widely consumed","consumed traditionally","used justhe","fish like","fresh boughthe","go fishing","still happens","go around","eathe captured","cooked fish","cuina p","highly appreciated","abundant fish","fish another","another appreciated","appreciated fish","menorca gastronomia","cuina p","oven baked","baked grilled","seafood shells","also used","like thearth","thearth products","products change","change according","sometimes also","salty pies","puddings oven","oven baked","baked grilled","eating varied","varied fish","even octopus","menorca gastronom","cocina p","prepared mixing","mixing cod","cod sauce","oil dressing","others cooked","catalonia provence","minorcan dishes","oven baked","minorcan cookbook","established reputation","long ago","bread soup","poor fisher","dish since","since minorcan","find add","add bits","onions tomato","tomato garlic","garlic parsley","best known","known internationally","internationally minorcan","minorcan dish","minorcan pots","lobster menorca","menorca gastronomia","cuina p","made ofish","ofish usually","fish like","pot baked","baked common","common cockle","cockle covered","shredded bread","bread garlic","garlic parsley","fish meatballs","meatballs menorca","menorca gastronom","cocina p","saut ed","chopped sauce","mah n","n cheese","cheese shredded","meatballs mixed","mixed withe","withe fish","ones used","soups meatballs","meat sauce","also prepared","case contain","contain pine","pine nuts","main dish","dish pig","pig farming","common locally","pigs areasy","traditional sausages","also cattle","cattle farming","traditional source","make cheese","cheese among","things meat","raw material","old recipe","sliced veal","veal rolls","rolls filled","boiled egg","egg bacon","menorca gastronomia","cuina p","p lamb","mutton lamb","lamb chicken","chicken food","food chicken","chicken rabbit","also consumed","local varieties","mainly rabbits","birds rabbits","withe help","dogs including","indigenous breed","birds typical","typical techniques","also part","simple preparations","sea crab","minorcan dishes","arroz de","de la","la tierra","tierra rice","wheat crushed","assorted sausages","menorca gastronomia","cuina p","p fried","fried lamb","fried pork","pork sometimes","sometimes called","gravy menorca","menorca gastronomia","meat cooked","cooked halfway","typical italian","italian way","cooked separately","traditional catalan","catalan way","cooked athend","athend withe","withe rest","ingredients like","british influence","simple meat","meat preparation","preparation serving","pasta typical","typical desserts","pastries file","file coca","px bamba","bamba snack","snack coca","coca bamba","bamba file","file crespells","px crespells","crespells file","px plate","minorcan bakery","bakery pastry","pastry andessert","andessert making","making incorporates","incorporates ideas","ideas techniques","jewish arabic","brief stay","island served","incorporating almonds","islanders took","use catalan","catalan cream","also use","use meringue","italian way","take advantage","sweet recipes","southern mediterranean","cookies made","egg whites","soft cheese","saints day","also cooked","square shaped","shaped unlike","like chocolate","chocolate tablets","texture although","also dry","almonds egg","egg white","white sugar","coca de","de menorca","tomato garlic","garlic parsley","parsley sugar","chopped cookie","coca bamba","coca de","de san","san juan","middle flatbread","contains boiled","boiled potato","afternoon snack","withot chocolate","local festivities","made withe","get hard","non consumption","consumption withe","also made","made individual","individual round","round small","seasonal fruit","fruit withe","also made","de pasta","pasta bamba","bamba fritters","flower shaped","shaped cookies","cookies covered","fine sugar","stuffed either","cottage cheese","round hole","see whathey","balearic islands","islands crespells","dry round","round large","thin cookies","bread covered","pine nuts","nuts like","coca de","de san","san juan","catalan style","style rustic","rustic bread","sugar almonds","added cinnamon","cinnamon lemon","lemon peel","peel etc","mixture containing","containing cottage","cottage cheese","lemon peel","peel alayor","alayor cookies","round bun","closed hole","afternoon snack","hard inside","know depending","outer surface","surface layer","chopped almonds","de la","small white","white cookies","cookies made","egg white","white lots","sometimes also","also bits","six pointed","pointed flower","flower shape","minorca menorca","menorca gastronom","cocina p","warm honey","honey minorcan","flower shaped","shaped cookies","cookies covered","fine sugar","flour egg","egg sugar","sugar lemon","minorcan cottage","cottage cheese","cheese pudding","alayor cookies","pine nuts","nuts pudding","coca bamba","bamba sometimes","sometimes made","consistent enough","pieces grapes","valencia typical","rectangular biscuits","biscuits decorated","waves drawn","peculiar kind","cake made","chopped almonds","spanish gastronomy","usually covered","covered completely","burnt egg","sometimes also","also sugar","usually found","easter cakes","cakes birthday","birthday cakes","swiss rolls","rolls filled","catalan cream","usually also","also stuffed","stuffed inside","typical drinks","artisan drink","drunk hot","ice cold","soft herbs","herbs liquor","particular flavor","also traditional","flowers gin","gin de","de menorca","menorca comes","british presence","th century","well known","known gin","mah n","n de","greek origin","greek workers","theighteenth century","minorca iserved","lemon skin","lemon juice","eight days","also made","mah n","lemon flower","de la","hot punch","wine dating","british presence","theighteenth century","minorca since","since time","four wineries","vino de","alayor whichave","distinctive name","obtained international","international distinctions","commerce started","san luis","lost since","gastronomic fairs","gastronomic fair","celebrated every","every april","april since","minorcan products","exhibitors debates","debates tastings","tastings conferences","conferences etc","public references","references category","category gastronomy","gastronomy category","category spanish","spanish cuisine"],"new_description":"file thumb x px minorcan mah_n cheese mah_n cheese minorcan cuisine refers typical food_andrink minorca rocky island balearic islands balearic archipelago spain consisting eight municipalities featuring mediterranean climate weather south strong winds yearound marine salt carried wind gives cheese typical flavour fish certain source ofood additionally horses pigs used cold cuts skin used produce leather milk produce cheese agriculture scale varied consisting typical mediterranean products within typical mediterranean cuisine also influences various people particularly thenglish brought cake puddings punch drink punch rural marine cuisine mostly based greens vegetables one garden locally produced meat fish seafood caught menorca una volta per l ed triangle p cold cuts used olive oil although produced island also fundamental ingredient local dishes minorcan cuisine atimes survival cuisine original flavour high_quality products maximum complications seasonal based fishing particularly fishing seafood especially clams squid fruits vegetables cultivated much variety possible small_scale local consumption second_half twentieth_century goats abundance thathey eaten famine caused crops insufficient fishing today luxury legs minorcan kids particularly appreciated many rabbits island roman_emperor augustus send help reason rabbit common element cuisine later times periods hunting forbidden seventeenth_century thenglish unsuccessfully attempted introduce deer left nowadays rabbits various still bred general aspects recipes ways minorcan cuisine mostly transmitted oral tradition opposed catalonia example books found even middle_ages minorca first written mentions cuisine found notes belonging archduke ludwig austria typical cooking without recipes nothing else de pedro published major work substantial part popular wisdom offers detailed anonymous recipes nevertheless require prior knowledge local cuisine order interpreted menorca gastronom cocina p minorcan cuisine based local products land sea classic mediterranean crops strong use olive oil wine legumes foods pickled arab culture also important well additions french english cuisine particular owing theirespective periods domination theighteenth century small island region passed periods various yet dishes still also modest simpler versions dishes belonged minority created accessible everyone circumstances known cuisine absolutely exclusive island even times abundance believed dish containing ingredients necessarily better actually opposite simplicity cuisine would normally considered poor rural appreciated even today products obtained yearound minorca seasonal cuisine seasonal ingredients recipes follows cycles nature marked holidays according traditions basic ingredients fish wings liver rock fish general salted cod seafood mussels cockle cockle squid lobster crab sea vegetables vine tomatoes onion pepper aubergine legumes dry white string beans called island greens spinach peas called island fruits apricots grapes nuts dates almonds pine nuts meat chicken food chicken rabbit pork beef cold cuts milk cap scotch dry mushrooms olive oil bread honey similar spanish cake meringue specialties file ingredients ingredients olive oil lemon juice mayonnaise supposedly originates city mah_n according theory eggs olive oil became_known consequence occupation island would_take ito france according invented french town called perhaps third based french towards garlic minorcan french asked garlic removed white sauce made olive eggs el que barcelona case mayonnaise without garlic product use traditional cuisine island since ancientimes ingredient dishes mah_n cheese file lefthumb mah_n cheese local cheese produced minorca mah_n cheese features n de n de origin instead boiled characteristic orange shape rounded corners made tradition norms form denomination origin given mah_n later word menorca added making full name mah_n menorca four main varieties according time mild semi mature aged quality cottage cheese also_made dairy shops minorca specific name widely known since consumed g menorca gastronom cocina sant triangle cold cuts file thumb minorcan sobrassada withexception sobrassada cold cuts made evolution roman legacy everything made pork slaughter pigs usually undertaken winter called blood added products gives black colour similarly cuisine catalan cuisine spices used varied buthey ones product distinct personality makes different spices normally used black pepper white pepper cinnamon salt also add typical mediterranean file una carn thumb piles white clear brown color since contain blood form ball used carn made meat parts pig fine generally eaten cooked usually fried black ingredients species thathe white one contains addition pig blood like one fine often eaten fried isometimes eaten raw cooked black greasy sausage basically less usually contains pig minced meat blood black pepper another one appearance different inserted within pig leg name comes eaten raw cut fine slices cooked meat cured raw sausage chopped lean meat mixed bacon cut small marinated salt pepper sometimes species process goes drying process inside transformations take_place contrary sobrassada fermentation notake place aspect one whip cold cut specific one perhaps oldest one island minorcan sobrassada cold cuts balearic islands traditional dishes vegetables legumes greens file thumb stuffed zucchini file tom thumb spinach traditional dish island file thumb spinach traditional dish island minorcan cuisine mediterranean rich vegetables types island self sufficient providing type ofresh products thus never gone missing thanks farming activity part theconomy even day time crops represent approximately half minorcan territory menorca_gastronomia cuina_p salad hanging etc green vegetables prepare salads stir fry stand onions italian green peppers red pepper garlic roman lettuce prepare salads mediterranean green vegetables fried stuffed oven baked minorca white interior variety summer season cannot cultivated greenhouse zucchini prepared similar way also local variety colored eaten mainly side dish battered fried oven baked fruits also abundant specially also eaten savoury dishes like example local green vegetables prepared thousand ways menorca_gastronomia cuina_p common mushrooms much appreciated oven baked fried without sauce accompany meats wild appreciated local soup simply tortilla olive oil grease used cook dishes also_common pastry olives appreciated cooking like local_menorca_gastronomia cuina_p decades ago hundreds olive trees minorca nowadays cultivated minorcan dishes contain ingredients oven baked eggplant species local eggplant used tender laminated oven baked single layer covered shredded bread minced garlic basil isimilar made eggplant usually chopped onion eaten balearic islands oven baked stuffed zucchini also traditional origin soup food usually eaten summer menorca_gastronomia cuina_p consists layer laminated potatoes another laminated tomatoes covered shredded bread garlic basil grilled add fish head red example layers potatoes tomatoes menorca_gastronomia cuina_p fresh peas common also traditionally served tapas sometimes little balls minced meat added menorca_gastronomia cuina_p lot salty products made wheat flour many breadough land produce like example pasta filled cheese made breadough shaped like half moon filled sobrassada menorca_gastronomia cuina_p common easter time salty usually rectangular open closed traditionally filled stir fry vegetables pepper even_though meat fish christmas eve common eat midnight mass bread rolls filled meat milk oven cooked menorca_gastronomia cuina_p file lefthumb x px best_known lobster fish seafood sea products condition widely consumed traditionally used justhe like example like fish like atlantic example fresh boughthe day type cooking fish traditional many boat go fishing weekends summer customary still happens go around island boat excursion forced eathe captured cooked fish board gastronomia cuina_p highly appreciated abundant fish another appreciated fish menorca_gastronomia cuina_p oven baked grilled number seafood shells also_used products like thearth products change according season cooked pots rice sometimes also salty pies puddings oven baked grilled oven minorca eating varied fish even octopus squid form meatballs cod menorca gastronom cocina p prepared mixing cod sauce garlic oil dressing dish others cooked catalonia provence nearby minorcan dishes fish seafood stuffed oven baked established minorcan cookbook established reputation lobster long ago type sauce bread soup poor fisher dish since minorcan find add bits lobster top onions tomato garlic parsley best_known internationally minorcan dish minorcan pots lobster menorca_gastronomia cuina_p pots prepared lot made ofish usually fish like pot baked common cockle covered shredded bread garlic parsley fish meatballs menorca gastronom cocina p saut ed chopped sauce put little mah_n cheese shredded meatballs mixed withe fish fish example ones used soups meatballs meat sauce also prepared case contain pine nuts beaten bars main dish pig farming common locally pigs areasy raise traditional sausages popular also cattle farming traditional source milk make cheese among things meat latter used raw material local old recipe example sliced veal rolls filled boiled egg bacon menorca_gastronomia cuina_p lamb mutton lamb chicken food chicken rabbit also consumed local varieties chicken lamb currently limited mainly rabbits birds rabbits withe_help dogs including indigenous breed rabbit dog birds typical techniques use neck also part gastronomy simple preparations example many sophisticated sea crab minorcan dishes meats sausages arroz de_la tierra rice land made rice wheat crushed mortar baked assorted sausages resembles african menorca_gastronomia cuina_p fried lamb fried pork sometimes_called islanders gravy menorca_gastronomia cuina meat cooked halfway typical italian way pasta cooked separately added rest ingredients traditional catalan way pasta cooked athend withe rest ingredients like noodles also british influence gravy kind simple meat preparation serving bed pasta typical desserts pastries file coca thumb px bamba snack coca bamba file crespells thumb px crespells file thumb px file thumb px plate minorcan bakery pastry andessert making incorporates ideas techniques products cultures diverse jewish arabic english brief stay french island served create according technique moment incorporating almonds recipe british islanders took taste puddings use catalan cream also_use meringue italian way take_advantage whites desserts cakes taste sweet recipes common southern mediterranean cookies made egg whites italian almonds french de fritters saints made soft cheese saints day also cooked des square shaped unlike continental like chocolate tablets texture although also dry hard made almonds egg white sugar flour coca de de de menorca flatbread slices tomato garlic parsley sugar chopped cookie coca bamba coca de san_juan thick tall middle flatbread form contains boiled potato eaten breakfast afternoon snack withot chocolate local festivities made withe get hard days non consumption withe recipe coca also_made individual round small covered apricots seasonal fruit withe dough also_made de pasta bamba fritters crespells flower shaped cookies covered fine sugar stuffed either jam made cottage cheese lemon round hole middle see whathey stuffed balearic islands crespells dry round large thin cookies appearance bread covered fruit pine nuts like coca de san_juan dough made catalan style rustic bread water sugar almonds added cinnamon lemon peel etc made minorca de n sweet mixture containing cottage cheese lemon peel alayor cookies kind round bun closed hole middle bit mainly breakfast afternoon snack milk opened half spread jam honey soft hard inside know depending appearance outer surface layer kind cake flour replaced chopped almonds de_la small white cookies made egg white lots sugar sometimes also bits almonds six pointed flower shape pronounced minorca menorca gastronom cocina p thin crisp wine served warm honey minorcan five six flower shaped cookies covered fine sugar made flour egg sugar lemon de n n minorcan cottage cheese pudding alayor cookies traditionally pine nuts pudding coca bamba sometimes made like consistent enough cut pieces grapes cheese simple sweet similar sweet valencia typical minorca rectangular biscuits decorated waves drawn surface fork similar like catalan chocolate n peculiar kind cake made chopped almonds frequent spanish gastronomy minorca usually covered completely burnt egg meringue sometimes also sugar decoration typical island usually found de easter cakes birthday cakes de swiss rolls filled catalan cream usually also stuffed inside egg typical drinks artisan drink cinnamon drunk hot ice cold soft herbs liquor particular flavor texture minorca islands also traditional made flowers gin de menorca comes british presence island th_century distillery produces well_known gin located port mah_n de liquor roses liquor greek origin broughto island greek workers merchants theighteenth century minorca iserved gastronom las gin lemon skin little gin lemon juice minorcan made herbs island eight days lemon green cinnamon liquors also_made mah_n orange lemon flower de_la kind hot punch wine dating time british presence theighteenth century spite word nothing withe wine produced minorca since time currently four wineries de vino de alayor whichave distinctive name wine land island obtained international distinctions began produced minorca commerce started ancient alayor san luis later lost since cultivated vines corsica geological features minorca gastronom las fruit made fruits gastronomic fairs menorca gastronomic fair celebrated every april since showcase minorcan products consists exhibitors debates tastings conferences etc aimed types public references_category gastronomy category spanish cuisine"},{"title":"Culinary tourism","description":"file terrace cafe rue de buci paris july jpg thumb px france is a country that has been strongly associated with culinary tourism with both international visitors as well as french citizens traveling to different parts of the country to sample local foods and wine culinary tourism or food tourism is thexploration ofood as the purpose of tourism it is now considered a vital component of the tourism experience dining out is common among tourist s and food is believed to rank alongside climate lodging accommodation and scenery in importance tourists culinary or food tourism is the pursuit of unique and memorableating andrinking experiences both near and far culinary tourism differs from agritourism in that culinary tourism is considered a subset of cultural tourism cuisine is a manifestation of culture whereas agritourism is considered a subset of rural tourism but culinary tourism and agritourism are inextricably linked as the seeds of cuisine can be found in agriculture culinary food tourism is not limited to gourmet food while many cities regions or countries are known for their food culinary tourism is not limited by food culturevery tourists eats abouthree times a day making food one of the fundamental economic drivers of tourism countries like ireland peru and canadare making significant investment in culinary tourism development and are seeing results with visitor spending and overnight stays rising as a result ofood tourism promotion and product development in addition to the above information the world food travel association adds the following information for clarification we say food tourism but drinking beverages is an implied and associated activity it is also cumbersome to say food andrink tourism we need to clarify far and near in addition to traveling across country or the world to eat or drink we can also be food travelers in our own regions cities and neighborhoods if you rarely leave your neighborhood and travel across town to a new neighborhood to go to a special grocery store or to eat out you are a food traveler in your own backyard the act of traveling is implied because most people travel at least across their own town if nothe region the country and even the planethe distance covered is not as important as the facthat we are always on the move we are all travelers of a sort and we are all eaters therefore we can also all be regarded as food travelers previously the world food travel association had used the phrase culinary tourism to describe our industry we stopped using that phrase in because ouresearch indicated that it gave a misleading impression while culinary technically can be used for anything relating to food andrink and initially seems to make good sense the perception among the majority of english speakers we interviewed is thathe word culinary is elitist nothing could be further from the truth about what our industry is all about food tourism is includes the food carts and street vendors as much as the locals only gastro pubs dramatic wineries or one of a kind restaurants there isomething for everyone in the food tourism industry history a brief overview of the history of the food tourism industry can be watched in this video who are food travelers research from the world food travel association s food travel monitor proves that of travelers canow be considered food travelers by food travelers we mean travelers who had participated in a food or beveragexperience other than dining out at some time in the past months they may have visited a cooking school participated in a food tour or gone shopping in a local grocery or gourmet store these are the types of activities that food travelers engage in we also gon tours at food or beverage factories participate in wine beer spirits tastings and of courseat out in unique or memorable foodservicestablishments we ll visit a chocolatier bakery or gelateria to sample what makes the area famous most importantly food travelers arexplorers we love to get off the beaten path and find the new or new for us unique or undiscovered experiences it may surprise many readers to learn that foodies with a gourmet preference are absolutely in the minority to be specific our psychoculinary research showed that only ofood travelers expressed an interest in gourmet experiences as their primary interest by the time ouresearch was published that number had risen to but still very much in the minority we attribute the increase due to television programming about chefs chef competitions and cooking it is more than agritourism the most frequent misunderstanding or misconception among professionals in our industry is that agritourism and food tourism are interchangeable terms nothing could be further from the truth agritourism is a subset of rural tourism and involves farms farm activities and can include farmers markets as an activity agritourism tends to be popular with locals and close in regional travelers but itends to be less attractive to visitors from across countries or across the world very few visitors will pay money to ride a cow or purchase a bunch of rhubarb to take back to their hotel room farm tours generally are a more popular activity with children which is anothereason farm visitors tend to be more local and regional because it is much morexpensive to transport a family with children by air than it is by carecently some visitors havexpressed interest in food pedigree sourcing composting and animal welfare these are more food industry issues and have less to do with tourism although some travelers take their behavior and values withem while traveling the bottom line is that agriculture has a very limited appeal to long haul visitors and therefore has limited economic potential the food tourism industry and our association respect agriculture and farmers and acknowledges thathe seeds of cuisine are in agriculture rather than focusing on agritourism a more profitable potential for the agriculture industry is in value added agricultural products look at our wheel of economic development which illustrates how agriculture agritourism and food tourism in other words our entire community interrelate theconomic impact estimating theconomic impact ofood beverage tourism is at best very difficult first we would need to find how many travelers there are to an area then we would need to interview them to find out how much they spend on food andrink while traveling we couldig deeper and ask them what percentage of their expenditures are for sustenance vs a unique food or beveragexperience we would also have to factor out expenditures by locals and howould you account for a visitor spending on gourmet souvenir items in a grocery store as you can see the task is very difficult and the cost ofiguring out exactly how much travelers are spending on food and beveragexperiences can outweigh the findings the world food travel association wfta provides a formula over the years through the wfta s own research secondary research interviews and conversations the association has constructed its own impression of the value ofood tourism by itsestimate visitorspend approximately of their travel budget on food and beverages the figure can get as high as in expensive destinations and as low as on more affordable destinations confirmed food lovers also spend a bit more than the average of spent by travelers in general the association recommends that interested parties conduct morevidence based research if you require absolute precision the wfta is confidenthat youresults will most likely fall in this range most governments publish data on total visitor arrivals and expenditures take thestimated economic impact of visitors to your areand multiply it by that is your estimated economic impact of expenditures on the food and beverage sector food tourism benefits food tourismay sound like a great idea but whatangible measurable benefits can your involvement with our industry bring to you here s our short list of what you and the various players in your area can realize as you become morengaged in a sustainable food andrink tourism strategy more visitor arrivals more sales rooms airplane seats restaurant meals wine beer carentals etc more media coverage a new competitive advantage or unique selling proposition ie unique food andrink more tax revenue to government authorities increased community awareness aboutourism in general increased community pride about and awareness of the area s food andrink resources cooking classes a growing area of culinary tourism are cooking classes the formats vary from short lesson lasting a few hours to full day and multi day courses the focus foreign tourists will usually be on the cuisine of the country they are visiting whereas local tourists may be keen to experience cuisines new to themany cooking classes also include marketours to enhance the cultural experience food tours the food tour formula varies from tour tour and from operator toperator of which there are many most however feature the following elements they operate in major cities generally but not always capital cities that have substantial tourist numbers tours exist amongst other places in london paris rome istanbul new york city lisbon berlin madrid belfast san franciscopenhagen kuala lumpur and barcelona thessential for operators is to find a city with a vibrant and interesting food culture street food may feature there are wide variations in cost however they are morexpensive in the united states and lesso in asia tours are generally on foothe distances traveled are never large sometimes as in the indian food tour of london they are focused on a few adjoining streets few touristseem to want a cycle tour although one or two cycle tour companies are considering a food elementours typically last for a minimum three hours although many last longer many tourstart around am local time and continue well into the afternoon making ithe day s major attraction tours generally start and end at public transport hubsuch as metro stations participant numbers vary buto is generally considered the upper limitours rarely charge for small children who share food with parents carers tours may not be necessarily fully compliant with wheelchair use this will depend on thexactour and the attitude of each location to disability tours take visitors to places they might otherwise not have seen so they can shop and eat like locals rather than rely on touristraps phrasesuch as eathe city like a real parisian berliner londoner new yorker are often employed in food tour publicity all tours are guided by local people many tour guides add their local knowledge as a bonus perhaps recommending restaurants in other parts of the city tours are primarily about food the format varies from company to company but will generally include visits to markets bars and caf s where those on the tour are invited to sample the wares there is usually a shop visito buy the sort ofood that is difficulto sourcelsewhere tours may end up with a sit down meal at a restaurant where there is usually the choice of beer wine or soft drinks guides talk about food often pointing those on the tour to shops they use they may discuss how the sort ofood they and their families eat differs from the food generally offered tourists they are unlikely to be kindly disposed to international fast food outlets guides generally add in material abouthe history of the area the tour is in mostours are close to but not in major tourist zones tours assume that participants eat almost anything and are not designed for special diets however most can accommodate vegetarians although vegan diets are rarely catered for an exception is the indian food tour as many indiare vegan the same warning applies to those looking for gluten freetc many tour companies aim to create a sustainable tourismodel over which they provide to their clients an experience that makes a positive impact on the local environment society and economy by working only with local producers and or family own establishments and celebrating local traditions all on foot which means having a zero carbon footprint see also cooking school externalinks world food travel association the independent food tour association category food andrink appreciation category types of tourism","main_words":["file","terrace","cafe","rue","de","paris","july","jpg","thumb","px","france","country","strongly","associated","culinary_tourism","international","visitors","well","french","citizens","traveling","different_parts","country","sample","wine","culinary_tourism","food_tourism","thexploration","ofood","purpose","tourism","considered","vital","component","tourism","experience","dining","common","among","tourist","food","believed","rank","alongside","climate","lodging","accommodation","scenery","importance","tourists","culinary","food_tourism","pursuit","unique","andrinking","experiences","near","far","culinary_tourism","differs","agritourism","culinary_tourism","considered","subset","cultural_tourism","cuisine","manifestation","culture","whereas","agritourism","considered","subset","rural_tourism","culinary_tourism","agritourism","inextricably","linked","seeds","cuisine","found","agriculture","culinary","food_tourism","limited","gourmet","food","many","cities","regions","countries","known","food","culinary_tourism","limited","food","tourists","times","day","making","food","one","fundamental","economic","drivers","tourism","countries","like","ireland","peru","making","significant","investment","seeing","results","visitor","spending","overnight_stays","rising","result","ofood","tourism_promotion","product_development","addition","information","world","food","travel_association","adds","following","information","say","food_tourism","drinking","beverages","implied","associated","activity","also","say","food_andrink","tourism","need","far","near","addition","traveling","across","country","world","eat","drink","also","food","travelers","regions","cities","neighborhoods","rarely","leave","neighborhood","travel","across","town","new","neighborhood","go","special","grocery","store","eat","food","traveler","backyard","act","traveling","implied","people","travel","least","across","town","nothe","region","country","even","distance","covered","important","facthat","always","move","travelers","sort","therefore","also","regarded","food","travelers","previously","world","food","travel_association","used","phrase","culinary_tourism","describe","industry","stopped","using","phrase","indicated","gave","misleading","impression","culinary","technically","used","anything","relating","food_andrink","initially","seems","make","good","sense","perception","among","majority","english","speakers","interviewed","thathe","word","culinary","nothing","could","truth","industry","food_tourism","includes","food_carts","street_vendors","much","locals","pubs","dramatic","wineries","one","kind","restaurants","everyone","food_tourism_industry","history","brief","overview","history","food_tourism_industry","watched","video","food","travelers","research","world","food","travel_association","food","travel_monitor","travelers","canow","considered","food","travelers","food","travelers","mean","travelers","participated","food","dining","time","past","months","may","visited","cooking","school","participated","food","tour","gone","shopping","local","grocery","gourmet","store","types","activities","food","travelers","engage","also","gon","tours","food","beverage","factories","participate","wine","beer","spirits","tastings","unique","memorable","visit","bakery","sample","makes","area","famous","importantly","food","travelers","love","get","beaten","path","find","new","new","us","unique","undiscovered","experiences","may","surprise","many","readers","learn","gourmet","preference","absolutely","minority","specific","research","showed","ofood","travelers","expressed","interest","gourmet","experiences","primary","interest","time","published","number","risen","still","much","minority","increase","due","television","programming","chefs","chef","competitions","cooking","agritourism","frequent","among","professionals","industry","agritourism","food_tourism","terms","nothing","could","truth","agritourism","subset","rural_tourism","involves","farms","farm","activities","include","farmers","markets","activity","agritourism","tends","popular","locals","close","regional","travelers","less","attractive","visitors","across","countries","across","world","visitors","pay","money","ride","cow","purchase","bunch","take","back","hotel_room","farm","tours","generally","popular","activity","children","anothereason","farm","visitors","tend","local","regional","much","morexpensive","transport","family","children","air","visitors","interest","food","sourcing","animal_welfare","food_industry","issues","less","tourism","although","travelers","take","behavior","values","withem","traveling","bottom","line","agriculture","limited","appeal","long_haul","visitors","therefore","limited","economic","potential","food_tourism_industry","association","respect","agriculture","farmers","thathe","seeds","cuisine","agriculture","rather","focusing","agritourism","profitable","potential","agriculture","industry","value","added","agricultural","products","look","wheel","economic_development","illustrates","agriculture","agritourism","food_tourism","words","entire","community","theconomic","impact","estimating","theconomic","impact","ofood","beverage","tourism","best","difficult","first","would","need","find","many","travelers","area","would","need","interview","find","much","spend","food_andrink","traveling","deeper","ask","percentage","expenditures","unique","food","would_also","factor","expenditures","locals","account","visitor","spending","gourmet","souvenir","items","grocery","store","see","task","difficult","cost","exactly","much","travelers","spending","food","outweigh","findings","world","food","travel_association","provides","formula","years","research","secondary","research","interviews","conversations","association","constructed","impression","value","ofood","tourism","approximately","travel","budget","food","beverages","figure","get","high","expensive","destinations","low","affordable","destinations","confirmed","food","lovers","also","spend","bit","average","spent","travelers","general","association","interested","parties","conduct","based","research","require","likely","fall","range","governments","publish","data","total","visitor","arrivals","expenditures","take","economic_impact","visitors","areand","estimated","economic_impact","expenditures","food","beverage","sector","food_tourism","benefits","sound","like","great","idea","benefits","involvement","industry","bring","short","list","various","players","area","realize","become","sustainable","food_andrink","tourism","strategy","visitor","arrivals","sales","rooms","airplane","seats","restaurant","meals","wine","beer","etc","media","coverage","new","competitive","advantage","unique","selling","proposition","unique","food_andrink","tax","revenue","government","authorities","increased","community","awareness","aboutourism","general","increased","community","pride","awareness","area","food_andrink","resources","cooking","classes","growing","area","culinary_tourism","cooking","classes","formats","vary","short","lasting","hours","full","day","multi","day","courses","focus","foreign","tourists","usually","cuisine","country","visiting","whereas","local","tourists_may","keen","experience","cuisines","new","cooking","classes","also_include","enhance","cultural","experience","food","tours","food","tour","formula","varies","tour","tour_operator","many","however","feature","following","elements","operate","major_cities","generally","always","capital","cities","substantial","tourist","numbers","tours","exist","amongst","places","london","paris","rome","istanbul","new_york","city","lisbon","berlin","madrid","belfast","san","kuala_lumpur","barcelona","thessential","operators","find","city","vibrant","interesting","food_culture","street_food","may","feature","wide","variations","cost","however","morexpensive","united_states","asia","tours","generally","distances","traveled","never","large","sometimes","indian","food","tour","london","focused","adjoining","streets","want","cycle","tour","although","one","two","cycle","tour","companies","considering","food","typically","last","minimum","three","hours","although_many","last","longer","many","around","local","time","continue","well","afternoon","making_ithe","day","major","attraction","tours","generally","start","end","public_transport","metro","stations","participant","numbers","vary","buto","generally","considered","upper","rarely","charge","small","children","share","food","parents","tours","may","necessarily","fully","wheelchair","use","depend","attitude","location","disability","tours","take","visitors","places","might","otherwise","seen","shop","eat","like","locals","rather","rely","touristraps","eathe","city","like","real","parisian","new_yorker","often","employed","food","tour","publicity","tours","guided","local_people","many","tour_guides","add","local","knowledge","bonus","perhaps","recommending","restaurants","parts","city","tours","primarily","food","format","varies","company","company","generally","include","visits","markets","bars","caf","tour","invited","sample","usually","shop","visito","buy","sort","ofood","difficulto","tours","may","end","sit","meal","restaurant","usually","choice","beer","wine","soft_drinks","guides","talk","food","often","pointing","tour","shops","use","may","discuss","sort","ofood","families","eat","differs","food","generally","offered","tourists","unlikely","disposed","international","fast_food","outlets","guides","generally","add","material","abouthe","history","area","tour","close","major","tourist","zones","tours","assume","participants","eat","almost","anything","designed","special","diets","however","accommodate","although","vegan","diets","rarely","catered","exception","indian","food","tour","many","indiare","vegan","warning","applies","looking","many","tour","companies","aim","create","sustainable","provide","clients","experience","makes","positive","impact","local","environment","society","economy","working","local","producers","family","establishments","celebrating","local","traditions","foot","means","zero","carbon","footprint","see_also","cooking","school","externalinks","world","food","travel_association","independent","food","tour","association","category_food_andrink","appreciation","category_types","tourism"],"clean_bigrams":[["file","terrace"],["terrace","cafe"],["cafe","rue"],["rue","de"],["paris","july"],["july","jpg"],["jpg","thumb"],["thumb","px"],["px","france"],["strongly","associated"],["culinary","tourism"],["international","visitors"],["french","citizens"],["citizens","traveling"],["different","parts"],["sample","local"],["local","foods"],["wine","culinary"],["culinary","tourism"],["food","tourism"],["thexploration","ofood"],["vital","component"],["tourism","experience"],["experience","dining"],["common","among"],["among","tourist"],["rank","alongside"],["alongside","climate"],["climate","lodging"],["lodging","accommodation"],["importance","tourists"],["tourists","culinary"],["culinary","food"],["food","tourism"],["andrinking","experiences"],["far","culinary"],["culinary","tourism"],["tourism","differs"],["culinary","tourism"],["cultural","tourism"],["tourism","cuisine"],["culture","whereas"],["whereas","agritourism"],["rural","tourism"],["culinary","tourism"],["inextricably","linked"],["agriculture","culinary"],["culinary","food"],["food","tourism"],["gourmet","food"],["many","cities"],["cities","regions"],["food","culinary"],["culinary","tourism"],["day","making"],["making","food"],["food","one"],["fundamental","economic"],["economic","drivers"],["tourism","countries"],["countries","like"],["like","ireland"],["ireland","peru"],["making","significant"],["significant","investment"],["culinary","tourism"],["tourism","development"],["seeing","results"],["visitor","spending"],["overnight","stays"],["stays","rising"],["result","ofood"],["ofood","tourism"],["tourism","promotion"],["product","development"],["world","food"],["food","travel"],["travel","association"],["association","adds"],["following","information"],["say","food"],["food","tourism"],["drinking","beverages"],["associated","activity"],["say","food"],["food","andrink"],["andrink","tourism"],["traveling","across"],["across","country"],["food","travelers"],["regions","cities"],["rarely","leave"],["travel","across"],["across","town"],["new","neighborhood"],["special","grocery"],["grocery","store"],["food","traveler"],["people","travel"],["least","across"],["across","town"],["nothe","region"],["planethe","distance"],["distance","covered"],["food","travelers"],["travelers","previously"],["world","food"],["food","travel"],["travel","association"],["phrase","culinary"],["culinary","tourism"],["stopped","using"],["misleading","impression"],["culinary","technically"],["anything","relating"],["food","andrink"],["initially","seems"],["make","good"],["good","sense"],["perception","among"],["english","speakers"],["thathe","word"],["word","culinary"],["nothing","could"],["food","tourism"],["food","carts"],["street","vendors"],["pubs","dramatic"],["dramatic","wineries"],["kind","restaurants"],["food","tourism"],["tourism","industry"],["industry","history"],["brief","overview"],["food","tourism"],["tourism","industry"],["food","travelers"],["travelers","research"],["world","food"],["food","travel"],["travel","association"],["food","travel"],["travel","monitor"],["travelers","canow"],["considered","food"],["food","travelers"],["food","travelers"],["mean","travelers"],["past","months"],["cooking","school"],["school","participated"],["food","tour"],["gone","shopping"],["local","grocery"],["gourmet","store"],["food","travelers"],["travelers","engage"],["also","gon"],["gon","tours"],["beverage","factories"],["factories","participate"],["wine","beer"],["beer","spirits"],["spirits","tastings"],["area","famous"],["importantly","food"],["food","travelers"],["beaten","path"],["us","unique"],["undiscovered","experiences"],["may","surprise"],["surprise","many"],["many","readers"],["gourmet","preference"],["research","showed"],["ofood","travelers"],["travelers","expressed"],["gourmet","experiences"],["primary","interest"],["increase","due"],["television","programming"],["chefs","chef"],["chef","competitions"],["among","professionals"],["food","tourism"],["terms","nothing"],["nothing","could"],["truth","agritourism"],["rural","tourism"],["involves","farms"],["farms","farm"],["farm","activities"],["include","farmers"],["farmers","markets"],["activity","agritourism"],["agritourism","tends"],["regional","travelers"],["less","attractive"],["across","countries"],["pay","money"],["take","back"],["hotel","room"],["room","farm"],["farm","tours"],["tours","generally"],["popular","activity"],["anothereason","farm"],["farm","visitors"],["visitors","tend"],["much","morexpensive"],["animal","welfare"],["food","industry"],["industry","issues"],["tourism","although"],["travelers","take"],["values","withem"],["bottom","line"],["limited","appeal"],["long","haul"],["haul","visitors"],["limited","economic"],["economic","potential"],["food","tourism"],["tourism","industry"],["association","respect"],["respect","agriculture"],["thathe","seeds"],["agriculture","rather"],["profitable","potential"],["agriculture","industry"],["value","added"],["added","agricultural"],["agricultural","products"],["products","look"],["economic","development"],["agriculture","agritourism"],["food","tourism"],["entire","community"],["theconomic","impact"],["impact","estimating"],["estimating","theconomic"],["theconomic","impact"],["impact","ofood"],["ofood","beverage"],["beverage","tourism"],["difficult","first"],["would","need"],["many","travelers"],["would","need"],["food","andrink"],["unique","food"],["would","also"],["visitor","spending"],["gourmet","souvenir"],["souvenir","items"],["grocery","store"],["much","travelers"],["world","food"],["food","travel"],["travel","association"],["research","secondary"],["secondary","research"],["research","interviews"],["value","ofood"],["ofood","tourism"],["travel","budget"],["expensive","destinations"],["affordable","destinations"],["destinations","confirmed"],["confirmed","food"],["food","lovers"],["lovers","also"],["also","spend"],["interested","parties"],["parties","conduct"],["based","research"],["likely","fall"],["governments","publish"],["publish","data"],["total","visitor"],["visitor","arrivals"],["expenditures","take"],["economic","impact"],["estimated","economic"],["economic","impact"],["beverage","sector"],["sector","food"],["food","tourism"],["tourism","benefits"],["benefits","food"],["food","tourismay"],["tourismay","sound"],["sound","like"],["great","idea"],["industry","bring"],["short","list"],["various","players"],["sustainable","food"],["food","andrink"],["andrink","tourism"],["tourism","strategy"],["visitor","arrivals"],["sales","rooms"],["rooms","airplane"],["airplane","seats"],["seats","restaurant"],["restaurant","meals"],["meals","wine"],["wine","beer"],["media","coverage"],["new","competitive"],["competitive","advantage"],["unique","selling"],["selling","proposition"],["unique","food"],["food","andrink"],["tax","revenue"],["government","authorities"],["authorities","increased"],["increased","community"],["community","awareness"],["awareness","aboutourism"],["general","increased"],["increased","community"],["community","pride"],["food","andrink"],["andrink","resources"],["resources","cooking"],["cooking","classes"],["growing","area"],["culinary","tourism"],["cooking","classes"],["formats","vary"],["full","day"],["multi","day"],["day","courses"],["focus","foreign"],["foreign","tourists"],["visiting","whereas"],["whereas","local"],["local","tourists"],["tourists","may"],["experience","cuisines"],["cuisines","new"],["cooking","classes"],["classes","also"],["also","include"],["cultural","experience"],["experience","food"],["food","tours"],["food","tour"],["tour","formula"],["formula","varies"],["tour","tour"],["however","feature"],["following","elements"],["major","cities"],["cities","generally"],["always","capital"],["capital","cities"],["substantial","tourist"],["tourist","numbers"],["numbers","tours"],["tours","exist"],["exist","amongst"],["london","paris"],["paris","rome"],["rome","istanbul"],["istanbul","new"],["new","york"],["york","city"],["city","lisbon"],["lisbon","berlin"],["berlin","madrid"],["madrid","belfast"],["belfast","san"],["kuala","lumpur"],["barcelona","thessential"],["interesting","food"],["food","culture"],["culture","street"],["street","food"],["food","may"],["may","feature"],["wide","variations"],["cost","however"],["united","states"],["asia","tours"],["tours","generally"],["distances","traveled"],["never","large"],["large","sometimes"],["indian","food"],["food","tour"],["adjoining","streets"],["cycle","tour"],["tour","although"],["although","one"],["two","cycle"],["cycle","tour"],["tour","companies"],["typically","last"],["minimum","three"],["three","hours"],["hours","although"],["although","many"],["many","last"],["last","longer"],["longer","many"],["local","time"],["continue","well"],["afternoon","making"],["making","ithe"],["ithe","day"],["major","attraction"],["attraction","tours"],["tours","generally"],["generally","start"],["public","transport"],["metro","stations"],["stations","participant"],["participant","numbers"],["numbers","vary"],["vary","buto"],["generally","considered"],["rarely","charge"],["small","children"],["share","food"],["tours","may"],["necessarily","fully"],["wheelchair","use"],["disability","tours"],["tours","take"],["take","visitors"],["might","otherwise"],["eat","like"],["like","locals"],["locals","rather"],["eathe","city"],["city","like"],["real","parisian"],["new","yorker"],["often","employed"],["food","tour"],["tour","publicity"],["local","people"],["people","many"],["many","tour"],["tour","guides"],["guides","add"],["local","knowledge"],["bonus","perhaps"],["perhaps","recommending"],["recommending","restaurants"],["city","tours"],["format","varies"],["generally","include"],["include","visits"],["markets","bars"],["shop","visito"],["visito","buy"],["sort","ofood"],["tours","may"],["may","end"],["beer","wine"],["soft","drinks"],["drinks","guides"],["guides","talk"],["food","often"],["often","pointing"],["may","discuss"],["sort","ofood"],["families","eat"],["eat","differs"],["food","generally"],["generally","offered"],["offered","tourists"],["international","fast"],["fast","food"],["food","outlets"],["outlets","guides"],["guides","generally"],["generally","add"],["material","abouthe"],["abouthe","history"],["major","tourist"],["tourist","zones"],["zones","tours"],["tours","assume"],["participants","eat"],["eat","almost"],["almost","anything"],["special","diets"],["diets","however"],["although","vegan"],["vegan","diets"],["rarely","catered"],["indian","food"],["food","tour"],["many","indiare"],["indiare","vegan"],["warning","applies"],["many","tour"],["tour","companies"],["companies","aim"],["positive","impact"],["local","environment"],["environment","society"],["local","producers"],["celebrating","local"],["local","traditions"],["zero","carbon"],["carbon","footprint"],["footprint","see"],["see","also"],["also","cooking"],["cooking","school"],["school","externalinks"],["externalinks","world"],["world","food"],["food","travel"],["travel","association"],["independent","food"],["food","tour"],["tour","association"],["association","category"],["category","food"],["food","andrink"],["andrink","appreciation"],["appreciation","category"],["category","types"]],"all_collocations":["file terrace","terrace cafe","cafe rue","rue de","paris july","july jpg","px france","strongly associated","culinary tourism","international visitors","french citizens","citizens traveling","different parts","sample local","local foods","wine culinary","culinary tourism","food tourism","thexploration ofood","vital component","tourism experience","experience dining","common among","among tourist","rank alongside","alongside climate","climate lodging","lodging accommodation","importance tourists","tourists culinary","culinary food","food tourism","andrinking experiences","far culinary","culinary tourism","tourism differs","culinary tourism","cultural tourism","tourism cuisine","culture whereas","whereas agritourism","rural tourism","culinary tourism","inextricably linked","agriculture culinary","culinary food","food tourism","gourmet food","many cities","cities regions","food culinary","culinary tourism","day making","making food","food one","fundamental economic","economic drivers","tourism countries","countries like","like ireland","ireland peru","making significant","significant investment","culinary tourism","tourism development","seeing results","visitor spending","overnight stays","stays rising","result ofood","ofood tourism","tourism promotion","product development","world food","food travel","travel association","association adds","following information","say food","food tourism","drinking beverages","associated activity","say food","food andrink","andrink tourism","traveling across","across country","food travelers","regions cities","rarely leave","travel across","across town","new neighborhood","special grocery","grocery store","food traveler","people travel","least across","across town","nothe region","planethe distance","distance covered","food travelers","travelers previously","world food","food travel","travel association","phrase culinary","culinary tourism","stopped using","misleading impression","culinary technically","anything relating","food andrink","initially seems","make good","good sense","perception among","english speakers","thathe word","word culinary","nothing could","food tourism","food carts","street vendors","pubs dramatic","dramatic wineries","kind restaurants","food tourism","tourism industry","industry history","brief overview","food tourism","tourism industry","food travelers","travelers research","world food","food travel","travel association","food travel","travel monitor","travelers canow","considered food","food travelers","food travelers","mean travelers","past months","cooking school","school participated","food tour","gone shopping","local grocery","gourmet store","food travelers","travelers engage","also gon","gon tours","beverage factories","factories participate","wine beer","beer spirits","spirits tastings","area famous","importantly food","food travelers","beaten path","us unique","undiscovered experiences","may surprise","surprise many","many readers","gourmet preference","research showed","ofood travelers","travelers expressed","gourmet experiences","primary interest","increase due","television programming","chefs chef","chef competitions","among professionals","food tourism","terms nothing","nothing could","truth agritourism","rural tourism","involves farms","farms farm","farm activities","include farmers","farmers markets","activity agritourism","agritourism tends","regional travelers","less attractive","across countries","pay money","take back","hotel room","room farm","farm tours","tours generally","popular activity","anothereason farm","farm visitors","visitors tend","much morexpensive","animal welfare","food industry","industry issues","tourism although","travelers take","values withem","bottom line","limited appeal","long haul","haul visitors","limited economic","economic potential","food tourism","tourism industry","association respect","respect agriculture","thathe seeds","agriculture rather","profitable potential","agriculture industry","value added","added agricultural","agricultural products","products look","economic development","agriculture agritourism","food tourism","entire community","theconomic impact","impact estimating","estimating theconomic","theconomic impact","impact ofood","ofood beverage","beverage tourism","difficult first","would need","many travelers","would need","food andrink","unique food","would also","visitor spending","gourmet souvenir","souvenir items","grocery store","much travelers","world food","food travel","travel association","research secondary","secondary research","research interviews","value ofood","ofood tourism","travel budget","expensive destinations","affordable destinations","destinations confirmed","confirmed food","food lovers","lovers also","also spend","interested parties","parties conduct","based research","likely fall","governments publish","publish data","total visitor","visitor arrivals","expenditures take","economic impact","estimated economic","economic impact","beverage sector","sector food","food tourism","tourism benefits","benefits food","food tourismay","tourismay sound","sound like","great idea","industry bring","short list","various players","sustainable food","food andrink","andrink tourism","tourism strategy","visitor arrivals","sales rooms","rooms airplane","airplane seats","seats restaurant","restaurant meals","meals wine","wine beer","media coverage","new competitive","competitive advantage","unique selling","selling proposition","unique food","food andrink","tax revenue","government authorities","authorities increased","increased community","community awareness","awareness aboutourism","general increased","increased community","community pride","food andrink","andrink resources","resources cooking","cooking classes","growing area","culinary tourism","cooking classes","formats vary","full day","multi day","day courses","focus foreign","foreign tourists","visiting whereas","whereas local","local tourists","tourists may","experience cuisines","cuisines new","cooking classes","classes also","also include","cultural experience","experience food","food tours","food tour","tour formula","formula varies","tour tour","however feature","following elements","major cities","cities generally","always capital","capital cities","substantial tourist","tourist numbers","numbers tours","tours exist","exist amongst","london paris","paris rome","rome istanbul","istanbul new","new york","york city","city lisbon","lisbon berlin","berlin madrid","madrid belfast","belfast san","kuala lumpur","barcelona thessential","interesting food","food culture","culture street","street food","food may","may feature","wide variations","cost however","united states","asia tours","tours generally","distances traveled","never large","large sometimes","indian food","food tour","adjoining streets","cycle tour","tour although","although one","two cycle","cycle tour","tour companies","typically last","minimum three","three hours","hours although","although many","many last","last longer","longer many","local time","continue well","afternoon making","making ithe","ithe day","major attraction","attraction tours","tours generally","generally start","public transport","metro stations","stations participant","participant numbers","numbers vary","vary buto","generally considered","rarely charge","small children","share food","tours may","necessarily fully","wheelchair use","disability tours","tours take","take visitors","might otherwise","eat like","like locals","locals rather","eathe city","city like","real parisian","new yorker","often employed","food tour","tour publicity","local people","people many","many tour","tour guides","guides add","local knowledge","bonus perhaps","perhaps recommending","recommending restaurants","city tours","format varies","generally include","include visits","markets bars","shop visito","visito buy","sort ofood","tours may","may end","beer wine","soft drinks","drinks guides","guides talk","food often","often pointing","may discuss","sort ofood","families eat","eat differs","food generally","generally offered","offered tourists","international fast","fast food","food outlets","outlets guides","guides generally","generally add","material abouthe","abouthe history","major tourist","tourist zones","zones tours","tours assume","participants eat","eat almost","almost anything","special diets","diets however","although vegan","vegan diets","rarely catered","indian food","food tour","many indiare","indiare vegan","warning applies","many tour","tour companies","companies aim","positive impact","local environment","environment society","local producers","celebrating local","local traditions","zero carbon","carbon footprint","footprint see","see also","also cooking","cooking school","school externalinks","externalinks world","world food","food travel","travel association","independent food","food tour","tour association","association category","category food","food andrink","andrink appreciation","appreciation category","category types"],"new_description":"file terrace cafe rue de paris july jpg thumb px france country strongly associated culinary_tourism international visitors well french citizens traveling different_parts country sample local_foods wine culinary_tourism food_tourism thexploration ofood purpose tourism considered vital component tourism experience dining common among tourist food believed rank alongside climate lodging accommodation scenery importance tourists culinary food_tourism pursuit unique andrinking experiences near far culinary_tourism differs agritourism culinary_tourism considered subset cultural_tourism cuisine manifestation culture whereas agritourism considered subset rural_tourism culinary_tourism agritourism inextricably linked seeds cuisine found agriculture culinary food_tourism limited gourmet food many cities regions countries known food culinary_tourism limited food tourists times day making food one fundamental economic drivers tourism countries like ireland peru making significant investment culinary_tourism_development seeing results visitor spending overnight_stays rising result ofood tourism_promotion product_development addition information world food travel_association adds following information say food_tourism drinking beverages implied associated activity also say food_andrink tourism need far near addition traveling across country world eat drink also food travelers regions cities neighborhoods rarely leave neighborhood travel across town new neighborhood go special grocery store eat food traveler backyard act traveling implied people travel least across town nothe region country even planethe distance covered important facthat always move travelers sort therefore also regarded food travelers previously world food travel_association used phrase culinary_tourism describe industry stopped using phrase indicated gave misleading impression culinary technically used anything relating food_andrink initially seems make good sense perception among majority english speakers interviewed thathe word culinary nothing could truth industry food_tourism includes food_carts street_vendors much locals pubs dramatic wineries one kind restaurants everyone food_tourism_industry history brief overview history food_tourism_industry watched video food travelers research world food travel_association food travel_monitor travelers canow considered food travelers food travelers mean travelers participated food dining time past months may visited cooking school participated food tour gone shopping local grocery gourmet store types activities food travelers engage also gon tours food beverage factories participate wine beer spirits tastings unique memorable visit bakery sample makes area famous importantly food travelers love get beaten path find new new us unique undiscovered experiences may surprise many readers learn gourmet preference absolutely minority specific research showed ofood travelers expressed interest gourmet experiences primary interest time published number risen still much minority increase due television programming chefs chef competitions cooking agritourism frequent among professionals industry agritourism food_tourism terms nothing could truth agritourism subset rural_tourism involves farms farm activities include farmers markets activity agritourism tends popular locals close regional travelers less attractive visitors across countries across world visitors pay money ride cow purchase bunch take back hotel_room farm tours generally popular activity children anothereason farm visitors tend local regional much morexpensive transport family children air visitors interest food sourcing animal_welfare food_industry issues less tourism although travelers take behavior values withem traveling bottom line agriculture limited appeal long_haul visitors therefore limited economic potential food_tourism_industry association respect agriculture farmers thathe seeds cuisine agriculture rather focusing agritourism profitable potential agriculture industry value added agricultural products look wheel economic_development illustrates agriculture agritourism food_tourism words entire community theconomic impact estimating theconomic impact ofood beverage tourism best difficult first would need find many travelers area would need interview find much spend food_andrink traveling deeper ask percentage expenditures unique food would_also factor expenditures locals account visitor spending gourmet souvenir items grocery store see task difficult cost exactly much travelers spending food outweigh findings world food travel_association provides formula years research secondary research interviews conversations association constructed impression value ofood tourism approximately travel budget food beverages figure get high expensive destinations low affordable destinations confirmed food lovers also spend bit average spent travelers general association interested parties conduct based research require likely fall range governments publish data total visitor arrivals expenditures take economic_impact visitors areand estimated economic_impact expenditures food beverage sector food_tourism benefits food_tourismay sound like great idea benefits involvement industry bring short list various players area realize become sustainable food_andrink tourism strategy visitor arrivals sales rooms airplane seats restaurant meals wine beer etc media coverage new competitive advantage unique selling proposition unique food_andrink tax revenue government authorities increased community awareness aboutourism general increased community pride awareness area food_andrink resources cooking classes growing area culinary_tourism cooking classes formats vary short lasting hours full day multi day courses focus foreign tourists usually cuisine country visiting whereas local tourists_may keen experience cuisines new cooking classes also_include enhance cultural experience food tours food tour formula varies tour tour_operator many however feature following elements operate major_cities generally always capital cities substantial tourist numbers tours exist amongst places london paris rome istanbul new_york city lisbon berlin madrid belfast san kuala_lumpur barcelona thessential operators find city vibrant interesting food_culture street_food may feature wide variations cost however morexpensive united_states asia tours generally distances traveled never large sometimes indian food tour london focused adjoining streets want cycle tour although one two cycle tour companies considering food typically last minimum three hours although_many last longer many around local time continue well afternoon making_ithe day major attraction tours generally start end public_transport metro stations participant numbers vary buto generally considered upper rarely charge small children share food parents tours may necessarily fully wheelchair use depend attitude location disability tours take visitors places might otherwise seen shop eat like locals rather rely touristraps eathe city like real parisian new_yorker often employed food tour publicity tours guided local_people many tour_guides add local knowledge bonus perhaps recommending restaurants parts city tours primarily food format varies company company generally include visits markets bars caf tour invited sample usually shop visito buy sort ofood difficulto tours may end sit meal restaurant usually choice beer wine soft_drinks guides talk food often pointing tour shops use may discuss sort ofood families eat differs food generally offered tourists unlikely disposed international fast_food outlets guides generally add material abouthe history area tour close major tourist zones tours assume participants eat almost anything designed special diets however accommodate although vegan diets rarely catered exception indian food tour many indiare vegan warning applies looking many tour companies aim create sustainable provide clients experience makes positive impact local environment society economy working local producers family establishments celebrating local traditions foot means zero carbon footprint see_also cooking school externalinks world food travel_association independent food tour association category_food_andrink appreciation category_types tourism"},{"title":"Cultural tourism","description":"file sibiuphotojpg thumb sibiu romania file beirut jpg thumb the arts quarter in beirut central district lebanon file prerupstonecisternjpeg righthumb px tourists taking pictures athe khmer empire khmer pre rupre rup temple ruins an example of cultural tourism file patiograndemosqueekairouanjpg righthumb px tourists in the courtyard of the mosque of uqba great mosque of kairouan also called the mosque of uqba considered one of the most important and most prestigious monuments of islamicivilization hans kung tracing the way spiritual dimensions of the world religions continuum international publishingroupage kairouan capital of political power and learning in the ifriqiya muslim heritage the mosque of uqba great mosque of kairouan is located in the world heritage city of kairouan in tunisia cultural tourism or culture tourism is the subset of tourism concerned with a traveler s engagement with a country oregion s culture specifically the lifestyle of the people in those geographical areas the history of those people their art architectureligion s and other elements that helped shape their way of life cultural tourism includes tourism in urban areas particularly historic or large cities and their cultural facilitiesuch as museum s and theatre s it can also include tourism in rural areashowcasing the traditions of indigenous cultural communities ie festivals rituals and their values and lifestyle as well as niches like industrial tourism and creative tourism it is generally agreed that cultural touristspend substantially more than standard tourists do this form of tourism is also becomingenerally more popular throughouthe world and a recent oecd report has highlighted the role that cultural tourism can play in regional development in different world regionsoecd the impact of culture on tourism oecd paris cultural tourism has been defined as the movement of persons to cultural attractions away from their normal place of residence withe intention to gather new information and experiences to satisfy their cultural needs richards g cultural tourism in europe cabi wallingford available to download from wwwtram researchcom atlas these cultural needs can include the solidification of one s own cultural identity by observing thexotic other cultural tourism has a long history and with its roots in the grand tour is arguably the original form of tourism it is alsone of the forms of tourism that most policy makerseem to betting on for the future the world tourism organisation for example asserted that cultural tourism accounted for of global tourism and forecasthat it would grow at a rate of per year such figures are often quoted in studies of the cultural tourismarket eg bywater but are rarely backed up with empirical research a recent study of the cultural consumption habits of europeans european commission indicated that people visited museums and galleries abroad almost as frequently as they did at home this underlines the growing importance of cultural tourism as a source of cultural consumption the generalisation of cultural consumption holiday however points tone of the main problems of defining cultural tourism what is the difference between cultural visits on holiday cultural tourism and cultural visits undertaken during leisure time at home much of the research undertaken by the association for leisure and tourism education atlas on the international cultural tourismarket richards has in fact underlined the high degree of continuity between consumption of culture at home and on holiday in spite of these problems policy makers tourist boards and cultural attraction managers around the world continue to view cultural tourism as an important potential source of tourism growthere is a general perception that cultural tourism is good tourism thattracts high spending visitors andoes little damage to thenvironment or local culture while contributing a great deal to theconomy and support of culture other commentators however have suggested that cultural tourismay do more harm than good allowing the cultural touristo penetrate sensitive cultural environments as the advance guard of the mass tourist one type of cultural tourism destination is living cultural area s visiting any culture other than one s own such as traveling to a foreign country other destinations include historical sites modern urban districts ethnic pockets of town fairs festivals theme parks and natural ecosystems it has been shown that cultural attractions and events are particularly strong magnets for tourismborowiecki kj and castiglione cultural participation and tourism flows an empirical investigation of italian provinces tourism economics the term cultural tourism is used for journeys that include visits to cultural resources regardless of whether it is tangible or intangible cultural resources and regardless of the primary motivation in order to understand properly the concept of cultural tourism it is necessary to know the definitions of a number termsuch as for example culture tourism cultural economy cultural and tourism potentials cultural and tourist offer and others key principles destination planning as the issue of globalization takes place in this modern time the challenge of preserving the few remaining cultural community around the world is becoming hard in a tribal based community reaching economy economic advancement with minimal negative impacts is an essential objective to any destination planner since they are using the culture of the region as the main attraction sustainable destination development of the area is vital for them to preventhe negative impacts ie destroying the authentic identity of the tribal community due tourismanagement issues certainly the principle of one size fits all does not apply to destination planning the needs expectations and anticipated benefits from tourism vary greatly from one destination to another this clearly exemplified as local communities living in regions with tourism potential destinations develop a vision for what kind of tourism they wanto facilitate depending on issues and concerns they wanto be settled or satisfiedestination planning resources planninguides culture theart of development policy it is importanthathe destination planner take into accounthe diverse definition of culture as the term isubjective satisfying tourists interestsuch as landscapeseascapes art nature traditions ways of life and other products associated to them which may be categorized cultural in the broadest sense of the word is a prime consideration as it marks the initial phase of the development of a cultural destination the quality of service andestination which does not solely depend on the cultural heritage but more importantly to the cultural environment can further be developed by setting controls and policies which shall govern the community and itstakeholders it is therefore safe to say thathe planner should be on the ball withe varying meaning of culture itself as this fuels the formulation of development policies that shall entail efficient planning and monitored growth eg strict policy on the protection and preservation of the community local community tourists the destination and sustainable tourism while satisfying tourists interests andemands may be a topriority it is also imperative to ruminate the subsystems of the destination s residents development pressureshould be anticipated and seto their minimum level so as to conserve the area s resources and prevent a saturation of the destination as to not abuse the product and the residents correspondingly the plan should incorporate the locals to its gain by training and employing them and in the process encourage them to participate to the travel business travellershould be not only aware abouthe destination but also concern on how to help it sustain its character while broadening their travelling experience research on tourism international tourism changes the world the centre for tourism and cultural change ctcc is leading internationally in approaching tourism for critical research relating to the relationships between tourism tourists and culture william d chalmers on the origin of the species homo touristicus thevolution of travel from greek spas to space tourism iuniverse p sources of data the core of a planner s job is to design an appropriate planning process and facilitate community decision ample information which is a crucial requirement is contributed through various technical researches and analyzes here are some of thelpful tools commonly used by planners to aid them key informant interviews libraries internet and survey research census and statistical analysispatial analysis with geographical information system gis and global positioning system gps technologies key institutions participating structures are primarily led by the government s local authorities and the official tourism board or council withe involvement of various ngos community and indigenous representatives development organizations and the academe of other countries case studies mountainous regions of central asiand in the himalayas tourism is coming to the previously isolated but spectacular mountainous regions of central asia the hindu kush and the himalayas closed for so manyears to visitors from abroad it now attracts a growing number oforeign tourists by its unique culture and splendid natural beauty however while this influx of tourism tourist s is bringing economic opportunities and employmento local populations helping to promote these little known regions of the world it has also brought challenges along with ito ensure that it is well managed and that its benefits are shared by all as a response to this concern the norway norwegian government as well as the unescorganized an interdisciplinary project called the development of cultural and ecotourism in the mountainous regions of central asiand the himalayas project it aims to establish links and promote cooperation between local communities national and international ngos and tour agencies in order to heighten the role of the local community and involve them fully in themployment opportunities and income generating activities thatourism can bring project activities include training local tour guide s producing high quality craft items and promoting home stays and bed and breakfastype accommodation as of now the project is drawing on thexpertise of international ngos and tourism professionals in the seven participating countries making a practical and positive contribution to alleviating poverty by helping local communities to draw the maximum benefit from theiregion s tourism potential while protecting thenvironmental and cultural heritage of the region concerned see also indigenous peoples archaeological tourism travel agency cultural tourism in egypt furthereading bob mckercher and hilary du cros cultural tourism the partnership between tourism and cultural heritage management routledge greg richards cultural tourism global and local perspectives routledge priscilla boniface managing quality cultural tourism routledge milena ivanovicultural tourism jutand company ltd externalinks family heritage tourism cultural heritage tourism gounesco culture and heritage travel challenge heritage tourism from the national trust for places of historic interest or natural beauty national trust success factors for museums non profit cultural attractions category cultural tourism category types of tourism category adventure travel","main_words":["file","thumb","romania","file","beirut","jpg","thumb","arts","quarter","beirut","central","district","lebanon","file","righthumb_px","tourists","taking","pictures","athe","khmer","empire","khmer","pre","temple","ruins","example","cultural_tourism","file","righthumb_px","tourists","courtyard","mosque","great","mosque","kairouan","also_called","mosque","considered","one","important","prestigious","monuments","hans","tracing","way","spiritual","dimensions","world","continuum","international","kairouan","capital","political","power","learning","muslim","heritage","mosque","great","mosque","kairouan","located","world_heritage","city","kairouan","tunisia","cultural_tourism","culture_tourism","subset","tourism","concerned","traveler","engagement","country","oregion","culture","specifically","lifestyle","people","geographical","areas","history","people","art","elements","helped","shape","way","life","cultural_tourism","includes","tourism","urban_areas","particularly","historic","large_cities","cultural","facilitiesuch","museum","theatre","also_include","tourism","rural","traditions","indigenous","cultural","communities","festivals","rituals","values","lifestyle","well","like","industrial_tourism","creative_tourism","generally","agreed","cultural","substantially","standard","tourists","form","throughouthe_world","recent","report","highlighted","role","cultural_tourism","play","regional_development","different","world","impact","culture_tourism","paris","cultural_tourism","defined","movement","persons","cultural","attractions","away","normal","place","residence","withe","intention","gather","new","information","experiences","satisfy","cultural","needs","richards","g","cultural_tourism","europe","cabi","wallingford","available","download","atlas","cultural","needs","include","one","cultural","identity","observing","thexotic","cultural_tourism","long","history","roots","grand_tour","arguably","original","form","forms","tourism","policy","future","world_tourism_organisation","example","cultural_tourism","accounted","global","tourism","would","grow","rate","per_year","figures","often","quoted","studies","rarely","backed","empirical","research","recent","study","cultural","consumption","habits","europeans","european","commission","indicated","people","visited","museums","galleries","abroad","almost","frequently","home","growing","importance","cultural_tourism","source","cultural","consumption","cultural","consumption","holiday","however","points","tone","main","problems","defining","cultural_tourism","difference","cultural","visits","holiday","cultural_tourism","cultural","visits","undertaken","leisure","time","home","much","research","undertaken","association","leisure","tourism","education","atlas","international","richards","fact","high","degree","continuity","consumption","culture","home","holiday","spite","problems","policy","makers","tourist_boards","cultural","attraction","managers","around","world","continue","view","cultural_tourism","important","potential","source","tourism","general","perception","cultural_tourism","good","tourism","thattracts","high","spending","visitors","andoes","little","damage","thenvironment","local_culture","contributing","great_deal","theconomy","support","culture","commentators","however","suggested","harm","good","allowing","cultural","sensitive","cultural","environments","advance","guard","mass","tourist","one","type","cultural_tourism","destination","living","cultural","area","visiting","culture","one","traveling","foreign_country","destinations","include","historical","sites","modern","urban","districts","ethnic","pockets","town","fairs","festivals","theme_parks","natural","ecosystems","shown","cultural","attractions","events","particularly","strong","cultural","participation","tourism","flows","empirical","investigation","italian","provinces","tourism","economics","term","cultural_tourism","used","journeys","include","visits","cultural","resources","regardless","whether","cultural","resources","regardless","primary","motivation","order","understand","properly","concept","cultural_tourism","necessary","know","definitions","number","termsuch","example","culture_tourism","cultural","economy","cultural_tourism","cultural","tourist","offer","others","key","principles","destination","planning","issue","globalization","takes_place","modern","time","challenge","preserving","remaining","cultural","community","around","world","becoming","hard","tribal","based","community","reaching","economy","economic","advancement","minimal","negative_impacts","essential","objective","destination","planner","since","using","culture","region","main","attraction","sustainable","destination","development","area","vital","preventhe","negative_impacts","authentic","identity","tribal","community","due","tourismanagement","issues","certainly","principle","one","size","apply","destination","planning","needs","expectations","anticipated","benefits","tourism","vary","greatly","one","destination","another","clearly","local_communities","living","regions","tourism","potential","destinations","develop","vision","kind","tourism","wanto","facilitate","depending","issues","concerns","wanto","settled","planning","resources","culture","theart","development","policy","destination","planner","take","accounthe","diverse","definition","culture","term","satisfying","tourists","art","nature","traditions","ways","life","products","associated","may","categorized","cultural","sense","word","prime","consideration","marks","initial","phase","development","cultural","destination","quality_service","andestination","solely","depend","cultural_heritage","importantly","cultural","environment","developed","setting","controls","policies","shall","community","therefore","safe","say","thathe","planner","ball","withe","varying","meaning","culture","fuels","formulation","development","policies","shall","entail","efficient","planning","monitored","growth","strict","policy","protection","preservation","community","local_community","tourists","destination","sustainable_tourism","satisfying","tourists","interests","may_also","imperative","destination","residents","development","anticipated","seto","minimum","level","conserve","area","resources","prevent","destination","abuse","product","residents","plan","incorporate","locals","gain","training","employing","process","encourage","participate","travel","business","aware","abouthe","destination","also","concern","help","sustain","character","travelling","experience","research","tourism","international_tourism","changes","world","centre","tourism_cultural","change","leading","internationally","approaching","tourism","critical","research","relating","relationships","tourism","tourists","culture","william","chalmers","origin","species","thevolution","travel","greek","spas","space_tourism","p","sources","data","core","planner","job","design","appropriate","planning","process","facilitate","community","decision","ample","information","crucial","requirement","contributed","various","technical","researches","tools","commonly_used","planners","aid","key","interviews","libraries","internet","survey","research","census","statistical","analysis","geographical","information","system","global","positioning","system","gps","technologies","key","institutions","participating","structures","primarily","led","government","local_authorities","official_tourism","board","council","withe","involvement","various","ngos","community","indigenous","representatives","development","organizations","countries","case_studies","mountainous","regions","central","asiand","himalayas","tourism","coming","previously","isolated","spectacular","mountainous","regions","central","asia","hindu","himalayas","closed","manyears","visitors","abroad","attracts","growing","number","oforeign","tourists","unique","culture","splendid","natural_beauty","however","influx","tourism","tourist","bringing","economic","opportunities","local_populations","helping","promote","little_known","regions","world","also","brought","challenges","along","ito","ensure","well","managed","benefits","shared","response","concern","norway","norwegian","government","well","interdisciplinary","project","called","development","cultural","ecotourism","mountainous","regions","central","asiand","himalayas","project","aims","establish","links","promote","cooperation","local_communities","national","international","ngos","tour","agencies","order","role","local_community","involve","fully","themployment","opportunities","income","generating","activities","thatourism","bring","project","activities","include","training","local","tour_guide","producing","high_quality","craft","items","promoting","home","stays","bed","accommodation","project","drawing","international","ngos","tourism","professionals","seven","participating","countries","making","practical","positive","contribution","poverty","helping","local_communities","draw","maximum","benefit","tourism","potential","protecting","thenvironmental","cultural_heritage","region","concerned","see_also","indigenous","peoples","archaeological","cultural_tourism","egypt","furthereading","bob","cultural_tourism","partnership","management","routledge","greg","richards","cultural_tourism","global","local","perspectives","routledge","managing","quality","cultural_tourism","routledge","tourism_company","ltd","externalinks","family","travel","challenge","heritage_tourism","national_trust","places","historic","interest","natural_beauty","national_trust","success","factors","museums","non_profit","cultural","category_types","tourism_category","adventure_travel"],"clean_bigrams":[["romania","file"],["file","beirut"],["beirut","jpg"],["jpg","thumb"],["arts","quarter"],["beirut","central"],["central","district"],["district","lebanon"],["lebanon","file"],["righthumb","px"],["px","tourists"],["tourists","taking"],["taking","pictures"],["pictures","athe"],["athe","khmer"],["khmer","empire"],["empire","khmer"],["khmer","pre"],["rup","temple"],["temple","ruins"],["cultural","tourism"],["tourism","file"],["righthumb","px"],["px","tourists"],["great","mosque"],["kairouan","also"],["also","called"],["considered","one"],["prestigious","monuments"],["way","spiritual"],["spiritual","dimensions"],["continuum","international"],["kairouan","capital"],["political","power"],["muslim","heritage"],["great","mosque"],["world","heritage"],["heritage","city"],["tunisia","cultural"],["cultural","tourism"],["culture","tourism"],["tourism","concerned"],["country","oregion"],["culture","specifically"],["geographical","areas"],["helped","shape"],["life","cultural"],["cultural","tourism"],["tourism","includes"],["includes","tourism"],["urban","areas"],["areas","particularly"],["particularly","historic"],["large","cities"],["cultural","facilitiesuch"],["also","include"],["include","tourism"],["indigenous","cultural"],["cultural","communities"],["festivals","rituals"],["like","industrial"],["industrial","tourism"],["creative","tourism"],["generally","agreed"],["standard","tourists"],["popular","throughouthe"],["throughouthe","world"],["cultural","tourism"],["regional","development"],["different","world"],["culture","tourism"],["paris","cultural"],["cultural","tourism"],["cultural","attractions"],["attractions","away"],["normal","place"],["residence","withe"],["withe","intention"],["gather","new"],["new","information"],["cultural","needs"],["needs","richards"],["richards","g"],["g","cultural"],["cultural","tourism"],["europe","cabi"],["cabi","wallingford"],["wallingford","available"],["cultural","needs"],["cultural","identity"],["observing","thexotic"],["cultural","tourism"],["long","history"],["grand","tour"],["original","form"],["world","tourism"],["tourism","organisation"],["cultural","tourism"],["tourism","accounted"],["global","tourism"],["would","grow"],["per","year"],["often","quoted"],["cultural","tourismarket"],["rarely","backed"],["empirical","research"],["recent","study"],["cultural","consumption"],["consumption","habits"],["europeans","european"],["european","commission"],["commission","indicated"],["people","visited"],["visited","museums"],["galleries","abroad"],["abroad","almost"],["growing","importance"],["cultural","tourism"],["cultural","consumption"],["cultural","consumption"],["consumption","holiday"],["holiday","however"],["however","points"],["points","tone"],["main","problems"],["defining","cultural"],["cultural","tourism"],["cultural","visits"],["holiday","cultural"],["cultural","tourism"],["tourism","cultural"],["cultural","visits"],["visits","undertaken"],["leisure","time"],["home","much"],["research","undertaken"],["tourism","education"],["education","atlas"],["international","cultural"],["cultural","tourismarket"],["tourismarket","richards"],["high","degree"],["problems","policy"],["policy","makers"],["makers","tourist"],["tourist","boards"],["cultural","attraction"],["attraction","managers"],["managers","around"],["world","continue"],["view","cultural"],["cultural","tourism"],["important","potential"],["potential","source"],["general","perception"],["cultural","tourism"],["good","tourism"],["tourism","thattracts"],["thattracts","high"],["high","spending"],["spending","visitors"],["visitors","andoes"],["andoes","little"],["little","damage"],["local","culture"],["great","deal"],["commentators","however"],["cultural","tourismay"],["good","allowing"],["sensitive","cultural"],["cultural","environments"],["advance","guard"],["mass","tourist"],["tourist","one"],["one","type"],["cultural","tourism"],["tourism","destination"],["living","cultural"],["cultural","area"],["foreign","country"],["destinations","include"],["include","historical"],["historical","sites"],["sites","modern"],["modern","urban"],["urban","districts"],["districts","ethnic"],["ethnic","pockets"],["town","fairs"],["fairs","festivals"],["festivals","theme"],["theme","parks"],["natural","ecosystems"],["cultural","attractions"],["particularly","strong"],["cultural","participation"],["tourism","flows"],["empirical","investigation"],["italian","provinces"],["provinces","tourism"],["tourism","economics"],["term","cultural"],["cultural","tourism"],["include","visits"],["cultural","resources"],["resources","regardless"],["cultural","resources"],["resources","regardless"],["primary","motivation"],["understand","properly"],["cultural","tourism"],["number","termsuch"],["example","culture"],["culture","tourism"],["tourism","cultural"],["cultural","economy"],["economy","cultural"],["cultural","tourism"],["tourism","cultural"],["tourist","offer"],["others","key"],["key","principles"],["principles","destination"],["destination","planning"],["globalization","takes"],["takes","place"],["modern","time"],["remaining","cultural"],["cultural","community"],["community","around"],["becoming","hard"],["tribal","based"],["based","community"],["community","reaching"],["reaching","economy"],["economy","economic"],["economic","advancement"],["minimal","negative"],["negative","impacts"],["essential","objective"],["destination","planner"],["planner","since"],["main","attraction"],["attraction","sustainable"],["sustainable","destination"],["destination","development"],["preventhe","negative"],["negative","impacts"],["authentic","identity"],["tribal","community"],["community","due"],["due","tourismanagement"],["tourismanagement","issues"],["issues","certainly"],["one","size"],["destination","planning"],["needs","expectations"],["anticipated","benefits"],["tourism","vary"],["vary","greatly"],["one","destination"],["local","communities"],["communities","living"],["tourism","potential"],["potential","destinations"],["destinations","develop"],["wanto","facilitate"],["facilitate","depending"],["planning","resources"],["culture","theart"],["development","policy"],["destination","planner"],["planner","take"],["accounthe","diverse"],["diverse","definition"],["satisfying","tourists"],["art","nature"],["nature","traditions"],["traditions","ways"],["products","associated"],["categorized","cultural"],["prime","consideration"],["initial","phase"],["cultural","destination"],["service","andestination"],["solely","depend"],["cultural","heritage"],["cultural","environment"],["setting","controls"],["therefore","safe"],["say","thathe"],["thathe","planner"],["ball","withe"],["withe","varying"],["varying","meaning"],["development","policies"],["shall","entail"],["entail","efficient"],["efficient","planning"],["monitored","growth"],["strict","policy"],["community","local"],["local","community"],["community","tourists"],["sustainable","tourism"],["satisfying","tourists"],["tourists","interests"],["also","imperative"],["residents","development"],["minimum","level"],["process","encourage"],["travel","business"],["aware","abouthe"],["abouthe","destination"],["also","concern"],["travelling","experience"],["experience","research"],["tourism","international"],["international","tourism"],["tourism","changes"],["tourism","cultural"],["cultural","change"],["leading","internationally"],["approaching","tourism"],["critical","research"],["research","relating"],["tourism","tourists"],["culture","william"],["greek","spas"],["space","tourism"],["p","sources"],["appropriate","planning"],["planning","process"],["facilitate","community"],["community","decision"],["decision","ample"],["ample","information"],["crucial","requirement"],["various","technical"],["technical","researches"],["tools","commonly"],["commonly","used"],["interviews","libraries"],["libraries","internet"],["survey","research"],["research","census"],["geographical","information"],["information","system"],["global","positioning"],["positioning","system"],["system","gps"],["gps","technologies"],["technologies","key"],["key","institutions"],["institutions","participating"],["participating","structures"],["primarily","led"],["local","authorities"],["official","tourism"],["tourism","board"],["council","withe"],["withe","involvement"],["various","ngos"],["ngos","community"],["indigenous","representatives"],["representatives","development"],["development","organizations"],["countries","case"],["case","studies"],["studies","mountainous"],["mountainous","regions"],["central","asiand"],["himalayas","tourism"],["previously","isolated"],["spectacular","mountainous"],["mountainous","regions"],["central","asia"],["himalayas","closed"],["growing","number"],["number","oforeign"],["oforeign","tourists"],["unique","culture"],["splendid","natural"],["natural","beauty"],["beauty","however"],["tourism","tourist"],["bringing","economic"],["economic","opportunities"],["local","populations"],["populations","helping"],["little","known"],["known","regions"],["also","brought"],["brought","challenges"],["challenges","along"],["ito","ensure"],["well","managed"],["norway","norwegian"],["norwegian","government"],["interdisciplinary","project"],["project","called"],["mountainous","regions"],["central","asiand"],["himalayas","project"],["establish","links"],["promote","cooperation"],["local","communities"],["communities","national"],["international","ngos"],["tour","agencies"],["local","community"],["themployment","opportunities"],["income","generating"],["generating","activities"],["activities","thatourism"],["bring","project"],["project","activities"],["activities","include"],["include","training"],["training","local"],["local","tour"],["tour","guide"],["producing","high"],["high","quality"],["quality","craft"],["craft","items"],["promoting","home"],["home","stays"],["international","ngos"],["tourism","professionals"],["seven","participating"],["participating","countries"],["countries","making"],["positive","contribution"],["helping","local"],["local","communities"],["maximum","benefit"],["tourism","potential"],["protecting","thenvironmental"],["cultural","heritage"],["region","concerned"],["concerned","see"],["see","also"],["also","indigenous"],["indigenous","peoples"],["peoples","archaeological"],["archaeological","tourism"],["tourism","travel"],["travel","agency"],["agency","cultural"],["cultural","tourism"],["egypt","furthereading"],["furthereading","bob"],["cultural","tourism"],["tourism","cultural"],["cultural","heritage"],["heritage","management"],["management","routledge"],["routledge","greg"],["greg","richards"],["richards","cultural"],["cultural","tourism"],["tourism","global"],["local","perspectives"],["perspectives","routledge"],["managing","quality"],["quality","cultural"],["cultural","tourism"],["tourism","routledge"],["company","ltd"],["ltd","externalinks"],["externalinks","family"],["family","heritage"],["heritage","tourism"],["tourism","cultural"],["cultural","heritage"],["heritage","tourism"],["heritage","travel"],["travel","challenge"],["challenge","heritage"],["heritage","tourism"],["national","trust"],["historic","interest"],["natural","beauty"],["beauty","national"],["national","trust"],["trust","success"],["success","factors"],["museums","non"],["non","profit"],["profit","cultural"],["cultural","attractions"],["attractions","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","types"],["tourism","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["romania file","file beirut","beirut jpg","arts quarter","beirut central","central district","district lebanon","lebanon file","righthumb px","px tourists","tourists taking","taking pictures","pictures athe","athe khmer","khmer empire","empire khmer","khmer pre","rup temple","temple ruins","cultural tourism","tourism file","righthumb px","px tourists","great mosque","kairouan also","also called","considered one","prestigious monuments","way spiritual","spiritual dimensions","continuum international","kairouan capital","political power","muslim heritage","great mosque","world heritage","heritage city","tunisia cultural","cultural tourism","culture tourism","tourism concerned","country oregion","culture specifically","geographical areas","helped shape","life cultural","cultural tourism","tourism includes","includes tourism","urban areas","areas particularly","particularly historic","large cities","cultural facilitiesuch","also include","include tourism","indigenous cultural","cultural communities","festivals rituals","like industrial","industrial tourism","creative tourism","generally agreed","standard tourists","popular throughouthe","throughouthe world","cultural tourism","regional development","different world","culture tourism","paris cultural","cultural tourism","cultural attractions","attractions away","normal place","residence withe","withe intention","gather new","new information","cultural needs","needs richards","richards g","g cultural","cultural tourism","europe cabi","cabi wallingford","wallingford available","cultural needs","cultural identity","observing thexotic","cultural tourism","long history","grand tour","original form","world tourism","tourism organisation","cultural tourism","tourism accounted","global tourism","would grow","per year","often quoted","cultural tourismarket","rarely backed","empirical research","recent study","cultural consumption","consumption habits","europeans european","european commission","commission indicated","people visited","visited museums","galleries abroad","abroad almost","growing importance","cultural tourism","cultural consumption","cultural consumption","consumption holiday","holiday however","however points","points tone","main problems","defining cultural","cultural tourism","cultural visits","holiday cultural","cultural tourism","tourism cultural","cultural visits","visits undertaken","leisure time","home much","research undertaken","tourism education","education atlas","international cultural","cultural tourismarket","tourismarket richards","high degree","problems policy","policy makers","makers tourist","tourist boards","cultural attraction","attraction managers","managers around","world continue","view cultural","cultural tourism","important potential","potential source","general perception","cultural tourism","good tourism","tourism thattracts","thattracts high","high spending","spending visitors","visitors andoes","andoes little","little damage","local culture","great deal","commentators however","cultural tourismay","good allowing","sensitive cultural","cultural environments","advance guard","mass tourist","tourist one","one type","cultural tourism","tourism destination","living cultural","cultural area","foreign country","destinations include","include historical","historical sites","sites modern","modern urban","urban districts","districts ethnic","ethnic pockets","town fairs","fairs festivals","festivals theme","theme parks","natural ecosystems","cultural attractions","particularly strong","cultural participation","tourism flows","empirical investigation","italian provinces","provinces tourism","tourism economics","term cultural","cultural tourism","include visits","cultural resources","resources regardless","cultural resources","resources regardless","primary motivation","understand properly","cultural tourism","number termsuch","example culture","culture tourism","tourism cultural","cultural economy","economy cultural","cultural tourism","tourism cultural","tourist offer","others key","key principles","principles destination","destination planning","globalization takes","takes place","modern time","remaining cultural","cultural community","community around","becoming hard","tribal based","based community","community reaching","reaching economy","economy economic","economic advancement","minimal negative","negative impacts","essential objective","destination planner","planner since","main attraction","attraction sustainable","sustainable destination","destination development","preventhe negative","negative impacts","authentic identity","tribal community","community due","due tourismanagement","tourismanagement issues","issues certainly","one size","destination planning","needs expectations","anticipated benefits","tourism vary","vary greatly","one destination","local communities","communities living","tourism potential","potential destinations","destinations develop","wanto facilitate","facilitate depending","planning resources","culture theart","development policy","destination planner","planner take","accounthe diverse","diverse definition","satisfying tourists","art nature","nature traditions","traditions ways","products associated","categorized cultural","prime consideration","initial phase","cultural destination","service andestination","solely depend","cultural heritage","cultural environment","setting controls","therefore safe","say thathe","thathe planner","ball withe","withe varying","varying meaning","development policies","shall entail","entail efficient","efficient planning","monitored growth","strict policy","community local","local community","community tourists","sustainable tourism","satisfying tourists","tourists interests","also imperative","residents development","minimum level","process encourage","travel business","aware abouthe","abouthe destination","also concern","travelling experience","experience research","tourism international","international tourism","tourism changes","tourism cultural","cultural change","leading internationally","approaching tourism","critical research","research relating","tourism tourists","culture william","greek spas","space tourism","p sources","appropriate planning","planning process","facilitate community","community decision","decision ample","ample information","crucial requirement","various technical","technical researches","tools commonly","commonly used","interviews libraries","libraries internet","survey research","research census","geographical information","information system","global positioning","positioning system","system gps","gps technologies","technologies key","key institutions","institutions participating","participating structures","primarily led","local authorities","official tourism","tourism board","council withe","withe involvement","various ngos","ngos community","indigenous representatives","representatives development","development organizations","countries case","case studies","studies mountainous","mountainous regions","central asiand","himalayas tourism","previously isolated","spectacular mountainous","mountainous regions","central asia","himalayas closed","growing number","number oforeign","oforeign tourists","unique culture","splendid natural","natural beauty","beauty however","tourism tourist","bringing economic","economic opportunities","local populations","populations helping","little known","known regions","also brought","brought challenges","challenges along","ito ensure","well managed","norway norwegian","norwegian government","interdisciplinary project","project called","mountainous regions","central asiand","himalayas project","establish links","promote cooperation","local communities","communities national","international ngos","tour agencies","local community","themployment opportunities","income generating","generating activities","activities thatourism","bring project","project activities","activities include","include training","training local","local tour","tour guide","producing high","high quality","quality craft","craft items","promoting home","home stays","international ngos","tourism professionals","seven participating","participating countries","countries making","positive contribution","helping local","local communities","maximum benefit","tourism potential","protecting thenvironmental","cultural heritage","region concerned","concerned see","see also","also indigenous","indigenous peoples","peoples archaeological","archaeological tourism","tourism travel","travel agency","agency cultural","cultural tourism","egypt furthereading","furthereading bob","cultural tourism","tourism cultural","cultural heritage","heritage management","management routledge","routledge greg","greg richards","richards cultural","cultural tourism","tourism global","local perspectives","perspectives routledge","managing quality","quality cultural","cultural tourism","tourism routledge","company ltd","ltd externalinks","externalinks family","family heritage","heritage tourism","tourism cultural","cultural heritage","heritage tourism","heritage travel","travel challenge","challenge heritage","heritage tourism","national trust","historic interest","natural beauty","beauty national","national trust","trust success","success factors","museums non","non profit","profit cultural","cultural attractions","attractions category","category cultural","cultural tourism","tourism category","category types","tourism category","category adventure","adventure travel"],"new_description":"file thumb romania file beirut jpg thumb arts quarter beirut central district lebanon file righthumb_px tourists taking pictures athe khmer empire khmer pre rup temple ruins example cultural_tourism file righthumb_px tourists courtyard mosque great mosque kairouan also_called mosque considered one important prestigious monuments hans tracing way spiritual dimensions world continuum international kairouan capital political power learning muslim heritage mosque great mosque kairouan located world_heritage city kairouan tunisia cultural_tourism culture_tourism subset tourism concerned traveler engagement country oregion culture specifically lifestyle people geographical areas history people art elements helped shape way life cultural_tourism includes tourism urban_areas particularly historic large_cities cultural facilitiesuch museum theatre also_include tourism rural traditions indigenous cultural communities festivals rituals values lifestyle well like industrial_tourism creative_tourism generally agreed cultural substantially standard tourists form tourism_also_popular throughouthe_world recent report highlighted role cultural_tourism play regional_development different world impact culture_tourism paris cultural_tourism defined movement persons cultural attractions away normal place residence withe intention gather new information experiences satisfy cultural needs richards g cultural_tourism europe cabi wallingford available download atlas cultural needs include one cultural identity observing thexotic cultural_tourism long history roots grand_tour arguably original form tourism_alsone forms tourism policy future world_tourism_organisation example cultural_tourism accounted global tourism would grow rate per_year figures often quoted studies cultural_tourismarket rarely backed empirical research recent study cultural consumption habits europeans european commission indicated people visited museums galleries abroad almost frequently home growing importance cultural_tourism source cultural consumption cultural consumption holiday however points tone main problems defining cultural_tourism difference cultural visits holiday cultural_tourism cultural visits undertaken leisure time home much research undertaken association leisure tourism education atlas international cultural_tourismarket richards fact high degree continuity consumption culture home holiday spite problems policy makers tourist_boards cultural attraction managers around world continue view cultural_tourism important potential source tourism general perception cultural_tourism good tourism thattracts high spending visitors andoes little damage thenvironment local_culture contributing great_deal theconomy support culture commentators however suggested cultural_tourismay harm good allowing cultural sensitive cultural environments advance guard mass tourist one type cultural_tourism destination living cultural area visiting culture one traveling foreign_country destinations include historical sites modern urban districts ethnic pockets town fairs festivals theme_parks natural ecosystems shown cultural attractions events particularly strong cultural participation tourism flows empirical investigation italian provinces tourism economics term cultural_tourism used journeys include visits cultural resources regardless whether cultural resources regardless primary motivation order understand properly concept cultural_tourism necessary know definitions number termsuch example culture_tourism cultural economy cultural_tourism cultural tourist offer others key principles destination planning issue globalization takes_place modern time challenge preserving remaining cultural community around world becoming hard tribal based community reaching economy economic advancement minimal negative_impacts essential objective destination planner since using culture region main attraction sustainable destination development area vital preventhe negative_impacts authentic identity tribal community due tourismanagement issues certainly principle one size apply destination planning needs expectations anticipated benefits tourism vary greatly one destination another clearly local_communities living regions tourism potential destinations develop vision kind tourism wanto facilitate depending issues concerns wanto settled planning resources culture theart development policy destination planner take accounthe diverse definition culture term satisfying tourists art nature traditions ways life products associated may categorized cultural sense word prime consideration marks initial phase development cultural destination quality_service andestination solely depend cultural_heritage importantly cultural environment developed setting controls policies shall community therefore safe say thathe planner ball withe varying meaning culture fuels formulation development policies shall entail efficient planning monitored growth strict policy protection preservation community local_community tourists destination sustainable_tourism satisfying tourists interests may_also imperative destination residents development anticipated seto minimum level conserve area resources prevent destination abuse product residents plan incorporate locals gain training employing process encourage participate travel business aware abouthe destination also concern help sustain character travelling experience research tourism international_tourism changes world centre tourism_cultural change leading internationally approaching tourism critical research relating relationships tourism tourists culture william chalmers origin species thevolution travel greek spas space_tourism p sources data core planner job design appropriate planning process facilitate community decision ample information crucial requirement contributed various technical researches tools commonly_used planners aid key interviews libraries internet survey research census statistical analysis geographical information system global positioning system gps technologies key institutions participating structures primarily led government local_authorities official_tourism board council withe involvement various ngos community indigenous representatives development organizations countries case_studies mountainous regions central asiand himalayas tourism coming previously isolated spectacular mountainous regions central asia hindu himalayas closed manyears visitors abroad attracts growing number oforeign tourists unique culture splendid natural_beauty however influx tourism tourist bringing economic opportunities local_populations helping promote little_known regions world also brought challenges along ito ensure well managed benefits shared response concern norway norwegian government well interdisciplinary project called development cultural ecotourism mountainous regions central asiand himalayas project aims establish links promote cooperation local_communities national international ngos tour agencies order role local_community involve fully themployment opportunities income generating activities thatourism bring project activities include training local tour_guide producing high_quality craft items promoting home stays bed accommodation project drawing international ngos tourism professionals seven participating countries making practical positive contribution poverty helping local_communities draw maximum benefit tourism potential protecting thenvironmental cultural_heritage region concerned see_also indigenous peoples archaeological tourism_travel_agency cultural_tourism egypt furthereading bob cultural_tourism partnership tourism_cultural_heritage management routledge greg richards cultural_tourism global local perspectives routledge managing quality cultural_tourism routledge tourism_company ltd externalinks family heritage_tourism_cultural_heritage tourism_culture_heritage travel challenge heritage_tourism national_trust places historic interest natural_beauty national_trust success factors museums non_profit cultural attractions_category_cultural_tourism category_types tourism_category adventure_travel"},{"title":"Cultural tourism in Egypt","description":"file gizajpg thumb px parklands in giza with twof the giza necropolis pyramids in the background egypt has a thriving cultural tourism industry built on the country s complex history multicultural population and importance as a regional centregypt s cultural tourism trade has fluctuated since the th century increasing in popularity alongside the rise of egyptology as an academic and amateur pursuit successivegyptian governments have placed great emphasis on the value of cultural tourism confidenthat nother countries could actually compete in this area markets and value file touristen in egypte tourists in egyptjpg thumb early th century cultural tourists in egyptourists from south asiand east asia in particular have been identified as responding well to marketing campaigns that focus on egyptian cultural tourism bureau representatives have announced plans to increase marketing spending on those regionsignature travel network writer and huffington post columnist jeanewman glock notes that egypt s cultural tourism trade is worth to every spent by tourists whose travel focuses on egypt s red sea resorts as a result she says egypt is hoping those interested in exploring their antiquities will return in great numbersoon according to the huffington post s deborah lehr according to industry representatives the government recently announced a master plan to attract million tourists by the plan includes dedicated online and traditional marketing strategies focused on assuring prospective tourists that cultural tourism centres are safe following the arab spring and egyptian revolution of in a conglomeration which includes thegyptian government signed an agreement with french company prism to create a son et lumi re show sound and light show encompassing the giza necropolis pyramids and the nearby great sphinx of giza the pyramidserved as the site of the first african son et lumi re in see also tourism in egypt ministry of tourism egypt references externalinks category tourism in egypt category cultural tourism","main_words":["file","thumb","px","giza","twof","giza","pyramids","background","egypt","thriving","cultural_tourism","industry","built","country","complex","history","population","importance","regional","cultural_tourism","trade","since","th_century","increasing","popularity","alongside","rise","academic","amateur","pursuit","governments","placed","great","emphasis","value","cultural_tourism","nother","countries","could","actually","compete","area","markets","value","file","tourists","thumb","early_th","century","cultural","tourists","south","asiand","east_asia","particular","identified","responding","well","marketing","campaigns","focus","egyptian","cultural_tourism","bureau","representatives","announced_plans","increase","marketing","spending","travel","network","writer","huffington_post","columnist","notes","egypt","cultural_tourism","trade","worth","every","spent","tourists","whose","travel","focuses","egypt","red","sea","resorts","result","says","egypt","hoping","interested","exploring","antiquities","return","great","according","huffington_post","deborah","lehr","according","industry","representatives","government","recently","announced","master","plan","attract","million","tourists","plan","includes","dedicated","online","traditional","marketing","strategies","focused","prospective","tourists","cultural_tourism","centres","safe","following","arab","spring","egyptian","revolution","includes","government","signed","agreement","french","company","prism","create","son","show","sound","light","show","encompassing","giza","pyramids","nearby","great","sphinx","giza","site","first","african","son","see_also","tourism","egypt","ministry","tourism","egypt","references_externalinks","category_tourism","egypt","category_cultural_tourism"],"clean_bigrams":[["thumb","px"],["background","egypt"],["thriving","cultural"],["cultural","tourism"],["tourism","industry"],["industry","built"],["complex","history"],["cultural","tourism"],["tourism","trade"],["th","century"],["century","increasing"],["popularity","alongside"],["amateur","pursuit"],["placed","great"],["great","emphasis"],["cultural","tourism"],["nother","countries"],["countries","could"],["could","actually"],["actually","compete"],["area","markets"],["value","file"],["thumb","early"],["early","th"],["th","century"],["century","cultural"],["cultural","tourists"],["south","asiand"],["asiand","east"],["east","asia"],["responding","well"],["marketing","campaigns"],["egyptian","cultural"],["cultural","tourism"],["tourism","bureau"],["bureau","representatives"],["announced","plans"],["increase","marketing"],["marketing","spending"],["travel","network"],["network","writer"],["huffington","post"],["post","columnist"],["cultural","tourism"],["tourism","trade"],["every","spent"],["tourists","whose"],["whose","travel"],["travel","focuses"],["red","sea"],["sea","resorts"],["says","egypt"],["huffington","post"],["deborah","lehr"],["lehr","according"],["industry","representatives"],["government","recently"],["recently","announced"],["master","plan"],["attract","million"],["million","tourists"],["plan","includes"],["includes","dedicated"],["dedicated","online"],["traditional","marketing"],["marketing","strategies"],["strategies","focused"],["prospective","tourists"],["cultural","tourism"],["tourism","centres"],["safe","following"],["arab","spring"],["egyptian","revolution"],["government","signed"],["french","company"],["company","prism"],["show","sound"],["light","show"],["show","encompassing"],["nearby","great"],["great","sphinx"],["first","african"],["african","son"],["see","also"],["also","tourism"],["tourism","egypt"],["egypt","ministry"],["tourism","egypt"],["egypt","references"],["references","externalinks"],["externalinks","category"],["category","tourism"],["tourism","egypt"],["egypt","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["background egypt","thriving cultural","cultural tourism","tourism industry","industry built","complex history","cultural tourism","tourism trade","th century","century increasing","popularity alongside","amateur pursuit","placed great","great emphasis","cultural tourism","nother countries","countries could","could actually","actually compete","area markets","value file","thumb early","early th","th century","century cultural","cultural tourists","south asiand","asiand east","east asia","responding well","marketing campaigns","egyptian cultural","cultural tourism","tourism bureau","bureau representatives","announced plans","increase marketing","marketing spending","travel network","network writer","huffington post","post columnist","cultural tourism","tourism trade","every spent","tourists whose","whose travel","travel focuses","red sea","sea resorts","says egypt","huffington post","deborah lehr","lehr according","industry representatives","government recently","recently announced","master plan","attract million","million tourists","plan includes","includes dedicated","dedicated online","traditional marketing","marketing strategies","strategies focused","prospective tourists","cultural tourism","tourism centres","safe following","arab spring","egyptian revolution","government signed","french company","company prism","show sound","light show","show encompassing","nearby great","great sphinx","first african","african son","see also","also tourism","tourism egypt","egypt ministry","tourism egypt","egypt references","references externalinks","externalinks category","category tourism","tourism egypt","egypt category","category cultural","cultural tourism"],"new_description":"file thumb px giza twof giza pyramids background egypt thriving cultural_tourism industry built country complex history population importance regional cultural_tourism trade since th_century increasing popularity alongside rise academic amateur pursuit governments placed great emphasis value cultural_tourism nother countries could actually compete area markets value file tourists thumb early_th century cultural tourists south asiand east_asia particular identified responding well marketing campaigns focus egyptian cultural_tourism bureau representatives announced_plans increase marketing spending travel network writer huffington_post columnist notes egypt cultural_tourism trade worth every spent tourists whose travel focuses egypt red sea resorts result says egypt hoping interested exploring antiquities return great according huffington_post deborah lehr according industry representatives government recently announced master plan attract million tourists plan includes dedicated online traditional marketing strategies focused prospective tourists cultural_tourism centres safe following arab spring egyptian revolution includes government signed agreement french company prism create son show sound light show encompassing giza pyramids nearby great sphinx giza site first african son see_also tourism egypt ministry tourism egypt references_externalinks category_tourism egypt category_cultural_tourism"},{"title":"Culture+Travel","description":"issn culture travel formerly culture travel is a travel magazine based inew york city new york state new york published by louise blouin mediand founded by former conde nast editorial director james truman it was launched in as a bi monthly print magazine it was later incorporated into art and lifestyle mediartinfo artinfocom and relaunched as an online publication in providing original articles and travel destination guides print editions of itstories appear in both art auction art auction and modern painters magazine modern painters magazines its main competitors are cond nastraveler and traveleisure theditor in chief since is robert michael poole culture travel was launched in a joint project between james truman former head of conde nast and louise blouin a canadian businesswoman who had created a publishing house of multiple art magazines and books truman originally from nottingham england had wanted to launch an art magazine at conde nast but failed to gain the support of then chief samuel irving si newhouse truman subsequently left conde nast in january after years athe publishing house after meeting blouin london truman was officially appointed chief executive officer and managing editor of blouin s investment holding company ltb holding in october he aimed at firsto launch a new art and travel magazine in the uk but relocated to manhattan where the new title culture travelaunched in october truman s editorial vision was to create a very particular take on travel for people who travel because they re interested in art history and culture the concept was for artists to write articles and for curators to select destinations rather than hire travel journalists and food critics the publication began with six full time staff with most content provided by well known freelancers authors and artists including award winning author and screenwriter peter feibleman writer and literary critic william zinsser critically acclaimed irish author jamie o neill and american architecture critic herbert muschamp within the louise blouin media group the magazine had a higher priced page to encourage advertisers who were interested in the arts but were outside the art world to come on board with truman stating that we don t go in and say we wanto make moneyou sayou try to do it righthe high end travel magazine had an initial controlled circulation of with no newsstand sales as copies of it were deliveredirectly to a small dedicated readership a magazine launch party was held on september attended by journalists from the new york posthe times adweek new york observer and elle magazinelle at one of architect richard meier s westreetowers inside the house of louise blouin former traveleisure creative director emily crawford art directed the first edition of the magazine which was described as handsomely designed following the launch of culture travel s first edition truman steppedown after one year as ceo in october michael boodro was installed as editor in chiefrom the launch edition a former executiveditor at elle decor he would return there as editor in chief in kate sekules former travel editor ofood wine writer for the new york times and vogue magazine vogue and author of the boxer s heart a woman fighting then took overseeing the name change from culture travel to culture travel and a redesign in october that saw the magazine awarded a merit for magazine of the year in from the society of publication designers as well as a gold medal for creative director emily crawford and illustrator balint zsako for the may june cover titled europe during the magazine built a cult following its lush photography and unusual destination pieces earning a reputation as the magazine for people who love the arts and travel with a passionotable contributors included photographer and artist jill greenberg american literary critic daphne merkin canadian journalist graeme wood journalist graeme woodutch novelist arnon grunberg illustrator maira kalman canadian musician jamie james irish writer and novelist columccann and renowned american photographers nan goldin and kathryn parker almanas journalist joshuah bearman original creator of the academy award and golden globe winning screenplay and movie argo film argo wrote the cover feature in march on japanese culture other contributors in the samedition included british author and journalist vivien goldmand united states american author and co editor of the believer magazine the believer magazine heidi julavits from the publication moved online as part of artinfo see also louise blouin media externalinks the official culture travel website category american bi monthly magazines category american lifestyle magazines category american online magazines category defunct magazines of the united states category magazinestablished in category magazines disestablished in category magazines published inew york city category online magazines with defunct print editions category tourismagazines","main_words":["issn","culture","travel","formerly","culture","travel","travel_magazine","based_inew_york_city","new_york","state_new_york","published","louise","blouin","mediand","founded","former","conde","nast","editorial","director","james","truman","launched","monthly","print","magazine","later","incorporated","art","lifestyle","relaunched","online","publication","providing","original","articles","travel_destination","guides","print","editions","appear","art","auction","art","auction","modern","painters","magazine","modern","painters","magazines","main","competitors","cond","traveleisure","theditor","chief","since","robert","michael","poole","culture","travel","launched","joint","project","james","truman","former","head","conde","nast","louise","blouin","canadian","created","publishing_house","multiple","art","magazines","books","truman","originally","nottingham","england","wanted","launch","art","magazine","conde","nast","failed","gain","support","chief","samuel","irving","truman","subsequently","left","conde","nast","january","years","athe","publishing_house","meeting","blouin","london","truman","officially","appointed","chief_executive_officer","managing_editor","blouin","investment","holding","company","ltb","holding","october","aimed","firsto","launch","new","art","travel_magazine","uk","relocated","manhattan","new","title","culture","october","truman","editorial","vision","create","particular","take","travel","people","travel","interested","art","history","culture","concept","artists","write","articles","select","destinations","rather","hire","travel","journalists","food","critics","publication","began","six","full_time","staff","content","provided","well_known","authors","artists","including","award_winning","author","screenwriter","peter","writer","literary","critic","william","critically","acclaimed","irish","author","jamie","neill","american","architecture","critic","herbert","within","louise","blouin","media_group","magazine","higher","priced","page","encourage","advertisers","interested","arts","outside","art","world","come","board","truman","stating","go","say","wanto","make","try","righthe","high_end","travel_magazine","initial","controlled","circulation","sales","copies","small","dedicated","readership","magazine","launch","party","held","september","attended","journalists","new_york","posthe","times","new_york","observer","one","architect","richard","inside","house","louise","blouin","former","traveleisure","creative","director","emily","crawford","art","directed","first_edition","magazine","described","designed","following","launch","culture","travel","first_edition","truman","one_year","ceo","october","michael","installed","editor","launch","edition","former","decor","would","return","editor","chief","kate","former","travel","editor","ofood","wine","writer","new_york","times","vogue","magazine","vogue","author","heart","woman","fighting","took","overseeing","name","change","culture","travel","culture","travel","redesign","october","saw","magazine","awarded","merit","magazine","year","society","publication","designers","well","gold","medal","creative","director","emily","crawford","illustrator","may","june","cover","titled","europe","magazine","built","cult","following","lush","photography","unusual","destination","pieces","earning","reputation","magazine","people","love","arts","travel","contributors","included","photographer","artist","jill","american","literary","critic","canadian","journalist","wood","journalist","novelist","illustrator","canadian","musician","jamie","james","irish","writer","novelist","renowned","american","photographers","kathryn","parker","journalist","original","creator","academy","award","golden","globe","winning","movie","film","wrote","cover","feature","march","japanese","culture","contributors","included","british","author","journalist","united_states","american","author","editor","magazine","magazine","publication","moved","online","part","see_also","louise","blouin","media","externalinks_official","culture","american_monthly_magazines_category","american_lifestyle_magazines_category","american","online_magazines_category","defunct_magazines","united_states","category_magazinestablished","category_magazines","disestablished","category_magazines_published","inew_york_city","defunct","print","editions","category_tourismagazines"],"clean_bigrams":[["issn","culture"],["culture","travel"],["travel","formerly"],["formerly","culture"],["culture","travel"],["travel","magazine"],["magazine","based"],["based","inew"],["inew","york"],["york","city"],["city","new"],["new","york"],["york","state"],["state","new"],["new","york"],["york","published"],["louise","blouin"],["blouin","mediand"],["mediand","founded"],["former","conde"],["conde","nast"],["nast","editorial"],["editorial","director"],["director","james"],["james","truman"],["monthly","print"],["print","magazine"],["later","incorporated"],["online","publication"],["providing","original"],["original","articles"],["travel","destination"],["destination","guides"],["guides","print"],["print","editions"],["art","auction"],["auction","art"],["art","auction"],["modern","painters"],["painters","magazine"],["magazine","modern"],["modern","painters"],["painters","magazines"],["main","competitors"],["traveleisure","theditor"],["chief","since"],["robert","michael"],["michael","poole"],["poole","culture"],["culture","travel"],["joint","project"],["james","truman"],["truman","former"],["former","head"],["conde","nast"],["louise","blouin"],["publishing","house"],["multiple","art"],["art","magazines"],["books","truman"],["truman","originally"],["nottingham","england"],["art","magazine"],["conde","nast"],["chief","samuel"],["samuel","irving"],["truman","subsequently"],["subsequently","left"],["left","conde"],["conde","nast"],["years","athe"],["athe","publishing"],["publishing","house"],["meeting","blouin"],["blouin","london"],["london","truman"],["officially","appointed"],["appointed","chief"],["chief","executive"],["executive","officer"],["managing","editor"],["investment","holding"],["holding","company"],["company","ltb"],["ltb","holding"],["firsto","launch"],["new","art"],["travel","magazine"],["new","title"],["title","culture"],["october","truman"],["editorial","vision"],["particular","take"],["art","history"],["write","articles"],["select","destinations"],["destinations","rather"],["hire","travel"],["travel","journalists"],["food","critics"],["publication","began"],["six","full"],["full","time"],["time","staff"],["content","provided"],["well","known"],["artists","including"],["including","award"],["award","winning"],["winning","author"],["screenwriter","peter"],["literary","critic"],["critic","william"],["critically","acclaimed"],["acclaimed","irish"],["irish","author"],["author","jamie"],["american","architecture"],["architecture","critic"],["critic","herbert"],["louise","blouin"],["blouin","media"],["media","group"],["higher","priced"],["priced","page"],["encourage","advertisers"],["art","world"],["truman","stating"],["wanto","make"],["righthe","high"],["high","end"],["end","travel"],["travel","magazine"],["initial","controlled"],["controlled","circulation"],["small","dedicated"],["dedicated","readership"],["magazine","launch"],["launch","party"],["september","attended"],["new","york"],["york","posthe"],["posthe","times"],["new","york"],["york","observer"],["architect","richard"],["louise","blouin"],["blouin","former"],["former","traveleisure"],["traveleisure","creative"],["creative","director"],["director","emily"],["emily","crawford"],["crawford","art"],["art","directed"],["first","edition"],["designed","following"],["culture","travel"],["first","edition"],["edition","truman"],["one","year"],["october","michael"],["launch","edition"],["would","return"],["former","travel"],["travel","editor"],["editor","ofood"],["ofood","wine"],["wine","writer"],["new","york"],["york","times"],["vogue","magazine"],["magazine","vogue"],["woman","fighting"],["took","overseeing"],["name","change"],["culture","travel"],["culture","travel"],["magazine","awarded"],["publication","designers"],["gold","medal"],["creative","director"],["director","emily"],["emily","crawford"],["may","june"],["june","cover"],["cover","titled"],["titled","europe"],["magazine","built"],["cult","following"],["lush","photography"],["unusual","destination"],["destination","pieces"],["pieces","earning"],["contributors","included"],["included","photographer"],["artist","jill"],["american","literary"],["literary","critic"],["canadian","journalist"],["wood","journalist"],["canadian","musician"],["musician","jamie"],["jamie","james"],["james","irish"],["irish","writer"],["renowned","american"],["american","photographers"],["kathryn","parker"],["original","creator"],["academy","award"],["golden","globe"],["globe","winning"],["cover","feature"],["japanese","culture"],["contributors","included"],["included","british"],["british","author"],["united","states"],["states","american"],["american","author"],["publication","moved"],["moved","online"],["see","also"],["also","louise"],["louise","blouin"],["blouin","media"],["media","externalinks"],["official","culture"],["culture","travel"],["travel","website"],["website","category"],["category","american"],["monthly","magazines"],["magazines","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","american"],["american","online"],["online","magazines"],["magazines","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","magazines"],["magazines","published"],["published","inew"],["inew","york"],["york","city"],["city","category"],["category","online"],["online","magazines"],["defunct","print"],["print","editions"],["editions","category"],["category","tourismagazines"]],"all_collocations":["issn culture","culture travel","travel formerly","formerly culture","culture travel","travel magazine","magazine based","based inew","inew york","york city","city new","new york","york state","state new","new york","york published","louise blouin","blouin mediand","mediand founded","former conde","conde nast","nast editorial","editorial director","director james","james truman","monthly print","print magazine","later incorporated","online publication","providing original","original articles","travel destination","destination guides","guides print","print editions","art auction","auction art","art auction","modern painters","painters magazine","magazine modern","modern painters","painters magazines","main competitors","traveleisure theditor","chief since","robert michael","michael poole","poole culture","culture travel","joint project","james truman","truman former","former head","conde nast","louise blouin","publishing house","multiple art","art magazines","books truman","truman originally","nottingham england","art magazine","conde nast","chief samuel","samuel irving","truman subsequently","subsequently left","left conde","conde nast","years athe","athe publishing","publishing house","meeting blouin","blouin london","london truman","officially appointed","appointed chief","chief executive","executive officer","managing editor","investment holding","holding company","company ltb","ltb holding","firsto launch","new art","travel magazine","new title","title culture","october truman","editorial vision","particular take","art history","write articles","select destinations","destinations rather","hire travel","travel journalists","food critics","publication began","six full","full time","time staff","content provided","well known","artists including","including award","award winning","winning author","screenwriter peter","literary critic","critic william","critically acclaimed","acclaimed irish","irish author","author jamie","american architecture","architecture critic","critic herbert","louise blouin","blouin media","media group","higher priced","priced page","encourage advertisers","art world","truman stating","wanto make","righthe high","high end","end travel","travel magazine","initial controlled","controlled circulation","small dedicated","dedicated readership","magazine launch","launch party","september attended","new york","york posthe","posthe times","new york","york observer","architect richard","louise blouin","blouin former","former traveleisure","traveleisure creative","creative director","director emily","emily crawford","crawford art","art directed","first edition","designed following","culture travel","first edition","edition truman","one year","october michael","launch edition","would return","former travel","travel editor","editor ofood","ofood wine","wine writer","new york","york times","vogue magazine","magazine vogue","woman fighting","took overseeing","name change","culture travel","culture travel","magazine awarded","publication designers","gold medal","creative director","director emily","emily crawford","may june","june cover","cover titled","titled europe","magazine built","cult following","lush photography","unusual destination","destination pieces","pieces earning","contributors included","included photographer","artist jill","american literary","literary critic","canadian journalist","wood journalist","canadian musician","musician jamie","jamie james","james irish","irish writer","renowned american","american photographers","kathryn parker","original creator","academy award","golden globe","globe winning","cover feature","japanese culture","contributors included","included british","british author","united states","states american","american author","publication moved","moved online","see also","also louise","louise blouin","blouin media","media externalinks","official culture","culture travel","travel website","website category","category american","monthly magazines","magazines category","category american","american lifestyle","lifestyle magazines","magazines category","category american","american online","online magazines","magazines category","category defunct","defunct magazines","united states","states category","category magazinestablished","category magazines","magazines disestablished","category magazines","magazines published","published inew","inew york","york city","city category","category online","online magazines","defunct print","print editions","editions category","category tourismagazines"],"new_description":"issn culture travel formerly culture travel travel_magazine based_inew_york_city new_york state_new_york published louise blouin mediand founded former conde nast editorial director james truman launched monthly print magazine later incorporated art lifestyle relaunched online publication providing original articles travel_destination guides print editions appear art auction art auction modern painters magazine modern painters magazines main competitors cond traveleisure theditor chief since robert michael poole culture travel launched joint project james truman former head conde nast louise blouin canadian created publishing_house multiple art magazines books truman originally nottingham england wanted launch art magazine conde nast failed gain support chief samuel irving truman subsequently left conde nast january years athe publishing_house meeting blouin london truman officially appointed chief_executive_officer managing_editor blouin investment holding company ltb holding october aimed firsto launch new art travel_magazine uk relocated manhattan new title culture october truman editorial vision create particular take travel people travel interested art history culture concept artists write articles select destinations rather hire travel journalists food critics publication began six full_time staff content provided well_known authors artists including award_winning author screenwriter peter writer literary critic william critically acclaimed irish author jamie neill american architecture critic herbert within louise blouin media_group magazine higher priced page encourage advertisers interested arts outside art world come board truman stating go say wanto make try righthe high_end travel_magazine initial controlled circulation sales copies small dedicated readership magazine launch party held september attended journalists new_york posthe times new_york observer one architect richard inside house louise blouin former traveleisure creative director emily crawford art directed first_edition magazine described designed following launch culture travel first_edition truman one_year ceo october michael installed editor launch edition former decor would return editor chief kate former travel editor ofood wine writer new_york times vogue magazine vogue author heart woman fighting took overseeing name change culture travel culture travel redesign october saw magazine awarded merit magazine year society publication designers well gold medal creative director emily crawford illustrator may june cover titled europe magazine built cult following lush photography unusual destination pieces earning reputation magazine people love arts travel contributors included photographer artist jill american literary critic canadian journalist wood journalist novelist illustrator canadian musician jamie james irish writer novelist renowned american photographers kathryn parker journalist original creator academy award golden globe winning movie film wrote cover feature march japanese culture contributors included british author journalist united_states american author editor magazine magazine publication moved online part see_also louise blouin media externalinks_official culture travel_website_category american_monthly_magazines_category american_lifestyle_magazines_category american online_magazines_category defunct_magazines united_states category_magazinestablished category_magazines disestablished category_magazines_published inew_york_city category_online_magazines defunct print editions category_tourismagazines"},{"title":"D.O.M. (restaurant)","description":"dom is a brazilian cuisine brazilian cuisine restaurant in s o paulo run by brazilian chef alex atala known for the use of native brazilian cuisine brazilian ingredientspellegrino world s best restaurants dom restaurant dom has been considered the best restaurant in south america since by restaurant magazine theworlds bestcom and since included in the spellegrino world s best restaurants list spellegrino world s best restaurants list in may the restaurant reached th place in the prestigious list in atalandom won the chefs choice award atala researches the ingredients used in his restaurant and supervises production in various parts of brazil some of these ingredients are tucupi juice pirarucu and pira ba fishes therb acmella oleracea jambu and the tapioca fromanioc flour externalinks official website see also local food category restaurants in s o paulo category michelin guide starred restaurants category brazilian cuisine","main_words":["dom","brazilian","cuisine","brazilian","cuisine","restaurant","paulo","run","brazilian","chef","alex","known","use","native","brazilian","cuisine","brazilian","world","best","restaurants","dom","restaurant","dom","considered","best","restaurant","south_america","since","restaurant","magazine","since","included","world","best","restaurants_list","world","best","restaurants_list","may","restaurant","reached","th","place","prestigious","list","chefs","choice","award","researches","ingredients","used","restaurant","supervises","production","various","parts","brazil","ingredients","juice","flour","externalinks_official_website","see_also","local_food","category_restaurants","paulo","category_michelin_guide","starred_restaurants","category","brazilian","cuisine"],"clean_bigrams":[["brazilian","cuisine"],["cuisine","brazilian"],["brazilian","cuisine"],["cuisine","restaurant"],["paulo","run"],["brazilian","chef"],["chef","alex"],["native","brazilian"],["brazilian","cuisine"],["cuisine","brazilian"],["best","restaurants"],["restaurants","dom"],["dom","restaurant"],["restaurant","dom"],["best","restaurant"],["south","america"],["america","since"],["restaurant","magazine"],["since","included"],["best","restaurants"],["restaurants","list"],["best","restaurants"],["restaurants","list"],["restaurant","reached"],["reached","th"],["th","place"],["prestigious","list"],["chefs","choice"],["choice","award"],["ingredients","used"],["supervises","production"],["various","parts"],["flour","externalinks"],["externalinks","official"],["official","website"],["website","see"],["see","also"],["also","local"],["local","food"],["food","category"],["category","restaurants"],["paulo","category"],["category","michelin"],["michelin","guide"],["guide","starred"],["starred","restaurants"],["restaurants","category"],["category","brazilian"],["brazilian","cuisine"]],"all_collocations":["brazilian cuisine","cuisine brazilian","brazilian cuisine","cuisine restaurant","paulo run","brazilian chef","chef alex","native brazilian","brazilian cuisine","cuisine brazilian","best restaurants","restaurants dom","dom restaurant","restaurant dom","best restaurant","south america","america since","restaurant magazine","since included","best restaurants","restaurants list","best restaurants","restaurants list","restaurant reached","reached th","th place","prestigious list","chefs choice","choice award","ingredients used","supervises production","various parts","flour externalinks","externalinks official","official website","website see","see also","also local","local food","food category","category restaurants","paulo category","category michelin","michelin guide","guide starred","starred restaurants","restaurants category","category brazilian","brazilian cuisine"],"new_description":"dom brazilian cuisine brazilian cuisine restaurant paulo run brazilian chef alex known use native brazilian cuisine brazilian world best restaurants dom restaurant dom considered best restaurant south_america since restaurant magazine since included world best restaurants_list world best restaurants_list may restaurant reached th place prestigious list chefs choice award researches ingredients used restaurant supervises production various parts brazil ingredients juice flour externalinks_official_website see_also local_food category_restaurants paulo category_michelin_guide starred_restaurants category brazilian cuisine"},{"title":"D'Jais","description":"former nameseating type seating capacity website d jais bar","main_words":["former","type","seating_capacity","website","bar"],"clean_bigrams":[["type","seating"],["seating","capacity"],["capacity","website"]],"all_collocations":["type seating","seating capacity","capacity website"],"new_description":"former type seating_capacity website bar"},{"title":"Dai pai dong","description":"dai pai dong from cantonese is a type of open air food stall in hong kong patrick j cummings hans georg wolf a dictionary of hong kong english words from the fragrant harbor hong kong university press p the government registrationame in hong kong is cooked food stalls but dai pai dong literally means restaurant with a big license plate referring to itsize of license which is bigger than other licensed street vendorslai lawrence wai chung town planning in hong kong a review of planning appeal decisions hong kong hong kong university press london eurospan according to the food and environmental hygiene departmenthere are only dai pai dong remaining in hong kong a dai pai dong is characterized by its green painted steel kitchen untidy atmosphere the lack of air conditioning as well as a variety of low priced great wok hei dishes regarded by some as part of the collective memory of hong kong people rthk november official dai pai dong are scarce today numbering only situated in central hong kong central sham shui po wan chai tai hang and tai o hksar government november although the term dai pai dong is often used generically to refer to any food stall operating on the roadside with foldable tables chairs and no air conditioning like those on temple street hong kong temple street legally speaking the term can only refer to those stalls which possess the big licenses unlicensed food stalls which provide cheap everyday food such as rice congee rice and noodle s to the general public of humble income appeared as early as the late th century in hong kong the stalls could be found not only in central but also in wan chai and the peripheries of happy valley racecourse around wong nai chung road in facthe fire athe racecourse in was caused by food stallset beside the podiumlai kam biu bill policy analysis and policy windows fire fighting policy in hong kong appendix v university of hong kong there were also stalls assembled by wharf piers which formed the so called waisik matau lit gluttonous pier to serve ferry passengers after world war ii came to an end in the colonial hong kongovernment issued ad hoc licenses to families of deceased and injured civil servants allowing them toperate food stalls in public and thereby earn a living this type of license was physically considerably larger than the ones normally issued as a photograph of the licensee was required to appear on them the license therefore was jocularly calledai pai big license by the locals from then on the big license stalls began to flourish on every busy street and lane in hong kong file sham shui po jpg thumb a dai pai dong selling congee on yiu tung street sham shui po in however dai pai dong soon became the cause of trafficongestion and hygiene problems and some licensees even began to let outheir stalls on the black market in response the government stopped issuing new big licenses in and limited their transfer the licenses could no longer be inherited and could only be passed on to spouses upon the licensee s death if the licensee did not have a spouse the license would simply expire since many dai pai dong have been moved into temporary markets like the ones on haiphong road tsim sha tsui or into cooked food centres usually located in municipal services complexes managed by the urban council for easier control to improve worsening public hygiene the government began to buy back big licences from the licence holders in since most of the licensees were aged and the licenses are only legally transferable to their spouses many of the licensees were willing to return their licenses for compensation since then the number of traditional dai pai dong has declined rapidly today most dai pai dong survive by operating in cooked food centres while the more successful ones have reinvented themselves as air conditioned restaurantsome of them keep their original stalls operating athe same time like lan fong yuen in gage street central it was reported that revenues of dai pai dong increased considerably in when hong kong was plagued by sars as people regarded air conditioned places as hotbeds of the virus and patronised open air and sun lit stalls instead ming pao a jul file sham shui po jpg thumb milk teand a bowl of instant noodle with pig liver served at a dai pai dong on yiu tung street sham shui pone can order tailor made dishes it is customary to have to share tables with complete strangers when there is a shortage of seating unlike chaan teng most dai pai dong do not provide set meals crosstall ordering is possible for instance when one isitting and eating in a stall selling noodles he or she can order a cup of milk tea from another stall which may be several stalls away the stalls can be roughly divided into those operating in daytime and those doing business at nighthe dai pai dong which operate at night usually sell seafood and other more costly dishes one dish usually costs from hkd the day time dai pai dong on the contrary provide cheap food including rice congee and youtiao aka yau cha kwai hong kong style milk tea milk tea toast sandwich es and instant noodles witham egg food egg spam food luncheon meat or sausage rice or noodles with siu mei roasted meats fried rice andip tau fan rice plates teochew cuisine chiuchow style noodles in may thexistence of dai pai dong in hong kong caught considerable public attention as man yuenoodles a dai pai dong selling noodles in central faced imminent closure due to the death of the licensee the news came after the closure of a bakery notable for its egg tart s also located in central and forced to close because of the rise of renthe bakery reopened in october sinacom oct despite calls for its preservation by many locals including some politicians the stall was closed on july the hong kongovernment was criticised for notrying its besto preserve dai pai dong as part of the hong kong culture the news of the closure coincided withe government s proposal of the development of west kowloon cultural districthe stall has unexpectedly reopened at a nearby shop on december apple daily oct see also cantonese restaurant cart noodle hawkers in hong kong pai dong furthereading cheng po hung early hong kong eateries hong kong university museum and art gallery the university of hong kong ka wing karen wong lai wah and yiu shuk hing from the streets to the shopping arcades dai pai dong culture in hong kong paper issued by the creative learning and hong kong culture and society project clhkcsp externalinks rejuvenation of cooked food stall website about wong tai sin s cooked food stallist of dai pai dongs in hong kong apple daily sep a picture of man yuenoodles apple daily jul hong kong daipaidong what is for lunch video and text short documentary video abouthe dai pai dong along thescalator in central video washot shortly before the destruction of the dai pai dong in august category cantonese words and phrases category hong kong cuisine category types of restaurants","main_words":["dai","pai_dong","cantonese","type","open_air","food","stall","hong_kong","patrick","j","hans","georg","wolf","dictionary","hong_kong","english","words","harbor","hong_kong","university_press_p","government","hong_kong","cooked_food","stalls","dai_pai_dong","literally","means","restaurant","big","license","plate","referring","license","bigger","licensed","street","lawrence","chung","town","planning","hong_kong","review","planning","appeal","decisions","hong_kong","hong_kong","university_press","london","according","food","environmental","hygiene","dai_pai_dong","remaining","hong_kong","dai_pai_dong","characterized","green","painted","steel","kitchen","atmosphere","lack","air_conditioning","well","variety","low","priced","great","dishes","regarded","part","collective","memory","hong_kong","people","november","official","dai_pai_dong","today","numbering","situated","central","hong_kong","central","sham","shui","wan","chai","tai","hang","tai","government","november","although","term","dai_pai_dong","often_used","refer","food","stall","operating","roadside","tables","chairs","air_conditioning","like","temple","street","hong_kong","temple","street","legally","speaking","term","refer","stalls","possess","big","licenses","unlicensed","food","stalls","provide","cheap","everyday","food","rice","rice","noodle","general_public","humble","income","appeared","early","late_th","century","hong_kong","stalls","could","found","central","also","wan","chai","happy","valley","racecourse","around","wong","chung","road","facthe","fire","athe","racecourse","caused","food","beside","bill","policy","analysis","policy","windows","fire","fighting","policy","hong_kong","v","university","hong_kong","also","stalls","assembled","wharf","piers","formed","called","lit","pier","serve","ferry","passengers","world_war","ii","came","end","colonial","hong_kongovernment","issued","hoc","licenses","families","deceased","injured","civil","servants","allowing","toperate","food","stalls","public","thereby","earn","living","type","license","physically","considerably","larger","ones","normally","issued","photograph","licensee","required","appear","license","therefore","big","license","locals","big","license","stalls","began","every","busy","street","lane","hong_kong","file","sham","shui","jpg","thumb","dai_pai_dong","selling","street","sham","shui","however","dai_pai_dong","soon","became","cause","trafficongestion","hygiene","problems","licensees","even","began","let","outheir","stalls","black","market","response","government","stopped","issuing","new","big","licenses","limited","transfer","licenses","could","longer","inherited","could","passed","upon","licensee","death","licensee","spouse","license","would","simply","since","many","dai_pai_dong","moved","temporary","markets","like","ones","road","sha","tsui","cooked_food","centres","usually_located","municipal","services","complexes","managed","urban","council","easier","control","improve","public","hygiene","government","began","buy","back","big","licences","licence","holders","since","licensees","aged","licenses","legally","many","licensees","willing","return","licenses","compensation","since","number","traditional","dai_pai_dong","declined","rapidly","today","dai_pai_dong","survive","operating","cooked_food","centres","successful","ones","air","conditioned","keep","original","stalls","operating","athe_time","like","fong","street","central","reported","revenues","dai_pai_dong","increased","considerably","hong_kong","sars","people","regarded","air","conditioned","places","virus","patronised","open_air","sun","lit","stalls","instead","ming","jul","file","sham","shui","jpg","thumb","milk","teand","bowl","instant","noodle","pig","liver","served","dai_pai_dong","street","sham","shui","order","tailor","made","dishes","customary","share","tables","complete","strangers","shortage","seating","unlike","chaan","teng","dai_pai_dong","provide","set","meals","ordering","possible","instance","one","eating","stall","selling","noodles","order","cup","milk","tea","another","stall","may","several","stalls","away","stalls","roughly","divided","operating","daytime","business","nighthe","dai_pai_dong","operate","night","usually","sell","seafood","costly","dishes","one","dish","usually","costs","day","time","dai_pai_dong","contrary","provide","cheap","food","including","rice","aka","cha","hong_kong","style","milk","tea","milk","tea","toast","sandwich","instant","noodles","egg","food","egg","spam","food","meat","sausage","rice","noodles","mei","roasted","meats","fried_rice","fan","rice","plates","cuisine","style","noodles","may","thexistence","dai_pai_dong","hong_kong","caught","considerable","public","attention","man","dai_pai_dong","selling","noodles","central","faced","closure","due","death","licensee","news","came","closure","bakery","notable","egg","tart","also","located","central","forced","close","rise","bakery","reopened","october","oct","despite","calls","preservation","many","locals","including","politicians","stall","closed","july","hong_kongovernment","criticised","besto","preserve","dai_pai_dong","part","hong_kong","culture","news","closure","coincided","withe","government","proposal","development","west","kowloon","cultural","districthe","stall","unexpectedly","reopened","nearby","shop","december","apple","daily","oct","see_also","cantonese","restaurant","cart","noodle","hawkers","hong_kong","pai_dong","furthereading","hung","early","hong_kong","eateries","hong_kong","university","museum","art","gallery","university","hong_kong","wing","karen","wong","streets","shopping","dai_pai_dong","culture","hong_kong","paper","issued","creative","learning","hong_kong","culture","society","project","externalinks","cooked_food","stall","website","wong","tai","sin","cooked_food","dai_pai_dongs","hong_kong","apple","daily","sep","picture","man","apple","daily","jul","hong_kong","lunch","video","text","short","documentary","video","abouthe","dai_pai_dong","along","central","video","washot","shortly","destruction","dai_pai_dong","august","category","cantonese","words","phrases","category","hong_kong","cuisine_category_types","restaurants"],"clean_bigrams":[["dai","pai"],["pai","dong"],["open","air"],["air","food"],["food","stall"],["hong","kong"],["kong","patrick"],["patrick","j"],["hans","georg"],["georg","wolf"],["hong","kong"],["kong","english"],["english","words"],["harbor","hong"],["hong","kong"],["kong","university"],["university","press"],["press","p"],["hong","kong"],["cooked","food"],["food","stalls"],["dai","pai"],["pai","dong"],["dong","literally"],["literally","means"],["means","restaurant"],["big","license"],["license","plate"],["plate","referring"],["licensed","street"],["chung","town"],["town","planning"],["hong","kong"],["planning","appeal"],["appeal","decisions"],["decisions","hong"],["hong","kong"],["kong","hong"],["hong","kong"],["kong","university"],["university","press"],["press","london"],["environmental","hygiene"],["dai","pai"],["pai","dong"],["dong","remaining"],["hong","kong"],["dai","pai"],["pai","dong"],["green","painted"],["painted","steel"],["steel","kitchen"],["air","conditioning"],["low","priced"],["priced","great"],["dishes","regarded"],["collective","memory"],["hong","kong"],["kong","people"],["november","official"],["official","dai"],["dai","pai"],["pai","dong"],["today","numbering"],["central","hong"],["hong","kong"],["kong","central"],["central","sham"],["sham","shui"],["wan","chai"],["chai","tai"],["tai","hang"],["government","november"],["november","although"],["term","dai"],["dai","pai"],["pai","dong"],["often","used"],["food","stall"],["stall","operating"],["tables","chairs"],["air","conditioning"],["conditioning","like"],["temple","street"],["street","hong"],["hong","kong"],["kong","temple"],["temple","street"],["street","legally"],["legally","speaking"],["big","licenses"],["licenses","unlicensed"],["unlicensed","food"],["food","stalls"],["provide","cheap"],["cheap","everyday"],["everyday","food"],["general","public"],["humble","income"],["income","appeared"],["late","th"],["th","century"],["hong","kong"],["stalls","could"],["wan","chai"],["happy","valley"],["valley","racecourse"],["racecourse","around"],["around","wong"],["chung","road"],["facthe","fire"],["fire","athe"],["athe","racecourse"],["bill","policy"],["policy","analysis"],["policy","windows"],["windows","fire"],["fire","fighting"],["fighting","policy"],["hong","kong"],["v","university"],["hong","kong"],["also","stalls"],["stalls","assembled"],["wharf","piers"],["serve","ferry"],["ferry","passengers"],["world","war"],["war","ii"],["ii","came"],["colonial","hong"],["hong","kongovernment"],["kongovernment","issued"],["hoc","licenses"],["injured","civil"],["civil","servants"],["servants","allowing"],["toperate","food"],["food","stalls"],["thereby","earn"],["physically","considerably"],["considerably","larger"],["ones","normally"],["normally","issued"],["license","therefore"],["pai","big"],["big","license"],["big","license"],["license","stalls"],["stalls","began"],["every","busy"],["busy","street"],["hong","kong"],["kong","file"],["file","sham"],["sham","shui"],["jpg","thumb"],["dai","pai"],["pai","dong"],["dong","selling"],["street","sham"],["sham","shui"],["however","dai"],["dai","pai"],["pai","dong"],["dong","soon"],["soon","became"],["hygiene","problems"],["licensees","even"],["even","began"],["let","outheir"],["outheir","stalls"],["black","market"],["government","stopped"],["stopped","issuing"],["issuing","new"],["new","big"],["big","licenses"],["licenses","could"],["license","would"],["would","simply"],["since","many"],["many","dai"],["dai","pai"],["pai","dong"],["temporary","markets"],["markets","like"],["sha","tsui"],["cooked","food"],["food","centres"],["centres","usually"],["usually","located"],["municipal","services"],["services","complexes"],["complexes","managed"],["urban","council"],["easier","control"],["public","hygiene"],["government","began"],["buy","back"],["back","big"],["big","licences"],["licence","holders"],["compensation","since"],["traditional","dai"],["dai","pai"],["pai","dong"],["declined","rapidly"],["rapidly","today"],["dai","pai"],["pai","dong"],["dong","survive"],["cooked","food"],["food","centres"],["successful","ones"],["air","conditioned"],["original","stalls"],["stalls","operating"],["operating","athe"],["time","like"],["street","central"],["dai","pai"],["pai","dong"],["dong","increased"],["increased","considerably"],["hong","kong"],["people","regarded"],["regarded","air"],["air","conditioned"],["conditioned","places"],["patronised","open"],["open","air"],["sun","lit"],["lit","stalls"],["stalls","instead"],["instead","ming"],["jul","file"],["file","sham"],["sham","shui"],["jpg","thumb"],["thumb","milk"],["milk","teand"],["instant","noodle"],["pig","liver"],["liver","served"],["dai","pai"],["pai","dong"],["street","sham"],["sham","shui"],["order","tailor"],["tailor","made"],["made","dishes"],["share","tables"],["complete","strangers"],["seating","unlike"],["unlike","chaan"],["chaan","teng"],["dai","pai"],["pai","dong"],["provide","set"],["set","meals"],["stall","selling"],["selling","noodles"],["milk","tea"],["another","stall"],["several","stalls"],["stalls","away"],["roughly","divided"],["nighthe","dai"],["dai","pai"],["pai","dong"],["night","usually"],["usually","sell"],["sell","seafood"],["costly","dishes"],["dishes","one"],["one","dish"],["dish","usually"],["usually","costs"],["day","time"],["time","dai"],["dai","pai"],["pai","dong"],["contrary","provide"],["provide","cheap"],["cheap","food"],["food","including"],["including","rice"],["hong","kong"],["kong","style"],["style","milk"],["milk","tea"],["tea","milk"],["milk","tea"],["tea","toast"],["toast","sandwich"],["instant","noodles"],["egg","food"],["food","egg"],["egg","spam"],["spam","food"],["sausage","rice"],["mei","roasted"],["roasted","meats"],["meats","fried"],["fried","rice"],["fan","rice"],["rice","plates"],["style","noodles"],["may","thexistence"],["dai","pai"],["pai","dong"],["hong","kong"],["kong","caught"],["caught","considerable"],["considerable","public"],["public","attention"],["dai","pai"],["pai","dong"],["dong","selling"],["selling","noodles"],["central","faced"],["closure","due"],["news","came"],["bakery","notable"],["egg","tart"],["also","located"],["bakery","reopened"],["oct","despite"],["despite","calls"],["many","locals"],["locals","including"],["hong","kongovernment"],["besto","preserve"],["preserve","dai"],["dai","pai"],["pai","dong"],["hong","kong"],["kong","culture"],["closure","coincided"],["coincided","withe"],["withe","government"],["west","kowloon"],["kowloon","cultural"],["cultural","districthe"],["districthe","stall"],["unexpectedly","reopened"],["nearby","shop"],["december","apple"],["apple","daily"],["daily","oct"],["oct","see"],["see","also"],["also","cantonese"],["cantonese","restaurant"],["restaurant","cart"],["cart","noodle"],["noodle","hawkers"],["hong","kong"],["kong","pai"],["pai","dong"],["dong","furthereading"],["hung","early"],["early","hong"],["hong","kong"],["kong","eateries"],["eateries","hong"],["hong","kong"],["kong","university"],["university","museum"],["art","gallery"],["hong","kong"],["wing","karen"],["karen","wong"],["dai","pai"],["pai","dong"],["dong","culture"],["hong","kong"],["kong","paper"],["paper","issued"],["creative","learning"],["hong","kong"],["kong","culture"],["society","project"],["cooked","food"],["food","stall"],["stall","website"],["wong","tai"],["tai","sin"],["cooked","food"],["dai","pai"],["pai","dongs"],["hong","kong"],["kong","apple"],["apple","daily"],["daily","sep"],["apple","daily"],["daily","jul"],["jul","hong"],["hong","kong"],["lunch","video"],["text","short"],["short","documentary"],["documentary","video"],["video","abouthe"],["abouthe","dai"],["dai","pai"],["pai","dong"],["dong","along"],["central","video"],["video","washot"],["washot","shortly"],["dai","pai"],["pai","dong"],["august","category"],["category","cantonese"],["cantonese","words"],["phrases","category"],["category","hong"],["hong","kong"],["kong","cuisine"],["cuisine","category"],["category","types"]],"all_collocations":["dai pai","pai dong","open air","air food","food stall","hong kong","kong patrick","patrick j","hans georg","georg wolf","hong kong","kong english","english words","harbor hong","hong kong","kong university","university press","press p","hong kong","cooked food","food stalls","dai pai","pai dong","dong literally","literally means","means restaurant","big license","license plate","plate referring","licensed street","chung town","town planning","hong kong","planning appeal","appeal decisions","decisions hong","hong kong","kong hong","hong kong","kong university","university press","press london","environmental hygiene","dai pai","pai dong","dong remaining","hong kong","dai pai","pai dong","green painted","painted steel","steel kitchen","air conditioning","low priced","priced great","dishes regarded","collective memory","hong kong","kong people","november official","official dai","dai pai","pai dong","today numbering","central hong","hong kong","kong central","central sham","sham shui","wan chai","chai tai","tai hang","government november","november although","term dai","dai pai","pai dong","often used","food stall","stall operating","tables chairs","air conditioning","conditioning like","temple street","street hong","hong kong","kong temple","temple street","street legally","legally speaking","big licenses","licenses unlicensed","unlicensed food","food stalls","provide cheap","cheap everyday","everyday food","general public","humble income","income appeared","late th","th century","hong kong","stalls could","wan chai","happy valley","valley racecourse","racecourse around","around wong","chung road","facthe fire","fire athe","athe racecourse","bill policy","policy analysis","policy windows","windows fire","fire fighting","fighting policy","hong kong","v university","hong kong","also stalls","stalls assembled","wharf piers","serve ferry","ferry passengers","world war","war ii","ii came","colonial hong","hong kongovernment","kongovernment issued","hoc licenses","injured civil","civil servants","servants allowing","toperate food","food stalls","thereby earn","physically considerably","considerably larger","ones normally","normally issued","license therefore","pai big","big license","big license","license stalls","stalls began","every busy","busy street","hong kong","kong file","file sham","sham shui","dai pai","pai dong","dong selling","street sham","sham shui","however dai","dai pai","pai dong","dong soon","soon became","hygiene problems","licensees even","even began","let outheir","outheir stalls","black market","government stopped","stopped issuing","issuing new","new big","big licenses","licenses could","license would","would simply","since many","many dai","dai pai","pai dong","temporary markets","markets like","sha tsui","cooked food","food centres","centres usually","usually located","municipal services","services complexes","complexes managed","urban council","easier control","public hygiene","government began","buy back","back big","big licences","licence holders","compensation since","traditional dai","dai pai","pai dong","declined rapidly","rapidly today","dai pai","pai dong","dong survive","cooked food","food centres","successful ones","air conditioned","original stalls","stalls operating","operating athe","time like","street central","dai pai","pai dong","dong increased","increased considerably","hong kong","people regarded","regarded air","air conditioned","conditioned places","patronised open","open air","sun lit","lit stalls","stalls instead","instead ming","jul file","file sham","sham shui","thumb milk","milk teand","instant noodle","pig liver","liver served","dai pai","pai dong","street sham","sham shui","order tailor","tailor made","made dishes","share tables","complete strangers","seating unlike","unlike chaan","chaan teng","dai pai","pai dong","provide set","set meals","stall selling","selling noodles","milk tea","another stall","several stalls","stalls away","roughly divided","nighthe dai","dai pai","pai dong","night usually","usually sell","sell seafood","costly dishes","dishes one","one dish","dish usually","usually costs","day time","time dai","dai pai","pai dong","contrary provide","provide cheap","cheap food","food including","including rice","hong kong","kong style","style milk","milk tea","tea milk","milk tea","tea toast","toast sandwich","instant noodles","egg food","food egg","egg spam","spam food","sausage rice","mei roasted","roasted meats","meats fried","fried rice","fan rice","rice plates","style noodles","may thexistence","dai pai","pai dong","hong kong","kong caught","caught considerable","considerable public","public attention","dai pai","pai dong","dong selling","selling noodles","central faced","closure due","news came","bakery notable","egg tart","also located","bakery reopened","oct despite","despite calls","many locals","locals including","hong kongovernment","besto preserve","preserve dai","dai pai","pai dong","hong kong","kong culture","closure coincided","coincided withe","withe government","west kowloon","kowloon cultural","cultural districthe","districthe stall","unexpectedly reopened","nearby shop","december apple","apple daily","daily oct","oct see","see also","also cantonese","cantonese restaurant","restaurant cart","cart noodle","noodle hawkers","hong kong","kong pai","pai dong","dong furthereading","hung early","early hong","hong kong","kong eateries","eateries hong","hong kong","kong university","university museum","art gallery","hong kong","wing karen","karen wong","dai pai","pai dong","dong culture","hong kong","kong paper","paper issued","creative learning","hong kong","kong culture","society project","cooked food","food stall","stall website","wong tai","tai sin","cooked food","dai pai","pai dongs","hong kong","kong apple","apple daily","daily sep","apple daily","daily jul","jul hong","hong kong","lunch video","text short","short documentary","documentary video","video abouthe","abouthe dai","dai pai","pai dong","dong along","central video","video washot","washot shortly","dai pai","pai dong","august category","category cantonese","cantonese words","phrases category","category hong","hong kong","kong cuisine","cuisine category","category types"],"new_description":"dai pai_dong cantonese type open_air food stall hong_kong patrick j hans georg wolf dictionary hong_kong english words harbor hong_kong university_press_p government hong_kong cooked_food stalls dai_pai_dong literally means restaurant big license plate referring license bigger licensed street lawrence chung town planning hong_kong review planning appeal decisions hong_kong hong_kong university_press london according food environmental hygiene dai_pai_dong remaining hong_kong dai_pai_dong characterized green painted steel kitchen atmosphere lack air_conditioning well variety low priced great dishes regarded part collective memory hong_kong people november official dai_pai_dong today numbering situated central hong_kong central sham shui wan chai tai hang tai government november although term dai_pai_dong often_used refer food stall operating roadside tables chairs air_conditioning like temple street hong_kong temple street legally speaking term refer stalls possess big licenses unlicensed food stalls provide cheap everyday food rice rice noodle general_public humble income appeared early late_th century hong_kong stalls could found central also wan chai happy valley racecourse around wong chung road facthe fire athe racecourse caused food beside bill policy analysis policy windows fire fighting policy hong_kong v university hong_kong also stalls assembled wharf piers formed called lit pier serve ferry passengers world_war ii came end colonial hong_kongovernment issued hoc licenses families deceased injured civil servants allowing toperate food stalls public thereby earn living type license physically considerably larger ones normally issued photograph licensee required appear license therefore pai big license locals big license stalls began every busy street lane hong_kong file sham shui jpg thumb dai_pai_dong selling street sham shui however dai_pai_dong soon became cause trafficongestion hygiene problems licensees even began let outheir stalls black market response government stopped issuing new big licenses limited transfer licenses could longer inherited could passed upon licensee death licensee spouse license would simply since many dai_pai_dong moved temporary markets like ones road sha tsui cooked_food centres usually_located municipal services complexes managed urban council easier control improve public hygiene government began buy back big licences licence holders since licensees aged licenses legally many licensees willing return licenses compensation since number traditional dai_pai_dong declined rapidly today dai_pai_dong survive operating cooked_food centres successful ones air conditioned keep original stalls operating athe_time like fong street central reported revenues dai_pai_dong increased considerably hong_kong sars people regarded air conditioned places virus patronised open_air sun lit stalls instead ming jul file sham shui jpg thumb milk teand bowl instant noodle pig liver served dai_pai_dong street sham shui order tailor made dishes customary share tables complete strangers shortage seating unlike chaan teng dai_pai_dong provide set meals ordering possible instance one eating stall selling noodles order cup milk tea another stall may several stalls away stalls roughly divided operating daytime business nighthe dai_pai_dong operate night usually sell seafood costly dishes one dish usually costs day time dai_pai_dong contrary provide cheap food including rice aka cha hong_kong style milk tea milk tea toast sandwich instant noodles egg food egg spam food meat sausage rice noodles mei roasted meats fried_rice fan rice plates cuisine style noodles may thexistence dai_pai_dong hong_kong caught considerable public attention man dai_pai_dong selling noodles central faced closure due death licensee news came closure bakery notable egg tart also located central forced close rise bakery reopened october oct despite calls preservation many locals including politicians stall closed july hong_kongovernment criticised besto preserve dai_pai_dong part hong_kong culture news closure coincided withe government proposal development west kowloon cultural districthe stall unexpectedly reopened nearby shop december apple daily oct see_also cantonese restaurant cart noodle hawkers hong_kong pai_dong furthereading hung early hong_kong eateries hong_kong university museum art gallery university hong_kong wing karen wong streets shopping dai_pai_dong culture hong_kong paper issued creative learning hong_kong culture society project externalinks cooked_food stall website wong tai sin cooked_food dai_pai_dongs hong_kong apple daily sep picture man apple daily jul hong_kong lunch video text short documentary video abouthe dai_pai_dong along central video washot shortly destruction dai_pai_dong august category cantonese words phrases category hong_kong cuisine_category_types restaurants"},{"title":"Damlata\u015f Cave","description":"lat d lat m lat s lat ns long d long m long s long ew coords ref land registry number grid ref uk grid ref ireland grid ref depth lengtheight variation elevation discovery geology entrance count entrance list difficulty hazards accesshow cave show cave length lighting visitors featuresurvey survey format website file damlata jpg thumb staircase leading down to the cave damlata cave is a cave in alanya district of antalya province in southern turkey the cave is located west of alanya castle on the coast of mediterranean sea in the urban fabric of alanya its distance to alanya city center is and to antalya is the cave s entrance faces the beach the cave was discovered accidentally during mining operations at a quarry used for the construction of alanya harbor in after preliminary research by two geologists it was opened to the public the cave a long and high cylindrical cavity leads to the basement of the cave the cave is full of stalactite s and stalagmite s that are formed in fifteen thousand years the cave has an area of and a total volume about in two levels the air in the cave contains relatively high percentage of carbondioxide around to times more than inormal air and has humidity the air temperature is regardless of the season asthma cure the cave is popularly known as an asthma cure cave due to the widespread belief in its capability of curing respiratory complaints and asthma in fact most of thearly visitors were people who suffered from asthma in the municipality of alanya reported thathe cave was visited within seven months by tourists of which suffered from asthma in the number of visitorsuffering from asthma reached visitors who come for asthma cure stay days long four hours a day in the cave between and hours local time in thearly morning the cave is open only for asthma sick visitors while thentrance fee for tourists costhe visitors for cure pay only externalinks category landforms of antalya province category alanya category tourist attractions in antalya province category medical tourism category show caves in turkey","main_words":["lat","lat","lat","long","long","long","coords","ref","land","registry","number","grid","ref","uk","grid","ref","ireland","grid","ref","depth","variation","elevation","discovery","geology","entrance","count","entrance","list","difficulty","hazards","cave","show","cave","length","lighting","visitors","survey","format","website","file_jpg","thumb","leading","cave","cave","cave","alanya","district","antalya","province","southern","turkey","cave","located","west","alanya","castle","coast","mediterranean","sea","urban","fabric","alanya","distance","alanya","city","center","antalya","cave","entrance","faces","beach","cave","discovered","accidentally","mining","operations","quarry","used","construction","alanya","harbor","preliminary","research","two","opened","public","cave","long","high","cylindrical","cavity","leads","basement","cave","cave","full","formed","fifteen","thousand","years","cave","area","total","volume","two","levels","air","cave","contains","relatively","high","percentage","around","times","air","humidity","air","temperature","regardless","season","asthma","cure","cave","popularly","known","asthma","cure","cave","due","widespread","belief","capability","curing","respiratory","complaints","asthma","fact","thearly","visitors","people","suffered","asthma","municipality","alanya","reported_thathe","cave","visited","within","seven","months","tourists","suffered","asthma","number","asthma","reached","visitors","come","asthma","cure","stay","days","long","four","hours","day","cave","hours","local","time","thearly","morning","cave","open","asthma","sick","visitors","thentrance","fee","tourists","costhe","visitors","cure","pay","externalinks_category","landforms","antalya","province","category","alanya","category_tourist","attractions","antalya","province","category_medical","tourism_category","show","caves","turkey"],"clean_bigrams":[["coords","ref"],["ref","land"],["land","registry"],["registry","number"],["number","grid"],["grid","ref"],["ref","uk"],["uk","grid"],["grid","ref"],["ref","ireland"],["ireland","grid"],["grid","ref"],["ref","depth"],["variation","elevation"],["elevation","discovery"],["discovery","geology"],["geology","entrance"],["entrance","count"],["count","entrance"],["entrance","list"],["list","difficulty"],["difficulty","hazards"],["cave","show"],["show","cave"],["cave","length"],["length","lighting"],["lighting","visitors"],["survey","format"],["format","website"],["website","file"],["jpg","thumb"],["alanya","district"],["antalya","province"],["southern","turkey"],["located","west"],["alanya","castle"],["mediterranean","sea"],["urban","fabric"],["alanya","city"],["city","center"],["entrance","faces"],["discovered","accidentally"],["mining","operations"],["quarry","used"],["alanya","harbor"],["preliminary","research"],["high","cylindrical"],["cylindrical","cavity"],["cavity","leads"],["fifteen","thousand"],["thousand","years"],["total","volume"],["two","levels"],["cave","contains"],["contains","relatively"],["relatively","high"],["high","percentage"],["air","temperature"],["season","asthma"],["asthma","cure"],["cure","cave"],["popularly","known"],["asthma","cure"],["cure","cave"],["cave","due"],["widespread","belief"],["curing","respiratory"],["respiratory","complaints"],["thearly","visitors"],["alanya","reported"],["reported","thathe"],["thathe","cave"],["visited","within"],["within","seven"],["seven","months"],["asthma","reached"],["reached","visitors"],["asthma","cure"],["cure","stay"],["stay","days"],["days","long"],["long","four"],["four","hours"],["hours","local"],["local","time"],["thearly","morning"],["asthma","sick"],["sick","visitors"],["thentrance","fee"],["tourists","costhe"],["costhe","visitors"],["cure","pay"],["externalinks","category"],["category","landforms"],["antalya","province"],["province","category"],["category","alanya"],["alanya","category"],["category","tourist"],["tourist","attractions"],["antalya","province"],["province","category"],["category","medical"],["medical","tourism"],["tourism","category"],["category","show"],["show","caves"]],"all_collocations":["coords ref","ref land","land registry","registry number","number grid","grid ref","ref uk","uk grid","grid ref","ref ireland","ireland grid","grid ref","ref depth","variation elevation","elevation discovery","discovery geology","geology entrance","entrance count","count entrance","entrance list","list difficulty","difficulty hazards","cave show","show cave","cave length","length lighting","lighting visitors","survey format","format website","website file","alanya district","antalya province","southern turkey","located west","alanya castle","mediterranean sea","urban fabric","alanya city","city center","entrance faces","discovered accidentally","mining operations","quarry used","alanya harbor","preliminary research","high cylindrical","cylindrical cavity","cavity leads","fifteen thousand","thousand years","total volume","two levels","cave contains","contains relatively","relatively high","high percentage","air temperature","season asthma","asthma cure","cure cave","popularly known","asthma cure","cure cave","cave due","widespread belief","curing respiratory","respiratory complaints","thearly visitors","alanya reported","reported thathe","thathe cave","visited within","within seven","seven months","asthma reached","reached visitors","asthma cure","cure stay","stay days","days long","long four","four hours","hours local","local time","thearly morning","asthma sick","sick visitors","thentrance fee","tourists costhe","costhe visitors","cure pay","externalinks category","category landforms","antalya province","province category","category alanya","alanya category","category tourist","tourist attractions","antalya province","province category","category medical","medical tourism","tourism category","category show","show caves"],"new_description":"lat lat lat lat_long long long long coords ref land registry number grid ref uk grid ref ireland grid ref depth variation elevation discovery geology entrance count entrance list difficulty hazards cave show cave length lighting visitors survey format website file_jpg thumb leading cave cave cave alanya district antalya province southern turkey cave located west alanya castle coast mediterranean sea urban fabric alanya distance alanya city center antalya cave entrance faces beach cave discovered accidentally mining operations quarry used construction alanya harbor preliminary research two opened public cave long high cylindrical cavity leads basement cave cave full formed fifteen thousand years cave area total volume two levels air cave contains relatively high percentage around times air humidity air temperature regardless season asthma cure cave popularly known asthma cure cave due widespread belief capability curing respiratory complaints asthma fact thearly visitors people suffered asthma municipality alanya reported_thathe cave visited within seven months tourists suffered asthma number asthma reached visitors come asthma cure stay days long four hours day cave hours local time thearly morning cave open asthma sick visitors thentrance fee tourists costhe visitors cure pay externalinks_category landforms antalya province category alanya category_tourist attractions antalya province category_medical tourism_category show caves turkey"},{"title":"Dance bar","description":"a dance bar is a bar establishment with an illuminatedance floor that may also be called a discor nightclub alcoholic or other beverages are typically served and patrons often dance to recorded or live music or a music played by a disc jockey category nightclubs category dance venues","main_words":["dance","bar","bar_establishment","floor","may_also","called","nightclub","alcoholic_beverages","typically","served","patrons","often","dance","recorded","live_music","music","played","disc","jockey","category_nightclubs_category","dance","venues"],"clean_bigrams":[["dance","bar"],["bar","establishment"],["may","also"],["nightclub","alcoholic"],["typically","served"],["patrons","often"],["often","dance"],["live","music"],["music","played"],["disc","jockey"],["jockey","category"],["category","nightclubs"],["nightclubs","category"],["category","dance"],["dance","venues"]],"all_collocations":["dance bar","bar establishment","may also","nightclub alcoholic","typically served","patrons often","often dance","live music","music played","disc jockey","jockey category","category nightclubs","nightclubs category","category dance","dance venues"],"new_description":"dance bar bar_establishment floor may_also called nightclub alcoholic_beverages typically served patrons often dance recorded live_music music played disc jockey category_nightclubs_category dance venues"},{"title":"Dance bar (India)","description":"dance bar is a term used india to refer to bars in which adult entertainment in the form of dances by relatively well covered women are performed for male patrons in exchange for cash dance bars used to be present only in maharashtra but later spread across the country mainly in cities dance bars were banned in the state of maharashtra in august withe passing of the maharashtra police amendment act subsequently the government shut down dance bars however many continued to flourish as late as although in a clandestine way in mumbai and its outskirts mumbai alone hadance bars atheir peak in april when it was banned though officially only dance bars existed the rest were illegal while the figures forest of the state was dance bars in total in all they employed people including bar girls these bars functioned as fronts for prostitution after the ban was enforced no rehabilitation program was initiated for the nightclub dancers known as bar balas many moved to dubai and other middleastern countries while others wento new delhi chennai and hyderabad india hyderabad the ban was firstruck down by the bombay high court on april and the verdict was upheld by the supreme court in july the hindu reported thathe number of women employed in bars in maharashtra was around in september most of them were waitresses or singers at orchestra bars the maharashtra government bannedance bars again by an local ordinance buthis too was found unconstitutional by the supreme court in october allowing mumbai dance bars to reopen the first dance bars were in khalapur in the raigadistrict of maharashtra in thearly s the first dance bar in pune district was hotel kapila international mumbai police carried out a raid on dance bars throughout mumbai on february in an overnight operation this was the first ever large scale raid on dance bars this was followed by anotheraid on march the two raidscared bar owners who claimed thathey paid regular bribes to policemen to keep their business running and alleged that either the police want us to hike hafta s or they want us to fund election campaigns of certain politicians on february following the raid the maharashtra government issued a notification restricting persons below the age ofrom entering dance bars discoth ques and pubs bars violating the lawould face fines and possible cancellation of licences the ban under the bombay prohibition act was effective from april on march then maharashtra deputy chief minister and home ministerr patil announced in the maharashtra state assembly that dance bars in the statexcepthose in mumbai would be shut with immediateffect he was replying to complaints from vivek patil and twother mlas from the peasants and workers party pwp who complained that dance bars were corrupting the youth patil claimed that dance and ladies bars are wreaking havoc in rural maharashtrand corrupting the moral fibre of our youthe also announced that a committee of key ias officials would report within three months patil also stated thathe government would not issue any new licences dance bars in mumbai went on strike to show solidarity the maharashtra state assembly adopted the maharashtra police amendment bill amending the bombay police act banning holding of performance or dance of any kind at eating house permit rooms or beer bars across the state on july on june maharashtra governor sm krishna had sent back the ordinance to ban barstating that he saw no immediate reason to sign the ordinance andemanding thathe issue be discussed in the state assembly the ban was criticized by mp fromumbai north west sunil dutt who expressed concern over the future of about bar girls who would be unemployed as a result of the ban dutt emphasised we should leave ito the people whether they wanto visit a bar or not we should not decide for them the ban alsopposed by congress mp govinda bar girls protested the ban shouting slogans alleging bias andiscrimination andemanding a rehabilitation package athe time of the ban there were an estimatedance bars in the state in mumbain raigadistrict which employed more than bar girlstarting augusthe ban was implemented across maharashtras a result of the ban the government lost million per annum in revenue from each licensedance bars in mumbai alone people including bar girls went out of work then deputy chief ministerr patil had initially stated that bar girls would be rehabilitated but he backtracked and later stated that since of the bar girls were from other states and as well as bangladesh only the maharashtrian girls would be rehabilitated however he did not clarify what rehabilitation entailedue a lack of a rehabilitation program within a few short months hundreds of bar girls bar balas mostly illiterate young women sending income back to their families were out of work and were forced to move to gulf countries and south east asian countriesome bar girlstartedancing at mujras for example by november some former bar girls from across mumbai leased out rooms withe help of brothel madams and brokers in and around foras road near kamathipurand started performing improvised versions of the mujra every night another hub that crept up during this period was congress house near kennedy bridge on grant road whichas been city s oldest address of mujra performers which embraced the bar girls into their foldsome bar girls are called to dance at private parties where they often provide sexual favours most bar girls are illiterate in many cases girls who could not find other modes of income moved toutright prostitution in mumbai s red light districts like kamathipura someven committed suicide as they did not receive rehabilitation from the state the dance bars themselves had to attempto makends meet by hosting live singing troupes or band music live band s following the ban there were sporadic raids on dance bars with arrests being made the largest raid on dance barsince the august ban occurred on march when mumbai police raided commando bar in chembur and natraj bar in tilak nagar and arrestedancers and men including patrons and staffers on charges under the ipc sections for obscenity in the following years most known dance bar wereither demolished or shut down by municipal corporation buthey moved into the outskirts of the main mumbai city into areas like kashimira on the mumbai ahmedabad national highway india national highway vasai and mira road in mira bhayandar suburb where numerous illegal dance bars mostly in residential areas also serve as pick up joints were demolished in an extensive drive in late and numerous arrests were made including bar girls customers and employees of bars livelihoods that were affected by the ban on dance bars included tourism in general beauty parlours taxi drivers and the tailors that stitched indian ghagra s worn by most bar girlsupreme court verdicts on april the bombay high court struck down the amendment as unconstitutional the ban had been challenged by nine petitioners including the association of hotels and restaurants ahar dance bar owners association dboand bharatiya bar girls union bbgu dance bars were not allowed to re open immediately as the state government was allowed an eight week appeal period rr patil told the maharashtra state assembly on april thathe government would appeal the ruling in the supreme courthe supreme court admitted the state government s petition challenging high court verdict on may and also continued the stay on grant of licences permitting dance bars the supreme court upheld the bombay high court verdict on july the court vacated itstay order on implementation of the high court judgement and permitted bars to reapply for their licences and reopen bar owners began applying to the police for the restoration of licences required to run dance bars from july as of september at least bar owners had applied for licences toperate dance bars however the licences were not processed by the police which prompted the owners of bars to send a reminder notice to the police department on august asking why they were being denied the licences even after the supreme court had lifted the ban dance bar owners have also threatened to file a contempt petition in the supreme courthe deputy commissioner of police headquarters i stated thathey were awaiting suitable guidance from the state regarding the sc order and assured thathey would process the applications expeditiously upon receiving the instructions in october the supreme court declared the law as unconstitutionallowing mumbai dance bars to reopen ordinance and legislation attempts patil stated that his department received a draft on september prepared by the advocate general to ensure that dance bars are banned in the state on june the maharashtra state cabinet decided against an ordinance to ban dance bars chief minister prithviraj chavan informed his cabinethathey could not overrule the supreme court s judgment he instead proposed a regulatory authority to monitor and control dance bars however the plan washelved after members of the cabinetold chavan that it would be a futilexercise dna quoted a senior minister who attended the cabinet meeting astating that dance bars could re open after obtaining mandatory approvals he also stated thathey should ensure there is no vulgarity on the part of the dancersaying customers will not be allowed to throw money at bar girls also these girlshould not bexploited however on june the cabinet passed an ordinance banning dance bars on the same day a bill to amend the maharashtra police second amendment bill to abrogate the supreme court ruling was introduced and passed in the maharashtra legislative assembly the bill re introduced the previous ban on dance bar and extended the ban on dance performances to three star and five star hotels as well as cultural events and festivals held in luxury hotels the bill was tabled in the legislative council on the same day the law banning dance bars was enacted in june in september the maharashtra state appointed committee headed by former judge chandrashekhar shankar dharmadhikari recommended a complete ban on bar girls in hotels and restaurants as well as curbs on social medias these have a corrupting influence in order to reduce crimes against women the committee recommended an improved legislation more than ordinance further in september based on a petition filed by the indian hotel and restaurant association ahar challenging the ban the supreme court issued a notice directing the maharashtra governmento reply to the petition the petition stated thathe state government hadisregarded the supreme court ruling and included some provisions which the court had previously held to be unconstitutional the association also alleged thathe amendment was the result of personal vendettand introduced with great haste asome politicians who made it a prestige issue and wanto defeathe sc judgment also wanto shield themselves from willful contempt of court however the government failed to reply to the petition february the supreme court issued a second notice to the maharashtra government seeking its reply in october the supreme court stayed the law also as unconstitutional similar to the banthe court ruled that dance bars could now reopen but said that licensing authorities had the power to regulate indecent dance performances a final hearing iset for november bar dancing india markedly differs from erotic dancing and nightclub dance in the western world and some parts of theastern world in a way it is more similar to bellydancing performed as entertainmenthe dancers known as bar girl s remain significantly clothed throughouthe performance showing at most some midriff part of the back and bare arms therefore therotic aspect of bar dancing is mostly achieved through suggestion in maharashtra bar dancer attire is often ethnic indian sari or lehenga choli whereas in some other placesuch as bangalore it may include western garb the bar dances are often compared to mujra s wherein women wouldance to live classical indian music traditionally performed by tawaif courtesan s during the mughal era dancer protocol bar girls dance to bollywood and indipop numbers on a colourfully lit dance floor in the central focus of a dance bar seating arrangement patronsit in chairs lined up againsthe walls of the room the dancing is minimalist kind and features no pelvic thrusting and bosom heaving seen typical bollywoodance nor any belly dancing or suggestive gyrations most of the time bar girls reservedly sway to music in a movement designed for the conservation of energy until they find a patron whose attention they wish to attract or are called upon by a patron they then dance in front of the patron making fleeting eye contact pointingesturing or generally making their targeted patron feel special no bodily contact between the two is allowed and the bar dancers often stay within the confines of the dance floor male waiters hover patrons andancers who getoo close to each other both toversee transactions between the two as well as ostensibly to prevent sex for money deals being made patronsometimeshower bar girls with currency notes which generally results in more animatedancing the patron showers his favouredancer with paper money currency note s he does this either by handing over nominal denominations of cash or indian rupee notes or through an act known ascratching where he holds a wad of currency notes above his dancer and rubs notes off the wadown upon the dancer in some cases he would even garland the dancer with rupees many bar dancers are able to make hundreds of rupees a night in this way thanks to generous well off and possibly inebriated patrons athend of the day each girl s earnings are counted and split in some predetermined proportion between the dance bar and the girls the dance bars also make money through the sale of alcohol and snacks most women earned up to a monthis attracted women from all over indiand even as far away as nepal and bangladesh especially as dance bars was considered by them as a safer way to make a living than working in the mumbai s red light district income depended on the popularity and status of the bar girl the hindustan times reported thathe less popular girls were given of the amount showered on them it also stated that popular girls received a monthly salary of while the bar owner kept all the money showered on them social and economic aspects dance bars closed at midnight but in the government changed the rule to permithem to stay open until am however this was changed to am following the rape of a minor at marine drive mumbain although the rape was committed by a police constable inside a police chowki station policemen and local mafia thugs also make money off regular hafta s from the dance bars dance barserve as a meeting place for criminals making them a hub for intelligence gathering by police dance bars have also drawn the ire of the infamous indian moral policespecially in the state of maharashtra they have been charged with morally corrupting society exploiting men and siphoning money away from the latter s families having connections with criminal elements as well as being fronts for prostitution the dance bars and their supporters have countered withe demand that dances by women as performed in elite hotels clubs public shows and gymkhana s presently exempted from the government s list of targets be tarred withe same brush some haveven pointed outhe racy item number s of bollywood movie film s as examples of hypocrisy on the part of the state and their other opponents dance bars outside maharashtra dance bars exist in other parts of indialthough they are illegal on june the crime branch of the delhi police busted thel dorado dance bar in hotel rajdoot on mathura road and arrestedance bar girls and one of the hotel owners on charges ranging from obscenity to immoral trafficking and abetmenthe girls were aged between and came from lower middle class families four of them were from delhi two each were from bihar noidand punjab and oneach from kolkatand allahabad the girls had previously been employed in mumbai dance bars but shifted to delhi after thosestablishments were banned notable incidents indian scam ster abdul karim telgi spent nearly in one night at a dance bar in grant road mumbainovember matka gambling matka kingpin suresh bhagat son hitesh allegedly spent per night for two years at dance barsamajwadi party mla from sitapur uttar pradesh mahendra singh along with five other persons was arrested and booked under the anti prostitution act by goa police on august following a raid at a dance bar in panaji police said they arrested singh from a mujra party at a hotel and six women dancers who werescued were prostitutes called fromumbai delhi and chandigarh singh later told the media that he was not ashamed abouthe incident saying in uttar pradesh up and bihar women dancers perform on every occasion from the time of chudakarana mundan engagement and marriage we have women who dance to music why should i be ashamed of it a bar girl allegedly dieduring a raid of thellora bar and restaurant in borivli mumbai by the social service ss branch of the mumbai police around pm ist on august kasturba marg police registered an accidental death report for investigation however the bar management claimed thathe police had assaulted a bar employee during the raid which created panic and the bar girl diedue to a heart attack bar owner pravin agrawal said that we have cctv recording of thentire incident buthe police have taken every thing into their custody and even seized the mobile phones of the bar employees they are not allowing me inside and i am unable to contact my employees in popular culture deepika padukone played the role of an out of work bar dancer mohini fromaharashtra during the time of the ban in the film happy new year film happy new year tabu actress tabu played role of a bar dancer in movie chandni bar kareena kapoor played the role of a prostitute rosy simran fromaharashtra in the movie talaash kareena kapoor played the role of a prostitute chamelin the movie chameli see also list of public house topics furthereading deepa barticle on dance bars ban on dance bars in maharashtra high courtopples dance bar ban category dance india category nightclubs category culture of mumbai category types of drinking establishment category illegal occupations","main_words":["dance","bar","term_used","india","refer","bars","adult","entertainment","form","dances","relatively","well","covered","women","performed","male","patrons","exchange","cash","dance_bars","used","present","maharashtra","later","spread","across","country","mainly","cities","dance_bars","banned","state","maharashtra","august","withe","passing","maharashtra","police","amendment","act","subsequently","government","shut","dance_bars","however_many","continued","late","although","way","mumbai","outskirts","mumbai","alone","bars","atheir","peak","april","banned","though","officially","dance_bars","existed","rest","illegal","figures","forest","state","dance_bars","total","employed","people","including","bar_girls","bars","functioned","fronts","prostitution","ban","enforced","rehabilitation","program","initiated","nightclub","dancers","known","bar","many","moved","dubai","middleastern","countries","others","wento","new_delhi","chennai","hyderabad","india","hyderabad","ban","firstruck","bombay","high_court","april","verdict","upheld","supreme_court","july","hindu","reported_thathe","number","women","employed","bars","maharashtra","around","september","waitresses","singers","orchestra","bars","maharashtra","government","bars","local","ordinance","buthis","found","unconstitutional","supreme_court","october","allowing","mumbai","dance_bars","reopen","first","dance_bars","maharashtra","thearly","first","dance_bar","district","hotel","international","mumbai","police","carried","raid","dance_bars","throughout","mumbai","february","overnight","operation","first_ever","large_scale","raid","dance_bars","followed","march","two","bar","owners","claimed","thathey","paid","regular","keep","business","running","alleged","either","police","want","us","hike","want","us","fund","election","campaigns","certain","politicians","february","following","raid","maharashtra","government","issued","notification","persons","age","ofrom","entering","dance_bars","discoth_ques","pubs","bars","violating","face","fines","possible","cancellation","licences","ban","bombay","prohibition","act","effective","april","march","maharashtra","deputy","chief","minister","home","patil","announced","maharashtra","state","assembly","dance_bars","mumbai","would","shut","complaints","patil","twother","peasants","workers","party","complained","dance_bars","corrupting","youth","patil","claimed","dance","ladies","bars","rural","corrupting","moral","fibre","also","announced","committee","key","officials","would","report","within","three_months","patil","also","stated_thathe","government","would","issue","new","licences","dance_bars","mumbai","went","strike","show","solidarity","maharashtra","state","assembly","adopted","maharashtra","police","amendment","bill","bombay","police","act","banning","holding","performance","dance","kind","eating","house","permit","rooms","beer","bars","across","state","july","june","maharashtra","governor","krishna","sent","back","ordinance","ban","saw","immediate","reason","sign","ordinance","thathe","issue","discussed","state","assembly","ban","criticized","north_west","expressed","concern","future","bar_girls","would","unemployed","result","ban","leave","ito","people","whether","wanto","visit","bar","decide","ban","congress","govinda","bar_girls","ban","slogans","alleging","bias","rehabilitation","package","athe_time","ban","bars","state","employed","bar","augusthe","ban","implemented","across","result","ban","government","lost","million","per","revenue","bars","mumbai","alone","people","including","bar_girls","went","work","deputy","chief","patil","initially","stated","bar_girls","would","later","stated","since","bar_girls","states","well","bangladesh","girls","would","however","rehabilitation","lack","rehabilitation","program","within","short","months","hundreds","bar_girls","bar","mostly","young","women","sending","income","back","families","work","forced","move","gulf","countries","south_east_asian","bar","example","november","former","bar_girls","across","mumbai","leased","rooms","withe_help","brothel","brokers","around","road","near","started","performing","versions","mujra","every","night","another","hub","period","congress","house","near","kennedy","bridge","grant","road","whichas","city","oldest","address","mujra","performers","embraced","bar_girls","bar_girls","called","dance","private","parties","often","provide","sexual","bar_girls","many_cases","girls","could","find","modes","income","moved","prostitution","mumbai","red","light","districts","like","committed","suicide","receive","rehabilitation","state","dance_bars","attempto","meet","hosting","live","singing","band","music","live","band","following","ban","dance_bars","arrests","made","largest","raid","dance","august","ban","occurred","march","mumbai","police","bar","bar","men","including","patrons","charges","ipc","sections","obscenity","following_years","known","dance_bar","demolished","shut","municipal","corporation","buthey","moved","outskirts","main","mumbai","city","areas","like","mumbai","ahmedabad","national","highway","india","national","highway","road","suburb","numerous","illegal","dance_bars","mostly","residential","areas","also_serve","pick","joints","demolished","extensive","drive","late","numerous","arrests","made","including","bar_girls","customers","employees","bars","affected","ban","dance_bars","included","tourism","general","beauty","parlours","taxi_drivers","stitched","indian","worn","bar","court","april","bombay","high_court","struck","amendment","unconstitutional","ban","challenged","nine","including","association","hotels_restaurants","dance_bar","owners","association","bar_girls","union","dance_bars","allowed","open","immediately","state","government","allowed","eight","week","appeal","period","patil","told","maharashtra","state","assembly","april","thathe_government","would","appeal","ruling","supreme_court","admitted","state","government","petition","challenging","high_court","verdict","may_also","continued","stay","grant","licences","dance_bars","supreme_court","upheld","bombay","high_court","verdict","july","court","order","implementation","high_court","permitted","bars","licences","reopen","bar","owners","began","applying","police","restoration","licences","required","run","dance_bars","july","september","least","bar","owners","applied","licences","toperate","dance_bars","however","licences","processed","police","prompted","owners","bars","send","reminder","notice","police","department","august","asking","denied","licences","even","supreme_court","lifted","ban","dance_bar","owners","also","threatened","file","petition","deputy","commissioner","police","headquarters","stated_thathey","suitable","guidance","state","regarding","order","thathey_would","process","applications","upon","receiving","instructions","october","supreme_court","declared","law","mumbai","dance_bars","reopen","ordinance","legislation","attempts","patil","stated","department","received","draft","september","prepared","advocate","general","ensure","dance_bars","banned","state","june","maharashtra","state","cabinet","decided","ordinance","ban","dance_bars","chief","minister","informed","could","supreme_court","judgment","instead","proposed","regulatory","authority","monitor","control","dance_bars","however","plan","members","would","dna","quoted","senior","minister","attended","cabinet","meeting","dance_bars","could","open","obtaining","mandatory","also","stated_thathey","ensure","part","customers","allowed","throw","money","bar_girls","also","however","june","cabinet","passed","ordinance","banning","dance_bars","day","bill","maharashtra","police","second","amendment","bill","supreme_court","ruling","introduced","passed","maharashtra","legislative","assembly","bill","introduced","previous","ban","dance_bar","extended","ban","dance","performances","three","star","five","star","hotels","well","cultural","events","festivals","held","luxury","hotels","bill","legislative","council","day","law","banning","dance_bars","enacted","june","september","maharashtra","state","appointed","committee","headed","former","judge","recommended","complete","ban","bar_girls","hotels_restaurants","well","social","corrupting","influence","order","reduce","crimes","women","committee","recommended","improved","legislation","ordinance","september","based","petition","filed","indian","hotel","restaurant","association","challenging","ban","supreme_court","issued","notice","directing","maharashtra","governmento","reply","petition","petition","stated_thathe","state","government","supreme_court","ruling","included","provisions","court","previously","held","unconstitutional","association","also","alleged","thathe","amendment","result","personal","introduced","great","asome","politicians","made","prestige","issue","wanto","judgment","also","wanto","shield","court","however","government","failed","reply","petition","february","supreme_court","issued","second","notice","maharashtra","government","seeking","reply","october","supreme_court","stayed","law","also","unconstitutional","similar","court","ruled","dance_bars","could","reopen","said","licensing","authorities","power","regulate","dance","performances","final","hearing","iset","november","bar","dancing","india","differs","dancing","nightclub","dance","western","world","parts","theastern","world","way","similar","performed","entertainmenthe","dancers","known","bar","girl","remain","significantly","throughouthe","performance","showing","part","back","bare","arms","therefore","aspect","bar","dancing","mostly","achieved","suggestion","maharashtra","bar","dancer","attire","often","ethnic","indian","whereas","placesuch","bangalore","may_include","western","bar","dances","often","compared","mujra","wherein","women","live","classical","indian","music","traditionally","performed","era","dancer","bar_girls","dance","numbers","lit","dance_floor","central","focus","dance_bar","seating","arrangement","chairs","lined","againsthe","walls","room","dancing","kind","features","bosom","seen","typical","dancing","time","bar_girls","sway","music","movement","designed","conservation","energy","find","patron","whose","attention","wish","attract","called","upon","patron","dance","front","patron","making","eye","contact","generally","making","targeted","patron","feel","special","contact","two","allowed","bar","dancers","often","stay","within","dance_floor","male","waiters","patrons","close","transactions","two","well","ostensibly","prevent","sex","money","deals","made","bar_girls","currency","notes","generally","results","patron","paper","money","currency","note","either","nominal","cash","indian","notes","act","known","holds","currency","notes","dancer","notes","upon","dancer","cases","would","even","garland","dancer","many","bar","dancers","able","make","hundreds","night","way","thanks","generous","well","possibly","patrons","athend","day","girl","earnings","counted","split","predetermined","proportion","dance_bar","girls","make","money","sale","alcohol","snacks","women","earned","attracted","women","indiand","even","far","away","nepal","bangladesh","especially","dance_bars","considered","safer","way","make","living","working","mumbai","red","light","district","income","depended","popularity","status","bar","girl","times","reported_thathe","less","popular","girls","given","amount","also","stated","popular","girls","received","monthly","salary","bar","owner","kept","money","social","economic","aspects","dance_bars","closed","midnight","government","changed","rule","stay","open","however","changed","following","rape","minor","marine","drive","although","rape","committed","police","inside","police","station","local","mafia","also","make","money","regular","dance_bars","dance","meeting_place","criminals","making","hub","intelligence","gathering","police","drawn","infamous","indian","moral","state","maharashtra","charged","morally","corrupting","society","exploiting","men","money","away","latter","families","connections","criminal","elements","well","fronts","prostitution","dance_bars","supporters","withe","demand","dances","women","performed","elite","hotels","clubs","public","shows","presently","government","list","targets","withe","brush","pointed","outhe","item","number","movie","film","examples","part","state","opponents","dance_bars","outside","maharashtra","dance_bars","exist","parts","illegal","june","crime","branch","delhi","police","dance_bar","hotel","road","bar_girls","one","hotel","owners","charges","ranging","obscenity","trafficking","girls","aged","came","lower","middle_class","families","four","delhi","two","punjab","girls","previously","employed","mumbai","dance_bars","shifted","delhi","banned","notable","incidents","indian","abdul","spent","nearly","one","night","dance_bar","grant","road","gambling","son","allegedly","spent","per","night","two_years","dance","party","uttar","pradesh","singh","along","five","persons","arrested","booked","anti","prostitution","act","goa","police","august","following","raid","dance_bar","police","said","arrested","singh","mujra","party","hotel","six","women","dancers","prostitutes","called","delhi","singh","later","told","media","abouthe","incident","saying","uttar","pradesh","women","dancers","perform","every","occasion","time","engagement","marriage","women","dance_music","bar","girl","allegedly","raid","bar","restaurant","mumbai","social","service","branch","mumbai","police","around","ist","august","police","registered","accidental","death","report","investigation","however","bar","management","claimed","thathe","police","bar","employee","raid","created","panic","bar","girl","heart","attack","bar","owner","said","recording","thentire","incident","buthe","police","taken","every","thing","even","mobile","phones","bar","employees","allowing","inside","unable","contact","employees","popular_culture","played","role","work","bar","dancer","mohini","time","ban","film","happy","new","year","film","happy","new","year","actress","played","role","bar","dancer","movie","bar","played","role","prostitute","movie","played","role","prostitute","movie","see_also","list","public_house_topics","furthereading","dance_bars","ban","dance_bars","maharashtra","high","dance_bar","ban","category_dance","culture","mumbai","category_types","drinking_establishment_category","illegal","occupations"],"clean_bigrams":[["dance","bar"],["term","used"],["used","india"],["adult","entertainment"],["relatively","well"],["well","covered"],["covered","women"],["male","patrons"],["cash","dance"],["dance","bars"],["bars","used"],["later","spread"],["spread","across"],["country","mainly"],["cities","dance"],["dance","bars"],["august","withe"],["withe","passing"],["maharashtra","police"],["police","amendment"],["amendment","act"],["act","subsequently"],["government","shut"],["dance","bars"],["bars","however"],["however","many"],["many","continued"],["outskirts","mumbai"],["mumbai","alone"],["bars","atheir"],["atheir","peak"],["banned","though"],["though","officially"],["dance","bars"],["bars","existed"],["figures","forest"],["dance","bars"],["employed","people"],["people","including"],["including","bar"],["bar","girls"],["bars","functioned"],["rehabilitation","program"],["nightclub","dancers"],["dancers","known"],["many","moved"],["middleastern","countries"],["others","wento"],["wento","new"],["new","delhi"],["delhi","chennai"],["hyderabad","india"],["india","hyderabad"],["bombay","high"],["high","court"],["supreme","court"],["hindu","reported"],["reported","thathe"],["thathe","number"],["women","employed"],["orchestra","bars"],["maharashtra","government"],["local","ordinance"],["ordinance","buthis"],["found","unconstitutional"],["supreme","court"],["october","allowing"],["allowing","mumbai"],["mumbai","dance"],["dance","bars"],["first","dance"],["dance","bars"],["first","dance"],["dance","bar"],["international","mumbai"],["mumbai","police"],["police","carried"],["dance","bars"],["bars","throughout"],["throughout","mumbai"],["overnight","operation"],["first","ever"],["ever","large"],["large","scale"],["scale","raid"],["dance","bars"],["bar","owners"],["claimed","thathey"],["thathey","paid"],["paid","regular"],["business","running"],["police","want"],["want","us"],["want","us"],["fund","election"],["election","campaigns"],["certain","politicians"],["february","following"],["maharashtra","government"],["government","issued"],["age","ofrom"],["ofrom","entering"],["entering","dance"],["dance","bars"],["bars","discoth"],["discoth","ques"],["pubs","bars"],["bars","violating"],["face","fines"],["possible","cancellation"],["bombay","prohibition"],["prohibition","act"],["maharashtra","deputy"],["deputy","chief"],["chief","minister"],["patil","announced"],["maharashtra","state"],["state","assembly"],["dance","bars"],["mumbai","would"],["workers","party"],["dance","bars"],["youth","patil"],["patil","claimed"],["ladies","bars"],["moral","fibre"],["also","announced"],["officials","would"],["would","report"],["report","within"],["within","three"],["three","months"],["months","patil"],["patil","also"],["also","stated"],["stated","thathe"],["thathe","government"],["government","would"],["new","licences"],["licences","dance"],["dance","bars"],["mumbai","went"],["show","solidarity"],["maharashtra","state"],["state","assembly"],["assembly","adopted"],["maharashtra","police"],["police","amendment"],["amendment","bill"],["bombay","police"],["police","act"],["act","banning"],["banning","holding"],["eating","house"],["house","permit"],["permit","rooms"],["beer","bars"],["bars","across"],["june","maharashtra"],["maharashtra","governor"],["sent","back"],["immediate","reason"],["thathe","issue"],["state","assembly"],["north","west"],["expressed","concern"],["bar","girls"],["girls","would"],["leave","ito"],["people","whether"],["wanto","visit"],["govinda","bar"],["bar","girls"],["slogans","alleging"],["alleging","bias"],["rehabilitation","package"],["package","athe"],["athe","time"],["augusthe","ban"],["implemented","across"],["government","lost"],["lost","million"],["million","per"],["mumbai","alone"],["alone","people"],["people","including"],["including","bar"],["bar","girls"],["girls","went"],["deputy","chief"],["initially","stated"],["bar","girls"],["girls","would"],["later","stated"],["bar","girls"],["girls","would"],["rehabilitation","program"],["program","within"],["short","months"],["months","hundreds"],["bar","girls"],["girls","bar"],["young","women"],["women","sending"],["sending","income"],["income","back"],["gulf","countries"],["south","east"],["east","asian"],["asian","countriesome"],["countriesome","bar"],["former","bar"],["bar","girls"],["across","mumbai"],["mumbai","leased"],["rooms","withe"],["withe","help"],["road","near"],["started","performing"],["mujra","every"],["every","night"],["night","another"],["another","hub"],["congress","house"],["house","near"],["near","kennedy"],["kennedy","bridge"],["grant","road"],["road","whichas"],["oldest","address"],["mujra","performers"],["bar","girls"],["girls","bar"],["bar","girls"],["private","parties"],["often","provide"],["provide","sexual"],["bar","girls"],["many","cases"],["cases","girls"],["income","moved"],["red","light"],["light","districts"],["districts","like"],["committed","suicide"],["receive","rehabilitation"],["dance","bars"],["hosting","live"],["live","singing"],["band","music"],["music","live"],["live","band"],["ban","dance"],["dance","bars"],["largest","raid"],["august","ban"],["ban","occurred"],["mumbai","police"],["men","including"],["including","patrons"],["ipc","sections"],["following","years"],["known","dance"],["dance","bar"],["municipal","corporation"],["corporation","buthey"],["buthey","moved"],["main","mumbai"],["mumbai","city"],["areas","like"],["mumbai","ahmedabad"],["ahmedabad","national"],["national","highway"],["highway","india"],["india","national"],["national","highway"],["numerous","illegal"],["illegal","dance"],["dance","bars"],["bars","mostly"],["residential","areas"],["areas","also"],["also","serve"],["extensive","drive"],["numerous","arrests"],["made","including"],["including","bar"],["bar","girls"],["girls","customers"],["ban","dance"],["dance","bars"],["bars","included"],["included","tourism"],["general","beauty"],["beauty","parlours"],["parlours","taxi"],["taxi","drivers"],["stitched","indian"],["bombay","high"],["high","court"],["court","struck"],["dance","bar"],["bar","owners"],["owners","association"],["bar","girls"],["girls","union"],["dance","bars"],["open","immediately"],["state","government"],["eight","week"],["week","appeal"],["appeal","period"],["patil","told"],["maharashtra","state"],["state","assembly"],["april","thathe"],["thathe","government"],["government","would"],["would","appeal"],["supreme","courthe"],["courthe","supreme"],["supreme","court"],["court","admitted"],["state","government"],["petition","challenging"],["challenging","high"],["high","court"],["court","verdict"],["also","continued"],["licences","dance"],["dance","bars"],["supreme","court"],["court","upheld"],["bombay","high"],["high","court"],["court","verdict"],["high","court"],["permitted","bars"],["reopen","bar"],["bar","owners"],["owners","began"],["began","applying"],["licences","required"],["run","dance"],["dance","bars"],["least","bar"],["bar","owners"],["licences","toperate"],["toperate","dance"],["dance","bars"],["bars","however"],["reminder","notice"],["police","department"],["august","asking"],["licences","even"],["supreme","court"],["ban","dance"],["dance","bar"],["bar","owners"],["also","threatened"],["supreme","courthe"],["courthe","deputy"],["deputy","commissioner"],["police","headquarters"],["stated","thathey"],["suitable","guidance"],["state","regarding"],["thathey","would"],["would","process"],["upon","receiving"],["supreme","court"],["court","declared"],["mumbai","dance"],["dance","bars"],["reopen","ordinance"],["legislation","attempts"],["attempts","patil"],["patil","stated"],["department","received"],["september","prepared"],["advocate","general"],["dance","bars"],["june","maharashtra"],["maharashtra","state"],["state","cabinet"],["cabinet","decided"],["ban","dance"],["dance","bars"],["bars","chief"],["chief","minister"],["supreme","court"],["instead","proposed"],["regulatory","authority"],["control","dance"],["dance","bars"],["bars","however"],["dna","quoted"],["senior","minister"],["cabinet","meeting"],["dance","bars"],["bars","could"],["obtaining","mandatory"],["also","stated"],["stated","thathey"],["throw","money"],["bar","girls"],["girls","also"],["cabinet","passed"],["ordinance","banning"],["banning","dance"],["dance","bars"],["maharashtra","police"],["police","second"],["second","amendment"],["amendment","bill"],["supreme","court"],["court","ruling"],["maharashtra","legislative"],["legislative","assembly"],["previous","ban"],["ban","dance"],["dance","bar"],["ban","dance"],["dance","performances"],["three","star"],["five","star"],["star","hotels"],["cultural","events"],["festivals","held"],["luxury","hotels"],["legislative","council"],["law","banning"],["banning","dance"],["dance","bars"],["maharashtra","state"],["state","appointed"],["appointed","committee"],["committee","headed"],["former","judge"],["complete","ban"],["bar","girls"],["corrupting","influence"],["reduce","crimes"],["committee","recommended"],["improved","legislation"],["september","based"],["petition","filed"],["indian","hotel"],["restaurant","association"],["supreme","court"],["court","issued"],["notice","directing"],["maharashtra","governmento"],["governmento","reply"],["petition","stated"],["stated","thathe"],["thathe","state"],["state","government"],["supreme","court"],["court","ruling"],["previously","held"],["association","also"],["also","alleged"],["alleged","thathe"],["thathe","amendment"],["asome","politicians"],["prestige","issue"],["judgment","also"],["also","wanto"],["wanto","shield"],["court","however"],["government","failed"],["petition","february"],["supreme","court"],["court","issued"],["second","notice"],["maharashtra","government"],["government","seeking"],["supreme","court"],["court","stayed"],["law","also"],["unconstitutional","similar"],["court","ruled"],["dance","bars"],["bars","could"],["licensing","authorities"],["dance","performances"],["final","hearing"],["hearing","iset"],["november","bar"],["bar","dancing"],["dancing","india"],["nightclub","dance"],["western","world"],["theastern","world"],["entertainmenthe","dancers"],["dancers","known"],["bar","girl"],["remain","significantly"],["throughouthe","performance"],["performance","showing"],["bare","arms"],["arms","therefore"],["bar","dancing"],["mostly","achieved"],["maharashtra","bar"],["bar","dancer"],["dancer","attire"],["often","ethnic"],["ethnic","indian"],["may","include"],["include","western"],["bar","dances"],["often","compared"],["wherein","women"],["live","classical"],["classical","indian"],["indian","music"],["music","traditionally"],["traditionally","performed"],["era","dancer"],["bar","girls"],["girls","dance"],["lit","dance"],["dance","floor"],["central","focus"],["dance","bar"],["bar","seating"],["seating","arrangement"],["chairs","lined"],["againsthe","walls"],["seen","typical"],["time","bar"],["bar","girls"],["movement","designed"],["patron","whose"],["whose","attention"],["called","upon"],["patron","making"],["eye","contact"],["generally","making"],["targeted","patron"],["patron","feel"],["feel","special"],["bar","dancers"],["dancers","often"],["often","stay"],["stay","within"],["dance","floor"],["floor","male"],["male","waiters"],["prevent","sex"],["money","deals"],["bar","girls"],["currency","notes"],["generally","results"],["paper","money"],["money","currency"],["currency","note"],["act","known"],["currency","notes"],["would","even"],["even","garland"],["many","bar"],["bar","dancers"],["make","hundreds"],["way","thanks"],["generous","well"],["patrons","athend"],["predetermined","proportion"],["dance","bar"],["bar","girls"],["girls","dance"],["dance","bars"],["bars","also"],["also","make"],["make","money"],["women","earned"],["attracted","women"],["indiand","even"],["far","away"],["bangladesh","especially"],["dance","bars"],["safer","way"],["red","light"],["light","district"],["district","income"],["income","depended"],["bar","girl"],["times","reported"],["reported","thathe"],["thathe","less"],["less","popular"],["popular","girls"],["also","stated"],["popular","girls"],["girls","received"],["monthly","salary"],["bar","owner"],["owner","kept"],["economic","aspects"],["aspects","dance"],["dance","bars"],["bars","closed"],["government","changed"],["stay","open"],["marine","drive"],["local","mafia"],["also","make"],["make","money"],["dance","bars"],["bars","dance"],["meeting","place"],["criminals","making"],["intelligence","gathering"],["police","dance"],["dance","bars"],["bars","also"],["also","drawn"],["infamous","indian"],["indian","moral"],["morally","corrupting"],["corrupting","society"],["society","exploiting"],["exploiting","men"],["money","away"],["criminal","elements"],["dance","bars"],["withe","demand"],["elite","hotels"],["hotels","clubs"],["clubs","public"],["public","shows"],["pointed","outhe"],["item","number"],["movie","film"],["opponents","dance"],["dance","bars"],["bars","outside"],["outside","maharashtra"],["maharashtra","dance"],["dance","bars"],["bars","exist"],["crime","branch"],["delhi","police"],["police","dance"],["dance","bar"],["bar","girls"],["hotel","owners"],["charges","ranging"],["lower","middle"],["middle","class"],["class","families"],["families","four"],["delhi","two"],["mumbai","dance"],["dance","bars"],["banned","notable"],["notable","incidents"],["incidents","indian"],["spent","nearly"],["one","night"],["dance","bar"],["grant","road"],["allegedly","spent"],["spent","per"],["per","night"],["two","years"],["uttar","pradesh"],["singh","along"],["anti","prostitution"],["prostitution","act"],["goa","police"],["august","following"],["dance","bar"],["police","said"],["arrested","singh"],["mujra","party"],["six","women"],["women","dancers"],["prostitutes","called"],["singh","later"],["later","told"],["abouthe","incident"],["incident","saying"],["uttar","pradesh"],["women","dancers"],["dancers","perform"],["every","occasion"],["bar","girl"],["girl","allegedly"],["social","service"],["mumbai","police"],["police","around"],["police","registered"],["accidental","death"],["death","report"],["investigation","however"],["bar","management"],["management","claimed"],["claimed","thathe"],["thathe","police"],["bar","employee"],["created","panic"],["bar","girl"],["heart","attack"],["attack","bar"],["bar","owner"],["thentire","incident"],["incident","buthe"],["buthe","police"],["taken","every"],["every","thing"],["mobile","phones"],["bar","employees"],["popular","culture"],["played","role"],["work","bar"],["bar","dancer"],["dancer","mohini"],["film","happy"],["happy","new"],["new","year"],["year","film"],["film","happy"],["happy","new"],["new","year"],["played","role"],["bar","dancer"],["played","role"],["played","role"],["see","also"],["also","list"],["public","house"],["house","topics"],["topics","furthereading"],["dance","bars"],["bars","ban"],["ban","dance"],["dance","bars"],["maharashtra","high"],["dance","bar"],["bar","ban"],["ban","category"],["category","dance"],["dance","india"],["india","category"],["category","nightclubs"],["nightclubs","category"],["category","culture"],["mumbai","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","illegal"],["illegal","occupations"]],"all_collocations":["dance bar","term used","used india","adult entertainment","relatively well","well covered","covered women","male patrons","cash dance","dance bars","bars used","later spread","spread across","country mainly","cities dance","dance bars","august withe","withe passing","maharashtra police","police amendment","amendment act","act subsequently","government shut","dance bars","bars however","however many","many continued","outskirts mumbai","mumbai alone","bars atheir","atheir peak","banned though","though officially","dance bars","bars existed","figures forest","dance bars","employed people","people including","including bar","bar girls","bars functioned","rehabilitation program","nightclub dancers","dancers known","many moved","middleastern countries","others wento","wento new","new delhi","delhi chennai","hyderabad india","india hyderabad","bombay high","high court","supreme court","hindu reported","reported thathe","thathe number","women employed","orchestra bars","maharashtra government","local ordinance","ordinance buthis","found unconstitutional","supreme court","october allowing","allowing mumbai","mumbai dance","dance bars","first dance","dance bars","first dance","dance bar","international mumbai","mumbai police","police carried","dance bars","bars throughout","throughout mumbai","overnight operation","first ever","ever large","large scale","scale raid","dance bars","bar owners","claimed thathey","thathey paid","paid regular","business running","police want","want us","want us","fund election","election campaigns","certain politicians","february following","maharashtra government","government issued","age ofrom","ofrom entering","entering dance","dance bars","bars discoth","discoth ques","pubs bars","bars violating","face fines","possible cancellation","bombay prohibition","prohibition act","maharashtra deputy","deputy chief","chief minister","patil announced","maharashtra state","state assembly","dance bars","mumbai would","workers party","dance bars","youth patil","patil claimed","ladies bars","moral fibre","also announced","officials would","would report","report within","within three","three months","months patil","patil also","also stated","stated thathe","thathe government","government would","new licences","licences dance","dance bars","mumbai went","show solidarity","maharashtra state","state assembly","assembly adopted","maharashtra police","police amendment","amendment bill","bombay police","police act","act banning","banning holding","eating house","house permit","permit rooms","beer bars","bars across","june maharashtra","maharashtra governor","sent back","immediate reason","thathe issue","state assembly","north west","expressed concern","bar girls","girls would","leave ito","people whether","wanto visit","govinda bar","bar girls","slogans alleging","alleging bias","rehabilitation package","package athe","athe time","augusthe ban","implemented across","government lost","lost million","million per","mumbai alone","alone people","people including","including bar","bar girls","girls went","deputy chief","initially stated","bar girls","girls would","later stated","bar girls","girls would","rehabilitation program","program within","short months","months hundreds","bar girls","girls bar","young women","women sending","sending income","income back","gulf countries","south east","east asian","asian countriesome","countriesome bar","former bar","bar girls","across mumbai","mumbai leased","rooms withe","withe help","road near","started performing","mujra every","every night","night another","another hub","congress house","house near","near kennedy","kennedy bridge","grant road","road whichas","oldest address","mujra performers","bar girls","girls bar","bar girls","private parties","often provide","provide sexual","bar girls","many cases","cases girls","income moved","red light","light districts","districts like","committed suicide","receive rehabilitation","dance bars","hosting live","live singing","band music","music live","live band","ban dance","dance bars","largest raid","august ban","ban occurred","mumbai police","men including","including patrons","ipc sections","following years","known dance","dance bar","municipal corporation","corporation buthey","buthey moved","main mumbai","mumbai city","areas like","mumbai ahmedabad","ahmedabad national","national highway","highway india","india national","national highway","numerous illegal","illegal dance","dance bars","bars mostly","residential areas","areas also","also serve","extensive drive","numerous arrests","made including","including bar","bar girls","girls customers","ban dance","dance bars","bars included","included tourism","general beauty","beauty parlours","parlours taxi","taxi drivers","stitched indian","bombay high","high court","court struck","dance bar","bar owners","owners association","bar girls","girls union","dance bars","open immediately","state government","eight week","week appeal","appeal period","patil told","maharashtra state","state assembly","april thathe","thathe government","government would","would appeal","supreme courthe","courthe supreme","supreme court","court admitted","state government","petition challenging","challenging high","high court","court verdict","also continued","licences dance","dance bars","supreme court","court upheld","bombay high","high court","court verdict","high court","permitted bars","reopen bar","bar owners","owners began","began applying","licences required","run dance","dance bars","least bar","bar owners","licences toperate","toperate dance","dance bars","bars however","reminder notice","police department","august asking","licences even","supreme court","ban dance","dance bar","bar owners","also threatened","supreme courthe","courthe deputy","deputy commissioner","police headquarters","stated thathey","suitable guidance","state regarding","thathey would","would process","upon receiving","supreme court","court declared","mumbai dance","dance bars","reopen ordinance","legislation attempts","attempts patil","patil stated","department received","september prepared","advocate general","dance bars","june maharashtra","maharashtra state","state cabinet","cabinet decided","ban dance","dance bars","bars chief","chief minister","supreme court","instead proposed","regulatory authority","control dance","dance bars","bars however","dna quoted","senior minister","cabinet meeting","dance bars","bars could","obtaining mandatory","also stated","stated thathey","throw money","bar girls","girls also","cabinet passed","ordinance banning","banning dance","dance bars","maharashtra police","police second","second amendment","amendment bill","supreme court","court ruling","maharashtra legislative","legislative assembly","previous ban","ban dance","dance bar","ban dance","dance performances","three star","five star","star hotels","cultural events","festivals held","luxury hotels","legislative council","law banning","banning dance","dance bars","maharashtra state","state appointed","appointed committee","committee headed","former judge","complete ban","bar girls","corrupting influence","reduce crimes","committee recommended","improved legislation","september based","petition filed","indian hotel","restaurant association","supreme court","court issued","notice directing","maharashtra governmento","governmento reply","petition stated","stated thathe","thathe state","state government","supreme court","court ruling","previously held","association also","also alleged","alleged thathe","thathe amendment","asome politicians","prestige issue","judgment also","also wanto","wanto shield","court however","government failed","petition february","supreme court","court issued","second notice","maharashtra government","government seeking","supreme court","court stayed","law also","unconstitutional similar","court ruled","dance bars","bars could","licensing authorities","dance performances","final hearing","hearing iset","november bar","bar dancing","dancing india","nightclub dance","western world","theastern world","entertainmenthe dancers","dancers known","bar girl","remain significantly","throughouthe performance","performance showing","bare arms","arms therefore","bar dancing","mostly achieved","maharashtra bar","bar dancer","dancer attire","often ethnic","ethnic indian","may include","include western","bar dances","often compared","wherein women","live classical","classical indian","indian music","music traditionally","traditionally performed","era dancer","bar girls","girls dance","lit dance","dance floor","central focus","dance bar","bar seating","seating arrangement","chairs lined","againsthe walls","seen typical","time bar","bar girls","movement designed","patron whose","whose attention","called upon","patron making","eye contact","generally making","targeted patron","patron feel","feel special","bar dancers","dancers often","often stay","stay within","dance floor","floor male","male waiters","prevent sex","money deals","bar girls","currency notes","generally results","paper money","money currency","currency note","act known","currency notes","would even","even garland","many bar","bar dancers","make hundreds","way thanks","generous well","patrons athend","predetermined proportion","dance bar","bar girls","girls dance","dance bars","bars also","also make","make money","women earned","attracted women","indiand even","far away","bangladesh especially","dance bars","safer way","red light","light district","district income","income depended","bar girl","times reported","reported thathe","thathe less","less popular","popular girls","also stated","popular girls","girls received","monthly salary","bar owner","owner kept","economic aspects","aspects dance","dance bars","bars closed","government changed","stay open","marine drive","local mafia","also make","make money","dance bars","bars dance","meeting place","criminals making","intelligence gathering","police dance","dance bars","bars also","also drawn","infamous indian","indian moral","morally corrupting","corrupting society","society exploiting","exploiting men","money away","criminal elements","dance bars","withe demand","elite hotels","hotels clubs","clubs public","public shows","pointed outhe","item number","movie film","opponents dance","dance bars","bars outside","outside maharashtra","maharashtra dance","dance bars","bars exist","crime branch","delhi police","police dance","dance bar","bar girls","hotel owners","charges ranging","lower middle","middle class","class families","families four","delhi two","mumbai dance","dance bars","banned notable","notable incidents","incidents indian","spent nearly","one night","dance bar","grant road","allegedly spent","spent per","per night","two years","uttar pradesh","singh along","anti prostitution","prostitution act","goa police","august following","dance bar","police said","arrested singh","mujra party","six women","women dancers","prostitutes called","singh later","later told","abouthe incident","incident saying","uttar pradesh","women dancers","dancers perform","every occasion","bar girl","girl allegedly","social service","mumbai police","police around","police registered","accidental death","death report","investigation however","bar management","management claimed","claimed thathe","thathe police","bar employee","created panic","bar girl","heart attack","attack bar","bar owner","thentire incident","incident buthe","buthe police","taken every","every thing","mobile phones","bar employees","popular culture","played role","work bar","bar dancer","dancer mohini","film happy","happy new","new year","year film","film happy","happy new","new year","played role","bar dancer","played role","played role","see also","also list","public house","house topics","topics furthereading","dance bars","bars ban","ban dance","dance bars","maharashtra high","dance bar","bar ban","ban category","category dance","dance india","india category","category nightclubs","nightclubs category","category culture","mumbai category","category types","drinking establishment","establishment category","category illegal","illegal occupations"],"new_description":"dance bar term_used india refer bars adult entertainment form dances relatively well covered women performed male patrons exchange cash dance_bars used present maharashtra later spread across country mainly cities dance_bars banned state maharashtra august withe passing maharashtra police amendment act subsequently government shut dance_bars however_many continued late although way mumbai outskirts mumbai alone bars atheir peak april banned though officially dance_bars existed rest illegal figures forest state dance_bars total employed people including bar_girls bars functioned fronts prostitution ban enforced rehabilitation program initiated nightclub dancers known bar many moved dubai middleastern countries others wento new_delhi chennai hyderabad india hyderabad ban firstruck bombay high_court april verdict upheld supreme_court july hindu reported_thathe number women employed bars maharashtra around september waitresses singers orchestra bars maharashtra government bars local ordinance buthis found unconstitutional supreme_court october allowing mumbai dance_bars reopen first dance_bars maharashtra thearly first dance_bar district hotel international mumbai police carried raid dance_bars throughout mumbai february overnight operation first_ever large_scale raid dance_bars followed march two bar owners claimed thathey paid regular keep business running alleged either police want us hike want us fund election campaigns certain politicians february following raid maharashtra government issued notification persons age ofrom entering dance_bars discoth_ques pubs bars violating face fines possible cancellation licences ban bombay prohibition act effective april march maharashtra deputy chief minister home patil announced maharashtra state assembly dance_bars mumbai would shut complaints patil twother peasants workers party complained dance_bars corrupting youth patil claimed dance ladies bars rural corrupting moral fibre also announced committee key officials would report within three_months patil also stated_thathe government would issue new licences dance_bars mumbai went strike show solidarity maharashtra state assembly adopted maharashtra police amendment bill bombay police act banning holding performance dance kind eating house permit rooms beer bars across state july june maharashtra governor krishna sent back ordinance ban saw immediate reason sign ordinance thathe issue discussed state assembly ban criticized north_west expressed concern future bar_girls would unemployed result ban leave ito people whether wanto visit bar decide ban congress govinda bar_girls ban slogans alleging bias rehabilitation package athe_time ban bars state employed bar augusthe ban implemented across result ban government lost million per revenue bars mumbai alone people including bar_girls went work deputy chief patil initially stated bar_girls would later stated since bar_girls states well bangladesh girls would however rehabilitation lack rehabilitation program within short months hundreds bar_girls bar mostly young women sending income back families work forced move gulf countries south_east_asian countriesome bar example november former bar_girls across mumbai leased rooms withe_help brothel brokers around road near started performing versions mujra every night another hub period congress house near kennedy bridge grant road whichas city oldest address mujra performers embraced bar_girls bar_girls called dance private parties often provide sexual bar_girls many_cases girls could find modes income moved prostitution mumbai red light districts like committed suicide receive rehabilitation state dance_bars attempto meet hosting live singing band music live band following ban dance_bars arrests made largest raid dance august ban occurred march mumbai police bar bar men including patrons charges ipc sections obscenity following_years known dance_bar demolished shut municipal corporation buthey moved outskirts main mumbai city areas like mumbai ahmedabad national highway india national highway road suburb numerous illegal dance_bars mostly residential areas also_serve pick joints demolished extensive drive late numerous arrests made including bar_girls customers employees bars affected ban dance_bars included tourism general beauty parlours taxi_drivers stitched indian worn bar court april bombay high_court struck amendment unconstitutional ban challenged nine including association hotels_restaurants dance_bar owners association bar_girls union dance_bars allowed open immediately state government allowed eight week appeal period patil told maharashtra state assembly april thathe_government would appeal ruling supreme_courthe supreme_court admitted state government petition challenging high_court verdict may_also continued stay grant licences dance_bars supreme_court upheld bombay high_court verdict july court order implementation high_court permitted bars licences reopen bar owners began applying police restoration licences required run dance_bars july september least bar owners applied licences toperate dance_bars however licences processed police prompted owners bars send reminder notice police department august asking denied licences even supreme_court lifted ban dance_bar owners also threatened file petition supreme_courthe deputy commissioner police headquarters stated_thathey suitable guidance state regarding order thathey_would process applications upon receiving instructions october supreme_court declared law mumbai dance_bars reopen ordinance legislation attempts patil stated department received draft september prepared advocate general ensure dance_bars banned state june maharashtra state cabinet decided ordinance ban dance_bars chief minister informed could supreme_court judgment instead proposed regulatory authority monitor control dance_bars however plan members would dna quoted senior minister attended cabinet meeting dance_bars could open obtaining mandatory also stated_thathey ensure part customers allowed throw money bar_girls also however june cabinet passed ordinance banning dance_bars day bill maharashtra police second amendment bill supreme_court ruling introduced passed maharashtra legislative assembly bill introduced previous ban dance_bar extended ban dance performances three star five star hotels well cultural events festivals held luxury hotels bill legislative council day law banning dance_bars enacted june september maharashtra state appointed committee headed former judge recommended complete ban bar_girls hotels_restaurants well social corrupting influence order reduce crimes women committee recommended improved legislation ordinance september based petition filed indian hotel restaurant association challenging ban supreme_court issued notice directing maharashtra governmento reply petition petition stated_thathe state government supreme_court ruling included provisions court previously held unconstitutional association also alleged thathe amendment result personal introduced great asome politicians made prestige issue wanto judgment also wanto shield court however government failed reply petition february supreme_court issued second notice maharashtra government seeking reply october supreme_court stayed law also unconstitutional similar court ruled dance_bars could reopen said licensing authorities power regulate dance performances final hearing iset november bar dancing india differs dancing nightclub dance western world parts theastern world way similar performed entertainmenthe dancers known bar girl remain significantly throughouthe performance showing part back bare arms therefore aspect bar dancing mostly achieved suggestion maharashtra bar dancer attire often ethnic indian whereas placesuch bangalore may_include western bar dances often compared mujra wherein women live classical indian music traditionally performed era dancer bar_girls dance numbers lit dance_floor central focus dance_bar seating arrangement chairs lined againsthe walls room dancing kind features bosom seen typical dancing time bar_girls sway music movement designed conservation energy find patron whose attention wish attract called upon patron dance front patron making eye contact generally making targeted patron feel special contact two allowed bar dancers often stay within dance_floor male waiters patrons close transactions two well ostensibly prevent sex money deals made bar_girls currency notes generally results patron paper money currency note either nominal cash indian notes act known holds currency notes dancer notes upon dancer cases would even garland dancer many bar dancers able make hundreds night way thanks generous well possibly patrons athend day girl earnings counted split predetermined proportion dance_bar girls dance_bars_also make money sale alcohol snacks women earned attracted women indiand even far away nepal bangladesh especially dance_bars considered safer way make living working mumbai red light district income depended popularity status bar girl times reported_thathe less popular girls given amount also stated popular girls received monthly salary bar owner kept money social economic aspects dance_bars closed midnight government changed rule stay open however changed following rape minor marine drive although rape committed police inside police station local mafia also make money regular dance_bars dance meeting_place criminals making hub intelligence gathering police dance_bars_also drawn infamous indian moral state maharashtra charged morally corrupting society exploiting men money away latter families connections criminal elements well fronts prostitution dance_bars supporters withe demand dances women performed elite hotels clubs public shows presently government list targets withe brush pointed outhe item number movie film examples part state opponents dance_bars outside maharashtra dance_bars exist parts illegal june crime branch delhi police dance_bar hotel road bar_girls one hotel owners charges ranging obscenity trafficking girls aged came lower middle_class families four delhi two punjab girls previously employed mumbai dance_bars shifted delhi banned notable incidents indian abdul spent nearly one night dance_bar grant road gambling son allegedly spent per night two_years dance party uttar pradesh singh along five persons arrested booked anti prostitution act goa police august following raid dance_bar police said arrested singh mujra party hotel six women dancers prostitutes called delhi singh later told media abouthe incident saying uttar pradesh women dancers perform every occasion time engagement marriage women dance_music bar girl allegedly raid bar restaurant mumbai social service branch mumbai police around ist august police registered accidental death report investigation however bar management claimed thathe police bar employee raid created panic bar girl heart attack bar owner said recording thentire incident buthe police taken every thing even mobile phones bar employees allowing inside unable contact employees popular_culture played role work bar dancer mohini time ban film happy new year film happy new year actress played role bar dancer movie bar played role prostitute movie played role prostitute movie see_also list public_house_topics furthereading dance_bars ban dance_bars maharashtra high dance_bar ban category_dance india_category_nightclubs_category culture mumbai category_types drinking_establishment_category illegal occupations"},{"title":"Danhostel Copenhagen City","description":"opening date renovation date height stars diamonds closing date developer architect operator danhostel owner number of restaurants number of rooms number of suites floor area floors parking website official hotel website the danhostel copenhagen city is a hostel situated nexto langebro brige in central copenhagen denmark it is one of the largest european hostel s the biggest in a metropolitan area history the building was the first copenhagen high rise tower and was originally intended to be coupled with a never builtower on the other side of the bridge it was the tallest building of denmark from to when it wasurpassed by the falkoner center danhostel copenhagen city page on wwwemporiscom accessed on it formerly hosted the hotel europa the building was laterenovated and in was re opened as an hostel time out copenhagen th edition time out guides ltd random housee google books its interior furniture was designed by the danish firm gubi recalling with its colors denmark s traditional housing style danhostel copenhagen city catherine lazure guinard article of june onordicdesignca the hostel has beds in dormitories or smallerooms danhostel copenhagen city web page on wwwvisitdenmarkcouk its basement hosts kitchen facilities while in the ground floor is located an internet caf danhostel copenhagen city web page on wwwviamichelinit see also list of tallest buildings in denmark category hotels in copenhagen category hotels established in category hotel buildings completed in category skyscrapers in denmark categoryouthostelling category skyscraper hotels","main_words":["opening","date","renovation_date","height","stars","closing_date","developer","architect","operator","danhostel","restaurants","number","rooms","number","suites","floor_area","floors","parking","website_official","hotel","website","danhostel","copenhagen","city","hostel","situated","nexto","central","copenhagen","denmark","one","largest","european","hostel","biggest","metropolitan","area","history","building","first","copenhagen","high","rise","tower","originally_intended","coupled","never","side","bridge","tallest","building","denmark","center","danhostel","copenhagen","city","page","accessed","formerly","hosted","hotel","europa","building","opened","hostel","time","copenhagen","th_edition","time","guides","ltd","random","google_books","interior","furniture","designed","danish","firm","colors","denmark","traditional","housing","style","danhostel","copenhagen","city","catherine","article","june","hostel","beds","dormitories","danhostel","copenhagen","city","web_page","basement","hosts","kitchen","facilities","ground_floor","located","internet","caf","danhostel","copenhagen","city","web_page","see_also","list","tallest","buildings","denmark","category_hotels","copenhagen","category_hotels","established","category_hotel","buildings_completed","category","denmark","categoryouthostelling_category","skyscraper","hotels"],"clean_bigrams":[["opening","date"],["date","renovation"],["renovation","date"],["date","height"],["height","stars"],["closing","date"],["date","developer"],["developer","architect"],["architect","operator"],["operator","danhostel"],["danhostel","owner"],["owner","number"],["restaurants","number"],["rooms","number"],["suites","floor"],["floor","area"],["area","floors"],["floors","parking"],["parking","website"],["website","official"],["official","hotel"],["hotel","website"],["danhostel","copenhagen"],["copenhagen","city"],["hostel","situated"],["situated","nexto"],["central","copenhagen"],["copenhagen","denmark"],["largest","european"],["european","hostel"],["metropolitan","area"],["area","history"],["first","copenhagen"],["copenhagen","high"],["high","rise"],["rise","tower"],["originally","intended"],["tallest","building"],["center","danhostel"],["danhostel","copenhagen"],["copenhagen","city"],["city","page"],["formerly","hosted"],["hotel","europa"],["hostel","time"],["copenhagen","th"],["th","edition"],["edition","time"],["guides","ltd"],["ltd","random"],["google","books"],["interior","furniture"],["danish","firm"],["colors","denmark"],["traditional","housing"],["housing","style"],["style","danhostel"],["danhostel","copenhagen"],["copenhagen","city"],["city","catherine"],["danhostel","copenhagen"],["copenhagen","city"],["city","web"],["web","page"],["basement","hosts"],["hosts","kitchen"],["kitchen","facilities"],["ground","floor"],["internet","caf"],["caf","danhostel"],["danhostel","copenhagen"],["copenhagen","city"],["city","web"],["web","page"],["see","also"],["also","list"],["tallest","buildings"],["denmark","category"],["category","hotels"],["copenhagen","category"],["category","hotels"],["hotels","established"],["category","hotel"],["hotel","buildings"],["buildings","completed"],["denmark","categoryouthostelling"],["categoryouthostelling","category"],["category","skyscraper"],["skyscraper","hotels"]],"all_collocations":["opening date","date renovation","renovation date","date height","height stars","closing date","date developer","developer architect","architect operator","operator danhostel","danhostel owner","owner number","restaurants number","rooms number","suites floor","floor area","area floors","floors parking","parking website","website official","official hotel","hotel website","danhostel copenhagen","copenhagen city","hostel situated","situated nexto","central copenhagen","copenhagen denmark","largest european","european hostel","metropolitan area","area history","first copenhagen","copenhagen high","high rise","rise tower","originally intended","tallest building","center danhostel","danhostel copenhagen","copenhagen city","city page","formerly hosted","hotel europa","hostel time","copenhagen th","th edition","edition time","guides ltd","ltd random","google books","interior furniture","danish firm","colors denmark","traditional housing","housing style","style danhostel","danhostel copenhagen","copenhagen city","city catherine","danhostel copenhagen","copenhagen city","city web","web page","basement hosts","hosts kitchen","kitchen facilities","ground floor","internet caf","caf danhostel","danhostel copenhagen","copenhagen city","city web","web page","see also","also list","tallest buildings","denmark category","category hotels","copenhagen category","category hotels","hotels established","category hotel","hotel buildings","buildings completed","denmark categoryouthostelling","categoryouthostelling category","category skyscraper","skyscraper hotels"],"new_description":"opening date renovation_date height stars closing_date developer architect operator danhostel owner_number restaurants number rooms number suites floor_area floors parking website_official hotel website danhostel copenhagen city hostel situated nexto central copenhagen denmark one largest european hostel biggest metropolitan area history building first copenhagen high rise tower originally_intended coupled never side bridge tallest building denmark center danhostel copenhagen city page accessed formerly hosted hotel europa building opened hostel time copenhagen th_edition time guides ltd random google_books interior furniture designed danish firm colors denmark traditional housing style danhostel copenhagen city catherine article june hostel beds dormitories danhostel copenhagen city web_page basement hosts kitchen facilities ground_floor located internet caf danhostel copenhagen city web_page see_also list tallest buildings denmark category_hotels copenhagen category_hotels established category_hotel buildings_completed category denmark categoryouthostelling_category skyscraper hotels"},{"title":"Dark tourism","description":"file rwandan genocide murambi skullsjpg thumb px murambi technical school where many of the murders in the rwandan genocide took place is now a genocide museum dark tourism also black tourism or grief tourism has been defined as tourism involving travel to places historically associated with death and tragedy eventragedy morecently it wasuggested thathe concept should also include reasons tourists visithat site since the site s attributes alone may not make a visitor a dark touristhanatourism derived from the ancient greek word thanatos for the personification of death refers more specifically to peaceful death it is used in fewer contexts than the terms dark tourism and grief tourism the main attraction to dark locations is their historical value rather than their associations with death and suffering field of study while there is a long tradition of people visiting recent and ancient settings of death such as travel to gladiator games in the roman colosseum attending public executions by decapitation and visiting the catacombs this practice has been studied academically only relatively recently travel writers were the firsto describe their tourism to deadly places pj o rourke called his travel to warsaw managuand belfast in holidays in hell or chris rojek talking about black spotourism in or the milking the macabre academic attention to the subject originated in glasgow scotland the term dark tourism was coined in by lennon and foley two faculty members of the department of hospitality tourism leisure management at glasgow caledonian university and the term thanatourism was first mentioned by av seaton in then professor of tourismarketing athe university of strathclyde as of there have been many studies on definitions labels and subcategorizationsuch as holocaustourism and slavery heritage tourism and the term continues to be molded outside academia by authors of traveliterature there is very littlempirical research on the perspective of the dark tourist dark tourism has been formally studied from three main perspectives by a variety of different disciplines hospitality and tourism scholars in this interdisciplinary field havexamined many different aspects lennon and foley expanded their original idea in their first book deploring thatact and taste do not prevail over economiconsiderations and thathe blame for transgressions cannot lie solely on the shoulders of the proprietors but also upon those of the tourists for withoutheir demand there would be no need to supply philip stone and richard sharpley from the department of tourism and leisure management of the lancashire businesschool athe university of centralancashire uk have looked through the lens of the market place at dark tourism they have coined the term product of dark tourism andiscuss itsupply demand consumption by the dark touristone and sharpley have published prolifically in this arealthough not conducted empirical research and founded an institute for dark tourism in stone suggested that within contemporary society people regularly consume death and suffering in touristic form seemingly in the guise of education and or entertainment and sounded a call foresearch on dark tourism consumption to establish consumer behavior models that incorporate contemporary socio cultural aspects of death andying in a paper stone discussed the dark tourism product range arguing that certain suppliers of dark tourismay share particular product features perceptions and characteristics which can then be loosely translated into varioushades of darkness his typology of death related tourist sites consists of seven differentypes ordered from lighto dark fun factories dark exhibitions dark dungeons dark resting places dark shrines dark conflict sites andark camps of genocide in stone and sharpley hypothesized that coming together in places associated with grief andeath in dark tourism represents immorality so that morality may be communicated psychology philosophy and anthropology studies in these fields aim at understanding the motivation and the meaning for both visitors and local developers of dark tourism locations the social and cultural context of dark tourism and its consequenceskorstanje m the anthropology of dark tourism exploring the contradictions of capitalism centre for ethnicity and racism studies cerschool of sociology and social policy university of leeds uk working paper a simple shrinevolved into a sanctuary after the so called tragedy of croma n on december when a fire due to a pyrotechnic flare in the buenos aires nightclub republica de cromagnon killed people trapped by closed emergency exits the author speculated that sanctuary that not only resists being recycled in the form of a tourist attraction but also still inspires a deep sadness in public opinion and that a sense of community reduced the gap between society and officials this not backed up by evidenceven though the author claimed to have collected information in the field too large to be described in this piece akin to diversethnographies conducted in thisanctuary the same author hypothesized in that dark tourism could be a mechanism of resiliency helping society to recover after a disaster or catastrophe a form of domesticating death in a secularized world the detailed exploration of the aftermath by a socio linguist discussed in however interesting does not explain the genesis of the sanctuary nor why it has not become a tourist attraction whether a tourist attraction is educational or exploitative is defined by both its operators and its visitors tourism operators motivated by greed can milk the macabre oreexamine tragedies for a learning experience tourists consuming dark tourism products may desecrate a place and case studies are needed to probe who gains and loses thana tourism and slum tourism have been described as re interpreting the pastime according to the needs ofinancial elitetzanelli r thana tourism and the cinematic representation of risk abingdon routledge it has been speculated that nationalism and tourism operate as an instrument noto fragment a nationkorstanje m e a difficult world examining the roots of capitalism new york nova science recently philosopher maximiliano korstanje coined the term thana capitalism to refer to a climate of social darwinism aimed at fostering the survival of the fittest in this climate of struggle only fewin and the rest loses it explains our obsessions for consumers news or images related to terrorism attacks trauma scapes disasters and so forth korstanje writes thathe society of risk hasethe pace to a new society thana capitalism where the main commodity is death not only we consume death everywhere in cultural entertainment industry but we reinforce our superiority by witnessing the othersuffering this allegory is based on the myths of noah s ark which is considered by korstanje as the first genocide in this mythical event godivided the world in two victims and witnesseskorstanje m e george b craving for the consumption of suffering and commoditization of deathevolving facet of thana capitalism in terrorism in the global village how terrorism affects our lives korstanje m ed chapter new york nova science publishers url this logic of supremacy of those who lives over who dies is reinforced by christ s crucifixionowadays a new segment of tourists travel to zones of mass death known as areas of dark or thana tourism since in secularized societies death is a sign of weakness consuming the other s death alludes to hopes for visitors to be in trace towards the hall of chosen peoples korstanje m e the rise of thana capitalism and tourism abingdon routledge korstanje m george b death and culture is thanatourism symptomatic of thend of capitalism in virtual traumascape and exploring the roots of dark tourism korstanje m george b eds hershey igi global chris hedges described the alcatraz narrative as presented by the national park service as whitewashing because it ignores the savagery and injustice of america system of mass incarceration by omitting challenging details the park service furthers a disneyfication per hedges example destinations of dark tourism include castles and battlefieldsuch as battle of culloden battlefield today culloden in scotland bran castle and poienari castle in romania former prison such as beaumaris prison in anglesey wales the jack the ripper exhibition in the london dungeon sites of natural disaster s or anthropogenic hazard man made disaster such as hiroshima peace memorial park in japan chernobyl in ukraine and the commercial activity at world trade center site ground zero inew york one year after september it also includesites of human atrocities and genocide such as the auschwitz concentration camp in poland the nanjing massacre memorial hall in china the tuol slengenocide museum in cambodia the sites of the jejuprising in south koreand the spirit lake internment camp centre near tr cesson quebec la ferme quebec as an example of ukrainian canadian internment canada s internment operations of on bali death and funeral rites have become commodification commodified for tourism wherenterprising businesses begin arranging tourist vans and sell tickets asoon as they hear someone is dying in the us visitors can tour the holocaust memorial museum in washington dc with an identity card which matches their age and gender withat of a name and photof a real holocaust victim against a backdrop of video interpretation portraying killing squads in action the pseudo holocaust victim enters a personal id into monitors as they wander around the attraction to discover how theirealife counterpart is faring see also disaster tourism slum tourism war tourism externalinks what is dark tourism the guardian special feature grief tourismcom blog by james trotta since bigtravelcom dark tourism ideas in latin america chernobyl unlikely tourist spot slideshow by life magazine wartouristeu places of interest along hitlers atlantic wall in denmark and norway institute for dark tourism research est university of centralancashire free access to articles by philip stone and richard sharpley institute for dark tourism forum university of centralancashire category cultural tourism category grief category cultural aspects of death","main_words":["file","genocide","thumb","px","technical","school","many","genocide","took_place","genocide","museum","dark_tourism","also","black","tourism","grief","tourism","defined","tourism_involving","travel","places","historically","associated","death","tragedy","morecently","thathe","concept","also_include","reasons","tourists","site","since","site","attributes","alone","may","make","visitor","dark","derived","ancient_greek","word","death","refers","specifically","peaceful","death","used","fewer","contexts","terms","dark_tourism","grief","tourism","main","attraction","dark","locations","historical","value","rather","associations","death","suffering","field","study","long","tradition","people","visiting","recent","ancient","settings","death","travel","games","roman","attending","public","visiting","catacombs","practice","studied","relatively","recently","travel_writers","firsto","describe","tourism","places","called","travel","warsaw","belfast","holidays","hell","chris","talking","black","macabre","academic","attention","subject","originated","glasgow","scotland","term","dark_tourism","coined","lennon","two","faculty","members","department","hospitality_tourism","leisure","management","glasgow","university","term","thanatourism","first","mentioned","professor","tourismarketing","athe_university","many","studies","definitions","holocaustourism","slavery","heritage_tourism","term","continues","outside","academia","authors","traveliterature","research","perspective","dark","tourist","dark_tourism","formally","studied","three","main","perspectives","variety","different","disciplines","hospitality_tourism","scholars","interdisciplinary","field","many_different","aspects","lennon","expanded","original","idea","first","book","taste","thathe","blame","cannot","lie","solely","shoulders","proprietors","also","upon","tourists","demand","would","need","supply","philip","stone","richard","sharpley","department","tourism","leisure","management","lancashire","businesschool","athe_university","uk","looked","lens","market","place","dark_tourism","coined","term","product","dark_tourism","demand","consumption","dark","sharpley","published","conducted","empirical","research","founded","institute","dark_tourism","stone","suggested","within","contemporary","society","people","regularly","consume","death","suffering","touristic","form","seemingly","education","entertainment","sounded","call","foresearch","dark_tourism","consumption","establish","consumer","behavior","models","incorporate","contemporary","socio","cultural","aspects","death","paper","stone","discussed","dark_tourism","product","range","arguing","certain","suppliers","share","particular","product","features","perceptions","characteristics","loosely","translated","darkness","death","related","tourist_sites","consists","seven","differentypes","ordered","dark","fun","factories","dark","exhibitions","dark","dark","resting","places","dark","shrines","dark","conflict","sites","andark","camps","genocide","stone","sharpley","coming","together","places","associated","grief","andeath","dark_tourism","represents","may","psychology","philosophy","anthropology","studies","fields","aim","understanding","motivation","meaning","visitors","local","developers","dark_tourism","locations","social","cultural","context","dark_tourism","anthropology","dark_tourism","exploring","capitalism","centre","ethnicity","racism","studies","sociology","social","policy","university","leeds","uk","working","paper","simple","sanctuary","called","tragedy","croma","n","december","fire","due","flare","buenos_aires","nightclub","de","killed","people","trapped","closed","emergency","exits","author","speculated","sanctuary","form","tourist_attraction","also","still","deep","public","opinion","sense","community","reduced","gap","society","officials","backed","though","author","claimed","collected","information","field","large","described","piece","akin","conducted","author","dark_tourism","could","mechanism","helping","society","recover","disaster","form","death","secularized","world","detailed","exploration","aftermath","socio","discussed","however","interesting","explain","genesis","sanctuary","become","tourist_attraction","whether","tourist_attraction","educational","defined","operators","visitors","tourism","operators","motivated","milk","macabre","learning","experience","tourists","consuming","dark_tourism","products","may","place","case_studies","needed","probe","gains","loses","thana","tourism","slum_tourism","described","interpreting","according","needs","ofinancial","r","thana","tourism","cinematic","representation","risk","abingdon","routledge","speculated","nationalism","tourism","operate","instrument","noto","e","difficult","world","examining","roots","capitalism","new_york","nova_science","recently","philosopher","maximiliano","korstanje","coined","term","thana_capitalism","refer","climate","social","darwinism","aimed","fostering","survival","climate","struggle","rest","loses","explains","consumers","news","images","related","terrorism","attacks","trauma","disasters","forth","korstanje","writes","thathe","society","risk","pace","new","society","thana_capitalism","main","commodity","death","consume","death","everywhere","cultural","entertainment_industry","reinforce","superiority","witnessing","allegory","based","myths","noah","ark","considered","korstanje","first","genocide","mythical","event","world","two","victims","e","george_b","craving","consumption","suffering","thana_capitalism","terrorism","global","village","terrorism","affects","lives","korstanje","ed","chapter","new_york","nova_science","publishers","url","logic","supremacy","lives","dies","reinforced","christ","new","segment","tourists","travel","zones","mass","death","known","areas","dark","thana","tourism","since","secularized","societies","death","sign","weakness","consuming","death","alludes","hopes","visitors","trace","towards","hall","chosen","peoples","korstanje","e","rise","thana_capitalism","tourism","abingdon","routledge","korstanje","george_b","death","culture","thanatourism","thend","capitalism","virtual","traumascape","exploring","roots","dark_tourism","korstanje","george_b","eds","hershey_igi_global","chris","described","narrative","presented","national_park","service","america","system","mass","challenging","details","per","example","destinations","dark_tourism","include","castles","battle","battlefield","today","scotland","castle","castle","romania","former","prison","prison","anglesey","wales","jack","exhibition","london","sites","natural","disaster","hazard","man_made","disaster","hiroshima_peace_memorial","park","japan","chernobyl","ukraine","commercial","activity","world_trade","center","site","ground_zero","inew_york","one_year","september","also","human","genocide","auschwitz","concentration","camp","poland","massacre","memorial","hall","china","museum","cambodia","sites","spirit","lake","internment","camp","centre","near","quebec","la","quebec","example","ukrainian","canadian","internment","canada","internment","operations","bali","death","funeral","rites","become","commodification","commodified","tourism_businesses","begin","arranging","tourist","vans","sell","tickets","asoon","hear","someone","dying","us","visitors","tour","holocaust","memorial_museum","washington","identity","card","matches","age","gender","withat","name","photof","real","holocaust","victim","backdrop","video","interpretation","killing","action","pseudo","holocaust","victim","enters","personal","monitors","wander","around","attraction","discover","counterpart","see_also","disaster_tourism","slum_tourism","war_tourism","externalinks","dark_tourism","guardian","special","feature","grief","blog","james","since","dark_tourism","ideas","latin_america","chernobyl","unlikely","tourist","spot","life_magazine","places","interest","along","atlantic","wall","denmark","norway","institute","est","university","free","access","articles","philip","stone","richard","sharpley","institute","dark_tourism","forum","university","category_cultural_tourism","category","grief","category_cultural","aspects","death"],"clean_bigrams":[["thumb","px"],["technical","school"],["genocide","took"],["took","place"],["genocide","museum"],["museum","dark"],["dark","tourism"],["tourism","also"],["also","black"],["black","tourism"],["grief","tourism"],["tourism","involving"],["involving","travel"],["places","historically"],["historically","associated"],["thathe","concept"],["also","include"],["include","reasons"],["reasons","tourists"],["site","since"],["attributes","alone"],["alone","may"],["ancient","greek"],["greek","word"],["death","refers"],["peaceful","death"],["fewer","contexts"],["terms","dark"],["dark","tourism"],["grief","tourism"],["main","attraction"],["dark","locations"],["historical","value"],["value","rather"],["suffering","field"],["long","tradition"],["people","visiting"],["visiting","recent"],["ancient","settings"],["attending","public"],["relatively","recently"],["recently","travel"],["travel","writers"],["firsto","describe"],["macabre","academic"],["academic","attention"],["subject","originated"],["glasgow","scotland"],["term","dark"],["dark","tourism"],["two","faculty"],["faculty","members"],["hospitality","tourism"],["tourism","leisure"],["leisure","management"],["term","thanatourism"],["first","mentioned"],["tourismarketing","athe"],["athe","university"],["many","studies"],["slavery","heritage"],["heritage","tourism"],["term","continues"],["outside","academia"],["dark","tourist"],["tourist","dark"],["dark","tourism"],["formally","studied"],["three","main"],["main","perspectives"],["different","disciplines"],["disciplines","hospitality"],["hospitality","tourism"],["tourism","scholars"],["interdisciplinary","field"],["many","different"],["different","aspects"],["aspects","lennon"],["original","idea"],["first","book"],["thathe","blame"],["lie","solely"],["also","upon"],["supply","philip"],["philip","stone"],["richard","sharpley"],["tourism","leisure"],["leisure","management"],["lancashire","businesschool"],["businesschool","athe"],["athe","university"],["market","place"],["dark","tourism"],["term","product"],["dark","tourism"],["demand","consumption"],["conducted","empirical"],["empirical","research"],["dark","tourism"],["stone","suggested"],["within","contemporary"],["contemporary","society"],["society","people"],["people","regularly"],["regularly","consume"],["consume","death"],["touristic","form"],["form","seemingly"],["call","foresearch"],["dark","tourism"],["tourism","consumption"],["establish","consumer"],["consumer","behavior"],["behavior","models"],["incorporate","contemporary"],["contemporary","socio"],["socio","cultural"],["cultural","aspects"],["paper","stone"],["stone","discussed"],["dark","tourism"],["tourism","product"],["product","range"],["range","arguing"],["certain","suppliers"],["dark","tourismay"],["tourismay","share"],["share","particular"],["particular","product"],["product","features"],["features","perceptions"],["loosely","translated"],["death","related"],["related","tourist"],["tourist","sites"],["sites","consists"],["seven","differentypes"],["differentypes","ordered"],["dark","fun"],["fun","factories"],["factories","dark"],["dark","exhibitions"],["exhibitions","dark"],["dark","resting"],["resting","places"],["places","dark"],["dark","shrines"],["shrines","dark"],["dark","conflict"],["conflict","sites"],["sites","andark"],["andark","camps"],["coming","together"],["places","associated"],["grief","andeath"],["dark","tourism"],["tourism","represents"],["psychology","philosophy"],["anthropology","studies"],["fields","aim"],["local","developers"],["dark","tourism"],["tourism","locations"],["cultural","context"],["dark","tourism"],["dark","tourism"],["tourism","exploring"],["capitalism","centre"],["racism","studies"],["social","policy"],["policy","university"],["leeds","uk"],["uk","working"],["working","paper"],["called","tragedy"],["croma","n"],["fire","due"],["buenos","aires"],["aires","nightclub"],["killed","people"],["people","trapped"],["closed","emergency"],["emergency","exits"],["author","speculated"],["tourist","attraction"],["also","still"],["public","opinion"],["community","reduced"],["author","claimed"],["collected","information"],["piece","akin"],["dark","tourism"],["tourism","could"],["helping","society"],["secularized","world"],["detailed","exploration"],["however","interesting"],["tourist","attraction"],["attraction","whether"],["tourist","attraction"],["visitors","tourism"],["tourism","operators"],["operators","motivated"],["learning","experience"],["experience","tourists"],["tourists","consuming"],["consuming","dark"],["dark","tourism"],["tourism","products"],["products","may"],["case","studies"],["loses","thana"],["thana","tourism"],["tourism","slum"],["slum","tourism"],["needs","ofinancial"],["r","thana"],["thana","tourism"],["cinematic","representation"],["risk","abingdon"],["abingdon","routledge"],["tourism","operate"],["instrument","noto"],["difficult","world"],["world","examining"],["capitalism","new"],["new","york"],["york","nova"],["nova","science"],["science","recently"],["recently","philosopher"],["philosopher","maximiliano"],["maximiliano","korstanje"],["korstanje","coined"],["term","thana"],["thana","capitalism"],["social","darwinism"],["darwinism","aimed"],["rest","loses"],["consumers","news"],["images","related"],["terrorism","attacks"],["attacks","trauma"],["forth","korstanje"],["korstanje","writes"],["writes","thathe"],["thathe","society"],["new","society"],["society","thana"],["thana","capitalism"],["main","commodity"],["consume","death"],["death","everywhere"],["cultural","entertainment"],["entertainment","industry"],["first","genocide"],["mythical","event"],["two","victims"],["e","george"],["george","b"],["b","craving"],["thana","capitalism"],["global","village"],["terrorism","affects"],["lives","korstanje"],["ed","chapter"],["chapter","new"],["new","york"],["york","nova"],["nova","science"],["science","publishers"],["publishers","url"],["new","segment"],["tourists","travel"],["mass","death"],["death","known"],["thana","tourism"],["tourism","since"],["secularized","societies"],["societies","death"],["weakness","consuming"],["death","alludes"],["trace","towards"],["chosen","peoples"],["peoples","korstanje"],["thana","capitalism"],["tourism","abingdon"],["abingdon","routledge"],["routledge","korstanje"],["george","b"],["b","death"],["virtual","traumascape"],["dark","tourism"],["tourism","korstanje"],["george","b"],["b","eds"],["eds","hershey"],["hershey","igi"],["igi","global"],["global","chris"],["national","park"],["park","service"],["america","system"],["challenging","details"],["park","service"],["example","destinations"],["dark","tourism"],["tourism","include"],["include","castles"],["battlefield","today"],["romania","former"],["former","prison"],["anglesey","wales"],["natural","disaster"],["hazard","man"],["man","made"],["made","disaster"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["japan","chernobyl"],["commercial","activity"],["world","trade"],["trade","center"],["center","site"],["site","ground"],["ground","zero"],["zero","inew"],["inew","york"],["york","one"],["one","year"],["auschwitz","concentration"],["concentration","camp"],["massacre","memorial"],["memorial","hall"],["south","koreand"],["spirit","lake"],["lake","internment"],["internment","camp"],["camp","centre"],["centre","near"],["quebec","la"],["ukrainian","canadian"],["canadian","internment"],["internment","canada"],["internment","operations"],["bali","death"],["funeral","rites"],["become","commodification"],["commodification","commodified"],["businesses","begin"],["begin","arranging"],["arranging","tourist"],["tourist","vans"],["sell","tickets"],["tickets","asoon"],["hear","someone"],["us","visitors"],["holocaust","memorial"],["memorial","museum"],["identity","card"],["gender","withat"],["real","holocaust"],["holocaust","victim"],["video","interpretation"],["pseudo","holocaust"],["holocaust","victim"],["victim","enters"],["wander","around"],["see","also"],["also","disaster"],["disaster","tourism"],["tourism","slum"],["slum","tourism"],["tourism","war"],["war","tourism"],["tourism","externalinks"],["dark","tourism"],["guardian","special"],["special","feature"],["feature","grief"],["dark","tourism"],["tourism","ideas"],["latin","america"],["america","chernobyl"],["chernobyl","unlikely"],["unlikely","tourist"],["tourist","spot"],["life","magazine"],["interest","along"],["atlantic","wall"],["norway","institute"],["dark","tourism"],["tourism","research"],["research","est"],["est","university"],["free","access"],["philip","stone"],["richard","sharpley"],["sharpley","institute"],["dark","tourism"],["tourism","forum"],["forum","university"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","grief"],["grief","category"],["category","cultural"],["cultural","aspects"]],"all_collocations":["technical school","genocide took","took place","genocide museum","museum dark","dark tourism","tourism also","also black","black tourism","grief tourism","tourism involving","involving travel","places historically","historically associated","thathe concept","also include","include reasons","reasons tourists","site since","attributes alone","alone may","ancient greek","greek word","death refers","peaceful death","fewer contexts","terms dark","dark tourism","grief tourism","main attraction","dark locations","historical value","value rather","suffering field","long tradition","people visiting","visiting recent","ancient settings","attending public","relatively recently","recently travel","travel writers","firsto describe","macabre academic","academic attention","subject originated","glasgow scotland","term dark","dark tourism","two faculty","faculty members","hospitality tourism","tourism leisure","leisure management","term thanatourism","first mentioned","tourismarketing athe","athe university","many studies","slavery heritage","heritage tourism","term continues","outside academia","dark tourist","tourist dark","dark tourism","formally studied","three main","main perspectives","different disciplines","disciplines hospitality","hospitality tourism","tourism scholars","interdisciplinary field","many different","different aspects","aspects lennon","original idea","first book","thathe blame","lie solely","also upon","supply philip","philip stone","richard sharpley","tourism leisure","leisure management","lancashire businesschool","businesschool athe","athe university","market place","dark tourism","term product","dark tourism","demand consumption","conducted empirical","empirical research","dark tourism","stone suggested","within contemporary","contemporary society","society people","people regularly","regularly consume","consume death","touristic form","form seemingly","call foresearch","dark tourism","tourism consumption","establish consumer","consumer behavior","behavior models","incorporate contemporary","contemporary socio","socio cultural","cultural aspects","paper stone","stone discussed","dark tourism","tourism product","product range","range arguing","certain suppliers","dark tourismay","tourismay share","share particular","particular product","product features","features perceptions","loosely translated","death related","related tourist","tourist sites","sites consists","seven differentypes","differentypes ordered","dark fun","fun factories","factories dark","dark exhibitions","exhibitions dark","dark resting","resting places","places dark","dark shrines","shrines dark","dark conflict","conflict sites","sites andark","andark camps","coming together","places associated","grief andeath","dark tourism","tourism represents","psychology philosophy","anthropology studies","fields aim","local developers","dark tourism","tourism locations","cultural context","dark tourism","dark tourism","tourism exploring","capitalism centre","racism studies","social policy","policy university","leeds uk","uk working","working paper","called tragedy","croma n","fire due","buenos aires","aires nightclub","killed people","people trapped","closed emergency","emergency exits","author speculated","tourist attraction","also still","public opinion","community reduced","author claimed","collected information","piece akin","dark tourism","tourism could","helping society","secularized world","detailed exploration","however interesting","tourist attraction","attraction whether","tourist attraction","visitors tourism","tourism operators","operators motivated","learning experience","experience tourists","tourists consuming","consuming dark","dark tourism","tourism products","products may","case studies","loses thana","thana tourism","tourism slum","slum tourism","needs ofinancial","r thana","thana tourism","cinematic representation","risk abingdon","abingdon routledge","tourism operate","instrument noto","difficult world","world examining","capitalism new","new york","york nova","nova science","science recently","recently philosopher","philosopher maximiliano","maximiliano korstanje","korstanje coined","term thana","thana capitalism","social darwinism","darwinism aimed","rest loses","consumers news","images related","terrorism attacks","attacks trauma","forth korstanje","korstanje writes","writes thathe","thathe society","new society","society thana","thana capitalism","main commodity","consume death","death everywhere","cultural entertainment","entertainment industry","first genocide","mythical event","two victims","e george","george b","b craving","thana capitalism","global village","terrorism affects","lives korstanje","ed chapter","chapter new","new york","york nova","nova science","science publishers","publishers url","new segment","tourists travel","mass death","death known","thana tourism","tourism since","secularized societies","societies death","weakness consuming","death alludes","trace towards","chosen peoples","peoples korstanje","thana capitalism","tourism abingdon","abingdon routledge","routledge korstanje","george b","b death","virtual traumascape","dark tourism","tourism korstanje","george b","b eds","eds hershey","hershey igi","igi global","global chris","national park","park service","america system","challenging details","park service","example destinations","dark tourism","tourism include","include castles","battlefield today","romania former","former prison","anglesey wales","natural disaster","hazard man","man made","made disaster","hiroshima peace","peace memorial","memorial park","japan chernobyl","commercial activity","world trade","trade center","center site","site ground","ground zero","zero inew","inew york","york one","one year","auschwitz concentration","concentration camp","massacre memorial","memorial hall","south koreand","spirit lake","lake internment","internment camp","camp centre","centre near","quebec la","ukrainian canadian","canadian internment","internment canada","internment operations","bali death","funeral rites","become commodification","commodification commodified","businesses begin","begin arranging","arranging tourist","tourist vans","sell tickets","tickets asoon","hear someone","us visitors","holocaust memorial","memorial museum","identity card","gender withat","real holocaust","holocaust victim","video interpretation","pseudo holocaust","holocaust victim","victim enters","wander around","see also","also disaster","disaster tourism","tourism slum","slum tourism","tourism war","war tourism","tourism externalinks","dark tourism","guardian special","special feature","feature grief","dark tourism","tourism ideas","latin america","america chernobyl","chernobyl unlikely","unlikely tourist","tourist spot","life magazine","interest along","atlantic wall","norway institute","dark tourism","tourism research","research est","est university","free access","philip stone","richard sharpley","sharpley institute","dark tourism","tourism forum","forum university","category cultural","cultural tourism","tourism category","category grief","grief category","category cultural","cultural aspects"],"new_description":"file genocide thumb px technical school many genocide took_place genocide museum dark_tourism also black tourism grief tourism defined tourism_involving travel places historically associated death tragedy morecently thathe concept also_include reasons tourists site since site attributes alone may make visitor dark derived ancient_greek word death refers specifically peaceful death used fewer contexts terms dark_tourism grief tourism main attraction dark locations historical value rather associations death suffering field study long tradition people visiting recent ancient settings death travel games roman attending public visiting catacombs practice studied relatively recently travel_writers firsto describe tourism places called travel warsaw belfast holidays hell chris talking black macabre academic attention subject originated glasgow scotland term dark_tourism coined lennon two faculty members department hospitality_tourism leisure management glasgow university term thanatourism first mentioned professor tourismarketing athe_university many studies definitions holocaustourism slavery heritage_tourism term continues outside academia authors traveliterature research perspective dark tourist dark_tourism formally studied three main perspectives variety different disciplines hospitality_tourism scholars interdisciplinary field many_different aspects lennon expanded original idea first book taste thathe blame cannot lie solely shoulders proprietors also upon tourists demand would need supply philip stone richard sharpley department tourism leisure management lancashire businesschool athe_university uk looked lens market place dark_tourism coined term product dark_tourism demand consumption dark sharpley published conducted empirical research founded institute dark_tourism stone suggested within contemporary society people regularly consume death suffering touristic form seemingly education entertainment sounded call foresearch dark_tourism consumption establish consumer behavior models incorporate contemporary socio cultural aspects death paper stone discussed dark_tourism product range arguing certain suppliers dark_tourismay share particular product features perceptions characteristics loosely translated darkness death related tourist_sites consists seven differentypes ordered dark fun factories dark exhibitions dark dark resting places dark shrines dark conflict sites andark camps genocide stone sharpley coming together places associated grief andeath dark_tourism represents may psychology philosophy anthropology studies fields aim understanding motivation meaning visitors local developers dark_tourism locations social cultural context dark_tourism anthropology dark_tourism exploring capitalism centre ethnicity racism studies sociology social policy university leeds uk working paper simple sanctuary called tragedy croma n december fire due flare buenos_aires nightclub de killed people trapped closed emergency exits author speculated sanctuary form tourist_attraction also still deep public opinion sense community reduced gap society officials backed though author claimed collected information field large described piece akin conducted author dark_tourism could mechanism helping society recover disaster form death secularized world detailed exploration aftermath socio discussed however interesting explain genesis sanctuary become tourist_attraction whether tourist_attraction educational defined operators visitors tourism operators motivated milk macabre learning experience tourists consuming dark_tourism products may place case_studies needed probe gains loses thana tourism slum_tourism described interpreting according needs ofinancial r thana tourism cinematic representation risk abingdon routledge speculated nationalism tourism operate instrument noto e difficult world examining roots capitalism new_york nova_science recently philosopher maximiliano korstanje coined term thana_capitalism refer climate social darwinism aimed fostering survival climate struggle rest loses explains consumers news images related terrorism attacks trauma disasters forth korstanje writes thathe society risk pace new society thana_capitalism main commodity death consume death everywhere cultural entertainment_industry reinforce superiority witnessing allegory based myths noah ark considered korstanje first genocide mythical event world two victims e george_b craving consumption suffering thana_capitalism terrorism global village terrorism affects lives korstanje ed chapter new_york nova_science publishers url logic supremacy lives dies reinforced christ new segment tourists travel zones mass death known areas dark thana tourism since secularized societies death sign weakness consuming death alludes hopes visitors trace towards hall chosen peoples korstanje e rise thana_capitalism tourism abingdon routledge korstanje george_b death culture thanatourism thend capitalism virtual traumascape exploring roots dark_tourism korstanje george_b eds hershey_igi_global chris described narrative presented national_park service america system mass challenging details park_service per example destinations dark_tourism include castles battle battlefield today scotland castle castle romania former prison prison anglesey wales jack exhibition london sites natural disaster hazard man_made disaster hiroshima_peace_memorial park japan chernobyl ukraine commercial activity world_trade center site ground_zero inew_york one_year september also human genocide auschwitz concentration camp poland massacre memorial hall china museum cambodia sites south_koreand spirit lake internment camp centre near quebec la quebec example ukrainian canadian internment canada internment operations bali death funeral rites become commodification commodified tourism_businesses begin arranging tourist vans sell tickets asoon hear someone dying us visitors tour holocaust memorial_museum washington identity card matches age gender withat name photof real holocaust victim backdrop video interpretation killing action pseudo holocaust victim enters personal monitors wander around attraction discover counterpart see_also disaster_tourism slum_tourism war_tourism externalinks dark_tourism guardian special feature grief blog james since dark_tourism ideas latin_america chernobyl unlikely tourist spot life_magazine places interest along atlantic wall denmark norway institute dark_tourism_research est university free access articles philip stone richard sharpley institute dark_tourism forum university category_cultural_tourism category grief category_cultural aspects death"},{"title":"Day room (hotel)","description":"a day room hotel is a method of booking a hotel room for same day use historically the use of day rooms dates as far back as the hotel itself in literary history has been associated withe idea of renting rooms on an hourly basis for a time this practice had a negative connotation for hotels and motels in japan this practice is commonplace but exclusive to a specific type of hotel called a love hotelong layovers and unpredictable travel plans re created the demand for day rooms in modern times in the united states jobs that require travel became more popular in the th and st centuries the practice of renting a hotel room for a day is also common among travelers and vacationers who gon cruises due to the facthat cruise ships typically depart and arrive at early hours of the morning contemporary day rooms modern hotels fill daytime occupancy by offering day rooms day rooms are booked in a block of hours typically between am and pm before the typical night shift for example the four points a sheraton hotels and resortsheraton hotel in los angeles began offering day rooms also the rodeway inn and suites near port everglades in fort lauderdale florida offers day rooms there is a technology movement surrounding travel and time saving that implements daytime hotel useveral companies offer mobile applications that divide the time by hours or day use for travel purposes in san francisco a company has created a mobile application that divvies up time in a hotel by the minute category hotels category hospitality services category prostitution","main_words":["day","room","hotel","method","booking","hotel_room","day","use","historically","use","day","rooms","dates","far","back","hotel","literary","history","renting","rooms","hourly","basis","time","practice","negative","hotels","motels","japan","practice","commonplace","exclusive","specific","type","hotel","called","love","unpredictable","travel","plans","created","demand","day","rooms","modern_times","united_states","jobs","require","travel","became_popular","th","st","centuries","practice","renting","hotel_room","day","also_common","among","travelers","vacationers","gon","cruises","due","facthat","cruise_ships","typically","arrive","early","hours","morning","contemporary","day","rooms","modern","hotels","fill","daytime","occupancy","offering","day","rooms","day","rooms","booked","block","hours","typically","typical","night","shift","example","four","points","sheraton","hotels","hotel","los_angeles","began","offering","day","rooms","also","inn","suites","near","port","fort_lauderdale","florida","offers","day","rooms","technology","movement","surrounding","travel","time","saving","implements","daytime","hotel","companies","offer","divide","time","hours","day","use","travel","purposes","san_francisco","company","created","mobile_application","time","hotel","minute","category_hotels","category_hospitality","services_category","prostitution"],"clean_bigrams":[["day","room"],["room","hotel"],["hotel","room"],["day","use"],["use","historically"],["day","rooms"],["rooms","dates"],["far","back"],["literary","history"],["associated","withe"],["withe","idea"],["renting","rooms"],["hourly","basis"],["specific","type"],["hotel","called"],["unpredictable","travel"],["travel","plans"],["day","rooms"],["rooms","modern"],["modern","times"],["united","states"],["states","jobs"],["require","travel"],["travel","became"],["st","centuries"],["hotel","room"],["also","common"],["common","among"],["among","travelers"],["gon","cruises"],["cruises","due"],["facthat","cruise"],["cruise","ships"],["ships","typically"],["early","hours"],["morning","contemporary"],["contemporary","day"],["day","rooms"],["rooms","modern"],["modern","hotels"],["hotels","fill"],["fill","daytime"],["daytime","occupancy"],["offering","day"],["day","rooms"],["rooms","day"],["day","rooms"],["hours","typically"],["typical","night"],["night","shift"],["four","points"],["sheraton","hotels"],["los","angeles"],["angeles","began"],["began","offering"],["offering","day"],["day","rooms"],["rooms","also"],["suites","near"],["near","port"],["fort","lauderdale"],["lauderdale","florida"],["florida","offers"],["offers","day"],["day","rooms"],["technology","movement"],["movement","surrounding"],["surrounding","travel"],["time","saving"],["implements","daytime"],["daytime","hotel"],["companies","offer"],["offer","mobile"],["mobile","applications"],["day","use"],["travel","purposes"],["san","francisco"],["mobile","application"],["minute","category"],["category","hotels"],["hotels","category"],["category","hospitality"],["hospitality","services"],["services","category"],["category","prostitution"]],"all_collocations":["day room","room hotel","hotel room","day use","use historically","day rooms","rooms dates","far back","literary history","associated withe","withe idea","renting rooms","hourly basis","specific type","hotel called","unpredictable travel","travel plans","day rooms","rooms modern","modern times","united states","states jobs","require travel","travel became","st centuries","hotel room","also common","common among","among travelers","gon cruises","cruises due","facthat cruise","cruise ships","ships typically","early hours","morning contemporary","contemporary day","day rooms","rooms modern","modern hotels","hotels fill","fill daytime","daytime occupancy","offering day","day rooms","rooms day","day rooms","hours typically","typical night","night shift","four points","sheraton hotels","los angeles","angeles began","began offering","offering day","day rooms","rooms also","suites near","near port","fort lauderdale","lauderdale florida","florida offers","offers day","day rooms","technology movement","movement surrounding","surrounding travel","time saving","implements daytime","daytime hotel","companies offer","offer mobile","mobile applications","day use","travel purposes","san francisco","mobile application","minute category","category hotels","hotels category","category hospitality","hospitality services","services category","category prostitution"],"new_description":"day room hotel method booking hotel_room day use historically use day rooms dates far back hotel literary history associated_withe_idea renting rooms hourly basis time practice negative hotels motels japan practice commonplace exclusive specific type hotel called love unpredictable travel plans created demand day rooms modern_times united_states jobs require travel became_popular th st centuries practice renting hotel_room day also_common among travelers vacationers gon cruises due facthat cruise_ships typically arrive early hours morning contemporary day rooms modern hotels fill daytime occupancy offering day rooms day rooms booked block hours typically typical night shift example four points sheraton hotels hotel los_angeles began offering day rooms also inn suites near port fort_lauderdale florida offers day rooms technology movement surrounding travel time saving implements daytime hotel companies offer mobile_applications divide time hours day use travel purposes san_francisco company created mobile_application time hotel minute category_hotels category_hospitality services_category prostitution"},{"title":"Day-tripper","description":"daytripper a day tripper is a person who visits a tourist destination or visitor attraction from his her home and returns home on the same day such an excursion does not involve a night away from home such as experienced on a vacation holiday the day trip or daycation is a popular form of recreation and leisure for families who care for young children or people who are too frail to travel easily or whown pets or for whom the logistics or cost of a night away from home may be prohibitive history in medieval days a destination for such days out would be religious to a nearby shrine or commercial for example to a seasonal fair later in england visits to stately home s by those who regarded themselves middle class became frequent and it was the tradition to reward the butler or housekeeper with a tip for providing access to their employers home asuchomes were meant for show it is unlikely thathe owning family would object provided they were not in residence athe time the arrival of the railway excursion often using day tripper tickets in the mid th century saw the blossoming of a distinctive day tripper industry trippers also travelled in their thousands by paddlesteamer or steamship to the many pier s around victorian era seaside resort s the general slocum excursion was an example cycling became a very popular day tripper activity especially amongst urban area urband suburban workers from the mid s onwards coach vehicle coach and charabanc outings followed as the internal combustion engine became reliablenough to gethe paying customers out and back again works outings and church or chapel excursions werextremely popular until the s while all of the foregoing still existhe modern day tripper experience is usually by motor car as a result of the growth of car ownership also airline such as palmair promote day tripsee also staycation booze cruise day tripper day tripper beatlesong picnicategory types of tourism","main_words":["day","person","visits","tourist_destination","visitor","attraction","home","returns","home","day","excursion","involve","night","away","home","experienced","vacation","holiday","day","trip","popular","form","recreation","leisure","families","care","young","children","people","travel","easily","pets","logistics","cost","night","away","home","may","history","medieval","days","destination","days","would","religious","nearby","shrine","commercial","example","seasonal","fair","later","england","visits","home","regarded","middle_class","became","frequent","tradition","reward","butler","housekeeper","tip","providing","access","employers","home","meant","show","unlikely","thathe","owning","family","would","object","provided","residence","athe_time","arrival","railway","excursion","often","using","day_tripper","tickets","mid_th","century","saw","distinctive","day_tripper","industry","also","travelled","thousands","steamship","many","pier","around","victorian_era","seaside_resort","general","slocum","excursion","example","cycling","became_popular","day_tripper","activity","especially","amongst","urban","area","urband","suburban","workers","mid","onwards","coach","vehicle","coach","outings","followed","internal","combustion","engine","became","gethe","paying","customers","back","works","outings","church","chapel","excursions","popular","still","modern_day","experience","usually","motor","car","result","growth","car","ownership","also","airline","promote","day","also","staycation","booze_cruise","day_tripper","day_tripper","beatlesong","types","tourism"],"clean_bigrams":[["day","tripper"],["tourist","destination"],["visitor","attraction"],["returns","home"],["night","away"],["vacation","holiday"],["day","trip"],["popular","form"],["young","children"],["travel","easily"],["night","away"],["home","may"],["medieval","days"],["nearby","shrine"],["seasonal","fair"],["fair","later"],["england","visits"],["middle","class"],["class","became"],["became","frequent"],["providing","access"],["employers","home"],["unlikely","thathe"],["thathe","owning"],["owning","family"],["family","would"],["would","object"],["object","provided"],["residence","athe"],["athe","time"],["railway","excursion"],["excursion","often"],["often","using"],["using","day"],["day","tripper"],["tripper","tickets"],["mid","th"],["th","century"],["century","saw"],["distinctive","day"],["day","tripper"],["tripper","industry"],["also","travelled"],["many","pier"],["around","victorian"],["victorian","era"],["era","seaside"],["seaside","resort"],["general","slocum"],["slocum","excursion"],["example","cycling"],["cycling","became"],["popular","day"],["day","tripper"],["tripper","activity"],["activity","especially"],["especially","amongst"],["amongst","urban"],["urban","area"],["area","urband"],["urband","suburban"],["suburban","workers"],["onwards","coach"],["coach","vehicle"],["vehicle","coach"],["outings","followed"],["internal","combustion"],["combustion","engine"],["engine","became"],["gethe","paying"],["paying","customers"],["works","outings"],["chapel","excursions"],["modern","day"],["day","tripper"],["tripper","experience"],["motor","car"],["car","ownership"],["ownership","also"],["also","airline"],["promote","day"],["also","staycation"],["staycation","booze"],["booze","cruise"],["cruise","day"],["day","tripper"],["tripper","day"],["day","tripper"],["tripper","beatlesong"]],"all_collocations":["day tripper","tourist destination","visitor attraction","returns home","night away","vacation holiday","day trip","popular form","young children","travel easily","night away","home may","medieval days","nearby shrine","seasonal fair","fair later","england visits","middle class","class became","became frequent","providing access","employers home","unlikely thathe","thathe owning","owning family","family would","would object","object provided","residence athe","athe time","railway excursion","excursion often","often using","using day","day tripper","tripper tickets","mid th","th century","century saw","distinctive day","day tripper","tripper industry","also travelled","many pier","around victorian","victorian era","era seaside","seaside resort","general slocum","slocum excursion","example cycling","cycling became","popular day","day tripper","tripper activity","activity especially","especially amongst","amongst urban","urban area","area urband","urband suburban","suburban workers","onwards coach","coach vehicle","vehicle coach","outings followed","internal combustion","combustion engine","engine became","gethe paying","paying customers","works outings","chapel excursions","modern day","day tripper","tripper experience","motor car","car ownership","ownership also","also airline","promote day","also staycation","staycation booze","booze cruise","cruise day","day tripper","tripper day","day tripper","tripper beatlesong"],"new_description":"day tripper person visits tourist_destination visitor attraction home returns home day excursion involve night away home experienced vacation holiday day trip popular form recreation leisure families care young children people travel easily pets logistics cost night away home may history medieval days destination days would religious nearby shrine commercial example seasonal fair later england visits home regarded middle_class became frequent tradition reward butler housekeeper tip providing access employers home meant show unlikely thathe owning family would object provided residence athe_time arrival railway excursion often using day_tripper tickets mid_th century saw distinctive day_tripper industry also travelled thousands steamship many pier around victorian_era seaside_resort general slocum excursion example cycling became_popular day_tripper activity especially amongst urban area urband suburban workers mid onwards coach vehicle coach outings followed internal combustion engine became gethe paying customers back works outings church chapel excursions popular still modern_day tripper experience usually motor car result growth car ownership also airline promote day also staycation booze_cruise day_tripper day_tripper beatlesong types tourism"},{"title":"Delicatessen","description":"file rome italian delijpg righthumb upright alt array of meats cheeses and bottles an array of meats and cheeses at an italian delicatessen in rome a delicatessen or delis a retail establishmenthat sells a selection of unusual or foreign prepared foods delicatessens originated in germany during the s and spread to the united states in the mid s european immigration to the united states immigrants to the united statespecially ashkenazi jews popularized the delicatessen in culture of the united states american culture beginning in the late s etymology file foie gras with sauternesjpg thumb upright alt jar of p t and bottle of white wine french delicaciesold in delicatessens foie gras and sauternes wine sauternes delicatessen is a german languagerman loanword which first appeared in english in and is the plural of delikatesse in german it was originally a french language french loanword licatesse meaning delicious things to eat its root word is the latin language latin adjective delicatus meaningiving pleasure delightful pleasing the first americanized short version of this wordeli came into existence the german food company dallmayr is credited with being the first delicatessen created in it became the firstore to import bananas mangoes and plums to the german population from faraway placesuch as the canary islands and china over years later it remains the largest business of its kind in europe the first delicatessens to appear in the united states were inew york city in the mid s withe first known use of this word occurring in these catered to the german immigrant population living there as the german jewish population increased inew york city during the mid to late s kashrut kosher delicatessens began topen the first was founded in the united states by the late th to early st centuriesupermarkets local economy stores and fast food outlets began using the word often abbreviated as deli to describe sections of their stores the decline of the deli as an independent retail establishment was most noted inew york city from a high in the s of about jews jewish delicatessens only still existed in by country and region australia file fivedock continentaldelijpg thumb alt deli window displaying breads and other foods an italian style delicatessen in five dock new south wales five dock sydney in most of australia the term delicatessen retains its european meaning large supermarket chains often have a deli department and independent delicatessens existhroughouthe country both types of deli offer a variety of cured meatsausages pickled vegetables dips breads and olives deli also denotes a small convenience store or milk bar in western australia western and south australiand some businesses use deli as part of their business name traditional delicatessens also exist in these states with continental delicatessen sometimes used to indicate theuropean version canada in canada both meanings of delicatessen are used immigrants from europe often use the term in a manner consistent with its original german meaning but as in the united states delis can be a combined grocery store and restaurant europe file harrods jpg righthumb upright alt large ornate high ceilingedelicatessen the fish counter at harrods in london file la pinedajpg thumb various delicatessen foods in europe delicatessen means high quality expensive foods and stores in german speaking countries a common synonym is feinkost fine food and shops which sell it are called feinkostl den delicacy stores department stores often have a delikatessenabteilung delicacy department european delicatessens include fauchon in paris dallmayr in municharrods and fortnumason in london and peck in milan although ustyle delicatessens are also found in europe they appeal to the luxury market in russia shops and supermarket sections approximating ustyle delis are called kulinariyand offer salads and main course s delicate meats and cheeses cold cut and sliced hot are sold in a separate section and submarine sandwiches build torder made torder are limited to fast food franchisesuch asubway restaurant subway theliseevsky food store in central moscowith its fin de si cle decor isimilar to a european delicatessen from the tsarist era it was preserved by the soviets as an outlet for difficultobtain russian delicacies delicatessens may also provide foods from other countries and cultures which is not readily available in local food stores in italy the deli can be called gastronomia negozio di specialit gastronomiche bottegalimentare and morecently salumeria in france it is nowadays known as a traiteur culinary profession traiteur or picerie fine united states file a delin the united statesjpg thumb center a typical delin the united states in the united states a delicatessen or delis often a combined grocery store and restaurant delis offer a broader fresher menu than list ofast food restaurants fast food chains rarely employing fryers except for chicken and routinely preparing sandwiches torder they may also serve hot foods from a steam table similar to a cafeteriamerican delisell cold cut s by weight and prepare party trays although delicatessens vary in size they are typically smaller than grocery store s in addition to made torder sandwiches many us delicatessens offer made torder green salad s equally common is a selection of prepared pasta salad pasta potato salad potato chicken salad chicken tuna salad tuna shrimp or other salads displayed under the counter and sold by weight precooked chicken usually roasted or fried chicken fried shrimp cheese or eggplant dishes fried or parmigiana style are alsoldelis may beither strictly take out a sit down restaurant or both delicatessens offer a variety of beveragesuch as pre packaged soft drinks coffee teand milk potato chip s and similar products newspapers and small itemsuch as candy and mints are also usually available menus vary according to regional ethnic diversity although urban delis rely on ethnic meatsuch as pastrami corned beef and salami supermarket delis rely on meatsimilar to their packaged meats primarily ham turkey and american bologna sausage bologna delicatessens have a number of cultural traditions in the united states many are jewish american jewish italian american italiand greek american greek both kashrut kosher and kosher style the american equivalent of a european delicatessen may be known as a gourmet food store north american delicatessen distribution is primarily in older walkable citiesee also appetizing store charcuterie list of delicatessens osteria pastrami on rye a classic sandwich made famous in the jewish kosher delicatessens of new york city salumeria salumi save the deli a book abouthe decline of the jewish delicatessen specialty foods traiteur culinary profession traiteur trattoria references furthereading merwin ted pastrami on rye an overstuffed history of the jewish deli new york university press xviii pp externalinks deli paradise travel guide travel channelos angeles delis thrillist media group thrillist new york delis time out magazine time out category delicatessens category food retailing category german cuisine category jewish cuisine category types of restaurants","main_words":["file","rome","italian","righthumb","upright","alt","array","meats","cheeses","bottles","array","meats","cheeses","italian","delicatessen","rome","delicatessen","delis","retail","establishmenthat","sells","selection","unusual","foreign","prepared","foods","delicatessens","originated","germany","spread","united_states","mid","european","immigration","united_states","immigrants","united_statespecially","jews","popularized","delicatessen","culture","united_states","american_culture","beginning","late","etymology","file","foie","gras","thumb","upright","alt","jar","p","bottle","white","wine","french","delicatessens","foie","gras","wine","delicatessen","german_languagerman","loanword","first_appeared","english","plural","german","originally","french_language","french","loanword","meaning","delicious","things","eat","root","word","latin","language","latin","pleasure","first","short","version","came","existence","german","food","company","credited","first","delicatessen","created","became","import","bananas","german","population","placesuch","canary","islands","china","years_later","remains","largest","business","kind","europe","first","delicatessens","appear","united_states","inew_york_city","mid","withe_first","known","use","word","occurring","catered","german","immigrant","population","living","german","jewish","population","increased","inew_york_city","mid","late","kashrut","kosher","delicatessens","began","topen","first","founded","united_states","late_th","early","st","local_economy","stores","fast_food","outlets","began","using","word","often","abbreviated","deli","describe","sections","stores","decline","deli","independent","retail","establishment","noted","inew_york_city","high","jews","jewish","delicatessens","still","existed","country","region","australia","file","thumb_alt","deli","window","displaying","breads","foods","italian","style","delicatessen","five","dock","new_south_wales","five","dock","sydney_australia","term","delicatessen","retains","european","meaning","large","supermarket","chains","often","deli","department","independent","delicatessens","country","types","deli","offer","variety","cured","pickled","vegetables","breads","olives","deli","also","small","convenience","store","milk_bar","western_australia","western","businesses","use","deli","part","business","name","traditional","delicatessens","also","exist","states","continental","delicatessen","sometimes","used","indicate","theuropean","version","canada","canada","meanings","delicatessen","used","immigrants","europe","often","use","term","manner","consistent","original","german","meaning","united_states","delis","combined","grocery","store","restaurant","europe","file","harrods","jpg_righthumb","upright","alt","large","ornate","high","fish","counter","harrods","london_file","la","thumb","various","delicatessen","foods","europe","delicatessen","means","high_quality","expensive","foods","stores","german","speaking","countries","common","fine","food","shops","sell","called","den","delicacy","stores","department","stores","often","delicacy","department","european","delicatessens","include","paris","london","milan","although","delicatessens","also_found","europe","appeal","luxury","market","russia","shops","supermarket","sections","delis","called","offer","salads","main","course","delicate","meats","cheeses","cold","cut","sliced","hot","sold","separate","section","submarine","sandwiches","build","torder","made","torder","limited","fast_food_restaurant","subway","food","store","central","fin","de","decor","isimilar","european","delicatessen","era","preserved","outlet","russian","delicatessens","may_also","provide","foods","countries","cultures","readily","available","local_food","stores","italy","deli","called","morecently","france","nowadays","known","traiteur","culinary","profession","traiteur","fine","united_states","file","united","thumb","center","typical","united_states","united_states","delicatessen","delis","often","combined","grocery","store","restaurant","delis","offer","broader","menu","list","fast_food","chains","rarely","employing","except","chicken","routinely","preparing","sandwiches","torder","may_also","serve","hot","foods","steam","table","similar","cold","cut","weight","prepare","party","trays","although","delicatessens","vary","size","typically","smaller","grocery","store","addition","made","torder","sandwiches","many","us","delicatessens","offer","made","torder","green","salad","equally","common","selection","prepared","pasta","salad","pasta","potato","salad","potato","chicken","salad","chicken","salad","shrimp","salads","displayed","counter","sold","weight","chicken","usually","roasted","fried_chicken","fried","shrimp","cheese","eggplant","dishes","fried","style","may","beither","strictly","take","sit","restaurant","delicatessens","offer","variety","beveragesuch","pre","packaged","soft_drinks","coffee","teand","milk","potato","chip","similar","products","newspapers","small","itemsuch","candy","also","usually","available","menus","vary","according","regional","ethnic","diversity","although","urban","delis","rely","ethnic","pastrami","beef","supermarket","delis","rely","packaged","meats","primarily","ham","turkey","american","bologna","sausage","bologna","delicatessens","number","cultural","traditions","united_states","many","jewish","american","jewish","italian","american","greek","american","greek","kashrut","kosher","kosher","style","american","equivalent","european","delicatessen","may","known","gourmet","food","store","north_american","delicatessen","distribution","primarily","older","also","store","charcuterie","list","delicatessens","osteria","pastrami","rye","classic","sandwich","made","famous","jewish","kosher","delicatessens","new_york","city","save","deli","book","abouthe","decline","jewish","delicatessen","specialty","foods","traiteur","culinary","profession","traiteur","trattoria","references_furthereading","ted","pastrami","rye","history","jewish","deli","new_york","externalinks","deli","paradise","travel_guide","travel","angeles","delis","thrillist","media_group","thrillist","new_york","delis","time","magazine_time","category","delicatessens","category_food","retailing","category_german","cuisine_category","jewish","cuisine_category_types","restaurants"],"clean_bigrams":[["file","rome"],["rome","italian"],["righthumb","upright"],["upright","alt"],["alt","array"],["meats","cheeses"],["meats","cheeses"],["italian","delicatessen"],["retail","establishmenthat"],["establishmenthat","sells"],["foreign","prepared"],["prepared","foods"],["foods","delicatessens"],["delicatessens","originated"],["united","states"],["european","immigration"],["united","states"],["states","immigrants"],["united","statespecially"],["jews","popularized"],["united","states"],["states","american"],["american","culture"],["culture","beginning"],["etymology","file"],["file","foie"],["foie","gras"],["thumb","upright"],["upright","alt"],["alt","jar"],["white","wine"],["wine","french"],["delicatessens","foie"],["foie","gras"],["german","languagerman"],["languagerman","loanword"],["first","appeared"],["french","language"],["language","french"],["french","loanword"],["meaning","delicious"],["delicious","things"],["root","word"],["latin","language"],["language","latin"],["short","version"],["german","food"],["food","company"],["first","delicatessen"],["delicatessen","created"],["import","bananas"],["german","population"],["canary","islands"],["years","later"],["largest","business"],["first","delicatessens"],["united","states"],["inew","york"],["york","city"],["withe","first"],["first","known"],["known","use"],["word","occurring"],["german","immigrant"],["immigrant","population"],["population","living"],["german","jewish"],["jewish","population"],["population","increased"],["increased","inew"],["inew","york"],["york","city"],["kashrut","kosher"],["kosher","delicatessens"],["delicatessens","began"],["began","topen"],["united","states"],["late","th"],["early","st"],["local","economy"],["economy","stores"],["fast","food"],["food","outlets"],["outlets","began"],["began","using"],["word","often"],["often","abbreviated"],["describe","sections"],["independent","retail"],["retail","establishment"],["noted","inew"],["inew","york"],["york","city"],["jews","jewish"],["jewish","delicatessens"],["still","existed"],["region","australia"],["australia","file"],["thumb","alt"],["alt","deli"],["deli","window"],["window","displaying"],["displaying","breads"],["italian","style"],["style","delicatessen"],["five","dock"],["dock","new"],["new","south"],["south","wales"],["wales","five"],["five","dock"],["dock","sydney"],["term","delicatessen"],["delicatessen","retains"],["european","meaning"],["meaning","large"],["large","supermarket"],["supermarket","chains"],["chains","often"],["deli","department"],["independent","delicatessens"],["deli","offer"],["pickled","vegetables"],["olives","deli"],["deli","also"],["small","convenience"],["convenience","store"],["milk","bar"],["western","australia"],["australia","western"],["south","australiand"],["businesses","use"],["use","deli"],["business","name"],["name","traditional"],["traditional","delicatessens"],["delicatessens","also"],["also","exist"],["continental","delicatessen"],["delicatessen","sometimes"],["sometimes","used"],["indicate","theuropean"],["theuropean","version"],["version","canada"],["used","immigrants"],["europe","often"],["often","use"],["manner","consistent"],["original","german"],["german","meaning"],["united","states"],["states","delis"],["combined","grocery"],["grocery","store"],["restaurant","europe"],["europe","file"],["file","harrods"],["harrods","jpg"],["jpg","righthumb"],["righthumb","upright"],["upright","alt"],["alt","large"],["large","ornate"],["ornate","high"],["fish","counter"],["london","file"],["file","la"],["thumb","various"],["various","delicatessen"],["delicatessen","foods"],["europe","delicatessen"],["delicatessen","means"],["means","high"],["high","quality"],["quality","expensive"],["expensive","foods"],["german","speaking"],["speaking","countries"],["fine","food"],["den","delicacy"],["delicacy","stores"],["stores","department"],["department","stores"],["stores","often"],["delicacy","department"],["department","european"],["european","delicatessens"],["delicatessens","include"],["milan","although"],["although","delicatessens"],["delicatessens","also"],["also","found"],["luxury","market"],["russia","shops"],["supermarket","sections"],["offer","salads"],["main","course"],["delicate","meats"],["meats","cheeses"],["cheeses","cold"],["cold","cut"],["sliced","hot"],["separate","section"],["submarine","sandwiches"],["sandwiches","build"],["build","torder"],["torder","made"],["made","torder"],["fast","food"],["restaurant","subway"],["food","store"],["fin","de"],["decor","isimilar"],["european","delicatessen"],["delicatessens","may"],["may","also"],["also","provide"],["provide","foods"],["readily","available"],["local","food"],["food","stores"],["called","gastronomia"],["nowadays","known"],["traiteur","culinary"],["culinary","profession"],["profession","traiteur"],["fine","united"],["united","states"],["states","file"],["thumb","center"],["united","states"],["united","states"],["delis","often"],["combined","grocery"],["grocery","store"],["restaurant","delis"],["delis","offer"],["list","ofast"],["ofast","food"],["food","restaurants"],["restaurants","fast"],["fast","food"],["food","chains"],["chains","rarely"],["rarely","employing"],["routinely","preparing"],["preparing","sandwiches"],["sandwiches","torder"],["may","also"],["also","serve"],["serve","hot"],["hot","foods"],["steam","table"],["table","similar"],["cold","cut"],["prepare","party"],["party","trays"],["trays","although"],["although","delicatessens"],["delicatessens","vary"],["typically","smaller"],["grocery","store"],["made","torder"],["torder","sandwiches"],["sandwiches","many"],["many","us"],["us","delicatessens"],["delicatessens","offer"],["offer","made"],["made","torder"],["torder","green"],["green","salad"],["equally","common"],["prepared","pasta"],["pasta","salad"],["salad","pasta"],["pasta","potato"],["potato","salad"],["salad","potato"],["potato","chicken"],["chicken","salad"],["salad","chicken"],["chicken","salad"],["salads","displayed"],["chicken","usually"],["usually","roasted"],["fried","chicken"],["chicken","fried"],["fried","shrimp"],["shrimp","cheese"],["eggplant","dishes"],["dishes","fried"],["may","beither"],["beither","strictly"],["strictly","take"],["delicatessens","offer"],["pre","packaged"],["packaged","soft"],["soft","drinks"],["drinks","coffee"],["coffee","teand"],["teand","milk"],["milk","potato"],["potato","chip"],["similar","products"],["products","newspapers"],["small","itemsuch"],["also","usually"],["usually","available"],["available","menus"],["menus","vary"],["vary","according"],["regional","ethnic"],["ethnic","diversity"],["diversity","although"],["although","urban"],["urban","delis"],["delis","rely"],["supermarket","delis"],["delis","rely"],["packaged","meats"],["meats","primarily"],["primarily","ham"],["ham","turkey"],["american","bologna"],["bologna","sausage"],["sausage","bologna"],["bologna","delicatessens"],["cultural","traditions"],["united","states"],["states","many"],["jewish","american"],["american","jewish"],["jewish","italian"],["italian","american"],["american","greek"],["greek","american"],["american","greek"],["kashrut","kosher"],["kosher","style"],["american","equivalent"],["european","delicatessen"],["delicatessen","may"],["gourmet","food"],["food","store"],["store","north"],["north","american"],["american","delicatessen"],["delicatessen","distribution"],["store","charcuterie"],["charcuterie","list"],["delicatessens","osteria"],["osteria","pastrami"],["classic","sandwich"],["sandwich","made"],["made","famous"],["jewish","kosher"],["kosher","delicatessens"],["new","york"],["york","city"],["book","abouthe"],["abouthe","decline"],["jewish","delicatessen"],["delicatessen","specialty"],["specialty","foods"],["foods","traiteur"],["traiteur","culinary"],["culinary","profession"],["profession","traiteur"],["traiteur","trattoria"],["trattoria","references"],["references","furthereading"],["ted","pastrami"],["jewish","deli"],["deli","new"],["new","york"],["york","university"],["university","press"],["pp","externalinks"],["externalinks","deli"],["deli","paradise"],["paradise","travel"],["travel","guide"],["guide","travel"],["angeles","delis"],["delis","thrillist"],["thrillist","media"],["media","group"],["group","thrillist"],["thrillist","new"],["new","york"],["york","delis"],["delis","time"],["magazine","time"],["category","delicatessens"],["delicatessens","category"],["category","food"],["food","retailing"],["retailing","category"],["category","german"],["german","cuisine"],["cuisine","category"],["category","jewish"],["jewish","cuisine"],["cuisine","category"],["category","types"]],"all_collocations":["file rome","rome italian","righthumb upright","upright alt","alt array","meats cheeses","meats cheeses","italian delicatessen","retail establishmenthat","establishmenthat sells","foreign prepared","prepared foods","foods delicatessens","delicatessens originated","united states","european immigration","united states","states immigrants","united statespecially","jews popularized","united states","states american","american culture","culture beginning","etymology file","file foie","foie gras","upright alt","alt jar","white wine","wine french","delicatessens foie","foie gras","german languagerman","languagerman loanword","first appeared","french language","language french","french loanword","meaning delicious","delicious things","root word","latin language","language latin","short version","german food","food company","first delicatessen","delicatessen created","import bananas","german population","canary islands","years later","largest business","first delicatessens","united states","inew york","york city","withe first","first known","known use","word occurring","german immigrant","immigrant population","population living","german jewish","jewish population","population increased","increased inew","inew york","york city","kashrut kosher","kosher delicatessens","delicatessens began","began topen","united states","late th","early st","local economy","economy stores","fast food","food outlets","outlets began","began using","word often","often abbreviated","describe sections","independent retail","retail establishment","noted inew","inew york","york city","jews jewish","jewish delicatessens","still existed","region australia","australia file","thumb alt","alt deli","deli window","window displaying","displaying breads","italian style","style delicatessen","five dock","dock new","new south","south wales","wales five","five dock","dock sydney","term delicatessen","delicatessen retains","european meaning","meaning large","large supermarket","supermarket chains","chains often","deli department","independent delicatessens","deli offer","pickled vegetables","olives deli","deli also","small convenience","convenience store","milk bar","western australia","australia western","south australiand","businesses use","use deli","business name","name traditional","traditional delicatessens","delicatessens also","also exist","continental delicatessen","delicatessen sometimes","sometimes used","indicate theuropean","theuropean version","version canada","used immigrants","europe often","often use","manner consistent","original german","german meaning","united states","states delis","combined grocery","grocery store","restaurant europe","europe file","file harrods","harrods jpg","jpg righthumb","righthumb upright","upright alt","alt large","large ornate","ornate high","fish counter","london file","file la","thumb various","various delicatessen","delicatessen foods","europe delicatessen","delicatessen means","means high","high quality","quality expensive","expensive foods","german speaking","speaking countries","fine food","den delicacy","delicacy stores","stores department","department stores","stores often","delicacy department","department european","european delicatessens","delicatessens include","milan although","although delicatessens","delicatessens also","also found","luxury market","russia shops","supermarket sections","offer salads","main course","delicate meats","meats cheeses","cheeses cold","cold cut","sliced hot","separate section","submarine sandwiches","sandwiches build","build torder","torder made","made torder","fast food","restaurant subway","food store","fin de","decor isimilar","european delicatessen","delicatessens may","may also","also provide","provide foods","readily available","local food","food stores","called gastronomia","nowadays known","traiteur culinary","culinary profession","profession traiteur","fine united","united states","states file","thumb center","united states","united states","delis often","combined grocery","grocery store","restaurant delis","delis offer","list ofast","ofast food","food restaurants","restaurants fast","fast food","food chains","chains rarely","rarely employing","routinely preparing","preparing sandwiches","sandwiches torder","may also","also serve","serve hot","hot foods","steam table","table similar","cold cut","prepare party","party trays","trays although","although delicatessens","delicatessens vary","typically smaller","grocery store","made torder","torder sandwiches","sandwiches many","many us","us delicatessens","delicatessens offer","offer made","made torder","torder green","green salad","equally common","prepared pasta","pasta salad","salad pasta","pasta potato","potato salad","salad potato","potato chicken","chicken salad","salad chicken","chicken salad","salads displayed","chicken usually","usually roasted","fried chicken","chicken fried","fried shrimp","shrimp cheese","eggplant dishes","dishes fried","may beither","beither strictly","strictly take","delicatessens offer","pre packaged","packaged soft","soft drinks","drinks coffee","coffee teand","teand milk","milk potato","potato chip","similar products","products newspapers","small itemsuch","also usually","usually available","available menus","menus vary","vary according","regional ethnic","ethnic diversity","diversity although","although urban","urban delis","delis rely","supermarket delis","delis rely","packaged meats","meats primarily","primarily ham","ham turkey","american bologna","bologna sausage","sausage bologna","bologna delicatessens","cultural traditions","united states","states many","jewish american","american jewish","jewish italian","italian american","american greek","greek american","american greek","kashrut kosher","kosher style","american equivalent","european delicatessen","delicatessen may","gourmet food","food store","store north","north american","american delicatessen","delicatessen distribution","store charcuterie","charcuterie list","delicatessens osteria","osteria pastrami","classic sandwich","sandwich made","made famous","jewish kosher","kosher delicatessens","new york","york city","book abouthe","abouthe decline","jewish delicatessen","delicatessen specialty","specialty foods","foods traiteur","traiteur culinary","culinary profession","profession traiteur","traiteur trattoria","trattoria references","references furthereading","ted pastrami","jewish deli","deli new","new york","york university","university press","pp externalinks","externalinks deli","deli paradise","paradise travel","travel guide","guide travel","angeles delis","delis thrillist","thrillist media","media group","group thrillist","thrillist new","new york","york delis","delis time","magazine time","category delicatessens","delicatessens category","category food","food retailing","retailing category","category german","german cuisine","cuisine category","category jewish","jewish cuisine","cuisine category","category types"],"new_description":"file rome italian righthumb upright alt array meats cheeses bottles array meats cheeses italian delicatessen rome delicatessen delis retail establishmenthat sells selection unusual foreign prepared foods delicatessens originated germany spread united_states mid european immigration united_states immigrants united_statespecially jews popularized delicatessen culture united_states american_culture beginning late etymology file foie gras thumb upright alt jar p bottle white wine french delicatessens foie gras wine delicatessen german_languagerman loanword first_appeared english plural german originally french_language french loanword meaning delicious things eat root word latin language latin pleasure first short version came existence german food company credited first delicatessen created became import bananas german population placesuch canary islands china years_later remains largest business kind europe first delicatessens appear united_states inew_york_city mid withe_first known use word occurring catered german immigrant population living german jewish population increased inew_york_city mid late kashrut kosher delicatessens began topen first founded united_states late_th early st local_economy stores fast_food outlets began using word often abbreviated deli describe sections stores decline deli independent retail establishment noted inew_york_city high jews jewish delicatessens still existed country region australia file thumb_alt deli window displaying breads foods italian style delicatessen five dock new_south_wales five dock sydney_australia term delicatessen retains european meaning large supermarket chains often deli department independent delicatessens country types deli offer variety cured pickled vegetables breads olives deli also small convenience store milk_bar western_australia western south_australiand businesses use deli part business name traditional delicatessens also exist states continental delicatessen sometimes used indicate theuropean version canada canada meanings delicatessen used immigrants europe often use term manner consistent original german meaning united_states delis combined grocery store restaurant europe file harrods jpg_righthumb upright alt large ornate high fish counter harrods london_file la thumb various delicatessen foods europe delicatessen means high_quality expensive foods stores german speaking countries common fine food shops sell called den delicacy stores department stores often delicacy department european delicatessens include paris london milan although delicatessens also_found europe appeal luxury market russia shops supermarket sections delis called offer salads main course delicate meats cheeses cold cut sliced hot sold separate section submarine sandwiches build torder made torder limited fast_food_restaurant subway food store central fin de decor isimilar european delicatessen era preserved outlet russian delicatessens may_also provide foods countries cultures readily available local_food stores italy deli called gastronomia morecently france nowadays known traiteur culinary profession traiteur fine united_states file united thumb center typical united_states united_states delicatessen delis often combined grocery store restaurant delis offer broader menu list ofast_food_restaurants fast_food chains rarely employing except chicken routinely preparing sandwiches torder may_also serve hot foods steam table similar cold cut weight prepare party trays although delicatessens vary size typically smaller grocery store addition made torder sandwiches many us delicatessens offer made torder green salad equally common selection prepared pasta salad pasta potato salad potato chicken salad chicken salad shrimp salads displayed counter sold weight chicken usually roasted fried_chicken fried shrimp cheese eggplant dishes fried style may beither strictly take sit restaurant delicatessens offer variety beveragesuch pre packaged soft_drinks coffee teand milk potato chip similar products newspapers small itemsuch candy also usually available menus vary according regional ethnic diversity although urban delis rely ethnic pastrami beef supermarket delis rely packaged meats primarily ham turkey american bologna sausage bologna delicatessens number cultural traditions united_states many jewish american jewish italian american greek american greek kashrut kosher kosher style american equivalent european delicatessen may known gourmet food store north_american delicatessen distribution primarily older also store charcuterie list delicatessens osteria pastrami rye classic sandwich made famous jewish kosher delicatessens new_york city save deli book abouthe decline jewish delicatessen specialty foods traiteur culinary profession traiteur trattoria references_furthereading ted pastrami rye history jewish deli new_york university_press_pp externalinks deli paradise travel_guide travel angeles delis thrillist media_group thrillist new_york delis time magazine_time category delicatessens category_food retailing category_german cuisine_category jewish cuisine_category_types restaurants"},{"title":"Dental tourism","description":"dental tourism also calledental vacations or commonly known as dental holidays in europe is a subset of the sector known as medical tourism it involves individualseeking dentistry dental care outside of their local healthcare systems and may be accompanied by a vacation dental tourism is growing worldwide as the world becomes ever more interdependent and competitive technique material and technological advancespread rapidly enabling providers in developing countries to providental care at significant cost savings when compared witheir peers in the developed world reasons for travel while dental tourists may travel for a variety of reasons their choices are usually driven by price considerations cross border care in the south slovenia macedoniaustriand italy who report on patient mobility retrieved october catherine mcnerney andesmond gillmor experiences and perceptions of rural women in the republic of ireland studies in the borderegion retrieved october wide variations in theconomics of countries with shared borders have been the historical mainstay of the sector examples include travel from austria to hungary slovakia slovenia bulgariand romania from the us and canada to mexicosta rica ecuador and peru from the republic of ireland to northern ireland hungary poland bulgaria turkey and ukraine and from australia to thailand other countries of south east asia while medical tourism is often generalized to travel from high income countries to low cost developing economies other factors can influence a decision to travel including differences between the funding of public healthcare or general access to healthcare mobility of labour for countries within theuropean union dental qualifications arequired to reach a minimum approved by each country s government ec dental directives and eec retrieved october thus a dentist qualified in one country can apply to any other eu country to practice in that country allowing for greater mobility of labour for dentists directives typically apply not only to theu buto the wider designation of theuropean economic area eea eu manual of dental practice includes comparative study of member countries dental systems rd edition currently in preparation retrieved october the association for dental education in europe adee hastandardization efforts to harmonizeuropean standards proposals from the adee s quality assurance and benchmarking taskforce cover the introduction of accreditation procedures for eu dentistry universities as well as programmes to facilitate dental students completing part of their education in foreign dentistry schools adee taskfore document on quality assurance and benchmarking retrieved october standardization of qualification in a region reciprocally removes one of the perceptual barriers for the development of patient mobility within that region pricing and quality dental tourists travel chiefly to take advantage of lower prices reasons for lower prices are many dentists outside the developed world are able to take advantage of much lower fixed costs lower labor costs less government intervention lower education fees and expenses and lower insurance costs much of the bureaucratic red tape that engulfs businesses in the developed world is eliminated abroad andentists are free to focus on their tradentistry the flip side of this less legal recourse for patients when somethingoes wrong buthe result is that proceduresuch as dental implants and porcelain veneers which are simply financially out of reach for many people in the developed world are made affordable overseas much of the debate about dental tourism and medical tourism in general centers on the question of whether or not price differentials imply quality differentials another concern is whether or not large scale dental procedures can be safely completed abroad in a relatively short holiday sized time period another issue affecting this debate is the lack of an independent inspections committee for dental similar to the joint commission international for medical an instructive case study analysis of patient outflows from the united kingdom and republic of ireland two large sources of dental tourists both countries were the subject of a report from the irish competition authority to determine whether consumers wereceiving value for money from their dentists irish competition authority report retrieved october both countries professions were criticised for a lack of pricing transparency a response to this that dentistry is unsuitable for transparent pricing each treatment will vary an accurate quote is impossible until an examination has occurred thus price lists are no guarantee ofinal costs though they may encourage a level of competition between dentists this will only happen in a competitivenvironment where supply andemand are closely matched the competition authority report in the irish republicriticised the profession its approach to increasing numbers of dentists and the training of dental specialties orthodontics was a particularea of concern with training being irregular and limited in a number of placesupply is further limited as new dental specialties develop andentists reacto consumer demand for new dental products further diluting the pool of dentists available for any given procedure aside from the above issues it is possible to compare the prices of treatment in different countries withe international nature of some products and brands it is possible to make a valid comparison for instance the same porcelain veneer made in a lab in sweden can be as much as aud in australia but only aud india the price difference here is not explainable by reference to the material cost more fun than root canals it s the dental vacationew york times clearly undergoing extensive dental procedures abroad even when allowing for travel expenses can be significantly cheaper than the same procedures at home pricing and qualifications of the dentists may be researched through websites or by contacting the dentists another important consideration is location if one travels far for a dental procedure and somethingoes wrong it is a long way to return to fix it as well many americans choose to go somewherelatively accessible from the usuch asan salvador tijuana los algodones tecate agua prieta or lima due to the ongoing narco violence in townsuch as tijuanand ciudad juarez clinics in safer towns milesouth of the border cabo san lucasan jose del cabo puerto vallarta cancun playa del carmen and cozumel mazatlan etc have recently started offering large and small dental treatmentsee info below more than percent of mexico s us patients travel from the border states of california texas or arizona patients beyond bordersince procedures often require multiple steps or subsequent checkups the patient may have to return to the same doctor for those reasons typically a patientakes two trips to have implants the firstrip is to sethe base and the provisional crown the second trip is typically months later after the implant hastabilized in the bone day implants are not recommended for dental tourists due to the higher failure rate of the system when combined with a holiday as the name implies dental tourism can be an opportunity to receive low cost quality dental care dental tourism is expected to continue growing as consumers continue to seek out lower cost optionsee also tooth category health economics category types of tourism category medical tourism category tourism in eastern europe","main_words":["dental","tourism_also","vacations","commonly_known","dental","holidays","europe","subset","sector","known","medical_tourism","involves","dentistry","dental","care","outside","local","healthcare","systems","may","accompanied","vacation","dental","tourism","growing","worldwide","world","becomes","ever","competitive","technique","material","technological","rapidly","enabling","providers","developing_countries","care","significant","cost","savings","compared","witheir","peers","developed","world","reasons","travel","dental","tourists_may","travel","variety","reasons","choices","usually","driven","price","considerations","cross_border","care","south","slovenia","italy","report","patient","mobility","retrieved_october","catherine","experiences","perceptions","rural","women","republic","ireland","studies","retrieved_october","wide","variations","theconomics","countries","shared","borders","historical","sector","examples_include","travel","austria","hungary","slovakia","slovenia","romania","us","canada","rica","ecuador","peru","republic","ireland","northern_ireland","hungary","poland","bulgaria","turkey","ukraine","australia","thailand","countries","south_east_asia","medical_tourism","often","travel","high","income","countries","low_cost","developing","economies","factors","influence","decision","travel","including","differences","funding","general","access","healthcare","mobility","labour","countries","within","theuropean_union","dental","qualifications","arequired","reach","minimum","approved","country","government","dental","directives","retrieved_october","thus","qualified","one","country","apply","country","practice","country","allowing","greater","mobility","labour","dentists","directives","typically","apply","buto","wider","designation","theuropean","economic","area","manual","dental","practice","includes","comparative","study","member_countries","dental","systems","edition","currently","preparation","retrieved_october","association","dental","education","europe","efforts","standards","proposals","quality","assurance","cover","introduction","accreditation","procedures","dentistry","universities","well","programmes","facilitate","dental","students","completing","part","education","foreign","dentistry","schools","document","quality","assurance","retrieved_october","standardization","qualification","region","one","barriers","development","patient","mobility","within","region","pricing","quality","dental","tourists","travel","chiefly","take_advantage","lower","prices","reasons","lower","prices","many","dentists","outside","developed","world","able","take_advantage","much","lower","fixed","costs","lower","labor","costs","less","government","intervention","lower","education","fees","expenses","lower","insurance","costs","much","red","businesses","developed","world","eliminated","abroad","free","focus","side","less","legal","patients","wrong","buthe","result","dental","porcelain","simply","financially","reach","many_people","developed","world","made","affordable","overseas","much","debate","dental","tourism","medical_tourism","general","centers","question","whether","price","imply","quality","another","concern","whether","large_scale","dental","procedures","safely","completed","abroad","relatively","short","holiday","sized","time_period","another","issue","affecting","debate","lack","independent","inspections","committee","dental","similar","joint_commission_international","medical","case","study","analysis","patient","united_kingdom","republic","ireland","two","large","sources","dental","tourists","countries","subject","report","irish","competition","authority","determine","whether","consumers","value","money","dentists","irish","competition","authority","report","retrieved_october","countries","professions","criticised","lack","pricing","response","dentistry","unsuitable","transparent","pricing","treatment","vary","accurate","quote","impossible","examination","occurred","thus","price","lists","guarantee","costs","though","may","encourage","level","competition","dentists","happen","supply","andemand","closely","competition","authority","report","irish","profession","approach","dentists","training","dental","specialties","particularea","concern","training","limited","number","limited","new","dental","specialties","develop","consumer","demand","new","dental","products","pool","dentists","available","given","procedure","aside","issues","possible","compare","prices","treatment","different_countries","withe","international","nature","products","brands","possible","make","valid","comparison","instance","porcelain","made","lab","sweden","much","australia","india","price","difference","reference","material","cost","fun","root","canals","dental","york_times","clearly","undergoing","extensive","dental","procedures","abroad","even","allowing","travel","expenses","significantly","cheaper","procedures","home","pricing","qualifications","dentists","may","researched","websites","dentists","another","important","consideration","location","one","travels","far","dental","procedure","wrong","long_way","return","fix","well","many","americans","choose","go","accessible","asan","salvador","los","lima","due","ongoing","violence","ciudad","clinics","safer","towns","border","cabo","san_jose","del","cabo","puerto","vallarta","cancun","playa","del","carmen","etc","recently","started","offering","large","small","dental","info","percent","mexico","us","patients","travel","border","states","california","texas","arizona","procedures","often","require","multiple","steps","subsequent","patient","may","return","doctor","reasons","typically","two","trips","base","crown","second","trip","typically","months_later","bone","day","recommended","dental","tourists","due","higher","failure","rate","system","combined","holiday","name","implies","dental","tourism","opportunity","receive","low_cost","quality","dental","care","dental","tourism","expected","continue","growing","consumers","continue","seek","lower_cost","also","category","health","economics","category_types","tourism_category_tourism","eastern_europe"],"clean_bigrams":[["dental","tourism"],["tourism","also"],["commonly","known"],["dental","holidays"],["sector","known"],["medical","tourism"],["dentistry","dental"],["dental","care"],["care","outside"],["local","healthcare"],["healthcare","systems"],["vacation","dental"],["dental","tourism"],["growing","worldwide"],["world","becomes"],["becomes","ever"],["competitive","technique"],["technique","material"],["rapidly","enabling"],["enabling","providers"],["developing","countries"],["significant","cost"],["cost","savings"],["compared","witheir"],["witheir","peers"],["developed","world"],["world","reasons"],["dental","tourists"],["tourists","may"],["may","travel"],["usually","driven"],["price","considerations"],["considerations","cross"],["cross","border"],["border","care"],["south","slovenia"],["patient","mobility"],["mobility","retrieved"],["retrieved","october"],["october","catherine"],["rural","women"],["ireland","studies"],["retrieved","october"],["october","wide"],["wide","variations"],["shared","borders"],["sector","examples"],["examples","include"],["include","travel"],["hungary","slovakia"],["slovakia","slovenia"],["rica","ecuador"],["northern","ireland"],["ireland","hungary"],["hungary","poland"],["poland","bulgaria"],["bulgaria","turkey"],["south","east"],["east","asia"],["medical","tourism"],["high","income"],["income","countries"],["low","cost"],["cost","developing"],["developing","economies"],["travel","including"],["including","differences"],["public","healthcare"],["general","access"],["healthcare","mobility"],["countries","within"],["within","theuropean"],["theuropean","union"],["union","dental"],["dental","qualifications"],["qualifications","arequired"],["minimum","approved"],["dental","directives"],["retrieved","october"],["october","thus"],["one","country"],["country","allowing"],["greater","mobility"],["dentists","directives"],["directives","typically"],["typically","apply"],["wider","designation"],["theuropean","economic"],["economic","area"],["dental","practice"],["practice","includes"],["includes","comparative"],["comparative","study"],["member","countries"],["countries","dental"],["dental","systems"],["edition","currently"],["preparation","retrieved"],["retrieved","october"],["dental","education"],["standards","proposals"],["quality","assurance"],["accreditation","procedures"],["dentistry","universities"],["facilitate","dental"],["dental","students"],["students","completing"],["completing","part"],["foreign","dentistry"],["dentistry","schools"],["quality","assurance"],["retrieved","october"],["october","standardization"],["patient","mobility"],["mobility","within"],["region","pricing"],["quality","dental"],["dental","tourists"],["tourists","travel"],["travel","chiefly"],["take","advantage"],["lower","prices"],["prices","reasons"],["lower","prices"],["many","dentists"],["dentists","outside"],["developed","world"],["take","advantage"],["much","lower"],["lower","fixed"],["fixed","costs"],["costs","lower"],["lower","labor"],["labor","costs"],["costs","less"],["less","government"],["government","intervention"],["intervention","lower"],["lower","education"],["education","fees"],["lower","insurance"],["insurance","costs"],["costs","much"],["developed","world"],["eliminated","abroad"],["less","legal"],["wrong","buthe"],["buthe","result"],["simply","financially"],["many","people"],["developed","world"],["made","affordable"],["affordable","overseas"],["overseas","much"],["dental","tourism"],["medical","tourism"],["general","centers"],["imply","quality"],["another","concern"],["large","scale"],["scale","dental"],["dental","procedures"],["safely","completed"],["completed","abroad"],["relatively","short"],["short","holiday"],["holiday","sized"],["sized","time"],["time","period"],["period","another"],["another","issue"],["issue","affecting"],["independent","inspections"],["inspections","committee"],["dental","similar"],["joint","commission"],["commission","international"],["case","study"],["study","analysis"],["united","kingdom"],["ireland","two"],["two","large"],["large","sources"],["dental","tourists"],["irish","competition"],["competition","authority"],["determine","whether"],["whether","consumers"],["dentists","irish"],["irish","competition"],["competition","authority"],["authority","report"],["report","retrieved"],["retrieved","october"],["countries","professions"],["transparent","pricing"],["accurate","quote"],["occurred","thus"],["thus","price"],["price","lists"],["costs","though"],["may","encourage"],["supply","andemand"],["competition","authority"],["authority","report"],["increasing","numbers"],["dental","specialties"],["new","dental"],["dental","specialties"],["specialties","develop"],["consumer","demand"],["new","dental"],["dental","products"],["dentists","available"],["given","procedure"],["procedure","aside"],["different","countries"],["countries","withe"],["withe","international"],["international","nature"],["valid","comparison"],["price","difference"],["material","cost"],["root","canals"],["york","times"],["times","clearly"],["clearly","undergoing"],["undergoing","extensive"],["extensive","dental"],["dental","procedures"],["procedures","abroad"],["abroad","even"],["travel","expenses"],["significantly","cheaper"],["home","pricing"],["dentists","may"],["dentists","another"],["another","important"],["important","consideration"],["one","travels"],["travels","far"],["dental","procedure"],["long","way"],["well","many"],["many","americans"],["americans","choose"],["asan","salvador"],["lima","due"],["safer","towns"],["border","cabo"],["cabo","san"],["jose","del"],["del","cabo"],["cabo","puerto"],["puerto","vallarta"],["vallarta","cancun"],["cancun","playa"],["playa","del"],["del","carmen"],["recently","started"],["started","offering"],["offering","large"],["small","dental"],["us","patients"],["patients","travel"],["border","states"],["california","texas"],["arizona","patients"],["patients","beyond"],["procedures","often"],["often","require"],["require","multiple"],["multiple","steps"],["patient","may"],["reasons","typically"],["two","trips"],["second","trip"],["typically","months"],["months","later"],["bone","day"],["dental","tourists"],["tourists","due"],["higher","failure"],["failure","rate"],["name","implies"],["implies","dental"],["dental","tourism"],["receive","low"],["low","cost"],["cost","quality"],["quality","dental"],["dental","care"],["care","dental"],["dental","tourism"],["continue","growing"],["consumers","continue"],["lower","cost"],["category","health"],["health","economics"],["economics","category"],["category","types"],["tourism","category"],["category","medical"],["medical","tourism"],["tourism","category"],["category","tourism"],["eastern","europe"]],"all_collocations":["dental tourism","tourism also","commonly known","dental holidays","sector known","medical tourism","dentistry dental","dental care","care outside","local healthcare","healthcare systems","vacation dental","dental tourism","growing worldwide","world becomes","becomes ever","competitive technique","technique material","rapidly enabling","enabling providers","developing countries","significant cost","cost savings","compared witheir","witheir peers","developed world","world reasons","dental tourists","tourists may","may travel","usually driven","price considerations","considerations cross","cross border","border care","south slovenia","patient mobility","mobility retrieved","retrieved october","october catherine","rural women","ireland studies","retrieved october","october wide","wide variations","shared borders","sector examples","examples include","include travel","hungary slovakia","slovakia slovenia","rica ecuador","northern ireland","ireland hungary","hungary poland","poland bulgaria","bulgaria turkey","south east","east asia","medical tourism","high income","income countries","low cost","cost developing","developing economies","travel including","including differences","public healthcare","general access","healthcare mobility","countries within","within theuropean","theuropean union","union dental","dental qualifications","qualifications arequired","minimum approved","dental directives","retrieved october","october thus","one country","country allowing","greater mobility","dentists directives","directives typically","typically apply","wider designation","theuropean economic","economic area","dental practice","practice includes","includes comparative","comparative study","member countries","countries dental","dental systems","edition currently","preparation retrieved","retrieved october","dental education","standards proposals","quality assurance","accreditation procedures","dentistry universities","facilitate dental","dental students","students completing","completing part","foreign dentistry","dentistry schools","quality assurance","retrieved october","october standardization","patient mobility","mobility within","region pricing","quality dental","dental tourists","tourists travel","travel chiefly","take advantage","lower prices","prices reasons","lower prices","many dentists","dentists outside","developed world","take advantage","much lower","lower fixed","fixed costs","costs lower","lower labor","labor costs","costs less","less government","government intervention","intervention lower","lower education","education fees","lower insurance","insurance costs","costs much","developed world","eliminated abroad","less legal","wrong buthe","buthe result","simply financially","many people","developed world","made affordable","affordable overseas","overseas much","dental tourism","medical tourism","general centers","imply quality","another concern","large scale","scale dental","dental procedures","safely completed","completed abroad","relatively short","short holiday","holiday sized","sized time","time period","period another","another issue","issue affecting","independent inspections","inspections committee","dental similar","joint commission","commission international","case study","study analysis","united kingdom","ireland two","two large","large sources","dental tourists","irish competition","competition authority","determine whether","whether consumers","dentists irish","irish competition","competition authority","authority report","report retrieved","retrieved october","countries professions","transparent pricing","accurate quote","occurred thus","thus price","price lists","costs though","may encourage","supply andemand","competition authority","authority report","increasing numbers","dental specialties","new dental","dental specialties","specialties develop","consumer demand","new dental","dental products","dentists available","given procedure","procedure aside","different countries","countries withe","withe international","international nature","valid comparison","price difference","material cost","root canals","york times","times clearly","clearly undergoing","undergoing extensive","extensive dental","dental procedures","procedures abroad","abroad even","travel expenses","significantly cheaper","home pricing","dentists may","dentists another","another important","important consideration","one travels","travels far","dental procedure","long way","well many","many americans","americans choose","asan salvador","lima due","safer towns","border cabo","cabo san","jose del","del cabo","cabo puerto","puerto vallarta","vallarta cancun","cancun playa","playa del","del carmen","recently started","started offering","offering large","small dental","us patients","patients travel","border states","california texas","arizona patients","patients beyond","procedures often","often require","require multiple","multiple steps","patient may","reasons typically","two trips","second trip","typically months","months later","bone day","dental tourists","tourists due","higher failure","failure rate","name implies","implies dental","dental tourism","receive low","low cost","cost quality","quality dental","dental care","care dental","dental tourism","continue growing","consumers continue","lower cost","category health","health economics","economics category","category types","tourism category","category medical","medical tourism","tourism category","category tourism","eastern europe"],"new_description":"dental tourism_also vacations commonly_known dental holidays europe subset sector known medical_tourism involves dentistry dental care outside local healthcare systems may accompanied vacation dental tourism growing worldwide world becomes ever competitive technique material technological rapidly enabling providers developing_countries care significant cost savings compared witheir peers developed world reasons travel dental tourists_may travel variety reasons choices usually driven price considerations cross_border care south slovenia italy report patient mobility retrieved_october catherine experiences perceptions rural women republic ireland studies retrieved_october wide variations theconomics countries shared borders historical sector examples_include travel austria hungary slovakia slovenia romania us canada rica ecuador peru republic ireland northern_ireland hungary poland bulgaria turkey ukraine australia thailand countries south_east_asia medical_tourism often travel high income countries low_cost developing economies factors influence decision travel including differences funding public_healthcare general access healthcare mobility labour countries within theuropean_union dental qualifications arequired reach minimum approved country government dental directives retrieved_october thus qualified one country apply country practice country allowing greater mobility labour dentists directives typically apply buto wider designation theuropean economic area manual dental practice includes comparative study member_countries dental systems edition currently preparation retrieved_october association dental education europe efforts standards proposals quality assurance cover introduction accreditation procedures dentistry universities well programmes facilitate dental students completing part education foreign dentistry schools document quality assurance retrieved_october standardization qualification region one barriers development patient mobility within region pricing quality dental tourists travel chiefly take_advantage lower prices reasons lower prices many dentists outside developed world able take_advantage much lower fixed costs lower labor costs less government intervention lower education fees expenses lower insurance costs much red businesses developed world eliminated abroad free focus side less legal patients wrong buthe result dental porcelain simply financially reach many_people developed world made affordable overseas much debate dental tourism medical_tourism general centers question whether price imply quality another concern whether large_scale dental procedures safely completed abroad relatively short holiday sized time_period another issue affecting debate lack independent inspections committee dental similar joint_commission_international medical case study analysis patient united_kingdom republic ireland two large sources dental tourists countries subject report irish competition authority determine whether consumers value money dentists irish competition authority report retrieved_october countries professions criticised lack pricing response dentistry unsuitable transparent pricing treatment vary accurate quote impossible examination occurred thus price lists guarantee costs though may encourage level competition dentists happen supply andemand closely competition authority report irish profession approach increasing_numbers dentists training dental specialties particularea concern training limited number limited new dental specialties develop consumer demand new dental products pool dentists available given procedure aside issues possible compare prices treatment different_countries withe international nature products brands possible make valid comparison instance porcelain made lab sweden much australia india price difference reference material cost fun root canals dental york_times clearly undergoing extensive dental procedures abroad even allowing travel expenses significantly cheaper procedures home pricing qualifications dentists may researched websites dentists another important consideration location one travels far dental procedure wrong long_way return fix well many americans choose go accessible asan salvador los lima due ongoing violence ciudad clinics safer towns border cabo san_jose del cabo puerto vallarta cancun playa del carmen etc recently started offering large small dental info percent mexico us patients travel border states california texas arizona patients_beyond procedures often require multiple steps subsequent patient may return doctor reasons typically two trips base crown second trip typically months_later bone day recommended dental tourists due higher failure rate system combined holiday name implies dental tourism opportunity receive low_cost quality dental care dental tourism expected continue growing consumers continue seek lower_cost also category health economics category_types tourism_category_medical tourism_category_tourism eastern_europe"},{"title":"Department for Culture, Media and Sport (UK)","description":"redirect department for culture mediand sport category tourisministries uk","main_words":["redirect","department","culture","mediand","uk"],"clean_bigrams":[["redirect","department"],["culture","mediand"],["mediand","sport"],["sport","category"],["category","tourisministries"],["tourisministries","uk"]],"all_collocations":["redirect department","culture mediand","mediand sport","sport category","category tourisministries","tourisministries uk"],"new_description":"redirect department culture mediand sport_category_tourisministries uk"},{"title":"Department of Enterprise, Trade and Investment (Northern Ireland)","description":"redirect department for theconomy category tourisministries ireland","main_words":["redirect","department","theconomy","category_tourisministries","ireland"],"clean_bigrams":[["redirect","department"],["theconomy","category"],["category","tourisministries"],["tourisministries","ireland"]],"all_collocations":["redirect department","theconomy category","category tourisministries","tourisministries ireland"],"new_description":"redirect department theconomy category_tourisministries ireland"},{"title":"Department of Tourism (Australia)","description":"preceding department of the artsporthenvironmentourism and territories dissolved march","main_words":["preceding","department","territories","dissolved","march"],"clean_bigrams":[["preceding","department"],["territories","dissolved"],["dissolved","march"]],"all_collocations":["preceding department","territories dissolved","dissolved march"],"new_description":"preceding department territories dissolved march"},{"title":"Department of Tourism (Philippines)","description":"chief name wanda corazon teo chief position secretary website footnotes the department of tourism dot is thexecutive departments of the philippines executive department of the politics of the philippines philippine government responsible for the regulation of the tourism in the philippines philippine tourism industry and the promotion of the philippines as a tourist destination started as a private initiative to promote the philippines as a major travel destination the philippine touristravel association was organized in the board of travel and tourist industry was created by congress astipulated in the integrated reorganization plan in sanctioned as a law under presidential decree no as amended the department of trade and tourism was established reorganizing then department of commerce and industry a philippine tourism commission was created under the unified trade and tourism departmentoversee the growth of the tourism industry as a source of economic benefit for the country in president of the philippines president ferdinand marcos created a new cabinet level department of tourism dot by splitting the department of trade and tourism into two separate departments included in the new department of tourism the agency philippine tourism authority ptand the philippine convention bureau pcb were created the department of tourism was then renamed ministry of tourism as a result of the shift in the form of government pursuanto thenforcement of the constitution of the philippines the constitution in under executive order nos and a signed by president corazon aquino the department of tourism was reorganized and correspondingly the philippine convention bureau was renamed the philippine convention and visitors corporation in the department of tourism assumed a prominent role in culmination of independence day philippines centennial celebration of the country s philippine declaration of independence from the spanish empire in the department of tourism initiated one of its most successful tourism promotion project visit philippines under secretary now senatorichard gordon politician richard j gordon the latest improvements in the tourism industry in the country came about withe passage of republic act nor the tourism act of organization structure the department is headed by the secretary of tourism philippines withe following four undersecretaries and assistant secretaries undersecretary for administration and special concerns undersecretary for public affairs communicationspecial projects undersecretary for tourism development planning undersecretary for tourism regulation coordination resource generations assistant secretary for administration and special concerns assistant secretary for public affairs communications and special projects assistant secretary for tourism development planning assistant secretary for tourism regulation coordination resource generation for luzon and visayas tourism projects visit islands philippines miss universe beauty pageant florikultura international horticulturexhibition expo pilipino philippine centennial international exposition philippine centennial celebrations world exposition manila cancelledue to financial problems of the government visit philippines woworld of wonders philippines pilipinas kay ganda slogand campaign pnoy launches pilipinas kay gandas new tourism campaign slogan press release philippine information agency november it is more fun in the philippines visithe philippines year visithe philippines again miss universe scheduled on january list of the secretaries of the department of tourism slogans fiesta islands philippines wow philippines pilipinas kay ganda it is more fun in the philippines experience the philippines externalinks official dot philippines website official dot philippines twitter account dfpc website category department of tourism philippines category ministriestablished in philippines tourism category tourisministries philippines category establishments in the philippines category executive departments of the philippines tourism","main_words":["chief","name","wanda","chief_position","secretary","website_footnotes","department","tourism","dot","thexecutive","departments","philippines","executive","department","politics","philippines","philippine","government","responsible","regulation","tourism","philippines","philippine","tourism_industry","promotion","philippines","tourist_destination","started","private","initiative","promote","philippines","major","travel_destination","philippine","association","organized","board","travel","tourist_industry","created","congress","integrated","reorganization","plan","sanctioned","law","presidential","decree","amended","department","trade","tourism","established","department","commerce","industry","philippine","tourism","commission","created","unified","trade","tourism","growth","tourism_industry","source","economic","benefit","country","president","philippines","president","ferdinand","created","new","cabinet","level","department","tourism","dot","department","trade","tourism","two","separate","departments","included","new","department","tourism","agency","philippine","tourism_authority","philippine","convention_bureau","created","department","tourism","renamed","ministry","tourism","result","shift","form","government","constitution","philippines","constitution","executive","order","nos","signed","president","department","tourism","philippine","convention_bureau","renamed","philippine","convention_visitors","corporation","department","tourism","assumed","prominent","role","independence","day","philippines","centennial","celebration","country","philippine","declaration","independence","spanish","empire","department","tourism","initiated","one","successful","tourism_promotion","project","visit","philippines","secretary","gordon","politician","richard","j","gordon","latest","improvements","tourism_industry","country","came","withe","passage","republic","act","tourism","act","organization","structure","department","headed","secretary","tourism","philippines","withe","following","four","assistant","secretaries","undersecretary","administration","special","concerns","undersecretary","public","affairs","projects","undersecretary","tourism_development","planning","undersecretary","tourism","regulation","coordination","resource","generations","assistant","secretary","administration","special","concerns","assistant","secretary","public","affairs","communications","special","projects","assistant","secretary","tourism_development","planning","assistant","secretary","tourism","regulation","coordination","resource","generation","visayas","tourism","projects","visit","islands","philippines","miss","universe","beauty","pageant","international","expo","philippine","centennial","international_exposition","philippine","centennial","celebrations","world","exposition","manila","cancelledue","financial","problems","government","visit","philippines","wonders","philippines","kay","campaign","launches","kay","new","tourism","campaign","slogan","press_release","philippine","information","agency","november","fun","philippines","visithe","philippines","year","visithe","philippines","miss","universe","scheduled","january","list","secretaries","department","tourism","slogans","fiesta","islands","philippines","wow","philippines","kay","fun","philippines","experience","philippines","externalinks_official","dot","philippines","website_official","dot","philippines","twitter","account","website_category","department","tourism","philippines","category_ministriestablished","philippines","tourism_category_tourisministries","philippines","category_establishments","philippines","category","executive","departments","philippines","tourism"],"clean_bigrams":[["chief","name"],["name","wanda"],["chief","position"],["position","secretary"],["secretary","website"],["website","footnotes"],["tourism","dot"],["thexecutive","departments"],["philippines","executive"],["executive","department"],["philippines","philippine"],["philippine","government"],["government","responsible"],["tourism","philippines"],["philippines","philippine"],["philippine","tourism"],["tourism","industry"],["tourist","destination"],["destination","started"],["private","initiative"],["major","travel"],["travel","destination"],["tourist","industry"],["integrated","reorganization"],["reorganization","plan"],["presidential","decree"],["philippine","tourism"],["tourism","commission"],["unified","trade"],["tourism","industry"],["economic","benefit"],["philippines","president"],["president","ferdinand"],["new","cabinet"],["cabinet","level"],["level","department"],["tourism","dot"],["two","separate"],["separate","departments"],["departments","included"],["new","department"],["agency","philippine"],["philippine","tourism"],["tourism","authority"],["philippine","convention"],["convention","bureau"],["renamed","ministry"],["executive","order"],["order","nos"],["philippine","convention"],["convention","bureau"],["philippine","convention"],["visitors","corporation"],["tourism","assumed"],["prominent","role"],["independence","day"],["day","philippines"],["philippines","centennial"],["centennial","celebration"],["philippine","declaration"],["spanish","empire"],["tourism","initiated"],["initiated","one"],["successful","tourism"],["tourism","promotion"],["promotion","project"],["project","visit"],["visit","philippines"],["gordon","politician"],["politician","richard"],["richard","j"],["j","gordon"],["latest","improvements"],["tourism","industry"],["country","came"],["withe","passage"],["republic","act"],["tourism","act"],["organization","structure"],["tourism","philippines"],["philippines","withe"],["withe","following"],["following","four"],["assistant","secretaries"],["secretaries","undersecretary"],["special","concerns"],["concerns","undersecretary"],["public","affairs"],["projects","undersecretary"],["tourism","development"],["development","planning"],["planning","undersecretary"],["tourism","regulation"],["regulation","coordination"],["coordination","resource"],["resource","generations"],["generations","assistant"],["assistant","secretary"],["special","concerns"],["concerns","assistant"],["assistant","secretary"],["public","affairs"],["affairs","communications"],["special","projects"],["projects","assistant"],["assistant","secretary"],["tourism","development"],["development","planning"],["planning","assistant"],["assistant","secretary"],["tourism","regulation"],["regulation","coordination"],["coordination","resource"],["resource","generation"],["visayas","tourism"],["tourism","projects"],["projects","visit"],["visit","islands"],["islands","philippines"],["philippines","miss"],["miss","universe"],["universe","beauty"],["beauty","pageant"],["philippine","centennial"],["centennial","international"],["international","exposition"],["exposition","philippine"],["philippine","centennial"],["centennial","celebrations"],["celebrations","world"],["world","exposition"],["exposition","manila"],["manila","cancelledue"],["financial","problems"],["government","visit"],["visit","philippines"],["wonders","philippines"],["new","tourism"],["tourism","campaign"],["campaign","slogan"],["slogan","press"],["press","release"],["release","philippine"],["philippine","information"],["information","agency"],["agency","november"],["philippines","visithe"],["visithe","philippines"],["philippines","year"],["year","visithe"],["visithe","philippines"],["philippines","miss"],["miss","universe"],["universe","scheduled"],["january","list"],["tourism","slogans"],["slogans","fiesta"],["fiesta","islands"],["islands","philippines"],["philippines","wow"],["wow","philippines"],["philippines","experience"],["philippines","externalinks"],["externalinks","official"],["official","dot"],["dot","philippines"],["philippines","website"],["website","official"],["official","dot"],["dot","philippines"],["philippines","twitter"],["twitter","account"],["website","category"],["category","department"],["tourism","philippines"],["philippines","category"],["category","ministriestablished"],["philippines","tourism"],["tourism","category"],["category","tourisministries"],["tourisministries","philippines"],["philippines","category"],["category","establishments"],["philippines","category"],["category","executive"],["executive","departments"],["philippines","tourism"]],"all_collocations":["chief name","name wanda","chief position","position secretary","secretary website","website footnotes","tourism dot","thexecutive departments","philippines executive","executive department","philippines philippine","philippine government","government responsible","tourism philippines","philippines philippine","philippine tourism","tourism industry","tourist destination","destination started","private initiative","major travel","travel destination","tourist industry","integrated reorganization","reorganization plan","presidential decree","philippine tourism","tourism commission","unified trade","tourism industry","economic benefit","philippines president","president ferdinand","new cabinet","cabinet level","level department","tourism dot","two separate","separate departments","departments included","new department","agency philippine","philippine tourism","tourism authority","philippine convention","convention bureau","renamed ministry","executive order","order nos","philippine convention","convention bureau","philippine convention","visitors corporation","tourism assumed","prominent role","independence day","day philippines","philippines centennial","centennial celebration","philippine declaration","spanish empire","tourism initiated","initiated one","successful tourism","tourism promotion","promotion project","project visit","visit philippines","gordon politician","politician richard","richard j","j gordon","latest improvements","tourism industry","country came","withe passage","republic act","tourism act","organization structure","tourism philippines","philippines withe","withe following","following four","assistant secretaries","secretaries undersecretary","special concerns","concerns undersecretary","public affairs","projects undersecretary","tourism development","development planning","planning undersecretary","tourism regulation","regulation coordination","coordination resource","resource generations","generations assistant","assistant secretary","special concerns","concerns assistant","assistant secretary","public affairs","affairs communications","special projects","projects assistant","assistant secretary","tourism development","development planning","planning assistant","assistant secretary","tourism regulation","regulation coordination","coordination resource","resource generation","visayas tourism","tourism projects","projects visit","visit islands","islands philippines","philippines miss","miss universe","universe beauty","beauty pageant","philippine centennial","centennial international","international exposition","exposition philippine","philippine centennial","centennial celebrations","celebrations world","world exposition","exposition manila","manila cancelledue","financial problems","government visit","visit philippines","wonders philippines","new tourism","tourism campaign","campaign slogan","slogan press","press release","release philippine","philippine information","information agency","agency november","philippines visithe","visithe philippines","philippines year","year visithe","visithe philippines","philippines miss","miss universe","universe scheduled","january list","tourism slogans","slogans fiesta","fiesta islands","islands philippines","philippines wow","wow philippines","philippines experience","philippines externalinks","externalinks official","official dot","dot philippines","philippines website","website official","official dot","dot philippines","philippines twitter","twitter account","website category","category department","tourism philippines","philippines category","category ministriestablished","philippines tourism","tourism category","category tourisministries","tourisministries philippines","philippines category","category establishments","philippines category","category executive","executive departments","philippines tourism"],"new_description":"chief name wanda chief_position secretary website_footnotes department tourism dot thexecutive departments philippines executive department politics philippines philippine government responsible regulation tourism philippines philippine tourism_industry promotion philippines tourist_destination started private initiative promote philippines major travel_destination philippine association organized board travel tourist_industry created congress integrated reorganization plan sanctioned law presidential decree amended department trade tourism established department commerce industry philippine tourism commission created unified trade tourism growth tourism_industry source economic benefit country president philippines president ferdinand created new cabinet level department tourism dot department trade tourism two separate departments included new department tourism agency philippine tourism_authority philippine convention_bureau created department tourism renamed ministry tourism result shift form government constitution philippines constitution executive order nos signed president department tourism philippine convention_bureau renamed philippine convention_visitors corporation department tourism assumed prominent role independence day philippines centennial celebration country philippine declaration independence spanish empire department tourism initiated one successful tourism_promotion project visit philippines secretary gordon politician richard j gordon latest improvements tourism_industry country came withe passage republic act tourism act organization structure department headed secretary tourism philippines withe following four assistant secretaries undersecretary administration special concerns undersecretary public affairs projects undersecretary tourism_development planning undersecretary tourism regulation coordination resource generations assistant secretary administration special concerns assistant secretary public affairs communications special projects assistant secretary tourism_development planning assistant secretary tourism regulation coordination resource generation visayas tourism projects visit islands philippines miss universe beauty pageant international expo philippine centennial international_exposition philippine centennial celebrations world exposition manila cancelledue financial problems government visit philippines wonders philippines kay campaign launches kay new tourism campaign slogan press_release philippine information agency november fun philippines visithe philippines year visithe philippines miss universe scheduled january list secretaries department tourism slogans fiesta islands philippines wow philippines kay fun philippines experience philippines externalinks_official dot philippines website_official dot philippines twitter account website_category department tourism philippines category_ministriestablished philippines tourism_category_tourisministries philippines category_establishments philippines category executive departments philippines tourism"},{"title":"Department of Tourism (South Africa)","description":"the department of tourism is one of the ministry government departments of the government of south africa south african government it is responsible for promoting andeveloping tourism both from other countries to south africand within south africa the current political head of the department is the minister of tourism south africa minister of tourism tokozile xasa fontsize fontsize fontsize fontsize fontsize externalinks official website category government departments of south africa tourism category tourisministriesouth africa","main_words":["department","tourism","one","government","south_africa","south_african","government","responsible","promoting","andeveloping","tourism","countries","south_africand","within","south_africa","current","political","head","department","minister","tourism","south_africa","minister","tourism","fontsize","fontsize","fontsize","fontsize","fontsize","externalinks_official_website_category","government_departments","south_africa","tourism_category","africa"],"clean_bigrams":[["ministry","government"],["government","departments"],["south","africa"],["africa","south"],["south","african"],["african","government"],["promoting","andeveloping"],["andeveloping","tourism"],["south","africand"],["africand","within"],["within","south"],["south","africa"],["current","political"],["political","head"],["tourism","south"],["south","africa"],["africa","minister"],["fontsize","fontsize"],["fontsize","fontsize"],["fontsize","fontsize"],["fontsize","fontsize"],["fontsize","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","government"],["government","departments"],["south","africa"],["africa","tourism"],["tourism","category"]],"all_collocations":["ministry government","government departments","south africa","africa south","south african","african government","promoting andeveloping","andeveloping tourism","south africand","africand within","within south","south africa","current political","political head","tourism south","south africa","africa minister","fontsize fontsize","fontsize fontsize","fontsize fontsize","fontsize fontsize","fontsize externalinks","externalinks official","official website","website category","category government","government departments","south africa","africa tourism","tourism category"],"new_description":"department tourism one ministry_government_departments government south_africa south_african government responsible promoting andeveloping tourism countries south_africand within south_africa current political head department minister tourism south_africa minister tourism fontsize fontsize fontsize fontsize fontsize externalinks_official_website_category government_departments south_africa tourism_category africa"},{"title":"Department of Tourism and Resorts of Ajara Autonomous Republic","description":"employees budget georgian lari gel million dtra budget news broadcast chief name mamia berdzenishvili chief position chairman website gobatumicom footnotes the department of tourism and resorts of adjara r dtra is a sub departmental establishment resolution abouthestablishment of the department dtra december of government of autonomous republic of adjara autonomous republic that is mainly involved in a state management of tourism and resorts in the region embassy of georgia to the republic of estonia the department carries out a state policy in reserving andeveloping tourism and resorts international donor conference ajara cooperation for growth it also popularizes touristic potential of the region an internationalevel dtrathe international tourism exhibition uitt and favors implementation of various innovations in tourism sphere management structure the department is managedtra management structure by the chairman mamia berdzenishvili demur diasamidze to head ajara tourism department public relations manager and statutory auditor are the assistants of the chairman there are divisions in the department administrative division marketing and advertising division tourist product and service division information technology and online projects division itop statistics division accountancy division each division has a head of the division who are subordinated to the first deputy chairmandeputy chairman of the departmentourism projects expo batuminternational trade fair for tourism and hospitality industry audio guideservice announcement of tender on development of adjaraudio guide for adjara tourism department april dtra offers audio guide service tourism week tourism week is over in batumi june share your love of batumi ajara tv broadcasting news about share your love of batumi summer the season of unparallelediscounts the department of tourism and resorts of ajara to launch the season of unparallelediscounts december your summer starts here tourist season to be officially opened on may tourism slogans evergreen memories visit feel it love it references externalinks dtra official at citizen s portal official visitor guide to batumi official visitor guide to georgia official facebook page category tourism in georgia country category adjara category batumi category tourisministries adjara","main_words":["employees","budget","georgian","million","dtra","budget","news","broadcast","chief_name_chief","position","chairman","website_footnotes","department","tourism","resorts","adjara","r","dtra","sub","departmental","establishment","resolution","department","dtra","december","government","autonomous","republic","adjara","autonomous","republic","mainly","involved","state","management","tourism","resorts","region","embassy","georgia","republic","estonia","department","carries","state","policy","andeveloping","tourism","resorts","international","donor","conference","ajara","cooperation","growth","also","touristic","potential","region","international_tourism","exhibition","favors","implementation","various","innovations","tourism","sphere","management","structure","department","management","structure","chairman","head","ajara","tourism","department","public_relations","manager","statutory","auditor","assistants","chairman","divisions","department","administrative","division","marketing","advertising","division","tourist","product","service","division","information_technology","online","projects","division","statistics","division","division","division","head","division","first","deputy","chairman","projects","expo","trade","fair","audio","announcement","tender","development","guide","adjara","tourism","department","april","dtra","offers","audio","guide","service","tourism","week","tourism","week","batumi","june","share","love","batumi","ajara","broadcasting","news","share","love","batumi","summer","season","department","tourism","resorts","ajara","launch","season","december","summer","starts","tourist","season","officially","opened","may","tourism","slogans","evergreen","memories","visit","feel","love","references_externalinks","dtra","official","citizen","portal","official","visitor","guide","batumi","official","visitor","guide","georgia","official","facebook","georgia","country","category","adjara","category","batumi","category_tourisministries","adjara"],"clean_bigrams":[["employees","budget"],["budget","georgian"],["million","dtra"],["dtra","budget"],["budget","news"],["news","broadcast"],["broadcast","chief"],["chief","name"],["chief","position"],["position","chairman"],["chairman","website"],["adjara","r"],["r","dtra"],["sub","departmental"],["departmental","establishment"],["establishment","resolution"],["department","dtra"],["dtra","december"],["autonomous","republic"],["adjara","autonomous"],["autonomous","republic"],["mainly","involved"],["state","management"],["region","embassy"],["department","carries"],["state","policy"],["andeveloping","tourism"],["resorts","international"],["international","donor"],["donor","conference"],["conference","ajara"],["ajara","cooperation"],["touristic","potential"],["international","tourism"],["tourism","exhibition"],["favors","implementation"],["various","innovations"],["tourism","sphere"],["sphere","management"],["management","structure"],["management","structure"],["head","ajara"],["ajara","tourism"],["tourism","department"],["department","public"],["public","relations"],["relations","manager"],["statutory","auditor"],["department","administrative"],["administrative","division"],["division","marketing"],["advertising","division"],["division","tourist"],["tourist","product"],["service","division"],["division","information"],["information","technology"],["online","projects"],["projects","division"],["statistics","division"],["first","deputy"],["projects","expo"],["trade","fair"],["hospitality","industry"],["industry","audio"],["adjara","tourism"],["tourism","department"],["department","april"],["april","dtra"],["dtra","offers"],["offers","audio"],["audio","guide"],["guide","service"],["service","tourism"],["tourism","week"],["week","tourism"],["tourism","week"],["batumi","june"],["june","share"],["batumi","ajara"],["ajara","tv"],["tv","broadcasting"],["broadcasting","news"],["batumi","summer"],["summer","starts"],["tourist","season"],["officially","opened"],["may","tourism"],["tourism","slogans"],["slogans","evergreen"],["evergreen","memories"],["memories","visit"],["visit","feel"],["references","externalinks"],["externalinks","dtra"],["dtra","official"],["portal","official"],["official","visitor"],["visitor","guide"],["batumi","official"],["official","visitor"],["visitor","guide"],["georgia","official"],["official","facebook"],["facebook","page"],["page","category"],["category","tourism"],["georgia","country"],["country","category"],["category","adjara"],["adjara","category"],["category","batumi"],["batumi","category"],["category","tourisministries"],["tourisministries","adjara"]],"all_collocations":["employees budget","budget georgian","million dtra","dtra budget","budget news","news broadcast","broadcast chief","chief name","chief position","position chairman","chairman website","adjara r","r dtra","sub departmental","departmental establishment","establishment resolution","department dtra","dtra december","autonomous republic","adjara autonomous","autonomous republic","mainly involved","state management","region embassy","department carries","state policy","andeveloping tourism","resorts international","international donor","donor conference","conference ajara","ajara cooperation","touristic potential","international tourism","tourism exhibition","favors implementation","various innovations","tourism sphere","sphere management","management structure","management structure","head ajara","ajara tourism","tourism department","department public","public relations","relations manager","statutory auditor","department administrative","administrative division","division marketing","advertising division","division tourist","tourist product","service division","division information","information technology","online projects","projects division","statistics division","first deputy","projects expo","trade fair","hospitality industry","industry audio","adjara tourism","tourism department","department april","april dtra","dtra offers","offers audio","audio guide","guide service","service tourism","tourism week","week tourism","tourism week","batumi june","june share","batumi ajara","ajara tv","tv broadcasting","broadcasting news","batumi summer","summer starts","tourist season","officially opened","may tourism","tourism slogans","slogans evergreen","evergreen memories","memories visit","visit feel","references externalinks","externalinks dtra","dtra official","portal official","official visitor","visitor guide","batumi official","official visitor","visitor guide","georgia official","official facebook","facebook page","page category","category tourism","georgia country","country category","category adjara","adjara category","category batumi","batumi category","category tourisministries","tourisministries adjara"],"new_description":"employees budget georgian million dtra budget news broadcast chief_name_chief position chairman website_footnotes department tourism resorts adjara r dtra sub departmental establishment resolution department dtra december government autonomous republic adjara autonomous republic mainly involved state management tourism resorts region embassy georgia republic estonia department carries state policy andeveloping tourism resorts international donor conference ajara cooperation growth also touristic potential region international_tourism exhibition favors implementation various innovations tourism sphere management structure department management structure chairman head ajara tourism department public_relations manager statutory auditor assistants chairman divisions department administrative division marketing advertising division tourist product service division information_technology online projects division statistics division division division head division first deputy chairman projects expo trade fair tourism_hospitality_industry audio announcement tender development guide adjara tourism department april dtra offers audio guide service tourism week tourism week batumi june share love batumi ajara tv broadcasting news share love batumi summer season department tourism resorts ajara launch season december summer starts tourist season officially opened may tourism slogans evergreen memories visit feel love references_externalinks dtra official citizen portal official visitor guide batumi official visitor guide georgia official facebook page_category_tourism georgia country category adjara category batumi category_tourisministries adjara"},{"title":"Department of Transport, Tourism and Sport","description":"employees budget minister name shane ross teachta d la td minister pfo minister for transportourism and sport chief name graham doyle chief position civil service of the republic of ireland secretary general child agency website footnotes the department of transportourism and sport is a department of state irelandepartment of the government of ireland that is responsible for transport policy and overseeing transport services and infrastructure the department is led by the minister for transportourism and sport who is assisted by two minister of state ireland ministers of state departmental team the official headquarters and ministerial offices of the department are in leeson lane dublin d tr it also has offices in killarney and loughrea where to find us archive department of transportourism and sport retrieved on april it also says our main office is located athe following address leeson lane dublin d tr the departmental team consists of the following minister for transportourism and sport shane ross teachta d la td minister of state for tourism and sport patrick o donovan td secretary general of the department graham doyle affiliated bodiestate agencies among thexecutive agency state agencies that reporto are appointed by the minister or are otherwise affiliated to the department are national transport authority ireland national transport authority road safety authority transport infrastructure ireland irish aviation authority irish coast guard commission for aviation regulation air accident investigation unit state sponsored bodies among the state sponsored bodies of the republic of ireland state sponsored bodiesponsored by the minister are c ras iompaireann and itsubsidiaries dublin airport authority and the shadow cork authorities dublin port company the department was created in with erskine hamilton childerskine h childers becoming the first minister over the years its name has changed several times buthe role of the department has remained the same the department was previously known as the following department of transport and power department of tourism and transport department of transport department of tourism and transport department of tourism transport and communication department of transport energy and communication department of public enterprise department of transport department of transportourism and sport present see also driving licence in ireland externalinks department of transportourism and sport category departments of state ireland transport category transport ministries ireland transportourism and sport category transport in the republic of ireland category ministriestablished in ireland transportourism and sport category sport in the republic of ireland category tourism in the republic of ireland category tourisministries ireland transportourism and sport category sports ministries ireland transportourism and sport category department of transportourism and sport category establishments in ireland","main_words":["employees","shane","ross","la","minister_pfo_minister","transportourism","sport","chief_name","graham","doyle","chief_position","civil","service","republic","ireland","secretary_general","child_agency","website_footnotes","department","transportourism","sport","department","state","government","ireland","responsible","transport","policy","overseeing","transport","services","infrastructure","department","led","minister","transportourism","sport","assisted","two","minister","state","ireland","ministers","state","departmental","team","official","headquarters","ministerial","offices","department","leeson","lane","dublin","also","offices","find","us","archive","department","transportourism","sport","retrieved_april","also","says","main","office","located_athe","following","address","leeson","lane","dublin","departmental","team","consists","following","minister","transportourism","sport","shane","ross","la","minister","state","tourism","sport","patrick","secretary_general","department","graham","doyle","affiliated","agencies","among","thexecutive","agency","state","agencies","reporto","appointed","minister","otherwise","affiliated","department","national","transport","authority","ireland","national","transport","authority","road","safety","authority","transport","infrastructure","ireland","irish","aviation","authority","irish","coast","guard","commission","aviation","regulation","air","accident","investigation","unit","state","sponsored","bodies","among","state","sponsored","bodies","republic","ireland","state","sponsored","minister","c","dublin","airport","authority","shadow","cork","authorities","dublin","port","company","department","created","erskine","hamilton","h","becoming","first","minister","years","name","changed","several","times","buthe","role","department","remained","department","previously","known","following","department","transport","power","department","tourism","transport","department","transport","department","tourism","transport","department","tourism","transport","communication","department","transport","energy","communication","department","public","enterprise","department","transport","department","transportourism","sport","present","see_also","driving","licence","ireland","externalinks","department","transportourism","sport_category","departments","state","ireland","transport","category_transport","ministries","ireland","transportourism","sport_category","transport","republic","ireland_category","ministriestablished","ireland","transportourism","sport_category","sport","republic","republic","ireland","transportourism","ministries","ireland","transportourism","sport_category","department","transportourism","ireland"],"clean_bigrams":[["employees","budget"],["budget","minister"],["minister","name"],["name","shane"],["shane","ross"],["minister","pfo"],["pfo","minister"],["sport","chief"],["chief","name"],["name","graham"],["graham","doyle"],["doyle","chief"],["chief","position"],["position","civil"],["civil","service"],["ireland","secretary"],["secretary","general"],["general","child"],["child","agency"],["agency","website"],["website","footnotes"],["transport","policy"],["overseeing","transport"],["transport","services"],["two","minister"],["state","ireland"],["ireland","ministers"],["state","departmental"],["departmental","team"],["official","headquarters"],["ministerial","offices"],["leeson","lane"],["lane","dublin"],["find","us"],["us","archive"],["archive","department"],["sport","retrieved"],["also","says"],["main","office"],["located","athe"],["athe","following"],["following","address"],["address","leeson"],["leeson","lane"],["lane","dublin"],["departmental","team"],["team","consists"],["following","minister"],["sport","shane"],["shane","ross"],["sport","patrick"],["secretary","general"],["department","graham"],["graham","doyle"],["doyle","affiliated"],["agencies","among"],["among","thexecutive"],["thexecutive","agency"],["agency","state"],["state","agencies"],["otherwise","affiliated"],["national","transport"],["transport","authority"],["authority","ireland"],["ireland","national"],["national","transport"],["transport","authority"],["authority","road"],["road","safety"],["safety","authority"],["authority","transport"],["transport","infrastructure"],["infrastructure","ireland"],["ireland","irish"],["irish","aviation"],["aviation","authority"],["authority","irish"],["irish","coast"],["coast","guard"],["guard","commission"],["aviation","regulation"],["regulation","air"],["air","accident"],["accident","investigation"],["investigation","unit"],["unit","state"],["state","sponsored"],["sponsored","bodies"],["bodies","among"],["state","sponsored"],["sponsored","bodies"],["ireland","state"],["state","sponsored"],["dublin","airport"],["airport","authority"],["shadow","cork"],["cork","authorities"],["authorities","dublin"],["dublin","port"],["port","company"],["erskine","hamilton"],["first","minister"],["changed","several"],["several","times"],["times","buthe"],["buthe","role"],["previously","known"],["following","department"],["power","department"],["tourism","transport"],["transport","department"],["transport","department"],["tourism","transport"],["transport","department"],["tourism","transport"],["communication","department"],["transport","energy"],["communication","department"],["public","enterprise"],["enterprise","department"],["transport","department"],["sport","present"],["present","see"],["see","also"],["also","driving"],["driving","licence"],["ireland","externalinks"],["externalinks","department"],["sport","category"],["category","departments"],["state","ireland"],["ireland","transport"],["transport","category"],["category","transport"],["transport","ministries"],["ministries","ireland"],["ireland","transportourism"],["sport","category"],["category","transport"],["ireland","category"],["category","ministriestablished"],["ireland","transportourism"],["sport","category"],["category","sport"],["ireland","category"],["category","tourism"],["ireland","category"],["category","tourisministries"],["tourisministries","ireland"],["ireland","transportourism"],["sport","category"],["category","sports"],["sports","ministries"],["ministries","ireland"],["ireland","transportourism"],["sport","category"],["category","department"],["sport","category"],["category","establishments"]],"all_collocations":["employees budget","budget minister","minister name","name shane","shane ross","minister pfo","pfo minister","sport chief","chief name","name graham","graham doyle","doyle chief","chief position","position civil","civil service","ireland secretary","secretary general","general child","child agency","agency website","website footnotes","transport policy","overseeing transport","transport services","two minister","state ireland","ireland ministers","state departmental","departmental team","official headquarters","ministerial offices","leeson lane","lane dublin","find us","us archive","archive department","sport retrieved","also says","main office","located athe","athe following","following address","address leeson","leeson lane","lane dublin","departmental team","team consists","following minister","sport shane","shane ross","sport patrick","secretary general","department graham","graham doyle","doyle affiliated","agencies among","among thexecutive","thexecutive agency","agency state","state agencies","otherwise affiliated","national transport","transport authority","authority ireland","ireland national","national transport","transport authority","authority road","road safety","safety authority","authority transport","transport infrastructure","infrastructure ireland","ireland irish","irish aviation","aviation authority","authority irish","irish coast","coast guard","guard commission","aviation regulation","regulation air","air accident","accident investigation","investigation unit","unit state","state sponsored","sponsored bodies","bodies among","state sponsored","sponsored bodies","ireland state","state sponsored","dublin airport","airport authority","shadow cork","cork authorities","authorities dublin","dublin port","port company","erskine hamilton","first minister","changed several","several times","times buthe","buthe role","previously known","following department","power department","tourism transport","transport department","transport department","tourism transport","transport department","tourism transport","communication department","transport energy","communication department","public enterprise","enterprise department","transport department","sport present","present see","see also","also driving","driving licence","ireland externalinks","externalinks department","sport category","category departments","state ireland","ireland transport","transport category","category transport","transport ministries","ministries ireland","ireland transportourism","sport category","category transport","ireland category","category ministriestablished","ireland transportourism","sport category","category sport","ireland category","category tourism","ireland category","category tourisministries","tourisministries ireland","ireland transportourism","sport category","category sports","sports ministries","ministries ireland","ireland transportourism","sport category","category department","sport category","category establishments"],"new_description":"employees budget_minister_name shane ross la minister_pfo_minister transportourism sport chief_name graham doyle chief_position civil service republic ireland secretary_general child_agency website_footnotes department transportourism sport department state government ireland responsible transport policy overseeing transport services infrastructure department led minister transportourism sport assisted two minister state ireland ministers state departmental team official headquarters ministerial offices department leeson lane dublin also offices find us archive department transportourism sport retrieved_april also says main office located_athe following address leeson lane dublin departmental team consists following minister transportourism sport shane ross la minister state tourism sport patrick secretary_general department graham doyle affiliated agencies among thexecutive agency state agencies reporto appointed minister otherwise affiliated department national transport authority ireland national transport authority road safety authority transport infrastructure ireland irish aviation authority irish coast guard commission aviation regulation air accident investigation unit state sponsored bodies among state sponsored bodies republic ireland state sponsored minister c dublin airport authority shadow cork authorities dublin port company department created erskine hamilton h becoming first minister years name changed several times buthe role department remained department previously known following department transport power department tourism transport department transport department tourism transport department tourism transport communication department transport energy communication department public enterprise department transport department transportourism sport present see_also driving licence ireland externalinks department transportourism sport_category departments state ireland transport category_transport ministries ireland transportourism sport_category transport republic ireland_category ministriestablished ireland transportourism sport_category sport republic ireland_category_tourism republic ireland_category_tourisministries ireland transportourism sport_category_sports ministries ireland transportourism sport_category department transportourism sport_category_establishments ireland"},{"title":"Departures (magazine)","description":"firstdate company time incountry based language website issn oclc departures is an united states american quartery lifestyle magazine published by time inc magazine subscription is available only to holders of the american express platinum card platinum charge card who receive it for free as of theditor in chief is richardavid story european south american asiand australian platinum card members receive the international edition of departures magazine departures international website departures while centurion card centurion members outside the us receive a dedicated centurion magazine centurion magazine centurion magazine website centurion both published by journal international gmbh in munich germany journal international website departures was purchased from american express publishing by time inc on october along with sister publication traveleisure on february the former new york times t magazine online director horacio silva joinedepartures as the newly created fashion and style director also amanda ross the contributing fashion director left popular culture the magazine was referred to in the season six episode of hbo series the sopranos titled the blue comet when dr melfi chastises tony foripping a recipe page out of an issue while sitting in her office suite s waiting room externalinks departures online departures international online category american express category american bi monthly magazines category american lifestyle magazines category magazinestablished in category tourismagazines category magazines published in munich","main_words":["firstdate","company","time","based","language","website_issn_oclc","departures","united_states","time","inc","magazine","subscription","available","holders","american_express","platinum","card","platinum","charge","card","receive","free","theditor","chief","story","european","south_american","asiand","australian","platinum","card","members","receive","international","edition","departures","magazine","departures","international","website","departures","centurion","card","centurion","members","outside","us","receive","dedicated","centurion","magazine","centurion","magazine","centurion","magazine","website","centurion","published","journal","international","gmbh","munich","germany","journal","international","website","departures","purchased","american_express","publishing","time","inc","october","along","sister","publication","traveleisure","february","former","new_york","times","magazine","online","director","silva","newly","created","fashion","style","director","also","amanda","ross","contributing","fashion","director","left","popular_culture","magazine","referred","season","six","episode","hbo","series","titled","blue","tony","recipe","page","issue","sitting","office","suite","waiting","room","externalinks","departures","online","departures","international","online","category_american","express","category_american","monthly_magazines_category","category_tourismagazines","category_magazines_published","munich"],"clean_bigrams":[["firstdate","company"],["company","time"],["based","language"],["language","website"],["website","issn"],["issn","oclc"],["oclc","departures"],["united","states"],["states","american"],["american","lifestyle"],["lifestyle","magazine"],["magazine","published"],["time","inc"],["inc","magazine"],["magazine","subscription"],["american","express"],["express","platinum"],["platinum","card"],["card","platinum"],["platinum","charge"],["charge","card"],["story","european"],["european","south"],["south","american"],["american","asiand"],["asiand","australian"],["australian","platinum"],["platinum","card"],["card","members"],["members","receive"],["international","edition"],["departures","magazine"],["magazine","departures"],["departures","international"],["international","website"],["website","departures"],["centurion","card"],["card","centurion"],["centurion","members"],["members","outside"],["us","receive"],["dedicated","centurion"],["centurion","magazine"],["magazine","centurion"],["centurion","magazine"],["magazine","centurion"],["centurion","magazine"],["magazine","website"],["website","centurion"],["journal","international"],["international","gmbh"],["munich","germany"],["germany","journal"],["journal","international"],["international","website"],["website","departures"],["american","express"],["express","publishing"],["time","inc"],["october","along"],["sister","publication"],["publication","traveleisure"],["former","new"],["new","york"],["york","times"],["magazine","online"],["online","director"],["newly","created"],["created","fashion"],["style","director"],["director","also"],["also","amanda"],["amanda","ross"],["contributing","fashion"],["fashion","director"],["director","left"],["left","popular"],["popular","culture"],["season","six"],["six","episode"],["hbo","series"],["blue","comet"],["recipe","page"],["office","suite"],["waiting","room"],["room","externalinks"],["externalinks","departures"],["departures","online"],["online","departures"],["departures","international"],["international","online"],["online","category"],["category","american"],["american","express"],["express","category"],["category","american"],["monthly","magazines"],["magazines","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","magazinestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","magazines"],["magazines","published"]],"all_collocations":["firstdate company","company time","based language","language website","website issn","issn oclc","oclc departures","united states","states american","american lifestyle","lifestyle magazine","magazine published","time inc","inc magazine","magazine subscription","american express","express platinum","platinum card","card platinum","platinum charge","charge card","story european","european south","south american","american asiand","asiand australian","australian platinum","platinum card","card members","members receive","international edition","departures magazine","magazine departures","departures international","international website","website departures","centurion card","card centurion","centurion members","members outside","us receive","dedicated centurion","centurion magazine","magazine centurion","centurion magazine","magazine centurion","centurion magazine","magazine website","website centurion","journal international","international gmbh","munich germany","germany journal","journal international","international website","website departures","american express","express publishing","time inc","october along","sister publication","publication traveleisure","former new","new york","york times","magazine online","online director","newly created","created fashion","style director","director also","also amanda","amanda ross","contributing fashion","fashion director","director left","left popular","popular culture","season six","six episode","hbo series","blue comet","recipe page","office suite","waiting room","room externalinks","externalinks departures","departures online","online departures","departures international","international online","online category","category american","american express","express category","category american","monthly magazines","magazines category","category american","american lifestyle","lifestyle magazines","magazines category","category magazinestablished","category tourismagazines","tourismagazines category","category magazines","magazines published"],"new_description":"firstdate company time based language website_issn_oclc departures united_states american_lifestyle_magazine_published time inc magazine subscription available holders american_express platinum card platinum charge card receive free theditor chief story european south_american asiand australian platinum card members receive international edition departures magazine departures international website departures centurion card centurion members outside us receive dedicated centurion magazine centurion magazine centurion magazine website centurion published journal international gmbh munich germany journal international website departures purchased american_express publishing time inc october along sister publication traveleisure february former new_york times magazine online director silva newly created fashion style director also amanda ross contributing fashion director left popular_culture magazine referred season six episode hbo series titled blue comet tony recipe page issue sitting office suite waiting room externalinks departures online departures international online category_american express category_american monthly_magazines_category american_lifestyle_magazines_category_magazinestablished category_tourismagazines category_magazines_published munich"},{"title":"Departures (TV series)","description":"departures also promoted as departures is a travel adventure television series an original canadian production created by andre dupuis and scott wilson and produced by jessie wallace and steven bray the worldwide premiere was withe canadian channel oln on march and continued for a total of episodes ending on june series co creatorscott wilson host andre dupuis director and videographer have said that he and wilson worked on another show buthat it seemed kind of dry and that it was not carrying across the feelings thathey had thinking he and wilson could probably do a better job the team behind the series met at film school scott wilson andre dupuis and jessie wallace worked onumerous projects together while at sheridan college also from sheridan came steven bray alvin campana editor and stephen barden audio mixer the show features high school friendscott wilson and justin lukach travelling to various locations around the world accompanied by cameramandre dupuis the show has been described as being abouthe journey rather than justhe destinations the first season of departures aired on the outdoor life network in canadand began airing internationally on the national geographic adventure channel worldwide beginning october the second season began airing on the outdoor life network on january in i and the third season began airing on the outdoor life network on march starting on april departures began airing every friday night on citytv stations across canada with p broadcast on city tv toronto high definition channel the final episode of the series departures australiaired on saturday june the series airs in germany with rtliving dr hd in denmark tvb in hong kong in countries with national geographic adventure channel and on air canada s international flights broadcast of seasonexpanded to all of europe middleast asiand asia pacific on travel channel international on june season two was to begin january on travel channel international the series announced on their facebook page that departures will be featured on the online video streaming website netflix starting february episodes the firstwo seasons of the show have thirteen episodes each while the third hasixteen episodes lukachastated that a fourth season will not be made as wilson andupuis are working on a new show descending which aired february wilson believes thathere is little chance of a fourth season below is a chronologicalist of places visited in each season width alignone width valign top season canada ocean tocean jordan india x ascension island japan x cook islands new zealand x thailand cambodia canada pushing north width valign top season morocco libya brazil x cuba mongolia x iceland zambia madagascar chile x antarctica width valign top season russia x sri lanka vietnam papua new guinea x ecuador ethiopia x rwanda greenland north korea x indonesia x australia canada golden sheaf awards class wikitable year category nomineepisode result best documentary series jessie wallace and steven bray india quest for himalayas and cambodia style backgrounddffdd won best directing director andre dupuis india quest for himalayastyle backgrounddffdd won gemini awards class wikitable year category nomineepisode result best photography in an information program or series rd annual gemini awards best photography in an information program or series andre dupuis india quest for himalayastyle backgrounddffdd won best picturediting in an information program or series rd annual gemini awards best picturediting in an information program or series joshua eady india quest for himalayastyle background ffdddd nominated best picturediting in an information program or series th gemini award nominees for departures joshua eady cuba style background ffdddd nominated best picturediting in an information program or series jordan krug zambia style background ffdddd nominated best picturediting in an information program or series alvin campa cambodia style backgrounddffdd won best direction in a lifestyle practical information program or series andre dupuis libya style background ffdddd nominated best photography in an information program or series andre dupuis mongolia tribes and tribulationstyle backgrounddffdd won best host in a lifestyle practical information or performing arts program or seriescott wilson mongolia tribes and tribulationstyle background ffdddd nominated best photography in an information program or series th annual gemini awards andre dupuis ethiopia saints and snakestyle background ffdddd nominated best picturediting in an information program or series jordan krug papua new guinea fire and water style background ffdddd nominated best picturediting in an information program or series joshua eady russia the bull of winter style background ffdddd nominated see also madventures a backpacker adventure journal word travels a travel series alson oln externalinks category canadian reality television series category s canadian television series category s canadian television series category canadian television series debuts category canadian television series endings category canadian travel television series category adventureality television series category adventure travel","main_words":["departures","also","promoted","departures","travel_adventure","television_series","original","canadian","production","created","andre","dupuis","scott","wilson","produced","jessie","wallace","steven","bray","worldwide","premiere","withe","canadian","channel","march","continued","total","episodes","ending","june","series","wilson","host","andre","dupuis","director","said","wilson","worked","another","show","buthat","seemed","kind","dry","carrying","across","feelings","thathey","thinking","wilson","could","probably","better","job","team","behind","series","met","film","school","scott","wilson","andre","dupuis","jessie","wallace","worked","projects","together","college","also","came","steven","bray","alvin","editor","stephen","audio","show","features","high_school","wilson","justin","travelling","various_locations","around","world","accompanied","dupuis","show","described","abouthe","journey","rather","justhe","destinations","first","season","departures","aired","outdoor","life","network","canadand","began","airing","internationally","national_geographic","adventure","channel","worldwide","beginning","october","second","season","began","airing","outdoor","life","network","january","third","season","began","airing","outdoor","life","network","march","starting","april","departures","began","airing","every","friday","night","stations","across","canada","p","broadcast","city","toronto","high","definition","channel","final","episode","series","departures","saturday_june","series","airs","germany","denmark","hong_kong","countries","national_geographic","adventure","channel","air","canada","international","flights","broadcast","europe","middleast","asiand","asia_pacific","travel_channel","international","june","season","two","begin","january","travel_channel","international","series","announced","facebook","page","departures","featured","online","video","website","starting","february","episodes","firstwo","seasons","show","thirteen","episodes","third","episodes","fourth","season","made","wilson","working","new","show","descending","aired","february","wilson","believes","thathere","little","chance","fourth","season","places","visited","season","width","width","valign_top","season","canada","ocean","jordan","india","x","island","japan","x","cook","islands","new_zealand","x","thailand","cambodia","canada","pushing","north","width","valign_top","season","morocco","libya","brazil","x","cuba","mongolia","x","iceland","zambia","madagascar","chile","x","antarctica","width","valign_top","season","russia","x","sri_lanka","vietnam","papua_new_guinea","x","ecuador","ethiopia","x","rwanda","north_korea","x","indonesia","x","australia","canada","golden","awards","class","wikitable","year","category","result","best","documentary","series","jessie","wallace","steven","bray","india","quest","himalayas","cambodia","style","backgrounddffdd","best","directing","director","andre","dupuis","india","quest","backgrounddffdd","gemini","awards","class","wikitable","year","category","result","best","photography","information_program","series","annual","gemini","awards","best","photography","information_program","series","andre","dupuis","india","quest","backgrounddffdd","best","picturediting","information_program","series","annual","gemini","awards","best","picturediting","information_program","series","joshua","eady","india","quest","background","ffdddd","nominated","best","picturediting","information_program","series","th","gemini","award","departures","joshua","eady","cuba","style","background","ffdddd","nominated","best","picturediting","information_program","series","jordan","zambia","style","background","ffdddd","nominated","best","picturediting","information_program","series","alvin","cambodia","style","backgrounddffdd","best","direction","lifestyle","practical_information","program","series","andre","dupuis","libya","style","background","ffdddd","nominated","best","photography","information_program","series","andre","dupuis","mongolia","tribes","backgrounddffdd","best","host","lifestyle","practical_information","performing","arts","program","wilson","mongolia","tribes","background","ffdddd","nominated","best","photography","information_program","series","th_annual","gemini","awards","andre","dupuis","ethiopia","saints","background","ffdddd","nominated","best","picturediting","information_program","series","jordan","papua_new_guinea","fire","water","style","background","ffdddd","nominated","best","picturediting","information_program","series","joshua","eady","russia","bull","winter","style","background","ffdddd","nominated","see_also","backpacker","adventure","journal","word","travels","travel","series","alson","externalinks_category","canadian","reality","television_series_category_canadian","television_series_category_canadian","television_series_category_canadian","television_series","television_series_category_canadian"],"clean_bigrams":[["departures","also"],["also","promoted"],["travel","adventure"],["adventure","television"],["television","series"],["original","canadian"],["canadian","production"],["production","created"],["andre","dupuis"],["scott","wilson"],["jessie","wallace"],["steven","bray"],["worldwide","premiere"],["withe","canadian"],["canadian","channel"],["episodes","ending"],["june","series"],["wilson","host"],["host","andre"],["andre","dupuis"],["dupuis","director"],["wilson","worked"],["another","show"],["show","buthat"],["seemed","kind"],["carrying","across"],["feelings","thathey"],["wilson","could"],["could","probably"],["better","job"],["team","behind"],["series","met"],["film","school"],["school","scott"],["scott","wilson"],["wilson","andre"],["andre","dupuis"],["jessie","wallace"],["wallace","worked"],["projects","together"],["college","also"],["came","steven"],["steven","bray"],["bray","alvin"],["show","features"],["features","high"],["high","school"],["various","locations"],["locations","around"],["world","accompanied"],["abouthe","journey"],["journey","rather"],["justhe","destinations"],["first","season"],["departures","aired"],["outdoor","life"],["life","network"],["canadand","began"],["began","airing"],["airing","internationally"],["national","geographic"],["geographic","adventure"],["adventure","channel"],["channel","worldwide"],["worldwide","beginning"],["beginning","october"],["second","season"],["season","began"],["began","airing"],["outdoor","life"],["life","network"],["third","season"],["season","began"],["began","airing"],["outdoor","life"],["life","network"],["march","starting"],["april","departures"],["departures","began"],["began","airing"],["airing","every"],["every","friday"],["friday","night"],["stations","across"],["across","canada"],["p","broadcast"],["city","tv"],["tv","toronto"],["toronto","high"],["high","definition"],["definition","channel"],["final","episode"],["series","departures"],["saturday","june"],["june","series"],["series","airs"],["hong","kong"],["national","geographic"],["geographic","adventure"],["adventure","channel"],["air","canada"],["international","flights"],["flights","broadcast"],["europe","middleast"],["middleast","asiand"],["asiand","asia"],["asia","pacific"],["travel","channel"],["channel","international"],["june","season"],["season","two"],["begin","january"],["travel","channel"],["channel","international"],["series","announced"],["facebook","page"],["online","video"],["starting","february"],["february","episodes"],["firstwo","seasons"],["thirteen","episodes"],["fourth","season"],["new","show"],["show","descending"],["aired","february"],["february","wilson"],["wilson","believes"],["believes","thathere"],["little","chance"],["fourth","season"],["places","visited"],["season","width"],["width","valign"],["valign","top"],["top","season"],["season","canada"],["canada","ocean"],["jordan","india"],["india","x"],["island","japan"],["japan","x"],["x","cook"],["cook","islands"],["islands","new"],["new","zealand"],["zealand","x"],["x","thailand"],["thailand","cambodia"],["cambodia","canada"],["canada","pushing"],["pushing","north"],["north","width"],["width","valign"],["valign","top"],["top","season"],["season","morocco"],["morocco","libya"],["libya","brazil"],["brazil","x"],["x","cuba"],["cuba","mongolia"],["mongolia","x"],["x","iceland"],["iceland","zambia"],["zambia","madagascar"],["madagascar","chile"],["chile","x"],["x","antarctica"],["antarctica","width"],["width","valign"],["valign","top"],["top","season"],["season","russia"],["russia","x"],["x","sri"],["sri","lanka"],["lanka","vietnam"],["vietnam","papua"],["papua","new"],["new","guinea"],["guinea","x"],["x","ecuador"],["ecuador","ethiopia"],["ethiopia","x"],["x","rwanda"],["north","korea"],["korea","x"],["x","indonesia"],["indonesia","x"],["x","australia"],["australia","canada"],["canada","golden"],["awards","class"],["class","wikitable"],["wikitable","year"],["year","category"],["result","best"],["best","documentary"],["documentary","series"],["series","jessie"],["jessie","wallace"],["steven","bray"],["bray","india"],["india","quest"],["cambodia","style"],["style","backgrounddffdd"],["best","directing"],["directing","director"],["director","andre"],["andre","dupuis"],["dupuis","india"],["india","quest"],["gemini","awards"],["awards","class"],["class","wikitable"],["wikitable","year"],["year","category"],["result","best"],["best","photography"],["information","program"],["annual","gemini"],["gemini","awards"],["awards","best"],["best","photography"],["information","program"],["series","andre"],["andre","dupuis"],["dupuis","india"],["india","quest"],["best","picturediting"],["information","program"],["annual","gemini"],["gemini","awards"],["awards","best"],["best","picturediting"],["information","program"],["series","joshua"],["joshua","eady"],["eady","india"],["india","quest"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","picturediting"],["information","program"],["series","th"],["th","gemini"],["gemini","award"],["departures","joshua"],["joshua","eady"],["eady","cuba"],["cuba","style"],["style","background"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","picturediting"],["information","program"],["series","jordan"],["zambia","style"],["style","background"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","picturediting"],["information","program"],["series","alvin"],["cambodia","style"],["style","backgrounddffdd"],["best","direction"],["lifestyle","practical"],["practical","information"],["information","program"],["series","andre"],["andre","dupuis"],["dupuis","libya"],["libya","style"],["style","background"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","photography"],["information","program"],["series","andre"],["andre","dupuis"],["dupuis","mongolia"],["mongolia","tribes"],["best","host"],["lifestyle","practical"],["practical","information"],["performing","arts"],["arts","program"],["wilson","mongolia"],["mongolia","tribes"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","photography"],["information","program"],["series","th"],["th","annual"],["annual","gemini"],["gemini","awards"],["awards","andre"],["andre","dupuis"],["dupuis","ethiopia"],["ethiopia","saints"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","picturediting"],["information","program"],["series","jordan"],["papua","new"],["new","guinea"],["guinea","fire"],["water","style"],["style","background"],["background","ffdddd"],["ffdddd","nominated"],["nominated","best"],["best","picturediting"],["information","program"],["series","joshua"],["joshua","eady"],["eady","russia"],["winter","style"],["style","background"],["background","ffdddd"],["ffdddd","nominated"],["nominated","see"],["see","also"],["backpacker","adventure"],["adventure","journal"],["journal","word"],["word","travels"],["travel","series"],["series","alson"],["externalinks","category"],["category","canadian"],["canadian","reality"],["reality","television"],["television","series"],["series","category"],["category","canadian"],["canadian","television"],["television","series"],["series","category"],["category","canadian"],["canadian","television"],["television","series"],["series","category"],["category","canadian"],["canadian","television"],["television","series"],["series","debuts"],["debuts","category"],["category","canadian"],["canadian","television"],["television","series"],["series","category"],["category","canadian"],["canadian","travel"],["travel","television"],["television","series"],["series","category"],["television","series"],["series","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["departures also","also promoted","travel adventure","adventure television","television series","original canadian","canadian production","production created","andre dupuis","scott wilson","jessie wallace","steven bray","worldwide premiere","withe canadian","canadian channel","episodes ending","june series","wilson host","host andre","andre dupuis","dupuis director","wilson worked","another show","show buthat","seemed kind","carrying across","feelings thathey","wilson could","could probably","better job","team behind","series met","film school","school scott","scott wilson","wilson andre","andre dupuis","jessie wallace","wallace worked","projects together","college also","came steven","steven bray","bray alvin","show features","features high","high school","various locations","locations around","world accompanied","abouthe journey","journey rather","justhe destinations","first season","departures aired","outdoor life","life network","canadand began","began airing","airing internationally","national geographic","geographic adventure","adventure channel","channel worldwide","worldwide beginning","beginning october","second season","season began","began airing","outdoor life","life network","third season","season began","began airing","outdoor life","life network","march starting","april departures","departures began","began airing","airing every","every friday","friday night","stations across","across canada","p broadcast","city tv","tv toronto","toronto high","high definition","definition channel","final episode","series departures","saturday june","june series","series airs","hong kong","national geographic","geographic adventure","adventure channel","air canada","international flights","flights broadcast","europe middleast","middleast asiand","asiand asia","asia pacific","travel channel","channel international","june season","season two","begin january","travel channel","channel international","series announced","facebook page","online video","starting february","february episodes","firstwo seasons","thirteen episodes","fourth season","new show","show descending","aired february","february wilson","wilson believes","believes thathere","little chance","fourth season","places visited","season width","width valign","valign top","top season","season canada","canada ocean","jordan india","india x","island japan","japan x","x cook","cook islands","islands new","new zealand","zealand x","x thailand","thailand cambodia","cambodia canada","canada pushing","pushing north","north width","width valign","valign top","top season","season morocco","morocco libya","libya brazil","brazil x","x cuba","cuba mongolia","mongolia x","x iceland","iceland zambia","zambia madagascar","madagascar chile","chile x","x antarctica","antarctica width","width valign","valign top","top season","season russia","russia x","x sri","sri lanka","lanka vietnam","vietnam papua","papua new","new guinea","guinea x","x ecuador","ecuador ethiopia","ethiopia x","x rwanda","north korea","korea x","x indonesia","indonesia x","x australia","australia canada","canada golden","awards class","wikitable year","year category","result best","best documentary","documentary series","series jessie","jessie wallace","steven bray","bray india","india quest","cambodia style","style backgrounddffdd","best directing","directing director","director andre","andre dupuis","dupuis india","india quest","gemini awards","awards class","wikitable year","year category","result best","best photography","information program","annual gemini","gemini awards","awards best","best photography","information program","series andre","andre dupuis","dupuis india","india quest","best picturediting","information program","annual gemini","gemini awards","awards best","best picturediting","information program","series joshua","joshua eady","eady india","india quest","background ffdddd","ffdddd nominated","nominated best","best picturediting","information program","series th","th gemini","gemini award","departures joshua","joshua eady","eady cuba","cuba style","background ffdddd","ffdddd nominated","nominated best","best picturediting","information program","series jordan","zambia style","background ffdddd","ffdddd nominated","nominated best","best picturediting","information program","series alvin","cambodia style","style backgrounddffdd","best direction","lifestyle practical","practical information","information program","series andre","andre dupuis","dupuis libya","libya style","background ffdddd","ffdddd nominated","nominated best","best photography","information program","series andre","andre dupuis","dupuis mongolia","mongolia tribes","best host","lifestyle practical","practical information","performing arts","arts program","wilson mongolia","mongolia tribes","background ffdddd","ffdddd nominated","nominated best","best photography","information program","series th","th annual","annual gemini","gemini awards","awards andre","andre dupuis","dupuis ethiopia","ethiopia saints","background ffdddd","ffdddd nominated","nominated best","best picturediting","information program","series jordan","papua new","new guinea","guinea fire","water style","background ffdddd","ffdddd nominated","nominated best","best picturediting","information program","series joshua","joshua eady","eady russia","winter style","background ffdddd","ffdddd nominated","nominated see","see also","backpacker adventure","adventure journal","journal word","word travels","travel series","series alson","externalinks category","category canadian","canadian reality","reality television","television series","series category","category canadian","canadian television","television series","series category","category canadian","canadian television","television series","series category","category canadian","canadian television","television series","series debuts","debuts category","category canadian","canadian television","television series","series category","category canadian","canadian travel","travel television","television series","series category","television series","series category","category adventure","adventure travel"],"new_description":"departures also promoted departures travel_adventure television_series original canadian production created andre dupuis scott wilson produced jessie wallace steven bray worldwide premiere withe canadian channel march continued total episodes ending june series wilson host andre dupuis director said wilson worked another show buthat seemed kind dry carrying across feelings thathey thinking wilson could probably better job team behind series met film school scott wilson andre dupuis jessie wallace worked projects together college also came steven bray alvin editor stephen audio show features high_school wilson justin travelling various_locations around world accompanied dupuis show described abouthe journey rather justhe destinations first season departures aired outdoor life network canadand began airing internationally national_geographic adventure channel worldwide beginning october second season began airing outdoor life network january third season began airing outdoor life network march starting april departures began airing every friday night stations across canada p broadcast city tv toronto high definition channel final episode series departures saturday_june series airs germany denmark hong_kong countries national_geographic adventure channel air canada international flights broadcast europe middleast asiand asia_pacific travel_channel international june season two begin january travel_channel international series announced facebook page departures featured online video website starting february episodes firstwo seasons show thirteen episodes third episodes fourth season made wilson working new show descending aired february wilson believes thathere little chance fourth season places visited season width width valign_top season canada ocean jordan india x island japan x cook islands new_zealand x thailand cambodia canada pushing north width valign_top season morocco libya brazil x cuba mongolia x iceland zambia madagascar chile x antarctica width valign_top season russia x sri_lanka vietnam papua_new_guinea x ecuador ethiopia x rwanda north_korea x indonesia x australia canada golden awards class wikitable year category result best documentary series jessie wallace steven bray india quest himalayas cambodia style backgrounddffdd best directing director andre dupuis india quest backgrounddffdd gemini awards class wikitable year category result best photography information_program series annual gemini awards best photography information_program series andre dupuis india quest backgrounddffdd best picturediting information_program series annual gemini awards best picturediting information_program series joshua eady india quest background ffdddd nominated best picturediting information_program series th gemini award departures joshua eady cuba style background ffdddd nominated best picturediting information_program series jordan zambia style background ffdddd nominated best picturediting information_program series alvin cambodia style backgrounddffdd best direction lifestyle practical_information program series andre dupuis libya style background ffdddd nominated best photography information_program series andre dupuis mongolia tribes backgrounddffdd best host lifestyle practical_information performing arts program wilson mongolia tribes background ffdddd nominated best photography information_program series th_annual gemini awards andre dupuis ethiopia saints background ffdddd nominated best picturediting information_program series jordan papua_new_guinea fire water style background ffdddd nominated best picturediting information_program series joshua eady russia bull winter style background ffdddd nominated see_also backpacker adventure journal word travels travel series alson externalinks_category canadian reality television_series_category_canadian television_series_category_canadian television_series_category_canadian television_series debuts_category_canadian television_series_category_canadian travel_television_series_category television_series_category_adventure_travel"},{"title":"DestinAsian","description":"destinasian is a luxury travel and lifestyle magazine published in jakarta by destinasian media group established in the magazine is published six times a year has readers and is distributed inewsstands hotels and airline lounges across asiand the pacific region and is also available in a digital edition through an app source presskit focused entirely on destinations in asiand the pacific the magazine covers new developments in high end restaurants hotels airlines and tourist attractions as well as publishing long form narrative features fashion spreads and photographic essays annual features include the readers choice awards and the luxe list an editorial selection of the best hotels opened in the previous year in april destinasian launched a new redesign by its creative director tom brown updating its typography editorial grid and editorial architecture see also da man da man magazinexternalinks the official destinasian magazine website category establishments indonesia category bi monthly magazines category indonesian magazines category lifestyle magazines category magazinestablished in category media in jakarta category tourismagazines","main_words":["destinasian","luxury","travel","jakarta","destinasian","media_group","established","magazine_published","six","times","year","readers","distributed","hotels","airline","lounges","across","asiand","pacific","region","also_available","digital","edition","app","source","focused","entirely","destinations","asiand","pacific","magazine","covers","new","developments","high_end_restaurants","hotels","airlines","tourist_attractions","well","publishing","long","form","narrative","features","fashion","spreads","photographic","essays","annual","features","include","readers","choice","awards","list","editorial","selection","best","hotels","opened","previous","year","april","destinasian","launched","new","redesign","creative","director","tom","brown","editorial","grid","editorial","architecture","see_also","man","man","official","destinasian","magazine","website_category_establishments","indonesia","category","monthly_magazines_category","indonesian","magazines_category","lifestyle_magazines_category_magazinestablished","category_media","jakarta","category_tourismagazines"],"clean_bigrams":[["luxury","travel"],["lifestyle","magazine"],["magazine","published"],["destinasian","media"],["media","group"],["group","established"],["magazine","published"],["published","six"],["six","times"],["airline","lounges"],["lounges","across"],["across","asiand"],["pacific","region"],["also","available"],["digital","edition"],["app","source"],["focused","entirely"],["magazine","covers"],["covers","new"],["new","developments"],["high","end"],["end","restaurants"],["restaurants","hotels"],["hotels","airlines"],["tourist","attractions"],["publishing","long"],["long","form"],["form","narrative"],["narrative","features"],["features","fashion"],["fashion","spreads"],["photographic","essays"],["essays","annual"],["annual","features"],["features","include"],["readers","choice"],["choice","awards"],["editorial","selection"],["best","hotels"],["hotels","opened"],["previous","year"],["april","destinasian"],["destinasian","launched"],["new","redesign"],["creative","director"],["director","tom"],["tom","brown"],["editorial","grid"],["editorial","architecture"],["architecture","see"],["see","also"],["official","destinasian"],["destinasian","magazine"],["magazine","website"],["website","category"],["category","establishments"],["establishments","indonesia"],["indonesia","category"],["monthly","magazines"],["magazines","category"],["category","indonesian"],["indonesian","magazines"],["magazines","category"],["category","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","magazinestablished"],["category","media"],["jakarta","category"],["category","tourismagazines"]],"all_collocations":["luxury travel","lifestyle magazine","magazine published","destinasian media","media group","group established","magazine published","published six","six times","airline lounges","lounges across","across asiand","pacific region","also available","digital edition","app source","focused entirely","magazine covers","covers new","new developments","high end","end restaurants","restaurants hotels","hotels airlines","tourist attractions","publishing long","long form","form narrative","narrative features","features fashion","fashion spreads","photographic essays","essays annual","annual features","features include","readers choice","choice awards","editorial selection","best hotels","hotels opened","previous year","april destinasian","destinasian launched","new redesign","creative director","director tom","tom brown","editorial grid","editorial architecture","architecture see","see also","official destinasian","destinasian magazine","magazine website","website category","category establishments","establishments indonesia","indonesia category","monthly magazines","magazines category","category indonesian","indonesian magazines","magazines category","category lifestyle","lifestyle magazines","magazines category","category magazinestablished","category media","jakarta category","category tourismagazines"],"new_description":"destinasian luxury travel lifestyle_magazine_published jakarta destinasian media_group established magazine_published six times year readers distributed hotels airline lounges across asiand pacific region also_available digital edition app source focused entirely destinations asiand pacific magazine covers new developments high_end_restaurants hotels airlines tourist_attractions well publishing long form narrative features fashion spreads photographic essays annual features include readers choice awards list editorial selection best hotels opened previous year april destinasian launched new redesign creative director tom brown editorial grid editorial architecture see_also man man official destinasian magazine website_category_establishments indonesia category monthly_magazines_category indonesian magazines_category lifestyle_magazines_category_magazinestablished category_media jakarta category_tourismagazines"},{"title":"Destination Canada","description":"footnotes destination canada formerly the canadian tourism commission ctcct was created in to promote tourism in canada it is a crown corporation wholly owned by the government of canada which reports to the minister of industry canada minister of industry destination canada states that it is dedicated to promoting the growth and profitability of the canadian tourism industry by marketing canadas a desirable travel destination and providing timely and accurate information to the canadian tourism industry to assist in its decision making it also claims to recognise thathe greatest source of tourism knowledge and expertise rests withe tourism industry itself therefore destination canada designs delivers and funds marketing and research initiatives in partnership with province provincial and regional tourism associations government agencies hoteliers tour operators airlines and attractions managers it has operated marketing campaigns in australia brazil china france germany india japan south korea mexico the united kingdom and the united states the organization is headed by a person board of directors which is overseen by a president and chief executive officer chosen from the combined private and public sector nature of the industry to representhe various regions of canadas well as the country s demographics of canada demographicomposition externalinks official website category canadian federal crown corporations category tourism in canada category tourism agencies category government agenciestablished in category innovation science and economic development canada","main_words":["footnotes","destination","canada","formerly","canadian","tourism","commission","created","promote_tourism","canada","crown","corporation","wholly","owned","government","canada","reports","minister","industry","canada","minister","industry","destination","canada","states","dedicated","promoting","growth","profitability","canadian","tourism_industry","marketing","canadas","desirable","travel_destination","providing","timely","accurate","information","canadian","tourism_industry","assist","decision_making","also","claims","thathe","greatest","source","tourism","knowledge","expertise","rests","withe","tourism_industry","therefore","destination","canada","designs","funds","marketing","research","initiatives","partnership","province","provincial","regional_tourism","associations","government_agencies","hoteliers","tour_operators","airlines","attractions","managers","operated","marketing","campaigns","australia","brazil","china","france","germany","india","japan","south_korea","mexico","united_kingdom","united_states","organization","headed","person","board","directors","overseen","president","chief_executive_officer","chosen","combined","private","public","sector","nature","industry","representhe","various","regions","canadas","well","country","demographics","canada","externalinks_official_website_category","canadian","federal","crown","corporations","category_tourism","canada_category_tourism","agenciestablished","category","innovation","science","economic_development","canada"],"clean_bigrams":[["footnotes","destination"],["destination","canada"],["canada","formerly"],["canadian","tourism"],["tourism","commission"],["promote","tourism"],["crown","corporation"],["corporation","wholly"],["wholly","owned"],["industry","canada"],["canada","minister"],["industry","destination"],["destination","canada"],["canada","states"],["canadian","tourism"],["tourism","industry"],["marketing","canadas"],["desirable","travel"],["travel","destination"],["providing","timely"],["accurate","information"],["canadian","tourism"],["tourism","industry"],["decision","making"],["also","claims"],["thathe","greatest"],["greatest","source"],["tourism","knowledge"],["expertise","rests"],["rests","withe"],["withe","tourism"],["tourism","industry"],["therefore","destination"],["destination","canada"],["canada","designs"],["funds","marketing"],["research","initiatives"],["province","provincial"],["regional","tourism"],["tourism","associations"],["associations","government"],["government","agencies"],["agencies","hoteliers"],["hoteliers","tour"],["tour","operators"],["operators","airlines"],["attractions","managers"],["operated","marketing"],["marketing","campaigns"],["australia","brazil"],["brazil","china"],["china","france"],["france","germany"],["germany","india"],["india","japan"],["japan","south"],["south","korea"],["korea","mexico"],["united","kingdom"],["united","states"],["person","board"],["chief","executive"],["executive","officer"],["officer","chosen"],["combined","private"],["public","sector"],["sector","nature"],["representhe","various"],["various","regions"],["canadas","well"],["externalinks","official"],["official","website"],["website","category"],["category","canadian"],["canadian","federal"],["federal","crown"],["crown","corporations"],["corporations","category"],["category","tourism"],["canada","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","government"],["government","agenciestablished"],["category","innovation"],["innovation","science"],["economic","development"],["development","canada"]],"all_collocations":["footnotes destination","destination canada","canada formerly","canadian tourism","tourism commission","promote tourism","crown corporation","corporation wholly","wholly owned","industry canada","canada minister","industry destination","destination canada","canada states","canadian tourism","tourism industry","marketing canadas","desirable travel","travel destination","providing timely","accurate information","canadian tourism","tourism industry","decision making","also claims","thathe greatest","greatest source","tourism knowledge","expertise rests","rests withe","withe tourism","tourism industry","therefore destination","destination canada","canada designs","funds marketing","research initiatives","province provincial","regional tourism","tourism associations","associations government","government agencies","agencies hoteliers","hoteliers tour","tour operators","operators airlines","attractions managers","operated marketing","marketing campaigns","australia brazil","brazil china","china france","france germany","germany india","india japan","japan south","south korea","korea mexico","united kingdom","united states","person board","chief executive","executive officer","officer chosen","combined private","public sector","sector nature","representhe various","various regions","canadas well","externalinks official","official website","website category","category canadian","canadian federal","federal crown","crown corporations","corporations category","category tourism","canada category","category tourism","tourism agencies","agencies category","category government","government agenciestablished","category innovation","innovation science","economic development","development canada"],"new_description":"footnotes destination canada formerly canadian tourism commission created promote_tourism canada crown corporation wholly owned government canada reports minister industry canada minister industry destination canada states dedicated promoting growth profitability canadian tourism_industry marketing canadas desirable travel_destination providing timely accurate information canadian tourism_industry assist decision_making also claims thathe greatest source tourism knowledge expertise rests withe tourism_industry therefore destination canada designs funds marketing research initiatives partnership province provincial regional_tourism associations government_agencies hoteliers tour_operators airlines attractions managers operated marketing campaigns australia brazil china france germany india japan south_korea mexico united_kingdom united_states organization headed person board directors overseen president chief_executive_officer chosen combined private public sector nature industry representhe various regions canadas well country demographics canada externalinks_official_website_category canadian federal crown corporations category_tourism canada_category_tourism agencies_category_government agenciestablished category innovation science economic_development canada"},{"title":"Destination Cleveland","description":"destination cleveland formerly the convention and visitors bureau of greater cleveland inc positively cleveland originally the convention board of the cleveland chamber of commerce is the convention and visitor bureau for the greater cleveland area it was incorporated as an independent organization in and adopted the positively cleveland name in destination cleveland is a non profit organization that works to bring convention meeting conventions and tourist s to cleveland ohio each year million convention and leisure visitors bring billion into the local economy cleveland ohio cvb media center hospitality industry fast facts that makes the convention and tourism business one of the largest industries in cuyahoga county contact us destination cleveland s offices are located at euclid avenue athe corner of e th street and euclid in downtown cleveland a visitor information center is also housed and operated in the building the staff of destination cleveland aresponsible for marketing the city of cleveland the greater cleveland region to vacation travelers business travelers meeting planners and group travel planners additionally the convention sales and servicestaff assists meeting planners with selecting meeting facilities hotels for meeting attendees unique venues and support services destination cleveland is a member organization promoting more than members from the hospitality industry including restaurants transportation hotels events attractions and entertainment about membership withe cleveland convention and visitors bureau references externalinks destination cleveland category organizations based in cleveland category organizations established in category tourism agencies category tourism in ohio","main_words":["destination","cleveland","formerly","convention_visitors_bureau","greater","cleveland","inc","positively","cleveland","originally","convention","board","cleveland","chamber","commerce","convention","visitor","bureau","greater","cleveland","area","incorporated","independent","organization","adopted","positively","cleveland","name","destination","cleveland","non_profit","organization","works","bring","convention_meeting","conventions","tourist","cleveland_ohio","year","million","convention","leisure","visitors","bring","billion","local_economy","cleveland_ohio","cvb","media","center","hospitality_industry","fast","facts","makes","convention","tourism_business","one","largest","industries","county","contact","us","destination","cleveland","offices","located","avenue","athe_corner","e","th_street","downtown","cleveland","visitor_information_center","also","housed","operated","building","staff","destination","cleveland","aresponsible","marketing","city","cleveland","greater","cleveland","region","vacation","travelers","business_travelers","meeting","planners","group","travel","planners","additionally","convention","sales","assists","meeting","planners","selecting","meeting","facilities","hotels","meeting","attendees","unique","venues","support_services","destination","cleveland","member","organization","promoting","members","hospitality_industry","including","restaurants","transportation","hotels","events","attractions","entertainment","membership","withe","cleveland","convention_visitors_bureau","references_externalinks","destination","cleveland","category_organizations_based","cleveland","category_organizations","established","category_tourism","agencies_category_tourism","ohio"],"clean_bigrams":[["destination","cleveland"],["cleveland","formerly"],["visitors","bureau"],["greater","cleveland"],["cleveland","inc"],["inc","positively"],["positively","cleveland"],["cleveland","originally"],["convention","board"],["cleveland","chamber"],["visitor","bureau"],["greater","cleveland"],["cleveland","area"],["independent","organization"],["positively","cleveland"],["cleveland","name"],["destination","cleveland"],["non","profit"],["profit","organization"],["bring","convention"],["convention","meeting"],["meeting","conventions"],["cleveland","ohio"],["year","million"],["million","convention"],["leisure","visitors"],["visitors","bring"],["bring","billion"],["local","economy"],["economy","cleveland"],["cleveland","ohio"],["ohio","cvb"],["cvb","media"],["media","center"],["center","hospitality"],["hospitality","industry"],["industry","fast"],["fast","facts"],["tourism","business"],["business","one"],["largest","industries"],["county","contact"],["contact","us"],["us","destination"],["destination","cleveland"],["avenue","athe"],["athe","corner"],["e","th"],["th","street"],["downtown","cleveland"],["visitor","information"],["information","center"],["also","housed"],["destination","cleveland"],["cleveland","aresponsible"],["greater","cleveland"],["cleveland","region"],["vacation","travelers"],["travelers","business"],["business","travelers"],["travelers","meeting"],["meeting","planners"],["group","travel"],["travel","planners"],["planners","additionally"],["convention","sales"],["assists","meeting"],["meeting","planners"],["selecting","meeting"],["meeting","facilities"],["facilities","hotels"],["meeting","attendees"],["attendees","unique"],["unique","venues"],["support","services"],["services","destination"],["destination","cleveland"],["member","organization"],["organization","promoting"],["hospitality","industry"],["industry","including"],["including","restaurants"],["restaurants","transportation"],["transportation","hotels"],["hotels","events"],["events","attractions"],["membership","withe"],["withe","cleveland"],["cleveland","convention"],["visitors","bureau"],["bureau","references"],["references","externalinks"],["externalinks","destination"],["destination","cleveland"],["cleveland","category"],["category","organizations"],["organizations","based"],["cleveland","category"],["category","organizations"],["organizations","established"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"]],"all_collocations":["destination cleveland","cleveland formerly","visitors bureau","greater cleveland","cleveland inc","inc positively","positively cleveland","cleveland originally","convention board","cleveland chamber","visitor bureau","greater cleveland","cleveland area","independent organization","positively cleveland","cleveland name","destination cleveland","non profit","profit organization","bring convention","convention meeting","meeting conventions","cleveland ohio","year million","million convention","leisure visitors","visitors bring","bring billion","local economy","economy cleveland","cleveland ohio","ohio cvb","cvb media","media center","center hospitality","hospitality industry","industry fast","fast facts","tourism business","business one","largest industries","county contact","contact us","us destination","destination cleveland","avenue athe","athe corner","e th","th street","downtown cleveland","visitor information","information center","also housed","destination cleveland","cleveland aresponsible","greater cleveland","cleveland region","vacation travelers","travelers business","business travelers","travelers meeting","meeting planners","group travel","travel planners","planners additionally","convention sales","assists meeting","meeting planners","selecting meeting","meeting facilities","facilities hotels","meeting attendees","attendees unique","unique venues","support services","services destination","destination cleveland","member organization","organization promoting","hospitality industry","industry including","including restaurants","restaurants transportation","transportation hotels","hotels events","events attractions","membership withe","withe cleveland","cleveland convention","visitors bureau","bureau references","references externalinks","externalinks destination","destination cleveland","cleveland category","category organizations","organizations based","cleveland category","category organizations","organizations established","category tourism","tourism agencies","agencies category","category tourism"],"new_description":"destination cleveland formerly convention_visitors_bureau greater cleveland inc positively cleveland originally convention board cleveland chamber commerce convention visitor bureau greater cleveland area incorporated independent organization adopted positively cleveland name destination cleveland non_profit organization works bring convention_meeting conventions tourist cleveland_ohio year million convention leisure visitors bring billion local_economy cleveland_ohio cvb media center hospitality_industry fast facts makes convention tourism_business one largest industries county contact us destination cleveland offices located avenue athe_corner e th_street downtown cleveland visitor_information_center also housed operated building staff destination cleveland aresponsible marketing city cleveland greater cleveland region vacation travelers business_travelers meeting planners group travel planners additionally convention sales assists meeting planners selecting meeting facilities hotels meeting attendees unique venues support_services destination cleveland member organization promoting members hospitality_industry including restaurants transportation hotels events attractions entertainment membership withe cleveland convention_visitors_bureau references_externalinks destination cleveland category_organizations_based cleveland category_organizations established category_tourism agencies_category_tourism ohio"},{"title":"Destination management","description":"a destination management company dmc is a professional services company possessing extensive local knowledgexpertise and resourcespecializing in the design and implementation of events activities tours transportation and program logistics according to a dmcompany website a dmc is a service professional company with a wide range of knowledge and experience over the conditions and touristic resources of a region tropical incentives dmc url wwwtropicalincentivescom access date languages mx first genotipo laboratorio last creativo in reality there are very few destination management organizations management implies control and rarely does a tourism organisation have control over the destination s resourcesuch as in the case of the new zealand government s development of the resortown of rotorua in the first half of the th centurypike s destination marketing essentialsecond edition oxford routledge the majority of thesentities aregarded as destination marketing organizationseepike s page s destination marketing organizations andestination marketing a narrative analysis of the literature tourismanagement jtourman a dmc provides a ground service based on local knowledge of their given destinations theservices can be transportation hotel accommodation restaurants activities excursions conference venues themed events gala dinners and logistics meetings incentive schemes as well as helping with overcoming language barrier s by acting as groupurchasing organization purchasing consortia dmcs can provide preferential rates based on the buying power they have witheir preferred suppliers other services that a dmcan deliver areception at airports or bustations gastronomy tours theme parties traditional or modern excursions and typical activities of the area projects teamwork and collaborative gifts for workgroups decoration for events entertainment eventsuggestions and support for housingraphic design and event signage recommendations agents customs car audio and video differences with similar companies while the term dmc is being widely used to identify a travel trade professional service the service being offered is essentially the use of those ingredientservices and products already available at a particular destination and to which the user has provided no contribution other than use these functions are performed by travel agency travel agents and tour operator s in thisense the dmcan be distinguished from otherelated companies as tourist agency a company offering travel productsuch as airline tickets hotel reservations cruises and excursions offered by tour operators tour operator a company that amalgamates travel products toffer tours and excursions convention bureau an agency that manages conferences and conventions references what is a dmc s incoming tour operators category logistics companies category travel related organizations category tourism agencies","main_words":["destination","management","company","dmc","professional","services","company","extensive","local","design","implementation","events","activities","tours","transportation","program","logistics","according","website","dmc","service","professional","company","wide_range","knowledge","experience","conditions","touristic","resources","region","tropical","incentives","dmc","url","access_date","languages","first","last","reality","destination","management","organizations","management","implies","control","rarely","tourism_organisation","control","destination","case","new_zealand","government","development","resortown","first_half","th","destination_marketing","edition","oxford","routledge","majority","destination_marketing","page","destination_marketing_organizations","andestination","marketing","narrative","analysis","literature","tourismanagement","dmc","provides","ground","service","based","local","knowledge","given","destinations","theservices","transportation","hotel","accommodation","restaurants","activities","excursions","conference","venues","themed","events","dinners","logistics","meetings","incentive","schemes","well","helping","overcoming","language","barrier","acting","organization","purchasing","provide","rates","based","buying","power","witheir","preferred","suppliers","services","deliver","airports","gastronomy","tours","theme","parties","traditional","modern","excursions","typical","activities","area","projects","collaborative","gifts","decoration","events","entertainment","support","design","event","signage","recommendations","agents","customs","car","audio","video","differences","similar","companies","term","dmc","widely_used","identify","travel_trade","professional","service","service","offered","essentially","use","products","already","available","particular","destination","user","provided","contribution","use","functions","performed","travel_agency","travel_agents","tour_operator","thisense","distinguished","otherelated","companies","tourist","agency","company","offering","travel","productsuch","airline","tickets","hotel","reservations","cruises","excursions","offered","tour_operators","tour_operator","company","travel","products","toffer","tours","excursions","convention_bureau","agency","manages","conferences","conventions","references","dmc","incoming","tour_operators","category","logistics","related","agencies"],"clean_bigrams":[["destination","management"],["management","company"],["company","dmc"],["professional","services"],["services","company"],["extensive","local"],["events","activities"],["activities","tours"],["tours","transportation"],["program","logistics"],["logistics","according"],["service","professional"],["professional","company"],["wide","range"],["touristic","resources"],["region","tropical"],["tropical","incentives"],["incentives","dmc"],["dmc","url"],["access","date"],["date","languages"],["destination","management"],["management","organizations"],["organizations","management"],["management","implies"],["implies","control"],["tourism","organisation"],["new","zealand"],["zealand","government"],["first","half"],["destination","marketing"],["edition","oxford"],["oxford","routledge"],["destination","marketing"],["destination","marketing"],["marketing","organizations"],["organizations","andestination"],["andestination","marketing"],["narrative","analysis"],["literature","tourismanagement"],["dmc","provides"],["ground","service"],["service","based"],["local","knowledge"],["given","destinations"],["destinations","theservices"],["transportation","hotel"],["hotel","accommodation"],["accommodation","restaurants"],["restaurants","activities"],["activities","excursions"],["excursions","conference"],["conference","venues"],["venues","themed"],["themed","events"],["logistics","meetings"],["meetings","incentive"],["incentive","schemes"],["overcoming","language"],["language","barrier"],["organization","purchasing"],["rates","based"],["buying","power"],["witheir","preferred"],["preferred","suppliers"],["gastronomy","tours"],["tours","theme"],["theme","parties"],["parties","traditional"],["modern","excursions"],["typical","activities"],["area","projects"],["collaborative","gifts"],["events","entertainment"],["event","signage"],["signage","recommendations"],["recommendations","agents"],["agents","customs"],["customs","car"],["car","audio"],["video","differences"],["similar","companies"],["term","dmc"],["widely","used"],["travel","trade"],["trade","professional"],["professional","service"],["products","already"],["already","available"],["particular","destination"],["travel","agency"],["agency","travel"],["travel","agents"],["tour","operator"],["otherelated","companies"],["tourist","agency"],["company","offering"],["offering","travel"],["travel","productsuch"],["airline","tickets"],["tickets","hotel"],["hotel","reservations"],["reservations","cruises"],["excursions","offered"],["tour","operators"],["operators","tour"],["tour","operator"],["travel","products"],["products","toffer"],["toffer","tours"],["excursions","convention"],["convention","bureau"],["manages","conferences"],["conventions","references"],["incoming","tour"],["tour","operators"],["operators","category"],["category","logistics"],["logistics","companies"],["companies","category"],["category","travel"],["travel","related"],["related","organizations"],["organizations","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["destination management","management company","company dmc","professional services","services company","extensive local","events activities","activities tours","tours transportation","program logistics","logistics according","service professional","professional company","wide range","touristic resources","region tropical","tropical incentives","incentives dmc","dmc url","access date","date languages","destination management","management organizations","organizations management","management implies","implies control","tourism organisation","new zealand","zealand government","first half","destination marketing","edition oxford","oxford routledge","destination marketing","destination marketing","marketing organizations","organizations andestination","andestination marketing","narrative analysis","literature tourismanagement","dmc provides","ground service","service based","local knowledge","given destinations","destinations theservices","transportation hotel","hotel accommodation","accommodation restaurants","restaurants activities","activities excursions","excursions conference","conference venues","venues themed","themed events","logistics meetings","meetings incentive","incentive schemes","overcoming language","language barrier","organization purchasing","rates based","buying power","witheir preferred","preferred suppliers","gastronomy tours","tours theme","theme parties","parties traditional","modern excursions","typical activities","area projects","collaborative gifts","events entertainment","event signage","signage recommendations","recommendations agents","agents customs","customs car","car audio","video differences","similar companies","term dmc","widely used","travel trade","trade professional","professional service","products already","already available","particular destination","travel agency","agency travel","travel agents","tour operator","otherelated companies","tourist agency","company offering","offering travel","travel productsuch","airline tickets","tickets hotel","hotel reservations","reservations cruises","excursions offered","tour operators","operators tour","tour operator","travel products","products toffer","toffer tours","excursions convention","convention bureau","manages conferences","conventions references","incoming tour","tour operators","operators category","category logistics","logistics companies","companies category","category travel","travel related","related organizations","organizations category","category tourism","tourism agencies"],"new_description":"destination management company dmc professional services company extensive local design implementation events activities tours transportation program logistics according website dmc service professional company wide_range knowledge experience conditions touristic resources region tropical incentives dmc url access_date languages first last reality destination management organizations management implies control rarely tourism_organisation control destination case new_zealand government development resortown first_half th destination_marketing edition oxford routledge majority destination_marketing page destination_marketing_organizations andestination marketing narrative analysis literature tourismanagement dmc provides ground service based local knowledge given destinations theservices transportation hotel accommodation restaurants activities excursions conference venues themed events dinners logistics meetings incentive schemes well helping overcoming language barrier acting organization purchasing provide rates based buying power witheir preferred suppliers services deliver airports gastronomy tours theme parties traditional modern excursions typical activities area projects collaborative gifts decoration events entertainment support design event signage recommendations agents customs car audio video differences similar companies term dmc widely_used identify travel_trade professional service service offered essentially use products already available particular destination user provided contribution use functions performed travel_agency travel_agents tour_operator thisense distinguished otherelated companies tourist agency company offering travel productsuch airline tickets hotel reservations cruises excursions offered tour_operators tour_operator company travel products toffer tours excursions convention_bureau agency manages conferences conventions references dmc incoming tour_operators category logistics companies_category_travel related organizations_category_tourism agencies"},{"title":"Destination Marketing Association International","description":"brussels abbreviation dmai membership dmos and cvbs leader title president chief executive officer ceo leader name michael d gehrisch type industry trade group num staff region served worldwide main organ board of directors formation budget united states dollar us website wwwdestinationmarketingorg remarks destination marketing association international dmais a professional association professional organization representing destination marketing organization s and convention and visitor bureau s worldwide as the world s largest resource for official destination marketing organizations dmos destination marketing association international represents over professionals from destination marketing organizations in more than countries they provide members professionals industry partnerstudents and educators with educational resources networking opportunities and marketing benefits available worldwide they maintain an online bookstore and resourcenter an e mail discussion lists for members professional certificates andesignations pdm cdme an accreditation program and an official online travel portal officialtravelguidecom dmai alsowns the meeting informationetwork minthe meetings and convention database profile destination marketing association international dmais a professional organization representing destination marketing organizations and convention and visitor bureaus worldwide as the world s largest resource for official destination marketing organizations dmos destination marketing association international represents over professionals from destination marketing organizations in more than countries they provide members professionals industry partnerstudents and educators with educational resources networking opportunities and marketing benefits available worldwide they maintain an online bookstore and resourcenter an e mail discussion lists for members professional certificates andesignations pdm cdme an accreditation program and an official online travel portal officialtravelguidecom dmai alsowns thempowermintcom formerly called meeting informationetwork minthe meetings and convention database mission dmai s mission statement is to enhance the professionalism effectiveness and image of destination marketing organizations worldwide history the present dmai was founded in st louis by sales representatives of different us destinations as the association of convention secretaries whose goal was to share accurate information about conventions promote sound professional practices in the solicitation and servicing of meetings and conventions andevelop scientific principles of convention management after adding an international member to the group in the decision was made to change the name the following year to the international association of convention bureaus iacb in the association changed its name again to the international association of convention and visitors bureau iacvb in order to reflecthe growing importance of consumer travel in augusthe association changed its name to become destination marketing association international it was announced in march thathe organization would change its name once again to more accurately reflecthe changing role of destination marketing organizations the new name destinations international will be officially rolled out athe organization s annual meeting in montreal in july references externalinks destination marketing association international official website legacy website for the international association of convention visitor bureaus category tourism agencies category marketing organizations","main_words":["brussels","abbreviation","dmai","membership","dmos","leader_title","president","chief_executive_officer","ceo","leader_name","michael","type","industry_trade","group","num","staff","region","served","worldwide","main_organ","board","directors","formation","budget","united_states","dollar","us","website","remarks","destination_marketing","association_international","professional","association","professional","organization","representing","destination_marketing","organization","convention","visitor","bureau","worldwide","world","largest","resource","official","destination_marketing_organizations","dmos","destination_marketing","association_international","represents","professionals","destination_marketing_organizations","countries","provide","members","professionals","industry","educators","educational","resources","networking","opportunities","marketing","benefits","available","worldwide","maintain","online","bookstore","e","mail","discussion","lists","members","professional","accreditation","program","official","online_travel","portal","dmai","alsowns","meeting","informationetwork","meetings","convention","database","profile","destination_marketing","association_international","professional","organization","representing","destination_marketing_organizations","convention","visitor","bureaus","worldwide","world","largest","resource","official","destination_marketing_organizations","dmos","destination_marketing","association_international","represents","professionals","destination_marketing_organizations","countries","provide","members","professionals","industry","educators","educational","resources","networking","opportunities","marketing","benefits","available","worldwide","maintain","online","bookstore","e","mail","discussion","lists","members","professional","accreditation","program","official","online_travel","portal","dmai","alsowns","formerly","called","meeting","informationetwork","meetings","convention","database","mission","dmai","mission","statement","enhance","professionalism","effectiveness","image","destination_marketing_organizations","worldwide","history","present","dmai","founded","st_louis","sales","representatives","different","us","destinations","association","convention","secretaries","whose","goal","share","accurate","information","conventions","promote","sound","professional","practices","solicitation","meetings","conventions","andevelop","scientific","principles","convention","management","adding","group","decision","made","change","name","following_year","international_association","association","changed","name","international_association","convention_visitors_bureau","order","reflecthe","growing","importance","consumer","travel","augusthe","association","changed","name","become","destination_marketing","association_international","announced","march","thathe","organization","would","change","name","accurately","reflecthe","changing","role","destination_marketing_organizations","new","name","destinations","international","officially","rolled","athe","organization","annual","meeting","montreal","july","references_externalinks","destination_marketing","association_international","official_website","legacy","website","international_association","convention","visitor","bureaus","category_tourism","agencies_category"],"clean_bigrams":[["brussels","abbreviation"],["abbreviation","dmai"],["dmai","membership"],["membership","dmos"],["leader","title"],["title","president"],["president","chief"],["chief","executive"],["executive","officer"],["officer","ceo"],["ceo","leader"],["leader","name"],["name","michael"],["type","industry"],["industry","trade"],["trade","group"],["group","num"],["num","staff"],["staff","region"],["region","served"],["served","worldwide"],["worldwide","main"],["main","organ"],["organ","board"],["directors","formation"],["formation","budget"],["budget","united"],["united","states"],["states","dollar"],["dollar","us"],["us","website"],["remarks","destination"],["destination","marketing"],["marketing","association"],["association","international"],["professional","association"],["association","professional"],["professional","organization"],["organization","representing"],["representing","destination"],["destination","marketing"],["marketing","organization"],["convention","visitor"],["visitor","bureau"],["largest","resource"],["official","destination"],["destination","marketing"],["marketing","organizations"],["organizations","dmos"],["dmos","destination"],["destination","marketing"],["marketing","association"],["association","international"],["international","represents"],["destination","marketing"],["marketing","organizations"],["provide","members"],["members","professionals"],["professionals","industry"],["educational","resources"],["resources","networking"],["networking","opportunities"],["marketing","benefits"],["benefits","available"],["available","worldwide"],["online","bookstore"],["e","mail"],["mail","discussion"],["discussion","lists"],["members","professional"],["accreditation","program"],["official","online"],["online","travel"],["travel","portal"],["dmai","alsowns"],["meeting","informationetwork"],["convention","database"],["database","profile"],["profile","destination"],["destination","marketing"],["marketing","association"],["association","international"],["professional","organization"],["organization","representing"],["representing","destination"],["destination","marketing"],["marketing","organizations"],["convention","visitor"],["visitor","bureaus"],["bureaus","worldwide"],["largest","resource"],["official","destination"],["destination","marketing"],["marketing","organizations"],["organizations","dmos"],["dmos","destination"],["destination","marketing"],["marketing","association"],["association","international"],["international","represents"],["destination","marketing"],["marketing","organizations"],["provide","members"],["members","professionals"],["professionals","industry"],["educational","resources"],["resources","networking"],["networking","opportunities"],["marketing","benefits"],["benefits","available"],["available","worldwide"],["online","bookstore"],["e","mail"],["mail","discussion"],["discussion","lists"],["members","professional"],["accreditation","program"],["official","online"],["online","travel"],["travel","portal"],["dmai","alsowns"],["formerly","called"],["called","meeting"],["meeting","informationetwork"],["convention","database"],["database","mission"],["mission","dmai"],["mission","statement"],["professionalism","effectiveness"],["destination","marketing"],["marketing","organizations"],["organizations","worldwide"],["worldwide","history"],["present","dmai"],["st","louis"],["sales","representatives"],["different","us"],["us","destinations"],["convention","secretaries"],["secretaries","whose"],["whose","goal"],["share","accurate"],["accurate","information"],["conventions","promote"],["promote","sound"],["sound","professional"],["professional","practices"],["conventions","andevelop"],["andevelop","scientific"],["scientific","principles"],["convention","management"],["international","member"],["following","year"],["international","association"],["convention","bureaus"],["association","changed"],["international","association"],["visitors","bureau"],["reflecthe","growing"],["growing","importance"],["consumer","travel"],["augusthe","association"],["association","changed"],["become","destination"],["destination","marketing"],["marketing","association"],["association","international"],["march","thathe"],["thathe","organization"],["organization","would"],["would","change"],["accurately","reflecthe"],["reflecthe","changing"],["changing","role"],["destination","marketing"],["marketing","organizations"],["new","name"],["name","destinations"],["destinations","international"],["officially","rolled"],["athe","organization"],["annual","meeting"],["july","references"],["references","externalinks"],["externalinks","destination"],["destination","marketing"],["marketing","association"],["association","international"],["international","official"],["official","website"],["website","legacy"],["legacy","website"],["international","association"],["convention","visitor"],["visitor","bureaus"],["bureaus","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","marketing"],["marketing","organizations"]],"all_collocations":["brussels abbreviation","abbreviation dmai","dmai membership","membership dmos","leader title","title president","president chief","chief executive","executive officer","officer ceo","ceo leader","leader name","name michael","type industry","industry trade","trade group","group num","num staff","staff region","region served","served worldwide","worldwide main","main organ","organ board","directors formation","formation budget","budget united","united states","states dollar","dollar us","us website","remarks destination","destination marketing","marketing association","association international","professional association","association professional","professional organization","organization representing","representing destination","destination marketing","marketing organization","convention visitor","visitor bureau","largest resource","official destination","destination marketing","marketing organizations","organizations dmos","dmos destination","destination marketing","marketing association","association international","international represents","destination marketing","marketing organizations","provide members","members professionals","professionals industry","educational resources","resources networking","networking opportunities","marketing benefits","benefits available","available worldwide","online bookstore","e mail","mail discussion","discussion lists","members professional","accreditation program","official online","online travel","travel portal","dmai alsowns","meeting informationetwork","convention database","database profile","profile destination","destination marketing","marketing association","association international","professional organization","organization representing","representing destination","destination marketing","marketing organizations","convention visitor","visitor bureaus","bureaus worldwide","largest resource","official destination","destination marketing","marketing organizations","organizations dmos","dmos destination","destination marketing","marketing association","association international","international represents","destination marketing","marketing organizations","provide members","members professionals","professionals industry","educational resources","resources networking","networking opportunities","marketing benefits","benefits available","available worldwide","online bookstore","e mail","mail discussion","discussion lists","members professional","accreditation program","official online","online travel","travel portal","dmai alsowns","formerly called","called meeting","meeting informationetwork","convention database","database mission","mission dmai","mission statement","professionalism effectiveness","destination marketing","marketing organizations","organizations worldwide","worldwide history","present dmai","st louis","sales representatives","different us","us destinations","convention secretaries","secretaries whose","whose goal","share accurate","accurate information","conventions promote","promote sound","sound professional","professional practices","conventions andevelop","andevelop scientific","scientific principles","convention management","international member","following year","international association","convention bureaus","association changed","international association","visitors bureau","reflecthe growing","growing importance","consumer travel","augusthe association","association changed","become destination","destination marketing","marketing association","association international","march thathe","thathe organization","organization would","would change","accurately reflecthe","reflecthe changing","changing role","destination marketing","marketing organizations","new name","name destinations","destinations international","officially rolled","athe organization","annual meeting","july references","references externalinks","externalinks destination","destination marketing","marketing association","association international","international official","official website","website legacy","legacy website","international association","convention visitor","visitor bureaus","bureaus category","category tourism","tourism agencies","agencies category","category marketing","marketing organizations"],"new_description":"brussels abbreviation dmai membership dmos leader_title president chief_executive_officer ceo leader_name michael type industry_trade group num staff region served worldwide main_organ board directors formation budget united_states dollar us website remarks destination_marketing association_international professional association professional organization representing destination_marketing organization convention visitor bureau worldwide world largest resource official destination_marketing_organizations dmos destination_marketing association_international represents professionals destination_marketing_organizations countries provide members professionals industry educators educational resources networking opportunities marketing benefits available worldwide maintain online bookstore e mail discussion lists members professional accreditation program official online_travel portal dmai alsowns meeting informationetwork meetings convention database profile destination_marketing association_international professional organization representing destination_marketing_organizations convention visitor bureaus worldwide world largest resource official destination_marketing_organizations dmos destination_marketing association_international represents professionals destination_marketing_organizations countries provide members professionals industry educators educational resources networking opportunities marketing benefits available worldwide maintain online bookstore e mail discussion lists members professional accreditation program official online_travel portal dmai alsowns formerly called meeting informationetwork meetings convention database mission dmai mission statement enhance professionalism effectiveness image destination_marketing_organizations worldwide history present dmai founded st_louis sales representatives different us destinations association convention secretaries whose goal share accurate information conventions promote sound professional practices solicitation meetings conventions andevelop scientific principles convention management adding international_member group decision made change name following_year international_association convention_bureaus association changed name international_association convention_visitors_bureau order reflecthe growing importance consumer travel augusthe association changed name become destination_marketing association_international announced march thathe organization would change name accurately reflecthe changing role destination_marketing_organizations new name destinations international officially rolled athe organization annual meeting montreal july references_externalinks destination_marketing association_international official_website legacy website international_association convention visitor bureaus category_tourism agencies_category marketing_organizations"},{"title":"Destination marketing organization","description":"a destination marketing organization dmor convention and visitors bureau cvb is an organization that promotes a town city region or country in order to increase the number of visitors it promotes the development andestination marketing of a destination focusing on convention sales tourismarketing and servicesuch organizations promoteconomic development of a destination by increasing visits from tourists and business travelers which generates overnight lodging for a destination visits to restaurants and shopping revenues and are typically funded by taxes convention and visitor bureaus are the most importantourismarketing organizations in theirespective tourist destination s as they are directly responsible for marketing the destination brand through travel and tourism product awareness to visitors dmos produce billions of dollars in direct and indirect revenue and taxes for their destinations economies witheir marketing and sales expertise destination marketing organizations are often called travel convention visitors or tourism bureaux welcome centers information centers and moregardless of the name these organizations offer many services to the traveling public the association of australian convention bureaux aacb consists of city and regional bureaux association of australian convention bureaux information taken on from dedicated to marketing their specific region as business events destinations to intrastate interstate and international markets the bureaux also promote australias a whole the barbados tourism authority bta offices of the barbados tourism authority is a not for profit agency of the barbados government s ministry of tourism the authority maintains global offices focused on promotion and event marketing tourists about barbados the offices are located in the nations of australia brazil canada germany the united kingdom and the united states czech republic prague convention bureau is the official convention bureau of prague the capital city of the czech republic it is a non profit organization working alongside the czech tourist authorities it promotes prague forganizing a conference meeting seminar exhibition or incentivevents the georgia travel is a commercial company which is responsible before the georgian board of the tourism for the tourist arrivals to the country it promotes bothe summer vacation in georgiand the winter ski resorts it cooperates with some digital marketing companiesuch as promodo the german convention bureau gcb represents the interests of the tourism in germany german tourism industry the gcb markets germany as a destination for conventions meetings events and incentives both on a national and internationalevel and is the place to contact for anybody planning an event in germany the tourism indonesia destination management organization destination management organization indonesia is a program of central government korea tourism organization kto is a statutory organization of the republic of korea south korea under the ministry of culture and tourism and is commissioned to promote tourism in south korea the convention bureau italia cbis a network that includes all main italian local cbs and tourist boards and many private companiesuch as congress centres hotels pcos dmcs and service providers cbi promotes italy as a mice destination coordinates and represents the italian offer as well aspreads the culture of the mice industry through proper training convention bureau italia is the benchmark for everyone wanting torganize an event in italy the vr convention bureau vr cb is a non profit organization that markets tourism inorth east italy as a meetings and conventions destination jordan tourism board jtb is an independent public private sector partnership committed to utilizing marketing strategies to brand position and promote jordan as the destination of choice international markets launched in march jtb has consistently worked to heighten tourism in jordan through an integrated program of international promotional activities including trade fairs trade workshops trade and consumeroad shows familiarization trips press trips brochure multimedia production and media relations the organization s main office is located in amman jordand isupported by a number of satellite locations in the middleasthe americas europe australiand asia lviv convention bureau is the official convention bureau of lviv ukraine lviv convention bureau is a governmental organization subdivision of lviv city council it promotes lviv as mice meetings incentives conferences events destination in eastern europe united states in the united states convention and visitor bureaus cvbs financed through bed taxes or their members perform destination marketing every ustate and almost every larger city and county has its own cvb although many government and chamber of commerce bodies also market destinations to visitors and meeting planners most us convention and visitors bureaus cvbs are independent non profit organization s typically a convention and visitors bureau provides information about a destination s lodging dining attractions events museums arts and culture history and recreation someven provide buservices insider tips top ten attraction and activity lists blogs photos forums free things to do season specific activity suggestions and more the organization works with tourists and meeting planners to provide valuable information their local area their goal is to help make a visitor s trip or a conference attendees meeting a much morenjoyable and rewarding experience in many locations they work closely with a convention center that will offer large spaces for larger meetings trade shows and conventions than can be accommodated in a single hotel usually these organizations also have a local office where one can find maps brochures travel professionals local insight visitors guidesouvenirs and more marketing initiatives a convention and visitor bureau s marketing initiatives are typically achieved through the following industry trade group trade association marketplaces web pages advertising distribution of promotional and collateral material direct sales hosting familiarization tours for journalist s and travel industry personnel and sponsoring other hospitality functions the target decision maker of these marketing initiatives is notypically a resident in the community most often if visitors are going to spend the night in a hotel they reside at least miles away thus the marketing activity usually takes place or is directed outside the convention and visitors bureau s community convention and visitors bureaus in larger destinations often will market nationally and globally while smaller cities may focus just on their state region or specific niche tourismarkets puerto rico the puerto riconvention bureau prcb is a non profit organization established in to drive meetings conventions trade shows and incentive groups to puerto rico the thailand convention and exhibition bureau tceb is a state organization established in to promote micevents held in thailand see also destination marketing association international r c ford and wc peeper managing destination marketing organizations the tasks roles and responsibilities of the convention and visitors bureau executive orlando fl forper publications externalinks destination marketing association international official website travelogx latest destination blogs from around the world category tourism agencies category marketing organizations","main_words":["destination","marketing","organization","convention_visitors_bureau","cvb","organization","promotes","town","city","region","country","order","increase","number","visitors","promotes","development","andestination","marketing","destination","focusing","convention","sales","tourismarketing","servicesuch","organizations","development","destination","increasing","visits","tourists","business_travelers","generates","overnight","lodging","destination","visits","restaurants","shopping","revenues","typically","funded","taxes","convention","visitor","bureaus","organizations","theirespective","tourist_destination","directly","responsible","marketing","destination","brand","travel_tourism","product","awareness","visitors","dmos","produce","dollars","direct","indirect","revenue","taxes","destinations","economies","witheir","marketing","sales","expertise","destination_marketing_organizations","often_called","travel","convention_visitors","tourism","bureaux","welcome","centers","name","organizations","offer","many","services","traveling","public","association","australian","convention_bureaux","consists","city","regional","bureaux","association","australian","convention_bureaux","information","taken","dedicated","marketing","specific","region","business","events","destinations","interstate","international","markets","bureaux","also","promote","whole","barbados","tourism_authority","bta","offices","barbados","tourism_authority","profit","agency","barbados","government","ministry","tourism_authority","maintains","global","offices","focused","promotion","event","marketing","tourists","barbados","offices","located","nations","australia","brazil","canada","germany","united_kingdom","united_states","czech_republic","prague","convention_bureau","official","convention_bureau","prague","capital_city","czech_republic","non_profit","organization","working","alongside","czech","tourist","authorities","promotes","prague","conference","meeting","exhibition","georgia","travel","commercial","company","responsible","georgian","board","tourism","tourist_arrivals","country","promotes","bothe","summer","vacation","georgiand","winter","ski","resorts","digital","marketing","companiesuch","german","convention_bureau","represents","interests","tourism","germany_german","tourism_industry","markets","germany","destination","conventions","meetings","events","incentives","national","place","contact","planning","event","germany","tourism","indonesia","destination","management","organization","destination","management","organization","indonesia","program","central","government","korea","tourism_organization","kto","statutory","organization","republic","korea","south_korea","ministry","culture_tourism","commissioned","promote_tourism","south_korea","convention_bureau","italia","network","includes","main","italian","local","cbs","tourist_boards","many","private","companiesuch","congress","centres","hotels","service_providers","promotes","italy","mice","destination","coordinates","represents","italian","offer","well","culture","mice","industry","proper","training","convention_bureau","italia","benchmark","everyone","wanting","event","italy","convention_bureau","non_profit","organization","markets","tourism","inorth","east","italy","meetings","conventions","destination","jordan","tourism_board","independent","partnership","committed","utilizing","marketing","strategies","brand","position","promote","jordan","destination","choice","international","markets","launched","march","consistently","worked","tourism","jordan","integrated","program","international","promotional","activities","including","trade","fairs","trade","workshops","trade","shows","trips","press","trips","brochure","multimedia","production","media","relations","organization","main","office","located","isupported","number","satellite","locations","americas","europe","australiand","asia","lviv","convention_bureau","official","convention_bureau","lviv","ukraine","lviv","convention_bureau","governmental","organization","subdivision","lviv","city_council","promotes","lviv","mice","meetings","incentives","conferences","events","destination","eastern_europe","united_states","united_states","convention","visitor","bureaus","financed","bed","taxes","members","perform","destination_marketing","every","ustate","almost","every","larger","city","county","cvb","although_many","government","chamber","commerce","bodies","also","market","destinations","visitors","meeting","planners","us","independent","non_profit","organization","typically","convention_visitors_bureau","provides_information","destination","lodging","dining","attractions","events","museums","arts","culture","history","recreation","provide","insider","tips","top","ten","attraction","activity","lists","blogs","photos","forums","free","things","season","specific","activity","suggestions","organization","works","tourists","meeting","planners","provide","valuable","information","local","area","goal","help","make","visitor","trip","conference","attendees","meeting","much","rewarding","experience","many","locations","work","closely","convention_center","offer","large","spaces","larger","meetings","trade","shows","conventions","accommodated","single","hotel","usually","organizations","also","local","office","one","find","maps","travel","professionals","local","insight","visitors","marketing","initiatives","convention","visitor","bureau","marketing","initiatives","typically","achieved","following","industry_trade","group","trade","association","advertising","distribution","promotional","material","direct","sales","hosting","tours","journalist","travel_industry","personnel","sponsoring","hospitality","functions","target","decision","maker","marketing","initiatives","notypically","resident","community","often","visitors","going","spend","night","hotel","reside","least","miles","away","thus","marketing","activity","usually","takes_place","directed","outside","convention_visitors_bureau","community","larger","destinations","often","market","nationally","globally","smaller","cities","may","focus","state","region","specific","niche","tourismarkets","puerto_rico","puerto","bureau","non_profit","organization","established","drive","meetings","conventions","trade","shows","incentive","groups","puerto_rico","thailand","convention","exhibition","bureau","state","organization","established","promote","held","thailand","see_also","destination_marketing","association_international","r","c","ford","managing","destination_marketing_organizations","tasks","roles","responsibilities","convention_visitors_bureau","executive","orlando","publications","externalinks","destination_marketing","association_international","official_website","latest","destination","blogs","around","world","category_tourism","agencies_category"],"clean_bigrams":[["destination","marketing"],["marketing","organization"],["convention","visitors"],["visitors","bureau"],["bureau","cvb"],["town","city"],["city","region"],["development","andestination"],["andestination","marketing"],["destination","focusing"],["convention","sales"],["sales","tourismarketing"],["servicesuch","organizations"],["increasing","visits"],["business","travelers"],["generates","overnight"],["overnight","lodging"],["destination","visits"],["shopping","revenues"],["typically","funded"],["taxes","convention"],["visitor","bureaus"],["theirespective","tourist"],["tourist","destination"],["directly","responsible"],["destination","brand"],["tourism","product"],["product","awareness"],["visitors","dmos"],["dmos","produce"],["indirect","revenue"],["destinations","economies"],["economies","witheir"],["witheir","marketing"],["sales","expertise"],["expertise","destination"],["destination","marketing"],["marketing","organizations"],["often","called"],["called","travel"],["travel","convention"],["convention","visitors"],["tourism","bureaux"],["bureaux","welcome"],["welcome","centers"],["centers","information"],["information","centers"],["organizations","offer"],["offer","many"],["many","services"],["traveling","public"],["australian","convention"],["convention","bureaux"],["regional","bureaux"],["bureaux","association"],["australian","convention"],["convention","bureaux"],["bureaux","information"],["information","taken"],["specific","region"],["business","events"],["events","destinations"],["international","markets"],["bureaux","also"],["also","promote"],["barbados","tourism"],["tourism","authority"],["authority","bta"],["bta","offices"],["barbados","tourism"],["tourism","authority"],["profit","agency"],["barbados","government"],["tourism","authority"],["authority","maintains"],["maintains","global"],["global","offices"],["offices","focused"],["event","marketing"],["marketing","tourists"],["australia","brazil"],["brazil","canada"],["canada","germany"],["united","kingdom"],["united","states"],["states","czech"],["czech","republic"],["republic","prague"],["prague","convention"],["convention","bureau"],["official","convention"],["convention","bureau"],["capital","city"],["czech","republic"],["non","profit"],["profit","organization"],["organization","working"],["working","alongside"],["czech","tourist"],["tourist","authorities"],["promotes","prague"],["conference","meeting"],["georgia","travel"],["commercial","company"],["georgian","board"],["tourist","arrivals"],["promotes","bothe"],["bothe","summer"],["summer","vacation"],["winter","ski"],["ski","resorts"],["digital","marketing"],["marketing","companiesuch"],["german","convention"],["convention","bureau"],["germany","german"],["german","tourism"],["tourism","industry"],["markets","germany"],["conventions","meetings"],["meetings","events"],["tourism","indonesia"],["indonesia","destination"],["destination","management"],["management","organization"],["organization","destination"],["destination","management"],["management","organization"],["organization","indonesia"],["central","government"],["government","korea"],["korea","tourism"],["tourism","organization"],["organization","kto"],["statutory","organization"],["korea","south"],["south","korea"],["promote","tourism"],["south","korea"],["convention","bureau"],["bureau","italia"],["main","italian"],["italian","local"],["local","cbs"],["tourist","boards"],["many","private"],["private","companiesuch"],["congress","centres"],["centres","hotels"],["service","providers"],["promotes","italy"],["mice","destination"],["destination","coordinates"],["italian","offer"],["mice","industry"],["proper","training"],["training","convention"],["convention","bureau"],["bureau","italia"],["everyone","wanting"],["convention","bureau"],["non","profit"],["profit","organization"],["markets","tourism"],["tourism","inorth"],["inorth","east"],["east","italy"],["meetings","conventions"],["conventions","destination"],["destination","jordan"],["jordan","tourism"],["tourism","board"],["independent","public"],["public","private"],["private","sector"],["sector","partnership"],["partnership","committed"],["utilizing","marketing"],["marketing","strategies"],["brand","position"],["promote","jordan"],["choice","international"],["international","markets"],["markets","launched"],["consistently","worked"],["integrated","program"],["international","promotional"],["promotional","activities"],["activities","including"],["including","trade"],["trade","fairs"],["fairs","trade"],["trade","workshops"],["workshops","trade"],["trade","shows"],["trips","press"],["press","trips"],["trips","brochure"],["brochure","multimedia"],["multimedia","production"],["media","relations"],["main","office"],["satellite","locations"],["americas","europe"],["europe","australiand"],["australiand","asia"],["asia","lviv"],["lviv","convention"],["convention","bureau"],["official","convention"],["convention","bureau"],["lviv","ukraine"],["ukraine","lviv"],["lviv","convention"],["convention","bureau"],["governmental","organization"],["organization","subdivision"],["lviv","city"],["city","council"],["promotes","lviv"],["mice","meetings"],["meetings","incentives"],["incentives","conferences"],["conferences","events"],["events","destination"],["eastern","europe"],["europe","united"],["united","states"],["united","states"],["states","convention"],["visitor","bureaus"],["bed","taxes"],["members","perform"],["perform","destination"],["destination","marketing"],["marketing","every"],["every","ustate"],["almost","every"],["every","larger"],["larger","city"],["cvb","although"],["although","many"],["many","government"],["commerce","bodies"],["bodies","also"],["also","market"],["market","destinations"],["meeting","planners"],["us","convention"],["convention","visitors"],["visitors","bureaus"],["independent","non"],["non","profit"],["profit","organization"],["convention","visitors"],["visitors","bureau"],["bureau","provides"],["provides","information"],["lodging","dining"],["dining","attractions"],["attractions","events"],["events","museums"],["museums","arts"],["culture","history"],["insider","tips"],["tips","top"],["top","ten"],["ten","attraction"],["activity","lists"],["lists","blogs"],["blogs","photos"],["photos","forums"],["forums","free"],["free","things"],["season","specific"],["specific","activity"],["activity","suggestions"],["organization","works"],["meeting","planners"],["provide","valuable"],["valuable","information"],["local","area"],["help","make"],["conference","attendees"],["attendees","meeting"],["rewarding","experience"],["many","locations"],["work","closely"],["convention","center"],["offer","large"],["large","spaces"],["larger","meetings"],["meetings","trade"],["trade","shows"],["single","hotel"],["hotel","usually"],["organizations","also"],["local","office"],["find","maps"],["travel","professionals"],["professionals","local"],["local","insight"],["insight","visitors"],["marketing","initiatives"],["visitor","bureau"],["marketing","initiatives"],["typically","achieved"],["following","industry"],["industry","trade"],["trade","group"],["group","trade"],["trade","association"],["web","pages"],["pages","advertising"],["advertising","distribution"],["material","direct"],["direct","sales"],["sales","hosting"],["travel","industry"],["industry","personnel"],["hospitality","functions"],["target","decision"],["decision","maker"],["marketing","initiatives"],["least","miles"],["miles","away"],["away","thus"],["marketing","activity"],["activity","usually"],["usually","takes"],["takes","place"],["directed","outside"],["convention","visitors"],["visitors","bureau"],["community","convention"],["convention","visitors"],["visitors","bureaus"],["larger","destinations"],["destinations","often"],["market","nationally"],["smaller","cities"],["cities","may"],["may","focus"],["state","region"],["specific","niche"],["niche","tourismarkets"],["tourismarkets","puerto"],["puerto","rico"],["non","profit"],["profit","organization"],["organization","established"],["drive","meetings"],["meetings","conventions"],["conventions","trade"],["trade","shows"],["incentive","groups"],["puerto","rico"],["thailand","convention"],["exhibition","bureau"],["state","organization"],["organization","established"],["thailand","see"],["see","also"],["also","destination"],["destination","marketing"],["marketing","association"],["association","international"],["international","r"],["r","c"],["c","ford"],["managing","destination"],["destination","marketing"],["marketing","organizations"],["tasks","roles"],["convention","visitors"],["visitors","bureau"],["bureau","executive"],["executive","orlando"],["publications","externalinks"],["externalinks","destination"],["destination","marketing"],["marketing","association"],["association","international"],["international","official"],["official","website"],["latest","destination"],["destination","blogs"],["world","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","marketing"],["marketing","organizations"]],"all_collocations":["destination marketing","marketing organization","convention visitors","visitors bureau","bureau cvb","town city","city region","development andestination","andestination marketing","destination focusing","convention sales","sales tourismarketing","servicesuch organizations","increasing visits","business travelers","generates overnight","overnight lodging","destination visits","shopping revenues","typically funded","taxes convention","visitor bureaus","theirespective tourist","tourist destination","directly responsible","destination brand","tourism product","product awareness","visitors dmos","dmos produce","indirect revenue","destinations economies","economies witheir","witheir marketing","sales expertise","expertise destination","destination marketing","marketing organizations","often called","called travel","travel convention","convention visitors","tourism bureaux","bureaux welcome","welcome centers","centers information","information centers","organizations offer","offer many","many services","traveling public","australian convention","convention bureaux","regional bureaux","bureaux association","australian convention","convention bureaux","bureaux information","information taken","specific region","business events","events destinations","international markets","bureaux also","also promote","barbados tourism","tourism authority","authority bta","bta offices","barbados tourism","tourism authority","profit agency","barbados government","tourism authority","authority maintains","maintains global","global offices","offices focused","event marketing","marketing tourists","australia brazil","brazil canada","canada germany","united kingdom","united states","states czech","czech republic","republic prague","prague convention","convention bureau","official convention","convention bureau","capital city","czech republic","non profit","profit organization","organization working","working alongside","czech tourist","tourist authorities","promotes prague","conference meeting","georgia travel","commercial company","georgian board","tourist arrivals","promotes bothe","bothe summer","summer vacation","winter ski","ski resorts","digital marketing","marketing companiesuch","german convention","convention bureau","germany german","german tourism","tourism industry","markets germany","conventions meetings","meetings events","tourism indonesia","indonesia destination","destination management","management organization","organization destination","destination management","management organization","organization indonesia","central government","government korea","korea tourism","tourism organization","organization kto","statutory organization","korea south","south korea","promote tourism","south korea","convention bureau","bureau italia","main italian","italian local","local cbs","tourist boards","many private","private companiesuch","congress centres","centres hotels","service providers","promotes italy","mice destination","destination coordinates","italian offer","mice industry","proper training","training convention","convention bureau","bureau italia","everyone wanting","convention bureau","non profit","profit organization","markets tourism","tourism inorth","inorth east","east italy","meetings conventions","conventions destination","destination jordan","jordan tourism","tourism board","independent public","public private","private sector","sector partnership","partnership committed","utilizing marketing","marketing strategies","brand position","promote jordan","choice international","international markets","markets launched","consistently worked","integrated program","international promotional","promotional activities","activities including","including trade","trade fairs","fairs trade","trade workshops","workshops trade","trade shows","trips press","press trips","trips brochure","brochure multimedia","multimedia production","media relations","main office","satellite locations","americas europe","europe australiand","australiand asia","asia lviv","lviv convention","convention bureau","official convention","convention bureau","lviv ukraine","ukraine lviv","lviv convention","convention bureau","governmental organization","organization subdivision","lviv city","city council","promotes lviv","mice meetings","meetings incentives","incentives conferences","conferences events","events destination","eastern europe","europe united","united states","united states","states convention","visitor bureaus","bed taxes","members perform","perform destination","destination marketing","marketing every","every ustate","almost every","every larger","larger city","cvb although","although many","many government","commerce bodies","bodies also","also market","market destinations","meeting planners","us convention","convention visitors","visitors bureaus","independent non","non profit","profit organization","convention visitors","visitors bureau","bureau provides","provides information","lodging dining","dining attractions","attractions events","events museums","museums arts","culture history","insider tips","tips top","top ten","ten attraction","activity lists","lists blogs","blogs photos","photos forums","forums free","free things","season specific","specific activity","activity suggestions","organization works","meeting planners","provide valuable","valuable information","local area","help make","conference attendees","attendees meeting","rewarding experience","many locations","work closely","convention center","offer large","large spaces","larger meetings","meetings trade","trade shows","single hotel","hotel usually","organizations also","local office","find maps","travel professionals","professionals local","local insight","insight visitors","marketing initiatives","visitor bureau","marketing initiatives","typically achieved","following industry","industry trade","trade group","group trade","trade association","web pages","pages advertising","advertising distribution","material direct","direct sales","sales hosting","travel industry","industry personnel","hospitality functions","target decision","decision maker","marketing initiatives","least miles","miles away","away thus","marketing activity","activity usually","usually takes","takes place","directed outside","convention visitors","visitors bureau","community convention","convention visitors","visitors bureaus","larger destinations","destinations often","market nationally","smaller cities","cities may","may focus","state region","specific niche","niche tourismarkets","tourismarkets puerto","puerto rico","non profit","profit organization","organization established","drive meetings","meetings conventions","conventions trade","trade shows","incentive groups","puerto rico","thailand convention","exhibition bureau","state organization","organization established","thailand see","see also","also destination","destination marketing","marketing association","association international","international r","r c","c ford","managing destination","destination marketing","marketing organizations","tasks roles","convention visitors","visitors bureau","bureau executive","executive orlando","publications externalinks","externalinks destination","destination marketing","marketing association","association international","international official","official website","latest destination","destination blogs","world category","category tourism","tourism agencies","agencies category","category marketing","marketing organizations"],"new_description":"destination marketing organization convention_visitors_bureau cvb organization promotes town city region country order increase number visitors promotes development andestination marketing destination focusing convention sales tourismarketing servicesuch organizations development destination increasing visits tourists business_travelers generates overnight lodging destination visits restaurants shopping revenues typically funded taxes convention visitor bureaus organizations theirespective tourist_destination directly responsible marketing destination brand travel_tourism product awareness visitors dmos produce dollars direct indirect revenue taxes destinations economies witheir marketing sales expertise destination_marketing_organizations often_called travel convention_visitors tourism bureaux welcome centers information_centers name organizations offer many services traveling public association australian convention_bureaux consists city regional bureaux association australian convention_bureaux information taken dedicated marketing specific region business events destinations interstate international markets bureaux also promote whole barbados tourism_authority bta offices barbados tourism_authority profit agency barbados government ministry tourism_authority maintains global offices focused promotion event marketing tourists barbados offices located nations australia brazil canada germany united_kingdom united_states czech_republic prague convention_bureau official convention_bureau prague capital_city czech_republic non_profit organization working alongside czech tourist authorities promotes prague conference meeting exhibition georgia travel commercial company responsible georgian board tourism tourist_arrivals country promotes bothe summer vacation georgiand winter ski resorts digital marketing companiesuch german convention_bureau represents interests tourism germany_german tourism_industry markets germany destination conventions meetings events incentives national place contact planning event germany tourism indonesia destination management organization destination management organization indonesia program central government korea tourism_organization kto statutory organization republic korea south_korea ministry culture_tourism commissioned promote_tourism south_korea convention_bureau italia network includes main italian local cbs tourist_boards many private companiesuch congress centres hotels service_providers promotes italy mice destination coordinates represents italian offer well culture mice industry proper training convention_bureau italia benchmark everyone wanting event italy convention_bureau non_profit organization markets tourism inorth east italy meetings conventions destination jordan tourism_board independent public_private_sector partnership committed utilizing marketing strategies brand position promote jordan destination choice international markets launched march consistently worked tourism jordan integrated program international promotional activities including trade fairs trade workshops trade shows trips press trips brochure multimedia production media relations organization main office located isupported number satellite locations americas europe australiand asia lviv convention_bureau official convention_bureau lviv ukraine lviv convention_bureau governmental organization subdivision lviv city_council promotes lviv mice meetings incentives conferences events destination eastern_europe united_states united_states convention visitor bureaus financed bed taxes members perform destination_marketing every ustate almost every larger city county cvb although_many government chamber commerce bodies also market destinations visitors meeting planners us convention_visitors_bureaus independent non_profit organization typically convention_visitors_bureau provides_information destination lodging dining attractions events museums arts culture history recreation provide insider tips top ten attraction activity lists blogs photos forums free things season specific activity suggestions organization works tourists meeting planners provide valuable information local area goal help make visitor trip conference attendees meeting much rewarding experience many locations work closely convention_center offer large spaces larger meetings trade shows conventions accommodated single hotel usually organizations also local office one find maps travel professionals local insight visitors marketing initiatives convention visitor bureau marketing initiatives typically achieved following industry_trade group trade association web_pages advertising distribution promotional material direct sales hosting tours journalist travel_industry personnel sponsoring hospitality functions target decision maker marketing initiatives notypically resident community often visitors going spend night hotel reside least miles away thus marketing activity usually takes_place directed outside convention_visitors_bureau community convention_visitors_bureaus larger destinations often market nationally globally smaller cities may focus state region specific niche tourismarkets puerto_rico puerto bureau non_profit organization established drive meetings conventions trade shows incentive groups puerto_rico thailand convention exhibition bureau state organization established promote held thailand see_also destination_marketing association_international r c ford managing destination_marketing_organizations tasks roles responsibilities convention_visitors_bureau executive orlando publications externalinks destination_marketing association_international official_website latest destination blogs around world category_tourism agencies_category marketing_organizations"},{"title":"Dhaba","description":"file pranjal dhaba national highway shivrajpur shankargarh allahabad jpg thumb right a dhaba onational highway india national highway near allahabad image dhabafoodjpg righthumb food at a local dhaba in punjab dhaba is the name given to roadside restaurants india they are situated on highways and generally serve local cuisine and also serve as truck stops they are most commonly found nexto filling station petrol stations and most are open hours a day since many indian truck drivers are of punjabi people punjabi descent and punjabi cuisine punjabi food and music of punjab music is quite popular throughout india the wordhaba has come to represent any restauranthat serves punjabi food especially theavily spiced and fried punjabi fare preferred by many truck drivers the word has come to represent sub continental cuisine so much that many indian restaurant s in europe and americas america have adopted it as a part of the name dhabas were characterized by mud structures and cots to sit upon called charpai whileating a wooden plank would be placed across the width of the cot on which to place the dishes with time the cots wereplaced by tables the food is typically inexpensive and has a homemade feel to ithe word has been alleged in folk etymology to stem from dabba m box lunch box tiffin however initial consonant al dh neither gives rise to nor develops from consonantal d regional variations haryana has dabahall over andhabas of murthal on grand trunk road are famous for various delicacies including paratha murthal paratha dal haryanvi daal bread pakora cheese bread pakorand more dhabas of murthal and haryana the tribune food safarin search of murthal paratha the hindu newspaper feb highway bits dhabas versus food chains times of india sept punjab india punjab is origin of roadside punjabi dhaba that are popular across india punjabi dhaba dining on roads theideaofindiacom july a culinary pilgrimage to punjab the new york times march see also indian cuisine chaan teng hong kong diner greasy spoon in britain hawker centre of singapore truck stop inorth america kesar da dhaba category indian restaurants category types of restaurants category transport culture of india category punjabi cuisine category trucking subculture category indian trucking industry","main_words":["file","dhaba","national","highway","jpg","thumb","right","dhaba","onational","highway","india","national","highway","near","image","righthumb","food","local","dhaba","punjab","dhaba","name","given","roadside","restaurants","india","situated","highways","generally","serve","local","cuisine","also_serve","truck_stops","commonly","found","nexto","filling","station","petrol","stations","open_hours","day","since","many","indian","truck_drivers","punjabi","people","punjabi","descent","punjabi","cuisine","punjabi","food","music","punjab","music","quite","popular","throughout","india","come","represent","restauranthat","serves","punjabi","food","especially","spiced","fried","punjabi","fare","preferred","many","truck_drivers","word","come","represent","sub","continental","cuisine","much","many","indian","restaurant","europe","americas","america","adopted","part","name","dhabas","characterized","mud","structures","cots","sit","upon","called","wooden","would","placed","across","width","place","dishes","time","cots","tables","food","typically","inexpensive","homemade","feel","ithe","word","alleged","folk","etymology","stem","box","lunch","box","however","initial","neither","gives","rise","develops","regional","variations","murthal","grand","trunk","road","famous","various","including","paratha","murthal","paratha","dal","bread","cheese","bread","dhabas","murthal","tribune","food","safarin","search","murthal","paratha","hindu","newspaper","feb","highway","bits","dhabas","versus","food_chains","times","india","sept","punjab","india","punjab","origin","roadside","punjabi","dhaba","popular","across","india","punjabi","dhaba","dining","roads","july","culinary","pilgrimage","punjab","new_york","times_march","see_also","indian","cuisine","chaan","teng","hong_kong","diner","greasy_spoon","britain","hawker_centre","singapore","truck_stop","inorth_america","dhaba","category","indian","restaurants_category_types","restaurants_category","transport","culture","india_category","punjabi","cuisine_category","subculture","category","indian","industry"],"clean_bigrams":[["dhaba","national"],["national","highway"],["jpg","thumb"],["thumb","right"],["dhaba","onational"],["onational","highway"],["highway","india"],["india","national"],["national","highway"],["highway","near"],["righthumb","food"],["local","dhaba"],["punjab","dhaba"],["name","given"],["roadside","restaurants"],["restaurants","india"],["generally","serve"],["serve","local"],["local","cuisine"],["also","serve"],["truck","stops"],["commonly","found"],["found","nexto"],["nexto","filling"],["filling","station"],["station","petrol"],["petrol","stations"],["open","hours"],["day","since"],["since","many"],["many","indian"],["indian","truck"],["truck","drivers"],["punjabi","people"],["people","punjabi"],["punjabi","descent"],["punjabi","cuisine"],["cuisine","punjabi"],["punjabi","food"],["punjab","music"],["quite","popular"],["popular","throughout"],["throughout","india"],["restauranthat","serves"],["serves","punjabi"],["punjabi","food"],["food","especially"],["fried","punjabi"],["punjabi","fare"],["fare","preferred"],["many","truck"],["truck","drivers"],["represent","sub"],["sub","continental"],["continental","cuisine"],["many","indian"],["indian","restaurant"],["americas","america"],["name","dhabas"],["mud","structures"],["sit","upon"],["upon","called"],["placed","across"],["typically","inexpensive"],["homemade","feel"],["ithe","word"],["folk","etymology"],["box","lunch"],["lunch","box"],["however","initial"],["neither","gives"],["gives","rise"],["regional","variations"],["grand","trunk"],["trunk","road"],["including","paratha"],["paratha","murthal"],["murthal","paratha"],["paratha","dal"],["cheese","bread"],["tribune","food"],["food","safarin"],["safarin","search"],["murthal","paratha"],["hindu","newspaper"],["newspaper","feb"],["feb","highway"],["highway","bits"],["bits","dhabas"],["dhabas","versus"],["versus","food"],["food","chains"],["chains","times"],["india","sept"],["sept","punjab"],["punjab","india"],["india","punjab"],["roadside","punjabi"],["punjabi","dhaba"],["popular","across"],["across","india"],["india","punjabi"],["punjabi","dhaba"],["dhaba","dining"],["culinary","pilgrimage"],["new","york"],["york","times"],["times","march"],["march","see"],["see","also"],["also","indian"],["indian","cuisine"],["cuisine","chaan"],["chaan","teng"],["teng","hong"],["hong","kong"],["kong","diner"],["diner","greasy"],["greasy","spoon"],["britain","hawker"],["hawker","centre"],["singapore","truck"],["truck","stop"],["stop","inorth"],["inorth","america"],["dhaba","category"],["category","indian"],["indian","restaurants"],["restaurants","category"],["category","types"],["restaurants","category"],["category","transport"],["transport","culture"],["india","category"],["category","punjabi"],["punjabi","cuisine"],["cuisine","category"],["subculture","category"],["category","indian"]],"all_collocations":["dhaba national","national highway","dhaba onational","onational highway","highway india","india national","national highway","highway near","righthumb food","local dhaba","punjab dhaba","name given","roadside restaurants","restaurants india","generally serve","serve local","local cuisine","also serve","truck stops","commonly found","found nexto","nexto filling","filling station","station petrol","petrol stations","open hours","day since","since many","many indian","indian truck","truck drivers","punjabi people","people punjabi","punjabi descent","punjabi cuisine","cuisine punjabi","punjabi food","punjab music","quite popular","popular throughout","throughout india","restauranthat serves","serves punjabi","punjabi food","food especially","fried punjabi","punjabi fare","fare preferred","many truck","truck drivers","represent sub","sub continental","continental cuisine","many indian","indian restaurant","americas america","name dhabas","mud structures","sit upon","upon called","placed across","typically inexpensive","homemade feel","ithe word","folk etymology","box lunch","lunch box","however initial","neither gives","gives rise","regional variations","grand trunk","trunk road","including paratha","paratha murthal","murthal paratha","paratha dal","cheese bread","tribune food","food safarin","safarin search","murthal paratha","hindu newspaper","newspaper feb","feb highway","highway bits","bits dhabas","dhabas versus","versus food","food chains","chains times","india sept","sept punjab","punjab india","india punjab","roadside punjabi","punjabi dhaba","popular across","across india","india punjabi","punjabi dhaba","dhaba dining","culinary pilgrimage","new york","york times","times march","march see","see also","also indian","indian cuisine","cuisine chaan","chaan teng","teng hong","hong kong","kong diner","diner greasy","greasy spoon","britain hawker","hawker centre","singapore truck","truck stop","stop inorth","inorth america","dhaba category","category indian","indian restaurants","restaurants category","category types","restaurants category","category transport","transport culture","india category","category punjabi","punjabi cuisine","cuisine category","subculture category","category indian"],"new_description":"file dhaba national highway jpg thumb right dhaba onational highway india national highway near image righthumb food local dhaba punjab dhaba name given roadside restaurants india situated highways generally serve local cuisine also_serve truck_stops commonly found nexto filling station petrol stations open_hours day since many indian truck_drivers punjabi people punjabi descent punjabi cuisine punjabi food music punjab music quite popular throughout india come represent restauranthat serves punjabi food especially spiced fried punjabi fare preferred many truck_drivers word come represent sub continental cuisine much many indian restaurant europe americas america adopted part name dhabas characterized mud structures cots sit upon called wooden would placed across width place dishes time cots tables food typically inexpensive homemade feel ithe word alleged folk etymology stem box lunch box however initial neither gives rise develops regional variations murthal grand trunk road famous various including paratha murthal paratha dal bread cheese bread dhabas murthal tribune food safarin search murthal paratha hindu newspaper feb highway bits dhabas versus food_chains times india sept punjab india punjab origin roadside punjabi dhaba popular across india punjabi dhaba dining roads july culinary pilgrimage punjab new_york times_march see_also indian cuisine chaan teng hong_kong diner greasy_spoon britain hawker_centre singapore truck_stop inorth_america dhaba category indian restaurants_category_types restaurants_category transport culture india_category punjabi cuisine_category subculture category indian industry"},{"title":"Dickie Dee","description":"dickie dee ice cream was a canadian ice cream vending company from to dickie dee was founded in winnipeg manitoba in by thearl barish family and grew to be one of the largest ice cream vending companies inorth america one man s business journey dickie dee pop rocks restaurants the globe and mail at its peak dickie dee had approximately operators across canadand in the northern united states ice cream products were sold out of a fiberglass compartment on a modified tricycle dickie dee also had a fleet of ice cream trucks that operated in areas withills that could not be serviced using the bicycles the bicycles werequipped with bells which the operatorang to alert children to his presence during the late s and early s dickie dee promoted products at gastation s and retail outlets in freezers called bubble cabinets the bubble cabinets were chestyle display freezers with a clear plastic dome shaped lid which allowed seeing the various products dickie dee maintained a network of distributors toperate its equipment distributors leased thequipment and purchased the products from designated company suppliersmall distributorships were turnkey operations that could be run from a family garage while larger centres had warehouses and yards in dickie dee wasold to unilever and became a division of good humor breyers good humor breyers maintained the dickie dee brand program until today much of the remaining equipment is privately owned by former distributors who are still selling ice cream products as independent operators under a variety of namesee also list ofood trucks category companies based in winnipeg category ice cream brands category defunct companies of manitoba category companiestablished in category food trucks","main_words":["dee","ice_cream","canadian","ice_cream","vending","company","dickie_dee","founded","winnipeg","manitoba","thearl","family","grew","one","largest","ice_cream","vending","companies","inorth_america","one","man","business","journey","dickie_dee","pop","rocks","restaurants","globe","mail","peak","dickie_dee","approximately","operators","across","canadand","northern","united_states","ice_cream","products","sold","compartment","modified","dickie_dee","also","fleet","ice_cream","trucks","operated","areas","could","serviced","using","bicycles","bicycles","werequipped","bells","alert","children","presence","late","early","dickie_dee","promoted","products","gastation","retail","outlets","freezers","called","bubble","cabinets","bubble","cabinets","display","freezers","clear","plastic","dome","shaped","allowed","seeing","various","products","dickie_dee","maintained","network","distributors","toperate","equipment","distributors","leased","thequipment","purchased","products","designated","company","operations","could","run","family","garage","larger","centres","warehouses","yards","dickie_dee","wasold","became","division","good","humor","good","humor","maintained","dickie_dee","brand","program","today","much","remaining","equipment","privately_owned","former","distributors","still","selling","ice_cream","products","independent","operators","variety","winnipeg","category","ice_cream","brands","category_defunct","companies","manitoba","category_companiestablished","category_food","trucks"],"clean_bigrams":[["dickie","dee"],["dee","ice"],["ice","cream"],["canadian","ice"],["ice","cream"],["cream","vending"],["vending","company"],["dickie","dee"],["winnipeg","manitoba"],["largest","ice"],["ice","cream"],["cream","vending"],["vending","companies"],["companies","inorth"],["inorth","america"],["america","one"],["one","man"],["business","journey"],["journey","dickie"],["dickie","dee"],["dee","pop"],["pop","rocks"],["rocks","restaurants"],["peak","dickie"],["dickie","dee"],["approximately","operators"],["operators","across"],["across","canadand"],["northern","united"],["united","states"],["states","ice"],["ice","cream"],["cream","products"],["dickie","dee"],["dee","also"],["ice","cream"],["cream","trucks"],["serviced","using"],["bicycles","werequipped"],["alert","children"],["dickie","dee"],["dee","promoted"],["promoted","products"],["retail","outlets"],["freezers","called"],["called","bubble"],["bubble","cabinets"],["bubble","cabinets"],["display","freezers"],["clear","plastic"],["plastic","dome"],["dome","shaped"],["allowed","seeing"],["various","products"],["products","dickie"],["dickie","dee"],["dee","maintained"],["distributors","toperate"],["equipment","distributors"],["distributors","leased"],["leased","thequipment"],["designated","company"],["family","garage"],["larger","centres"],["dickie","dee"],["dee","wasold"],["good","humor"],["good","humor"],["dickie","dee"],["dee","brand"],["brand","program"],["today","much"],["remaining","equipment"],["privately","owned"],["former","distributors"],["still","selling"],["selling","ice"],["ice","cream"],["cream","products"],["independent","operators"],["also","list"],["list","ofood"],["ofood","trucks"],["trucks","category"],["category","companies"],["companies","based"],["winnipeg","category"],["category","ice"],["ice","cream"],["cream","brands"],["brands","category"],["category","defunct"],["defunct","companies"],["manitoba","category"],["category","companiestablished"],["category","food"],["food","trucks"]],"all_collocations":["dickie dee","dee ice","ice cream","canadian ice","ice cream","cream vending","vending company","dickie dee","winnipeg manitoba","largest ice","ice cream","cream vending","vending companies","companies inorth","inorth america","america one","one man","business journey","journey dickie","dickie dee","dee pop","pop rocks","rocks restaurants","peak dickie","dickie dee","approximately operators","operators across","across canadand","northern united","united states","states ice","ice cream","cream products","dickie dee","dee also","ice cream","cream trucks","serviced using","bicycles werequipped","alert children","dickie dee","dee promoted","promoted products","retail outlets","freezers called","called bubble","bubble cabinets","bubble cabinets","display freezers","clear plastic","plastic dome","dome shaped","allowed seeing","various products","products dickie","dickie dee","dee maintained","distributors toperate","equipment distributors","distributors leased","leased thequipment","designated company","family garage","larger centres","dickie dee","dee wasold","good humor","good humor","dickie dee","dee brand","brand program","today much","remaining equipment","privately owned","former distributors","still selling","selling ice","ice cream","cream products","independent operators","also list","list ofood","ofood trucks","trucks category","category companies","companies based","winnipeg category","category ice","ice cream","cream brands","brands category","category defunct","defunct companies","manitoba category","category companiestablished","category food","food trucks"],"new_description":"dickie dee ice_cream canadian ice_cream vending company dickie_dee founded winnipeg manitoba thearl family grew one largest ice_cream vending companies inorth_america one man business journey dickie_dee pop rocks restaurants globe mail peak dickie_dee approximately operators across canadand northern united_states ice_cream products sold compartment modified dickie_dee also fleet ice_cream trucks operated areas could serviced using bicycles bicycles werequipped bells alert children presence late early dickie_dee promoted products gastation retail outlets freezers called bubble cabinets bubble cabinets display freezers clear plastic dome shaped allowed seeing various products dickie_dee maintained network distributors toperate equipment distributors leased thequipment purchased products designated company operations could run family garage larger centres warehouses yards dickie_dee wasold became division good humor good humor maintained dickie_dee brand program today much remaining equipment privately_owned former distributors still selling ice_cream products independent operators variety also_list_ofood_trucks_category_companies_based winnipeg category ice_cream brands category_defunct companies manitoba category_companiestablished category_food trucks"},{"title":"Dine and dash","description":"a dine andash is a form of theft by fraud in which a patron orders and consumes food and beverages from a restaurant or similar establishment withe intent noto pay the act may involve the customer leaving the restaurant withe intent of evading payment or less commonly of the patron eating the food and then stating thathey do not have any money there are numerouslang variations for this act including dine anditch eat and run chew and screw eat it and beat it eat it and street it lick it and split book it and hook it bite and bolt stow it and blow it doing a runner beating the check or sip and skip legal aspectsimply failing to pay a bill when due is generally not a crime in most circumstances or jurisdictions it is a contract debt and the act is civilaw common law civil rather than criminalaw criminal inature however there are often laws that apply specifically to restaurants hotels and other circumstances where the presumption is thathe customer intended to never pay their bill in advance and therefore obtained the valuable services under false pretenses a form of criminal fraud in certain states dining andashing is not labelled as a criminal issue for example in california it is considered a petty theft while in mississippit is a felony offense to refuse to pay a bill over often thestablishment may make their employees pay the cost of customer thefto give them an incentive to police their customers they may do so explicitly by deducting unpaid meals from wage s or gratuity tip s or implicitly through an end of shift reconciliation system whereby the server is expected to providenough cash and credit card receipts to cover the cost of their customers meals and keeps any surplus as tips this an illegal form of wage theft and if the server is held responsible for tabs that are not paid themployer is liable for paying the server back his or her stolen wages prevention some restaurants and cafes face large volumes of dine andash food theft problems which affect daily profits to combathis in some restaurants people have to pay before the meal iserved or put down depositsee also list of restauranterminology references category theft category restauranterminology category food law category deception","main_words":["dine","form","theft","fraud","patron","orders","food","beverages","restaurant","similar","establishment","withe","intent","noto","pay","act","may","involve","customer","leaving","restaurant","withe","intent","payment","less_commonly","patron","eating","food","stating","thathey","money","variations","act","including","dine","eat","run","eat","beat","eat","street","split","book","hook","bite","blow","runner","beating","check","sip","legal","failing","pay","bill","due","generally","crime","circumstances","jurisdictions","contract","debt","act","common","law","civil","rather","criminalaw","criminal","inature","however","often","laws","apply","specifically","restaurants_hotels","circumstances","thathe","customer","intended","never","pay","bill","advance","therefore","obtained","valuable","services","false","form","criminal","fraud","certain","states","dining","labelled","criminal","issue","example","california","considered","petty","theft","offense","refuse","pay","bill","often","thestablishment","may","make","employees","pay","cost","customer","give","incentive","police","customers","may","explicitly","unpaid","meals","wage","gratuity","tip","end","shift","system","whereby","server","expected","cash","credit_card","receipts","cover","cost","customers","meals","keeps","surplus","tips","illegal","form","wage","theft","server","held","responsible","paid","themployer","liable","paying","server","back","stolen","wages","prevention","restaurants","cafes","face","large","volumes","dine","food","theft","problems","affect","daily","profits","restaurants","people","pay","meal","iserved","put","also_list","restauranterminology","references_category","theft","category_restauranterminology","category_food","law","category","deception"],"clean_bigrams":[["patron","orders"],["similar","establishment"],["establishment","withe"],["withe","intent"],["intent","noto"],["noto","pay"],["act","may"],["may","involve"],["customer","leaving"],["restaurant","withe"],["withe","intent"],["less","commonly"],["patron","eating"],["stating","thathey"],["act","including"],["including","dine"],["split","book"],["runner","beating"],["contract","debt"],["common","law"],["law","civil"],["civil","rather"],["criminalaw","criminal"],["criminal","inature"],["inature","however"],["often","laws"],["apply","specifically"],["restaurants","hotels"],["thathe","customer"],["customer","intended"],["never","pay"],["therefore","obtained"],["valuable","services"],["criminal","fraud"],["certain","states"],["states","dining"],["criminal","issue"],["petty","theft"],["often","thestablishment"],["thestablishment","may"],["may","make"],["employees","pay"],["unpaid","meals"],["gratuity","tip"],["system","whereby"],["credit","card"],["card","receipts"],["customers","meals"],["illegal","form"],["wage","theft"],["held","responsible"],["paid","themployer"],["server","back"],["stolen","wages"],["wages","prevention"],["cafes","face"],["face","large"],["large","volumes"],["food","theft"],["theft","problems"],["affect","daily"],["daily","profits"],["restaurants","people"],["meal","iserved"],["also","list"],["restauranterminology","references"],["references","category"],["category","theft"],["theft","category"],["category","restauranterminology"],["restauranterminology","category"],["category","food"],["food","law"],["law","category"],["category","deception"]],"all_collocations":["patron orders","similar establishment","establishment withe","withe intent","intent noto","noto pay","act may","may involve","customer leaving","restaurant withe","withe intent","less commonly","patron eating","stating thathey","act including","including dine","split book","runner beating","contract debt","common law","law civil","civil rather","criminalaw criminal","criminal inature","inature however","often laws","apply specifically","restaurants hotels","thathe customer","customer intended","never pay","therefore obtained","valuable services","criminal fraud","certain states","states dining","criminal issue","petty theft","often thestablishment","thestablishment may","may make","employees pay","unpaid meals","gratuity tip","system whereby","credit card","card receipts","customers meals","illegal form","wage theft","held responsible","paid themployer","server back","stolen wages","wages prevention","cafes face","face large","large volumes","food theft","theft problems","affect daily","daily profits","restaurants people","meal iserved","also list","restauranterminology references","references category","category theft","theft category","category restauranterminology","restauranterminology category","category food","food law","law category","category deception"],"new_description":"dine form theft fraud patron orders food beverages restaurant similar establishment withe intent noto pay act may involve customer leaving restaurant withe intent payment less_commonly patron eating food stating thathey money variations act including dine eat run eat beat eat street split book hook bite blow runner beating check sip legal failing pay bill due generally crime circumstances jurisdictions contract debt act common law civil rather criminalaw criminal inature however often laws apply specifically restaurants_hotels circumstances thathe customer intended never pay bill advance therefore obtained valuable services false form criminal fraud certain states dining labelled criminal issue example california considered petty theft offense refuse pay bill often thestablishment may make employees pay cost customer give incentive police customers may explicitly unpaid meals wage gratuity tip end shift system whereby server expected cash credit_card receipts cover cost customers meals keeps surplus tips illegal form wage theft server held responsible paid themployer liable paying server back stolen wages prevention restaurants cafes face large volumes dine food theft problems affect daily profits restaurants people pay meal iserved put also_list restauranterminology references_category theft category_restauranterminology category_food law category deception"},{"title":"Diner","description":"image summit diner x jpg thumb the summit diner in summit new jersey is a prototypical rail car style diner built by the o mahony company in a diner is a small fast food restauranthat is found in the northeastern united states and midwest as well as in other parts of the us canadand parts of western europe diners offer a wide range ofoods mostly american cuisine and have a distinct exterior structure a casual atmosphere a long counter with bar stool s where patrons eatheir meals and late operating hours diners frequently stay open hours a day especially in cities and towns with a busy bar scene or with factories with shift work night shift workers bar patronseeking a post last call bar term last call venue to socialize and get food as well ashift workers leaving their factories historically provided a key part of the customer base from the s to the s diners were usually prefabrication prefabricated in factories like mobile home s andelivered to the restaurant site as a result many early diners were typically small and narrow because they had to fit onto a rail car or truck for delivery to the restaurant site some of these diners have been expanded over the years through additions onto the prefabricated structure while many contemporary diners are fully built on site insteadiners were historically small business es operated by the owner however many diners are currently operated by chains diners typically serve american food such as hamburger s french fries club sandwich es and other simple quickly cooked and inexpensive fare much of the food is grilled as early diners were based around a flattop grill coffee is the ubiquitous beverage at diners even if it is not always of high quality diners often serve hand blended milkshake s andessertsuch as pie s which are typically displayed in a glass case classic american diners often have an exterior layer of stainlessteel siding a feature unique to diner architecture in some cases dinershare nostalgic retro style features also found in some restoredrive in s and old movie theatre s file rosebudinerjpg thumb the rosebudiner the rosebud a restored worcester lunch car in somerville massachusetts file bendix dinerjpg thumb the bendix diner in hasbrouck heights new jersey the first diner was created in by walter scott who sold food out of a horse pulled wagon to employees of the providence journal in providence rhode island scott s diner can be considered the first diner with walk up service as it had windows on each side of the wagon commercial production of lunch wagons began in worcester massachusetts worcester massachusetts in by thomas buckley wasuccessful and became known for his white house cafe wagons charles palmereceived the first patent for the diner whiche billed as a night lunch wagon he built his fancy night cafes and night lunch wagons in the worcester area until deraffele manufacturing co inc fodero dining car company jerry o mahony diner company kullman dining car company mountain view diners company silk city diners tierney dining cars worcester lunch car company sterling streamliner diners inspired by the streamlined trains and especially the burlington zephyroland stickney designed a diner in the shape of a streamlined train called the sterling streamliner in built by the john b judkins company jb judkins coach company who had built custom car bodies the sterling and other diner production ceased in athe beginning of american involvement in world war ii two sterling streamliners remain operation the salem diner at its originalocation in salemassachusetts and the modern diner in pawtucket rhode island prefabricatediners file wellsboro diner interiorjpg thumb interior of a sterling manufacturediner with curved ceiling in wellsboro pennsylvanias the number of seats increased wagons gave way to pre fabricated buildings made by many of the same manufacturers who had made the wagons like the lunch wagon a stationary diner allowed one to set up a food service business quickly using pre assembled constructs and equipment until the great depression most diner manufacturers and their customers were located in the northeast diner manufacturing suffered with other industries during the depression though not as much as many industries and the diner offered a less expensive way of getting into the restaurant business as well as less expensive food than more formal establishments after world war ii as theconomy returned to civilian production and the suburb s boomediners were an attractive small business opportunity during this periodinerspread beyond their original urband small town marketo highway strips in the suburbs even reaching the midwest with manufacturersuch as valentine in many areas diners were superseded in the s by fast food restaurants but in parts of new jersey new york the new england states delaware and pennsylvania the independently ownedineremains relatively common since the s most newly constructediners lack the original narrow stainlessteel streamlined appearance and are usually much bigger buildings though some are still made of several prefabricated modules assembled on site and manufactured by the old line diner builders a wide variety of architectural styles were now used for these later diners including cape cod house cape cod and colonial architecture colonial styles the old style single module diners featuring a long counter and a few small boothsometimes now grew additional dining rooms lavish wallpaper fountains crystal chandelier s and greek statuary the definition of the term diner began to blur as older prefabricatediners received more conventional frame additionsometimes leaving the original structure nearly unrecognizable as it wasurrounded by new construction or a renovated facade businesses that called themselves diners but which were built onsite and not prefabricated began to appear these larger establishments were sometimes known as dinerestaurants like a mobile home the original style diner is narrow and elongated and allows roadway orailway transportation to the restaurant site in the traditional diner floorplan a service counter dominates the interior with a preparation areagainsthe back wall and floor mounted stools for the customers in front larger models may have a row of booths againsthe front wall and athends the decor varied over time diners of the s feature art decor streamline modernelements or copy the appearance of rail dining cars though very few are in fact refurbished rail cars they featured porcelain enamel exteriorsome withe name written on the front others with bands of enamel others in flutes many had a barrel vault roofline tile floors were common diners of the s tended to use stainlessteel panels porcelain enamel glass blocks terrazzo floors formica plastic formicand neon sign trim diners built in the s generally have a differentype of architecture they are laid out more like restaurants retaining some aspects of traditional diner architecture stainlessteel and art deco elements usually while discarding others the small size and emphasis on the counter cultural significance diners attract a wide spectrum of the local populations and are generally small business es from the mid twentieth century onwards they have been seen as culture of the united states quintessentially american reflecting the perceived cultural diversity and egalitarianism egalitarianature of the country at large throughout much of the th century diners particularly in the northeastern united states northeast were often owned and operated by greek american immigrant families the presence of greek casual food like gyro food gyros and souvlaki on several diners menus testifies to this culturalink diners frequently stay open hours a day especially in cities and were once america s most widespread hour public establishments making them an essential part of urban culture alongside bars and nightclubs these two segments of nighttime urban culture often find themselves intertwined as many diners get a goodeal of late night business from persons departing drinking establishments many diners were also historically placed near factories which operated hours a day with shift work night shift workers providing a key part of the customer base all this meant diners could serve asymbols of loneliness and isolation edward hopper edward hopper s iconic painting nighthawks depicts a diner and its occupants late at nighthe diner in the painting is based on a realocation in greenwich village but was chosen in part because diners were anonymouslices of americana meaning thathe scene could have been taken from any city in the country and also because a diner was a place to which isolated individuals awake long after bedtime would naturally be drawn the spread of the diner meanthat by it was possible for hopper to casthis institution in a role for which fifteen years earlier he had used an automat painting automat all night restaurant but as a rule diners were alwaysymbols of american optimism norman rockwell made his painting the runaway generically american by placing hisubjects a young boy and a protective highway patrolman athe counter of anonymous diner norman rockwell the runaway in television and cinema eg the blob happy days grease film grease andiner film diners and soda fountain s have come to symbolize the period of prosperity and optimism in america in the s they are shown as the place where teenager s meet after school and as an essential part of a courtship date the television show alice tv series alice used a diner as the setting for the program and one is often a regular feature in sitcom such aseinfeld the diner s cultural influence continues today many non prefab restaurants including franchises like denny s have copied the look of s diners for nostalgia nostalgic appeal while waffle houses an interior layout derived from the diner manhattan was once known for its diners the moondance diner washipped to wyoming to make room for development diners provide in rather the same way that fast food fast food chains do a nationwide recognizable fairly uniform place to eat and assemble the types ofood served are likely to be consistent especially within a region exceptions being districts with large immigrant populations in which diners and caf coffee shop s will often cater their menus to those local cuisines as are the prices charged athe same time diners have much more individuality than fast food chains the structures menus and even owners and staff while having a certain degree of similarity to each other vary much more widely than the more rigidly standardized chain and franchise restaurants the poirier s diner and munson diner both manufactured by the kullman dining car company of lebanonew jersey are listed on the national register of historic places in media file john s diner by john baederjpg thumb john baeder john s diner with john s chevelle diners are the focus of several artists including photorealism photorealist painter john baeder who spent about years painting diners across the us films and television centering aroundiners includes waitress film waitress a film about a diner waiting staff waitress the food network show diners drive ins andives and pennsylvania diners and otheroadside restaurants a documentary alternate spellings the wordiner isometimespelledinor in western pennsylvaniadiners of pennsylvania by brian butko and kevin patrick stackpole books nd edition may and file nyc diner togo cheeseburger deluxejpg thumb left upright a bacon cheeseburger from a new york city diner in a to go container comes with a pickle slice onion rings coleslaw and french fries file milkshakes at mels dinerjpg thumb upright many dinerserve a metal cup alongside a milkshake containing what cannot fit in the glass diners almost invariably serve american food such as hamburger s french fries club sandwich es and other simple fare much of the food is grilled as early diners were based around a grill cookingrill there is often an emphasis on breakfast foodsuch as egg food eggs including omelette s waffle s pancake s and french toast like the british greasy spoon the typical american diner serves mainly fried or grilled food for examplegg food fried eggs bacon hamburgers hot dog s hash brown s waffles pancakes omelettes deep fried chicken food chicken patty melt s and sausage s these are often accompanied by baked beans french fries cole slaw or toast some dinerserve these breakfast foods throughouthe business day and others who focus on breakfast may close at around pm these are most commonly known as pancake house s coffee is ubiquitous at diners if not always of high quality many diners do not serve alcoholic drink s although some may serve beer and inexpensive wine while others particularly inew jersey and on long island carry a full drink menu including mixedrinks many dinerserve hand blended milkshake s the food is usually quite inexpensive with a decent meal sandwich side dish drink available for less than ten dollars there is regional variation among diners with traditional regional american food in michigand the ohio valley at coney island restaurant coney island style restaurants coney island hot dog coney dogs are served as are certain types of greek cuisine like gyro food gyros influenced by greek diner owners indianand illinois fried pork tenderloin sandwiches are typically on the menu the northeast has more of a focus on seafood with clams fried clams and shrimp fried shrimp commonly found in maine in pennsylvania cheesesteak sandwiches and scrapple are fixtures in most diners in the southwest serve tamal dish tamal es in the southern us typical breakfast dishes include grits biscuits and gravy and soul food such as fried chicken and collard greens inew jersey the pork roll egg and cheese sandwich is a staple of many diners many diners have transparent display cases in or behind the counter for the dessert s it is common with new diners to have the desserts displayed in rotating pie cases typical desserts include a variety of pie s often on view in a separate transparent case most diners inew york and chicago alsoffer cheesecake immigrant influenceseveral foreign ethnic influences have been introduced into the diner industry many diners in the united statespecially inew jersey illinois new york massachusetts pennsylvaniand connecticut are owned or operated by greeks greek americans eastern european owners chiefly polish ukrainiand eastern european jews are also typical italian people italian americans also have a notable presence and in some places where there are significant latino populations mexican people mexicans and cuban people cubans may also have notable presences these influences can be seen in certain frequent additions to diner menusuch as greek moussaka slavic blintz es and jewish matzah balls matzah ball soup deli style sandwiches eg corned beef pastrami reubens and bagels and lox see also chaan teng the term for diners in hong kong dhaba the term for diners india diner lingo greasy spoon list of diners lunch countereferences furthereading baeder john diners rev and updated new york abrams butko briand kevin patrick diners of pennsylvania mechanicsburg pa stackpole books garbin randy diners of new england mechanicsburg pa stackpole books gutman richard j s american diner then and now new york harperperennial witzel michael karl the american diner mbi publishing company greasin up the griddle and rollinto history the journal of antiques and collectibles august retrieved on december charles palmer s patent externalinks category diners category american culture category canadian culture category architectural styles category fast food category nightlife category northeastern united states category types of restaurants","main_words":["image","summit","diner","x","jpg","thumb","summit","diner","summit","new_jersey","rail","car","style","diner","built","company","diner","small","found","northeastern_united_states","midwest","well","parts","us","canadand","parts","western_europe","diners","offer","wide_range","ofoods","mostly","american","cuisine","distinct","exterior","structure","casual","atmosphere","long","counter","bar","stool","patrons","eatheir","meals","late","operating","hours","diners","frequently","stay","open_hours","day","especially","cities","towns","busy","bar","scene","factories","shift","work","night","shift","workers","bar","post","last","call","bar","term","last","call","venue","socialize","get","food","well","workers","leaving","factories","historically","provided","key","part","customer","base","diners","usually","prefabricated","factories","like","mobile","home","andelivered","restaurant","site","result","many","early","diners","typically","small","narrow","fit","onto","rail","car","truck","delivery","restaurant","site","diners","expanded","years","additions","onto","prefabricated","structure","many","contemporary","diners","fully","built","site","historically","small","business","operated","owner","however_many","diners","currently","operated","chains","diners","typically","serve","american","food","hamburger","french_fries","club","sandwich","simple","quickly","cooked","inexpensive","fare","much","food","grilled","early","diners","based","around","grill","coffee","ubiquitous","beverage","diners","even","always","high_quality","diners","often","serve","hand","blended","milkshake","pie","typically","displayed","glass","case","classic","american","diners","often","exterior","layer","stainlessteel","siding","feature","unique","diner","architecture","cases","nostalgic","retro","style","features","also_found","old","movie","theatre","file","thumb","rosebud","restored","worcester","lunch","car","somerville","massachusetts","file","thumb","diner","heights","new_jersey","first","diner","created","walter","scott","sold","food","horse","pulled","wagon","employees","providence","journal","providence","rhode_island","scott","diner","considered","first","diner","walk","service","windows","side","wagon","commercial","production","lunch","wagons","began","worcester","massachusetts","worcester","massachusetts","thomas","wasuccessful","became_known","white_house","cafe","wagons","charles","first","patent","diner","whiche","billed","night","lunch","wagon","built","fancy","night","cafes","night","lunch","wagons","worcester","area","manufacturing","inc","dining_car","company","jerry","diner","company","dining_car","company","mountain_view","diners","company","silk","city","diners","dining_cars","worcester","lunch","car","company","sterling","diners","inspired","streamlined","trains","especially","burlington","designed","diner","shape","streamlined","train","called","sterling","built","john","b","company","coach","company","built","custom","car","bodies","sterling","diner","production","ceased","athe_beginning","american","involvement","world_war","ii","two","sterling","remain","operation","salem","diner","modern","diner","rhode_island","file","diner","interiorjpg","thumb_interior","sterling","curved","ceiling","number","seats","increased","wagons","gave","way","pre","fabricated","buildings","made","many","manufacturers","made","wagons","like","lunch","wagon","stationary","diner","allowed","one","set","food_service","business","quickly","using","pre","assembled","equipment","great_depression","diner","manufacturers","customers","located","northeast","diner","manufacturing","suffered","industries","depression","though","much","many","industries","diner","offered","less","expensive","way","getting","restaurant","business","well","less","expensive","food","formal","establishments","world_war","ii","theconomy","returned","civilian","production","suburb","attractive","small","business","opportunity","beyond","original","urband","small_town","marketo","highway","suburbs","even","reaching","midwest","valentine","many_areas","diners","fast_food_restaurants","parts","new_jersey","new_york","new_england","states","delaware","pennsylvania","independently","relatively","common","since","newly","lack","original","narrow","stainlessteel","streamlined","appearance","usually","much","bigger","buildings","though","still","made","several","prefabricated","modules","assembled","site","manufactured","old","line","diner","builders","wide_variety","architectural","styles","used","later","diners","including","cape","cod","house","cape","cod","colonial","architecture","colonial","styles","old","style","single","module","diners","featuring","long","counter","small","grew","additional","dining_rooms","lavish","wallpaper","fountains","crystal","greek","definition","term","diner","began","older","received","conventional","frame","leaving","original","structure","nearly","new","construction","renovated","facade","businesses","called","diners","built","onsite","prefabricated","began","appear","larger","establishments","sometimes","known","like","mobile","home","original","style","diner","narrow","allows","roadway","transportation","restaurant","site","traditional","diner","service","counter","interior","preparation","back","wall","floor","mounted","stools","customers","front","larger","models","may","row","booths","againsthe","front","wall","decor","varied","time","diners","feature","copy","appearance","rail","dining_cars","though","fact","refurbished","rail","cars","featured","porcelain","withe","name","written","front","others","bands","others","many","barrel","vault","tile","floors","common","diners","tended","use","stainlessteel","panels","porcelain","glass","blocks","floors","formica","plastic","neon","sign","trim","diners","built","generally","architecture","laid","like","restaurants","retaining","aspects","traditional","diner","architecture","stainlessteel","art_deco","elements","usually","others","small","size","emphasis","counter","cultural","significance","diners","attract","wide","spectrum","local_populations","generally","small","business","mid","twentieth_century","onwards","seen","culture","united_states","american","reflecting","perceived","cultural","diversity","country","large","throughout","much","th_century","diners","particularly","northeastern_united_states","northeast","often","owned","operated","greek","american","immigrant","families","presence","greek","casual","food","like","gyro","food","several","diners","menus","diners","frequently","stay","open_hours","day","especially","cities","america","widespread","hour","public","establishments","making","essential","part","urban","culture","alongside","bars","nightclubs","two","segments","urban","culture","often","find","many","diners","get","late_night","business","persons","departing","drinking_establishments","many","diners","also","historically","placed","near","factories","operated","hours","day","shift","work","night","shift","workers","providing","key","part","customer","base","meant","diners","could","serve","isolation","edward","hopper","edward","hopper","iconic","painting","depicts","diner","occupants","diner","painting","based","greenwich","village","chosen","part","diners","americana","meaning","thathe","scene","could","taken","city","country","also","diner","place","isolated","individuals","long","would","naturally","drawn","spread","diner","meanthat","possible","hopper","institution","role","fifteen","years","earlier","used","automat","painting","automat","night","restaurant","rule","diners","american","optimism","norman","rockwell","made","painting","american","placing","young","boy","protective","highway","athe","counter","anonymous","diner","norman","rockwell","television","cinema","happy","days","grease","film","grease","film","diners","soda_fountain","come","symbolize","period","prosperity","optimism","america","shown","place","meet","school","essential","part","date","television","show","alice","tv_series","alice","used","diner","setting","program","one","often","regular","feature","diner","cultural","influence","continues","today","many","non","restaurants","including","franchises","like","copied","look","diners","nostalgia","nostalgic","appeal","waffle","houses","interior","layout","derived","diner","manhattan","known","diners","diner","wyoming","make_room","development","diners","provide","rather","way","fast_food","fast_food","chains","nationwide","recognizable","fairly","uniform","place","eat","types_ofood","served","likely","consistent","especially","within","region","exceptions","districts","large","immigrant","populations","diners","caf","coffee_shop","often","cater","menus","local","cuisines","prices","charged","athe_time","diners","much","fast_food","chains","structures","menus","even","owners","staff","certain","degree","vary","much","widely","standardized","chain","franchise","restaurants","diner","diner","manufactured","dining_car","company","jersey","listed","national_register","historic_places","media","file","john","diner","john","thumb","john","john","diner","john","diners","focus","several","artists","including","painter","john","spent","years","painting","diners","across","us","films","television","includes","waitress","film","waitress","film","diner","waiting_staff","waitress","food_network","show","diners","drive_ins","andives","pennsylvania","diners","restaurants","documentary","alternate","spellings","western","pennsylvania","brian","kevin","patrick","stackpole","books","edition","may","file","nyc","diner","cheeseburger","thumb","left","upright","bacon","cheeseburger","new_york","city","diner","go","container","comes","onion","rings","french_fries","file","thumb","upright","many","dinerserve","metal","cup","alongside","milkshake","containing","cannot","fit","glass","diners","almost","invariably","serve","american","food","hamburger","french_fries","club","sandwich","simple","fare","much","food","grilled","early","diners","based","around","grill","often","emphasis","breakfast","foodsuch","egg","food","eggs","including","waffle","pancake","french","toast","like","british","greasy_spoon","typical","american","diner","serves","mainly","fried","grilled","food","food","fried","eggs","bacon","hamburgers","hot_dog","brown","waffles","pancakes","deep_fried","chicken","food","chicken","melt","sausage","often","accompanied","baked","beans","french_fries","cole","toast","dinerserve","breakfast","foods","throughouthe","business","day","others","focus","breakfast","may","close","around","commonly_known","pancake_house","coffee","ubiquitous","diners","always","high_quality","many","diners","drink","although","may_serve","beer","inexpensive","wine","others","particularly","inew","jersey","long","island","carry","full","drink","menu","including","many","dinerserve","hand","blended","milkshake","food","usually","quite","inexpensive","meal","sandwich","side","dish","drink","available","less","ten","dollars","regional","variation","among","diners","traditional","regional","american","food","michigand","ohio","valley","coney_island","restaurant","coney_island","style_restaurants","coney_island","hot_dog","coney","dogs","served","certain","types","greek","cuisine","like","gyro","food","influenced","greek","diner","owners","indianand","illinois","fried","pork","sandwiches","typically","menu","northeast","focus","seafood","clams","fried","clams","shrimp","fried","shrimp","commonly","found","maine","pennsylvania","sandwiches","diners","southwest","serve","dish","southern","us","typical","breakfast","dishes","include","biscuits","gravy","soul","food","fried_chicken","greens","inew","jersey","pork","roll","egg","cheese","sandwich","staple","many","diners","many","diners","transparent","display","cases","behind","counter","dessert","common","new","diners","desserts","displayed","rotating","pie","cases","typical","desserts","include","variety","pie","often","view","separate","transparent","case","diners","inew_york","chicago","alsoffer","immigrant","foreign","ethnic","influences","introduced","diner","industry","many","diners","united_statespecially","inew","jersey","illinois","new_york","massachusetts","pennsylvaniand","connecticut","owned","operated","greeks","greek","americans","eastern_european","owners","chiefly","polish","eastern_european","jews","also","typical","italian","people","italian","americans","also","notable","presence","places","significant","latino","populations","mexican","people","mexicans","cuban","people","may_also","notable","influences","seen","certain","frequent","additions","diner","greek","jewish","balls","ball","soup","deli","style","sandwiches","beef","pastrami","lox","see_also","chaan","teng","term","diners","hong_kong","dhaba","term","diners","india","diner","lingo","greasy_spoon","list","diners","lunch","furthereading","john","diners","rev","updated","new_york","kevin","patrick","diners","pennsylvania","stackpole","books","randy","diners","new_england","stackpole","books","richard","j","american","diner","new_york","michael","karl","american","diner","publishing_company","history","journal","august","retrieved","december","charles","palmer","patent","externalinks_category","diners","category_american","culture_category","canadian","culture_category","architectural","styles","category_fast_food","category","nightlife","category","northeastern_united_states","category_types","restaurants"],"clean_bigrams":[["image","summit"],["summit","diner"],["diner","x"],["x","jpg"],["jpg","thumb"],["summit","diner"],["summit","new"],["new","jersey"],["rail","car"],["car","style"],["style","diner"],["diner","built"],["small","fast"],["fast","food"],["food","restauranthat"],["northeastern","united"],["united","states"],["us","canadand"],["canadand","parts"],["western","europe"],["europe","diners"],["diners","offer"],["wide","range"],["range","ofoods"],["ofoods","mostly"],["mostly","american"],["american","cuisine"],["distinct","exterior"],["exterior","structure"],["casual","atmosphere"],["long","counter"],["bar","stool"],["patrons","eatheir"],["eatheir","meals"],["late","operating"],["operating","hours"],["hours","diners"],["diners","frequently"],["frequently","stay"],["stay","open"],["open","hours"],["day","especially"],["busy","bar"],["bar","scene"],["shift","work"],["work","night"],["night","shift"],["shift","workers"],["workers","bar"],["post","last"],["last","call"],["call","bar"],["bar","term"],["term","last"],["last","call"],["call","venue"],["get","food"],["workers","leaving"],["factories","historically"],["historically","provided"],["key","part"],["customer","base"],["factories","like"],["like","mobile"],["mobile","home"],["restaurant","site"],["result","many"],["many","early"],["early","diners"],["diners","typically"],["typically","small"],["fit","onto"],["rail","car"],["restaurant","site"],["additions","onto"],["prefabricated","structure"],["many","contemporary"],["contemporary","diners"],["fully","built"],["historically","small"],["small","business"],["owner","however"],["however","many"],["many","diners"],["currently","operated"],["chains","diners"],["diners","typically"],["typically","serve"],["serve","american"],["american","food"],["french","fries"],["fries","club"],["club","sandwich"],["simple","quickly"],["quickly","cooked"],["inexpensive","fare"],["fare","much"],["early","diners"],["based","around"],["grill","coffee"],["ubiquitous","beverage"],["diners","even"],["high","quality"],["quality","diners"],["diners","often"],["often","serve"],["serve","hand"],["hand","blended"],["blended","milkshake"],["typically","displayed"],["glass","case"],["case","classic"],["classic","american"],["american","diners"],["diners","often"],["exterior","layer"],["stainlessteel","siding"],["feature","unique"],["diner","architecture"],["nostalgic","retro"],["retro","style"],["style","features"],["features","also"],["also","found"],["old","movie"],["movie","theatre"],["restored","worcester"],["worcester","lunch"],["lunch","car"],["somerville","massachusetts"],["massachusetts","file"],["heights","new"],["new","jersey"],["first","diner"],["walter","scott"],["sold","food"],["horse","pulled"],["pulled","wagon"],["providence","journal"],["providence","rhode"],["rhode","island"],["island","scott"],["first","diner"],["wagon","commercial"],["commercial","production"],["lunch","wagons"],["wagons","began"],["worcester","massachusetts"],["massachusetts","worcester"],["worcester","massachusetts"],["became","known"],["white","house"],["house","cafe"],["cafe","wagons"],["wagons","charles"],["first","patent"],["diner","whiche"],["whiche","billed"],["night","lunch"],["lunch","wagon"],["fancy","night"],["night","cafes"],["night","lunch"],["lunch","wagons"],["worcester","area"],["dining","car"],["car","company"],["company","jerry"],["diner","company"],["dining","car"],["car","company"],["company","mountain"],["mountain","view"],["view","diners"],["diners","company"],["company","silk"],["silk","city"],["city","diners"],["dining","cars"],["cars","worcester"],["worcester","lunch"],["lunch","car"],["car","company"],["company","sterling"],["diners","inspired"],["streamlined","trains"],["streamlined","train"],["train","called"],["john","b"],["coach","company"],["built","custom"],["custom","car"],["car","bodies"],["diner","production"],["production","ceased"],["athe","beginning"],["american","involvement"],["world","war"],["war","ii"],["ii","two"],["two","sterling"],["remain","operation"],["salem","diner"],["modern","diner"],["rhode","island"],["diner","interiorjpg"],["interiorjpg","thumb"],["thumb","interior"],["curved","ceiling"],["seats","increased"],["increased","wagons"],["wagons","gave"],["gave","way"],["pre","fabricated"],["fabricated","buildings"],["buildings","made"],["wagons","like"],["lunch","wagon"],["stationary","diner"],["diner","allowed"],["allowed","one"],["food","service"],["service","business"],["business","quickly"],["quickly","using"],["using","pre"],["pre","assembled"],["great","depression"],["diner","manufacturers"],["northeast","diner"],["diner","manufacturing"],["manufacturing","suffered"],["depression","though"],["many","industries"],["diner","offered"],["less","expensive"],["expensive","way"],["restaurant","business"],["less","expensive"],["expensive","food"],["formal","establishments"],["world","war"],["war","ii"],["theconomy","returned"],["civilian","production"],["attractive","small"],["small","business"],["business","opportunity"],["original","urband"],["urband","small"],["small","town"],["town","marketo"],["marketo","highway"],["suburbs","even"],["even","reaching"],["many","areas"],["areas","diners"],["fast","food"],["food","restaurants"],["new","jersey"],["jersey","new"],["new","york"],["new","england"],["england","states"],["states","delaware"],["relatively","common"],["common","since"],["original","narrow"],["narrow","stainlessteel"],["stainlessteel","streamlined"],["streamlined","appearance"],["usually","much"],["much","bigger"],["bigger","buildings"],["buildings","though"],["still","made"],["several","prefabricated"],["prefabricated","modules"],["modules","assembled"],["old","line"],["line","diner"],["diner","builders"],["wide","variety"],["architectural","styles"],["later","diners"],["diners","including"],["including","cape"],["cape","cod"],["cod","house"],["house","cape"],["cape","cod"],["colonial","architecture"],["architecture","colonial"],["colonial","styles"],["old","style"],["style","single"],["single","module"],["module","diners"],["diners","featuring"],["long","counter"],["grew","additional"],["additional","dining"],["dining","rooms"],["rooms","lavish"],["lavish","wallpaper"],["wallpaper","fountains"],["fountains","crystal"],["term","diner"],["diner","began"],["conventional","frame"],["original","structure"],["structure","nearly"],["new","construction"],["renovated","facade"],["facade","businesses"],["diners","built"],["built","onsite"],["prefabricated","began"],["larger","establishments"],["sometimes","known"],["like","mobile"],["mobile","home"],["original","style"],["style","diner"],["allows","roadway"],["restaurant","site"],["traditional","diner"],["service","counter"],["back","wall"],["floor","mounted"],["mounted","stools"],["front","larger"],["larger","models"],["models","may"],["booths","againsthe"],["againsthe","front"],["front","wall"],["decor","varied"],["time","diners"],["feature","art"],["art","decor"],["rail","dining"],["dining","cars"],["cars","though"],["fact","refurbished"],["refurbished","rail"],["rail","cars"],["featured","porcelain"],["withe","name"],["name","written"],["front","others"],["barrel","vault"],["tile","floors"],["common","diners"],["use","stainlessteel"],["stainlessteel","panels"],["panels","porcelain"],["glass","blocks"],["floors","formica"],["formica","plastic"],["neon","sign"],["sign","trim"],["trim","diners"],["diners","built"],["like","restaurants"],["restaurants","retaining"],["traditional","diner"],["diner","architecture"],["architecture","stainlessteel"],["art","deco"],["deco","elements"],["elements","usually"],["small","size"],["counter","cultural"],["cultural","significance"],["significance","diners"],["diners","attract"],["wide","spectrum"],["local","populations"],["generally","small"],["small","business"],["mid","twentieth"],["twentieth","century"],["century","onwards"],["united","states"],["american","reflecting"],["perceived","cultural"],["cultural","diversity"],["large","throughout"],["throughout","much"],["th","century"],["century","diners"],["diners","particularly"],["northeastern","united"],["united","states"],["states","northeast"],["often","owned"],["greek","american"],["american","immigrant"],["immigrant","families"],["greek","casual"],["casual","food"],["food","like"],["like","gyro"],["gyro","food"],["several","diners"],["diners","menus"],["diners","frequently"],["frequently","stay"],["stay","open"],["open","hours"],["day","especially"],["widespread","hour"],["hour","public"],["public","establishments"],["establishments","making"],["essential","part"],["urban","culture"],["culture","alongside"],["alongside","bars"],["two","segments"],["urban","culture"],["culture","often"],["often","find"],["many","diners"],["diners","get"],["late","night"],["night","business"],["persons","departing"],["departing","drinking"],["drinking","establishments"],["establishments","many"],["many","diners"],["also","historically"],["historically","placed"],["placed","near"],["near","factories"],["operated","hours"],["shift","work"],["work","night"],["night","shift"],["shift","workers"],["workers","providing"],["key","part"],["customer","base"],["meant","diners"],["diners","could"],["could","serve"],["isolation","edward"],["edward","hopper"],["hopper","edward"],["edward","hopper"],["iconic","painting"],["occupants","late"],["nighthe","diner"],["greenwich","village"],["americana","meaning"],["meaning","thathe"],["thathe","scene"],["scene","could"],["isolated","individuals"],["would","naturally"],["diner","meanthat"],["fifteen","years"],["years","earlier"],["automat","painting"],["painting","automat"],["night","restaurant"],["rule","diners"],["american","optimism"],["optimism","norman"],["norman","rockwell"],["rockwell","made"],["young","boy"],["protective","highway"],["athe","counter"],["anonymous","diner"],["diner","norman"],["norman","rockwell"],["happy","days"],["days","grease"],["grease","film"],["film","grease"],["grease","film"],["film","diners"],["soda","fountain"],["essential","part"],["television","show"],["show","alice"],["alice","tv"],["tv","series"],["series","alice"],["alice","used"],["regular","feature"],["cultural","influence"],["influence","continues"],["continues","today"],["today","many"],["many","non"],["restaurants","including"],["including","franchises"],["franchises","like"],["nostalgia","nostalgic"],["nostalgic","appeal"],["waffle","houses"],["interior","layout"],["layout","derived"],["diner","manhattan"],["make","room"],["development","diners"],["diners","provide"],["fast","food"],["food","fast"],["fast","food"],["food","chains"],["nationwide","recognizable"],["recognizable","fairly"],["fairly","uniform"],["uniform","place"],["types","ofood"],["ofood","served"],["consistent","especially"],["especially","within"],["region","exceptions"],["large","immigrant"],["immigrant","populations"],["caf","coffee"],["coffee","shop"],["often","cater"],["local","cuisines"],["prices","charged"],["charged","athe"],["time","diners"],["fast","food"],["food","chains"],["structures","menus"],["even","owners"],["certain","degree"],["vary","much"],["standardized","chain"],["franchise","restaurants"],["dining","car"],["car","company"],["national","register"],["historic","places"],["media","file"],["file","john"],["thumb","john"],["john","diners"],["several","artists"],["artists","including"],["painter","john"],["years","painting"],["painting","diners"],["diners","across"],["us","films"],["includes","waitress"],["waitress","film"],["film","waitress"],["waitress","film"],["diner","waiting"],["waiting","staff"],["staff","waitress"],["food","network"],["network","show"],["show","diners"],["diners","drive"],["drive","ins"],["ins","andives"],["pennsylvania","diners"],["documentary","alternate"],["alternate","spellings"],["kevin","patrick"],["patrick","stackpole"],["stackpole","books"],["edition","may"],["file","nyc"],["nyc","diner"],["thumb","left"],["left","upright"],["bacon","cheeseburger"],["new","york"],["york","city"],["city","diner"],["go","container"],["container","comes"],["onion","rings"],["french","fries"],["fries","file"],["thumb","upright"],["upright","many"],["many","dinerserve"],["metal","cup"],["cup","alongside"],["milkshake","containing"],["glass","diners"],["diners","almost"],["almost","invariably"],["invariably","serve"],["serve","american"],["american","food"],["french","fries"],["fries","club"],["club","sandwich"],["simple","fare"],["fare","much"],["early","diners"],["based","around"],["breakfast","foodsuch"],["egg","food"],["food","eggs"],["eggs","including"],["french","toast"],["toast","like"],["british","greasy"],["greasy","spoon"],["typical","american"],["american","diner"],["diner","serves"],["serves","mainly"],["mainly","fried"],["grilled","food"],["food","fried"],["fried","eggs"],["eggs","bacon"],["bacon","hamburgers"],["hamburgers","hot"],["hot","dog"],["waffles","pancakes"],["deep","fried"],["fried","chicken"],["chicken","food"],["food","chicken"],["often","accompanied"],["baked","beans"],["beans","french"],["french","fries"],["fries","cole"],["breakfast","foods"],["foods","throughouthe"],["throughouthe","business"],["business","day"],["breakfast","may"],["may","close"],["commonly","known"],["pancake","house"],["high","quality"],["quality","many"],["many","diners"],["serve","alcoholic"],["alcoholic","drink"],["may","serve"],["serve","beer"],["inexpensive","wine"],["others","particularly"],["particularly","inew"],["inew","jersey"],["long","island"],["island","carry"],["full","drink"],["drink","menu"],["menu","including"],["many","dinerserve"],["dinerserve","hand"],["hand","blended"],["blended","milkshake"],["usually","quite"],["quite","inexpensive"],["meal","sandwich"],["sandwich","side"],["side","dish"],["dish","drink"],["drink","available"],["ten","dollars"],["regional","variation"],["variation","among"],["among","diners"],["traditional","regional"],["regional","american"],["american","food"],["ohio","valley"],["coney","island"],["island","restaurant"],["restaurant","coney"],["coney","island"],["island","style"],["style","restaurants"],["restaurants","coney"],["coney","island"],["island","hot"],["hot","dog"],["dog","coney"],["coney","dogs"],["certain","types"],["greek","cuisine"],["cuisine","like"],["like","gyro"],["gyro","food"],["greek","diner"],["diner","owners"],["owners","indianand"],["indianand","illinois"],["illinois","fried"],["fried","pork"],["clams","fried"],["fried","clams"],["shrimp","fried"],["fried","shrimp"],["shrimp","commonly"],["commonly","found"],["southwest","serve"],["southern","us"],["us","typical"],["typical","breakfast"],["breakfast","dishes"],["dishes","include"],["soul","food"],["food","fried"],["fried","chicken"],["greens","inew"],["inew","jersey"],["pork","roll"],["roll","egg"],["cheese","sandwich"],["many","diners"],["diners","many"],["many","diners"],["transparent","display"],["display","cases"],["new","diners"],["desserts","displayed"],["rotating","pie"],["pie","cases"],["cases","typical"],["typical","desserts"],["desserts","include"],["separate","transparent"],["transparent","case"],["diners","inew"],["inew","york"],["chicago","alsoffer"],["foreign","ethnic"],["ethnic","influences"],["diner","industry"],["industry","many"],["many","diners"],["united","statespecially"],["statespecially","inew"],["inew","jersey"],["jersey","illinois"],["illinois","new"],["new","york"],["york","massachusetts"],["massachusetts","pennsylvaniand"],["pennsylvaniand","connecticut"],["greeks","greek"],["greek","americans"],["americans","eastern"],["eastern","european"],["european","owners"],["owners","chiefly"],["chiefly","polish"],["eastern","european"],["european","jews"],["also","typical"],["typical","italian"],["italian","people"],["people","italian"],["italian","americans"],["americans","also"],["notable","presence"],["significant","latino"],["latino","populations"],["populations","mexican"],["mexican","people"],["people","mexicans"],["cuban","people"],["may","also"],["certain","frequent"],["frequent","additions"],["ball","soup"],["soup","deli"],["deli","style"],["style","sandwiches"],["beef","pastrami"],["lox","see"],["see","also"],["also","chaan"],["chaan","teng"],["hong","kong"],["kong","dhaba"],["diners","india"],["india","diner"],["diner","lingo"],["lingo","greasy"],["greasy","spoon"],["spoon","list"],["diners","lunch"],["john","diners"],["diners","rev"],["updated","new"],["new","york"],["kevin","patrick"],["patrick","diners"],["stackpole","books"],["randy","diners"],["new","england"],["stackpole","books"],["richard","j"],["american","diner"],["new","york"],["michael","karl"],["american","diner"],["publishing","company"],["august","retrieved"],["december","charles"],["charles","palmer"],["patent","externalinks"],["externalinks","category"],["category","diners"],["diners","category"],["category","american"],["american","culture"],["culture","category"],["category","canadian"],["canadian","culture"],["culture","category"],["category","architectural"],["architectural","styles"],["styles","category"],["category","fast"],["fast","food"],["food","category"],["category","nightlife"],["nightlife","category"],["category","northeastern"],["northeastern","united"],["united","states"],["states","category"],["category","types"]],"all_collocations":["image summit","summit diner","diner x","x jpg","summit diner","summit new","new jersey","rail car","car style","style diner","diner built","small fast","fast food","food restauranthat","northeastern united","united states","us canadand","canadand parts","western europe","europe diners","diners offer","wide range","range ofoods","ofoods mostly","mostly american","american cuisine","distinct exterior","exterior structure","casual atmosphere","long counter","bar stool","patrons eatheir","eatheir meals","late operating","operating hours","hours diners","diners frequently","frequently stay","stay open","open hours","day especially","busy bar","bar scene","shift work","work night","night shift","shift workers","workers bar","post last","last call","call bar","bar term","term last","last call","call venue","get food","workers leaving","factories historically","historically provided","key part","customer base","factories like","like mobile","mobile home","restaurant site","result many","many early","early diners","diners typically","typically small","fit onto","rail car","restaurant site","additions onto","prefabricated structure","many contemporary","contemporary diners","fully built","historically small","small business","owner however","however many","many diners","currently operated","chains diners","diners typically","typically serve","serve american","american food","french fries","fries club","club sandwich","simple quickly","quickly cooked","inexpensive fare","fare much","early diners","based around","grill coffee","ubiquitous beverage","diners even","high quality","quality diners","diners often","often serve","serve hand","hand blended","blended milkshake","typically displayed","glass case","case classic","classic american","american diners","diners often","exterior layer","stainlessteel siding","feature unique","diner architecture","nostalgic retro","retro style","style features","features also","also found","old movie","movie theatre","restored worcester","worcester lunch","lunch car","somerville massachusetts","massachusetts file","heights new","new jersey","first diner","walter scott","sold food","horse pulled","pulled wagon","providence journal","providence rhode","rhode island","island scott","first diner","wagon commercial","commercial production","lunch wagons","wagons began","worcester massachusetts","massachusetts worcester","worcester massachusetts","became known","white house","house cafe","cafe wagons","wagons charles","first patent","diner whiche","whiche billed","night lunch","lunch wagon","fancy night","night cafes","night lunch","lunch wagons","worcester area","dining car","car company","company jerry","diner company","dining car","car company","company mountain","mountain view","view diners","diners company","company silk","silk city","city diners","dining cars","cars worcester","worcester lunch","lunch car","car company","company sterling","diners inspired","streamlined trains","streamlined train","train called","john b","coach company","built custom","custom car","car bodies","diner production","production ceased","athe beginning","american involvement","world war","war ii","ii two","two sterling","remain operation","salem diner","modern diner","rhode island","diner interiorjpg","interiorjpg thumb","thumb interior","curved ceiling","seats increased","increased wagons","wagons gave","gave way","pre fabricated","fabricated buildings","buildings made","wagons like","lunch wagon","stationary diner","diner allowed","allowed one","food service","service business","business quickly","quickly using","using pre","pre assembled","great depression","diner manufacturers","northeast diner","diner manufacturing","manufacturing suffered","depression though","many industries","diner offered","less expensive","expensive way","restaurant business","less expensive","expensive food","formal establishments","world war","war ii","theconomy returned","civilian production","attractive small","small business","business opportunity","original urband","urband small","small town","town marketo","marketo highway","suburbs even","even reaching","many areas","areas diners","fast food","food restaurants","new jersey","jersey new","new york","new england","england states","states delaware","relatively common","common since","original narrow","narrow stainlessteel","stainlessteel streamlined","streamlined appearance","usually much","much bigger","bigger buildings","buildings though","still made","several prefabricated","prefabricated modules","modules assembled","old line","line diner","diner builders","wide variety","architectural styles","later diners","diners including","including cape","cape cod","cod house","house cape","cape cod","colonial architecture","architecture colonial","colonial styles","old style","style single","single module","module diners","diners featuring","long counter","grew additional","additional dining","dining rooms","rooms lavish","lavish wallpaper","wallpaper fountains","fountains crystal","term diner","diner began","conventional frame","original structure","structure nearly","new construction","renovated facade","facade businesses","diners built","built onsite","prefabricated began","larger establishments","sometimes known","like mobile","mobile home","original style","style diner","allows roadway","restaurant site","traditional diner","service counter","back wall","floor mounted","mounted stools","front larger","larger models","models may","booths againsthe","againsthe front","front wall","decor varied","time diners","feature art","art decor","rail dining","dining cars","cars though","fact refurbished","refurbished rail","rail cars","featured porcelain","withe name","name written","front others","barrel vault","tile floors","common diners","use stainlessteel","stainlessteel panels","panels porcelain","glass blocks","floors formica","formica plastic","neon sign","sign trim","trim diners","diners built","like restaurants","restaurants retaining","traditional diner","diner architecture","architecture stainlessteel","art deco","deco elements","elements usually","small size","counter cultural","cultural significance","significance diners","diners attract","wide spectrum","local populations","generally small","small business","mid twentieth","twentieth century","century onwards","united states","american reflecting","perceived cultural","cultural diversity","large throughout","throughout much","th century","century diners","diners particularly","northeastern united","united states","states northeast","often owned","greek american","american immigrant","immigrant families","greek casual","casual food","food like","like gyro","gyro food","several diners","diners menus","diners frequently","frequently stay","stay open","open hours","day especially","widespread hour","hour public","public establishments","establishments making","essential part","urban culture","culture alongside","alongside bars","two segments","urban culture","culture often","often find","many diners","diners get","late night","night business","persons departing","departing drinking","drinking establishments","establishments many","many diners","also historically","historically placed","placed near","near factories","operated hours","shift work","work night","night shift","shift workers","workers providing","key part","customer base","meant diners","diners could","could serve","isolation edward","edward hopper","hopper edward","edward hopper","iconic painting","occupants late","nighthe diner","greenwich village","americana meaning","meaning thathe","thathe scene","scene could","isolated individuals","would naturally","diner meanthat","fifteen years","years earlier","automat painting","painting automat","night restaurant","rule diners","american optimism","optimism norman","norman rockwell","rockwell made","young boy","protective highway","athe counter","anonymous diner","diner norman","norman rockwell","happy days","days grease","grease film","film grease","grease film","film diners","soda fountain","essential part","television show","show alice","alice tv","tv series","series alice","alice used","regular feature","cultural influence","influence continues","continues today","today many","many non","restaurants including","including franchises","franchises like","nostalgia nostalgic","nostalgic appeal","waffle houses","interior layout","layout derived","diner manhattan","make room","development diners","diners provide","fast food","food fast","fast food","food chains","nationwide recognizable","recognizable fairly","fairly uniform","uniform place","types ofood","ofood served","consistent especially","especially within","region exceptions","large immigrant","immigrant populations","caf coffee","coffee shop","often cater","local cuisines","prices charged","charged athe","time diners","fast food","food chains","structures menus","even owners","certain degree","vary much","standardized chain","franchise restaurants","dining car","car company","national register","historic places","media file","file john","thumb john","john diners","several artists","artists including","painter john","years painting","painting diners","diners across","us films","includes waitress","waitress film","film waitress","waitress film","diner waiting","waiting staff","staff waitress","food network","network show","show diners","diners drive","drive ins","ins andives","pennsylvania diners","documentary alternate","alternate spellings","kevin patrick","patrick stackpole","stackpole books","edition may","file nyc","nyc diner","left upright","bacon cheeseburger","new york","york city","city diner","go container","container comes","onion rings","french fries","fries file","upright many","many dinerserve","metal cup","cup alongside","milkshake containing","glass diners","diners almost","almost invariably","invariably serve","serve american","american food","french fries","fries club","club sandwich","simple fare","fare much","early diners","based around","breakfast foodsuch","egg food","food eggs","eggs including","french toast","toast like","british greasy","greasy spoon","typical american","american diner","diner serves","serves mainly","mainly fried","grilled food","food fried","fried eggs","eggs bacon","bacon hamburgers","hamburgers hot","hot dog","waffles pancakes","deep fried","fried chicken","chicken food","food chicken","often accompanied","baked beans","beans french","french fries","fries cole","breakfast foods","foods throughouthe","throughouthe business","business day","breakfast may","may close","commonly known","pancake house","high quality","quality many","many diners","serve alcoholic","alcoholic drink","may serve","serve beer","inexpensive wine","others particularly","particularly inew","inew jersey","long island","island carry","full drink","drink menu","menu including","many dinerserve","dinerserve hand","hand blended","blended milkshake","usually quite","quite inexpensive","meal sandwich","sandwich side","side dish","dish drink","drink available","ten dollars","regional variation","variation among","among diners","traditional regional","regional american","american food","ohio valley","coney island","island restaurant","restaurant coney","coney island","island style","style restaurants","restaurants coney","coney island","island hot","hot dog","dog coney","coney dogs","certain types","greek cuisine","cuisine like","like gyro","gyro food","greek diner","diner owners","owners indianand","indianand illinois","illinois fried","fried pork","clams fried","fried clams","shrimp fried","fried shrimp","shrimp commonly","commonly found","southwest serve","southern us","us typical","typical breakfast","breakfast dishes","dishes include","soul food","food fried","fried chicken","greens inew","inew jersey","pork roll","roll egg","cheese sandwich","many diners","diners many","many diners","transparent display","display cases","new diners","desserts displayed","rotating pie","pie cases","cases typical","typical desserts","desserts include","separate transparent","transparent case","diners inew","inew york","chicago alsoffer","foreign ethnic","ethnic influences","diner industry","industry many","many diners","united statespecially","statespecially inew","inew jersey","jersey illinois","illinois new","new york","york massachusetts","massachusetts pennsylvaniand","pennsylvaniand connecticut","greeks greek","greek americans","americans eastern","eastern european","european owners","owners chiefly","chiefly polish","eastern european","european jews","also typical","typical italian","italian people","people italian","italian americans","americans also","notable presence","significant latino","latino populations","populations mexican","mexican people","people mexicans","cuban people","may also","certain frequent","frequent additions","ball soup","soup deli","deli style","style sandwiches","beef pastrami","lox see","see also","also chaan","chaan teng","hong kong","kong dhaba","diners india","india diner","diner lingo","lingo greasy","greasy spoon","spoon list","diners lunch","john diners","diners rev","updated new","new york","kevin patrick","patrick diners","stackpole books","randy diners","new england","stackpole books","richard j","american diner","new york","michael karl","american diner","publishing company","august retrieved","december charles","charles palmer","patent externalinks","externalinks category","category diners","diners category","category american","american culture","culture category","category canadian","canadian culture","culture category","category architectural","architectural styles","styles category","category fast","fast food","food category","category nightlife","nightlife category","category northeastern","northeastern united","united states","states category","category types"],"new_description":"image summit diner x jpg thumb summit diner summit new_jersey rail car style diner built company diner small fast_food_restauranthat found northeastern_united_states midwest well parts us canadand parts western_europe diners offer wide_range ofoods mostly american cuisine distinct exterior structure casual atmosphere long counter bar stool patrons eatheir meals late operating hours diners frequently stay open_hours day especially cities towns busy bar scene factories shift work night shift workers bar post last call bar term last call venue socialize get food well workers leaving factories historically provided key part customer base diners usually prefabricated factories like mobile home andelivered restaurant site result many early diners typically small narrow fit onto rail car truck delivery restaurant site diners expanded years additions onto prefabricated structure many contemporary diners fully built site historically small business operated owner however_many diners currently operated chains diners typically serve american food hamburger french_fries club sandwich simple quickly cooked inexpensive fare much food grilled early diners based around grill coffee ubiquitous beverage diners even always high_quality diners often serve hand blended milkshake pie typically displayed glass case classic american diners often exterior layer stainlessteel siding feature unique diner architecture cases nostalgic retro style features also_found old movie theatre file thumb rosebud restored worcester lunch car somerville massachusetts file thumb diner heights new_jersey first diner created walter scott sold food horse pulled wagon employees providence journal providence rhode_island scott diner considered first diner walk service windows side wagon commercial production lunch wagons began worcester massachusetts worcester massachusetts thomas wasuccessful became_known white_house cafe wagons charles first patent diner whiche billed night lunch wagon built fancy night cafes night lunch wagons worcester area manufacturing inc dining_car company jerry diner company dining_car company mountain_view diners company silk city diners dining_cars worcester lunch car company sterling diners inspired streamlined trains especially burlington designed diner shape streamlined train called sterling built john b company coach company built custom car bodies sterling diner production ceased athe_beginning american involvement world_war ii two sterling remain operation salem diner modern diner rhode_island file diner interiorjpg thumb_interior sterling curved ceiling number seats increased wagons gave way pre fabricated buildings made many manufacturers made wagons like lunch wagon stationary diner allowed one set food_service business quickly using pre assembled equipment great_depression diner manufacturers customers located northeast diner manufacturing suffered industries depression though much many industries diner offered less expensive way getting restaurant business well less expensive food formal establishments world_war ii theconomy returned civilian production suburb attractive small business opportunity beyond original urband small_town marketo highway suburbs even reaching midwest valentine many_areas diners fast_food_restaurants parts new_jersey new_york new_england states delaware pennsylvania independently relatively common since newly lack original narrow stainlessteel streamlined appearance usually much bigger buildings though still made several prefabricated modules assembled site manufactured old line diner builders wide_variety architectural styles used later diners including cape cod house cape cod colonial architecture colonial styles old style single module diners featuring long counter small grew additional dining_rooms lavish wallpaper fountains crystal greek definition term diner began older received conventional frame leaving original structure nearly new construction renovated facade businesses called diners built onsite prefabricated began appear larger establishments sometimes known like mobile home original style diner narrow allows roadway transportation restaurant site traditional diner service counter interior preparation back wall floor mounted stools customers front larger models may row booths againsthe front wall decor varied time diners feature art_decor copy appearance rail dining_cars though fact refurbished rail cars featured porcelain withe name written front others bands others many barrel vault tile floors common diners tended use stainlessteel panels porcelain glass blocks floors formica plastic neon sign trim diners built generally architecture laid like restaurants retaining aspects traditional diner architecture stainlessteel art_deco elements usually others small size emphasis counter cultural significance diners attract wide spectrum local_populations generally small business mid twentieth_century onwards seen culture united_states american reflecting perceived cultural diversity country large throughout much th_century diners particularly northeastern_united_states northeast often owned operated greek american immigrant families presence greek casual food like gyro food several diners menus diners frequently stay open_hours day especially cities america widespread hour public establishments making essential part urban culture alongside bars nightclubs two segments urban culture often find many diners get late_night business persons departing drinking_establishments many diners also historically placed near factories operated hours day shift work night shift workers providing key part customer base meant diners could serve isolation edward hopper edward hopper iconic painting depicts diner occupants late_nighthe diner painting based greenwich village chosen part diners americana meaning thathe scene could taken city country also diner place isolated individuals long would naturally drawn spread diner meanthat possible hopper institution role fifteen years earlier used automat painting automat night restaurant rule diners american optimism norman rockwell made painting american placing young boy protective highway athe counter anonymous diner norman rockwell television cinema happy days grease film grease film diners soda_fountain come symbolize period prosperity optimism america shown place meet school essential part date television show alice tv_series alice used diner setting program one often regular feature diner cultural influence continues today many non restaurants including franchises like copied look diners nostalgia nostalgic appeal waffle houses interior layout derived diner manhattan known diners diner wyoming make_room development diners provide rather way fast_food fast_food chains nationwide recognizable fairly uniform place eat types_ofood served likely consistent especially within region exceptions districts large immigrant populations diners caf coffee_shop often cater menus local cuisines prices charged athe_time diners much fast_food chains structures menus even owners staff certain degree vary much widely standardized chain franchise restaurants diner diner manufactured dining_car company jersey listed national_register historic_places media file john diner john thumb john john diner john diners focus several artists including painter john spent years painting diners across us films television includes waitress film waitress film diner waiting_staff waitress food_network show diners drive_ins andives pennsylvania diners restaurants documentary alternate spellings western pennsylvania brian kevin patrick stackpole books edition may file nyc diner cheeseburger thumb left upright bacon cheeseburger new_york city diner go container comes onion rings french_fries file thumb upright many dinerserve metal cup alongside milkshake containing cannot fit glass diners almost invariably serve american food hamburger french_fries club sandwich simple fare much food grilled early diners based around grill often emphasis breakfast foodsuch egg food eggs including waffle pancake french toast like british greasy_spoon typical american diner serves mainly fried grilled food food fried eggs bacon hamburgers hot_dog brown waffles pancakes deep_fried chicken food chicken melt sausage often accompanied baked beans french_fries cole toast dinerserve breakfast foods throughouthe business day others focus breakfast may close around commonly_known pancake_house coffee ubiquitous diners always high_quality many diners serve_alcoholic drink although may_serve beer inexpensive wine others particularly inew jersey long island carry full drink menu including many dinerserve hand blended milkshake food usually quite inexpensive meal sandwich side dish drink available less ten dollars regional variation among diners traditional regional american food michigand ohio valley coney_island restaurant coney_island style_restaurants coney_island hot_dog coney dogs served certain types greek cuisine like gyro food influenced greek diner owners indianand illinois fried pork sandwiches typically menu northeast focus seafood clams fried clams shrimp fried shrimp commonly found maine pennsylvania sandwiches diners southwest serve dish southern us typical breakfast dishes include biscuits gravy soul food fried_chicken greens inew jersey pork roll egg cheese sandwich staple many diners many diners transparent display cases behind counter dessert common new diners desserts displayed rotating pie cases typical desserts include variety pie often view separate transparent case diners inew_york chicago alsoffer immigrant foreign ethnic influences introduced diner industry many diners united_statespecially inew jersey illinois new_york massachusetts pennsylvaniand connecticut owned operated greeks greek americans eastern_european owners chiefly polish eastern_european jews also typical italian people italian americans also notable presence places significant latino populations mexican people mexicans cuban people may_also notable influences seen certain frequent additions diner greek jewish balls ball soup deli style sandwiches beef pastrami lox see_also chaan teng term diners hong_kong dhaba term diners india diner lingo greasy_spoon list diners lunch furthereading john diners rev updated new_york kevin patrick diners pennsylvania stackpole books randy diners new_england stackpole books richard j american diner new_york michael karl american diner publishing_company history journal august retrieved december charles palmer patent externalinks_category diners category_american culture_category canadian culture_category architectural styles category_fast_food category nightlife category northeastern_united_states category_types restaurants"},{"title":"Diner lingo","description":"file salemdiner salemassachusettsjpg thumb salem diner in salemassachusetts usa diner lingo is a kind of american verbal slang used by cooks and chefs in diner s andiner style restaurants and by the wait staff to communicate their orders to the cooks usage of terms with similar meaning propagated by oral culture within each establishment may vary by region or even among restaurants in the same locale it is virtually unknown outside the us the origin of the lingo is unknown buthere is evidence suggesting it may have been used by waiters as early as the s and s many of the terms used are lighthearted and tongue in cheek and some are a bit racy oribald but are helpful mnemonic devices for short order cooks and staff diner lingo was most popular in diner s and luncheonette s from the s to the see also coffeehouse coffee shop greasy spoon list of restauranterminology waffle house furthereading dinerlingocom the history of diner lingo and new york eating houses research glossary by barbara kuck culinary historian curator chicago culinary museum and chefs hall ofame and tom robertszathm ry distinguished visiting professor of gastronomy category restauranterminology category diners category english based argots category occupational cryptolects","main_words":["file","thumb","salem","diner","usa","diner","lingo","kind","american","slang","used","cooks","chefs","diner","style_restaurants","wait_staff","communicate","orders","cooks","usage","terms","similar","meaning","oral","culture","within","establishment","may","vary","region","even","among","restaurants","locale","virtually","unknown","outside","us","origin","lingo","unknown","buthere","evidence","suggesting","may","used","waiters","early","many","terms","used","tongue","bit","helpful","devices","short","order","cooks","staff","diner","lingo","popular","diner","see_also","coffeehouse","coffee_shop","greasy_spoon","list","restauranterminology","waffle","house","furthereading","history","diner","lingo","new_york","eating","houses","research","glossary","barbara","culinary","historian","curator","chicago","culinary","museum","chefs","hall_ofame","tom","distinguished","visiting","professor","gastronomy","category_restauranterminology","category","diners","category_english","based","category","occupational"],"clean_bigrams":[["thumb","salem"],["salem","diner"],["usa","diner"],["diner","lingo"],["slang","used"],["style","restaurants"],["wait","staff"],["cooks","usage"],["similar","meaning"],["oral","culture"],["culture","within"],["establishment","may"],["may","vary"],["even","among"],["among","restaurants"],["virtually","unknown"],["unknown","outside"],["unknown","buthere"],["evidence","suggesting"],["terms","used"],["short","order"],["order","cooks"],["staff","diner"],["diner","lingo"],["see","also"],["also","coffeehouse"],["coffeehouse","coffee"],["coffee","shop"],["shop","greasy"],["greasy","spoon"],["spoon","list"],["restauranterminology","waffle"],["waffle","house"],["house","furthereading"],["diner","lingo"],["new","york"],["york","eating"],["eating","houses"],["houses","research"],["research","glossary"],["culinary","historian"],["historian","curator"],["curator","chicago"],["chicago","culinary"],["culinary","museum"],["chefs","hall"],["hall","ofame"],["distinguished","visiting"],["visiting","professor"],["gastronomy","category"],["category","restauranterminology"],["restauranterminology","category"],["category","diners"],["diners","category"],["category","english"],["english","based"],["category","occupational"]],"all_collocations":["thumb salem","salem diner","usa diner","diner lingo","slang used","style restaurants","wait staff","cooks usage","similar meaning","oral culture","culture within","establishment may","may vary","even among","among restaurants","virtually unknown","unknown outside","unknown buthere","evidence suggesting","terms used","short order","order cooks","staff diner","diner lingo","see also","also coffeehouse","coffeehouse coffee","coffee shop","shop greasy","greasy spoon","spoon list","restauranterminology waffle","waffle house","house furthereading","diner lingo","new york","york eating","eating houses","houses research","research glossary","culinary historian","historian curator","curator chicago","chicago culinary","culinary museum","chefs hall","hall ofame","distinguished visiting","visiting professor","gastronomy category","category restauranterminology","restauranterminology category","category diners","diners category","category english","english based","category occupational"],"new_description":"file thumb salem diner usa diner lingo kind american slang used cooks chefs diner style_restaurants wait_staff communicate orders cooks usage terms similar meaning oral culture within establishment may vary region even among restaurants locale virtually unknown outside us origin lingo unknown buthere evidence suggesting may used waiters early many terms used tongue bit helpful devices short order cooks staff diner lingo popular diner see_also coffeehouse coffee_shop greasy_spoon list restauranterminology waffle house furthereading history diner lingo new_york eating houses research glossary barbara culinary historian curator chicago culinary museum chefs hall_ofame tom distinguished visiting professor gastronomy category_restauranterminology category diners category_english based category occupational"},{"title":"Dining car","description":"file restaurant car in austriajpg thumb right a dining car on an austrian inter city train a dining car american english or a restaurant car british english also a diner is a railroad passenger carail passenger car that serves meals in the manner of a full service sit down restaurant it is distinct from otherailroad food service cars that do not duplicate the full service restaurant experience such as cars in which one purchases food from a walk up counter to be consumed either within the car or elsewhere in the train grill cars in which customersit on stools at a counter and purchase and consume food cooked on a grill behind the counter are generally considered to be an intermediate type of dining car file notice to passengers this train does not stop for mealsjpg thumb notice from the central pacific railroad ca file b o dining carjpg thumb dining car queen on the royal blue train b o royal blue in before dining cars in passenger trains were common in the united states a rail passenger s option for meal service in transit was to patronize one of the roadhouses often located near the railroad s water stop s fare typically consisted of rancid meat cold beans and old coffee such poor conditions discouraged many fromaking the journey most railroads began offering meal service on trains even before the firstranscontinental railroad by the mid s dedicatedining cars were a normal part of long distance trains from chicago to points west save those of the atchison topekand santa fe railway santa fe railway which relied on america s first interstate network of restaurants to feed passengers en route the fred harvey company notable fred harvey hotels harvey houses located strategically along the line served top quality meals to railroad patrons during water stops and other planned layovers and were favored over in transit facilities for all trains operating west of kansas city missouri kansas city as competition among railroads intensifiedining car service was taken to new levels when the santa fe unveiled its new pleasure dome railcar pleasure dome lounge cars in the railroad introduced the travelling public to the turquoise room promoted as the only private dining room in the world on rails the room accommodated guests and could be reserved anytime for private dinner or cocktail parties or other special functions the room was often used by celebrities andignitaries traveling on the super chief edwin kachel was a steward for more than twenty five years in the dining car department of the great northern railway he said that on a dining car threelements can be considered thequipmenthemployee then passenger in other words the whole is constituted by two thirds of human parts as cross country train travel became more commonplace passengers began to expect high quality food to be served athe meals on board the level of meal service on trains in the s and s rivaled that of high end restaurants and clubs elegance is one of the main words used to describe the concept of dining on a train use ofresh ingredients was encouraged whenever possible some of the dishes prepared by chefs were braiseduck cumberland hungarian beef goulash with potato dumplings lobster americaine mountain trout au bleu curry of lamb madrascalloped brusselsprouts pecand orange sticks and pennepicure pie to name a few items the christmas menu for the chicago milwaukee st paul railway in listed the following items hunter soup salmon withollandaise sauce boned pheasant in aspic jelly chicken salad salmis prairie chicken oyster patties rice croquette roast beef english ribs of beef turkey with cranberry sauce stuffed suckling pig with applesauce antelope steak with currant jelly potatoes green peas tomatoesweet potatoes mince pie plum pudding cake ice cream fruits and coffee dining car configuration file pullman orient express taurusjpg thumb pullman dining car in one of the most common dining car configurations onend of the car contains a galley kitchen galley with an aisle nexto it so passengers can pass through the car to the rest of the train while the other end has table or booth seating on either side of a center aisle trains withigh demand for dining car servicesometimes feature double unit dining cars consisting of two adjacent cars functioning to somextent as a singlentity generally with one car containing a galley plus table or booth seating and the other car containing table or booth seating only in the dining cars of amtrak s modern bilevel superlinerailcar superliner trains booth seating on either side of a center aisle occupies almosthentire upper level while the galley is below food isento the upper level on a dumbwaiter elevator dumbwaiter dining cars enhance the familiarestaurant experience withe unique visual entertainment of thever changing viewhile dining cars are less common today than in the past having been supplemented or in some cases replaced altogether by other types ofood service cars they still play a significant role in passengerailroading especially on medium and long distance trains today a number of tourist oriented railroads offer dinner excursions to capitalize on the public s fascination withe dining car experience the u tram line between the german cities of d sseldorf and krefeld offers a bistrowagen dining car in german where passengers can order drinks and snacks this practise comes from thearly th century when interurban trams conveyed a dining car despite the introduction of modern tram units tramstill have a bistrowagen and operatevery weekday file viadiningcara jpg the dining car of the via rail canadian prepared for meal service file wagons lits dining car in austria in jpg wagons lits dining car in austria in file service galley santa fe cochitijpg the pantry aboard former santa fe dining car the cochiti over a million meals were served in the car which remained in service through the late s file luxury on wheelsjpg an s print advertisement extolling the virtues of meal service aboard the chicago and alton railroad file indian railways kitchen coach jpg indian railways dining car kitchen see also buffet car troop sleeper troop kitchen el comedor fred harvey company lists of named passenger trains napa valley wine train super chief dining aboard the super chief dining aboard the super chief jenny lind private railroad car seaboard air line furthereading notes on wagr s dining cars watson lg australian railway historical society bulletin september pp on train catering inew south wales banger chris australian railway historical society bulletin march to july pp externalinks atchison topekand santa fe railway no cochiti photographs and short history of a super chief dining car built in erie lackawanna dining car preservation society restoration of two historic dining cars to recreate the dinner in the diner experienceureka springs and north arkansas railway s dining car service new dining car category passenger coaches category types of restaurants","main_words":["file","restaurant","car","thumb","right","dining_car","austrian","inter","city","train","dining_car","american_english","restaurant","car","british_english","also","diner","railroad","passenger","passenger","car","serves","meals","manner","full_service","sit","restaurant","distinct","food_service","cars","full_service","restaurant","experience","cars","one","purchases","food","walk","counter","consumed","either","within","car","elsewhere","train","grill","cars","stools","counter","purchase","consume","food","cooked","grill","behind","counter","generally","considered","intermediate","type","dining_car","file","notice","passengers","train","stop","thumb","notice","central","pacific","railroad","file","b","dining","thumb","dining_car","queen","royal","blue","train","b","royal","blue","dining_cars","passenger","trains","common","united_states","rail","passenger","option","meal","service","transit","one","roadhouses","often","located_near","railroad","water","stop","fare","typically","consisted","meat","cold","beans","old","coffee","poor","conditions","discouraged","many","journey","railroads","began","offering","meal","service","trains","even","railroad","mid","cars","normal","part","long_distance","trains","chicago","points","west","save","atchison","santa","railway","santa","railway","relied","america","first","interstate","network","restaurants","feed","passengers","route","fred","harvey","company","notable","fred","harvey","hotels","harvey","houses","located","along","line","served","top","quality","meals","railroad","patrons","water","stops","planned","favored","transit","facilities","trains","operating","west","kansas_city","missouri","kansas_city","competition","among","railroads","car","service","taken","new","levels","santa","unveiled","new","pleasure","dome","pleasure","dome","lounge","cars","railroad","introduced","travelling","public","room","promoted","private","dining_room","world","room","accommodated","guests","could","reserved","private","dinner","cocktail","parties","special","functions","room","often_used","celebrities","traveling","super","chief","edwin","twenty","five_years","dining_car","department","great","northern","railway","said","dining_car","considered","passenger","words","whole","constituted","two_thirds","human","parts","cross_country","train","travel","became","commonplace","passengers","began","expect","high_quality","food_served","athe","meals","board","level","meal","service","trains","high_end_restaurants","clubs","one","main","words","used","describe","concept","dining","train","use","ofresh","ingredients","encouraged","whenever","possible","dishes","prepared","chefs","cumberland","hungarian","beef","potato","dumplings","lobster","mountain","trout","bleu","curry","lamb","orange","sticks","pie","name","items","christmas","menu","chicago","milwaukee","st","paul","railway","listed","following","items","hunter","soup","salmon","sauce","pheasant","chicken","salad","prairie","chicken","oyster","rice","roast","beef","english","ribs","beef","turkey","sauce","stuffed","pig","antelope","steak","potatoes","green","peas","potatoes","pie","pudding","cake","ice_cream","fruits","coffee","dining_car","configuration","file","express","thumb","dining_car","one","common","dining_car","configurations","onend","car","contains","galley","kitchen","galley","nexto","passengers","pass","car","rest","train","end","table","booth","seating","either","side","center","trains","withigh","demand","dining_car","feature","double","unit","dining_cars","consisting","two","adjacent","cars","functioning","somextent","generally","one","car","containing","galley","plus","table","booth","seating","car","containing","table","booth","seating","dining_cars","modern","trains","booth","seating","either","side","center","occupies","upper","level","galley","food","upper","level","elevator","dining_cars","enhance","experience","withe","unique","visual","entertainment","changing","dining_cars","less_common","today","past","supplemented","cases","replaced","altogether","types_ofood","service","cars","still","play","significant","role","especially","medium","long_distance","trains","today","number","tourist","oriented","railroads","offer","dinner","excursions","capitalize","public","fascination","withe","dining_car","experience","tram","line","german","cities","sseldorf","offers","dining_car","german","passengers","order","drinks","snacks","comes","thearly_th","century","dining_car","despite","introduction","modern","tram","units","file_jpg","dining_car","via","rail","canadian","prepared","meal","service","file","wagons","dining_car","austria","jpg","wagons","dining_car","austria","file","service","galley","santa","pantry","aboard","former","santa","dining_car","million","meals","served","car","remained","service","late","file","luxury","print","advertisement","meal","service","aboard","chicago","alton","railroad","file","indian","railways","kitchen","coach","jpg","indian","railways","dining_car","kitchen","see_also","buffet","car","troop","troop","kitchen","el","fred","harvey","company","lists","named","passenger","trains","napa_valley","wine","train","super","chief","dining","aboard","super","chief","dining","aboard","super","chief","private","railroad","car","air","line","furthereading","notes","dining_cars","watson","australian","railway","historical_society","bulletin","september","pp","train","catering","inew","south_wales","chris","australian","railway","historical_society","bulletin","march","july","pp","externalinks","atchison","santa","railway","photographs","short","history","super","chief","dining_car","built","erie","dining_car","preservation","society","restoration","two","historic","dining_cars","recreate","dinner","diner","springs","north","arkansas","railway","dining_car","service","new","dining_car","category","passenger","coaches","category_types","restaurants"],"clean_bigrams":[["file","restaurant"],["restaurant","car"],["thumb","right"],["dining","car"],["austrian","inter"],["inter","city"],["city","train"],["dining","car"],["car","american"],["american","english"],["restaurant","car"],["car","british"],["british","english"],["english","also"],["railroad","passenger"],["passenger","car"],["serves","meals"],["full","service"],["service","sit"],["food","service"],["service","cars"],["full","service"],["service","restaurant"],["restaurant","experience"],["one","purchases"],["purchases","food"],["consumed","either"],["either","within"],["train","grill"],["grill","cars"],["consume","food"],["food","cooked"],["grill","behind"],["generally","considered"],["intermediate","type"],["dining","car"],["car","file"],["file","notice"],["thumb","notice"],["central","pacific"],["pacific","railroad"],["railroad","file"],["file","b"],["thumb","dining"],["dining","car"],["car","queen"],["royal","blue"],["blue","train"],["train","b"],["royal","blue"],["dining","cars"],["passenger","trains"],["united","states"],["rail","passenger"],["meal","service"],["roadhouses","often"],["often","located"],["located","near"],["water","stop"],["fare","typically"],["typically","consisted"],["meat","cold"],["cold","beans"],["old","coffee"],["poor","conditions"],["conditions","discouraged"],["discouraged","many"],["railroads","began"],["began","offering"],["offering","meal"],["meal","service"],["trains","even"],["normal","part"],["long","distance"],["distance","trains"],["points","west"],["west","save"],["railway","santa"],["first","interstate"],["interstate","network"],["feed","passengers"],["fred","harvey"],["harvey","company"],["company","notable"],["notable","fred"],["fred","harvey"],["harvey","hotels"],["hotels","harvey"],["harvey","houses"],["houses","located"],["line","served"],["served","top"],["top","quality"],["quality","meals"],["railroad","patrons"],["water","stops"],["transit","facilities"],["trains","operating"],["operating","west"],["kansas","city"],["city","missouri"],["missouri","kansas"],["kansas","city"],["competition","among"],["among","railroads"],["car","service"],["new","levels"],["new","pleasure"],["pleasure","dome"],["pleasure","dome"],["dome","lounge"],["lounge","cars"],["railroad","introduced"],["travelling","public"],["room","promoted"],["private","dining"],["dining","room"],["room","accommodated"],["accommodated","guests"],["private","dinner"],["cocktail","parties"],["special","functions"],["often","used"],["super","chief"],["chief","edwin"],["twenty","five"],["five","years"],["dining","car"],["car","department"],["great","northern"],["northern","railway"],["dining","car"],["two","thirds"],["human","parts"],["cross","country"],["country","train"],["train","travel"],["travel","became"],["commonplace","passengers"],["passengers","began"],["expect","high"],["high","quality"],["quality","food"],["served","athe"],["athe","meals"],["meal","service"],["high","end"],["end","restaurants"],["main","words"],["words","used"],["train","use"],["use","ofresh"],["ofresh","ingredients"],["encouraged","whenever"],["whenever","possible"],["dishes","prepared"],["cumberland","hungarian"],["hungarian","beef"],["potato","dumplings"],["dumplings","lobster"],["mountain","trout"],["bleu","curry"],["orange","sticks"],["christmas","menu"],["chicago","milwaukee"],["milwaukee","st"],["st","paul"],["paul","railway"],["following","items"],["items","hunter"],["hunter","soup"],["soup","salmon"],["chicken","salad"],["prairie","chicken"],["chicken","oyster"],["roast","beef"],["beef","english"],["english","ribs"],["beef","turkey"],["sauce","stuffed"],["antelope","steak"],["potatoes","green"],["green","peas"],["pudding","cake"],["cake","ice"],["ice","cream"],["cream","fruits"],["coffee","dining"],["dining","car"],["car","configuration"],["configuration","file"],["thumb","dining"],["dining","car"],["common","dining"],["dining","car"],["car","configurations"],["configurations","onend"],["car","contains"],["galley","kitchen"],["kitchen","galley"],["booth","seating"],["either","side"],["trains","withigh"],["withigh","demand"],["dining","car"],["feature","double"],["double","unit"],["unit","dining"],["dining","cars"],["cars","consisting"],["two","adjacent"],["adjacent","cars"],["cars","functioning"],["one","car"],["car","containing"],["galley","plus"],["plus","table"],["booth","seating"],["car","containing"],["containing","table"],["booth","seating"],["dining","cars"],["trains","booth"],["booth","seating"],["either","side"],["upper","level"],["upper","level"],["dining","cars"],["cars","enhance"],["experience","withe"],["withe","unique"],["unique","visual"],["visual","entertainment"],["dining","cars"],["less","common"],["common","today"],["cases","replaced"],["replaced","altogether"],["types","ofood"],["ofood","service"],["service","cars"],["still","play"],["significant","role"],["long","distance"],["distance","trains"],["trains","today"],["tourist","oriented"],["oriented","railroads"],["railroads","offer"],["offer","dinner"],["dinner","excursions"],["fascination","withe"],["withe","dining"],["dining","car"],["car","experience"],["tram","line"],["german","cities"],["dining","car"],["order","drinks"],["thearly","th"],["th","century"],["dining","car"],["car","despite"],["modern","tram"],["tram","units"],["dining","car"],["via","rail"],["rail","canadian"],["canadian","prepared"],["meal","service"],["service","file"],["file","wagons"],["dining","car"],["jpg","wagons"],["dining","car"],["file","service"],["service","galley"],["galley","santa"],["pantry","aboard"],["aboard","former"],["former","santa"],["dining","car"],["million","meals"],["file","luxury"],["print","advertisement"],["meal","service"],["service","aboard"],["alton","railroad"],["railroad","file"],["file","indian"],["indian","railways"],["railways","kitchen"],["kitchen","coach"],["coach","jpg"],["jpg","indian"],["indian","railways"],["railways","dining"],["dining","car"],["car","kitchen"],["kitchen","see"],["see","also"],["also","buffet"],["buffet","car"],["car","troop"],["troop","kitchen"],["kitchen","el"],["fred","harvey"],["harvey","company"],["company","lists"],["named","passenger"],["passenger","trains"],["trains","napa"],["napa","valley"],["valley","wine"],["wine","train"],["train","super"],["super","chief"],["chief","dining"],["dining","aboard"],["super","chief"],["chief","dining"],["dining","aboard"],["super","chief"],["private","railroad"],["railroad","car"],["air","line"],["line","furthereading"],["furthereading","notes"],["dining","cars"],["cars","watson"],["australian","railway"],["railway","historical"],["historical","society"],["society","bulletin"],["bulletin","september"],["september","pp"],["train","catering"],["catering","inew"],["inew","south"],["south","wales"],["chris","australian"],["australian","railway"],["railway","historical"],["historical","society"],["society","bulletin"],["bulletin","march"],["july","pp"],["pp","externalinks"],["externalinks","atchison"],["short","history"],["super","chief"],["chief","dining"],["dining","car"],["car","built"],["dining","car"],["car","preservation"],["preservation","society"],["society","restoration"],["two","historic"],["historic","dining"],["dining","cars"],["north","arkansas"],["arkansas","railway"],["dining","car"],["car","service"],["service","new"],["new","dining"],["dining","car"],["car","category"],["category","passenger"],["passenger","coaches"],["coaches","category"],["category","types"]],"all_collocations":["file restaurant","restaurant car","dining car","austrian inter","inter city","city train","dining car","car american","american english","restaurant car","car british","british english","english also","railroad passenger","passenger car","serves meals","full service","service sit","food service","service cars","full service","service restaurant","restaurant experience","one purchases","purchases food","consumed either","either within","train grill","grill cars","consume food","food cooked","grill behind","generally considered","intermediate type","dining car","car file","file notice","thumb notice","central pacific","pacific railroad","railroad file","file b","thumb dining","dining car","car queen","royal blue","blue train","train b","royal blue","dining cars","passenger trains","united states","rail passenger","meal service","roadhouses often","often located","located near","water stop","fare typically","typically consisted","meat cold","cold beans","old coffee","poor conditions","conditions discouraged","discouraged many","railroads began","began offering","offering meal","meal service","trains even","normal part","long distance","distance trains","points west","west save","railway santa","first interstate","interstate network","feed passengers","fred harvey","harvey company","company notable","notable fred","fred harvey","harvey hotels","hotels harvey","harvey houses","houses located","line served","served top","top quality","quality meals","railroad patrons","water stops","transit facilities","trains operating","operating west","kansas city","city missouri","missouri kansas","kansas city","competition among","among railroads","car service","new levels","new pleasure","pleasure dome","pleasure dome","dome lounge","lounge cars","railroad introduced","travelling public","room promoted","private dining","dining room","room accommodated","accommodated guests","private dinner","cocktail parties","special functions","often used","super chief","chief edwin","twenty five","five years","dining car","car department","great northern","northern railway","dining car","two thirds","human parts","cross country","country train","train travel","travel became","commonplace passengers","passengers began","expect high","high quality","quality food","served athe","athe meals","meal service","high end","end restaurants","main words","words used","train use","use ofresh","ofresh ingredients","encouraged whenever","whenever possible","dishes prepared","cumberland hungarian","hungarian beef","potato dumplings","dumplings lobster","mountain trout","bleu curry","orange sticks","christmas menu","chicago milwaukee","milwaukee st","st paul","paul railway","following items","items hunter","hunter soup","soup salmon","chicken salad","prairie chicken","chicken oyster","roast beef","beef english","english ribs","beef turkey","sauce stuffed","antelope steak","potatoes green","green peas","pudding cake","cake ice","ice cream","cream fruits","coffee dining","dining car","car configuration","configuration file","thumb dining","dining car","common dining","dining car","car configurations","configurations onend","car contains","galley kitchen","kitchen galley","booth seating","either side","trains withigh","withigh demand","dining car","feature double","double unit","unit dining","dining cars","cars consisting","two adjacent","adjacent cars","cars functioning","one car","car containing","galley plus","plus table","booth seating","car containing","containing table","booth seating","dining cars","trains booth","booth seating","either side","upper level","upper level","dining cars","cars enhance","experience withe","withe unique","unique visual","visual entertainment","dining cars","less common","common today","cases replaced","replaced altogether","types ofood","ofood service","service cars","still play","significant role","long distance","distance trains","trains today","tourist oriented","oriented railroads","railroads offer","offer dinner","dinner excursions","fascination withe","withe dining","dining car","car experience","tram line","german cities","dining car","order drinks","thearly th","th century","dining car","car despite","modern tram","tram units","dining car","via rail","rail canadian","canadian prepared","meal service","service file","file wagons","dining car","jpg wagons","dining car","file service","service galley","galley santa","pantry aboard","aboard former","former santa","dining car","million meals","file luxury","print advertisement","meal service","service aboard","alton railroad","railroad file","file indian","indian railways","railways kitchen","kitchen coach","coach jpg","jpg indian","indian railways","railways dining","dining car","car kitchen","kitchen see","see also","also buffet","buffet car","car troop","troop kitchen","kitchen el","fred harvey","harvey company","company lists","named passenger","passenger trains","trains napa","napa valley","valley wine","wine train","train super","super chief","chief dining","dining aboard","super chief","chief dining","dining aboard","super chief","private railroad","railroad car","air line","line furthereading","furthereading notes","dining cars","cars watson","australian railway","railway historical","historical society","society bulletin","bulletin september","september pp","train catering","catering inew","inew south","south wales","chris australian","australian railway","railway historical","historical society","society bulletin","bulletin march","july pp","pp externalinks","externalinks atchison","short history","super chief","chief dining","dining car","car built","dining car","car preservation","preservation society","society restoration","two historic","historic dining","dining cars","north arkansas","arkansas railway","dining car","car service","service new","new dining","dining car","car category","category passenger","passenger coaches","coaches category","category types"],"new_description":"file restaurant car thumb right dining_car austrian inter city train dining_car american_english restaurant car british_english also diner railroad passenger passenger car serves meals manner full_service sit restaurant distinct food_service cars full_service restaurant experience cars one purchases food walk counter consumed either within car elsewhere train grill cars stools counter purchase consume food cooked grill behind counter generally considered intermediate type dining_car file notice passengers train stop thumb notice central pacific railroad file b dining thumb dining_car queen royal blue train b royal blue dining_cars passenger trains common united_states rail passenger option meal service transit one roadhouses often located_near railroad water stop fare typically consisted meat cold beans old coffee poor conditions discouraged many journey railroads began offering meal service trains even railroad mid cars normal part long_distance trains chicago points west save atchison santa railway santa railway relied america first interstate network restaurants feed passengers route fred harvey company notable fred harvey hotels harvey houses located along line served top quality meals railroad patrons water stops planned favored transit facilities trains operating west kansas_city missouri kansas_city competition among railroads car service taken new levels santa unveiled new pleasure dome pleasure dome lounge cars railroad introduced travelling public room promoted private dining_room world room accommodated guests could reserved private dinner cocktail parties special functions room often_used celebrities traveling super chief edwin twenty five_years dining_car department great northern railway said dining_car considered passenger words whole constituted two_thirds human parts cross_country train travel became commonplace passengers began expect high_quality food_served athe meals board level meal service trains high_end_restaurants clubs one main words used describe concept dining train use ofresh ingredients encouraged whenever possible dishes prepared chefs cumberland hungarian beef potato dumplings lobster mountain trout bleu curry lamb orange sticks pie name items christmas menu chicago milwaukee st paul railway listed following items hunter soup salmon sauce pheasant chicken salad prairie chicken oyster rice roast beef english ribs beef turkey sauce stuffed pig antelope steak potatoes green peas potatoes pie pudding cake ice_cream fruits coffee dining_car configuration file express thumb dining_car one common dining_car configurations onend car contains galley kitchen galley nexto passengers pass car rest train end table booth seating either side center trains withigh demand dining_car feature double unit dining_cars consisting two adjacent cars functioning somextent generally one car containing galley plus table booth seating car containing table booth seating dining_cars modern trains booth seating either side center occupies upper level galley food upper level elevator dining_cars enhance experience withe unique visual entertainment changing dining_cars less_common today past supplemented cases replaced altogether types_ofood service cars still play significant role especially medium long_distance trains today number tourist oriented railroads offer dinner excursions capitalize public fascination withe dining_car experience tram line german cities sseldorf offers dining_car german passengers order drinks snacks comes thearly_th century dining_car despite introduction modern tram units file_jpg dining_car via rail canadian prepared meal service file wagons dining_car austria jpg wagons dining_car austria file service galley santa pantry aboard former santa dining_car million meals served car remained service late file luxury print advertisement meal service aboard chicago alton railroad file indian railways kitchen coach jpg indian railways dining_car kitchen see_also buffet car troop troop kitchen el fred harvey company lists named passenger trains napa_valley wine train super chief dining aboard super chief dining aboard super chief private railroad car air line furthereading notes dining_cars watson australian railway historical_society bulletin september pp train catering inew south_wales chris australian railway historical_society bulletin march july pp externalinks atchison santa railway photographs short history super chief dining_car built erie dining_car preservation society restoration two historic dining_cars recreate dinner diner springs north arkansas railway dining_car service new dining_car category passenger coaches category_types restaurants"},{"title":"Dining room","description":"file freilichtmuseum detmold jpg thumb historical example of a domestic dining room in germany a dining room is a room architecture room for eating consuming food in modern times it is usually adjacento the kitchen for convenience in serving although in medieval times it was often on an entirely different floor level historically the dining room is furnished with a rather large dining table and a number of dining chairs the most common shape is generally rectangular with two armed end chairs and an evenumber of un armed side chairs along the long sides history file a cut palace inside jpg thumb dining room in the a cut castle poland in the middle ages upper class british people briton s and other europe anobility in castle s or large manor house s dined in the great hall this was a large multi function room capable of seating the bulk of the population of the house the family would sit athead table on a raisedais withe rest of the population arrayed in order of diminishing rank away from them tables in the great hall would tend to be long trestle tables with benches the sheer number of people in a great hall meant it would probably have had a busy bustling atmosphere suggestions that it would also have been quite smelly and smoky are probably by the standards of the time unfounded these rooms had large chimneys and high ceilings and there would have been a free flow of air through the numerous door and window openings it is true thathe owners of such properties began to develop a taste for more intimate gatherings in smaller parlers or privee parlers off the main hall buthis thoughto be due as much to political and social changes as to the greater comfort afforded by such rooms in the first instance the black deathat ravaged europe in the th century caused a shortage of labour and this had led to a breakdown in the feudal system also the religious persecutions following the dissolution of the monasteries under henry viii made it unwise to talk freely in front of large numbers of people over time the nobility took more of their meals in the parlour and the parlour became functionally a dining room or wasplit into two separate rooms it also migrated farther from the great hall often accessed via grand ceremonial staircase s from the dais in the great hall eventually dining in the great hall became something that was done primarily on special occasions toward the beginning of the th century a pattern emerged where the ladies of the house would withdraw after dinner from the dining room to the drawing room the gentlemen would remain the dining room having drinks the dining room tended to take on a more masculine tenor as a result contemporary usage file orange dining roomjpg thumb example of a modern day dining room from the united states a typical north american dining room will contain a table with chairs arranged along the sides and ends of the table as well as other pieces ofurniture often used for storing formal chinaspace permits often tables in modern dining rooms will have a removableaf to allow for the larger number of people present on those special occasions withoutaking up extra space whenot in use although the typical family dining experience is at a wooden table or some sort of kitchen area some choose to make their dining rooms more comfortable by using couches or comfortable chairs in modern united states americand canadian homes the dining room is typically adjacento the living room being increasingly used only formal dining with guests or on special occasions for informal daily meals most medium size houses and larger will have a space adjacento the kitchen where table and chairs can be placed larger spaces are often known as a dinette while a smaller one is called a breakfast nook smaller houses and condos may have a breakfast bar instead often of a different heighthan the regular kitchen counter eitheraised for stools or lowered for chairs if a home lacks a dinette breakfast nook or breakfast bar then the kitchen or family room will be used for day to day eating this was traditionally the case in united kingdom britain where the dining room would for many families be used only on sundays other meals being eaten in the kitchen in australia the use of a dining room istill prevalent yet not an essential part of modern home design for most it is considered a space to be useduring formal occasions or celebrationsmaller homes akin to the usand canada use a breakfast bar or table placed within the confines of a kitchen or living space for mealsee also file the main dining room fujiya hotel miyanoshita hakonejpg thumb a japanesexample the dining room of the fujiya hotel in hakone cafeteria refectory category types of restaurants category rooms","main_words":["file","jpg","thumb","historical","example","domestic","dining_room","germany","dining_room","room","architecture","room","eating","consuming","food","modern_times","usually","adjacento","kitchen","convenience","serving","although","medieval","times","often","entirely","different","floor","level","historically","dining_room","furnished","rather","large","dining","table","number","dining","chairs","common","shape","generally","rectangular","two","armed","end","chairs","armed","side","chairs","along","long","sides","history_file","cut","palace","inside","jpg","thumb","dining_room","cut","castle","poland","middle_ages","upper_class","british","people","briton","europe","castle","large","manor","house","great","hall","large","multi","function","room","capable","seating","bulk","population","house","family","would","sit","table","withe","rest","population","order","diminishing","rank","away","tables","great","hall","would","tend","long","trestle","tables","benches","sheer","number","people","great","hall","meant","would","probably","busy","bustling","atmosphere","suggestions","would_also","quite","smoky","probably","standards","time","rooms","large","high","would","free","flow","air","numerous","door","window","openings","true","thathe","owners","properties","began","develop","taste","intimate","gatherings","smaller","main","hall","buthis","thoughto","due","much","political","social","changes","greater","comfort","afforded","rooms","first","instance","black","europe","th_century","caused","shortage","labour","led","system","also","religious","following","dissolution","monasteries","henry","viii","made","talk","freely","front","large_numbers","people","time","nobility","took","meals","parlour","parlour","became","dining_room","two","separate","rooms","also","migrated","farther","great","hall","often","accessed","via","grand","ceremonial","great","hall","eventually","dining","great","hall","became","something","done","primarily","special","occasions","toward","beginning","th_century","pattern","emerged","ladies","house","would","dinner","dining_room","drawing","room","gentlemen","would","remain","dining_room","drinks","dining_room","tended","take","result","contemporary","usage","file","orange","dining","thumb","example","modern_day","dining_room","united_states","typical","north_american","dining_room","contain","table","chairs","arranged","along","sides","ends","table","well","pieces","often_used","storing","formal","permits","often","tables","modern","dining_rooms","allow","larger","number","people","present","special","occasions","extra","space","use","although","typical","family","dining","experience","wooden","table","sort","kitchen","area","choose","make","dining_rooms","comfortable","using","comfortable","chairs","modern","united_states","americand","canadian","homes","dining_room","typically","adjacento","living_room","increasingly","used","formal","dining","guests","special","occasions","informal","daily","meals","medium","size","houses","larger","space","adjacento","kitchen","table","chairs","placed","larger","spaces","often","known","smaller","one","called","breakfast","smaller","houses","may","breakfast","bar","instead","often","different","regular","kitchen","counter","stools","lowered","chairs","home","lacks","breakfast","breakfast","bar","kitchen","family","room","used","day","day","eating","traditionally","case","united_kingdom","britain","dining_room","would","many","families","used","sundays","meals","eaten","kitchen","australia","use","dining_room","istill","prevalent","yet","essential","part","modern","home","design","considered","space","useduring","formal","occasions","homes","akin","usand","canada","use","breakfast","bar","table","placed","within","kitchen","living","space","also","file","main","dining_room","hotel","thumb","dining_room","hotel","cafeteria","refectory","category_types","restaurants_category","rooms"],"clean_bigrams":[["jpg","thumb"],["thumb","historical"],["historical","example"],["domestic","dining"],["dining","room"],["dining","room"],["room","architecture"],["architecture","room"],["eating","consuming"],["consuming","food"],["modern","times"],["usually","adjacento"],["serving","although"],["medieval","times"],["entirely","different"],["different","floor"],["floor","level"],["level","historically"],["dining","room"],["rather","large"],["large","dining"],["dining","table"],["dining","chairs"],["common","shape"],["generally","rectangular"],["two","armed"],["armed","end"],["end","chairs"],["armed","side"],["side","chairs"],["chairs","along"],["long","sides"],["sides","history"],["history","file"],["cut","palace"],["palace","inside"],["inside","jpg"],["jpg","thumb"],["thumb","dining"],["dining","room"],["cut","castle"],["castle","poland"],["middle","ages"],["ages","upper"],["upper","class"],["class","british"],["british","people"],["people","briton"],["large","manor"],["manor","house"],["great","hall"],["large","multi"],["multi","function"],["function","room"],["room","capable"],["family","would"],["would","sit"],["withe","rest"],["diminishing","rank"],["rank","away"],["great","hall"],["hall","would"],["would","tend"],["long","trestle"],["trestle","tables"],["sheer","number"],["great","hall"],["hall","meant"],["would","probably"],["busy","bustling"],["bustling","atmosphere"],["atmosphere","suggestions"],["would","also"],["free","flow"],["numerous","door"],["window","openings"],["true","thathe"],["thathe","owners"],["properties","began"],["intimate","gatherings"],["main","hall"],["hall","buthis"],["buthis","thoughto"],["social","changes"],["greater","comfort"],["comfort","afforded"],["first","instance"],["th","century"],["century","caused"],["system","also"],["henry","viii"],["viii","made"],["talk","freely"],["large","numbers"],["nobility","took"],["parlour","became"],["dining","room"],["two","separate"],["separate","rooms"],["also","migrated"],["migrated","farther"],["great","hall"],["hall","often"],["often","accessed"],["accessed","via"],["via","grand"],["grand","ceremonial"],["great","hall"],["hall","eventually"],["eventually","dining"],["great","hall"],["hall","became"],["became","something"],["done","primarily"],["special","occasions"],["occasions","toward"],["th","century"],["pattern","emerged"],["house","would"],["dining","room"],["drawing","room"],["gentlemen","would"],["would","remain"],["dining","room"],["dining","room"],["room","tended"],["result","contemporary"],["contemporary","usage"],["usage","file"],["file","orange"],["orange","dining"],["thumb","example"],["modern","day"],["day","dining"],["dining","room"],["united","states"],["typical","north"],["north","american"],["american","dining"],["dining","room"],["chairs","arranged"],["arranged","along"],["often","used"],["storing","formal"],["permits","often"],["often","tables"],["modern","dining"],["dining","rooms"],["larger","number"],["people","present"],["special","occasions"],["extra","space"],["use","although"],["typical","family"],["family","dining"],["dining","experience"],["wooden","table"],["kitchen","area"],["dining","rooms"],["comfortable","chairs"],["modern","united"],["united","states"],["states","americand"],["americand","canadian"],["canadian","homes"],["dining","room"],["typically","adjacento"],["living","room"],["increasingly","used"],["formal","dining"],["special","occasions"],["informal","daily"],["daily","meals"],["medium","size"],["size","houses"],["space","adjacento"],["placed","larger"],["larger","spaces"],["often","known"],["smaller","one"],["smaller","houses"],["breakfast","bar"],["bar","instead"],["instead","often"],["regular","kitchen"],["kitchen","counter"],["home","lacks"],["breakfast","bar"],["family","room"],["day","eating"],["united","kingdom"],["kingdom","britain"],["dining","room"],["room","would"],["many","families"],["dining","room"],["room","istill"],["istill","prevalent"],["prevalent","yet"],["essential","part"],["modern","home"],["home","design"],["useduring","formal"],["formal","occasions"],["homes","akin"],["usand","canada"],["canada","use"],["breakfast","bar"],["table","placed"],["placed","within"],["living","space"],["also","file"],["main","dining"],["dining","room"],["thumb","dining"],["dining","room"],["cafeteria","refectory"],["refectory","category"],["category","types"],["restaurants","category"],["category","rooms"]],"all_collocations":["thumb historical","historical example","domestic dining","dining room","dining room","room architecture","architecture room","eating consuming","consuming food","modern times","usually adjacento","serving although","medieval times","entirely different","different floor","floor level","level historically","dining room","rather large","large dining","dining table","dining chairs","common shape","generally rectangular","two armed","armed end","end chairs","armed side","side chairs","chairs along","long sides","sides history","history file","cut palace","palace inside","inside jpg","thumb dining","dining room","cut castle","castle poland","middle ages","ages upper","upper class","class british","british people","people briton","large manor","manor house","great hall","large multi","multi function","function room","room capable","family would","would sit","withe rest","diminishing rank","rank away","great hall","hall would","would tend","long trestle","trestle tables","sheer number","great hall","hall meant","would probably","busy bustling","bustling atmosphere","atmosphere suggestions","would also","free flow","numerous door","window openings","true thathe","thathe owners","properties began","intimate gatherings","main hall","hall buthis","buthis thoughto","social changes","greater comfort","comfort afforded","first instance","th century","century caused","system also","henry viii","viii made","talk freely","large numbers","nobility took","parlour became","dining room","two separate","separate rooms","also migrated","migrated farther","great hall","hall often","often accessed","accessed via","via grand","grand ceremonial","great hall","hall eventually","eventually dining","great hall","hall became","became something","done primarily","special occasions","occasions toward","th century","pattern emerged","house would","dining room","drawing room","gentlemen would","would remain","dining room","dining room","room tended","result contemporary","contemporary usage","usage file","file orange","orange dining","thumb example","modern day","day dining","dining room","united states","typical north","north american","american dining","dining room","chairs arranged","arranged along","often used","storing formal","permits often","often tables","modern dining","dining rooms","larger number","people present","special occasions","extra space","use although","typical family","family dining","dining experience","wooden table","kitchen area","dining rooms","comfortable chairs","modern united","united states","states americand","americand canadian","canadian homes","dining room","typically adjacento","living room","increasingly used","formal dining","special occasions","informal daily","daily meals","medium size","size houses","space adjacento","placed larger","larger spaces","often known","smaller one","smaller houses","breakfast bar","bar instead","instead often","regular kitchen","kitchen counter","home lacks","breakfast bar","family room","day eating","united kingdom","kingdom britain","dining room","room would","many families","dining room","room istill","istill prevalent","prevalent yet","essential part","modern home","home design","useduring formal","formal occasions","homes akin","usand canada","canada use","breakfast bar","table placed","placed within","living space","also file","main dining","dining room","thumb dining","dining room","cafeteria refectory","refectory category","category types","restaurants category","category rooms"],"new_description":"file jpg thumb historical example domestic dining_room germany dining_room room architecture room eating consuming food modern_times usually adjacento kitchen convenience serving although medieval times often entirely different floor level historically dining_room furnished rather large dining table number dining chairs common shape generally rectangular two armed end chairs armed side chairs along long sides history_file cut palace inside jpg thumb dining_room cut castle poland middle_ages upper_class british people briton europe castle large manor house great hall large multi function room capable seating bulk population house family would sit table withe rest population order diminishing rank away tables great hall would tend long trestle tables benches sheer number people great hall meant would probably busy bustling atmosphere suggestions would_also quite smoky probably standards time rooms large high would free flow air numerous door window openings true thathe owners properties began develop taste intimate gatherings smaller main hall buthis thoughto due much political social changes greater comfort afforded rooms first instance black europe th_century caused shortage labour led system also religious following dissolution monasteries henry viii made talk freely front large_numbers people time nobility took meals parlour parlour became dining_room two separate rooms also migrated farther great hall often accessed via grand ceremonial great hall eventually dining great hall became something done primarily special occasions toward beginning th_century pattern emerged ladies house would dinner dining_room drawing room gentlemen would remain dining_room drinks dining_room tended take result contemporary usage file orange dining thumb example modern_day dining_room united_states typical north_american dining_room contain table chairs arranged along sides ends table well pieces often_used storing formal permits often tables modern dining_rooms allow larger number people present special occasions extra space use although typical family dining experience wooden table sort kitchen area choose make dining_rooms comfortable using comfortable chairs modern united_states americand canadian homes dining_room typically adjacento living_room increasingly used formal dining guests special occasions informal daily meals medium size houses larger space adjacento kitchen table chairs placed larger spaces often known smaller one called breakfast smaller houses may breakfast bar instead often different regular kitchen counter stools lowered chairs home lacks breakfast breakfast bar kitchen family room used day day eating traditionally case united_kingdom britain dining_room would many families used sundays meals eaten kitchen australia use dining_room istill prevalent yet essential part modern home design considered space useduring formal occasions homes akin usand canada use breakfast bar table placed within kitchen living space also file main dining_room hotel thumb dining_room hotel cafeteria refectory category_types restaurants_category rooms"},{"title":"Dinner theater","description":"dinner theater sometimes calledinner and a show is a form of entertainmenthat combines a restaurant meal with a staged play theatre play or musical sometimes the play is incidental entertainment secondary to the meal in the style of a sophisticated night club or the play may be a major production with dinner less important or in some cases optional dinner theaterequires the management of three distinct entities a live theater a restaurant and usually a bar the madrigal dinner in the middle ages might be considered thearliest dinner theater thearliest dinner theaterservedinner in one room and staged the play in another those are now known as theatrestaurants a dinner theater subclassificationlynk william dinner theatre a survey andirectory page greenwood publishing barksdale theatre barksdale theatre in richmond virginia founded in by david and nancy kilgore athe historic hanover tavern was the first formal dinner theater in the united statesmcauley muriel going onbarksdale theatre the firsthirty one years page taylor publishingalbraith kate new york times december do it yourself entertainment way off broadway retrieved calos katherine discoverrichmondcom july no barking at barksdale retrieved after theatre was established an adjoining room in theatre was changed to accommodate a buffet dinner for groups attending the performanceventually becoming available to all patrons however barksdale prefers to be known as a theatre that happens to have a restaurant andinner is optional their brochure stateslynk william dinner theatre a survey andirectory page greenwood publishing they are a professional non profitheatre virginia is for lovers website barksdale theatre beef boards dinner theatre beef boards dinner theatre indianapolis indiana opened in march and was one of a chain of dinner theatres founded by j scottalbott it has a seat house and features broadway shows and concerts preceded by a buffet dinner it alsoffers a live theatre for kidseries each season it is a professional theatre and member of actors equity association meadowbrook theatrestaurant cedar grove new jersey located half an hour fromanhattan was the location of the secondinner theater the meadowbrook theatrestaurant which opened in it lasted onlyears in part due to seats of table service nearby competition from broadway theatre broadway and actors equity association requirements thathe facility follow the rules that applied to broadway theatres including pay scales and otherestrictions drury lane theatres tony desantis opened the martinique restaurant in evergreen park illinois evergreen park illinois and began producing plays in a tent adjacento the restauranto attract customersabarbanel jonathan performink stories april tony desantis and his new drury lane theatre thenterprise wasuccessful prompting him to build his firstheater drury lanevergreen park in it was the first of six dinner theaters he started and a local entertainment landmark for years before closing in munsonancy knight ridder tribune business news june wal marto replace dinner theater in evergreen park il drury lane north began operations in but wasoon sold to the marriott lincolnshiresort and became the marriottheatre drury lane oak brook terrace opened in and benefited from what desantis had learned over the years the facility uses local performers to keep costs down theater isurrounded by bars restaurants and banquet roomshows are limited to musicals and there is no charge for parking candlelightheatrestauranthe first facility where dinner and the showere together in one room was the candlelightheatrestaurant in washington dc bill pullinsi was a theater student in who conceived and implemented thentertainment concept athe presidential arms hotel during summer breaks athe catholic university of americatholic university the venture wasuccessful but pullinsi was unable to converto a yearound operation due to the hotel s convention business pullinsi returned to his chicago home and opened the candlelight dinner playhouse first in a building owned by his grandfather then in a new facility with seating for constructed withe help of his family the candlelight introduced several innovations including the hydraulic stage lighting equipment located in the mezzanine and stage wagons on wheelslynk william dinner theatre a survey andirectory pages greenwood publishing barn dinner theatre file howard wolfe portrait jpg thumb right px howard wolfe howardouglass wolfe was an entrepreneur from roanoke virginia who created the barn dinner theatre franchising franchise and was tagged father of dinner theater he began the franchise in with longtime friend and business partner conley jones the chaincluded theaters inew york state new york virginia north carolina tennessee texas louisianand georgia ustate georgia each franchise featured his architectural barn designs farm themedecorations that included a plow and other tools and wolfe s elevator whiche patented as the magic stage athend of an act or scene the stage wouldisappear into the ceiling then reappeaready for the next scene the whole process took less than a minute during the franchise phase of the barn all the productions were staged at a studio inew york city then sent outo the individual theatersteverbaugh don st petersburg times august florida s first barn dinner theatre may open in city athe break up of the franchise the production facilities were moved to their present location inashville back in its early days the performance s cast not only acted on stage they were the waiters and waitresses actors were selected and cast inew york and resided in living quarters above theater for the duration of the productions robert de niro reportedly acted athe barn in greensboro until he was fired in the middle of a show mickey rooney and many other well known performers have also acted in roles athe barn the barn in greensboro north carolina was founded in and is the oldest continuously running dinner theater in americand the last of the original barn dinner theatres barn dinner theatre history of the barn though a barn franchise opened inashville inow called chaffin s barn dinner theatre chaffin s barn dinner theatre is also still in operation alhambra dinner theatre the alhambra dinner theatre in jacksonville florida was opened in by leon simon it was purchased in by tod booth who left chicago s drury lane theatre illinois drury lane theatre s the alhambra is the second oldest dinner theater still open in the united states and the oldest in floridacapitano laura florida times union may for dinner and a showhy not head to the alhambra the facility uses a thrustage to provide all seats with an unobstructed view chanhassen dinner theatres chanhassen dinner theatres in minneapolisaint paul minnesota were founded in herbloomberg who designed and builthexpanded old log theater near lake minnetonka subsequently constructed and operated the chanhassen dinner theatres the old log theater has an attachedining room and revenue from food sales is necessary for financial success buthey are not a dinner theater minnesota monthly may wise guys the chanhassen claims to be the largest professional dinner theater in the us the main stage seats the fireside theatre containseats for non dining patrons and the playhouse theatre has tables for chanhassen website seating carousel dinner theatre the carousel dinner theatre with seats was the largest dinner theater in the united states until it closed on january it was first opened in then moved to downtown akron ohio in to what had been a nightclub withe style and glitz of las vegas valley las vegas theater was a victim of the late s economicrisis thatightened credit after years of bad investments by major financial institutionsbrown tony cleveland plain dealer january akron s carousel dinner theatre has its final performance riddlesbrood theater in addition to typical dinner theater fare murder mystery shows comedy shows and some community theater the burlingtonew jersey based riddlesbrood touring theater company also stages productions with a self help message some of their shows have been performed entirely in constructed languages made up languages and have incorporated ideas from the new thought movementvanderhoof tricia it s thend of the world as we know it and the riddlesbrood players feel fine daily record morristown daily recordecember the s were theyday of dinner theaters which provided popularegional entertainment for local audiences alhambra dinner theatre owner tod booth noted that in there were professional dinner theaters in operationnoles randy florida times union august guess who came to dinner particularly popular were the dinner theaters who used former movie names to star in the productions van johnson lana turner don amecheve arden mickey rooney june allyson shelley winters dorothy lamour tab hunter betty grable sandra dee mamie van doren joan blondell debbie reynolds cyd charisse kathryn grayson betty hutton jane withers martha rayelke sommer donald o connoroddy mcdowall jane russell cesaromero and ann miller are just a few of the stars of the golden era of hollywood who found success in the field also popular were stars and character actors from well remembered television series from earlier yearsuch as betty white ann b davis vivian vance bob denver joanne worley bernie kopell dawn wells ken berry gavin macleod nancy kulp and frank sutton burt reynolds owned a dinner theater in jupiter florida from to roadside america burt reynolds and friends museum as did actor earl holliman whowned the fiesta dinner playhouse in santonio texas brumburgh gary mcomet earl holliman biography the derby dinner playhouse in clarksville indiana opened in and wastill open in operating continuously for years they utilized a magic stage similar to those used by the barn dinner theatre an orchestra if utilized plays in the attic out of sightsuddeath daniel news and tribune february derby dinner playhouse continuesuccess with unique atmosphere in clarksville the boom seemed to end in the mid s with many of them closing and most no longer able to afford or attract celebrities even faded ones to star in their productions aging starstarted receiving offers for television and commercial work and they stoppedoing dinner theater alhambra dinner theatre owner tod booth commented they could make more in a day doing a commercial than they could make during thentire run of dinner theater show and they did not have to travel plus a lot of the stars justartedying off it was a fine gig for a while booth went on to say that in you could counthe number of surviving professional dinner theaters on two hands there was a stigmattached to dinner theater and audiences gotired ofluff showsuch as the last of the red hot lovers and arsenic and old lace play arsenic and old lace according to booth a lot of that was crapatton charlie florida times union march curtain call in response to criticism and the change in available talent many theaterstarted using up and coming but relatively unknown actors and began toffer new broadway shows they promoted the shows rather than the stars after there seemed to be a resurgence with a number of new dinner theaters opening chicago s original drury lane water tower place was founded in but closed in a new million version opened on may the desert star theater in murray utah opened a dinner theater in liljegren tom the utah statesman august boo and hiss atom cruise athe desert star and the gathering dinner theatre in jacksonville opened in early bull roger florida times union december new dinner theater planned athend of the national dinner theatre association had members galbraith kate new york times december do it yourself entertainment way off broadway up from only in differentypes union vs non union there is a basic distinction between union and non union theaters the former are known as equity theatres where performers are members of the actors equity association aea the union that represents professional stage actors and stage managers union shows have a higher overhead because actor s equity contracts typically require theater to pay for lodging a minimum salary insurance and pension payments as well as other work rules regarding auditions and hiringlynk william dinner theatre a survey andirectory pages greenwood publishing the reduction in professional dinner theaters from in to in was not because the facilities went out of business those theaters changed to non union to reducexpenses typically actors are still housed paid a competitive salary among non union theaters and sometimes even fed however salary for non union actors may be significantly less than that of a union actor commercial vs non profitony desantis had a lifetime of experience with restaurants andinner theater he claimed that you could make money with a restaurant but it was the alcohol sales that were profitable if you brokeven when operating a theater you were successful while many theaters operate as not for profit organizations in order to take advantage of grants and funding from government agencies or private foundations most dinner theaters are commercial businesses due to the management and capital requirements of botheater and restaurant operations commercial dinner theatres will have showsix or sevenights a week as well as matinees they will also have short breaks between shows usually less than a week a typical non profit is the starlight dinner theatre in lansing michigan where the dinner is catered the shows are staged at a school cafetorium and the season includes only four productions with four performances per production friday and saturday nightstarlight dinner theatre welcome most non profits also use amateur actors or the leading role may be a professional withe rest of the cast composed of amateurs vacation destinationsuch as las vegas destin florida branson missouri anaheim and los angeles have seen themergence of specialty dinner theaters where the show stays the same for an extended run because the vast majority of their customers are tourists not local residents the most popular vacation destination in the united states orlando florida had more than a dozen competing for a share of the billion thatouristspent in through the sixteen dinner theaters opened and closed thereapplegate jane los angeles business journal november dinner theater is a tough sell in capital of tourismurder mystery game s mm are interactive dinner theater events that have become a popular segment of their own the productions may be public where anyone can attend for the price of admission or private where a company social group organization sponsors an event for its members while utilizing the dinner and a show concept mm generally targets a smaller audience than typical dinner theater with public performances featuring professional actors while private showings may offeroles to the guests who participate in the production as either characters or detectives wedding comedy isimilar to murder mystery because the staging requirements are minimal and the audience has interaction withe actors while they perform joey and maria s comedy italian wedding was written by darlyne franklin and the franchise rights were sold in hawkins brenda naples news march join the action in comedy dinner theater other examples include tony n tina s wedding frankie gina s comedy wedding and a gay version joni and gina s wedding riverboat dinner cruises combine showboat with a meal obviously they are limited to locations on a navigable body of water such as the showboat branson belle or the goldenrod showboat goldenrod showboathere are numerous murder mystery dinner cruises madrigal dinner s aka madrigal feasts are seasonal typically helduring the christmaseason they are often staged by educational oreligious entities for fundraising and include food music singing poetry humor costumes and a play from the middle ages ranging fromedieval to the renaissance periods madrigal traditions what is a madrigal dinner see also cabaret list of dinner theaters externalinks national dinner theater association website category theatrical genres category types of restaurants category dinner theatre","main_words":["dinner","theater","sometimes","show","form","combines","restaurant","meal","staged","play","theatre","play","musical","sometimes","play","entertainment","secondary","meal","style","sophisticated","night_club","play","may","major","production","dinner","less","important","cases","optional","dinner","management","three","distinct","entities","live","theater","restaurant","usually","bar","madrigal","dinner","middle_ages","might","considered","thearliest","dinner_theater","thearliest","dinner","one","room","staged","play","another","known","dinner_theater","william","dinner_theatre","survey","andirectory","page","greenwood","publishing","barksdale","theatre","barksdale","theatre","richmond","virginia","founded","david","nancy","athe","historic","hanover","tavern","first","formal","dinner_theater","united","muriel","going","theatre","page","taylor","kate","new_york","times","december","entertainment","way","broadway","retrieved","katherine","july","barking","barksdale","retrieved","theatre","established","adjoining","room","theatre","changed","accommodate","buffet","dinner","groups","attending","becoming","available","patrons","however","barksdale","known","theatre","happens","restaurant","andinner","optional","brochure","william","dinner_theatre","survey","andirectory","page","greenwood","publishing","professional","non","virginia","lovers","website","barksdale","theatre","beef","boards","dinner_theatre","beef","boards","dinner_theatre","indianapolis","indiana","opened","march","one","chain","dinner_theatres","founded","j","seat","house","features","broadway","shows","concerts","preceded","buffet","dinner","alsoffers","live","theatre","season","professional","theatre","member","actors","equity","association","cedar","grove","new_jersey","located","half","hour","location","theater","opened","lasted","part","due","seats","table_service","nearby","competition","broadway","theatre","broadway","actors","equity","association","requirements","thathe","facility","follow","rules","applied","broadway","theatres","including","pay","drury_lane","theatres","tony","desantis","opened","restaurant","evergreen","park","illinois","evergreen","park","illinois","began","producing","plays","tent","adjacento","restauranto","attract","jonathan","stories","april","tony","desantis","new","drury_lane","theatre","thenterprise","wasuccessful","build","park","first","six","dinner_theaters","started","local","entertainment","landmark","years","closing","knight","tribune","business","news","june","wal","replace","dinner_theater","evergreen","park","drury_lane","north","began","operations","wasoon","sold","marriott","became","drury_lane","oak","brook","terrace","opened","benefited","desantis","learned","years","facility","uses","local","performers","keep","costs","theater","bars","restaurants","banquet","limited","charge","parking","first","facility","dinner","together","one","room","washington","bill","theater","student","conceived","implemented","thentertainment","concept","athe","presidential","arms","hotel","summer","breaks","athe","catholic","university","university","venture","wasuccessful","unable","yearound","operation","due","hotel","convention","business","returned","chicago","home","opened","candlelight","dinner","playhouse","first","building","owned","grandfather","new","facility","seating","constructed","withe_help","family","candlelight","introduced","several","innovations","including","hydraulic","stage","lighting","equipment","located","stage","wagons","william","dinner_theatre","survey","andirectory","pages","greenwood","publishing","barn","dinner_theatre","file","howard","wolfe","portrait","jpg","thumb","right","px","howard","wolfe","wolfe","entrepreneur","roanoke","virginia","created","barn","dinner_theatre","franchising","franchise","father","dinner_theater","began","franchise","longtime","friend","business","partner","jones","theaters","inew_york","state_new_york","virginia","north_carolina","tennessee","texas","georgia_ustate_georgia","franchise","featured","architectural","barn","designs","farm","included","tools","wolfe","elevator","whiche","patented","magic","stage","athend","act","scene","stage","ceiling","next","scene","whole","process","took","less","minute","franchise","phase","barn","productions","staged","studio","inew_york_city","sent","outo","individual","st_petersburg","times","august","florida","first","barn","dinner_theatre","may","open","city","athe","break","franchise","production","facilities","moved","present","location","back","early","days","performance","cast","acted","stage","waiters","waitresses","actors","selected","cast","inew_york","living","quarters","theater","duration","productions","robert","de","reportedly","acted","athe","barn","greensboro","fired","middle","show","mickey","many","well_known","performers","also","acted","roles","athe","barn","barn","greensboro","north_carolina","founded","oldest","continuously","running","dinner_theater","americand","last","original","barn","dinner_theatres","barn","dinner_theatre","history","barn","though","barn","franchise","opened","called","barn","dinner_theatre","barn","dinner_theatre","also","still","operation","alhambra","dinner_theatre","alhambra","dinner_theatre","jacksonville","florida","opened","leon","simon","purchased","booth","left","chicago","drury_lane","theatre","illinois","drury_lane","theatre","alhambra","second","oldest","dinner_theater","still","open","united_states","oldest","laura","florida","times","union","may","dinner","head","alhambra","facility","uses","provide","seats","view","chanhassen","dinner_theatres","chanhassen","dinner_theatres","paul","minnesota","founded","designed","old","log","theater","near","lake","subsequently","constructed","operated","chanhassen","dinner_theatres","old","log","theater","room","revenue","food","sales","necessary","financial","success","buthey","dinner_theater","minnesota","monthly","may","wise","guys","chanhassen","claims","largest","professional","dinner_theater","us","main","stage","seats","theatre","non","dining","patrons","playhouse","theatre","tables","chanhassen","website","seating","carousel","dinner_theatre","carousel","dinner_theatre","seats","largest","dinner_theater","united_states","closed","january","first_opened","moved","downtown","akron","ohio","nightclub","withe","style","las_vegas","valley","las_vegas","theater","victim","late","economicrisis","credit","years","bad","investments","major","financial","tony","cleveland","plain","dealer","january","akron","carousel","dinner_theatre","final","performance","theater","addition","typical","dinner_theater","fare","murder_mystery","shows","comedy","shows","community","theater","jersey","based","touring","theater","company_also","stages","productions","self","help","message","shows","performed","entirely","constructed","languages","made","languages","incorporated","ideas","new","thought","thend","world","know","players","feel","fine","daily","record","daily","dinner_theaters","provided","entertainment","local","audiences","alhambra","dinner_theatre","owner","booth","noted","professional","dinner_theaters","randy","florida","times","union","august","came","dinner","particularly","popular","dinner_theaters","used","former","movie","names","star","productions","van","johnson","turner","mickey","june","winters","dorothy","hunter","betty","grable","sandra","dee","van","joan","debbie","reynolds","kathryn","betty","jane","martha","donald","jane","russell","ann","miller","stars","golden","era","hollywood","found","success","field","also_popular","stars","character","actors","well","remembered","television_series","earlier","betty","white","ann","b","davis","vivian","bob","denver","joanne","dawn","wells","ken","gavin","nancy","frank","sutton","burt","reynolds","owned","dinner_theater","jupiter","florida","roadside","america","burt","reynolds","friends","museum","actor","earl","whowned","fiesta","dinner","playhouse","santonio_texas","gary","earl","biography","derby","dinner","playhouse","clarksville","indiana","opened","wastill","open","operating","continuously","years","utilized","magic","stage","similar","used","barn","dinner_theatre","orchestra","utilized","plays","daniel","news","tribune","february","derby","dinner","playhouse","unique","atmosphere","clarksville","boom","seemed","end","mid","many","closing","longer","able","afford","attract","celebrities","even","ones","star","productions","aging","receiving","offers","television","commercial","work","dinner_theater","alhambra","dinner_theatre","owner","booth","commented","could","make","day","commercial","could","make","thentire","run","dinner_theater","show","travel","plus","lot","stars","fine","gig","booth","went","say","could","counthe","number","surviving","professional","dinner_theaters","two","hands","dinner_theater","audiences","showsuch","last","red","hot","lovers","arsenic","old","lace","play","arsenic","old","lace","according","booth","lot","charlie","florida","times","union","march","curtain","call","response","criticism","change","available","talent","many","using","coming","relatively","unknown","actors","began","toffer","new","broadway","shows","promoted","shows","rather","stars","seemed","resurgence","number","new","dinner_theaters","opening","chicago","original","drury_lane","water","tower","place","founded","closed","new","million","version","opened","may","desert","star","theater","murray","utah","opened","dinner_theater","tom","utah","statesman","august","cruise","athe","desert","star","gathering","dinner_theatre","jacksonville","opened","early","bull","roger","florida","times","union","december","new","dinner_theater","planned","athend","national","dinner_theatre","association","members","galbraith","kate","new_york","times","december","entertainment","way","broadway","differentypes","union","non","union","basic","distinction","union","non","union","theaters","former","known","equity","theatres","performers","members","actors","equity","association","union","represents","professional","stage","actors","stage","managers","union","shows","higher","overhead","actor","equity","contracts","typically","require","theater","pay","lodging","minimum","salary","insurance","pension","payments","well","work","rules","regarding","william","dinner_theatre","survey","andirectory","pages","greenwood","publishing","reduction","professional","dinner_theaters","facilities","went","business","theaters","changed","non","union","typically","actors","still","housed","paid","competitive","salary","among","non","union","theaters","sometimes","even","fed","however","salary","non","union","actors","may","significantly","less","union","actor","commercial","non","desantis","lifetime","experience","restaurants","andinner","theater","claimed","could","make","money","restaurant","alcohol","sales","profitable","operating","theater","successful","many","theaters","operate","order","take_advantage","grants","funding","government_agencies","private","foundations","dinner_theaters","commercial","businesses","due","management","capital","requirements","restaurant","operations","commercial","dinner_theatres","week","well","also","short","breaks","shows","usually","less","week","typical","non_profit","dinner_theatre","lansing","michigan","dinner","catered","shows","staged","school","season","includes","four","productions","four","performances","per","production","friday","saturday","dinner_theatre","welcome","also_use","amateur","actors","leading","role","may","professional","withe","rest","cast","composed","vacation","destinationsuch","las_vegas","florida","branson_missouri","anaheim","los_angeles","seen","themergence","specialty","dinner_theaters","show","stays","extended","run","vast_majority","customers","tourists","local_residents","popular","vacation","destination","united_states","orlando_florida","dozen","competing","share","billion","dinner_theaters","opened","closed","jane","los_angeles","business_journal","november","dinner_theater","tough","sell","capital","mystery","game","interactive","dinner_theater","events","become_popular","segment","productions","may","public","anyone","attend","price","admission","private_company","social","group","organization","sponsors","event","members","utilizing","dinner","show","concept","generally","targets","smaller","audience","typical","dinner_theater","public","performances","featuring","professional","actors","private","may","guests","participate","production","either","characters","detectives","wedding","comedy","isimilar","murder_mystery","requirements","minimal","audience","interaction","withe","actors","perform","maria","comedy","italian","wedding","written","franklin","franchise","rights","sold","hawkins","naples","news","march","join","action","comedy","dinner_theater","examples_include","tony","n","tina","wedding","frankie","gina","comedy","wedding","gay","version","gina","wedding","riverboat","dinner","cruises","combine","showboat","meal","obviously","limited","locations","body","water","showboat","branson","belle","showboat","numerous","murder_mystery","dinner","cruises","madrigal","dinner","aka","madrigal","seasonal","typically","often","staged","educational","entities","fundraising","include","food","music","singing","poetry","humor","costumes","play","middle_ages","ranging","renaissance","periods","madrigal","traditions","madrigal","dinner","see_also","cabaret","list","dinner_theaters","externalinks","national","dinner_theater","association","website_category","theatrical","genres","category_types","restaurants_category","dinner_theatre"],"clean_bigrams":[["dinner","theater"],["theater","sometimes"],["restaurant","meal"],["staged","play"],["play","theatre"],["theatre","play"],["musical","sometimes"],["entertainment","secondary"],["sophisticated","night"],["night","club"],["play","may"],["major","production"],["dinner","less"],["less","important"],["cases","optional"],["optional","dinner"],["three","distinct"],["distinct","entities"],["live","theater"],["madrigal","dinner"],["middle","ages"],["ages","might"],["considered","thearliest"],["thearliest","dinner"],["dinner","theater"],["theater","thearliest"],["thearliest","dinner"],["one","room"],["staged","play"],["dinner","theater"],["william","dinner"],["dinner","theatre"],["survey","andirectory"],["andirectory","page"],["page","greenwood"],["greenwood","publishing"],["publishing","barksdale"],["barksdale","theatre"],["theatre","barksdale"],["barksdale","theatre"],["richmond","virginia"],["virginia","founded"],["athe","historic"],["historic","hanover"],["hanover","tavern"],["first","formal"],["formal","dinner"],["dinner","theater"],["muriel","going"],["one","years"],["years","page"],["page","taylor"],["kate","new"],["new","york"],["york","times"],["times","december"],["entertainment","way"],["broadway","retrieved"],["barksdale","retrieved"],["adjoining","room"],["buffet","dinner"],["groups","attending"],["becoming","available"],["patrons","however"],["however","barksdale"],["restaurant","andinner"],["william","dinner"],["dinner","theatre"],["survey","andirectory"],["andirectory","page"],["page","greenwood"],["greenwood","publishing"],["professional","non"],["lovers","website"],["website","barksdale"],["barksdale","theatre"],["theatre","beef"],["beef","boards"],["boards","dinner"],["dinner","theatre"],["theatre","beef"],["beef","boards"],["boards","dinner"],["dinner","theatre"],["theatre","indianapolis"],["indianapolis","indiana"],["indiana","opened"],["dinner","theatres"],["theatres","founded"],["seat","house"],["features","broadway"],["broadway","shows"],["concerts","preceded"],["buffet","dinner"],["live","theatre"],["professional","theatre"],["actors","equity"],["equity","association"],["cedar","grove"],["grove","new"],["new","jersey"],["jersey","located"],["located","half"],["part","due"],["table","service"],["service","nearby"],["nearby","competition"],["broadway","theatre"],["theatre","broadway"],["actors","equity"],["equity","association"],["association","requirements"],["requirements","thathe"],["thathe","facility"],["facility","follow"],["broadway","theatres"],["theatres","including"],["including","pay"],["drury","lane"],["lane","theatres"],["theatres","tony"],["tony","desantis"],["desantis","opened"],["evergreen","park"],["park","illinois"],["illinois","evergreen"],["evergreen","park"],["park","illinois"],["began","producing"],["producing","plays"],["tent","adjacento"],["restauranto","attract"],["stories","april"],["april","tony"],["tony","desantis"],["new","drury"],["drury","lane"],["lane","theatre"],["theatre","thenterprise"],["thenterprise","wasuccessful"],["six","dinner"],["dinner","theaters"],["local","entertainment"],["entertainment","landmark"],["tribune","business"],["business","news"],["news","june"],["june","wal"],["replace","dinner"],["dinner","theater"],["evergreen","park"],["drury","lane"],["lane","north"],["north","began"],["began","operations"],["wasoon","sold"],["drury","lane"],["lane","oak"],["oak","brook"],["brook","terrace"],["terrace","opened"],["facility","uses"],["uses","local"],["local","performers"],["keep","costs"],["bars","restaurants"],["first","facility"],["one","room"],["theater","student"],["implemented","thentertainment"],["thentertainment","concept"],["concept","athe"],["athe","presidential"],["presidential","arms"],["arms","hotel"],["summer","breaks"],["breaks","athe"],["athe","catholic"],["catholic","university"],["venture","wasuccessful"],["yearound","operation"],["operation","due"],["convention","business"],["chicago","home"],["candlelight","dinner"],["dinner","playhouse"],["playhouse","first"],["building","owned"],["new","facility"],["constructed","withe"],["withe","help"],["candlelight","introduced"],["introduced","several"],["several","innovations"],["innovations","including"],["hydraulic","stage"],["stage","lighting"],["lighting","equipment"],["equipment","located"],["stage","wagons"],["william","dinner"],["dinner","theatre"],["survey","andirectory"],["andirectory","pages"],["pages","greenwood"],["greenwood","publishing"],["publishing","barn"],["barn","dinner"],["dinner","theatre"],["theatre","file"],["file","howard"],["howard","wolfe"],["wolfe","portrait"],["portrait","jpg"],["jpg","thumb"],["thumb","right"],["right","px"],["px","howard"],["howard","wolfe"],["roanoke","virginia"],["barn","dinner"],["dinner","theatre"],["theatre","franchising"],["franchising","franchise"],["dinner","theater"],["longtime","friend"],["business","partner"],["theaters","inew"],["inew","york"],["york","state"],["state","new"],["new","york"],["york","virginia"],["virginia","north"],["north","carolina"],["carolina","tennessee"],["tennessee","texas"],["georgia","ustate"],["ustate","georgia"],["franchise","featured"],["architectural","barn"],["barn","designs"],["designs","farm"],["elevator","whiche"],["whiche","patented"],["magic","stage"],["stage","athend"],["next","scene"],["whole","process"],["process","took"],["took","less"],["franchise","phase"],["studio","inew"],["inew","york"],["york","city"],["sent","outo"],["st","petersburg"],["petersburg","times"],["times","august"],["august","florida"],["first","barn"],["barn","dinner"],["dinner","theatre"],["theatre","may"],["may","open"],["city","athe"],["athe","break"],["production","facilities"],["present","location"],["early","days"],["waitresses","actors"],["cast","inew"],["inew","york"],["living","quarters"],["productions","robert"],["robert","de"],["reportedly","acted"],["acted","athe"],["athe","barn"],["show","mickey"],["well","known"],["known","performers"],["also","acted"],["roles","athe"],["athe","barn"],["greensboro","north"],["north","carolina"],["oldest","continuously"],["continuously","running"],["running","dinner"],["dinner","theater"],["original","barn"],["barn","dinner"],["dinner","theatres"],["theatres","barn"],["barn","dinner"],["dinner","theatre"],["theatre","history"],["barn","though"],["barn","franchise"],["franchise","opened"],["barn","dinner"],["dinner","theatre"],["barn","dinner"],["dinner","theatre"],["also","still"],["operation","alhambra"],["alhambra","dinner"],["dinner","theatre"],["alhambra","dinner"],["dinner","theatre"],["jacksonville","florida"],["leon","simon"],["left","chicago"],["drury","lane"],["lane","theatre"],["theatre","illinois"],["illinois","drury"],["drury","lane"],["lane","theatre"],["second","oldest"],["oldest","dinner"],["dinner","theater"],["theater","still"],["still","open"],["united","states"],["laura","florida"],["florida","times"],["times","union"],["union","may"],["facility","uses"],["view","chanhassen"],["chanhassen","dinner"],["dinner","theatres"],["theatres","chanhassen"],["chanhassen","dinner"],["dinner","theatres"],["paul","minnesota"],["old","log"],["log","theater"],["theater","near"],["near","lake"],["subsequently","constructed"],["chanhassen","dinner"],["dinner","theatres"],["old","log"],["log","theater"],["food","sales"],["financial","success"],["success","buthey"],["dinner","theater"],["theater","minnesota"],["minnesota","monthly"],["monthly","may"],["may","wise"],["wise","guys"],["chanhassen","claims"],["largest","professional"],["professional","dinner"],["dinner","theater"],["main","stage"],["stage","seats"],["non","dining"],["dining","patrons"],["playhouse","theatre"],["chanhassen","website"],["website","seating"],["seating","carousel"],["carousel","dinner"],["dinner","theatre"],["carousel","dinner"],["dinner","theatre"],["largest","dinner"],["dinner","theater"],["united","states"],["first","opened"],["downtown","akron"],["akron","ohio"],["nightclub","withe"],["withe","style"],["las","vegas"],["vegas","valley"],["valley","las"],["las","vegas"],["vegas","theater"],["bad","investments"],["major","financial"],["tony","cleveland"],["cleveland","plain"],["plain","dealer"],["dealer","january"],["january","akron"],["carousel","dinner"],["dinner","theatre"],["final","performance"],["typical","dinner"],["dinner","theater"],["theater","fare"],["fare","murder"],["murder","mystery"],["mystery","shows"],["shows","comedy"],["comedy","shows"],["community","theater"],["jersey","based"],["touring","theater"],["theater","company"],["company","also"],["also","stages"],["stages","productions"],["self","help"],["help","message"],["performed","entirely"],["constructed","languages"],["languages","made"],["incorporated","ideas"],["new","thought"],["players","feel"],["feel","fine"],["fine","daily"],["daily","record"],["dinner","theaters"],["local","audiences"],["audiences","alhambra"],["alhambra","dinner"],["dinner","theatre"],["theatre","owner"],["booth","noted"],["professional","dinner"],["dinner","theaters"],["randy","florida"],["florida","times"],["times","union"],["union","august"],["dinner","particularly"],["particularly","popular"],["dinner","theaters"],["used","former"],["former","movie"],["movie","names"],["productions","van"],["van","johnson"],["winters","dorothy"],["hunter","betty"],["betty","grable"],["grable","sandra"],["sandra","dee"],["debbie","reynolds"],["jane","russell"],["ann","miller"],["golden","era"],["found","success"],["field","also"],["also","popular"],["character","actors"],["well","remembered"],["remembered","television"],["television","series"],["betty","white"],["white","ann"],["ann","b"],["b","davis"],["davis","vivian"],["bob","denver"],["denver","joanne"],["dawn","wells"],["wells","ken"],["ken","berry"],["berry","gavin"],["frank","sutton"],["sutton","burt"],["burt","reynolds"],["reynolds","owned"],["dinner","theater"],["jupiter","florida"],["roadside","america"],["america","burt"],["burt","reynolds"],["friends","museum"],["actor","earl"],["fiesta","dinner"],["dinner","playhouse"],["santonio","texas"],["derby","dinner"],["dinner","playhouse"],["clarksville","indiana"],["indiana","opened"],["wastill","open"],["operating","continuously"],["magic","stage"],["stage","similar"],["barn","dinner"],["dinner","theatre"],["utilized","plays"],["daniel","news"],["tribune","february"],["february","derby"],["derby","dinner"],["dinner","playhouse"],["unique","atmosphere"],["boom","seemed"],["longer","able"],["attract","celebrities"],["celebrities","even"],["productions","aging"],["receiving","offers"],["commercial","work"],["dinner","theater"],["theater","alhambra"],["alhambra","dinner"],["dinner","theatre"],["theatre","owner"],["booth","commented"],["could","make"],["could","make"],["thentire","run"],["dinner","theater"],["theater","show"],["travel","plus"],["fine","gig"],["booth","went"],["could","counthe"],["counthe","number"],["surviving","professional"],["professional","dinner"],["dinner","theaters"],["two","hands"],["dinner","theater"],["red","hot"],["hot","lovers"],["old","lace"],["lace","play"],["play","arsenic"],["old","lace"],["lace","according"],["charlie","florida"],["florida","times"],["times","union"],["union","march"],["march","curtain"],["curtain","call"],["available","talent"],["talent","many"],["relatively","unknown"],["unknown","actors"],["began","toffer"],["toffer","new"],["new","broadway"],["broadway","shows"],["shows","rather"],["new","dinner"],["dinner","theaters"],["theaters","opening"],["opening","chicago"],["original","drury"],["drury","lane"],["lane","water"],["water","tower"],["tower","place"],["new","million"],["million","version"],["version","opened"],["desert","star"],["star","theater"],["murray","utah"],["utah","opened"],["dinner","theater"],["utah","statesman"],["statesman","august"],["cruise","athe"],["athe","desert"],["desert","star"],["gathering","dinner"],["dinner","theatre"],["jacksonville","opened"],["early","bull"],["bull","roger"],["roger","florida"],["florida","times"],["times","union"],["union","december"],["december","new"],["new","dinner"],["dinner","theater"],["theater","planned"],["planned","athend"],["national","dinner"],["dinner","theatre"],["theatre","association"],["members","galbraith"],["galbraith","kate"],["kate","new"],["new","york"],["york","times"],["times","december"],["entertainment","way"],["differentypes","union"],["non","union"],["basic","distinction"],["non","union"],["union","theaters"],["equity","theatres"],["actors","equity"],["equity","association"],["represents","professional"],["professional","stage"],["stage","actors"],["stage","managers"],["managers","union"],["union","shows"],["higher","overhead"],["equity","contracts"],["contracts","typically"],["typically","require"],["require","theater"],["minimum","salary"],["salary","insurance"],["pension","payments"],["work","rules"],["rules","regarding"],["william","dinner"],["dinner","theatre"],["survey","andirectory"],["andirectory","pages"],["pages","greenwood"],["greenwood","publishing"],["professional","dinner"],["dinner","theaters"],["facilities","went"],["theaters","changed"],["non","union"],["typically","actors"],["still","housed"],["housed","paid"],["competitive","salary"],["salary","among"],["among","non"],["non","union"],["union","theaters"],["sometimes","even"],["even","fed"],["fed","however"],["however","salary"],["non","union"],["union","actors"],["actors","may"],["significantly","less"],["union","actor"],["actor","commercial"],["restaurants","andinner"],["andinner","theater"],["could","make"],["make","money"],["alcohol","sales"],["many","theaters"],["theaters","operate"],["profit","organizations"],["take","advantage"],["government","agencies"],["private","foundations"],["dinner","theaters"],["commercial","businesses"],["businesses","due"],["capital","requirements"],["restaurant","operations"],["operations","commercial"],["commercial","dinner"],["dinner","theatres"],["short","breaks"],["shows","usually"],["usually","less"],["typical","non"],["non","profit"],["dinner","theatre"],["lansing","michigan"],["season","includes"],["four","productions"],["four","performances"],["performances","per"],["per","production"],["production","friday"],["dinner","theatre"],["theatre","welcome"],["non","profits"],["profits","also"],["also","use"],["use","amateur"],["amateur","actors"],["leading","role"],["role","may"],["professional","withe"],["withe","rest"],["cast","composed"],["vacation","destinationsuch"],["las","vegas"],["florida","branson"],["branson","missouri"],["missouri","anaheim"],["los","angeles"],["seen","themergence"],["specialty","dinner"],["dinner","theaters"],["show","stays"],["extended","run"],["vast","majority"],["local","residents"],["popular","vacation"],["vacation","destination"],["united","states"],["states","orlando"],["orlando","florida"],["dozen","competing"],["dinner","theaters"],["theaters","opened"],["jane","los"],["los","angeles"],["angeles","business"],["business","journal"],["journal","november"],["november","dinner"],["dinner","theater"],["tough","sell"],["mystery","game"],["interactive","dinner"],["dinner","theater"],["theater","events"],["popular","segment"],["productions","may"],["company","social"],["social","group"],["group","organization"],["organization","sponsors"],["show","concept"],["generally","targets"],["smaller","audience"],["typical","dinner"],["dinner","theater"],["public","performances"],["performances","featuring"],["featuring","professional"],["professional","actors"],["either","characters"],["detectives","wedding"],["wedding","comedy"],["comedy","isimilar"],["murder","mystery"],["interaction","withe"],["withe","actors"],["comedy","italian"],["italian","wedding"],["franchise","rights"],["naples","news"],["news","march"],["march","join"],["comedy","dinner"],["dinner","theater"],["examples","include"],["include","tony"],["tony","n"],["n","tina"],["wedding","frankie"],["frankie","gina"],["comedy","wedding"],["gay","version"],["wedding","riverboat"],["riverboat","dinner"],["dinner","cruises"],["cruises","combine"],["combine","showboat"],["meal","obviously"],["showboat","branson"],["branson","belle"],["numerous","murder"],["murder","mystery"],["mystery","dinner"],["dinner","cruises"],["cruises","madrigal"],["madrigal","dinner"],["aka","madrigal"],["seasonal","typically"],["often","staged"],["include","food"],["food","music"],["music","singing"],["singing","poetry"],["poetry","humor"],["humor","costumes"],["middle","ages"],["ages","ranging"],["renaissance","periods"],["periods","madrigal"],["madrigal","traditions"],["madrigal","dinner"],["dinner","see"],["see","also"],["also","cabaret"],["cabaret","list"],["dinner","theaters"],["theaters","externalinks"],["externalinks","national"],["national","dinner"],["dinner","theater"],["theater","association"],["association","website"],["website","category"],["category","theatrical"],["theatrical","genres"],["genres","category"],["category","types"],["restaurants","category"],["category","dinner"],["dinner","theatre"]],"all_collocations":["dinner theater","theater sometimes","restaurant meal","staged play","play theatre","theatre play","musical sometimes","entertainment secondary","sophisticated night","night club","play may","major production","dinner less","less important","cases optional","optional dinner","three distinct","distinct entities","live theater","madrigal dinner","middle ages","ages might","considered thearliest","thearliest dinner","dinner theater","theater thearliest","thearliest dinner","one room","staged play","dinner theater","william dinner","dinner theatre","survey andirectory","andirectory page","page greenwood","greenwood publishing","publishing barksdale","barksdale theatre","theatre barksdale","barksdale theatre","richmond virginia","virginia founded","athe historic","historic hanover","hanover tavern","first formal","formal dinner","dinner theater","muriel going","one years","years page","page taylor","kate new","new york","york times","times december","entertainment way","broadway retrieved","barksdale retrieved","adjoining room","buffet dinner","groups attending","becoming available","patrons however","however barksdale","restaurant andinner","william dinner","dinner theatre","survey andirectory","andirectory page","page greenwood","greenwood publishing","professional non","lovers website","website barksdale","barksdale theatre","theatre beef","beef boards","boards dinner","dinner theatre","theatre beef","beef boards","boards dinner","dinner theatre","theatre indianapolis","indianapolis indiana","indiana opened","dinner theatres","theatres founded","seat house","features broadway","broadway shows","concerts preceded","buffet dinner","live theatre","professional theatre","actors equity","equity association","cedar grove","grove new","new jersey","jersey located","located half","part due","table service","service nearby","nearby competition","broadway theatre","theatre broadway","actors equity","equity association","association requirements","requirements thathe","thathe facility","facility follow","broadway theatres","theatres including","including pay","drury lane","lane theatres","theatres tony","tony desantis","desantis opened","evergreen park","park illinois","illinois evergreen","evergreen park","park illinois","began producing","producing plays","tent adjacento","restauranto attract","stories april","april tony","tony desantis","new drury","drury lane","lane theatre","theatre thenterprise","thenterprise wasuccessful","six dinner","dinner theaters","local entertainment","entertainment landmark","tribune business","business news","news june","june wal","replace dinner","dinner theater","evergreen park","drury lane","lane north","north began","began operations","wasoon sold","drury lane","lane oak","oak brook","brook terrace","terrace opened","facility uses","uses local","local performers","keep costs","bars restaurants","first facility","one room","theater student","implemented thentertainment","thentertainment concept","concept athe","athe presidential","presidential arms","arms hotel","summer breaks","breaks athe","athe catholic","catholic university","venture wasuccessful","yearound operation","operation due","convention business","chicago home","candlelight dinner","dinner playhouse","playhouse first","building owned","new facility","constructed withe","withe help","candlelight introduced","introduced several","several innovations","innovations including","hydraulic stage","stage lighting","lighting equipment","equipment located","stage wagons","william dinner","dinner theatre","survey andirectory","andirectory pages","pages greenwood","greenwood publishing","publishing barn","barn dinner","dinner theatre","theatre file","file howard","howard wolfe","wolfe portrait","portrait jpg","px howard","howard wolfe","roanoke virginia","barn dinner","dinner theatre","theatre franchising","franchising franchise","dinner theater","longtime friend","business partner","theaters inew","inew york","york state","state new","new york","york virginia","virginia north","north carolina","carolina tennessee","tennessee texas","georgia ustate","ustate georgia","franchise featured","architectural barn","barn designs","designs farm","elevator whiche","whiche patented","magic stage","stage athend","next scene","whole process","process took","took less","franchise phase","studio inew","inew york","york city","sent outo","st petersburg","petersburg times","times august","august florida","first barn","barn dinner","dinner theatre","theatre may","may open","city athe","athe break","production facilities","present location","early days","waitresses actors","cast inew","inew york","living quarters","productions robert","robert de","reportedly acted","acted athe","athe barn","show mickey","well known","known performers","also acted","roles athe","athe barn","greensboro north","north carolina","oldest continuously","continuously running","running dinner","dinner theater","original barn","barn dinner","dinner theatres","theatres barn","barn dinner","dinner theatre","theatre history","barn though","barn franchise","franchise opened","barn dinner","dinner theatre","barn dinner","dinner theatre","also still","operation alhambra","alhambra dinner","dinner theatre","alhambra dinner","dinner theatre","jacksonville florida","leon simon","left chicago","drury lane","lane theatre","theatre illinois","illinois drury","drury lane","lane theatre","second oldest","oldest dinner","dinner theater","theater still","still open","united states","laura florida","florida times","times union","union may","facility uses","view chanhassen","chanhassen dinner","dinner theatres","theatres chanhassen","chanhassen dinner","dinner theatres","paul minnesota","old log","log theater","theater near","near lake","subsequently constructed","chanhassen dinner","dinner theatres","old log","log theater","food sales","financial success","success buthey","dinner theater","theater minnesota","minnesota monthly","monthly may","may wise","wise guys","chanhassen claims","largest professional","professional dinner","dinner theater","main stage","stage seats","non dining","dining patrons","playhouse theatre","chanhassen website","website seating","seating carousel","carousel dinner","dinner theatre","carousel dinner","dinner theatre","largest dinner","dinner theater","united states","first opened","downtown akron","akron ohio","nightclub withe","withe style","las vegas","vegas valley","valley las","las vegas","vegas theater","bad investments","major financial","tony cleveland","cleveland plain","plain dealer","dealer january","january akron","carousel dinner","dinner theatre","final performance","typical dinner","dinner theater","theater fare","fare murder","murder mystery","mystery shows","shows comedy","comedy shows","community theater","jersey based","touring theater","theater company","company also","also stages","stages productions","self help","help message","performed entirely","constructed languages","languages made","incorporated ideas","new thought","players feel","feel fine","fine daily","daily record","dinner theaters","local audiences","audiences alhambra","alhambra dinner","dinner theatre","theatre owner","booth noted","professional dinner","dinner theaters","randy florida","florida times","times union","union august","dinner particularly","particularly popular","dinner theaters","used former","former movie","movie names","productions van","van johnson","winters dorothy","hunter betty","betty grable","grable sandra","sandra dee","debbie reynolds","jane russell","ann miller","golden era","found success","field also","also popular","character actors","well remembered","remembered television","television series","betty white","white ann","ann b","b davis","davis vivian","bob denver","denver joanne","dawn wells","wells ken","ken berry","berry gavin","frank sutton","sutton burt","burt reynolds","reynolds owned","dinner theater","jupiter florida","roadside america","america burt","burt reynolds","friends museum","actor earl","fiesta dinner","dinner playhouse","santonio texas","derby dinner","dinner playhouse","clarksville indiana","indiana opened","wastill open","operating continuously","magic stage","stage similar","barn dinner","dinner theatre","utilized plays","daniel news","tribune february","february derby","derby dinner","dinner playhouse","unique atmosphere","boom seemed","longer able","attract celebrities","celebrities even","productions aging","receiving offers","commercial work","dinner theater","theater alhambra","alhambra dinner","dinner theatre","theatre owner","booth commented","could make","could make","thentire run","dinner theater","theater show","travel plus","fine gig","booth went","could counthe","counthe number","surviving professional","professional dinner","dinner theaters","two hands","dinner theater","red hot","hot lovers","old lace","lace play","play arsenic","old lace","lace according","charlie florida","florida times","times union","union march","march curtain","curtain call","available talent","talent many","relatively unknown","unknown actors","began toffer","toffer new","new broadway","broadway shows","shows rather","new dinner","dinner theaters","theaters opening","opening chicago","original drury","drury lane","lane water","water tower","tower place","new million","million version","version opened","desert star","star theater","murray utah","utah opened","dinner theater","utah statesman","statesman august","cruise athe","athe desert","desert star","gathering dinner","dinner theatre","jacksonville opened","early bull","bull roger","roger florida","florida times","times union","union december","december new","new dinner","dinner theater","theater planned","planned athend","national dinner","dinner theatre","theatre association","members galbraith","galbraith kate","kate new","new york","york times","times december","entertainment way","differentypes union","non union","basic distinction","non union","union theaters","equity theatres","actors equity","equity association","represents professional","professional stage","stage actors","stage managers","managers union","union shows","higher overhead","equity contracts","contracts typically","typically require","require theater","minimum salary","salary insurance","pension payments","work rules","rules regarding","william dinner","dinner theatre","survey andirectory","andirectory pages","pages greenwood","greenwood publishing","professional dinner","dinner theaters","facilities went","theaters changed","non union","typically actors","still housed","housed paid","competitive salary","salary among","among non","non union","union theaters","sometimes even","even fed","fed however","however salary","non union","union actors","actors may","significantly less","union actor","actor commercial","restaurants andinner","andinner theater","could make","make money","alcohol sales","many theaters","theaters operate","profit organizations","take advantage","government agencies","private foundations","dinner theaters","commercial businesses","businesses due","capital requirements","restaurant operations","operations commercial","commercial dinner","dinner theatres","short breaks","shows usually","usually less","typical non","non profit","dinner theatre","lansing michigan","season includes","four productions","four performances","performances per","per production","production friday","dinner theatre","theatre welcome","non profits","profits also","also use","use amateur","amateur actors","leading role","role may","professional withe","withe rest","cast composed","vacation destinationsuch","las vegas","florida branson","branson missouri","missouri anaheim","los angeles","seen themergence","specialty dinner","dinner theaters","show stays","extended run","vast majority","local residents","popular vacation","vacation destination","united states","states orlando","orlando florida","dozen competing","dinner theaters","theaters opened","jane los","los angeles","angeles business","business journal","journal november","november dinner","dinner theater","tough sell","mystery game","interactive dinner","dinner theater","theater events","popular segment","productions may","company social","social group","group organization","organization sponsors","show concept","generally targets","smaller audience","typical dinner","dinner theater","public performances","performances featuring","featuring professional","professional actors","either characters","detectives wedding","wedding comedy","comedy isimilar","murder mystery","interaction withe","withe actors","comedy italian","italian wedding","franchise rights","naples news","news march","march join","comedy dinner","dinner theater","examples include","include tony","tony n","n tina","wedding frankie","frankie gina","comedy wedding","gay version","wedding riverboat","riverboat dinner","dinner cruises","cruises combine","combine showboat","meal obviously","showboat branson","branson belle","numerous murder","murder mystery","mystery dinner","dinner cruises","cruises madrigal","madrigal dinner","aka madrigal","seasonal typically","often staged","include food","food music","music singing","singing poetry","poetry humor","humor costumes","middle ages","ages ranging","renaissance periods","periods madrigal","madrigal traditions","madrigal dinner","dinner see","see also","also cabaret","cabaret list","dinner theaters","theaters externalinks","externalinks national","national dinner","dinner theater","theater association","association website","website category","category theatrical","theatrical genres","genres category","category types","restaurants category","category dinner","dinner theatre"],"new_description":"dinner theater sometimes show form combines restaurant meal staged play theatre play musical sometimes play entertainment secondary meal style sophisticated night_club play may major production dinner less important cases optional dinner management three distinct entities live theater restaurant usually bar madrigal dinner middle_ages might considered thearliest dinner_theater thearliest dinner one room staged play another known dinner_theater william dinner_theatre survey andirectory page greenwood publishing barksdale theatre barksdale theatre richmond virginia founded david nancy athe historic hanover tavern first formal dinner_theater united muriel going theatre one_years page taylor kate new_york times december entertainment way broadway retrieved katherine july barking barksdale retrieved theatre established adjoining room theatre changed accommodate buffet dinner groups attending becoming available patrons however barksdale known theatre happens restaurant andinner optional brochure william dinner_theatre survey andirectory page greenwood publishing professional non virginia lovers website barksdale theatre beef boards dinner_theatre beef boards dinner_theatre indianapolis indiana opened march one chain dinner_theatres founded j seat house features broadway shows concerts preceded buffet dinner alsoffers live theatre season professional theatre member actors equity association cedar grove new_jersey located half hour location theater opened lasted part due seats table_service nearby competition broadway theatre broadway actors equity association requirements thathe facility follow rules applied broadway theatres including pay drury_lane theatres tony desantis opened restaurant evergreen park illinois evergreen park illinois began producing plays tent adjacento restauranto attract jonathan stories april tony desantis new drury_lane theatre thenterprise wasuccessful build drury park first six dinner_theaters started local entertainment landmark years closing knight tribune business news june wal replace dinner_theater evergreen park drury_lane north began operations wasoon sold marriott became drury_lane oak brook terrace opened benefited desantis learned years facility uses local performers keep costs theater bars restaurants banquet limited charge parking first facility dinner together one room washington bill theater student conceived implemented thentertainment concept athe presidential arms hotel summer breaks athe catholic university university venture wasuccessful unable yearound operation due hotel convention business returned chicago home opened candlelight dinner playhouse first building owned grandfather new facility seating constructed withe_help family candlelight introduced several innovations including hydraulic stage lighting equipment located stage wagons william dinner_theatre survey andirectory pages greenwood publishing barn dinner_theatre file howard wolfe portrait jpg thumb right px howard wolfe wolfe entrepreneur roanoke virginia created barn dinner_theatre franchising franchise father dinner_theater began franchise longtime friend business partner jones theaters inew_york state_new_york virginia north_carolina tennessee texas georgia_ustate_georgia franchise featured architectural barn designs farm included tools wolfe elevator whiche patented magic stage athend act scene stage ceiling next scene whole process took less minute franchise phase barn productions staged studio inew_york_city sent outo individual st_petersburg times august florida first barn dinner_theatre may open city athe break franchise production facilities moved present location back early days performance cast acted stage waiters waitresses actors selected cast inew_york living quarters theater duration productions robert de reportedly acted athe barn greensboro fired middle show mickey many well_known performers also acted roles athe barn barn greensboro north_carolina founded oldest continuously running dinner_theater americand last original barn dinner_theatres barn dinner_theatre history barn though barn franchise opened called barn dinner_theatre barn dinner_theatre also still operation alhambra dinner_theatre alhambra dinner_theatre jacksonville florida opened leon simon purchased booth left chicago drury_lane theatre illinois drury_lane theatre alhambra second oldest dinner_theater still open united_states oldest laura florida times union may dinner head alhambra facility uses provide seats view chanhassen dinner_theatres chanhassen dinner_theatres paul minnesota founded designed old log theater near lake subsequently constructed operated chanhassen dinner_theatres old log theater room revenue food sales necessary financial success buthey dinner_theater minnesota monthly may wise guys chanhassen claims largest professional dinner_theater us main stage seats theatre non dining patrons playhouse theatre tables chanhassen website seating carousel dinner_theatre carousel dinner_theatre seats largest dinner_theater united_states closed january first_opened moved downtown akron ohio nightclub withe style las_vegas valley las_vegas theater victim late economicrisis credit years bad investments major financial tony cleveland plain dealer january akron carousel dinner_theatre final performance theater addition typical dinner_theater fare murder_mystery shows comedy shows community theater jersey based touring theater company_also stages productions self help message shows performed entirely constructed languages made languages incorporated ideas new thought thend world know players feel fine daily record daily dinner_theaters provided entertainment local audiences alhambra dinner_theatre owner booth noted professional dinner_theaters randy florida times union august came dinner particularly popular dinner_theaters used former movie names star productions van johnson turner mickey june winters dorothy hunter betty grable sandra dee van joan debbie reynolds kathryn betty jane martha donald jane russell ann miller stars golden era hollywood found success field also_popular stars character actors well remembered television_series earlier betty white ann b davis vivian bob denver joanne dawn wells ken berry gavin nancy frank sutton burt reynolds owned dinner_theater jupiter florida roadside america burt reynolds friends museum actor earl whowned fiesta dinner playhouse santonio_texas gary earl biography derby dinner playhouse clarksville indiana opened wastill open operating continuously years utilized magic stage similar used barn dinner_theatre orchestra utilized plays daniel news tribune february derby dinner playhouse unique atmosphere clarksville boom seemed end mid many closing longer able afford attract celebrities even ones star productions aging receiving offers television commercial work dinner_theater alhambra dinner_theatre owner booth commented could make day commercial could make thentire run dinner_theater show travel plus lot stars fine gig booth went say could counthe number surviving professional dinner_theaters two hands dinner_theater audiences showsuch last red hot lovers arsenic old lace play arsenic old lace according booth lot charlie florida times union march curtain call response criticism change available talent many using coming relatively unknown actors began toffer new broadway shows promoted shows rather stars seemed resurgence number new dinner_theaters opening chicago original drury_lane water tower place founded closed new million version opened may desert star theater murray utah opened dinner_theater tom utah statesman august cruise athe desert star gathering dinner_theatre jacksonville opened early bull roger florida times union december new dinner_theater planned athend national dinner_theatre association members galbraith kate new_york times december entertainment way broadway differentypes union non union basic distinction union non union theaters former known equity theatres performers members actors equity association union represents professional stage actors stage managers union shows higher overhead actor equity contracts typically require theater pay lodging minimum salary insurance pension payments well work rules regarding william dinner_theatre survey andirectory pages greenwood publishing reduction professional dinner_theaters facilities went business theaters changed non union typically actors still housed paid competitive salary among non union theaters sometimes even fed however salary non union actors may significantly less union actor commercial non desantis lifetime experience restaurants andinner theater claimed could make money restaurant alcohol sales profitable operating theater successful many theaters operate profit_organizations order take_advantage grants funding government_agencies private foundations dinner_theaters commercial businesses due management capital requirements restaurant operations commercial dinner_theatres showsix week well also short breaks shows usually less week typical non_profit dinner_theatre lansing michigan dinner catered shows staged school season includes four productions four performances per production friday saturday dinner_theatre welcome non_profits also_use amateur actors leading role may professional withe rest cast composed vacation destinationsuch las_vegas florida branson_missouri anaheim los_angeles seen themergence specialty dinner_theaters show stays extended run vast_majority customers tourists local_residents popular vacation destination united_states orlando_florida dozen competing share billion dinner_theaters opened closed jane los_angeles business_journal november dinner_theater tough sell capital mystery game interactive dinner_theater events become_popular segment productions may public anyone attend price admission private_company social group organization sponsors event members utilizing dinner show concept generally targets smaller audience typical dinner_theater public performances featuring professional actors private may guests participate production either characters detectives wedding comedy isimilar murder_mystery requirements minimal audience interaction withe actors perform maria comedy italian wedding written franklin franchise rights sold hawkins naples news march join action comedy dinner_theater examples_include tony n tina wedding frankie gina comedy wedding gay version gina wedding riverboat dinner cruises combine showboat meal obviously limited locations body water showboat branson belle showboat numerous murder_mystery dinner cruises madrigal dinner aka madrigal seasonal typically often staged educational entities fundraising include food music singing poetry humor costumes play middle_ages ranging renaissance periods madrigal traditions madrigal dinner see_also cabaret list dinner_theaters externalinks national dinner_theater association website_category theatrical genres category_types restaurants_category dinner_theatre"},{"title":"Dinner train","description":"a dinner train is a relatively new type of touristrain service whose main purpose is to allow people to eat dinner whilexperiencing a relatively short leisurely round trip train ride this contrasts with conventional passenger trains whose main purpose is to transport passengers to some destination as quickly as possible but which also might serve dinner on long distance routes image blissfield township dinner trainjpg thumb px righthe old roadinner train blissfield michigan dinner trains have become popular in recent years particularly in the united states this in part a result of a nostalgia for passenger trains which are less common in the us than in many other countries and in part because it provides a very different experience from driving and from eating at ordinary restaurants the first dinner train the united states was the supper chief that ran on the sierrailroad in california in the s dinner train service was renewed in withe sierrailroadinner train there are over dinner trains currently operating inorth america most such trains operateither seasonally or a few days a week but some operate daily or even twice daily on weekends in a few cases almost all dinner trains run on lightly used branch lines or tourist lines and virtually all use older passenger cars almost all dinner train trips are characterized by hour trips that return to where they started since themphasis thexperience and notraveling to a destination some feature the use of steam locomotives for at least some of theirunspeeds are usually between much slower than ordinary passenger trains not only due to lowerail tracks track standards but also to the facthathemphasis on the journey itself nothe destination dinner trains can be funot only for the passengers who ride them but also for the train crews and other employees they can also provide jobs and be a profitable business moreover they can generate substantial benefits for local economies including boosting tourism and increasing sales at nearby businesses for example the spirit of washington dinner train spirit of washington which operatedaily on the woodinville subdivisionear seattle provided full time jobs and contributed roughly million annually to the local economy before ceasing operations in late october there was also the michigan star clipper dinner train which was a dinner train that operated for years out of walled lake michigan with trips heading from west bloomfield michigan west bloomfield to wixomichigan wixom in addition to just providing dinner while riding on a scenic route some dinner trains have developed additional functionsuch as hosting wedding receptions reunions company retreats murder mystery events during the dinner some so calledinner trains do not actually serve meals aboard the train rather the food iserved in a building or outdoors after the train has reached its destination the passengers then reboard for the return trip this particularly true for narrow gauge railways on which it would be impractical to prepare and serve formal meals examples include the gauge puffing billy railway near melbourne australiand the gauge lahaina kaanapali railroad in maui hawaii see alsorford express a tourist passenger train from sherbrooke quebec to magog quebec magog colonial tramcarestaurant one of several heritage tram s that serves the same purpose as dinner trains externalinks dinnertrainscom kansas belle dinner train category trains category types of restaurants category dinner","main_words":["dinner","train","relatively","new","type","service","whose","main","purpose","allow","people","eat","dinner","relatively","short","round","trip","train","ride","contrasts","conventional","passenger","trains","whose","main","purpose","transport","passengers","destination","quickly","possible","also","might","serve","dinner","long_distance","routes","image","township","dinner","thumb","px","righthe","old","train","michigan","dinner","trains","become_popular","recent_years","particularly","united_states","part","result","nostalgia","passenger","trains","less_common","us","many_countries","part","provides","different","experience","driving","eating","ordinary","restaurants","first","dinner","train","united_states","supper","chief","ran","california","dinner","train","service","renewed","withe","train","dinner","trains","currently","operating","inorth_america","trains","seasonally","days","week","operate","daily","even","twice","daily","weekends","cases","almost","dinner","trains","run","used","branch","lines","tourist","lines","virtually","use","older","passenger","cars","almost","dinner","train","trips","characterized","hour","trips","return","started","since","themphasis","thexperience","destination","feature","use","steam","locomotives","least","usually","much","slower","ordinary","passenger","trains","due","tracks","track","standards","also","journey","nothe","destination","dinner","trains","passengers","ride","also","train","crews","employees","also_provide","jobs","profitable","business","moreover","generate","substantial","benefits","local","economies","including","tourism","increasing","sales","nearby","businesses","example","spirit","washington","dinner","train","spirit","washington","seattle","provided","full_time","jobs","contributed","roughly","million","annually","local_economy","operations","late","october","also","michigan","star","clipper","dinner","train","dinner","train","operated","years","walled","lake","michigan","trips","heading","west","bloomfield","michigan","west","bloomfield","addition","providing","dinner","riding","scenic_route","dinner","trains","developed","additional","hosting","wedding","company","retreats","murder_mystery","events","dinner","trains","actually","serve","meals","aboard","train","rather","food","iserved","building","outdoors","train","reached","destination","passengers","return","trip","particularly","true","narrow_gauge","railways","would","impractical","prepare","serve","formal","meals","examples_include","gauge","billy","railway","near","melbourne","australiand","gauge","railroad","maui","hawaii","see","express","tourist","passenger","train","quebec","quebec","colonial","one","several","heritage","tram","serves","purpose","dinner","trains","externalinks","kansas","belle","dinner","train","category","trains","category_types","restaurants_category","dinner"],"clean_bigrams":[["dinner","train"],["relatively","new"],["new","type"],["service","whose"],["whose","main"],["main","purpose"],["allow","people"],["eat","dinner"],["relatively","short"],["round","trip"],["trip","train"],["train","ride"],["conventional","passenger"],["passenger","trains"],["trains","whose"],["whose","main"],["main","purpose"],["transport","passengers"],["also","might"],["might","serve"],["serve","dinner"],["long","distance"],["distance","routes"],["routes","image"],["township","dinner"],["thumb","px"],["px","righthe"],["righthe","old"],["michigan","dinner"],["dinner","trains"],["become","popular"],["recent","years"],["years","particularly"],["united","states"],["passenger","trains"],["less","common"],["different","experience"],["ordinary","restaurants"],["first","dinner"],["dinner","train"],["united","states"],["supper","chief"],["dinner","train"],["train","service"],["dinner","trains"],["trains","currently"],["currently","operating"],["operating","inorth"],["inorth","america"],["operate","daily"],["even","twice"],["twice","daily"],["cases","almost"],["dinner","trains"],["trains","run"],["used","branch"],["branch","lines"],["tourist","lines"],["use","older"],["older","passenger"],["passenger","cars"],["cars","almost"],["dinner","train"],["train","trips"],["hour","trips"],["started","since"],["since","themphasis"],["themphasis","thexperience"],["steam","locomotives"],["much","slower"],["ordinary","passenger"],["passenger","trains"],["tracks","track"],["track","standards"],["nothe","destination"],["destination","dinner"],["dinner","trains"],["train","crews"],["also","provide"],["provide","jobs"],["profitable","business"],["business","moreover"],["generate","substantial"],["substantial","benefits"],["local","economies"],["economies","including"],["increasing","sales"],["nearby","businesses"],["washington","dinner"],["dinner","train"],["train","spirit"],["seattle","provided"],["provided","full"],["full","time"],["time","jobs"],["contributed","roughly"],["roughly","million"],["million","annually"],["local","economy"],["late","october"],["michigan","star"],["star","clipper"],["clipper","dinner"],["dinner","train"],["dinner","train"],["walled","lake"],["lake","michigan"],["trips","heading"],["west","bloomfield"],["bloomfield","michigan"],["michigan","west"],["west","bloomfield"],["providing","dinner"],["scenic","route"],["dinner","trains"],["developed","additional"],["hosting","wedding"],["company","retreats"],["retreats","murder"],["murder","mystery"],["mystery","events"],["dinner","trains"],["actually","serve"],["serve","meals"],["meals","aboard"],["train","rather"],["food","iserved"],["return","trip"],["particularly","true"],["narrow","gauge"],["gauge","railways"],["serve","formal"],["formal","meals"],["meals","examples"],["examples","include"],["billy","railway"],["railway","near"],["near","melbourne"],["melbourne","australiand"],["maui","hawaii"],["hawaii","see"],["tourist","passenger"],["passenger","train"],["several","heritage"],["heritage","tram"],["dinner","trains"],["trains","externalinks"],["kansas","belle"],["belle","dinner"],["dinner","train"],["train","category"],["category","trains"],["trains","category"],["category","types"],["restaurants","category"],["category","dinner"]],"all_collocations":["dinner train","relatively new","new type","service whose","whose main","main purpose","allow people","eat dinner","relatively short","round trip","trip train","train ride","conventional passenger","passenger trains","trains whose","whose main","main purpose","transport passengers","also might","might serve","serve dinner","long distance","distance routes","routes image","township dinner","px righthe","righthe old","michigan dinner","dinner trains","become popular","recent years","years particularly","united states","passenger trains","less common","different experience","ordinary restaurants","first dinner","dinner train","united states","supper chief","dinner train","train service","dinner trains","trains currently","currently operating","operating inorth","inorth america","operate daily","even twice","twice daily","cases almost","dinner trains","trains run","used branch","branch lines","tourist lines","use older","older passenger","passenger cars","cars almost","dinner train","train trips","hour trips","started since","since themphasis","themphasis thexperience","steam locomotives","much slower","ordinary passenger","passenger trains","tracks track","track standards","nothe destination","destination dinner","dinner trains","train crews","also provide","provide jobs","profitable business","business moreover","generate substantial","substantial benefits","local economies","economies including","increasing sales","nearby businesses","washington dinner","dinner train","train spirit","seattle provided","provided full","full time","time jobs","contributed roughly","roughly million","million annually","local economy","late october","michigan star","star clipper","clipper dinner","dinner train","dinner train","walled lake","lake michigan","trips heading","west bloomfield","bloomfield michigan","michigan west","west bloomfield","providing dinner","scenic route","dinner trains","developed additional","hosting wedding","company retreats","retreats murder","murder mystery","mystery events","dinner trains","actually serve","serve meals","meals aboard","train rather","food iserved","return trip","particularly true","narrow gauge","gauge railways","serve formal","formal meals","meals examples","examples include","billy railway","railway near","near melbourne","melbourne australiand","maui hawaii","hawaii see","tourist passenger","passenger train","several heritage","heritage tram","dinner trains","trains externalinks","kansas belle","belle dinner","dinner train","train category","category trains","trains category","category types","restaurants category","category dinner"],"new_description":"dinner train relatively new type service whose main purpose allow people eat dinner relatively short round trip train ride contrasts conventional passenger trains whose main purpose transport passengers destination quickly possible also might serve dinner long_distance routes image township dinner thumb px righthe old train michigan dinner trains become_popular recent_years particularly united_states part result nostalgia passenger trains less_common us many_countries part provides different experience driving eating ordinary restaurants first dinner train united_states supper chief ran california dinner train service renewed withe train dinner trains currently operating inorth_america trains seasonally days week operate daily even twice daily weekends cases almost dinner trains run used branch lines tourist lines virtually use older passenger cars almost dinner train trips characterized hour trips return started since themphasis thexperience destination feature use steam locomotives least usually much slower ordinary passenger trains due tracks track standards also journey nothe destination dinner trains passengers ride also train crews employees also_provide jobs profitable business moreover generate substantial benefits local economies including tourism increasing sales nearby businesses example spirit washington dinner train spirit washington seattle provided full_time jobs contributed roughly million annually local_economy operations late october also michigan star clipper dinner train dinner train operated years walled lake michigan trips heading west bloomfield michigan west bloomfield addition providing dinner riding scenic_route dinner trains developed additional hosting wedding company retreats murder_mystery events dinner trains actually serve meals aboard train rather food iserved building outdoors train reached destination passengers return trip particularly true narrow_gauge railways would impractical prepare serve formal meals examples_include gauge billy railway near melbourne australiand gauge railroad maui hawaii see express tourist passenger train quebec quebec colonial one several heritage tram serves purpose dinner trains externalinks kansas belle dinner train category trains category_types restaurants_category dinner"},{"title":"Disaster tourism","description":"file disaster tourismerapijpg thumb disaster tourism at mount merapi after theruptions of mount merapi eruptions disaster tourism is the act of tourism traveling to a disaster areas a matter of curiosity greater new orleans areafter hurricane katrina disaster tourism took hold in the new orleans greater new orleans area in the aftermath of effect of hurricane katrina onew orleans hurricane katrina there are now tour guided bus tours to neighborhoods that were severely damaged and or totally destroyed by the flood ing some local residents have criticized these tours as business ethics unethical because the tour companies are profiting from the misery of their community communities and family families the united states army corps of engineers army corps of engineers has noted thatraffic from bus tour buses and other automobile tourist vehicles have interfered withe movement of trucks and engineering vehicle other cleanup equipment on single lane suburb residential roads furthermore during the first six months after the stormost of these neighborhoods lacked electric utility electricity telephone access traffic sign street signs or access to emergency medical services emergency medical or police assistance simply traveling to these neighborhoods was hazardousome residents of the lower ninth ward and st bernard parishes were less than welcoming tour buses in their neighborhoods and sometimes outright hostile communitiesuch as gentilly new orleans gentilly and lakeview new orleans lakeview along the th street canal have welcomed organized tour groups as a means to publicity publicize the scale of the destruction and attract more aid to the city much of the reconstruction of new orleans recovery effort in the new orleans relies on out of state volunteer s andonation s numerous non profit organizations including habitat for humanity international and catholicharities have converged on the city to gut and construction residential construction rebuild house homes there is also a movement by local residents to bring united states congressmen and other nationaleaders to the city and view the damage in person since recovery efforts have been hampered by the failure of many homeowners and businesses to receive claims from their insurance providers the anthropological roots of disaster tourism the term disaster tourism is used for leisure travels to zones whipped by natural disasters or traumatic events known as traumascapesather wagstaff j heritage that hurts tourists in the memoryscapes of september voleft coast pressome scholars argue thathese sites offers a message to visitors and tourists in order for them to interpretheir own lifestone p sharpley r consuming dark tourism a thanatological perspective annals of tourism research disaster tourism offers a pedagogical instrumento community to accelerate the time in post recovery processfaulkner b towards a framework for tourism disaster managementourismanagement stone p r dark tourism towards a new post disciplinary research agenda international journal of tourism anthropology rodanthi tzanelli lecturer at university of leeds called the attention to the needs to articulate trans disciplinary research to understand thana tourism or disaster tourismtzanelli r thanatourism and cinematic representations of risk screening thend of tourism routledge recently philosopher maximiliano korstanje coined the term thana capitalism to refer to a climate of social darwinism aimed at fostering the survival of the strongest in this climate of struggle only fewin and the rest loses it explains our obsessions for consumers news or images related to terrorism attacks trauma scapes disasters and so forth korstanje writes thathe society of risk hasethe pace to a new society thana capitalism where the main commodity is death not only we consume death everywhere in cultural entertainment industry but we reinforce our superiority by witnessing the othersuffering this allegory is based on the myths of noah s ark which is considered by korstanje as the first genocide in this mythical event godivided the world in two victims and witnesses this logic of supremacy of those who live over deads is reinforced by christ s crucifixionowadays a new segment of tourists travel to zones of mass death known as areas of dark or thana tourism since in secularized societies death is a sign of weakness consuming the other s death alludes to hopes for visitors to be in trace towards the hall of chosen peoples korstanje m e the rise of thana capitalism and tourism abingdon routledgekorstanje m george b death and culture is thanatourism symptomatic of thend of capitalism in virtual traumascape and exploring the roots of dark tourism korstanje m george b eds hershey igi global korstanje m cisneros mustelier l banalizing the alterity when suffering turns attractive in virtual traumascape and exploring the roots of dark tourism korstanje m george b eds hershey igi global eruption of eyjafjallaj kull eyjafjallaj kull in iceland began erupting on march volcano erupts under eyjafjallaj kull reykjav k grapevine march athis time about farmers and their families from the areas oflj tshl eyjafj ll and landeyjar werevacuated overnight but allowed to return to their farms and homes after civil protection department risk assessment on april eyjafjallaj kull erupted for the second time requiring people to bevacuated in the wake of the first eruption tour companies offered trips to see the volcanotom robbins the guardian iceland s erupting volcano retrieved however the ash cloud from the second eruption disrupted air traffic over great britain and most of northern and western europe making it difficulto travel to iceland even though iceland s airspace itself remained open throughout see also war tourism dark tourism category adventure travel category disaster managementourism category types of tourism","main_words":["file","disaster","thumb","disaster_tourism","mount","mount","disaster_tourism","act","disaster","areas","matter","curiosity","greater","new_orleans","hurricane","katrina","disaster_tourism","took","hold","new_orleans","greater","new_orleans","area","aftermath","effect","hurricane","katrina","onew","orleans","hurricane","katrina","bus","tours","neighborhoods","severely","damaged","totally","destroyed","flood","ing","local_residents","criticized","tours","business","ethics","tour","companies","community","communities","family","families","united_states","army","corps","engineers","army","corps","engineers","noted","bus","tour","buses","automobile","tourist","vehicles","withe","movement","trucks","engineering","vehicle","cleanup","equipment","single","lane","suburb","residential","roads","furthermore","first","six","months","neighborhoods","lacked","electric","utility","electricity","telephone","access","traffic","sign","street","signs","access","emergency","medical","services","emergency","medical","police","assistance","simply","traveling","neighborhoods","residents","lower","ninth","ward","st","bernard","less","welcoming","tour","buses","neighborhoods","sometimes","hostile","new_orleans","lakeview","new_orleans","lakeview","along","th_street","canal","welcomed","organized","tour","groups","means","publicity","scale","destruction","attract","aid","city","much","reconstruction","new_orleans","recovery","effort","new_orleans","relies","state","volunteer","numerous","non_profit","organizations","including","habitat","humanity","international","city","construction","residential","construction","rebuild","house","homes","also","movement","local_residents","bring","united_states","city","view","damage","person","since","recovery","efforts","hampered","failure","many","homeowners","businesses","receive","claims","insurance","providers","roots","disaster_tourism","term","disaster_tourism","used","leisure","travels","zones","whipped","natural","disasters","events","known","j","heritage","tourists","september","coast","scholars","argue","thathese","sites","offers","message","visitors","tourists","order","p","sharpley","r","consuming","dark_tourism","perspective","annals","tourism_research","disaster_tourism","offers","community","accelerate","time","post","recovery","b","towards","framework","tourism","disaster","stone","p","r","dark_tourism","towards","new","post","research","agenda","international_journal","tourism","anthropology","tzanelli","lecturer","university","leeds","called","attention","needs","trans","research","understand","thana","tourism","disaster","r","thanatourism","cinematic","representations","risk","screening","thend","tourism","routledge","recently","philosopher","maximiliano","korstanje","coined","term","thana_capitalism","refer","climate","social","darwinism","aimed","fostering","survival","climate","struggle","rest","loses","explains","consumers","news","images","related","terrorism","attacks","trauma","disasters","forth","korstanje","writes","thathe","society","risk","pace","new","society","thana_capitalism","main","commodity","death","consume","death","everywhere","cultural","entertainment_industry","reinforce","superiority","witnessing","allegory","based","myths","noah","ark","considered","korstanje","first","genocide","mythical","event","world","two","victims","logic","supremacy","live","reinforced","christ","new","segment","tourists","travel","zones","mass","death","known","areas","dark","thana","tourism","since","secularized","societies","death","sign","weakness","consuming","death","alludes","hopes","visitors","trace","towards","hall","chosen","peoples","korstanje","e","rise","thana_capitalism","tourism","abingdon","george_b","death","culture","thanatourism","thend","capitalism","virtual","traumascape","exploring","roots","dark_tourism","korstanje","george_b","eds","hershey_igi_global","korstanje","cisneros","mustelier","l","suffering","turns","attractive","virtual","traumascape","exploring","roots","dark_tourism","korstanje","george_b","eds","hershey_igi_global","eruption","eyjafjallaj","kull","eyjafjallaj","kull","iceland","began","march","volcano","eyjafjallaj","kull","k","march","athis","time","farmers","families","areas","overnight","allowed","return","farms","homes","civil","protection","department","risk","assessment","april","eyjafjallaj","kull","erupted","second","time","requiring","people","wake","first","eruption","tour","companies","offered","trips","see","robbins","guardian","iceland","volcano","retrieved","however","cloud","second","eruption","air","traffic","great_britain","northern","western_europe","making","difficulto","travel","iceland","even_though","iceland","airspace","remained","open","throughout","see_also","war_tourism","adventure_travel_category","disaster","managementourism","category_types","tourism"],"clean_bigrams":[["file","disaster"],["thumb","disaster"],["disaster","tourism"],["disaster","tourism"],["tourism","traveling"],["disaster","areas"],["curiosity","greater"],["greater","new"],["new","orleans"],["orleans","hurricane"],["hurricane","katrina"],["katrina","disaster"],["disaster","tourism"],["tourism","took"],["took","hold"],["new","orleans"],["orleans","greater"],["greater","new"],["new","orleans"],["orleans","area"],["hurricane","katrina"],["katrina","onew"],["onew","orleans"],["orleans","hurricane"],["hurricane","katrina"],["tour","guided"],["guided","bus"],["bus","tours"],["severely","damaged"],["totally","destroyed"],["flood","ing"],["local","residents"],["business","ethics"],["tour","companies"],["community","communities"],["family","families"],["united","states"],["states","army"],["army","corps"],["engineers","army"],["army","corps"],["bus","tour"],["tour","buses"],["automobile","tourist"],["tourist","vehicles"],["withe","movement"],["engineering","vehicle"],["cleanup","equipment"],["single","lane"],["lane","suburb"],["suburb","residential"],["residential","roads"],["roads","furthermore"],["first","six"],["six","months"],["neighborhoods","lacked"],["lacked","electric"],["electric","utility"],["utility","electricity"],["electricity","telephone"],["telephone","access"],["access","traffic"],["traffic","sign"],["sign","street"],["street","signs"],["emergency","medical"],["medical","services"],["services","emergency"],["emergency","medical"],["police","assistance"],["assistance","simply"],["simply","traveling"],["lower","ninth"],["ninth","ward"],["st","bernard"],["welcoming","tour"],["tour","buses"],["new","orleans"],["orleans","lakeview"],["lakeview","new"],["new","orleans"],["orleans","lakeview"],["lakeview","along"],["th","street"],["street","canal"],["welcomed","organized"],["organized","tour"],["tour","groups"],["city","much"],["new","orleans"],["orleans","recovery"],["recovery","effort"],["new","orleans"],["orleans","relies"],["state","volunteer"],["numerous","non"],["non","profit"],["profit","organizations"],["organizations","including"],["including","habitat"],["humanity","international"],["construction","residential"],["residential","construction"],["construction","rebuild"],["rebuild","house"],["house","homes"],["local","residents"],["bring","united"],["united","states"],["person","since"],["since","recovery"],["recovery","efforts"],["many","homeowners"],["receive","claims"],["insurance","providers"],["disaster","tourism"],["term","disaster"],["disaster","tourism"],["leisure","travels"],["zones","whipped"],["natural","disasters"],["events","known"],["j","heritage"],["scholars","argue"],["argue","thathese"],["thathese","sites"],["sites","offers"],["p","sharpley"],["sharpley","r"],["r","consuming"],["consuming","dark"],["dark","tourism"],["perspective","annals"],["tourism","research"],["research","disaster"],["disaster","tourism"],["tourism","offers"],["post","recovery"],["b","towards"],["tourism","disaster"],["stone","p"],["p","r"],["r","dark"],["dark","tourism"],["tourism","towards"],["new","post"],["research","agenda"],["agenda","international"],["international","journal"],["tourism","anthropology"],["tzanelli","lecturer"],["leeds","called"],["understand","thana"],["thana","tourism"],["tourism","disaster"],["r","thanatourism"],["cinematic","representations"],["risk","screening"],["screening","thend"],["tourism","routledge"],["routledge","recently"],["recently","philosopher"],["philosopher","maximiliano"],["maximiliano","korstanje"],["korstanje","coined"],["term","thana"],["thana","capitalism"],["social","darwinism"],["darwinism","aimed"],["rest","loses"],["consumers","news"],["images","related"],["terrorism","attacks"],["attacks","trauma"],["forth","korstanje"],["korstanje","writes"],["writes","thathe"],["thathe","society"],["new","society"],["society","thana"],["thana","capitalism"],["main","commodity"],["consume","death"],["death","everywhere"],["cultural","entertainment"],["entertainment","industry"],["first","genocide"],["mythical","event"],["two","victims"],["new","segment"],["tourists","travel"],["mass","death"],["death","known"],["thana","tourism"],["tourism","since"],["secularized","societies"],["societies","death"],["weakness","consuming"],["death","alludes"],["trace","towards"],["chosen","peoples"],["peoples","korstanje"],["thana","capitalism"],["tourism","abingdon"],["george","b"],["b","death"],["virtual","traumascape"],["dark","tourism"],["tourism","korstanje"],["george","b"],["b","eds"],["eds","hershey"],["hershey","igi"],["igi","global"],["global","korstanje"],["cisneros","mustelier"],["mustelier","l"],["suffering","turns"],["turns","attractive"],["virtual","traumascape"],["dark","tourism"],["tourism","korstanje"],["george","b"],["b","eds"],["eds","hershey"],["hershey","igi"],["igi","global"],["global","eruption"],["eyjafjallaj","kull"],["kull","eyjafjallaj"],["eyjafjallaj","kull"],["iceland","began"],["march","volcano"],["eyjafjallaj","kull"],["march","athis"],["athis","time"],["civil","protection"],["protection","department"],["department","risk"],["risk","assessment"],["april","eyjafjallaj"],["eyjafjallaj","kull"],["kull","erupted"],["second","time"],["time","requiring"],["requiring","people"],["first","eruption"],["eruption","tour"],["tour","companies"],["companies","offered"],["offered","trips"],["guardian","iceland"],["volcano","retrieved"],["retrieved","however"],["second","eruption"],["air","traffic"],["great","britain"],["western","europe"],["europe","making"],["difficulto","travel"],["iceland","even"],["even","though"],["though","iceland"],["remained","open"],["open","throughout"],["throughout","see"],["see","also"],["also","war"],["war","tourism"],["tourism","dark"],["dark","tourism"],["tourism","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","disaster"],["disaster","managementourism"],["managementourism","category"],["category","types"]],"all_collocations":["file disaster","thumb disaster","disaster tourism","disaster tourism","tourism traveling","disaster areas","curiosity greater","greater new","new orleans","orleans hurricane","hurricane katrina","katrina disaster","disaster tourism","tourism took","took hold","new orleans","orleans greater","greater new","new orleans","orleans area","hurricane katrina","katrina onew","onew orleans","orleans hurricane","hurricane katrina","tour guided","guided bus","bus tours","severely damaged","totally destroyed","flood ing","local residents","business ethics","tour companies","community communities","family families","united states","states army","army corps","engineers army","army corps","bus tour","tour buses","automobile tourist","tourist vehicles","withe movement","engineering vehicle","cleanup equipment","single lane","lane suburb","suburb residential","residential roads","roads furthermore","first six","six months","neighborhoods lacked","lacked electric","electric utility","utility electricity","electricity telephone","telephone access","access traffic","traffic sign","sign street","street signs","emergency medical","medical services","services emergency","emergency medical","police assistance","assistance simply","simply traveling","lower ninth","ninth ward","st bernard","welcoming tour","tour buses","new orleans","orleans lakeview","lakeview new","new orleans","orleans lakeview","lakeview along","th street","street canal","welcomed organized","organized tour","tour groups","city much","new orleans","orleans recovery","recovery effort","new orleans","orleans relies","state volunteer","numerous non","non profit","profit organizations","organizations including","including habitat","humanity international","construction residential","residential construction","construction rebuild","rebuild house","house homes","local residents","bring united","united states","person since","since recovery","recovery efforts","many homeowners","receive claims","insurance providers","disaster tourism","term disaster","disaster tourism","leisure travels","zones whipped","natural disasters","events known","j heritage","scholars argue","argue thathese","thathese sites","sites offers","p sharpley","sharpley r","r consuming","consuming dark","dark tourism","perspective annals","tourism research","research disaster","disaster tourism","tourism offers","post recovery","b towards","tourism disaster","stone p","p r","r dark","dark tourism","tourism towards","new post","research agenda","agenda international","international journal","tourism anthropology","tzanelli lecturer","leeds called","understand thana","thana tourism","tourism disaster","r thanatourism","cinematic representations","risk screening","screening thend","tourism routledge","routledge recently","recently philosopher","philosopher maximiliano","maximiliano korstanje","korstanje coined","term thana","thana capitalism","social darwinism","darwinism aimed","rest loses","consumers news","images related","terrorism attacks","attacks trauma","forth korstanje","korstanje writes","writes thathe","thathe society","new society","society thana","thana capitalism","main commodity","consume death","death everywhere","cultural entertainment","entertainment industry","first genocide","mythical event","two victims","new segment","tourists travel","mass death","death known","thana tourism","tourism since","secularized societies","societies death","weakness consuming","death alludes","trace towards","chosen peoples","peoples korstanje","thana capitalism","tourism abingdon","george b","b death","virtual traumascape","dark tourism","tourism korstanje","george b","b eds","eds hershey","hershey igi","igi global","global korstanje","cisneros mustelier","mustelier l","suffering turns","turns attractive","virtual traumascape","dark tourism","tourism korstanje","george b","b eds","eds hershey","hershey igi","igi global","global eruption","eyjafjallaj kull","kull eyjafjallaj","eyjafjallaj kull","iceland began","march volcano","eyjafjallaj kull","march athis","athis time","civil protection","protection department","department risk","risk assessment","april eyjafjallaj","eyjafjallaj kull","kull erupted","second time","time requiring","requiring people","first eruption","eruption tour","tour companies","companies offered","offered trips","guardian iceland","volcano retrieved","retrieved however","second eruption","air traffic","great britain","western europe","europe making","difficulto travel","iceland even","even though","though iceland","remained open","open throughout","throughout see","see also","also war","war tourism","tourism dark","dark tourism","tourism category","category adventure","adventure travel","travel category","category disaster","disaster managementourism","managementourism category","category types"],"new_description":"file disaster thumb disaster_tourism mount mount disaster_tourism act tourism_traveling disaster areas matter curiosity greater new_orleans hurricane katrina disaster_tourism took hold new_orleans greater new_orleans area aftermath effect hurricane katrina onew orleans hurricane katrina tour_guided bus tours neighborhoods severely damaged totally destroyed flood ing local_residents criticized tours business ethics tour companies community communities family families united_states army corps engineers army corps engineers noted bus tour buses automobile tourist vehicles withe movement trucks engineering vehicle cleanup equipment single lane suburb residential roads furthermore first six months neighborhoods lacked electric utility electricity telephone access traffic sign street signs access emergency medical services emergency medical police assistance simply traveling neighborhoods residents lower ninth ward st bernard less welcoming tour buses neighborhoods sometimes hostile new_orleans lakeview new_orleans lakeview along th_street canal welcomed organized tour groups means publicity scale destruction attract aid city much reconstruction new_orleans recovery effort new_orleans relies state volunteer numerous non_profit organizations including habitat humanity international city construction residential construction rebuild house homes also movement local_residents bring united_states city view damage person since recovery efforts hampered failure many homeowners businesses receive claims insurance providers roots disaster_tourism term disaster_tourism used leisure travels zones whipped natural disasters events known j heritage tourists september coast scholars argue thathese sites offers message visitors tourists order p sharpley r consuming dark_tourism perspective annals tourism_research disaster_tourism offers community accelerate time post recovery b towards framework tourism disaster stone p r dark_tourism towards new post research agenda international_journal tourism anthropology tzanelli lecturer university leeds called attention needs trans research understand thana tourism disaster r thanatourism cinematic representations risk screening thend tourism routledge recently philosopher maximiliano korstanje coined term thana_capitalism refer climate social darwinism aimed fostering survival climate struggle rest loses explains consumers news images related terrorism attacks trauma disasters forth korstanje writes thathe society risk pace new society thana_capitalism main commodity death consume death everywhere cultural entertainment_industry reinforce superiority witnessing allegory based myths noah ark considered korstanje first genocide mythical event world two victims logic supremacy live reinforced christ new segment tourists travel zones mass death known areas dark thana tourism since secularized societies death sign weakness consuming death alludes hopes visitors trace towards hall chosen peoples korstanje e rise thana_capitalism tourism abingdon george_b death culture thanatourism thend capitalism virtual traumascape exploring roots dark_tourism korstanje george_b eds hershey_igi_global korstanje cisneros mustelier l suffering turns attractive virtual traumascape exploring roots dark_tourism korstanje george_b eds hershey_igi_global eruption eyjafjallaj kull eyjafjallaj kull iceland began march volcano eyjafjallaj kull k march athis time farmers families areas overnight allowed return farms homes civil protection department risk assessment april eyjafjallaj kull erupted second time requiring people wake first eruption tour companies offered trips see robbins guardian iceland volcano retrieved however cloud second eruption air traffic great_britain northern western_europe making difficulto travel iceland even_though iceland airspace remained open throughout see_also war_tourism dark_tourism_category adventure_travel_category disaster managementourism category_types tourism"},{"title":"Disneyland with the Death Penalty","description":"file disneyland withe death penaltyjpg thumb nightscape of the article subject singapore disneyland withe death penalty is a word article about singapore written by william gibson his first major piece of non fiction it was first published as the article publishing cover story cover of wired issue in which disneyland withe death penalty originally appeared for wired magazine wired magazine september october issue the article follows gibson s observations of the architecture phenomenology philosophy phenomenology and culture of singapore and the clean bland conformist impression the city state conveys during histay its title and central metaphor singapore as disneyland withe death penalty is a reference to the authoritarian artifice the author perceives the city state to be singapore gibson details is lacking any sense of creativity or authenticity absent of any indication of its history or underground culture he finds the governmento be pervasive corporatist and technocracy technocratic and the judicial system rigid andraconian singaporeans are characterized as consumerists of insipid taste the article is accentuated by local news reports of criminal trials by which the author illustrates his observations and bracketed by contrasting descriptions of the southeast asia n airports he arrives and leaves by though gibson s first major piece of non fiction the article had an immediate and lasting impacthe singaporean government banned wired upon the publication of the issue and the phrase disneyland withe death penalty became a byword for bland authoritarianism thathe city state could not easily discard synopsis the title disneyland withe death penalty refers to the subject of the article the southeast asian city state of singapore whose strictly guarded sterility gibson describes withorror after opening the article withe disneyland metaphor gibson cites an observation attributed to laurie anderson that virtual reality would never look real until they learned how to put some dirt in it in relation to the immaculate state of the changi airtropolisingapore s international airport beyond the airport he notes thathe natural environment has been cultivated into all too perfect examples of itself such as withe abundance of golf course singaporean society is a relentlessly motion picture association of america film rating system g rated experience controlled by a government of singapore government akin to a megacorporation fixated on conformity and behavioural constraint and with a marked lack of humour and creativity file the neuromancerjpg thumb left william gibson finds it painful to try to connect withe victorian era victorian singapore of which few vestiges remained in an attempto uncover singapore s underlying social mechanisms the author searches fruitlessly for an urban underbelly rising at dawn for jetlaged walks on several mornings only to discover thathe city state s physical past has almost entirely vanished he gives an overview of the history of singapore from the founding of modern singapore by sir stamford raffles in to the japanese occupation of singapore japanese occupation and thestablishment of the republic in he concludes that modern singaporeffectively a one party state and capitalistechnocracy is a product first and foremost of the vision of three decade prime minister lee kuan yew as an aside he quotes a headline from the south china morning post detailing the trial of a cadre of economists a government official current deputy prime minister tharman shanmugaratnam tharmand a newspaper editor for divulging a state secret by revealing the singaporean economic growth rate file raffles place skyscrapersjpg thumb right skyscrapers in raffles place in the central business district gibson deplores the absence of an authentic metropolitan feeling something whiche blames for the telling lack of creativity he gives a psychogeographic account of the architecture of the city state noting thendless parade of young attractive and generically attired middle class through the host of shopping centers and comparing the city state to the convention district of atlanta georgia he finds the selection in music stores and bookshops unrelentingly bland musing whether this partially attributable to thefforts of the undesirable propagation unit upu one of several censorship in singapore state censorship agencies amidsthe near total absence of bohemianism and counterculture gibson finds no trace of dissidence an black market underground or slums in the place of a sex trade the author finds government sanctioned health centers in fact massage parlour s and mandatory dating organized and enforced by government agencies t here is remarkably little he writes of the city state that is nothe result of deliberate and no doubt carefully deliberated social policy the creative deficit of the city state is evidento the author also in the singaporeans obsession with consumerism as a pastime the homogeneity of the retailers and their fare and in what he characterizes as their other passion dining althoughe finds fault withe diversity of the food it is he remarksomething to write home about he returns then to theme of the staid insipidity of the city state observing the unsettling cleanliness of the physical environment and the self policing of the populace in detailing singaporean technological advancement and aspirations as an information economy gibson casts doubt on the resilience of their controlled and conservative nature in the face of impending mass exposure to digital culture the wilds of x rated cyberspace perhaps he speculatesingapore s destiny will be to become nothing more than a smug neo swiss enclave of order and prosperity amid a sea of unthinkable weirdness file kowloon walled cityjpg thumb left an aerial shot from of the squat enclave kowloon walled city which gibson contrasts favourably with singapore toward thend of thessay gibson briefly covers two applications of the death penalty by the singaporean justice system hexcerpts a report from the straits times about a malay man sentenced to death for attempting to smuggle a kilogram of cannabis drug cannabis into the city state and follows this with a description of the case of johannes van damme a dutch engineer found with significant quantities of heroin withe same consequence hexpresses reservations abouthe justice of capital punishment andescribes the singaporeans as the true bearers of zero tolerance after hearing the announcement of van damme sentencingibson decides to leave checks out in record time from the hotel and catches a cab to the airporthe trip is conspicuous for the absence of police along the road buthere is an abundance of them athe changi airtropolis where gibson photographs a discarded piece of crumpled paper incurring theire flying into hong kong he briefly glimpses the soon to be destroyed shantytown kowloon walled city athend of one of the runways athe chaotic kai tak airport and muses abouthe contrast withe staid and sanitized city state he has left behind thessay ends withe declaration i loosened my tie clearing singapore airspace impact and legacy file cover of wired issue september october jpg thumb cover of wired issue where the article debuted the singapore government responded to the publication of the article by censorship in singapore banning wired from the country the phrase disneyland withe death penalty became a famous and widely referencedescription for the nation adopted in particular by opponents of singapore s perceived authoritarianism authoritarianature the city state s authoritariand austereputation made it difficulto shake the description off creative review hailed it as famously damning while the new york times associateditor w apple jr defended the city state in a piece as hardly deserving of william gibson s woundingly dismissive tag line reviewing the work in a blog post gibson wrote disneyland withe death penalty wassigned as reading on the topic of singaporean progress for a national university of singapore writing critical thinking course the piece was included in a compilation of gibson s non fiction writing distrusthat particular flavor critical reception file rem koolhaasjpg thumb upright architect and urban theorist rem koolhaas who criticized the article as being patronizing towardsingaporeans the article provoked a strong critical reaction the boston globe characterized it as a biting piece on the technocratic state in singapore it was recommended by postmodern political geographer edward sojas a wonderful tour of the cyberspatial urbanities of the city state journalisteven poole called it a horrified report and argued that it showed thathe author despises the seamlesstrictured planes of corporate big business and is the champion of the interstitial in a review of gibson s novel zero history for the observer james purdon identifiedisneyland as one of the high points of gibson s career a witty perceptive piece of reportage hinting at a non fiction talent equal to the vision that had elevated gibson to digital age guru philosopher and technology writer peter ludlow interpreted the piece as an attack on the city and noted as ironic the facthathe real disneyland was in california state whose repressive penal code includes the death penalty urban theorist maarten delbeke noted that gibson cited the computerized control of the city state as responsible for itsanitized inauthenticharacter a claim delbeke called a conventionalmost old fashioned complaint againstechnocracy in article in forum on contemporary art society paul rae commented that w hile an ability to capture the zeitgeist is to be taken seriously in a context such as this one gibson s journalistic reportage is inevitably unrefined and cited the accusation of singapore based british academic john phillips academic john phillips that gibson fails to really think his critiques through in s m l xl urbanist and architectural theorist rem koolhaas took issue withe acerbic ironic tone of the article condemning it as a typical reaction by dead parents deploring the mess their children have made of their inheritance koolhaas argued that reactions like gibson s imply thathe positive legacy of modernity can only be intelligently used by western world westerner s and thattemptsuch asingapore s at embracing the newness of modernity without understanding its history would result in a fareaching andeplorableradication singaporean tang weng hong in turn wrote a critical response to both gibson and koolhaas what is authenticity singapore as potemkin metropolis a response to gibson and koolhaas by tang weng hong archive see also technocracy asian values commodity fetishism paternalism postmodernity simulacrand simulation urban planning in singaporeferences externalinks disneyland withe death penalty at wiredcom category opinion journalism category singaporean culture category singaporean society category travel writing category works by william gibson category wired magazine articles category documents","main_words":["file","disneyland","withe","death","thumb","article","subject","singapore","disneyland","withe","death_penalty","word","article","singapore","written","william","gibson","first","major","piece","non_fiction","first_published","article","publishing","cover","story","cover","wired","issue","disneyland","withe","death_penalty","originally","appeared","wired","magazine","wired","magazine","september","october","issue","article","follows","gibson","observations","architecture","philosophy","culture","singapore","clean","bland","impression","city_state","title","central","metaphor","singapore","disneyland","withe","death_penalty","reference","author","city_state","singapore","gibson","details","lacking","sense","creativity","authenticity","indication","history","underground","culture","finds","governmento","judicial","system","rigid","singaporeans","characterized","taste","article","local","news","reports","criminal","trials","author","illustrates","observations","contrasting","descriptions","southeast_asia","n","airports","arrives","leaves","though","gibson","first","major","piece","non_fiction","article","immediate","lasting","impacthe","singaporean","government","banned","wired","upon","publication","issue","phrase","disneyland","withe","death_penalty","became","bland","thathe","city_state","could","easily","synopsis","title","disneyland","withe","death_penalty","refers","subject","article","southeast_asian","city_state","singapore","whose","strictly","guarded","gibson","describes","opening","article","withe","disneyland","metaphor","gibson","cites","observation","attributed","laurie","anderson","virtual_reality","would","never","look","real","learned","put","dirt","relation","state","changi","international_airport","beyond","airport","notes","thathe","natural_environment","cultivated","perfect","examples","withe","abundance","golf","course","singaporean","society","motion","picture","association","america","film","rating","system","g","rated","experience","controlled","government","singapore","government","akin","behavioural","marked","lack","humour","creativity","file","thumb","left","william","gibson","finds","try","connect","withe","victorian_era","victorian","singapore","remained","attempto","singapore","underlying","social","mechanisms","author","searches","urban","rising","dawn","walks","several","mornings","discover","thathe","city_state","physical","past","almost","entirely","gives","overview","history","singapore","founding","modern","singapore","sir","raffles","japanese","occupation","singapore","japanese","occupation","thestablishment","republic","concludes","modern","one","party","state","product","first","foremost","vision","three","decade","prime_minister","lee","aside","quotes","south","china","morning","post","detailing","trial","economists","government","official","current","deputy","prime_minister","newspaper","editor","state","secret","revealing","singaporean","economic_growth","rate","file","raffles","place","thumb","right","raffles","place","central","business","district","gibson","absence","authentic","metropolitan","feeling","something","whiche","telling","lack","creativity","gives","account","architecture","city_state","noting","parade","young","attractive","middle_class","host","comparing","city_state","convention","district","atlanta","georgia","finds","selection","music","stores","bland","whether","partially","thefforts","undesirable","unit","one","several","censorship","singapore","state","censorship","agencies","near","total","absence","gibson","finds","trace","black","market","underground","slums","place","sex","trade","author","finds","government","sanctioned","health","centers","fact","massage","parlour","mandatory","dating","organized","enforced","government_agencies","remarkably","little","writes","city_state","nothe","result","deliberate","doubt","carefully","social","policy","creative","city_state","author","also","singaporeans","obsession","consumerism","retailers","fare","passion","dining","althoughe","finds","fault","withe","diversity","food","write","home","returns","theme","city_state","observing","cleanliness","physical","environment","self","policing","populace","detailing","singaporean","technological","advancement","information","economy","gibson","doubt","resilience","controlled","conservative","nature","face","mass","exposure","digital","culture","x","rated","cyberspace","perhaps","destiny","become","nothing","neo","swiss","order","prosperity","sea","file","kowloon","walled","thumb","left","aerial","shot","kowloon","walled","city","gibson","contrasts","singapore","toward","thend","gibson","briefly","covers","two","applications","death_penalty","singaporean","justice","system","report","straits","times","malay","man","sentenced","death","attempting","cannabis","drug","cannabis","city_state","follows","description","case","johannes","van","dutch","engineer","found","significant","quantities","heroin","withe","consequence","reservations","abouthe","justice","capital","punishment","singaporeans","true","zero","tolerance","hearing","announcement","van","decides","leave","checks","record","time","hotel","catches","cab","trip","absence","police","along","road","buthere","abundance","athe","changi","gibson","photographs","piece","paper","incurring","flying","hong_kong","briefly","soon","destroyed","kowloon","walled","city","athend","one","athe","kai","airport","abouthe","contrast","withe","city_state","left","behind","ends","withe","declaration","tie","clearing","singapore","airspace","impact","legacy","file","cover","wired","issue","september","october","jpg","thumb","cover","wired","issue","article","debuted","singapore","government","responded","publication","article","censorship","singapore","banning","wired","country","phrase","disneyland","withe","death_penalty","became","famous","widely","nation","adopted","particular","opponents","singapore","perceived","city_state","made","difficulto","shake","description","creative","review","famously","new_york","times","w","apple","defended","city_state","piece","hardly","william","gibson","tag","line","reviewing","work","blog","post","gibson","wrote","disneyland","withe","death_penalty","wassigned","reading","topic","singaporean","progress","national","university","singapore","writing","critical","thinking","course","piece","included","compilation","gibson","non_fiction","writing","particular","flavor","critical","reception","file","thumb","upright","architect","urban","theorist","koolhaas","criticized","article","article","provoked","strong","critical","reaction","boston_globe","characterized","biting","piece","state","singapore","recommended","political","geographer","edward","wonderful","tour","city_state","poole","called","report","argued","showed","thathe","author","planes","corporate","big","business","champion","review","gibson","novel","zero","history","observer","james","one","high","points","gibson","career","piece","non_fiction","talent","equal","vision","elevated","gibson","digital","age","guru","philosopher","technology","writer","peter","interpreted","piece","attack","city","noted","ironic","facthathe","real","disneyland","california","state","whose","penal","code","includes","death_penalty","urban","theorist","noted","gibson","cited","control","city_state","responsible","claim","called","old_fashioned","article","forum","contemporary","art","society","paul","commented","w","ability","capture","taken","seriously","context","one","gibson","journalistic","inevitably","cited","singapore","based","british","academic","john","phillips","academic","john","phillips","gibson","fails","really","think","critiques","l","architectural","theorist","koolhaas","took","issue","withe","ironic","tone","article","typical","reaction","dead","parents","mess","children","made","koolhaas","argued","reactions","like","gibson","imply","thathe","positive","legacy","modernity","used","western","world","modernity","without","understanding","history","would","result","singaporean","tang","hong","turn","wrote","critical","response","gibson","koolhaas","authenticity","singapore","metropolis","response","gibson","koolhaas","tang","hong","archive","see_also","asian","values","commodity","simulation","urban","planning","externalinks","disneyland","withe","death_penalty","category","opinion","journalism","category","singaporean","culture_category","singaporean","society","category_travel","william","gibson","category","wired","magazine","articles","category","documents"],"clean_bigrams":[["file","disneyland"],["disneyland","withe"],["withe","death"],["article","subject"],["subject","singapore"],["singapore","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["word","article"],["singapore","written"],["william","gibson"],["first","major"],["major","piece"],["non","fiction"],["first","published"],["article","publishing"],["publishing","cover"],["cover","story"],["story","cover"],["wired","issue"],["disneyland","withe"],["withe","death"],["death","penalty"],["penalty","originally"],["originally","appeared"],["wired","magazine"],["magazine","wired"],["wired","magazine"],["magazine","september"],["september","october"],["october","issue"],["article","follows"],["follows","gibson"],["clean","bland"],["city","state"],["central","metaphor"],["metaphor","singapore"],["singapore","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["city","state"],["singapore","gibson"],["gibson","details"],["underground","culture"],["judicial","system"],["system","rigid"],["local","news"],["news","reports"],["criminal","trials"],["author","illustrates"],["contrasting","descriptions"],["southeast","asia"],["asia","n"],["n","airports"],["though","gibson"],["first","major"],["major","piece"],["non","fiction"],["lasting","impacthe"],["impacthe","singaporean"],["singaporean","government"],["government","banned"],["banned","wired"],["wired","upon"],["phrase","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["penalty","became"],["thathe","city"],["city","state"],["state","could"],["title","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["penalty","refers"],["southeast","asian"],["asian","city"],["city","state"],["singapore","whose"],["whose","strictly"],["strictly","guarded"],["gibson","describes"],["article","withe"],["withe","disneyland"],["disneyland","metaphor"],["metaphor","gibson"],["gibson","cites"],["observation","attributed"],["laurie","anderson"],["virtual","reality"],["reality","would"],["would","never"],["never","look"],["look","real"],["international","airport"],["airport","beyond"],["notes","thathe"],["thathe","natural"],["natural","environment"],["perfect","examples"],["withe","abundance"],["golf","course"],["course","singaporean"],["singaporean","society"],["motion","picture"],["picture","association"],["america","film"],["film","rating"],["rating","system"],["system","g"],["g","rated"],["rated","experience"],["experience","controlled"],["singapore","government"],["government","akin"],["marked","lack"],["creativity","file"],["thumb","left"],["left","william"],["william","gibson"],["gibson","finds"],["connect","withe"],["withe","victorian"],["victorian","era"],["era","victorian"],["victorian","singapore"],["underlying","social"],["social","mechanisms"],["author","searches"],["several","mornings"],["discover","thathe"],["thathe","city"],["city","state"],["physical","past"],["almost","entirely"],["modern","singapore"],["japanese","occupation"],["singapore","japanese"],["japanese","occupation"],["one","party"],["party","state"],["product","first"],["three","decade"],["decade","prime"],["prime","minister"],["minister","lee"],["south","china"],["china","morning"],["morning","post"],["post","detailing"],["government","official"],["official","current"],["current","deputy"],["deputy","prime"],["prime","minister"],["newspaper","editor"],["state","secret"],["singaporean","economic"],["economic","growth"],["growth","rate"],["rate","file"],["file","raffles"],["raffles","place"],["thumb","right"],["raffles","place"],["central","business"],["business","district"],["district","gibson"],["authentic","metropolitan"],["metropolitan","feeling"],["feeling","something"],["something","whiche"],["telling","lack"],["city","state"],["state","noting"],["young","attractive"],["middle","class"],["shopping","centers"],["city","state"],["convention","district"],["atlanta","georgia"],["music","stores"],["several","censorship"],["singapore","state"],["state","censorship"],["censorship","agencies"],["near","total"],["total","absence"],["gibson","finds"],["black","market"],["market","underground"],["sex","trade"],["author","finds"],["finds","government"],["government","sanctioned"],["sanctioned","health"],["health","centers"],["fact","massage"],["massage","parlour"],["mandatory","dating"],["dating","organized"],["government","agencies"],["remarkably","little"],["city","state"],["nothe","result"],["doubt","carefully"],["social","policy"],["city","state"],["author","also"],["singaporeans","obsession"],["passion","dining"],["dining","althoughe"],["althoughe","finds"],["finds","fault"],["fault","withe"],["withe","diversity"],["write","home"],["city","state"],["state","observing"],["physical","environment"],["self","policing"],["detailing","singaporean"],["singaporean","technological"],["technological","advancement"],["information","economy"],["economy","gibson"],["conservative","nature"],["mass","exposure"],["digital","culture"],["x","rated"],["rated","cyberspace"],["cyberspace","perhaps"],["become","nothing"],["neo","swiss"],["file","kowloon"],["kowloon","walled"],["thumb","left"],["aerial","shot"],["kowloon","walled"],["walled","city"],["gibson","contrasts"],["singapore","toward"],["toward","thend"],["gibson","briefly"],["briefly","covers"],["covers","two"],["two","applications"],["death","penalty"],["singaporean","justice"],["justice","system"],["straits","times"],["malay","man"],["man","sentenced"],["cannabis","drug"],["drug","cannabis"],["city","state"],["johannes","van"],["dutch","engineer"],["engineer","found"],["significant","quantities"],["heroin","withe"],["reservations","abouthe"],["abouthe","justice"],["capital","punishment"],["zero","tolerance"],["leave","checks"],["record","time"],["police","along"],["road","buthere"],["athe","changi"],["gibson","photographs"],["paper","incurring"],["hong","kong"],["kowloon","walled"],["walled","city"],["city","athend"],["abouthe","contrast"],["contrast","withe"],["city","state"],["left","behind"],["ends","withe"],["withe","declaration"],["tie","clearing"],["clearing","singapore"],["singapore","airspace"],["airspace","impact"],["legacy","file"],["file","cover"],["wired","issue"],["issue","september"],["september","october"],["october","jpg"],["jpg","thumb"],["thumb","cover"],["wired","issue"],["article","debuted"],["singapore","government"],["government","responded"],["singapore","banning"],["banning","wired"],["phrase","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["penalty","became"],["nation","adopted"],["city","state"],["difficulto","shake"],["creative","review"],["new","york"],["york","times"],["w","apple"],["city","state"],["william","gibson"],["tag","line"],["line","reviewing"],["blog","post"],["post","gibson"],["gibson","wrote"],["wrote","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["penalty","wassigned"],["singaporean","progress"],["national","university"],["singapore","writing"],["writing","critical"],["critical","thinking"],["thinking","course"],["non","fiction"],["fiction","writing"],["particular","flavor"],["flavor","critical"],["critical","reception"],["reception","file"],["thumb","upright"],["upright","architect"],["urban","theorist"],["article","provoked"],["strong","critical"],["critical","reaction"],["boston","globe"],["globe","characterized"],["biting","piece"],["political","geographer"],["geographer","edward"],["wonderful","tour"],["city","state"],["poole","called"],["showed","thathe"],["thathe","author"],["corporate","big"],["big","business"],["novel","zero"],["zero","history"],["observer","james"],["high","points"],["non","fiction"],["fiction","talent"],["talent","equal"],["elevated","gibson"],["digital","age"],["age","guru"],["guru","philosopher"],["technology","writer"],["writer","peter"],["facthathe","real"],["real","disneyland"],["california","state"],["state","whose"],["penal","code"],["code","includes"],["death","penalty"],["penalty","urban"],["urban","theorist"],["gibson","cited"],["city","state"],["old","fashioned"],["contemporary","art"],["art","society"],["society","paul"],["taken","seriously"],["one","gibson"],["singapore","based"],["based","british"],["british","academic"],["academic","john"],["john","phillips"],["phillips","academic"],["academic","john"],["john","phillips"],["gibson","fails"],["really","think"],["architectural","theorist"],["koolhaas","took"],["took","issue"],["issue","withe"],["ironic","tone"],["typical","reaction"],["dead","parents"],["koolhaas","argued"],["reactions","like"],["like","gibson"],["imply","thathe"],["thathe","positive"],["positive","legacy"],["western","world"],["modernity","without"],["without","understanding"],["history","would"],["would","result"],["singaporean","tang"],["turn","wrote"],["critical","response"],["authenticity","singapore"],["hong","archive"],["archive","see"],["see","also"],["asian","values"],["values","commodity"],["simulation","urban"],["urban","planning"],["externalinks","disneyland"],["disneyland","withe"],["withe","death"],["death","penalty"],["category","opinion"],["opinion","journalism"],["journalism","category"],["category","singaporean"],["singaporean","culture"],["culture","category"],["category","singaporean"],["singaporean","society"],["society","category"],["category","travel"],["travel","writing"],["writing","category"],["category","works"],["william","gibson"],["gibson","category"],["category","wired"],["wired","magazine"],["magazine","articles"],["articles","category"],["category","documents"]],"all_collocations":["file disneyland","disneyland withe","withe death","article subject","subject singapore","singapore disneyland","disneyland withe","withe death","death penalty","word article","singapore written","william gibson","first major","major piece","non fiction","first published","article publishing","publishing cover","cover story","story cover","wired issue","disneyland withe","withe death","death penalty","penalty originally","originally appeared","wired magazine","magazine wired","wired magazine","magazine september","september october","october issue","article follows","follows gibson","clean bland","city state","central metaphor","metaphor singapore","singapore disneyland","disneyland withe","withe death","death penalty","city state","singapore gibson","gibson details","underground culture","judicial system","system rigid","local news","news reports","criminal trials","author illustrates","contrasting descriptions","southeast asia","asia n","n airports","though gibson","first major","major piece","non fiction","lasting impacthe","impacthe singaporean","singaporean government","government banned","banned wired","wired upon","phrase disneyland","disneyland withe","withe death","death penalty","penalty became","thathe city","city state","state could","title disneyland","disneyland withe","withe death","death penalty","penalty refers","southeast asian","asian city","city state","singapore whose","whose strictly","strictly guarded","gibson describes","article withe","withe disneyland","disneyland metaphor","metaphor gibson","gibson cites","observation attributed","laurie anderson","virtual reality","reality would","would never","never look","look real","international airport","airport beyond","notes thathe","thathe natural","natural environment","perfect examples","withe abundance","golf course","course singaporean","singaporean society","motion picture","picture association","america film","film rating","rating system","system g","g rated","rated experience","experience controlled","singapore government","government akin","marked lack","creativity file","left william","william gibson","gibson finds","connect withe","withe victorian","victorian era","era victorian","victorian singapore","underlying social","social mechanisms","author searches","several mornings","discover thathe","thathe city","city state","physical past","almost entirely","modern singapore","japanese occupation","singapore japanese","japanese occupation","one party","party state","product first","three decade","decade prime","prime minister","minister lee","south china","china morning","morning post","post detailing","government official","official current","current deputy","deputy prime","prime minister","newspaper editor","state secret","singaporean economic","economic growth","growth rate","rate file","file raffles","raffles place","raffles place","central business","business district","district gibson","authentic metropolitan","metropolitan feeling","feeling something","something whiche","telling lack","city state","state noting","young attractive","middle class","shopping centers","city state","convention district","atlanta georgia","music stores","several censorship","singapore state","state censorship","censorship agencies","near total","total absence","gibson finds","black market","market underground","sex trade","author finds","finds government","government sanctioned","sanctioned health","health centers","fact massage","massage parlour","mandatory dating","dating organized","government agencies","remarkably little","city state","nothe result","doubt carefully","social policy","city state","author also","singaporeans obsession","passion dining","dining althoughe","althoughe finds","finds fault","fault withe","withe diversity","write home","city state","state observing","physical environment","self policing","detailing singaporean","singaporean technological","technological advancement","information economy","economy gibson","conservative nature","mass exposure","digital culture","x rated","rated cyberspace","cyberspace perhaps","become nothing","neo swiss","file kowloon","kowloon walled","aerial shot","kowloon walled","walled city","gibson contrasts","singapore toward","toward thend","gibson briefly","briefly covers","covers two","two applications","death penalty","singaporean justice","justice system","straits times","malay man","man sentenced","cannabis drug","drug cannabis","city state","johannes van","dutch engineer","engineer found","significant quantities","heroin withe","reservations abouthe","abouthe justice","capital punishment","zero tolerance","leave checks","record time","police along","road buthere","athe changi","gibson photographs","paper incurring","hong kong","kowloon walled","walled city","city athend","abouthe contrast","contrast withe","city state","left behind","ends withe","withe declaration","tie clearing","clearing singapore","singapore airspace","airspace impact","legacy file","file cover","wired issue","issue september","september october","october jpg","thumb cover","wired issue","article debuted","singapore government","government responded","singapore banning","banning wired","phrase disneyland","disneyland withe","withe death","death penalty","penalty became","nation adopted","city state","difficulto shake","creative review","new york","york times","w apple","city state","william gibson","tag line","line reviewing","blog post","post gibson","gibson wrote","wrote disneyland","disneyland withe","withe death","death penalty","penalty wassigned","singaporean progress","national university","singapore writing","writing critical","critical thinking","thinking course","non fiction","fiction writing","particular flavor","flavor critical","critical reception","reception file","upright architect","urban theorist","article provoked","strong critical","critical reaction","boston globe","globe characterized","biting piece","political geographer","geographer edward","wonderful tour","city state","poole called","showed thathe","thathe author","corporate big","big business","novel zero","zero history","observer james","high points","non fiction","fiction talent","talent equal","elevated gibson","digital age","age guru","guru philosopher","technology writer","writer peter","facthathe real","real disneyland","california state","state whose","penal code","code includes","death penalty","penalty urban","urban theorist","gibson cited","city state","old fashioned","contemporary art","art society","society paul","taken seriously","one gibson","singapore based","based british","british academic","academic john","john phillips","phillips academic","academic john","john phillips","gibson fails","really think","architectural theorist","koolhaas took","took issue","issue withe","ironic tone","typical reaction","dead parents","koolhaas argued","reactions like","like gibson","imply thathe","thathe positive","positive legacy","western world","modernity without","without understanding","history would","would result","singaporean tang","turn wrote","critical response","authenticity singapore","hong archive","archive see","see also","asian values","values commodity","simulation urban","urban planning","externalinks disneyland","disneyland withe","withe death","death penalty","category opinion","opinion journalism","journalism category","category singaporean","singaporean culture","culture category","category singaporean","singaporean society","society category","category travel","travel writing","writing category","category works","william gibson","gibson category","category wired","wired magazine","magazine articles","articles category","category documents"],"new_description":"file disneyland withe death thumb article subject singapore disneyland withe death_penalty word article singapore written william gibson first major piece non_fiction first_published article publishing cover story cover wired issue disneyland withe death_penalty originally appeared wired magazine wired magazine september october issue article follows gibson observations architecture philosophy culture singapore clean bland impression city_state title central metaphor singapore disneyland withe death_penalty reference author city_state singapore gibson details lacking sense creativity authenticity indication history underground culture finds governmento judicial system rigid singaporeans characterized taste article local news reports criminal trials author illustrates observations contrasting descriptions southeast_asia n airports arrives leaves though gibson first major piece non_fiction article immediate lasting impacthe singaporean government banned wired upon publication issue phrase disneyland withe death_penalty became bland thathe city_state could easily synopsis title disneyland withe death_penalty refers subject article southeast_asian city_state singapore whose strictly guarded gibson describes opening article withe disneyland metaphor gibson cites observation attributed laurie anderson virtual_reality would never look real learned put dirt relation state changi international_airport beyond airport notes thathe natural_environment cultivated perfect examples withe abundance golf course singaporean society motion picture association america film rating system g rated experience controlled government singapore government akin behavioural marked lack humour creativity file thumb left william gibson finds try connect withe victorian_era victorian singapore remained attempto singapore underlying social mechanisms author searches urban rising dawn walks several mornings discover thathe city_state physical past almost entirely gives overview history singapore founding modern singapore sir raffles japanese occupation singapore japanese occupation thestablishment republic concludes modern one party state product first foremost vision three decade prime_minister lee aside quotes south china morning post detailing trial economists government official current deputy prime_minister newspaper editor state secret revealing singaporean economic_growth rate file raffles place thumb right raffles place central business district gibson absence authentic metropolitan feeling something whiche telling lack creativity gives account architecture city_state noting parade young attractive middle_class host shopping_centers comparing city_state convention district atlanta georgia finds selection music stores bland whether partially thefforts undesirable unit one several censorship singapore state censorship agencies near total absence gibson finds trace black market underground slums place sex trade author finds government sanctioned health centers fact massage parlour mandatory dating organized enforced government_agencies remarkably little writes city_state nothe result deliberate doubt carefully social policy creative city_state author also singaporeans obsession consumerism retailers fare passion dining althoughe finds fault withe diversity food write home returns theme city_state observing cleanliness physical environment self policing populace detailing singaporean technological advancement information economy gibson doubt resilience controlled conservative nature face mass exposure digital culture x rated cyberspace perhaps destiny become nothing neo swiss order prosperity sea file kowloon walled thumb left aerial shot kowloon walled city gibson contrasts singapore toward thend gibson briefly covers two applications death_penalty singaporean justice system report straits times malay man sentenced death attempting cannabis drug cannabis city_state follows description case johannes van dutch engineer found significant quantities heroin withe consequence reservations abouthe justice capital punishment singaporeans true zero tolerance hearing announcement van decides leave checks record time hotel catches cab trip absence police along road buthere abundance athe changi gibson photographs piece paper incurring flying hong_kong briefly soon destroyed kowloon walled city athend one athe kai airport abouthe contrast withe city_state left behind ends withe declaration tie clearing singapore airspace impact legacy file cover wired issue september october jpg thumb cover wired issue article debuted singapore government responded publication article censorship singapore banning wired country phrase disneyland withe death_penalty became famous widely nation adopted particular opponents singapore perceived city_state made difficulto shake description creative review famously new_york times w apple defended city_state piece hardly william gibson tag line reviewing work blog post gibson wrote disneyland withe death_penalty wassigned reading topic singaporean progress national university singapore writing critical thinking course piece included compilation gibson non_fiction writing particular flavor critical reception file thumb upright architect urban theorist koolhaas criticized article article provoked strong critical reaction boston_globe characterized biting piece state singapore recommended political geographer edward wonderful tour city_state poole called report argued showed thathe author planes corporate big business champion review gibson novel zero history observer james one high points gibson career piece non_fiction talent equal vision elevated gibson digital age guru philosopher technology writer peter interpreted piece attack city noted ironic facthathe real disneyland california state whose penal code includes death_penalty urban theorist noted gibson cited control city_state responsible claim called old_fashioned article forum contemporary art society paul commented w ability capture taken seriously context one gibson journalistic inevitably cited singapore based british academic john phillips academic john phillips gibson fails really think critiques l architectural theorist koolhaas took issue withe ironic tone article typical reaction dead parents mess children made koolhaas argued reactions like gibson imply thathe positive legacy modernity used western world modernity without understanding history would result singaporean tang hong turn wrote critical response gibson koolhaas authenticity singapore metropolis response gibson koolhaas tang hong archive see_also asian values commodity simulation urban planning externalinks disneyland withe death_penalty category opinion journalism category singaporean culture_category singaporean society category_travel writing_category_works william gibson category wired magazine articles category documents"},{"title":"Dollar Cravings","description":"file dollar cravingsjpg thumb right menu items displayed from this taco bell purchase lefto rightop to bottom triple layer nachoshredded chicken mini quesadilla cheesy bean rice burrito and spicy potato softaco dollar cravings or dollar cravings is the value menu of american fast food restaurantaco bell dollar cravings was launched august in reaction to the new mcdonald s and wendy s value united states dollar menus the current menu contains food items dollar cravings replaced taco bell s previous value menu why pay more a taco bell spokesperson said few of the food items from the why pay more menu will remain dollar cravings in march taco bell introduced a breakfast value menu history on december fast food culture site brand eating reported taco bell planned to replace their value menu why pay more with dollar cravings brand eating speculatedollar cravings was probably a response to rising food and labor costs the value menu was tested in select locations in southern california kansas city and sacramento costhe pricing of the dollar cravings food items was largely determined by the competition from other fast food restaurants like mcdonald s and wendy s magazine time magazine time pointed outhe increase in price from cent currency to a dollar television channel cnbc also noted the price increased from the previous value menu why pay more whichad a three tiered menu offering food items from or cents menu the menu was divided based on five food craving s beefy cheesy crunchy spicy and sweet food items on the dollar cravings menu include class wikitable width style background lightgray name width style background lightgray description width style background lightgray calorie s width style background lightgray price beefy fritos burrito a burrito with ground beef cilantro rice nachos nacho cheese nacho cheese sauce and fritos corn chips beefy mini quesadilla quesadilla with shredded beef grated cheese shredded cheese and chipotle sauce caramel applempanadas applempanada s covered in caramel sauce caramel sauce cheesy bean rice burrito a burrito with cilantro rice beans nacho cheese and jalape o sauce cheesy roll up a wrap sandwich wrap of three melted cheeses cinnabon delights two cinnamon roll s covered in cinnamon and sugar while filled with cream cheese icing food frosting cinnamon twists corn twists with cinnamon and sugar shredded chicken mini quesadilla quesadilla with shredded poultry cuts of poultry chicken shredded cheese and chipotle sauce spicy potato softaco a taco soft shell tacosoft shell taco with potato lettuce chipotle sauce and shredded cheddar cheese spicy tostada tostada tortilla tostada with beansalsauce red sauce chipotle sauce lettuce shredded cheddar cheese and tomato triple layer nachos fried and covered with beans red sauce and nacho cheese promotion augusthe new menu was advertised via the mobile application snapchat withe target demographic being millennials everlasting dollars on augustaco bell announced the new contest everlasting dollars in which participants in american cities could win a lifetime of taco bell food however the consumerist points outhe fine printhe av club proved critical of everlasting dollarstating in an unflinchingly honest appraisal taco bell caps a lifetime of eating its food at just years and in thatime you ll be awarded only in gift cards and this doled out at just per year while obviously the most humane solution giving contestants just over to spend on taco bell per week is hardly the lifetime of eating taco bell you might have imagined it is as though taco bell has promised you a delicious fulfilling prize only totally cheap out on what s inside reception commercial crowdsourcing crowdsourced content service seeking alpha stated thathe new menu could improve same store sales and once againcrease the overall value of owning a taco bell chain canadian internet newservice digital journal considered the new menu a strategy to attracthe youth who had cut down quick service restaurant visits in the past few years due to low disposable income amid the sluggishly recovering economy food adweek s david griner tried every food item on the menu on the subject of the cheesy roll up griner called ithe toast sandwich of taco bell cuisine s julia hays reviewed the menu favorably stating w e ll take as many triple layer nachos as we can carry newspaper investor s business daily describedollar cravings as cheese and carb heavy thrillist media group s lee breslouer had cannabis enthusiast jim try every item on the menu his ranking placed the items in the order of triple layer nachospicy tostada shredded chicken mini quesadilla cheese roll up spicy potato softaco cheesy beand rice burrito beefy mini quesadilla caramel applempanada cinnamon twists beefy fritos burrito and cinnabon delights wikipedia the wikipediarticle dollar cravings was featured in american blogawker s article of the coolest freakiest articles on wikipedias the author s most mundane contribution to wikipedia see also burger wars references externalinks category restaurant menus category taco bell category fast food","main_words":["file","dollar","thumb","right","menu_items","displayed","taco_bell","purchase","lefto","rightop","bottom","triple","layer","chicken","mini","quesadilla","cheesy","bean","rice","burrito","spicy","potato","dollar","cravings","dollar","cravings","value_menu","american","fast_food","bell","dollar","cravings","launched","august","reaction","new","mcdonald","wendy","value","united_states","dollar","menus","current","menu","contains","food_items","dollar","cravings","replaced","taco_bell","previous","value_menu","pay","taco_bell","spokesperson","said","food_items","pay","menu","remain","dollar","cravings","march","taco_bell","introduced","breakfast","value_menu","history","december","fast_food","culture","site","brand","eating","reported","taco_bell","planned","replace","value_menu","pay","dollar","cravings","brand","eating","cravings","probably","response","rising","food","labor","costs","value_menu","tested","select","locations","southern_california","kansas_city","sacramento","costhe","pricing","dollar","cravings","food_items","largely","determined","competition","fast_food_restaurants","like","mcdonald","wendy","magazine_time","magazine_time","pointed","outhe","increase","price","cent","currency","dollar","television","channel","also","noted","price","increased","previous","value_menu","pay","whichad","three","menu","offering","food_items","cents","menu","menu","divided","based","five","food","craving","beefy","cheesy","spicy","sweet","food_items","dollar","cravings","menu","include","class","wikitable","width_style","background","lightgray","name","width_style","background","lightgray","description","width_style","background","lightgray","calorie","width_style","background","lightgray","price","beefy","burrito","burrito","ground","beef","cilantro","rice","nachos","nacho","cheese","nacho","cheese","sauce","corn","chips","beefy","mini","quesadilla","quesadilla","shredded","beef","cheese","shredded","cheese","chipotle","sauce","caramel","covered","caramel","sauce","caramel","sauce","cheesy","bean","rice","burrito","burrito","cilantro","rice","beans","nacho","cheese","sauce","cheesy","roll","wrap","sandwich","wrap","three","cheeses","two","cinnamon","roll","covered","cinnamon","sugar","filled","cream","cheese","food","cinnamon","twists","corn","twists","cinnamon","sugar","shredded","chicken","mini","quesadilla","quesadilla","shredded","poultry","cuts","poultry","chicken","shredded","cheese","chipotle","sauce","spicy","potato","taco","soft","shell","shell","taco","potato","lettuce","chipotle","sauce","shredded","cheddar","cheese","spicy","tostada","tostada","tortilla","tostada","red","sauce","chipotle","sauce","lettuce","shredded","cheddar","cheese","tomato","triple","layer","nachos","fried","covered","beans","red","sauce","nacho","cheese","promotion","augusthe","new","menu","advertised","via","mobile_application","withe","target","demographic","dollars","bell","announced","new","contest","dollars","participants","american","cities","could","win","lifetime","taco_bell","food","however","points","outhe","fine","club","proved","critical","honest","taco_bell","caps","lifetime","eating","food","years","thatime","awarded","gift","cards","per_year","obviously","humane","solution","giving","contestants","spend","taco_bell","per","week","hardly","lifetime","eating","taco_bell","might","though","taco_bell","promised","delicious","prize","totally","cheap","inside","reception","commercial","content","service","seeking","alpha","stated_thathe","new","menu","could","improve","store","sales","overall","value","owning","taco_bell","chain","canadian","internet","digital","journal","considered","new","menu","strategy","youth","cut","quick","service_restaurant","visits","past_years","due","low","disposable","income","recovering","economy","food","david","tried","every","food","item","menu","subject","cheesy","roll","called","ithe","toast","sandwich","taco_bell","cuisine","julia","reviewed","menu","stating","w","e","take","many","triple","layer","nachos","carry","newspaper","investor","business","daily","cravings","cheese","heavy","thrillist","media_group","lee","cannabis","enthusiast","jim","try","every","item","menu","ranking","placed","items","order","triple","layer","tostada","shredded","chicken","mini","quesadilla","cheese","roll","spicy","potato","cheesy","rice","burrito","beefy","mini","quesadilla","caramel","cinnamon","twists","beefy","burrito","wikipedia","dollar","cravings","featured","american","article","articles","author","contribution","wikipedia","see_also","burger","wars","references_externalinks","category_restaurant_menus","category","taco_bell","category_fast_food"],"clean_bigrams":[["file","dollar"],["thumb","right"],["right","menu"],["menu","items"],["items","displayed"],["taco","bell"],["bell","purchase"],["purchase","lefto"],["lefto","rightop"],["bottom","triple"],["triple","layer"],["chicken","mini"],["mini","quesadilla"],["quesadilla","cheesy"],["cheesy","bean"],["bean","rice"],["rice","burrito"],["spicy","potato"],["dollar","cravings"],["dollar","cravings"],["value","menu"],["american","fast"],["fast","food"],["bell","dollar"],["dollar","cravings"],["launched","august"],["new","mcdonald"],["value","united"],["united","states"],["states","dollar"],["dollar","menus"],["current","menu"],["menu","contains"],["contains","food"],["food","items"],["items","dollar"],["dollar","cravings"],["cravings","replaced"],["replaced","taco"],["taco","bell"],["previous","value"],["value","menu"],["taco","bell"],["bell","spokesperson"],["spokesperson","said"],["food","items"],["remain","dollar"],["dollar","cravings"],["march","taco"],["taco","bell"],["bell","introduced"],["breakfast","value"],["value","menu"],["menu","history"],["december","fast"],["fast","food"],["food","culture"],["culture","site"],["site","brand"],["brand","eating"],["eating","reported"],["reported","taco"],["taco","bell"],["bell","planned"],["value","menu"],["dollar","cravings"],["cravings","brand"],["brand","eating"],["rising","food"],["labor","costs"],["value","menu"],["select","locations"],["southern","california"],["california","kansas"],["kansas","city"],["sacramento","costhe"],["costhe","pricing"],["dollar","cravings"],["cravings","food"],["food","items"],["largely","determined"],["fast","food"],["food","restaurants"],["restaurants","like"],["like","mcdonald"],["magazine","time"],["time","magazine"],["magazine","time"],["time","pointed"],["pointed","outhe"],["outhe","increase"],["cent","currency"],["dollar","television"],["television","channel"],["also","noted"],["price","increased"],["previous","value"],["value","menu"],["menu","offering"],["offering","food"],["food","items"],["cents","menu"],["divided","based"],["five","food"],["food","craving"],["beefy","cheesy"],["sweet","food"],["food","items"],["items","dollar"],["dollar","cravings"],["cravings","menu"],["menu","include"],["include","class"],["class","wikitable"],["wikitable","width"],["width","style"],["style","background"],["background","lightgray"],["lightgray","name"],["name","width"],["width","style"],["style","background"],["background","lightgray"],["lightgray","description"],["description","width"],["width","style"],["style","background"],["background","lightgray"],["lightgray","calorie"],["width","style"],["style","background"],["background","lightgray"],["lightgray","price"],["price","beefy"],["ground","beef"],["beef","cilantro"],["cilantro","rice"],["rice","nachos"],["nachos","nacho"],["nacho","cheese"],["cheese","nacho"],["nacho","cheese"],["cheese","sauce"],["corn","chips"],["chips","beefy"],["beefy","mini"],["mini","quesadilla"],["quesadilla","quesadilla"],["shredded","beef"],["cheese","shredded"],["shredded","cheese"],["chipotle","sauce"],["sauce","caramel"],["caramel","sauce"],["sauce","caramel"],["caramel","sauce"],["sauce","cheesy"],["cheesy","bean"],["bean","rice"],["rice","burrito"],["cilantro","rice"],["rice","beans"],["beans","nacho"],["nacho","cheese"],["cheese","sauce"],["sauce","cheesy"],["cheesy","roll"],["wrap","sandwich"],["sandwich","wrap"],["two","cinnamon"],["cinnamon","roll"],["cream","cheese"],["cinnamon","twists"],["twists","corn"],["corn","twists"],["sugar","shredded"],["shredded","chicken"],["chicken","mini"],["mini","quesadilla"],["quesadilla","quesadilla"],["shredded","poultry"],["poultry","cuts"],["poultry","chicken"],["chicken","shredded"],["shredded","cheese"],["chipotle","sauce"],["sauce","spicy"],["spicy","potato"],["taco","soft"],["soft","shell"],["shell","taco"],["potato","lettuce"],["lettuce","chipotle"],["chipotle","sauce"],["shredded","cheddar"],["cheddar","cheese"],["cheese","spicy"],["spicy","tostada"],["tostada","tostada"],["tostada","tortilla"],["tortilla","tostada"],["red","sauce"],["sauce","chipotle"],["chipotle","sauce"],["sauce","lettuce"],["lettuce","shredded"],["shredded","cheddar"],["cheddar","cheese"],["tomato","triple"],["triple","layer"],["layer","nachos"],["nachos","fried"],["beans","red"],["red","sauce"],["nacho","cheese"],["cheese","promotion"],["promotion","augusthe"],["augusthe","new"],["new","menu"],["advertised","via"],["mobile","application"],["withe","target"],["target","demographic"],["bell","announced"],["new","contest"],["american","cities"],["cities","could"],["could","win"],["taco","bell"],["bell","food"],["food","however"],["points","outhe"],["outhe","fine"],["club","proved"],["proved","critical"],["taco","bell"],["bell","caps"],["gift","cards"],["per","year"],["humane","solution"],["solution","giving"],["giving","contestants"],["taco","bell"],["bell","per"],["per","week"],["eating","taco"],["taco","bell"],["though","taco"],["taco","bell"],["totally","cheap"],["inside","reception"],["reception","commercial"],["content","service"],["service","seeking"],["seeking","alpha"],["alpha","stated"],["stated","thathe"],["thathe","new"],["new","menu"],["menu","could"],["could","improve"],["store","sales"],["overall","value"],["taco","bell"],["bell","chain"],["chain","canadian"],["canadian","internet"],["digital","journal"],["journal","considered"],["new","menu"],["quick","service"],["service","restaurant"],["restaurant","visits"],["years","due"],["low","disposable"],["disposable","income"],["recovering","economy"],["economy","food"],["tried","every"],["every","food"],["food","item"],["cheesy","roll"],["called","ithe"],["ithe","toast"],["toast","sandwich"],["taco","bell"],["bell","cuisine"],["stating","w"],["w","e"],["many","triple"],["triple","layer"],["layer","nachos"],["carry","newspaper"],["newspaper","investor"],["business","daily"],["heavy","thrillist"],["thrillist","media"],["media","group"],["cannabis","enthusiast"],["enthusiast","jim"],["jim","try"],["try","every"],["every","item"],["ranking","placed"],["triple","layer"],["tostada","shredded"],["shredded","chicken"],["chicken","mini"],["mini","quesadilla"],["quesadilla","cheese"],["cheese","roll"],["spicy","potato"],["rice","burrito"],["burrito","beefy"],["beefy","mini"],["mini","quesadilla"],["quesadilla","caramel"],["cinnamon","twists"],["twists","beefy"],["dollar","cravings"],["wikipedia","see"],["see","also"],["also","burger"],["burger","wars"],["wars","references"],["references","externalinks"],["externalinks","category"],["category","restaurant"],["restaurant","menus"],["menus","category"],["category","taco"],["taco","bell"],["bell","category"],["category","fast"],["fast","food"]],"all_collocations":["file dollar","right menu","menu items","items displayed","taco bell","bell purchase","purchase lefto","lefto rightop","bottom triple","triple layer","chicken mini","mini quesadilla","quesadilla cheesy","cheesy bean","bean rice","rice burrito","spicy potato","dollar cravings","dollar cravings","value menu","american fast","fast food","bell dollar","dollar cravings","launched august","new mcdonald","value united","united states","states dollar","dollar menus","current menu","menu contains","contains food","food items","items dollar","dollar cravings","cravings replaced","replaced taco","taco bell","previous value","value menu","taco bell","bell spokesperson","spokesperson said","food items","remain dollar","dollar cravings","march taco","taco bell","bell introduced","breakfast value","value menu","menu history","december fast","fast food","food culture","culture site","site brand","brand eating","eating reported","reported taco","taco bell","bell planned","value menu","dollar cravings","cravings brand","brand eating","rising food","labor costs","value menu","select locations","southern california","california kansas","kansas city","sacramento costhe","costhe pricing","dollar cravings","cravings food","food items","largely determined","fast food","food restaurants","restaurants like","like mcdonald","magazine time","time magazine","magazine time","time pointed","pointed outhe","outhe increase","cent currency","dollar television","television channel","also noted","price increased","previous value","value menu","menu offering","offering food","food items","cents menu","divided based","five food","food craving","beefy cheesy","sweet food","food items","items dollar","dollar cravings","cravings menu","menu include","include class","wikitable width","width style","background lightgray","lightgray name","name width","width style","background lightgray","lightgray description","description width","width style","background lightgray","lightgray calorie","width style","background lightgray","lightgray price","price beefy","ground beef","beef cilantro","cilantro rice","rice nachos","nachos nacho","nacho cheese","cheese nacho","nacho cheese","cheese sauce","corn chips","chips beefy","beefy mini","mini quesadilla","quesadilla quesadilla","shredded beef","cheese shredded","shredded cheese","chipotle sauce","sauce caramel","caramel sauce","sauce caramel","caramel sauce","sauce cheesy","cheesy bean","bean rice","rice burrito","cilantro rice","rice beans","beans nacho","nacho cheese","cheese sauce","sauce cheesy","cheesy roll","wrap sandwich","sandwich wrap","two cinnamon","cinnamon roll","cream cheese","cinnamon twists","twists corn","corn twists","sugar shredded","shredded chicken","chicken mini","mini quesadilla","quesadilla quesadilla","shredded poultry","poultry cuts","poultry chicken","chicken shredded","shredded cheese","chipotle sauce","sauce spicy","spicy potato","taco soft","soft shell","shell taco","potato lettuce","lettuce chipotle","chipotle sauce","shredded cheddar","cheddar cheese","cheese spicy","spicy tostada","tostada tostada","tostada tortilla","tortilla tostada","red sauce","sauce chipotle","chipotle sauce","sauce lettuce","lettuce shredded","shredded cheddar","cheddar cheese","tomato triple","triple layer","layer nachos","nachos fried","beans red","red sauce","nacho cheese","cheese promotion","promotion augusthe","augusthe new","new menu","advertised via","mobile application","withe target","target demographic","bell announced","new contest","american cities","cities could","could win","taco bell","bell food","food however","points outhe","outhe fine","club proved","proved critical","taco bell","bell caps","gift cards","per year","humane solution","solution giving","giving contestants","taco bell","bell per","per week","eating taco","taco bell","though taco","taco bell","totally cheap","inside reception","reception commercial","content service","service seeking","seeking alpha","alpha stated","stated thathe","thathe new","new menu","menu could","could improve","store sales","overall value","taco bell","bell chain","chain canadian","canadian internet","digital journal","journal considered","new menu","quick service","service restaurant","restaurant visits","years due","low disposable","disposable income","recovering economy","economy food","tried every","every food","food item","cheesy roll","called ithe","ithe toast","toast sandwich","taco bell","bell cuisine","stating w","w e","many triple","triple layer","layer nachos","carry newspaper","newspaper investor","business daily","heavy thrillist","thrillist media","media group","cannabis enthusiast","enthusiast jim","jim try","try every","every item","ranking placed","triple layer","tostada shredded","shredded chicken","chicken mini","mini quesadilla","quesadilla cheese","cheese roll","spicy potato","rice burrito","burrito beefy","beefy mini","mini quesadilla","quesadilla caramel","cinnamon twists","twists beefy","dollar cravings","wikipedia see","see also","also burger","burger wars","wars references","references externalinks","externalinks category","category restaurant","restaurant menus","menus category","category taco","taco bell","bell category","category fast","fast food"],"new_description":"file dollar thumb right menu_items displayed taco_bell purchase lefto rightop bottom triple layer chicken mini quesadilla cheesy bean rice burrito spicy potato dollar cravings dollar cravings value_menu american fast_food bell dollar cravings launched august reaction new mcdonald wendy value united_states dollar menus current menu contains food_items dollar cravings replaced taco_bell previous value_menu pay taco_bell spokesperson said food_items pay menu remain dollar cravings march taco_bell introduced breakfast value_menu history december fast_food culture site brand eating reported taco_bell planned replace value_menu pay dollar cravings brand eating cravings probably response rising food labor costs value_menu tested select locations southern_california kansas_city sacramento costhe pricing dollar cravings food_items largely determined competition fast_food_restaurants like mcdonald wendy magazine_time magazine_time pointed outhe increase price cent currency dollar television channel also noted price increased previous value_menu pay whichad three menu offering food_items cents menu menu divided based five food craving beefy cheesy spicy sweet food_items dollar cravings menu include class wikitable width_style background lightgray name width_style background lightgray description width_style background lightgray calorie width_style background lightgray price beefy burrito burrito ground beef cilantro rice nachos nacho cheese nacho cheese sauce corn chips beefy mini quesadilla quesadilla shredded beef cheese shredded cheese chipotle sauce caramel covered caramel sauce caramel sauce cheesy bean rice burrito burrito cilantro rice beans nacho cheese sauce cheesy roll wrap sandwich wrap three cheeses two cinnamon roll covered cinnamon sugar filled cream cheese food cinnamon twists corn twists cinnamon sugar shredded chicken mini quesadilla quesadilla shredded poultry cuts poultry chicken shredded cheese chipotle sauce spicy potato taco soft shell shell taco potato lettuce chipotle sauce shredded cheddar cheese spicy tostada tostada tortilla tostada red sauce chipotle sauce lettuce shredded cheddar cheese tomato triple layer nachos fried covered beans red sauce nacho cheese promotion augusthe new menu advertised via mobile_application withe target demographic dollars bell announced new contest dollars participants american cities could win lifetime taco_bell food however points outhe fine club proved critical honest taco_bell caps lifetime eating food years thatime awarded gift cards per_year obviously humane solution giving contestants spend taco_bell per week hardly lifetime eating taco_bell might though taco_bell promised delicious prize totally cheap inside reception commercial content service seeking alpha stated_thathe new menu could improve store sales overall value owning taco_bell chain canadian internet digital journal considered new menu strategy youth cut quick service_restaurant visits past_years due low disposable income recovering economy food david tried every food item menu subject cheesy roll called ithe toast sandwich taco_bell cuisine julia reviewed menu stating w e take many triple layer nachos carry newspaper investor business daily cravings cheese heavy thrillist media_group lee cannabis enthusiast jim try every item menu ranking placed items order triple layer tostada shredded chicken mini quesadilla cheese roll spicy potato cheesy rice burrito beefy mini quesadilla caramel cinnamon twists beefy burrito wikipedia dollar cravings featured american article articles author contribution wikipedia see_also burger wars references_externalinks category_restaurant_menus category taco_bell category_fast_food"},{"title":"Domestic tourism","description":"domestic tourism is tourism involving residents of one country traveling only within that country a domestic holiday is a holiday vacation spent in the same country this class may overlap with staycation in british english a vacation spent in the same region this different from inbound tourism withe resurgence of the package holiday research carried out by british travel agenthomas cook group thomas cook has identified that domestic holidays are not always a cost effective means of holidaying according to theiresearch thomas cook staycations vs cheap holidays abroad thomas cook a one week family holiday to devon for four can cost in the region of whereas an equivalent holiday to majorca in the uk the growth of domestic holidays has had a major impact on its domestic tourist industry haven holidays one of the uk s biggest holiday park owners in reported a rise in sales of staticaravans to sale and leaseback investors or buyers who want a more affordable second homeo connorebecca staycationers boost sales of staticaravans the times retrieved on see also day tripper staycation category types of tourism","main_words":["domestic","tourism","tourism_involving","residents","one","country","traveling","within","country","domestic","holiday","holiday","vacation","spent","country","class","may","overlap","staycation","british_english","vacation","spent","region","different","inbound","tourism","withe","resurgence","package_holiday","research","carried","british_travel","cook","group","thomas_cook","identified","domestic","holidays","always","cost","effective","means","according","thomas_cook","staycations","cheap","holidays","abroad","thomas_cook","one_week","family","holiday","devon","four","cost","region","whereas","equivalent","holiday","uk","growth","domestic","holidays","major","impact","domestic","tourist_industry","holidays","one","uk","biggest","holiday_park","owners","reported","rise","sales","sale","investors","buyers","want","affordable","second","staycationers","boost","sales","times","retrieved","see_also","day_tripper","staycation","category_types","tourism"],"clean_bigrams":[["domestic","tourism"],["tourism","involving"],["involving","residents"],["one","country"],["country","traveling"],["domestic","holiday"],["holiday","vacation"],["vacation","spent"],["class","may"],["may","overlap"],["british","english"],["vacation","spent"],["inbound","tourism"],["tourism","withe"],["withe","resurgence"],["package","holiday"],["holiday","research"],["research","carried"],["british","travel"],["cook","group"],["group","thomas"],["thomas","cook"],["domestic","holidays"],["cost","effective"],["effective","means"],["thomas","cook"],["cook","staycations"],["cheap","holidays"],["holidays","abroad"],["abroad","thomas"],["thomas","cook"],["one","week"],["week","family"],["family","holiday"],["equivalent","holiday"],["domestic","holidays"],["major","impact"],["domestic","tourist"],["tourist","industry"],["holidays","one"],["biggest","holiday"],["holiday","park"],["park","owners"],["affordable","second"],["staycationers","boost"],["boost","sales"],["times","retrieved"],["see","also"],["also","day"],["day","tripper"],["tripper","staycation"],["staycation","category"],["category","types"]],"all_collocations":["domestic tourism","tourism involving","involving residents","one country","country traveling","domestic holiday","holiday vacation","vacation spent","class may","may overlap","british english","vacation spent","inbound tourism","tourism withe","withe resurgence","package holiday","holiday research","research carried","british travel","cook group","group thomas","thomas cook","domestic holidays","cost effective","effective means","thomas cook","cook staycations","cheap holidays","holidays abroad","abroad thomas","thomas cook","one week","week family","family holiday","equivalent holiday","domestic holidays","major impact","domestic tourist","tourist industry","holidays one","biggest holiday","holiday park","park owners","affordable second","staycationers boost","boost sales","times retrieved","see also","also day","day tripper","tripper staycation","staycation category","category types"],"new_description":"domestic tourism tourism_involving residents one country traveling within country domestic holiday holiday vacation spent country class may overlap staycation british_english vacation spent region different inbound tourism withe resurgence package_holiday research carried british_travel cook group thomas_cook identified domestic holidays always cost effective means according thomas_cook staycations cheap holidays abroad thomas_cook one_week family holiday devon four cost region whereas equivalent holiday uk growth domestic holidays major impact domestic tourist_industry holidays one uk biggest holiday_park owners reported rise sales sale investors buyers want affordable second staycationers boost sales times retrieved see_also day_tripper staycation category_types tourism"},{"title":"Don Chow Tacos","description":"file donchowtacoslogojpg thumb don chow tacos logo don chow tacos is a chinese mexican fusion food truck based in los angeles california veteran in the food truck industry don chowas founded on april by dominic lau and lawrence lie their motto where chino meets latino represents the pair s chinese heritage represented by the truck s logo a depiction of the traditional chinese guardian lions chinese guardian lion and the hispanic influences that had been constant in their lives as they grew up in la don chow tacos ceased operations on february don chow has appeared on the food network s diners drive ins andives as well nbc and ktla don chow is also seto appear on the cooking channel s chinese food madeasy for offering some of the best late night street food in los angeles history file donchowtacosfoodtrucksidejpg thumb don chow tacos food truck the idea for founding the truck was conceived when owners lau and lie identified a foodie niche in the late night bar goer crowd when they decided to foundon chow tacos the food truck industry was in its infancy the name they chose to representheir fusion tacos don chowas derived from the honorific spanish title don honorific don in combination withe popular chinese surname chowhich also became a play on words for being synonymous with foodon chow began as a two man operation with lau and lie cooking and serving bar crowds on thursday and friday nights as well as anyonelse who encountered the truck on weekends they appeared regularly at zanzibar in santa monicand townhouse in venice los angeles venice both keptheir day jobs working afteregular business hours to get don chow up and running when the truck transitioned to a full week schedule in octobernie gallegos was hired to manage a cook to take over for lau and lie with gallegos guidance don chowas able to establish regular operationsales took off after guy fieri sampledon chow s fusion fare on diners drive ins andives on junearlier that year don chow had been recognized onbc s food truck week on the truck s first birthday april andominic lau was interviewed by kurt knutsson cyberguy for ktla in may as its popularity continued to grow don chowas featured on a segment for national taco day on ktla on october don chow tacos and owner lau were featured on the cooking channel cooking channel show easy chinese hosted by ching he huang ching he huang in june thepisode focused on late night street food lau prepared one of don chow signature dishes the chinese bbq pork taco while huang prepared a spicy oyster omeletaco in july don chow tacos owner dominic had the opportunity to participate on the lifetime tv network lifetime network s reality competition show supermarket superstar lau won his episode category global cuisine withe kung pao chicken chimale and went on to be a finalist in the show s final episode cuisine file donchowtacosultimatelatacojpg thumb don chow tacos taco the don chow truck serves a variety of traditional mexican food with chinese flavors drawn from lau and lie s family and friends recipes items on the menu include tacos burritos tortas chimales and noodle dishesome of their most popular dishes are their kung pao chicken tacos chinese bbq pork burritos and chimales traditional tamalestuffed witheir own chinese style meats other signature dishes are their carne asada chow fun and ultimate la tacos carne asada tacos topped with bacon which were inspired by the bacon wrapped hot dogs that pervade tailgate party tailgating parties during the football season at university of southern california usc both lau and lie s almater all food is prepared and cooked torder by the staff on the truck excepting their signature dishes the menu remains flexible and rotates depending on its location additionally the truck offerseveral secret off menu items events the mobility of the food truck has enabledon chow to cater to a variety of californians and their lifestyles the truck makes regular appearances at eventsuch as the los angeles outdoor cinema food festhe la street food fest and farmers market s balancing fun and profitability don chow appears at a variety of catered events in addition to being on the streets past catered events have included the sets of the food network s giadat home and the film no strings attached film no strings attachedon chow gives back to the community participating in fundraisers and charity events for local schools and other causes the truck has collaborated multiple times with california state university los angeles cal state la to benefitheir urban learning program and participated in charity events for the typhoon ketsana typhoondoy in the philippines and the haiti earthquake don chow also partnered with ktla s news anchor wendy burch and the good news foundation to rebuild the gilbert lindsay park in los angeles providing free lunches for all volunteers on may don chow is regularly commissioned to appear at special events on april don chow tacos catered lacoste l ve at coachella valley music and arts festival coachella which included celebrity guests including katy perry kirsten dunst elijah wood and ke ha don chow received especially positive reviews from indie rock band the strokes don chow made an appearance at california state university northridge cal state northridge s big show on october where performers included far east movement and lupe fiasco as well as the following year on october when the talent included lmfao group lmfao and kevin rudolf in september don chow participated in the los angeles times celebration ofood and wine technology had been vital to the growth don chow experienced soon after its founding and continues to attract a technologically savvy audience to the truck the locations of don chow are updatedaily on twitter as well as facebook see also kogi korean bbq list ofood trucks externalinks donchowtacoscom don chow tacos facebook don chow tacos twitter category mexican cuisine category chinese cuisine category fusion cuisine category restaurants in los angeles category restaurants established in category establishments in california category food trucks","main_words":["file","thumb","chow_tacos","logo","chow_tacos","chinese","mexican","fusion","food_truck","based","los_angeles","california","veteran","food_truck","industry","chowas","founded","april","dominic","lau","lawrence","lie","motto","meets","latino","represents","pair","chinese","heritage","represented","truck","logo","depiction","traditional","chinese","guardian","lions","chinese","guardian","lion","hispanic","influences","constant","lives","grew","la","chow_tacos","ceased","operations","february","chow","appeared","food_network","diners","drive_ins","andives","well","nbc","ktla","chow","also","seto","appear","cooking","channel","chinese","food","madeasy","offering","best","late_night","street_food","los_angeles","history_file","thumb","chow_tacos","food_truck","idea","founding","truck","conceived","owners","lau","lie","identified","niche","late_night","bar","crowd","decided","chow_tacos","food_truck","industry","name","chose","fusion","tacos","chowas","derived","honorific","spanish","title","honorific","combination","withe","popular","chinese","surname","also_became","play","words","synonymous","chow","began","two","man","operation","lau","lie","cooking","serving","bar","crowds","thursday","friday","nights","well","encountered","truck","weekends","appeared","regularly","zanzibar","santa","townhouse","venice","los_angeles","venice","day","jobs","working","business","hours","get","chow","running","truck","full","week","schedule","hired","manage","cook","take","lau","lie","guidance","chowas","able","establish","regular","took","guy","chow","fusion","fare","diners","drive_ins","andives","year","chow","recognized","food_truck","week","truck","first","birthday","april","lau","interviewed","kurt","ktla","may","popularity","continued","grow","chowas","featured","segment","national","taco","day","ktla","october","chow_tacos","owner","lau","featured","cooking","channel","cooking","channel","show","easy","chinese","hosted","june","thepisode","focused","late_night","street_food","lau","prepared","one","chow","signature_dishes","chinese","bbq","pork","taco","prepared","spicy","oyster","july","chow_tacos","owner","dominic","opportunity","participate","lifetime","network","lifetime","network","reality","competition","show","supermarket","lau","episode","category","global","cuisine","withe","chicken","went","finalist","show","final","episode","cuisine","file","thumb","chow_tacos","taco","chow","truck","serves","variety","traditional","mexican","food","chinese","flavors","drawn","lau","lie","family","friends","recipes","items","menu","include","tacos","noodle","popular","dishes","chicken","tacos","chinese","bbq","pork","traditional","witheir","chinese","style","meats","signature_dishes","carne","asada","chow","fun","ultimate","la","tacos","carne","asada","tacos","topped","bacon","inspired","bacon","wrapped","hot_dogs","party","parties","football","season","university","southern_california","lau","lie","almater","food","prepared","cooked","torder","staff","truck","signature_dishes","menu","remains","flexible","depending","location","additionally","truck","secret","menu_items","events","mobility","food_truck","chow","cater","variety","lifestyles","truck","makes","regular","appearances","eventsuch","los_angeles","outdoor","cinema","food","la","street_food","fest","farmers","market","balancing","fun","profitability","chow","appears","variety","catered","events","addition","streets","past","catered","events","included","sets","food_network","home","film","attached","film","chow","gives","back","community","participating","charity","events","local","schools","causes","truck","collaborated","multiple","times","california","state_university","los_angeles","cal","state","la","urban","learning","program","participated","charity","events","typhoon","philippines","haiti","earthquake","chow","also","partnered","ktla","news","anchor","wendy","good","news","foundation","rebuild","gilbert","lindsay","park","los_angeles","providing","free_lunches","volunteers","may","chow","regularly","commissioned","appear","special_events","april","chow_tacos","catered","l","valley","music","arts","festival","included","celebrity","guests","including","katy","perry","wood","chow","received","especially","positive","reviews","indie","rock","band","chow","made","appearance","california","state_university","cal","state","big","show","october","performers","included","far","east","movement","well","following_year","october","talent","included","group","kevin","september","chow","participated","los_angeles","times","celebration","ofood","wine","technology","vital","growth","chow","experienced","soon","founding","continues","attract","savvy","audience","truck","locations","chow","twitter","well","facebook","see_also","kogi","korean","bbq","list_ofood_trucks","externalinks","chow_tacos","facebook","chow_tacos","twitter","category","mexican","cuisine_category","fusion","cuisine_category_restaurants","los_angeles","category_restaurants","established","category_establishments","california_category","food_trucks"],"clean_bigrams":[["chow","tacos"],["tacos","logo"],["chow","tacos"],["tacos","chinese"],["chinese","mexican"],["mexican","fusion"],["fusion","food"],["food","truck"],["truck","based"],["los","angeles"],["angeles","california"],["california","veteran"],["food","truck"],["truck","industry"],["chowas","founded"],["dominic","lau"],["lawrence","lie"],["meets","latino"],["latino","represents"],["chinese","heritage"],["heritage","represented"],["traditional","chinese"],["chinese","guardian"],["guardian","lions"],["lions","chinese"],["chinese","guardian"],["guardian","lion"],["hispanic","influences"],["chow","tacos"],["tacos","ceased"],["ceased","operations"],["food","network"],["diners","drive"],["drive","ins"],["ins","andives"],["well","nbc"],["chow","also"],["also","seto"],["seto","appear"],["cooking","channel"],["chinese","food"],["food","madeasy"],["best","late"],["late","night"],["night","street"],["street","food"],["los","angeles"],["angeles","history"],["history","file"],["chow","tacos"],["tacos","food"],["food","truck"],["owners","lau"],["lie","identified"],["late","night"],["night","bar"],["chow","tacos"],["tacos","food"],["food","truck"],["truck","industry"],["fusion","tacos"],["chowas","derived"],["honorific","spanish"],["spanish","title"],["combination","withe"],["withe","popular"],["popular","chinese"],["chinese","surname"],["also","became"],["chow","began"],["two","man"],["man","operation"],["lie","cooking"],["serving","bar"],["bar","crowds"],["friday","nights"],["appeared","regularly"],["venice","los"],["los","angeles"],["angeles","venice"],["day","jobs"],["jobs","working"],["business","hours"],["full","week"],["week","schedule"],["chowas","able"],["establish","regular"],["fusion","fare"],["diners","drive"],["drive","ins"],["ins","andives"],["food","truck"],["truck","week"],["first","birthday"],["birthday","april"],["popularity","continued"],["chowas","featured"],["national","taco"],["taco","day"],["chow","tacos"],["tacos","owner"],["owner","lau"],["cooking","channel"],["channel","cooking"],["cooking","channel"],["channel","show"],["show","easy"],["easy","chinese"],["chinese","hosted"],["june","thepisode"],["thepisode","focused"],["late","night"],["night","street"],["street","food"],["food","lau"],["lau","prepared"],["prepared","one"],["chow","signature"],["signature","dishes"],["chinese","bbq"],["bbq","pork"],["pork","taco"],["spicy","oyster"],["chow","tacos"],["tacos","owner"],["owner","dominic"],["lifetime","tv"],["tv","network"],["network","lifetime"],["lifetime","network"],["reality","competition"],["competition","show"],["show","supermarket"],["episode","category"],["category","global"],["global","cuisine"],["cuisine","withe"],["final","episode"],["episode","cuisine"],["cuisine","file"],["chow","tacos"],["tacos","taco"],["chow","truck"],["truck","serves"],["traditional","mexican"],["mexican","food"],["chinese","flavors"],["flavors","drawn"],["friends","recipes"],["recipes","items"],["menu","include"],["include","tacos"],["popular","dishes"],["chicken","tacos"],["tacos","chinese"],["chinese","bbq"],["bbq","pork"],["chinese","style"],["style","meats"],["signature","dishes"],["carne","asada"],["asada","chow"],["chow","fun"],["ultimate","la"],["la","tacos"],["tacos","carne"],["carne","asada"],["asada","tacos"],["tacos","topped"],["bacon","wrapped"],["wrapped","hot"],["hot","dogs"],["football","season"],["southern","california"],["cooked","torder"],["signature","dishes"],["menu","remains"],["remains","flexible"],["location","additionally"],["menu","items"],["items","events"],["food","truck"],["truck","makes"],["makes","regular"],["regular","appearances"],["los","angeles"],["angeles","outdoor"],["outdoor","cinema"],["cinema","food"],["la","street"],["street","food"],["food","fest"],["farmers","market"],["balancing","fun"],["chow","appears"],["catered","events"],["streets","past"],["past","catered"],["catered","events"],["food","network"],["attached","film"],["chow","gives"],["gives","back"],["community","participating"],["charity","events"],["local","schools"],["collaborated","multiple"],["multiple","times"],["california","state"],["state","university"],["university","los"],["los","angeles"],["angeles","cal"],["cal","state"],["state","la"],["urban","learning"],["learning","program"],["charity","events"],["haiti","earthquake"],["chow","also"],["also","partnered"],["news","anchor"],["anchor","wendy"],["good","news"],["news","foundation"],["gilbert","lindsay"],["lindsay","park"],["los","angeles"],["angeles","providing"],["providing","free"],["free","lunches"],["regularly","commissioned"],["special","events"],["chow","tacos"],["tacos","catered"],["valley","music"],["arts","festival"],["included","celebrity"],["celebrity","guests"],["guests","including"],["including","katy"],["katy","perry"],["chow","received"],["received","especially"],["especially","positive"],["positive","reviews"],["indie","rock"],["rock","band"],["chow","made"],["california","state"],["state","university"],["cal","state"],["big","show"],["performers","included"],["included","far"],["far","east"],["east","movement"],["following","year"],["talent","included"],["chow","participated"],["los","angeles"],["angeles","times"],["times","celebration"],["celebration","ofood"],["wine","technology"],["chow","experienced"],["experienced","soon"],["savvy","audience"],["facebook","see"],["see","also"],["also","kogi"],["kogi","korean"],["korean","bbq"],["bbq","list"],["list","ofood"],["ofood","trucks"],["trucks","externalinks"],["chow","tacos"],["tacos","facebook"],["chow","tacos"],["tacos","twitter"],["twitter","category"],["category","mexican"],["mexican","cuisine"],["cuisine","category"],["category","chinese"],["chinese","cuisine"],["cuisine","category"],["category","fusion"],["fusion","cuisine"],["cuisine","category"],["category","restaurants"],["los","angeles"],["angeles","category"],["category","restaurants"],["restaurants","established"],["category","establishments"],["california","category"],["category","food"],["food","trucks"]],"all_collocations":["chow tacos","tacos logo","chow tacos","tacos chinese","chinese mexican","mexican fusion","fusion food","food truck","truck based","los angeles","angeles california","california veteran","food truck","truck industry","chowas founded","dominic lau","lawrence lie","meets latino","latino represents","chinese heritage","heritage represented","traditional chinese","chinese guardian","guardian lions","lions chinese","chinese guardian","guardian lion","hispanic influences","chow tacos","tacos ceased","ceased operations","food network","diners drive","drive ins","ins andives","well nbc","chow also","also seto","seto appear","cooking channel","chinese food","food madeasy","best late","late night","night street","street food","los angeles","angeles history","history file","chow tacos","tacos food","food truck","owners lau","lie identified","late night","night bar","chow tacos","tacos food","food truck","truck industry","fusion tacos","chowas derived","honorific spanish","spanish title","combination withe","withe popular","popular chinese","chinese surname","also became","chow began","two man","man operation","lie cooking","serving bar","bar crowds","friday nights","appeared regularly","venice los","los angeles","angeles venice","day jobs","jobs working","business hours","full week","week schedule","chowas able","establish regular","fusion fare","diners drive","drive ins","ins andives","food truck","truck week","first birthday","birthday april","popularity continued","chowas featured","national taco","taco day","chow tacos","tacos owner","owner lau","cooking channel","channel cooking","cooking channel","channel show","show easy","easy chinese","chinese hosted","june thepisode","thepisode focused","late night","night street","street food","food lau","lau prepared","prepared one","chow signature","signature dishes","chinese bbq","bbq pork","pork taco","spicy oyster","chow tacos","tacos owner","owner dominic","lifetime tv","tv network","network lifetime","lifetime network","reality competition","competition show","show supermarket","episode category","category global","global cuisine","cuisine withe","final episode","episode cuisine","cuisine file","chow tacos","tacos taco","chow truck","truck serves","traditional mexican","mexican food","chinese flavors","flavors drawn","friends recipes","recipes items","menu include","include tacos","popular dishes","chicken tacos","tacos chinese","chinese bbq","bbq pork","chinese style","style meats","signature dishes","carne asada","asada chow","chow fun","ultimate la","la tacos","tacos carne","carne asada","asada tacos","tacos topped","bacon wrapped","wrapped hot","hot dogs","football season","southern california","cooked torder","signature dishes","menu remains","remains flexible","location additionally","menu items","items events","food truck","truck makes","makes regular","regular appearances","los angeles","angeles outdoor","outdoor cinema","cinema food","la street","street food","food fest","farmers market","balancing fun","chow appears","catered events","streets past","past catered","catered events","food network","attached film","chow gives","gives back","community participating","charity events","local schools","collaborated multiple","multiple times","california state","state university","university los","los angeles","angeles cal","cal state","state la","urban learning","learning program","charity events","haiti earthquake","chow also","also partnered","news anchor","anchor wendy","good news","news foundation","gilbert lindsay","lindsay park","los angeles","angeles providing","providing free","free lunches","regularly commissioned","special events","chow tacos","tacos catered","valley music","arts festival","included celebrity","celebrity guests","guests including","including katy","katy perry","chow received","received especially","especially positive","positive reviews","indie rock","rock band","chow made","california state","state university","cal state","big show","performers included","included far","far east","east movement","following year","talent included","chow participated","los angeles","angeles times","times celebration","celebration ofood","wine technology","chow experienced","experienced soon","savvy audience","facebook see","see also","also kogi","kogi korean","korean bbq","bbq list","list ofood","ofood trucks","trucks externalinks","chow tacos","tacos facebook","chow tacos","tacos twitter","twitter category","category mexican","mexican cuisine","cuisine category","category chinese","chinese cuisine","cuisine category","category fusion","fusion cuisine","cuisine category","category restaurants","los angeles","angeles category","category restaurants","restaurants established","category establishments","california category","category food","food trucks"],"new_description":"file thumb chow_tacos logo chow_tacos chinese mexican fusion food_truck based los_angeles california veteran food_truck industry chowas founded april dominic lau lawrence lie motto meets latino represents pair chinese heritage represented truck logo depiction traditional chinese guardian lions chinese guardian lion hispanic influences constant lives grew la chow_tacos ceased operations february chow appeared food_network diners drive_ins andives well nbc ktla chow also seto appear cooking channel chinese food madeasy offering best late_night street_food los_angeles history_file thumb chow_tacos food_truck idea founding truck conceived owners lau lie identified niche late_night bar crowd decided chow_tacos food_truck industry name chose fusion tacos chowas derived honorific spanish title honorific combination withe popular chinese surname also_became play words synonymous chow began two man operation lau lie cooking serving bar crowds thursday friday nights well encountered truck weekends appeared regularly zanzibar santa townhouse venice los_angeles venice day jobs working business hours get chow running truck full week schedule hired manage cook take lau lie guidance chowas able establish regular took guy chow fusion fare diners drive_ins andives year chow recognized food_truck week truck first birthday april lau interviewed kurt ktla may popularity continued grow chowas featured segment national taco day ktla october chow_tacos owner lau featured cooking channel cooking channel show easy chinese hosted june thepisode focused late_night street_food lau prepared one chow signature_dishes chinese bbq pork taco prepared spicy oyster july chow_tacos owner dominic opportunity participate lifetime tv network lifetime network reality competition show supermarket lau episode category global cuisine withe chicken went finalist show final episode cuisine file thumb chow_tacos taco chow truck serves variety traditional mexican food chinese flavors drawn lau lie family friends recipes items menu include tacos noodle popular dishes chicken tacos chinese bbq pork traditional witheir chinese style meats signature_dishes carne asada chow fun ultimate la tacos carne asada tacos topped bacon inspired bacon wrapped hot_dogs party parties football season university southern_california lau lie almater food prepared cooked torder staff truck signature_dishes menu remains flexible depending location additionally truck secret menu_items events mobility food_truck chow cater variety lifestyles truck makes regular appearances eventsuch los_angeles outdoor cinema food la street_food fest farmers market balancing fun profitability chow appears variety catered events addition streets past catered events included sets food_network home film attached film chow gives back community participating charity events local schools causes truck collaborated multiple times california state_university los_angeles cal state la urban learning program participated charity events typhoon philippines haiti earthquake chow also partnered ktla news anchor wendy good news foundation rebuild gilbert lindsay park los_angeles providing free_lunches volunteers may chow regularly commissioned appear special_events april chow_tacos catered l valley music arts festival included celebrity guests including katy perry wood chow received especially positive reviews indie rock band chow made appearance california state_university cal state big show october performers included far east movement well following_year october talent included group kevin september chow participated los_angeles times celebration ofood wine technology vital growth chow experienced soon founding continues attract savvy audience truck locations chow twitter well facebook see_also kogi korean bbq list_ofood_trucks externalinks chow_tacos facebook chow_tacos twitter category mexican cuisine_category_chinese cuisine_category fusion cuisine_category_restaurants los_angeles category_restaurants established category_establishments california_category food_trucks"},{"title":"DontStayIn","description":"dontstayin commonly abbreviated to dsis a social networking site based around nightclubbing primarily covering the uk it lists nearly events and has overified members arencouraged to upload picture galleries to the site for events they have attended add events and venues and otherwise contribute spotters are dsi members who review and photograph events and promote dsi the site was also ranked continuously from april to december in the top websites in the uk by hitwise for their entertainment nightlife category hitwise awards q q q q q q the format of the site allows any user to add event listings post comments and upload photos from anywhere in the worldsi members are known for their loyalty to and promotion of the site many users have also commented favourably abouthe site and its impact on their lives when it is mentioned by reviewersee comments here for an example dsi users often shortened on the site to dsiers have usedontstayin to set up events camp dsi s rd birthday dontstayin dsi does alton towers roundontstayin and user groups dsi does group dontstayin events group dontstayin to promote the meeting up of dsiers in realife inovember dsi was reportedly used torganise utalkmarketing digital marketing rallies mob what has been described as the biggest flash mob ever in paddington station london uk in dsi was featured in a documentary download our channel programme dontstayin made by juniper tv juniper tv as part of channel s trouble online series money and business from channel com that profiled new media enterprises that have been set up byoung entrepreneurs on april dontstayin ltd was acquired for an undisclosed sum by development helltd the publishers of the word magazine the word and mixmag publisher development hell buys dontstayincom in december dontstayin was taken over by love socio ltd a subsidiary company of web giants ltd awards history set up by founders under initial name of yougotspottedcom renamedontstayincom archiveorg snapshot of site won the house music awards prize for best web resource house music awards ukmusiccom upfront and ruthlessly independentered the hitwise top for the category entertainment nightlife in the uk q hitwise won the hardance awards best website award won the musik you awards best website award became number in the hitwise rankings for the category entertainment nightlife in the uk q hitwise remained number until q won the hardance awards best website award won the hardcore heaven awards best website award won the hardance awards best website award taken over by development helltd taken over by love socio ltd a subsidiary company of web giants ltd the do not stay in brand was updated in june followed by a complete website update the first phase of the new update was launched in beta in july dsi stats from the site stats dontstayin as of april photos nearly million photos have been uploaded to dsi so far on average around photos are uploaded every month and there are around million photo viewings every month events the number of events on dsis over around new events are added every month verified members there are now overegistered members on dsi around new members are signing up every month around log in at least once per month forum posts there are over million discussion forum posts on dsi over forum posts are written every month externalinks dontstayin website alternatives to myspace dontstayin uk clubbers love dontstayinot myspace how to make million friends and influence people house music awards best web resource winner sexa graden social mediabroad category social networking services category community websites category virtual communities category nightclubs","main_words":["dontstayin","commonly","abbreviated","social_networking","site","based","around","primarily","covering","uk","lists","nearly","events","members","arencouraged","upload","picture","galleries","site","events","attended","add","events","venues","otherwise","contribute","spotters","dsi","members","review","photograph","events","promote","dsi","site","also","ranked","continuously","april","december","top","websites","uk","hitwise","entertainment","nightlife","category","hitwise","awards","format","site","allows","user","add","event","listings","post","comments","upload","photos","anywhere","members","known","loyalty","promotion","site","many","users","also","commented","abouthe","site","impact","lives","mentioned","comments","example","dsi","users","often","shortened","site","set","events","camp","dsi","birthday","dontstayin","dsi","alton_towers","user","groups","dsi","group","dontstayin","events","group","dontstayin","promote","meeting","realife","inovember","dsi","reportedly","used","digital","marketing","rallies","mob","described","biggest","flash","mob","ever","station","london_uk","dsi","featured","documentary","download","channel","programme","dontstayin","made","part","channel","trouble","online","series","money","business","channel","new","media","enterprises","set","entrepreneurs","april","dontstayin","ltd","acquired","undisclosed","sum","development","publishers","word","magazine","word","publisher","development","hell","buys","december","dontstayin","taken","love","socio","ltd","subsidiary","company","web","giants","ltd","awards","history","set","founders","initial","name","site","house_music","awards","prize","best","web","resource","house_music","awards","hitwise","top","category_entertainment","nightlife","uk","hitwise","awards","best","website","award","awards","best","website","award","became","number","hitwise","rankings","category_entertainment","nightlife","uk","hitwise","remained","number","awards","best","website","award","hardcore","heaven","awards","best","website","award","awards","best","website","award","taken","development","taken","love","socio","ltd","subsidiary","company","web","giants","ltd","stay","brand","updated","june","followed","complete","website","update","first","phase","new","update","launched","beta","july","dsi","site","dontstayin","april","photos","nearly","million","photos","uploaded","dsi","far","average","around","photos","uploaded","every","month","around","million","photo","every","month","events","number","events","around","new","events","added","every","month","verified","members","members","dsi","around","new","members","signing","every","month","around","log","least","per","month","forum","posts","million","discussion","forum","posts","dsi","forum","posts","written","every","month","externalinks","dontstayin","website","alternatives","dontstayin","uk","clubbers","love","make","million","friends","influence","people","house_music","awards","best","web","resource","winner","social","category","social_networking","services_category","community","websites_category","virtual","communities","category_nightclubs"],"clean_bigrams":[["dontstayin","commonly"],["commonly","abbreviated"],["social","networking"],["networking","site"],["site","based"],["based","around"],["primarily","covering"],["lists","nearly"],["nearly","events"],["members","arencouraged"],["upload","picture"],["picture","galleries"],["attended","add"],["add","events"],["otherwise","contribute"],["contribute","spotters"],["dsi","members"],["photograph","events"],["promote","dsi"],["also","ranked"],["ranked","continuously"],["top","websites"],["entertainment","nightlife"],["nightlife","category"],["category","hitwise"],["hitwise","awards"],["site","allows"],["add","event"],["event","listings"],["listings","post"],["post","comments"],["upload","photos"],["site","many"],["many","users"],["also","commented"],["abouthe","site"],["example","dsi"],["dsi","users"],["users","often"],["often","shortened"],["events","camp"],["camp","dsi"],["birthday","dontstayin"],["dontstayin","dsi"],["alton","towers"],["user","groups"],["groups","dsi"],["group","dontstayin"],["dontstayin","events"],["events","group"],["group","dontstayin"],["realife","inovember"],["inovember","dsi"],["reportedly","used"],["digital","marketing"],["marketing","rallies"],["rallies","mob"],["biggest","flash"],["flash","mob"],["mob","ever"],["station","london"],["london","uk"],["documentary","download"],["channel","programme"],["programme","dontstayin"],["dontstayin","made"],["trouble","online"],["online","series"],["series","money"],["new","media"],["media","enterprises"],["april","dontstayin"],["dontstayin","ltd"],["undisclosed","sum"],["word","magazine"],["publisher","development"],["development","hell"],["hell","buys"],["december","dontstayin"],["love","socio"],["socio","ltd"],["subsidiary","company"],["web","giants"],["giants","ltd"],["ltd","awards"],["awards","history"],["history","set"],["initial","name"],["house","music"],["music","awards"],["awards","prize"],["best","web"],["web","resource"],["resource","house"],["house","music"],["music","awards"],["hitwise","top"],["category","entertainment"],["entertainment","nightlife"],["hitwise","awards"],["awards","best"],["best","website"],["website","award"],["awards","best"],["best","website"],["website","award"],["award","became"],["became","number"],["hitwise","rankings"],["category","entertainment"],["entertainment","nightlife"],["hitwise","remained"],["remained","number"],["awards","best"],["best","website"],["website","award"],["hardcore","heaven"],["heaven","awards"],["awards","best"],["best","website"],["website","award"],["awards","best"],["best","website"],["website","award"],["award","taken"],["love","socio"],["socio","ltd"],["subsidiary","company"],["web","giants"],["giants","ltd"],["june","followed"],["complete","website"],["website","update"],["first","phase"],["new","update"],["july","dsi"],["april","photos"],["photos","nearly"],["nearly","million"],["million","photos"],["average","around"],["around","photos"],["uploaded","every"],["every","month"],["month","around"],["around","million"],["million","photo"],["every","month"],["month","events"],["around","new"],["new","events"],["added","every"],["every","month"],["month","verified"],["verified","members"],["dsi","around"],["around","new"],["new","members"],["every","month"],["month","around"],["around","log"],["per","month"],["month","forum"],["forum","posts"],["million","discussion"],["discussion","forum"],["forum","posts"],["forum","posts"],["written","every"],["every","month"],["month","externalinks"],["externalinks","dontstayin"],["dontstayin","website"],["website","alternatives"],["dontstayin","uk"],["uk","clubbers"],["clubbers","love"],["make","million"],["million","friends"],["influence","people"],["people","house"],["house","music"],["music","awards"],["awards","best"],["best","web"],["web","resource"],["resource","winner"],["category","social"],["social","networking"],["networking","services"],["services","category"],["category","community"],["community","websites"],["websites","category"],["category","virtual"],["virtual","communities"],["communities","category"],["category","nightclubs"]],"all_collocations":["dontstayin commonly","commonly abbreviated","social networking","networking site","site based","based around","primarily covering","lists nearly","nearly events","members arencouraged","upload picture","picture galleries","attended add","add events","otherwise contribute","contribute spotters","dsi members","photograph events","promote dsi","also ranked","ranked continuously","top websites","entertainment nightlife","nightlife category","category hitwise","hitwise awards","site allows","add event","event listings","listings post","post comments","upload photos","site many","many users","also commented","abouthe site","example dsi","dsi users","users often","often shortened","events camp","camp dsi","birthday dontstayin","dontstayin dsi","alton towers","user groups","groups dsi","group dontstayin","dontstayin events","events group","group dontstayin","realife inovember","inovember dsi","reportedly used","digital marketing","marketing rallies","rallies mob","biggest flash","flash mob","mob ever","station london","london uk","documentary download","channel programme","programme dontstayin","dontstayin made","trouble online","online series","series money","new media","media enterprises","april dontstayin","dontstayin ltd","undisclosed sum","word magazine","publisher development","development hell","hell buys","december dontstayin","love socio","socio ltd","subsidiary company","web giants","giants ltd","ltd awards","awards history","history set","initial name","house music","music awards","awards prize","best web","web resource","resource house","house music","music awards","hitwise top","category entertainment","entertainment nightlife","hitwise awards","awards best","best website","website award","awards best","best website","website award","award became","became number","hitwise rankings","category entertainment","entertainment nightlife","hitwise remained","remained number","awards best","best website","website award","hardcore heaven","heaven awards","awards best","best website","website award","awards best","best website","website award","award taken","love socio","socio ltd","subsidiary company","web giants","giants ltd","june followed","complete website","website update","first phase","new update","july dsi","april photos","photos nearly","nearly million","million photos","average around","around photos","uploaded every","every month","month around","around million","million photo","every month","month events","around new","new events","added every","every month","month verified","verified members","dsi around","around new","new members","every month","month around","around log","per month","month forum","forum posts","million discussion","discussion forum","forum posts","forum posts","written every","every month","month externalinks","externalinks dontstayin","dontstayin website","website alternatives","dontstayin uk","uk clubbers","clubbers love","make million","million friends","influence people","people house","house music","music awards","awards best","best web","web resource","resource winner","category social","social networking","networking services","services category","category community","community websites","websites category","category virtual","virtual communities","communities category","category nightclubs"],"new_description":"dontstayin commonly abbreviated social_networking site based around primarily covering uk lists nearly events members arencouraged upload picture galleries site events attended add events venues otherwise contribute spotters dsi members review photograph events promote dsi site also ranked continuously april december top websites uk hitwise entertainment nightlife category hitwise awards format site allows user add event listings post comments upload photos anywhere members known loyalty promotion site many users also commented abouthe site impact lives mentioned comments example dsi users often shortened site set events camp dsi birthday dontstayin dsi alton_towers user groups dsi group dontstayin events group dontstayin promote meeting realife inovember dsi reportedly used digital marketing rallies mob described biggest flash mob ever station london_uk dsi featured documentary download channel programme dontstayin made tv tv part channel trouble online series money business channel new media enterprises set entrepreneurs april dontstayin ltd acquired undisclosed sum development publishers word magazine word publisher development hell buys december dontstayin taken love socio ltd subsidiary company web giants ltd awards history set founders initial name site house_music awards prize best web resource house_music awards hitwise top category_entertainment nightlife uk hitwise awards best website award awards best website award became number hitwise rankings category_entertainment nightlife uk hitwise remained number awards best website award hardcore heaven awards best website award awards best website award taken development taken love socio ltd subsidiary company web giants ltd stay brand updated june followed complete website update first phase new update launched beta july dsi site dontstayin april photos nearly million photos uploaded dsi far average around photos uploaded every month around million photo every month events number events around new events added every month verified members members dsi around new members signing every month around log least per month forum posts million discussion forum posts dsi forum posts written every month externalinks dontstayin website alternatives dontstayin uk clubbers love make million friends influence people house_music awards best web resource winner social category social_networking services_category community websites_category virtual communities category_nightclubs"},{"title":"Doors Open Days","description":"doors open days or simply open days provide free access to buildings not normally open to the public the first doors open day took place in france in and the concept haspread tother places in europe seeuropean heritage days north americabout doors open ontario retrieved february australiand elsewhere doors open days promotes architecture and heritage sites to a wider audience within and beyond the country s borders it is an opportunity to discover hidden architectural gems and to see behindoors that are rarely open to the public for free heritage open days in england heritage open days established in celebratenglish architecture and culture allowing visitors free access to historicalandmarks that areither not usually open to the public or would normally charge an entrance fee doors open days in scotlandoors open days is organised by the scottish civic trust alongside scottish archaeology month scottisharchaeologymonthcom the open days form scotland s contribution to european heritage days this joint initiative between the council of europe and theuropean union aims to give people a greater understanding of each other through sharing and exploring cultural heritage countries across europe take part annually in september duringlasgow s year as european city of culture in organisers ran open doors event its popularity encouraged other areas to take parthe following year and were coordinated by the scottish civic trust doors open days now take place throughout scotland thanks to a dedicated team of area coordinators these coordinators work for a mixture of organisations local government in the united kingdom local councils civic trusts cultural heritage organisations and archaeological trustscotland is one of the few participating countries wherevents take placevery weekend in september with different areas choosing their own dates more than buildings now take part in over visits were made generating million for the scottish economy it is estimated that or more volunteer s give their time to run activities and open doors for members of the public doors open days wasupported in by homecoming scotland a year long initiative that marked the th anniversary of the birth of scotland s national poet robert burns it was funded by the scottish government and part financed by theuropean union through theuropean regional development fund its aim was to engage scots at home as well as motivate people of scottish descent and those who simply love scotland to take part in an inspirational celebration of scottish culture and heritage open house in australia open housevents are organised in australia in partnership with open house worldwide the first open houseventook place in open house melbourne in this was followed by brisbane open house brisbane in and adelaide and perth western australia perth in see also brisbane open house doors open canada doors openewfoundland labrador doors open ottawa doors open torontopen house london open house chicagopenhousenewyork tourism in scotland externalinks doors open days doors open days in scotland s regional highlights doors open day in edinburgheritage open days in england london open house london uk manchester curious open house manchester uk doors open canada doors open alberta doors open calgary doors open halifax doors open winnipeg manitoba doors open ontario doors open cornwall and seaway valley doors open london ontario canada doors open ottawa doors open toronto doors openewfoundland labrador doors open richmond bc doors open denver colorado usa doors open lowell massachusetts usa doors open milwaukee wisconsin usa european heritage days european heritage dayscottish arch ology monthomecoming scotland category doors open days category events in scotland category recurring events established in category cultural heritage category cultural events category tourist attractions","main_words":["doors","open_days","simply","open_days","provide","free","access","buildings","normally","open","public","first","doors_open","day","took_place","france","concept","haspread","tother","places","europe","heritage","days","north","doors_open","ontario","retrieved_february","australiand","elsewhere","doors_open_days","promotes","architecture","heritage_sites","wider","audience","within","beyond","country","borders","opportunity","discover","hidden","architectural","see","rarely","open","public","free","heritage","open_days","england","heritage","open_days","established","architecture","culture","allowing","visitors","free","access","areither","usually","open","public","would","normally","charge","entrance","fee","doors_open_days","open_days","organised","scottish","civic","trust","alongside","scottish","archaeology","month","open_days","form","scotland","contribution","european","heritage","days","joint","initiative","council","europe","theuropean_union","aims","give","people","greater","understanding","sharing","exploring","cultural_heritage","countries","across_europe","take_part","annually","september","year","european","city","culture","organisers","ran","open","doors","event","popularity","encouraged","areas","following_year","coordinated","scottish","civic","trust","doors_open_days","take_place","throughout","scotland","thanks","dedicated","team","area","coordinators","coordinators","work","mixture","organisations","local_government","united_kingdom","local","councils","civic","cultural_heritage","organisations","archaeological","one","participating","countries","take","weekend","september","different","areas","choosing","dates","buildings","take_part","visits","made","generating","million","scottish","economy","estimated","volunteer","give","time","run","activities","open","doors","members","public","doors_open_days","scotland","year","long","initiative","marked","th_anniversary","birth","scotland","national","poet","robert","burns","funded","scottish","government","part","financed","theuropean_union","theuropean","regional_development","fund","aim","engage","scots","home","well","motivate","people","scottish","descent","simply","love","scotland","take_part","celebration","scottish","culture_heritage","open_house","australia","open","organised","australia","partnership","open_house","worldwide","first","open","place","open_house","melbourne","followed","brisbane","open_house","brisbane","adelaide","perth","western_australia","perth","see_also","brisbane","open_house","doors_open","canada","doors","labrador","doors_open","ottawa","london","open_house","tourism","scotland","externalinks","doors_open_days","doors_open_days","scotland","regional","highlights","doors_open","day","open_days","england","london","open_house","london_uk","manchester","curious","open_house","manchester","uk","doors_open","canada","doors_open","alberta","doors_open","calgary","doors_open","halifax","doors_open","winnipeg","manitoba","doors_open","ontario","doors_open","cornwall","valley","doors_open","london","ontario_canada","doors_open","ottawa","doors_open","toronto","doors","labrador","doors_open","richmond","doors_open","denver","colorado","usa","doors_open","lowell","massachusetts","usa","doors_open","milwaukee","wisconsin","usa","european","heritage","days","european","heritage","arch","scotland_category","doors_open_days","category","events","scotland_category","recurring","events","established","category_cultural","events","category_tourist","attractions"],"clean_bigrams":[["doors","open"],["open","days"],["simply","open"],["open","days"],["days","provide"],["provide","free"],["free","access"],["normally","open"],["first","doors"],["doors","open"],["open","day"],["day","took"],["took","place"],["concept","haspread"],["haspread","tother"],["tother","places"],["heritage","days"],["days","north"],["doors","open"],["open","ontario"],["ontario","retrieved"],["retrieved","february"],["february","australiand"],["australiand","elsewhere"],["elsewhere","doors"],["doors","open"],["open","days"],["days","promotes"],["promotes","architecture"],["heritage","sites"],["wider","audience"],["audience","within"],["discover","hidden"],["hidden","architectural"],["rarely","open"],["free","heritage"],["heritage","open"],["open","days"],["england","heritage"],["heritage","open"],["open","days"],["days","established"],["culture","allowing"],["allowing","visitors"],["visitors","free"],["free","access"],["usually","open"],["would","normally"],["normally","charge"],["entrance","fee"],["fee","doors"],["doors","open"],["open","days"],["open","days"],["scottish","civic"],["civic","trust"],["trust","alongside"],["alongside","scottish"],["scottish","archaeology"],["archaeology","month"],["open","days"],["days","form"],["form","scotland"],["european","heritage"],["heritage","days"],["joint","initiative"],["theuropean","union"],["union","aims"],["give","people"],["greater","understanding"],["exploring","cultural"],["cultural","heritage"],["heritage","countries"],["countries","across"],["across","europe"],["europe","take"],["take","part"],["part","annually"],["european","city"],["organisers","ran"],["ran","open"],["open","doors"],["doors","event"],["popularity","encouraged"],["take","parthe"],["parthe","following"],["following","year"],["scottish","civic"],["civic","trust"],["trust","doors"],["doors","open"],["open","days"],["take","place"],["place","throughout"],["throughout","scotland"],["scotland","thanks"],["dedicated","team"],["area","coordinators"],["coordinators","work"],["organisations","local"],["local","government"],["united","kingdom"],["kingdom","local"],["local","councils"],["councils","civic"],["cultural","heritage"],["heritage","organisations"],["participating","countries"],["different","areas"],["areas","choosing"],["take","part"],["made","generating"],["generating","million"],["scottish","economy"],["run","activities"],["open","doors"],["public","doors"],["doors","open"],["open","days"],["year","long"],["long","initiative"],["th","anniversary"],["national","poet"],["poet","robert"],["robert","burns"],["scottish","government"],["part","financed"],["theuropean","union"],["theuropean","regional"],["regional","development"],["development","fund"],["engage","scots"],["motivate","people"],["scottish","descent"],["simply","love"],["love","scotland"],["take","part"],["scottish","culture"],["heritage","open"],["open","house"],["australia","open"],["open","house"],["house","worldwide"],["first","open"],["open","house"],["house","melbourne"],["brisbane","open"],["open","house"],["house","brisbane"],["perth","western"],["western","australia"],["australia","perth"],["see","also"],["also","brisbane"],["brisbane","open"],["open","house"],["house","doors"],["doors","open"],["open","canada"],["canada","doors"],["labrador","doors"],["doors","open"],["open","ottawa"],["ottawa","doors"],["doors","open"],["open","house"],["house","london"],["london","open"],["open","house"],["scotland","externalinks"],["externalinks","doors"],["doors","open"],["open","days"],["days","doors"],["doors","open"],["open","days"],["regional","highlights"],["highlights","doors"],["doors","open"],["open","day"],["open","days"],["england","london"],["london","open"],["open","house"],["house","london"],["london","uk"],["uk","manchester"],["manchester","curious"],["curious","open"],["open","house"],["house","manchester"],["manchester","uk"],["uk","doors"],["doors","open"],["open","canada"],["canada","doors"],["doors","open"],["open","alberta"],["alberta","doors"],["doors","open"],["open","calgary"],["calgary","doors"],["doors","open"],["open","halifax"],["halifax","doors"],["doors","open"],["open","winnipeg"],["winnipeg","manitoba"],["manitoba","doors"],["doors","open"],["open","ontario"],["ontario","doors"],["doors","open"],["open","cornwall"],["valley","doors"],["doors","open"],["open","london"],["london","ontario"],["ontario","canada"],["canada","doors"],["doors","open"],["open","ottawa"],["ottawa","doors"],["doors","open"],["open","toronto"],["toronto","doors"],["labrador","doors"],["doors","open"],["open","richmond"],["doors","open"],["open","denver"],["denver","colorado"],["colorado","usa"],["usa","doors"],["doors","open"],["open","lowell"],["lowell","massachusetts"],["massachusetts","usa"],["usa","doors"],["doors","open"],["open","milwaukee"],["milwaukee","wisconsin"],["wisconsin","usa"],["usa","european"],["european","heritage"],["heritage","days"],["days","european"],["european","heritage"],["scotland","category"],["category","doors"],["doors","open"],["open","days"],["days","category"],["category","events"],["scotland","category"],["category","recurring"],["recurring","events"],["events","established"],["category","cultural"],["cultural","heritage"],["heritage","category"],["category","cultural"],["cultural","events"],["events","category"],["category","tourist"],["tourist","attractions"]],"all_collocations":["doors open","open days","simply open","open days","days provide","provide free","free access","normally open","first doors","doors open","open day","day took","took place","concept haspread","haspread tother","tother places","heritage days","days north","doors open","open ontario","ontario retrieved","retrieved february","february australiand","australiand elsewhere","elsewhere doors","doors open","open days","days promotes","promotes architecture","heritage sites","wider audience","audience within","discover hidden","hidden architectural","rarely open","free heritage","heritage open","open days","england heritage","heritage open","open days","days established","culture allowing","allowing visitors","visitors free","free access","usually open","would normally","normally charge","entrance fee","fee doors","doors open","open days","open days","scottish civic","civic trust","trust alongside","alongside scottish","scottish archaeology","archaeology month","open days","days form","form scotland","european heritage","heritage days","joint initiative","theuropean union","union aims","give people","greater understanding","exploring cultural","cultural heritage","heritage countries","countries across","across europe","europe take","take part","part annually","european city","organisers ran","ran open","open doors","doors event","popularity encouraged","take parthe","parthe following","following year","scottish civic","civic trust","trust doors","doors open","open days","take place","place throughout","throughout scotland","scotland thanks","dedicated team","area coordinators","coordinators work","organisations local","local government","united kingdom","kingdom local","local councils","councils civic","cultural heritage","heritage organisations","participating countries","different areas","areas choosing","take part","made generating","generating million","scottish economy","run activities","open doors","public doors","doors open","open days","year long","long initiative","th anniversary","national poet","poet robert","robert burns","scottish government","part financed","theuropean union","theuropean regional","regional development","development fund","engage scots","motivate people","scottish descent","simply love","love scotland","take part","scottish culture","heritage open","open house","australia open","open house","house worldwide","first open","open house","house melbourne","brisbane open","open house","house brisbane","perth western","western australia","australia perth","see also","also brisbane","brisbane open","open house","house doors","doors open","open canada","canada doors","labrador doors","doors open","open ottawa","ottawa doors","doors open","open house","house london","london open","open house","scotland externalinks","externalinks doors","doors open","open days","days doors","doors open","open days","regional highlights","highlights doors","doors open","open day","open days","england london","london open","open house","house london","london uk","uk manchester","manchester curious","curious open","open house","house manchester","manchester uk","uk doors","doors open","open canada","canada doors","doors open","open alberta","alberta doors","doors open","open calgary","calgary doors","doors open","open halifax","halifax doors","doors open","open winnipeg","winnipeg manitoba","manitoba doors","doors open","open ontario","ontario doors","doors open","open cornwall","valley doors","doors open","open london","london ontario","ontario canada","canada doors","doors open","open ottawa","ottawa doors","doors open","open toronto","toronto doors","labrador doors","doors open","open richmond","doors open","open denver","denver colorado","colorado usa","usa doors","doors open","open lowell","lowell massachusetts","massachusetts usa","usa doors","doors open","open milwaukee","milwaukee wisconsin","wisconsin usa","usa european","european heritage","heritage days","days european","european heritage","scotland category","category doors","doors open","open days","days category","category events","scotland category","category recurring","recurring events","events established","category cultural","cultural heritage","heritage category","category cultural","cultural events","events category","category tourist","tourist attractions"],"new_description":"doors open_days simply open_days provide free access buildings normally open public first doors_open day took_place france concept haspread tother places europe heritage days north doors_open ontario retrieved_february australiand elsewhere doors_open_days promotes architecture heritage_sites wider audience within beyond country borders opportunity discover hidden architectural see rarely open public free heritage open_days england heritage open_days established architecture culture allowing visitors free access areither usually open public would normally charge entrance fee doors_open_days open_days organised scottish civic trust alongside scottish archaeology month open_days form scotland contribution european heritage days joint initiative council europe theuropean_union aims give people greater understanding sharing exploring cultural_heritage countries across_europe take_part annually september year european city culture organisers ran open doors event popularity encouraged areas take_parthe following_year coordinated scottish civic trust doors_open_days take_place throughout scotland thanks dedicated team area coordinators coordinators work mixture organisations local_government united_kingdom local councils civic cultural_heritage organisations archaeological one participating countries take weekend september different areas choosing dates buildings take_part visits made generating million scottish economy estimated volunteer give time run activities open doors members public doors_open_days scotland year long initiative marked th_anniversary birth scotland national poet robert burns funded scottish government part financed theuropean_union theuropean regional_development fund aim engage scots home well motivate people scottish descent simply love scotland take_part celebration scottish culture_heritage open_house australia open organised australia partnership open_house worldwide first open place open_house melbourne followed brisbane open_house brisbane adelaide perth western_australia perth see_also brisbane open_house doors_open canada doors labrador doors_open ottawa doors_open_house london open_house tourism scotland externalinks doors_open_days doors_open_days scotland regional highlights doors_open day open_days england london open_house london_uk manchester curious open_house manchester uk doors_open canada doors_open alberta doors_open calgary doors_open halifax doors_open winnipeg manitoba doors_open ontario doors_open cornwall valley doors_open london ontario_canada doors_open ottawa doors_open toronto doors labrador doors_open richmond doors_open denver colorado usa doors_open lowell massachusetts usa doors_open milwaukee wisconsin usa european heritage days european heritage arch scotland_category doors_open_days category events scotland_category recurring events established category_cultural_heritage category_cultural events category_tourist attractions"},{"title":"Dorian Gray (club)","description":"instead romanized former type private traded as industry music genre fate predecessor successor foundation frankfurt amain germany founder gerd sch ler and michael presinger defunct location city frankfurt amain location country germany locations area served germany key people products production services revenue operating income net income aum assets equity owner num employees parent divisionsubsid homepage footnotes intl bodystyle dorian gray was a popular nightclub in the s and s located on the frankfurt airport in frankfurt amain germany the owners gerd sch ler and michael presinger opened the club onovember the idea was toffer similar events as new yorks club studio this was one of the largest nightclubs in the german areathatime the design of the nightclub costed more than million deutsche mark s and laid the corner stone for the most successful airport club the name of the club comes from oscar wilde s novel the picture of dorian gray dorian gray was located in hall c of the terminal building on the airport for this reason the nightclub remained openeduring morning hours when the rest of the airport remained closed music image saga pelzmodenschau im dorian gray frankfurt amain jpg thumb fur exhibition at dorian gray up to guests danced on three dancefloors runningman studio and chillout end of s to disco funk und soul music soulater since to electronic dance music such as electronic body music ebm house music house newave music newave and techno since to black music in the small club famous deejays who played at dorian gray were sven v th torsten fenslaulli brenner snap michael m nzing and lucanzilotti dj dag talla xlc tom wax markus l ffel mark spoon heinz felber pete marvelous paul oakenfold pascal feos bj rn mulik andy d x tone and light effects the nightclub had athatime a spectacularichard long sound system design which was using large sound system speakers with jbl and gauss alnico base sound system which produced loud and clear sound the deejay equipment consisted of thorens and later fromid s technics brand technics turntables the light system was made out of red green and orange colors whichave been positioned to reflecthe mirrors on the floor until the mid s a strong laser showas used one of the video jockeys was also alexander metzger closure on december the nightclub stopped toperate in frankfurt amain the last record that was played on the closure was lovin you fromusician minnie riperton and was played by the resident deejay ufuk in the small club several years after the closure of the nightclub the painted entrance doors were still visible with original image in january thexisting space in hall c was renovated into a shopping area various in thearly both of the original ownerstarted a newly opened nightclub in berlin on potsdamer platz which could not reach the fame of the original nightclub and therefore ceased toperate the sister nightclub of dorian gray in perkins park in stuttgart which opened in withe similar idea of eventstill operates today in the years there were dedicated party events athend of the year called airport nighto remember the days when dorian gray existed references category disco category nightclubs category defunct nightclubs category nightclubs in frankfurt category buildings and structures in frankfurt category electronic dance music venues category establishments in germany category event venuestablished in category disestablishments in germany","main_words":["instead","former","type","private","traded","industry","music","genre","fate","predecessor","successor","foundation","frankfurt_amain","germany","founder","sch","michael","defunct","location_city","frankfurt_amain","location_country","germany","locations","area_served","germany","key_people","products","production","services","revenue_operating","income_net_income","aum","assets_equity","owner_num","employees_parent","divisionsubsid","homepage","footnotes_intl","dorian_gray","popular","nightclub","located","frankfurt","airport","frankfurt_amain","germany","owners","sch","michael","opened","club","onovember","idea","toffer","similar","events","new","club","studio","one","largest","nightclubs","german","design","nightclub","million","deutsche","mark","laid","corner","stone","successful","airport","club","name","club","comes","oscar","novel","picture","dorian_gray","dorian_gray","located","hall","c","terminal","building","airport","reason","nightclub","remained","morning","hours","rest","airport","remained","closed","music","image","saga","dorian_gray","frankfurt_amain","jpg","thumb","fur","exhibition","dorian_gray","guests","three","studio","end","disco","funk","und","soul","music","since","electronic_dance_music","electronic","body","music","house_music","house_music","techno","since","black","music","small","club","famous","played","dorian_gray","v","th","michael","tom","l","mark","spoon","heinz","pete","paul","pascal","andy","x","tone","light","effects","nightclub","athatime","long","sound_system","design","using","large","sound_system","speakers","base","sound_system","produced","loud","clear","sound","equipment","consisted","later","brand","light","system","made","red","green","orange","colors","whichave","positioned","reflecthe","mirrors","floor","mid","strong","laser","showas","used","one","video","jockeys","also","alexander","closure","december","nightclub","stopped","toperate","frankfurt_amain","last","record","played","closure","played","resident","small","club","several_years","closure","nightclub","painted","entrance","doors","still","visible","original","image","january","thexisting","space","hall","c","renovated","shopping","area","various","thearly","original","newly","opened","nightclub","berlin","could","reach","fame","original","nightclub","therefore","ceased","toperate","sister","nightclub","dorian_gray","park","stuttgart","opened","withe","similar","idea","operates","today","years","dedicated","party","events","athend","year","called","airport","nighto","remember","days","dorian_gray","existed","references_category","disco","category_nightclubs_category","defunct","nightclubs","frankfurt","category_buildings","structures","frankfurt","venues","category_establishments","germany_category","event","category_disestablishments","germany"],"clean_bigrams":[["former","type"],["type","private"],["private","traded"],["industry","music"],["music","genre"],["genre","fate"],["fate","predecessor"],["predecessor","successor"],["successor","foundation"],["foundation","frankfurt"],["frankfurt","amain"],["amain","germany"],["germany","founder"],["defunct","location"],["location","city"],["city","frankfurt"],["frankfurt","amain"],["amain","location"],["location","country"],["country","germany"],["germany","locations"],["locations","area"],["area","served"],["served","germany"],["germany","key"],["key","people"],["people","products"],["products","production"],["production","services"],["services","revenue"],["revenue","operating"],["operating","income"],["income","net"],["net","income"],["income","aum"],["aum","assets"],["assets","equity"],["equity","owner"],["owner","num"],["num","employees"],["employees","parent"],["parent","divisionsubsid"],["divisionsubsid","homepage"],["homepage","footnotes"],["footnotes","intl"],["dorian","gray"],["popular","nightclub"],["frankfurt","airport"],["frankfurt","amain"],["amain","germany"],["club","onovember"],["toffer","similar"],["similar","events"],["club","studio"],["largest","nightclubs"],["million","deutsche"],["deutsche","mark"],["corner","stone"],["successful","airport"],["airport","club"],["club","comes"],["dorian","gray"],["gray","dorian"],["dorian","gray"],["hall","c"],["terminal","building"],["nightclub","remained"],["morning","hours"],["airport","remained"],["remained","closed"],["closed","music"],["music","image"],["image","saga"],["dorian","gray"],["gray","frankfurt"],["frankfurt","amain"],["amain","jpg"],["jpg","thumb"],["thumb","fur"],["fur","exhibition"],["dorian","gray"],["disco","funk"],["funk","und"],["und","soul"],["soul","music"],["electronic","dance"],["dance","music"],["electronic","body"],["body","music"],["music","house"],["house","music"],["music","house"],["house","music"],["techno","since"],["black","music"],["small","club"],["club","famous"],["dorian","gray"],["v","th"],["tom","wax"],["mark","spoon"],["spoon","heinz"],["x","tone"],["light","effects"],["long","sound"],["sound","system"],["system","design"],["using","large"],["large","sound"],["sound","system"],["system","speakers"],["base","sound"],["sound","system"],["produced","loud"],["clear","sound"],["equipment","consisted"],["light","system"],["red","green"],["orange","colors"],["colors","whichave"],["reflecthe","mirrors"],["strong","laser"],["laser","showas"],["showas","used"],["used","one"],["video","jockeys"],["also","alexander"],["nightclub","stopped"],["stopped","toperate"],["frankfurt","amain"],["last","record"],["small","club"],["club","several"],["several","years"],["painted","entrance"],["entrance","doors"],["still","visible"],["original","image"],["january","thexisting"],["thexisting","space"],["hall","c"],["shopping","area"],["area","various"],["newly","opened"],["opened","nightclub"],["original","nightclub"],["therefore","ceased"],["ceased","toperate"],["sister","nightclub"],["dorian","gray"],["withe","similar"],["similar","idea"],["operates","today"],["dedicated","party"],["party","events"],["events","athend"],["year","called"],["called","airport"],["airport","nighto"],["nighto","remember"],["dorian","gray"],["gray","existed"],["existed","references"],["references","category"],["category","disco"],["disco","category"],["category","nightclubs"],["nightclubs","category"],["category","defunct"],["defunct","nightclubs"],["nightclubs","category"],["category","nightclubs"],["frankfurt","category"],["category","buildings"],["frankfurt","category"],["category","electronic"],["electronic","dance"],["dance","music"],["music","venues"],["venues","category"],["category","establishments"],["germany","category"],["category","event"],["category","disestablishments"]],"all_collocations":["former type","type private","private traded","industry music","music genre","genre fate","fate predecessor","predecessor successor","successor foundation","foundation frankfurt","frankfurt amain","amain germany","germany founder","defunct location","location city","city frankfurt","frankfurt amain","amain location","location country","country germany","germany locations","locations area","area served","served germany","germany key","key people","people products","products production","production services","services revenue","revenue operating","operating income","income net","net income","income aum","aum assets","assets equity","equity owner","owner num","num employees","employees parent","parent divisionsubsid","divisionsubsid homepage","homepage footnotes","footnotes intl","dorian gray","popular nightclub","frankfurt airport","frankfurt amain","amain germany","club onovember","toffer similar","similar events","club studio","largest nightclubs","million deutsche","deutsche mark","corner stone","successful airport","airport club","club comes","dorian gray","gray dorian","dorian gray","hall c","terminal building","nightclub remained","morning hours","airport remained","remained closed","closed music","music image","image saga","dorian gray","gray frankfurt","frankfurt amain","amain jpg","thumb fur","fur exhibition","dorian gray","disco funk","funk und","und soul","soul music","electronic dance","dance music","electronic body","body music","music house","house music","music house","house music","techno since","black music","small club","club famous","dorian gray","v th","tom wax","mark spoon","spoon heinz","x tone","light effects","long sound","sound system","system design","using large","large sound","sound system","system speakers","base sound","sound system","produced loud","clear sound","equipment consisted","light system","red green","orange colors","colors whichave","reflecthe mirrors","strong laser","laser showas","showas used","used one","video jockeys","also alexander","nightclub stopped","stopped toperate","frankfurt amain","last record","small club","club several","several years","painted entrance","entrance doors","still visible","original image","january thexisting","thexisting space","hall c","shopping area","area various","newly opened","opened nightclub","original nightclub","therefore ceased","ceased toperate","sister nightclub","dorian gray","withe similar","similar idea","operates today","dedicated party","party events","events athend","year called","called airport","airport nighto","nighto remember","dorian gray","gray existed","existed references","references category","category disco","disco category","category nightclubs","nightclubs category","category defunct","defunct nightclubs","nightclubs category","category nightclubs","frankfurt category","category buildings","frankfurt category","category electronic","electronic dance","dance music","music venues","venues category","category establishments","germany category","category event","category disestablishments"],"new_description":"instead former type private traded industry music genre fate predecessor successor foundation frankfurt_amain germany founder sch michael defunct location_city frankfurt_amain location_country germany locations area_served germany key_people products production services revenue_operating income_net_income aum assets_equity owner_num employees_parent divisionsubsid homepage footnotes_intl dorian_gray popular nightclub located frankfurt airport frankfurt_amain germany owners sch michael opened club onovember idea toffer similar events new club studio one largest nightclubs german design nightclub million deutsche mark laid corner stone successful airport club name club comes oscar novel picture dorian_gray dorian_gray located hall c terminal building airport reason nightclub remained morning hours rest airport remained closed music image saga dorian_gray frankfurt_amain jpg thumb fur exhibition dorian_gray guests three studio end disco funk und soul music since electronic_dance_music electronic body music house_music house_music techno since black music small club famous played dorian_gray v th michael tom wax l mark spoon heinz pete paul pascal andy x tone light effects nightclub athatime long sound_system design using large sound_system speakers base sound_system produced loud clear sound equipment consisted later brand light system made red green orange colors whichave positioned reflecthe mirrors floor mid strong laser showas used one video jockeys also alexander closure december nightclub stopped toperate frankfurt_amain last record played closure played resident small club several_years closure nightclub painted entrance doors still visible original image january thexisting space hall c renovated shopping area various thearly original newly opened nightclub berlin could reach fame original nightclub therefore ceased toperate sister nightclub dorian_gray park stuttgart opened withe similar idea operates today years dedicated party events athend year called airport nighto remember days dorian_gray existed references_category disco category_nightclubs_category defunct nightclubs_category nightclubs frankfurt category_buildings structures frankfurt category_electronic_dance_music venues category_establishments germany_category event category_disestablishments germany"},{"title":"Dorling Kindersley","description":"founder christopher dorling peter kindersley successor country united kingdom headquarters london distribution keypeople publications topics genre imprints bradygames alpha rough guides eyewitness travel numemployees nasdaq url dorling kindersley dk is a british multinational publishing company specializing in illustrated reference book s for adults and children in languages it is part of penguin random house a consumer publishing company jointly owned by bertelsmann se co kgaand pearson plc bertelsmann owns of the company and pearson owns established in dk publishes a range of titles in genres including travel including eyewitness travel guides arts and crafts business history cookingamingardening health and fitness natural history parenting science and reference they also publish books for children toddlers and babies covering such topics as history the human body animals and activities as well as licensed propertiesuch as the lego group lego disney andeliso licensor of the toy sophie la girafe dk has offices inew york melbourne london munich new delhi and toronto dorling kindersley was founded as a book packaging company by christopher dorling and peter kindersley in london in and in moved into publishing the first book published under the dk name was a first aid manual for the british voluntary medical services this book established the company s distinctive visual style of copiously illustrated text on a glossy white backgroundk inc began publishing in the united states in it overestimated the market for star wars books and was left with millions of unsold copies resulting in crippling debt as a direct result dk was taken over the following year by the pearson plc media company and made part of penguin group which alsowned the penguin books label dk has continued to sell star wars books after the takeover in bertelsmann and pearson completed a merger to form penguin random house bertelsmann owns and pearson of the company penguin s trade publishing activity continued to include dk under the newly formed penguin random house file shell headquarters dbjpg thumb px dorling kindersley s london office is at shell mex house strand a s art deco building easily recognizable from the river thames by its distinctive clock dorling kindersley publishes a range of titles internationally for adults and children most of the company s books are produced by teams of editors andesigners who work with freelance writers and illustratorsome arendorsed by imprimaturs well known and respected organizationsuch as the british medical association the royal horticultural society and the british red crossome dk books apparently produced by celebrity authorsuch as carol vorderman are actually ghostwritten by the company s own writers and editors bradygames is a publishing company in the united states operating as a dk imprintrade name imprint which specializes in video game strategy guides covering multiple video game console video game platforms it published their firstrategy guide inovember as a division of macmillan publishers united states macmillan computer publishing in simon schuster which acquired macmillan in divested bradygames as part of its educational division to pearson plc bradygames has grown to publish roughly guides per year on june bradygames merged with prima games and future strategy guides made by the publishing company will be published under the prima games label dk multimedia during the s the company publisheducational video s and a successful range of educational cd rom s under the brandk multimedia during the late s cd roms werebranded as dk interactive learning to reflect a changed emphasis toward theducational sector following dwindling sales and increasing competition from website s the company tried to rebrand the digital part of its business as dk online before opting to sell the uk publishing rights to its cd rom backlist in to an entirely separate company global software publishing which is part of the avanquest software group the dk online section of the business then transferred into development work on the anglicised version of the pearson education us knowledgebox product in december dk opened an app store selling digital versions of some of its books as well as products from other publishers young adult dk commenced publishing books aimed ateens withe release of heads upsychology in may and further titles following every two to three months reception of the firstitle was favorable with publishers weekly writing attention getting headers why do good people do bad things introduces a discussion of the human capacity for evil should hook curious readers while the findings of psychological studieshouldeepen their understanding of this field infographicsidebars and photos both create an inviting visualayout and underscore the concepts discussed while booklist called it an attractive book and a busy but appealing companion for high school psychology textbooks other series other book series published recently includeyewitness travel guides the big ideas rhs encyclopedia doodlepedia the little courses line of world atlases pocket genuis bradygames alpha rough guides eyewitness travel see also cartopedia externalinks dorling kindersley website dorling kindersley travel dorling kindersley personalized travel guides official youtube channel category book publishing companies of the united kingdom category travel guide books category pearson plcategory penguin random house category publishing companiestablished in","main_words":["founder","christopher","dorling","peter","kindersley","successor","country_united","kingdom","headquarters","london","distribution","publications","topics","genre","imprints","bradygames","alpha","rough_guides","eyewitness","travel","url","dorling","kindersley","british","multinational","publishing_company","specializing","illustrated","reference","book","adults","children","languages","part","penguin","random_house","consumer","publishing_company","jointly","owned","bertelsmann","pearson","plc","bertelsmann","owns","company","pearson","owns","established","publishes","range","titles","genres","including","travel","including","eyewitness","travel_guides","arts","crafts","business","history","health","fitness","natural_history","science","reference","also","publish","books","children","babies","covering","topics","history","human","body","animals","activities","well","licensed","lego","group","lego","disney","toy","sophie","la","offices","inew_york","melbourne","london","munich","new_delhi","toronto","dorling","kindersley","founded","book","packaging","company","christopher","dorling","peter","kindersley","london","moved","publishing","first","book","published","name","first_aid","manual","british","voluntary","medical","services","book","established","company","distinctive","visual","style","illustrated","text","glossy","white","inc","began","publishing","united_states","market","star","wars","books","unsold","copies","resulting","debt","direct","result","taken","following_year","pearson","plc","media","company","made","part","penguin","group","penguin","books","label","continued","sell","star","wars","books","takeover","bertelsmann","pearson","completed","merger","form","penguin","random_house","bertelsmann","owns","pearson","company","penguin","trade","publishing","activity","continued","include","newly","formed","penguin","random_house","file","shell","headquarters","thumb","px","dorling","kindersley","london","office","shell","house","strand","art_deco","building","easily","recognizable","river_thames","distinctive","clock","dorling","kindersley","publishes","range","titles","internationally","adults","children","company","teams","editors","work","freelance","writers","well_known","respected","organizationsuch","british","medical","association","royal","society","british","red","books","apparently","produced","celebrity","authorsuch","carol","actually","company","writers","editors","bradygames","publishing_company","united_states","operating","name","imprint","specializes","video_game","strategy","guides","covering","multiple","video_game","console","video_game","platforms","published","guide","inovember","division","macmillan","publishers","united_states","macmillan","computer","publishing","simon","schuster","acquired","macmillan","bradygames","part","educational","division","pearson","plc","bradygames","grown","publish","roughly","guides","per_year","june","bradygames","merged","prima","games","future","strategy","guides","made","publishing_company","published","prima","games","label","multimedia","company","video","successful","range","educational","rom","multimedia","late","interactive","learning","reflect","changed","emphasis","toward","theducational","sector","following","sales","increasing","competition","website","company","tried","digital","part","business","online","sell","uk","publishing","rights","rom","entirely","separate","company","global","software","publishing","part","software","group","online","section","business","transferred","development","work","version","pearson","education","us","product","december","opened","app","store","selling","digital","versions","books","well","products","publishers","young","adult","commenced","publishing","books","aimed","withe","release","heads","may","titles","following","every","two","three_months","reception","favorable","publishers","weekly","writing","attention","getting","good","people","bad","things","introduces","discussion","human","capacity","evil","hook","curious","readers","findings","psychological","understanding","field","photos","create","inviting","concepts","discussed","called","attractive","book","busy","appealing","companion","high_school","psychology","series","book_series","published","recently","travel_guides","big","ideas","encyclopedia","little","courses","line","world","pocket","bradygames","alpha","rough_guides","eyewitness","travel","see_also","externalinks","dorling","kindersley","website","dorling","kindersley","travel","dorling","kindersley","personalized","travel_guides","official","youtube","channel","category","book_publishing_companies","united_kingdom","category_travel_guide_books","category","pearson","penguin","random_house","category_publishing","companiestablished"],"clean_bigrams":[["founder","christopher"],["christopher","dorling"],["dorling","peter"],["peter","kindersley"],["kindersley","successor"],["successor","country"],["country","united"],["united","kingdom"],["kingdom","headquarters"],["headquarters","london"],["london","distribution"],["publications","topics"],["topics","genre"],["genre","imprints"],["imprints","bradygames"],["bradygames","alpha"],["alpha","rough"],["rough","guides"],["guides","eyewitness"],["eyewitness","travel"],["url","dorling"],["dorling","kindersley"],["british","multinational"],["multinational","publishing"],["publishing","company"],["company","specializing"],["illustrated","reference"],["reference","book"],["penguin","random"],["random","house"],["consumer","publishing"],["publishing","company"],["company","jointly"],["jointly","owned"],["pearson","plc"],["plc","bertelsmann"],["bertelsmann","owns"],["pearson","owns"],["owns","established"],["genres","including"],["including","travel"],["travel","including"],["including","eyewitness"],["eyewitness","travel"],["travel","guides"],["guides","arts"],["crafts","business"],["business","history"],["fitness","natural"],["natural","history"],["also","publish"],["publish","books"],["babies","covering"],["human","body"],["body","animals"],["lego","group"],["group","lego"],["lego","disney"],["toy","sophie"],["sophie","la"],["offices","inew"],["inew","york"],["york","melbourne"],["melbourne","london"],["london","munich"],["munich","new"],["new","delhi"],["toronto","dorling"],["dorling","kindersley"],["book","packaging"],["packaging","company"],["christopher","dorling"],["dorling","peter"],["peter","kindersley"],["first","book"],["book","published"],["first","aid"],["aid","manual"],["british","voluntary"],["voluntary","medical"],["medical","services"],["book","established"],["distinctive","visual"],["visual","style"],["illustrated","text"],["glossy","white"],["inc","began"],["began","publishing"],["united","states"],["star","wars"],["wars","books"],["unsold","copies"],["copies","resulting"],["direct","result"],["following","year"],["pearson","plc"],["plc","media"],["media","company"],["made","part"],["penguin","group"],["penguin","books"],["books","label"],["sell","star"],["star","wars"],["wars","books"],["pearson","completed"],["form","penguin"],["penguin","random"],["random","house"],["house","bertelsmann"],["bertelsmann","owns"],["company","penguin"],["trade","publishing"],["publishing","activity"],["activity","continued"],["newly","formed"],["formed","penguin"],["penguin","random"],["random","house"],["house","file"],["file","shell"],["shell","headquarters"],["thumb","px"],["px","dorling"],["dorling","kindersley"],["london","office"],["house","strand"],["art","deco"],["deco","building"],["building","easily"],["easily","recognizable"],["river","thames"],["distinctive","clock"],["clock","dorling"],["dorling","kindersley"],["kindersley","publishes"],["titles","internationally"],["freelance","writers"],["well","known"],["respected","organizationsuch"],["british","medical"],["medical","association"],["british","red"],["books","apparently"],["apparently","produced"],["celebrity","authorsuch"],["editors","bradygames"],["publishing","company"],["united","states"],["states","operating"],["name","imprint"],["video","game"],["game","strategy"],["strategy","guides"],["guides","covering"],["covering","multiple"],["multiple","video"],["video","game"],["game","console"],["console","video"],["video","game"],["game","platforms"],["guide","inovember"],["macmillan","publishers"],["publishers","united"],["united","states"],["states","macmillan"],["macmillan","computer"],["computer","publishing"],["simon","schuster"],["acquired","macmillan"],["educational","division"],["pearson","plc"],["plc","bradygames"],["publish","roughly"],["roughly","guides"],["guides","per"],["per","year"],["june","bradygames"],["bradygames","merged"],["prima","games"],["future","strategy"],["strategy","guides"],["guides","made"],["publishing","company"],["prima","games"],["games","label"],["successful","range"],["interactive","learning"],["changed","emphasis"],["emphasis","toward"],["toward","theducational"],["theducational","sector"],["sector","following"],["increasing","competition"],["company","tried"],["digital","part"],["uk","publishing"],["publishing","rights"],["entirely","separate"],["separate","company"],["company","global"],["global","software"],["software","publishing"],["software","group"],["online","section"],["development","work"],["pearson","education"],["education","us"],["app","store"],["store","selling"],["selling","digital"],["digital","versions"],["publishers","young"],["young","adult"],["commenced","publishing"],["publishing","books"],["books","aimed"],["withe","release"],["titles","following"],["following","every"],["every","two"],["three","months"],["months","reception"],["publishers","weekly"],["weekly","writing"],["writing","attention"],["attention","getting"],["good","people"],["bad","things"],["things","introduces"],["human","capacity"],["hook","curious"],["curious","readers"],["concepts","discussed"],["attractive","book"],["appealing","companion"],["high","school"],["school","psychology"],["book","series"],["series","published"],["published","recently"],["travel","guides"],["big","ideas"],["little","courses"],["courses","line"],["bradygames","alpha"],["alpha","rough"],["rough","guides"],["guides","eyewitness"],["eyewitness","travel"],["travel","see"],["see","also"],["externalinks","dorling"],["dorling","kindersley"],["kindersley","website"],["website","dorling"],["dorling","kindersley"],["kindersley","travel"],["travel","dorling"],["dorling","kindersley"],["kindersley","personalized"],["personalized","travel"],["travel","guides"],["guides","official"],["official","youtube"],["youtube","channel"],["channel","category"],["category","book"],["book","publishing"],["publishing","companies"],["united","kingdom"],["kingdom","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","pearson"],["penguin","random"],["random","house"],["house","category"],["category","publishing"],["publishing","companiestablished"]],"all_collocations":["founder christopher","christopher dorling","dorling peter","peter kindersley","kindersley successor","successor country","country united","united kingdom","kingdom headquarters","headquarters london","london distribution","publications topics","topics genre","genre imprints","imprints bradygames","bradygames alpha","alpha rough","rough guides","guides eyewitness","eyewitness travel","url dorling","dorling kindersley","british multinational","multinational publishing","publishing company","company specializing","illustrated reference","reference book","penguin random","random house","consumer publishing","publishing company","company jointly","jointly owned","pearson plc","plc bertelsmann","bertelsmann owns","pearson owns","owns established","genres including","including travel","travel including","including eyewitness","eyewitness travel","travel guides","guides arts","crafts business","business history","fitness natural","natural history","also publish","publish books","babies covering","human body","body animals","lego group","group lego","lego disney","toy sophie","sophie la","offices inew","inew york","york melbourne","melbourne london","london munich","munich new","new delhi","toronto dorling","dorling kindersley","book packaging","packaging company","christopher dorling","dorling peter","peter kindersley","first book","book published","first aid","aid manual","british voluntary","voluntary medical","medical services","book established","distinctive visual","visual style","illustrated text","glossy white","inc began","began publishing","united states","star wars","wars books","unsold copies","copies resulting","direct result","following year","pearson plc","plc media","media company","made part","penguin group","penguin books","books label","sell star","star wars","wars books","pearson completed","form penguin","penguin random","random house","house bertelsmann","bertelsmann owns","company penguin","trade publishing","publishing activity","activity continued","newly formed","formed penguin","penguin random","random house","house file","file shell","shell headquarters","px dorling","dorling kindersley","london office","house strand","art deco","deco building","building easily","easily recognizable","river thames","distinctive clock","clock dorling","dorling kindersley","kindersley publishes","titles internationally","freelance writers","well known","respected organizationsuch","british medical","medical association","british red","books apparently","apparently produced","celebrity authorsuch","editors bradygames","publishing company","united states","states operating","name imprint","video game","game strategy","strategy guides","guides covering","covering multiple","multiple video","video game","game console","console video","video game","game platforms","guide inovember","macmillan publishers","publishers united","united states","states macmillan","macmillan computer","computer publishing","simon schuster","acquired macmillan","educational division","pearson plc","plc bradygames","publish roughly","roughly guides","guides per","per year","june bradygames","bradygames merged","prima games","future strategy","strategy guides","guides made","publishing company","prima games","games label","successful range","interactive learning","changed emphasis","emphasis toward","toward theducational","theducational sector","sector following","increasing competition","company tried","digital part","uk publishing","publishing rights","entirely separate","separate company","company global","global software","software publishing","software group","online section","development work","pearson education","education us","app store","store selling","selling digital","digital versions","publishers young","young adult","commenced publishing","publishing books","books aimed","withe release","titles following","following every","every two","three months","months reception","publishers weekly","weekly writing","writing attention","attention getting","good people","bad things","things introduces","human capacity","hook curious","curious readers","concepts discussed","attractive book","appealing companion","high school","school psychology","book series","series published","published recently","travel guides","big ideas","little courses","courses line","bradygames alpha","alpha rough","rough guides","guides eyewitness","eyewitness travel","travel see","see also","externalinks dorling","dorling kindersley","kindersley website","website dorling","dorling kindersley","kindersley travel","travel dorling","dorling kindersley","kindersley personalized","personalized travel","travel guides","guides official","official youtube","youtube channel","channel category","category book","book publishing","publishing companies","united kingdom","kingdom category","category travel","travel guide","guide books","books category","category pearson","penguin random","random house","house category","category publishing","publishing companiestablished"],"new_description":"founder christopher dorling peter kindersley successor country_united kingdom headquarters london distribution publications topics genre imprints bradygames alpha rough_guides eyewitness travel url dorling kindersley british multinational publishing_company specializing illustrated reference book adults children languages part penguin random_house consumer publishing_company jointly owned bertelsmann pearson plc bertelsmann owns company pearson owns established publishes range titles genres including travel including eyewitness travel_guides arts crafts business history health fitness natural_history science reference also publish books children babies covering topics history human body animals activities well licensed lego group lego disney toy sophie la offices inew_york melbourne london munich new_delhi toronto dorling kindersley founded book packaging company christopher dorling peter kindersley london moved publishing first book published name first_aid manual british voluntary medical services book established company distinctive visual style illustrated text glossy white inc began publishing united_states market star wars books left_millions unsold copies resulting debt direct result taken following_year pearson plc media company made part penguin group penguin books label continued sell star wars books takeover bertelsmann pearson completed merger form penguin random_house bertelsmann owns pearson company penguin trade publishing activity continued include newly formed penguin random_house file shell headquarters thumb px dorling kindersley london office shell house strand art_deco building easily recognizable river_thames distinctive clock dorling kindersley publishes range titles internationally adults children company books_produced teams editors work freelance writers well_known respected organizationsuch british medical association royal society british red books apparently produced celebrity authorsuch carol actually company writers editors bradygames publishing_company united_states operating name imprint specializes video_game strategy guides covering multiple video_game console video_game platforms published guide inovember division macmillan publishers united_states macmillan computer publishing simon schuster acquired macmillan bradygames part educational division pearson plc bradygames grown publish roughly guides per_year june bradygames merged prima games future strategy guides made publishing_company published prima games label multimedia company video successful range educational rom multimedia late interactive learning reflect changed emphasis toward theducational sector following sales increasing competition website company tried digital part business online sell uk publishing rights rom entirely separate company global software publishing part software group online section business transferred development work version pearson education us product december opened app store selling digital versions books well products publishers young adult commenced publishing books aimed withe release heads may titles following every two three_months reception favorable publishers weekly writing attention getting good people bad things introduces discussion human capacity evil hook curious readers findings psychological understanding field photos create inviting concepts discussed called attractive book busy appealing companion high_school psychology series book_series published recently travel_guides big ideas encyclopedia little courses line world pocket bradygames alpha rough_guides eyewitness travel see_also externalinks dorling kindersley website dorling kindersley travel dorling kindersley personalized travel_guides official youtube channel category book_publishing_companies united_kingdom category_travel_guide_books category pearson penguin random_house category_publishing companiestablished"},{"title":"Dracula tourism","description":"dracula tourism is a type of cultural tourism involving travel to sites associated with draculand his real or imaginary travels there is dracula tourism in transylvania romaniand in the uk references light duncan dracula tourism in romania cultural identity and the state from annals of tourism research vol issue july p category dracula category transylvania category romanian culture category cultural tourism","main_words":["dracula","tourism","type","cultural_tourism","involving","travel","sites","associated","real","imaginary","travels","dracula","tourism","transylvania","uk","references","light","duncan","dracula","tourism","romania","cultural","identity","state","annals","tourism_research","vol","issue","july","p","category","dracula","category","transylvania","category","romanian"],"clean_bigrams":[["dracula","tourism"],["cultural","tourism"],["tourism","involving"],["involving","travel"],["sites","associated"],["imaginary","travels"],["dracula","tourism"],["uk","references"],["references","light"],["light","duncan"],["duncan","dracula"],["dracula","tourism"],["romania","cultural"],["cultural","identity"],["tourism","research"],["research","vol"],["vol","issue"],["issue","july"],["july","p"],["p","category"],["category","dracula"],["dracula","category"],["category","transylvania"],["transylvania","category"],["category","romanian"],["romanian","culture"],["culture","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["dracula tourism","cultural tourism","tourism involving","involving travel","sites associated","imaginary travels","dracula tourism","uk references","references light","light duncan","duncan dracula","dracula tourism","romania cultural","cultural identity","tourism research","research vol","vol issue","issue july","july p","p category","category dracula","dracula category","category transylvania","transylvania category","category romanian","romanian culture","culture category","category cultural","cultural tourism"],"new_description":"dracula tourism type cultural_tourism involving travel sites associated real imaginary travels dracula tourism transylvania uk references light duncan dracula tourism romania cultural identity state annals tourism_research vol issue july p category dracula category transylvania category romanian culture_category_cultural_tourism"},{"title":"Drinking establishment","description":"file rian archive bar sheremetevo international airportjpg thumb px a bar establishment bar at sheremetyevo international airport a drinking establishment is a business whose primary function is the serving of alcoholic beverage s for consumption the premisesomestablishments may also serve food or haventertainment butheir main purpose is to serve alcoholic beverages there are differentypes of drinking establishment ranging from seedy bars or nightclubsometimes termedive bars to seat beer halls and elegant places of entertainment for thelite a public house informally known as a pub is an establishment licensed to serve alcoholic beverage alcoholic drinks for consumption licensing laws of the united kingdom on licence on the premises in countries and regions of british influence history of the pubeer and pub association retrieved public house britannicacom subscription required retrieved although the terms are increasingly used to refer to the same thing there is a difference between pubs bar establishment bars inn s tavern s and lounges where alcohol iserved commercially a tavern or pot house is loosely a place of business where people gather to drink alcoholic beverage s and more than likely also be served food though not licensed to put up guests the worderives from the latin language latin tabernand the greek language greek taverna brewpub is a pub orestauranthat brews beer on the premises a beer hall is a large pub that specializes in beer an izakaya is a type of japan ese bar establishment drinking establishment which also serves food to accompany the drinks a speakeasy is an establishmenthat illegally sells alcoholic beverages types of bars range from seedy bars or nightclubsometimes termedive bars toddayton accessdate to elegant places of entertainment for thelite many bars have a happy hour to encourage off peak patronage bars that fill to capacity sometimes implement a cover charge during their peak hoursuch bars often featurentertainment which may be a musical band live band or a popular disc jockey bars provide bar stools or chairs that are placed atables or counters for their patronsome bars haventertainment on a stage such as a live band comedians go dancingo go dancers or striptease strippers the term bar is derived from the bar counter specialized counter on which drinks are served the back bar is a set of shelves of glasses and bottles behind that counter in somestablishments the back bar is elaborately decorated with woodwork etched glass mirrors and lights image pubbsmjpg thumb the interior of a typical english pub a public house informally known as a pub is an establishment licensed to serve alcoholic beverage alcoholic drinks for consumption licensing laws of the united kingdom on licence on the premises in countries and regions of british influence although the terms are increasingly used to refer to the same thing there is a definite difference between pubs bar establishment bars inn s tavern s and lounges where alcohol iserved commercially a pub that offers lodging may be called an inn or morecently hotel in the united kingdom today many pubs in the uk canadand australia withe word inn or hotel in their names no longer offer accommodation and in some cases have never done some pubs bear the name of hotel because they are in countries where stringent anti drinking laws were once in force in scotland until only hotels could serve alcohol on sundays in wales an act applied the same law until when local polls could lift such a ban in a district and in the last ban was lifted in dwyfor the need for such polls was removed by the welsh assembly in there are approximately public houses in the united kingdom in many placespecially in villages a pub can be the focal point of the community so there is concern that more pubs are closing down thanew ones opening the history of pubs can be traced back to roman tavern s through the anglo saxon alehouse to the development of the modern generally prevailing tied house system a tavern or pot house is loosely a place of business where people gather to drink alcoholic beverage s and more than likely also be served food though not licensed to put up guests the worderives from the latin language latin tabernand the greek language greek taverna whose original meaning was a shed or workshop the distinction of a tavern from an inn bar establishment bar or public house pub varies by location in some places being identical and in others being distinguished by traditions or by legalicense in renaissancengland a tavern was distinguished from a public ale house by dint of being run as a privatenterprise where drinkers were guests rather than members of the public a brewpub is a pub orestauranthat brews beer on the premisesome brewpubsuch as those in germany have been brewing traditionally on the premises for hundreds of years othersuch as the les brasseurs chain france and canadand the various chains inorth americare modern restaurants beer hall a beer hall is a large pub that specializes in beer bavaria s capital munich is the city most associated with beer halls almost every brewery in munich operates a beer hall the largest beer hall was the seat math ser near the m nchen hauptbahnhof munich central train station whichasince been converted into a film theatre an is a type of japan ese bar establishment drinking establishment which also serves food to accompany the drinks the food is usually more substantial than that offered in other types of drinking establishments in japan such as bars or host and hostess clubsnack barsnack bars beer garden a beer garden a calque loan translation from the german biergarten is an outdoor area in which beer other drinks and local food are served see german cuisine beer gardens originated in southern germany especially bavariand are most common there they are usually attached to a beer hall public house pub orestauranthe term beer garden biergarten has become a generic term for open air establishments where beer iserved many countries have such establishments the characteristics of a traditional beer garden include trees wooden benches a gravel bed and freshly prepared mealsome modern beer gardens use plastichairs fast food and other variations of the traditional beer garden the largestraditional beer garden in the world is the hirschgarten in munich which seats a speakeasy also called a blind pig or blind tiger is an establishmenthat illegally sells alcoholic beverage such establishments came into prominence in the united states during the prohibition in the united states prohibition era longer in some states during thatime the sale manufacture and transportation rum running bootlegging of alcoholic beverages was illegal throughouthe united statespeakeasy merriam webster merriam webster nd web feb speakeasies largely disappeared after prohibition was ended in and the term is now used to describe some retro style bars different names for speakeasies were created the terms blind pig and blind tiger originated in the united states in the th century these terms were applied to lower class establishments that sold alcoholic beverages illegally and they are still in use today the operator of an establishment such as a saloon or bar would charge customers to see an attraction such as animal and then serve a complimentary alcoholic beverage thus circumventing the law blind tiger also referred to illegal drinking establishment in which the seller s identity was concealed a drawer would open up in a wall the patron drops in change and then a drink is placed in the drawer speakeasies were numerous and popular during the prohibition in the united states prohibition yearsome of them were operated by people who were part of organized crimeven though police and agents of the bureau of prohibition would often raid them and arrestheir owners and patrons they were so profit economics profitable thathey continued to flourish the poor quality rum running bootleg liquor sold in speakeasies was responsible for a shift away from th century classicocktails that celebrated the raw taste of the liquor such as the gin cocktail made with genever sweet gin to new cocktails aimed at masking the taste of rough moonshine see also boteco botequim cider house coffeehouse juice bar list of bars tea house index of drinking establishment related articles types of drinking establishmentypes of drinking establishments category drinking establishments","main_words":["file","archive","bar","international","thumb","px","bar_establishment_bar","international_airport","drinking_establishment","business","whose","primary","function","serving","alcoholic_beverage","consumption","may_also","serve_food","butheir","main","purpose","serve_alcoholic_beverages","differentypes","drinking_establishment","ranging","seedy","bars","bars","seat","beer","halls","elegant","places","entertainment","thelite","public_house","informally","known","pub","establishment","licensed","alcoholic_drinks","consumption","licensing_laws","united_kingdom","licence","premises","countries","regions","british","influence","history","pub","association","retrieved","public_house","subscription","required","retrieved","although","terms","increasingly","used","refer","thing","difference","pubs","bar_establishment_bars","inn","tavern","lounges","alcohol","iserved","commercially","tavern","pot","house","loosely","place","business","people","gather","drink","alcoholic_beverage","likely","also_served","food","though","licensed","put","guests","latin","language","latin","greek","language","greek","taverna","brewpub","pub","brews","beer","premises","beer","hall","large","pub","specializes","beer","izakaya","type","japan","ese","bar_establishment","drinking_establishment","also_serves","food","accompany","drinks","speakeasy","establishmenthat","illegally","sells","alcoholic_beverages","types","bars","range","seedy","bars","bars","accessdate","elegant","places","entertainment","thelite","many","bars","happy_hour","encourage","peak","patronage","bars","fill","capacity","sometimes","implement","cover_charge","peak","bars","often","may","musical","band","live","band","popular","disc","jockey","bars","provide","bar","stools","chairs","placed","atables","counters","bars","stage","live","band","go","go","dancers","term","bar","derived","bar","counter","specialized","counter","drinks","served","back","bar","set","shelves","glasses","bottles","behind","counter","somestablishments","back","bar","decorated","glass","mirrors","lights","image","thumb_interior","typical","english","pub","public_house","informally","known","pub","establishment","licensed","alcoholic_drinks","consumption","licensing_laws","united_kingdom","licence","premises","countries","regions","british","influence","although","terms","increasingly","used","refer","thing","definite","difference","pubs","bar_establishment_bars","inn","tavern","lounges","alcohol","iserved","commercially","pub","offers","lodging","may","called","inn","morecently","hotel","united_kingdom","today","many_pubs","uk","canadand","australia","withe","word","inn","hotel","names","longer","offer","accommodation","cases","never","done","pubs","bear","name","hotel","countries","stringent","anti","drinking","laws","force","scotland","hotels","could","serve","alcohol","sundays","wales","act","applied","law","local","could","lift","ban","district","last","ban","lifted","need","removed","welsh","assembly","approximately","public_houses","united_kingdom","many","villages","pub","focal","point","community","concern","pubs","closing","ones","opening","history","pubs","traced","back","roman","tavern","anglo_saxon","alehouse","development","modern","generally","tied","house","system","tavern","pot","house","loosely","place","business","people","gather","drink","alcoholic_beverage","likely","also_served","food","though","licensed","put","guests","latin","language","latin","greek","language","greek","taverna","whose","original","meaning","shed","workshop","distinction","tavern","inn","bar_establishment_bar","public_house_pub","varies","location","places","identical","others","distinguished","traditions","tavern","distinguished","public","ale","house","run","drinkers","guests","rather","members","public","brewpub","pub","brews","beer","germany","brewing","traditionally","premises","hundreds","years","othersuch","les","chain","france","canadand","various","chains","inorth","modern","restaurants","beer","hall","beer","hall","large","pub","specializes","beer","bavaria","capital","munich","city","associated","beer","halls","almost","every","brewery","munich","operates","beer","hall","largest","beer","hall","seat","math","near","munich","central","train","station","converted","film","theatre","type","japan","ese","bar_establishment","drinking_establishment","also_serves","food","accompany","drinks","food","usually","substantial","offered","types","drinking_establishments","japan","bars","host","hostess","bars","beer_garden","beer_garden","loan","translation","german","outdoor","area","beer","drinks","see","german","cuisine","beer_gardens","originated","southern","germany","especially","common","usually","attached","beer","hall","public_house_pub","term","beer_garden","become","generic","term","open_air","establishments","beer","iserved","many_countries","establishments","characteristics","traditional","beer_garden","include","trees","wooden","benches","gravel","bed","freshly","prepared","modern","beer_gardens","use","fast_food","variations","traditional","beer_garden","beer_garden","world","munich","seats","speakeasy","also_called","blind","pig","blind","tiger","establishmenthat","illegally","sells","alcoholic_beverage","establishments","came","prominence","united_states_prohibition","united_states_prohibition","era","longer","states","thatime","sale","manufacture","transportation","rum","running","alcoholic_beverages","illegal","merriam_webster","merriam_webster","web","feb","speakeasies","largely","disappeared","prohibition","ended","term_used","describe","retro","style","bars","different","names","speakeasies","created","terms","blind","pig","blind","tiger","originated","united_states","th_century","terms","applied","lower","class","establishments","sold","alcoholic_beverages","illegally","still","use","today","operator","establishment","saloon","bar","would","charge","customers","see","attraction","animal","serve","complimentary","alcoholic_beverage","thus","law","blind","tiger","also_referred","illegal","drinking_establishment","seller","identity","would","open","wall","patron","drops","change","drink","placed","speakeasies","numerous","popular","prohibition","united_states_prohibition","operated","people","part","organized","though","police","agents","bureau","prohibition","would","often","raid","owners","patrons","profit","economics","profitable","thathey","continued","poor","quality","rum","running","liquor","sold","speakeasies","responsible","shift","away","th_century","celebrated","raw","taste","liquor","gin","cocktail","made","sweet","gin","new","cocktails","aimed","taste","rough","see_also","cider","house","coffeehouse","juice","bar","list","bars","tea_house","index","drinking_establishment","related_articles","types","drinking","drinking_establishments","category_drinking_establishments"],"clean_bigrams":[["archive","bar"],["thumb","px"],["bar","establishment"],["establishment","bar"],["international","airport"],["drinking","establishment"],["business","whose"],["whose","primary"],["primary","function"],["alcoholic","beverage"],["may","also"],["also","serve"],["serve","food"],["butheir","main"],["main","purpose"],["serve","alcoholic"],["alcoholic","beverages"],["drinking","establishment"],["establishment","ranging"],["seedy","bars"],["seat","beer"],["beer","halls"],["elegant","places"],["public","house"],["house","informally"],["informally","known"],["establishment","licensed"],["serve","alcoholic"],["alcoholic","beverage"],["beverage","alcoholic"],["alcoholic","drinks"],["consumption","licensing"],["licensing","laws"],["united","kingdom"],["british","influence"],["influence","history"],["pub","association"],["association","retrieved"],["retrieved","public"],["public","house"],["subscription","required"],["required","retrieved"],["retrieved","although"],["increasingly","used"],["pubs","bar"],["bar","establishment"],["establishment","bars"],["bars","inn"],["alcohol","iserved"],["iserved","commercially"],["pot","house"],["people","gather"],["drink","alcoholic"],["alcoholic","beverage"],["likely","also"],["served","food"],["food","though"],["latin","language"],["language","latin"],["greek","language"],["language","greek"],["greek","taverna"],["taverna","brewpub"],["brews","beer"],["beer","hall"],["large","pub"],["japan","ese"],["ese","bar"],["bar","establishment"],["establishment","drinking"],["drinking","establishment"],["also","serves"],["serves","food"],["establishmenthat","illegally"],["illegally","sells"],["sells","alcoholic"],["alcoholic","beverages"],["beverages","types"],["bars","range"],["seedy","bars"],["elegant","places"],["thelite","many"],["many","bars"],["happy","hour"],["peak","patronage"],["patronage","bars"],["capacity","sometimes"],["sometimes","implement"],["cover","charge"],["bars","often"],["musical","band"],["band","live"],["live","band"],["popular","disc"],["disc","jockey"],["jockey","bars"],["bars","provide"],["provide","bar"],["bar","stools"],["placed","atables"],["live","band"],["go","dancers"],["term","bar"],["bar","counter"],["counter","specialized"],["specialized","counter"],["back","bar"],["bottles","behind"],["back","bar"],["glass","mirrors"],["lights","image"],["typical","english"],["english","pub"],["public","house"],["house","informally"],["informally","known"],["establishment","licensed"],["serve","alcoholic"],["alcoholic","beverage"],["beverage","alcoholic"],["alcoholic","drinks"],["consumption","licensing"],["licensing","laws"],["united","kingdom"],["british","influence"],["influence","although"],["increasingly","used"],["definite","difference"],["pubs","bar"],["bar","establishment"],["establishment","bars"],["bars","inn"],["alcohol","iserved"],["iserved","commercially"],["offers","lodging"],["lodging","may"],["morecently","hotel"],["united","kingdom"],["kingdom","today"],["today","many"],["many","pubs"],["uk","canadand"],["canadand","australia"],["australia","withe"],["withe","word"],["word","inn"],["longer","offer"],["offer","accommodation"],["never","done"],["pubs","bear"],["stringent","anti"],["anti","drinking"],["drinking","laws"],["hotels","could"],["could","serve"],["serve","alcohol"],["act","applied"],["could","lift"],["last","ban"],["welsh","assembly"],["approximately","public"],["public","houses"],["united","kingdom"],["focal","point"],["ones","opening"],["traced","back"],["roman","tavern"],["anglo","saxon"],["saxon","alehouse"],["modern","generally"],["tied","house"],["house","system"],["pot","house"],["people","gather"],["drink","alcoholic"],["alcoholic","beverage"],["likely","also"],["served","food"],["food","though"],["latin","language"],["language","latin"],["greek","language"],["language","greek"],["greek","taverna"],["taverna","whose"],["whose","original"],["original","meaning"],["inn","bar"],["bar","establishment"],["establishment","bar"],["public","house"],["house","pub"],["pub","varies"],["public","ale"],["ale","house"],["guests","rather"],["brews","beer"],["brewing","traditionally"],["years","othersuch"],["chain","france"],["various","chains"],["chains","inorth"],["modern","restaurants"],["restaurants","beer"],["beer","hall"],["beer","hall"],["large","pub"],["beer","bavaria"],["capital","munich"],["beer","halls"],["halls","almost"],["almost","every"],["every","brewery"],["munich","operates"],["beer","hall"],["largest","beer"],["beer","hall"],["seat","math"],["munich","central"],["central","train"],["train","station"],["film","theatre"],["japan","ese"],["ese","bar"],["bar","establishment"],["establishment","drinking"],["drinking","establishment"],["also","serves"],["serves","food"],["drinking","establishments"],["bars","beer"],["beer","garden"],["beer","garden"],["loan","translation"],["outdoor","area"],["local","food"],["served","see"],["see","german"],["german","cuisine"],["cuisine","beer"],["beer","gardens"],["gardens","originated"],["southern","germany"],["germany","especially"],["usually","attached"],["beer","hall"],["hall","public"],["public","house"],["house","pub"],["term","beer"],["beer","garden"],["generic","term"],["open","air"],["air","establishments"],["beer","iserved"],["iserved","many"],["many","countries"],["traditional","beer"],["beer","garden"],["garden","include"],["include","trees"],["trees","wooden"],["wooden","benches"],["gravel","bed"],["freshly","prepared"],["modern","beer"],["beer","gardens"],["gardens","use"],["fast","food"],["traditional","beer"],["beer","garden"],["beer","garden"],["speakeasy","also"],["also","called"],["blind","pig"],["blind","tiger"],["establishmenthat","illegally"],["illegally","sells"],["sells","alcoholic"],["alcoholic","beverage"],["establishments","came"],["united","states"],["states","prohibition"],["united","states"],["states","prohibition"],["prohibition","era"],["era","longer"],["sale","manufacture"],["transportation","rum"],["rum","running"],["alcoholic","beverages"],["illegal","throughouthe"],["throughouthe","united"],["merriam","webster"],["webster","merriam"],["merriam","webster"],["web","feb"],["feb","speakeasies"],["speakeasies","largely"],["largely","disappeared"],["retro","style"],["style","bars"],["bars","different"],["different","names"],["terms","blind"],["blind","pig"],["blind","tiger"],["tiger","originated"],["united","states"],["th","century"],["lower","class"],["class","establishments"],["sold","alcoholic"],["alcoholic","beverages"],["beverages","illegally"],["use","today"],["bar","would"],["would","charge"],["charge","customers"],["complimentary","alcoholic"],["alcoholic","beverage"],["beverage","thus"],["law","blind"],["blind","tiger"],["tiger","also"],["also","referred"],["illegal","drinking"],["drinking","establishment"],["would","open"],["patron","drops"],["united","states"],["states","prohibition"],["prohibition","yearsome"],["though","police"],["prohibition","would"],["would","often"],["often","raid"],["profit","economics"],["economics","profitable"],["profitable","thathey"],["thathey","continued"],["poor","quality"],["quality","rum"],["rum","running"],["liquor","sold"],["shift","away"],["th","century"],["raw","taste"],["gin","cocktail"],["cocktail","made"],["sweet","gin"],["new","cocktails"],["cocktails","aimed"],["see","also"],["cider","house"],["house","coffeehouse"],["coffeehouse","juice"],["juice","bar"],["bar","list"],["bars","tea"],["tea","house"],["house","index"],["drinking","establishment"],["establishment","related"],["related","articles"],["articles","types"],["drinking","establishments"],["establishments","category"],["category","drinking"],["drinking","establishments"]],"all_collocations":["archive bar","bar establishment","establishment bar","international airport","drinking establishment","business whose","whose primary","primary function","alcoholic beverage","may also","also serve","serve food","butheir main","main purpose","serve alcoholic","alcoholic beverages","drinking establishment","establishment ranging","seedy bars","seat beer","beer halls","elegant places","public house","house informally","informally known","establishment licensed","serve alcoholic","alcoholic beverage","beverage alcoholic","alcoholic drinks","consumption licensing","licensing laws","united kingdom","british influence","influence history","pub association","association retrieved","retrieved public","public house","subscription required","required retrieved","retrieved although","increasingly used","pubs bar","bar establishment","establishment bars","bars inn","alcohol iserved","iserved commercially","pot house","people gather","drink alcoholic","alcoholic beverage","likely also","served food","food though","latin language","language latin","greek language","language greek","greek taverna","taverna brewpub","brews beer","beer hall","large pub","japan ese","ese bar","bar establishment","establishment drinking","drinking establishment","also serves","serves food","establishmenthat illegally","illegally sells","sells alcoholic","alcoholic beverages","beverages types","bars range","seedy bars","elegant places","thelite many","many bars","happy hour","peak patronage","patronage bars","capacity sometimes","sometimes implement","cover charge","bars often","musical band","band live","live band","popular disc","disc jockey","jockey bars","bars provide","provide bar","bar stools","placed atables","live band","go dancers","term bar","bar counter","counter specialized","specialized counter","back bar","bottles behind","back bar","glass mirrors","lights image","typical english","english pub","public house","house informally","informally known","establishment licensed","serve alcoholic","alcoholic beverage","beverage alcoholic","alcoholic drinks","consumption licensing","licensing laws","united kingdom","british influence","influence although","increasingly used","definite difference","pubs bar","bar establishment","establishment bars","bars inn","alcohol iserved","iserved commercially","offers lodging","lodging may","morecently hotel","united kingdom","kingdom today","today many","many pubs","uk canadand","canadand australia","australia withe","withe word","word inn","longer offer","offer accommodation","never done","pubs bear","stringent anti","anti drinking","drinking laws","hotels could","could serve","serve alcohol","act applied","could lift","last ban","welsh assembly","approximately public","public houses","united kingdom","focal point","ones opening","traced back","roman tavern","anglo saxon","saxon alehouse","modern generally","tied house","house system","pot house","people gather","drink alcoholic","alcoholic beverage","likely also","served food","food though","latin language","language latin","greek language","language greek","greek taverna","taverna whose","whose original","original meaning","inn bar","bar establishment","establishment bar","public house","house pub","pub varies","public ale","ale house","guests rather","brews beer","brewing traditionally","years othersuch","chain france","various chains","chains inorth","modern restaurants","restaurants beer","beer hall","beer hall","large pub","beer bavaria","capital munich","beer halls","halls almost","almost every","every brewery","munich operates","beer hall","largest beer","beer hall","seat math","munich central","central train","train station","film theatre","japan ese","ese bar","bar establishment","establishment drinking","drinking establishment","also serves","serves food","drinking establishments","bars beer","beer garden","beer garden","loan translation","outdoor area","local food","served see","see german","german cuisine","cuisine beer","beer gardens","gardens originated","southern germany","germany especially","usually attached","beer hall","hall public","public house","house pub","term beer","beer garden","generic term","open air","air establishments","beer iserved","iserved many","many countries","traditional beer","beer garden","garden include","include trees","trees wooden","wooden benches","gravel bed","freshly prepared","modern beer","beer gardens","gardens use","fast food","traditional beer","beer garden","beer garden","speakeasy also","also called","blind pig","blind tiger","establishmenthat illegally","illegally sells","sells alcoholic","alcoholic beverage","establishments came","united states","states prohibition","united states","states prohibition","prohibition era","era longer","sale manufacture","transportation rum","rum running","alcoholic beverages","illegal throughouthe","throughouthe united","merriam webster","webster merriam","merriam webster","web feb","feb speakeasies","speakeasies largely","largely disappeared","retro style","style bars","bars different","different names","terms blind","blind pig","blind tiger","tiger originated","united states","th century","lower class","class establishments","sold alcoholic","alcoholic beverages","beverages illegally","use today","bar would","would charge","charge customers","complimentary alcoholic","alcoholic beverage","beverage thus","law blind","blind tiger","tiger also","also referred","illegal drinking","drinking establishment","would open","patron drops","united states","states prohibition","prohibition yearsome","though police","prohibition would","would often","often raid","profit economics","economics profitable","profitable thathey","thathey continued","poor quality","quality rum","rum running","liquor sold","shift away","th century","raw taste","gin cocktail","cocktail made","sweet gin","new cocktails","cocktails aimed","see also","cider house","house coffeehouse","coffeehouse juice","juice bar","bar list","bars tea","tea house","house index","drinking establishment","establishment related","related articles","articles types","drinking establishments","establishments category","category drinking","drinking establishments"],"new_description":"file archive bar international thumb px bar_establishment_bar international_airport drinking_establishment business whose primary function serving alcoholic_beverage consumption may_also serve_food butheir main purpose serve_alcoholic_beverages differentypes drinking_establishment ranging seedy bars bars seat beer halls elegant places entertainment thelite public_house informally known pub establishment licensed serve_alcoholic_beverage alcoholic_drinks consumption licensing_laws united_kingdom licence premises countries regions british influence history pub association retrieved public_house subscription required retrieved although terms increasingly used refer thing difference pubs bar_establishment_bars inn tavern lounges alcohol iserved commercially tavern pot house loosely place business people gather drink alcoholic_beverage likely also_served food though licensed put guests latin language latin greek language greek taverna brewpub pub brews beer premises beer hall large pub specializes beer izakaya type japan ese bar_establishment drinking_establishment also_serves food accompany drinks speakeasy establishmenthat illegally sells alcoholic_beverages types bars range seedy bars bars accessdate elegant places entertainment thelite many bars happy_hour encourage peak patronage bars fill capacity sometimes implement cover_charge peak bars often may musical band live band popular disc jockey bars provide bar stools chairs placed atables counters bars stage live band go go dancers term bar derived bar counter specialized counter drinks served back bar set shelves glasses bottles behind counter somestablishments back bar decorated glass mirrors lights image thumb_interior typical english pub public_house informally known pub establishment licensed serve_alcoholic_beverage alcoholic_drinks consumption licensing_laws united_kingdom licence premises countries regions british influence although terms increasingly used refer thing definite difference pubs bar_establishment_bars inn tavern lounges alcohol iserved commercially pub offers lodging may called inn morecently hotel united_kingdom today many_pubs uk canadand australia withe word inn hotel names longer offer accommodation cases never done pubs bear name hotel countries stringent anti drinking laws force scotland hotels could serve alcohol sundays wales act applied law local could lift ban district last ban lifted need removed welsh assembly approximately public_houses united_kingdom many villages pub focal point community concern pubs closing ones opening history pubs traced back roman tavern anglo_saxon alehouse development modern generally tied house system tavern pot house loosely place business people gather drink alcoholic_beverage likely also_served food though licensed put guests latin language latin greek language greek taverna whose original meaning shed workshop distinction tavern inn bar_establishment_bar public_house_pub varies location places identical others distinguished traditions tavern distinguished public ale house run drinkers guests rather members public brewpub pub brews beer germany brewing traditionally premises hundreds years othersuch les chain france canadand various chains inorth modern restaurants beer hall beer hall large pub specializes beer bavaria capital munich city associated beer halls almost every brewery munich operates beer hall largest beer hall seat math near munich central train station converted film theatre type japan ese bar_establishment drinking_establishment also_serves food accompany drinks food usually substantial offered types drinking_establishments japan bars host hostess bars beer_garden beer_garden loan translation german outdoor area beer drinks local_food_served see german cuisine beer_gardens originated southern germany especially common usually attached beer hall public_house_pub term beer_garden become generic term open_air establishments beer iserved many_countries establishments characteristics traditional beer_garden include trees wooden benches gravel bed freshly prepared modern beer_gardens use fast_food variations traditional beer_garden beer_garden world munich seats speakeasy also_called blind pig blind tiger establishmenthat illegally sells alcoholic_beverage establishments came prominence united_states_prohibition united_states_prohibition era longer states thatime sale manufacture transportation rum running alcoholic_beverages illegal throughouthe_united merriam_webster merriam_webster web feb speakeasies largely disappeared prohibition ended term_used describe retro style bars different names speakeasies created terms blind pig blind tiger originated united_states th_century terms applied lower class establishments sold alcoholic_beverages illegally still use today operator establishment saloon bar would charge customers see attraction animal serve complimentary alcoholic_beverage thus law blind tiger also_referred illegal drinking_establishment seller identity would open wall patron drops change drink placed speakeasies numerous popular prohibition united_states_prohibition yearsome operated people part organized though police agents bureau prohibition would often raid owners patrons profit economics profitable thathey continued poor quality rum running liquor sold speakeasies responsible shift away th_century celebrated raw taste liquor gin cocktail made sweet gin new cocktails aimed taste rough see_also cider house coffeehouse juice bar list bars tea_house index drinking_establishment related_articles types drinking drinking_establishments category_drinking_establishments"},{"title":"Drive-in","description":"file autokino gravenbruchjpg thumb drive in theater ineu isenburgermany file drive in wheeljpg thumb upright drive in ferris wheel file beany s drive in long beach calif ogv thumbtime video scenes in and around a drive in restaurant in long beach california drive in is a facility such as a restaurant or drive in theater movie theater where one can driving drive in with an automobile for service at a drive in restaurant for example customers park their vehicles and are usually served by staff who walk orollerskate outo take orders and return with food encouraging diners to remain parked while they eat drive in theaters have a large screen and a car parking area for film goers it is usually distinguished from a drive through in which drivers line up to make an order at a microphone set up at window height and then drive to a windowhere they pay and receive their food the drivers then take their meals elsewhere to eat notably however during peak periods patrons may be required to park in a designated parking spot and wait for their food to be directly served to them by an attendant walking to their caresulting in the perceived relationship between the two service types in the german languagerman speaking world the term is now often used instead of drive through for that kind of service in japan the term refers to a rest area in france this term has become popular because of american movieshowing that kind of service and morecently due to thexpansion ofast food restaurant s the first drive in restaurant was kirbys pig stand kirby s pig stand which opened in dallas texas dallas texas in wells dick srma update in street rodder p jones dwayne what s newithe pig standsnothe pig sandwich inorth america drive in facilities of all types have become less popular since their heyday in the s and s with drive throughs rising to prominence since the s and s in popular culture as a symbol of the s a drive in is featured in many films and tv series abouthis period the film american graffiti haseveral scenes in or around a drive in while in happy days arnold s drive in is one of the main settings for much of the seriesee also drive through drive in theater drive in classics a canadian tv channelist of drive in restaurants list of drive in theatersafari park externalinks drive in theatres refuse to fade away jilly s drive in restaurant page drive inscom searchable archive of over drive in movie theaters category articles containing video clips category drive in restaurants category road transport category types of restaurants","main_words":["file","thumb","drive","theater","file","drive","thumb","upright","drive","ferris_wheel","file","drive","long_beach","calif","video","scenes","around","drive","restaurant","long_beach_california","drive","facility","restaurant","drive","theater","movie_theater","one","driving","drive","automobile","service","drive","restaurant","example","customers","park","vehicles","usually","served","staff","walk","outo","take","orders","return","food","encouraging","diners","remain","parked","eat","drive","theaters","large","screen","car","parking","area","film","goers","usually","distinguished","drive","drivers","line","make","order","microphone","set","window","height","drive","pay","receive","food","drivers","take","meals","elsewhere","eat","notably","however","peak","periods","patrons","may","required","park","designated","parking","spot","wait","food","directly","served","attendant","walking","perceived","relationship","two","service","types","german_languagerman","speaking","world","term","often_used","instead","drive","kind","service","japan","term","refers","rest","area","france","term","become_popular","american","kind","service","morecently","due","thexpansion","ofast_food_restaurant","first","drive","restaurant","pig","stand","kirby","pig","stand","opened","dallas_texas","dallas_texas","wells","dick","update","street","p","jones","pig","pig","sandwich","inorth_america","drive","facilities","types","become","less","popular","since","heyday","drive_throughs","rising","prominence","since","popular_culture","symbol","drive","featured","many","films","tv_series","abouthis","period","film","american","graffiti","haseveral","scenes","around","drive","happy","days","arnold","drive","one","main","settings","much","also","drive","drive","theater","drive","classics","canadian","drive","restaurants_list","drive","park","externalinks","drive","theatres","refuse","fade","away","drive","restaurant","page","drive","searchable","archive","drive","movie_theaters","category_articles","containing_video_clips","category","drive","restaurants_category","road","transport","category_types","restaurants"],"clean_bigrams":[["thumb","drive"],["file","drive"],["thumb","upright"],["upright","drive"],["ferris","wheel"],["wheel","file"],["file","drive"],["long","beach"],["beach","calif"],["video","scenes"],["long","beach"],["beach","california"],["california","drive"],["theater","movie"],["movie","theater"],["driving","drive"],["example","customers"],["customers","park"],["usually","served"],["outo","take"],["take","orders"],["food","encouraging"],["encouraging","diners"],["remain","parked"],["eat","drive"],["large","screen"],["car","parking"],["parking","area"],["film","goers"],["usually","distinguished"],["drivers","line"],["microphone","set"],["window","height"],["meals","elsewhere"],["eat","notably"],["notably","however"],["peak","periods"],["periods","patrons"],["patrons","may"],["designated","parking"],["parking","spot"],["directly","served"],["attendant","walking"],["perceived","relationship"],["two","service"],["service","types"],["german","languagerman"],["languagerman","speaking"],["speaking","world"],["often","used"],["used","instead"],["term","refers"],["rest","area"],["become","popular"],["morecently","due"],["thexpansion","ofast"],["ofast","food"],["food","restaurant"],["first","drive"],["pig","stand"],["stand","kirby"],["pig","stand"],["dallas","texas"],["texas","dallas"],["dallas","texas"],["wells","dick"],["p","jones"],["pig","sandwich"],["sandwich","inorth"],["inorth","america"],["america","drive"],["become","less"],["less","popular"],["popular","since"],["drive","throughs"],["throughs","rising"],["prominence","since"],["popular","culture"],["many","films"],["tv","series"],["series","abouthis"],["abouthis","period"],["film","american"],["american","graffiti"],["graffiti","haseveral"],["haseveral","scenes"],["happy","days"],["days","arnold"],["main","settings"],["also","drive"],["theater","drive"],["canadian","tv"],["restaurants","list"],["park","externalinks"],["externalinks","drive"],["theatres","refuse"],["fade","away"],["restaurant","page"],["page","drive"],["searchable","archive"],["movie","theaters"],["theaters","category"],["category","articles"],["articles","containing"],["containing","video"],["video","clips"],["clips","category"],["category","drive"],["restaurants","category"],["category","road"],["road","transport"],["transport","category"],["category","types"]],"all_collocations":["thumb drive","file drive","upright drive","ferris wheel","wheel file","file drive","long beach","beach calif","video scenes","long beach","beach california","california drive","theater movie","movie theater","driving drive","example customers","customers park","usually served","outo take","take orders","food encouraging","encouraging diners","remain parked","eat drive","large screen","car parking","parking area","film goers","usually distinguished","drivers line","microphone set","window height","meals elsewhere","eat notably","notably however","peak periods","periods patrons","patrons may","designated parking","parking spot","directly served","attendant walking","perceived relationship","two service","service types","german languagerman","languagerman speaking","speaking world","often used","used instead","term refers","rest area","become popular","morecently due","thexpansion ofast","ofast food","food restaurant","first drive","pig stand","stand kirby","pig stand","dallas texas","texas dallas","dallas texas","wells dick","p jones","pig sandwich","sandwich inorth","inorth america","america drive","become less","less popular","popular since","drive throughs","throughs rising","prominence since","popular culture","many films","tv series","series abouthis","abouthis period","film american","american graffiti","graffiti haseveral","haseveral scenes","happy days","days arnold","main settings","also drive","theater drive","canadian tv","restaurants list","park externalinks","externalinks drive","theatres refuse","fade away","restaurant page","page drive","searchable archive","movie theaters","theaters category","category articles","articles containing","containing video","video clips","clips category","category drive","restaurants category","category road","road transport","transport category","category types"],"new_description":"file thumb drive theater file drive thumb upright drive ferris_wheel file drive long_beach calif video scenes around drive restaurant long_beach_california drive facility restaurant drive theater movie_theater one driving drive automobile service drive restaurant example customers park vehicles usually served staff walk outo take orders return food encouraging diners remain parked eat drive theaters large screen car parking area film goers usually distinguished drive drivers line make order microphone set window height drive pay receive food drivers take meals elsewhere eat notably however peak periods patrons may required park designated parking spot wait food directly served attendant walking perceived relationship two service types german_languagerman speaking world term often_used instead drive kind service japan term refers rest area france term become_popular american kind service morecently due thexpansion ofast_food_restaurant first drive restaurant pig stand kirby pig stand opened dallas_texas dallas_texas wells dick update street p jones pig pig sandwich inorth_america drive facilities types become less popular since heyday drive_throughs rising prominence since popular_culture symbol drive featured many films tv_series abouthis period film american graffiti haseveral scenes around drive happy days arnold drive one main settings much also drive drive theater drive classics canadian tv drive restaurants_list drive park externalinks drive theatres refuse fade away drive restaurant page drive searchable archive drive movie_theaters category_articles containing_video_clips category drive restaurants_category road transport category_types restaurants"},{"title":"Drive-through","description":"file uk mcdonald s drive through windowsjpg thumb right mcdonald s drive through windows in the uk file rally s drive throughjpg righthumb some fast food chainsuch as this rally s located near new orleans louisiana la have two drive throughs file post office drivethrough lanejpg righthumb drive through post box mailboxes in usps usa drive through or drive thru is a type of service provided by a business that allows customers to purchase products without leaving their cars the format was pioneered in the united states in the s by jordan martin robert j sickels ed the s greenwood press p but hasince spread tother countries the first recorded use of a bank using a drive up window teller was the grand national bank of st louis missourin the drive up teller allowed only deposits athatime orders are generally placed using a microphone and picked up in person athe window a drive through is different from a drive in several ways the cars create a line and move in one direction in drive throughs and normally do not parking park whereas drive ins allow cars to park nexto each other the food is generally broughto the window by a server called a carhop and the customer can remain the parked car to eat however during peak periods to keep the queue down and avoid traffic flow problems drive throughs occasionally switch to an order athe window then park in a designated space model where the customer will receive their food from an attendant when it is ready to be served this results in a perceived relationship between the two service models drive throughs have generally replacedrive ins in popular culture and are now found in the vast majority of modern american fast food chain store chainsometimes a store with a drive through is referred to as a drive through or the term is attached to the service such as drive through restaurant or drive through bank drive throughs typically have signs over the drive through lanes to show customers which lanes are open for business the types of signage used is usually illuminated so the open message can be changed to a closed message when the lane is not available file rock roll mcdonalds from th fl of sports authorityjpg thumb upright mcdonald s firstwo lane drive through was athe rock n roll mcdonald s in chicago alcoholic beverage s at a drive through liquor store called a beer through a cruise through a brew thru in the us eastern mid atlanticoast or a pony keg in certain areas generally illegal in the northeast and west banking services at a drive through bank postal services at a drive through mailbox dna testing coffee at a drive through coffee shop dairy products at a drive through dairy store notably the skinner dairy shops of north east florida or dairy barn in long island prescriptions at a drive through pharmacy food or drink at a drive through restaurantypically fast food groceries at a drive through retailer first by tesco uk marriage primarily at special drive through marriage chapels in las vegas valley las vegas in the united states funeral home where mourners can drive by and view the remains of their loved ones through windows pennsylvania house of representatives pennsylvania state representative kevin p murphy installed a drive through window designed to speed constituent service photo processing at fotomat file mcdonalds drive thru charnwood australiajpg thumb right a typical australia n mcdonald s drive through with speaker file drive thru intercom and menuspng thumb righthe intercom and menus at a british mcdonald s restaurant edinburgh scotland a drive through restaurant generally consists of a loudspeaker and microphone for customers to place their orders a speaker and microphone or wireless headset audio headset system for employees to hear the customer s order when a speaker is used a trigger pad beneathe concrete to activate the microphone and headset possibly augmented with a closed circuitelevision cctv camera one or more free standing signs listing the menu items called a menu board newer drive throughs feature a liquid crystal display lcd or light emitting diode ledisplay within the speaker system in order to show the full order and total costo avert orderrors through miscommunication at many brands of restaurants a secondary display featuring the total is placedirectly nexto the order window this to ensure thathe customer will know if the cashier intentionally overcharges them windows wheremployees interact with customers by processing the customer s payment and giving them their order most drive throughs haveither one window serving both functions or two windows withe first being used for payment and the second used foretrieving the order most restaurants have marked parking spaces just beyond the last window if there is a significant delay in an individual customer s order an employee may directhat customer to temporarily park in this area clearing the drive through lane for the next customer and preventing delays tother customers when the order is ready an employee handelivers the order to the customer in the designated parking space thiservice therefore occasionally hasome similarities to drive in service but only during peak periods filespressodrivethrujpg thumb right some businesses are built only for drive through service like this espresso shop file timhortonsmonctonjpg thumb a drive through only tim hortons location in monctonew brunswick canada drive through designs are different from restauranto restaurant however most drive throughs can accommodate four to six passenger cars or trucks at once called the queue area queue most drive through lanes are designed so the service windows and speaker are on the driver side of the car for example in left hand traffic right handrive countriesuch as the uk ireland australiand new zealand the windows will be on the right side of the drive through lane and vice versa in right hand traffic left handrive countriesuch as north americand mainland europe there are a few drive through lanes designed withe service windows on the passenger side buthese lanes are disfavored as they cannot be used easily by cars with only a driver according to author michael karl witzel drive through windows were a method firstested as far back as by the texas pig stand chain the first drive through restaurant was created in by sheldon red chaney operator of red s giant hamburg in springfield missouri located on the famous route the restaurant served customers until its closure in several other companies lay claim to having invented the first restaurant of this kind including the in out burger chain which did not open a drive through until maid rite also claims to have had the first drive through window other sources cite jack in the box restaurant jack in the box as the first majorestaurant specifically designed as a drive through and featuring a two way intercomlangdon philip orange roofs golden arches the architecture of american chain restaurants page knopf the first jack in the box opened in san diego the drive through concept waso unfamiliar to people athe time thathe jack in the box clown where the speaker was housed held a sign saying pull forward jack will speak to you however according to michael wallis author of route the motheroad red s giant hamburg in springfield missouris home to the world s first drive through window mcdonald sierra vistarizona was the first city to have a mcdonald s drive through the first mcdonald s drive through was created inear fort huachuca military installation located adjacento the city to serve military members who were not permitted to get out of their cars while wearing fatigues the original mcdonald s was closedown andemolished in may and a new mcdonald s replaced it in the us drive throughs account for percent of mcdonald s business and the average drive through order is under minutes in the casa linda texas franchise opened a drive through walk up only store with no indoor seating although it hasmall patio with tables the same company operates a walk up only store front nexto the west end station of dart rail the first drive through restaurant a mcdonald s drive through in europened athe nutgrove shopping centre in dublin ireland in spain and russia mcdonald s drive through services are often called mcauto in the netherlands germany france portugal italy and other northern european countries mcdonald s drive through service is called mcdrive in chile argentinand mexico mcdonald s drive through service is called automac file jollibee th store in palo leytejpg thumb a drive through at jollibee restaurant in palo leyte philippines max burger max hamburgers opens northern europe s first drive in pite file starbucks and bank of america drive throughjpg thumb right a drive through shared by a bank and a coffee shop in city center bank which became umb financial corporation president r crosby kemper opened what is considered the first drive up window shortly after the grand national bank in st louis opened up a drive through including a sloto the side for nightime deposits westminster bank opened the uk s first drive through bank in liverpool in soon followed by ulster bank opening ireland s first in at finaghy in recent years there has been a decline in drive through banking due to increased trafficongestion and the increased availability of automated teller machines and telephone and internet banking however many bank buildings now feature drive through atms grocery shopping harold willis and his fatherobert willis first incorporated a dairy and eggs drive through service in redlands california in thearly supplying milk and eggs quickly and efficiently to driving customers this utilized a dairy conveyor belthat harold willis had invented some supermarket s offer drive through facilities for grocery shopping in the uk thiservice was first announced by tesco in august and in the united states crafty s drive buy grocery store in virginia started offering the service in the netherlands dutchain albert heijn introduced a pick upoint where one can collect groceries bought online non car usage pedestrian sometimes attempto walk through the drive through torder food after the seated section of a fast food restaurant has closed many establishments refuse drive through service to pedestrians for safety insurance and liability reasonssee chude v jack in the box cal app th in this case jack in the box successfully invoked the california personal responsibility act of against an uninsuredriver who spilled hot coffee on herself in the drive through then suffered secondegree burns because the wall of the restaurant prevented her from opening her car door and escaping the hot coffee on her car seat under the act plaintiff s lack of vehicle insurance barred her from recovering noneconomic damages which form the bulk of damages in many us personal injury cases the court of appeal reasoned thathe burn injury was reasonably related to the operation of a motor vehicle because jack in the box in accordance with itstrict policy would not have served her if she had approached the drive through window on foot and because her injuries werexacerbated by the fact she wasitting in a car cyclist s are usually refused service withe same justification given however in the summer of burgerville gave use of the drive through window to bicyclistsimilar issues can arise in rural areas for people on horseback or in a horse drawn carriage on july a woman was fined for taking her horse inside a mcdonald s restaurant in greater manchester united kingdom after being refused service athe drive through the horsended up defecating inside the restaurant which causedistress tother customers walk up windows file mcdonald s walk up windowjpg thumb mcdonald s walk up window left at a location inew york city somestablishments provide a walk up window instead when a drive through may not be practical however the walk up windowshould not be confused with small establishments that customers are lined up for servicesuch as mobile kitchen s kiosk s or concession stand s these walk up windows are value added services on top of the full services provided inside the stores the walk up windows generally provide similar customer experience withe drive throughs by allowing customers to receive services from thexterior of the facilities through a window there are many reasons for the owners to provide such services an example is when mcdonald s entered a new market in russia where the majority ofamilies did not own cars the owners developed the walk up windows as an alternative anothereason is to have a drive through experience in the locations that are not feasible to construct a drive through lane such as in city centersomestablishments may wanto use walk up windows to attract certain customer demographicsuch as younger customers who need quick services during late night also anothereason is toffer extended service hours and maintain a safenvironment for employeesuch as a bulletproof walk up window of convenience store s in high crime areaski through mcdonald s first opened a ski through called mcskin the ski resort of lindvallen sweden in see also file cleveland august cleveland public library drive up service jpg thumb the cleveland public library s drive up service window drive in externalinks annual qsr drive thru performance study category types of restaurants category road transport","main_words":["file","uk","mcdonald","drive","thumb","right","mcdonald","drive","windows","uk","file","rally","drive","righthumb","fast_food","chainsuch","rally","located_near","new_orleans","louisiana","la","two","drive_throughs","file","post_office","righthumb","drive","post","box","usa","drive","drive","thru","type","service","provided","business","allows","customers","purchase","products","without","leaving","cars","format","pioneered","united_states","jordan","martin","robert","j","ed","greenwood","press_p","hasince","spread","tother","countries","first","recorded","use","bank","using","drive","window","teller","grand_national","bank","st_louis","drive","teller","allowed","deposits","athatime","orders","generally","placed","using","microphone","picked","person","athe","window","drive","different","drive","several","ways","cars","create","line","move","one","direction","drive_throughs","normally","parking","park","whereas","drive_ins","allow","cars","park","nexto","food","generally","broughto","window","server","called","carhop","customer","remain","parked","car","eat","however","peak","periods","keep","queue","avoid","traffic","flow","problems","drive_throughs","occasionally","switch","order","athe","window","park","designated","space","model","customer","receive","food","attendant","ready","served","results","perceived","relationship","two","service","models","drive_throughs","generally","ins","popular_culture","found","vast_majority","modern","american","fast_food","chain","store","store","drive","referred","drive","term","attached","service","drive","restaurant","drive","bank","drive_throughs","typically","signs","drive","lanes","show","customers","lanes","open","business","types","signage","used","usually","illuminated","open","message","changed","closed","message","lane","available","file","rock","roll","mcdonalds","th","sports","thumb","upright","mcdonald","firstwo","lane","drive","athe","rock_n","roll","mcdonald","chicago","alcoholic_beverage","drive","liquor","store","called","beer","cruise","brew","thru","us","eastern","mid","pony","keg","certain","areas","generally","illegal","northeast","west","banking","services","drive","bank","postal","services","drive","dna","testing","coffee","drive","coffee_shop","dairy","products","drive","dairy","store","notably","dairy","shops","north_east","florida","dairy","barn","long","island","drive","food","drink","drive","fast_food","groceries","drive","first","uk","marriage","primarily","special","drive","marriage","las_vegas","valley","las_vegas","united_states","funeral","home","drive","view","remains","loved","ones","windows","pennsylvania","house","representatives","pennsylvania","state","representative","kevin","p","murphy","installed","drive","window","designed","speed","service","photo","processing","file","mcdonalds","drive","thru","thumb","right","typical","australia","n","mcdonald","drive","speaker","file","drive","thru","thumb_righthe","menus","british","mcdonald","restaurant","edinburgh","scotland","drive","restaurant","generally","consists","microphone","customers","place","orders","speaker","microphone","wireless","headset","audio","headset","system","employees","hear","customer","order","speaker","used","trigger","pad","beneathe","concrete","microphone","headset","possibly","augmented","closed","camera","one","free","standing","signs","listing","menu_items","called","menu","board","newer","drive_throughs","feature","liquid","crystal","display","lcd","light","within","speaker","system","order","show","full","order","total","costo","many","brands","restaurants","secondary","display","featuring","total","nexto","order","window","ensure_thathe","customer","know","intentionally","windows","interact","customers","processing","customer","payment","giving","order","drive_throughs","one","window","serving","functions","two","windows","withe_first","used","payment","second","used","order","restaurants","marked","parking","spaces","beyond","last","window","significant","delay","individual","customer","order","employee","may","customer","temporarily","park","area","clearing","drive","lane","next","customer","preventing","delays","tother","customers","order","ready","employee","order","customer","designated","parking","space","thiservice","therefore","occasionally","hasome","similarities","drive","service","peak","periods","thumb","right","businesses","built","drive","service","like","espresso","shop","file","thumb","drive","tim","hortons","location","brunswick","canada","drive","designs","different","restauranto","restaurant","however","drive_throughs","accommodate","four","six","passenger","cars","trucks","called","queue","area","queue","drive","lanes","designed","service","windows","speaker","driver","side","car","example","left","hand","traffic","right","countriesuch","uk","ireland","australiand_new_zealand","windows","right","side","drive","lane","vice","versa","right","hand","traffic","left","countriesuch","north_americand","mainland","europe","drive","lanes","designed","withe","service","windows","passenger","side","buthese","lanes","cannot","used","easily","cars","driver","according","author","michael","karl","drive","windows","method","far","back","texas","pig","stand","chain","first","drive","restaurant","created","sheldon","red","chaney","operator","red","giant","hamburg","springfield","missouri","located","famous","route","restaurant","served","customers","closure","several","companies","lay","claim","invented","first","restaurant","kind","including","burger","chain","open","drive","maid","rite","also","claims","first","drive","window","sources","cite","jack","box","restaurant","jack","box","first","specifically","designed","drive","featuring","two","way","philip","orange","golden","arches","architecture","american","chain","restaurants","page","first","jack","box","opened","san_diego","drive","concept","waso","unfamiliar","people","athe_time","thathe","jack","box","speaker","housed","held","sign","saying","pull","forward","jack","speak","however","according","michael","author","route","red","giant","hamburg","springfield","home","world","first","drive","window","mcdonald","first","city","mcdonald","drive","first","mcdonald","drive","created","fort","military","installation","located","adjacento","city","serve","military","members","permitted","get","cars","wearing","original","mcdonald","closedown","may","new","mcdonald","replaced","us","drive_throughs","account","percent","mcdonald","business","average","drive","order","minutes","casa","linda","texas","franchise","opened","drive","walk","store","indoor","seating","although","patio","tables","company","operates","walk","store","front","nexto","west","end","station","dart","rail","first","drive","restaurant","mcdonald","drive","athe","shopping","centre","dublin","ireland","spain","russia","mcdonald","drive","services","often_called","netherlands","germany","france","portugal","italy","northern","european_countries","mcdonald","drive","service","called","chile","argentinand","mexico","mcdonald","drive","service","called","file","th","store","thumb","drive","restaurant","philippines","max","burger","max","hamburgers","opens","northern","europe","first","drive","file","starbucks","bank","america","drive","thumb","right","drive","shared","bank","coffee_shop","city","center","bank","became","financial","corporation","president","r","opened","considered","first","drive","window","shortly","grand_national","bank","st_louis","opened","drive","including","side","deposits","westminster","bank","opened","uk","first","drive","bank","liverpool","soon","followed","ulster","bank","opening","ireland","first","recent_years","decline","drive","banking","due","increased","trafficongestion","increased","availability","automated","teller","machines","telephone","internet","banking","however_many","bank","buildings","feature","drive","grocery","shopping","harold","willis","willis","first","incorporated","dairy","eggs","drive","service","california","thearly","supplying","milk","eggs","quickly","driving","customers","utilized","dairy","harold","willis","invented","supermarket","offer","drive","facilities","grocery","shopping","uk","thiservice","first","announced","august","united_states","drive","buy","grocery","store","virginia","started","offering","service","netherlands","albert","introduced","pick","one","collect","groceries","bought","online","non","car","usage","pedestrian","sometimes","attempto","walk","drive","torder","food","seated","section","fast_food_restaurant","closed","many","establishments","refuse","drive","service","pedestrians","safety","insurance","liability","v","jack","box","cal","app","th","case","jack","box","successfully","california","personal","responsibility","act","hot","coffee","drive","suffered","burns","wall","restaurant","prevented","opening","car","door","escaping","hot","coffee","car","seat","act","lack","vehicle","insurance","barred","recovering","damages","form","bulk","damages","many","us","personal","injury","cases","court","appeal","thathe","burn","injury","reasonably","related","operation","motor_vehicle","jack","box","accordance","policy","would","served","approached","drive","window","foot","injuries","fact","car","cyclist","usually","refused","service","withe","given","however","summer","gave","use","drive","window","issues","arise","rural_areas","people","horseback","horse","drawn","carriage","july","woman","fined","taking","horse","inside","mcdonald","restaurant","greater_manchester","united_kingdom","refused","service","athe","restaurant","tother","customers","walk","windows","file","mcdonald","walk","thumb","mcdonald","walk","window","left","location","inew_york_city","somestablishments","provide","walk","window","instead","drive","may","practical","however","walk","confused","small","establishments","customers","lined","servicesuch","mobile","kitchen","kiosk","concession_stand","walk","windows","value","added","services","top","provided","inside","stores","walk","windows","generally","provide","similar","customer","experience","withe","drive_throughs","allowing","customers","receive","services","thexterior","facilities","window","many","reasons","owners","provide","services","example","mcdonald","entered","new","market","russia","majority","cars","owners","developed","walk","windows","alternative","anothereason","drive","experience","locations","feasible","construct","drive","lane","city","may","wanto","use","walk","windows","attract","certain","customer","younger","customers","need","quick","services","late_night","also","anothereason","toffer","extended","service","hours","maintain","walk","window","convenience","store","high","crime","mcdonald","first_opened","ski","called","ski","resort","sweden","see_also","file","cleveland","august","cleveland","public_library","drive","service","jpg","thumb","cleveland","public_library","drive","service","window","drive","externalinks","annual","drive","thru","performance","study","category_types","restaurants_category","road","transport"],"clean_bigrams":[["file","uk"],["uk","mcdonald"],["thumb","right"],["right","mcdonald"],["uk","file"],["file","rally"],["fast","food"],["food","chainsuch"],["located","near"],["near","new"],["new","orleans"],["orleans","louisiana"],["louisiana","la"],["two","drive"],["drive","throughs"],["throughs","file"],["file","post"],["post","office"],["righthumb","drive"],["post","box"],["usa","drive"],["drive","thru"],["service","provided"],["allows","customers"],["purchase","products"],["products","without"],["without","leaving"],["united","states"],["jordan","martin"],["martin","robert"],["robert","j"],["greenwood","press"],["press","p"],["hasince","spread"],["spread","tother"],["tother","countries"],["first","recorded"],["recorded","use"],["bank","using"],["window","teller"],["grand","national"],["national","bank"],["st","louis"],["teller","allowed"],["deposits","athatime"],["athatime","orders"],["generally","placed"],["placed","using"],["person","athe"],["athe","window"],["window","drive"],["several","ways"],["cars","create"],["one","direction"],["drive","throughs"],["parking","park"],["park","whereas"],["whereas","drive"],["drive","ins"],["ins","allow"],["allow","cars"],["park","nexto"],["generally","broughto"],["server","called"],["parked","car"],["eat","however"],["peak","periods"],["avoid","traffic"],["traffic","flow"],["flow","problems"],["problems","drive"],["drive","throughs"],["throughs","occasionally"],["occasionally","switch"],["order","athe"],["athe","window"],["designated","space"],["space","model"],["perceived","relationship"],["two","service"],["service","models"],["models","drive"],["drive","throughs"],["popular","culture"],["vast","majority"],["modern","american"],["american","fast"],["fast","food"],["food","chain"],["chain","store"],["bank","drive"],["drive","throughs"],["throughs","typically"],["show","customers"],["signage","used"],["usually","illuminated"],["open","message"],["closed","message"],["available","file"],["file","rock"],["rock","roll"],["roll","mcdonalds"],["thumb","upright"],["upright","mcdonald"],["firstwo","lane"],["lane","drive"],["athe","rock"],["rock","n"],["n","roll"],["roll","mcdonald"],["chicago","alcoholic"],["alcoholic","beverage"],["liquor","store"],["store","called"],["brew","thru"],["us","eastern"],["eastern","mid"],["pony","keg"],["certain","areas"],["areas","generally"],["generally","illegal"],["west","banking"],["banking","services"],["bank","postal"],["postal","services"],["dna","testing"],["testing","coffee"],["coffee","shop"],["shop","dairy"],["dairy","products"],["dairy","store"],["store","notably"],["dairy","shops"],["north","east"],["east","florida"],["dairy","barn"],["long","island"],["fast","food"],["food","groceries"],["uk","marriage"],["marriage","primarily"],["special","drive"],["las","vegas"],["vegas","valley"],["valley","las"],["las","vegas"],["united","states"],["states","funeral"],["funeral","home"],["loved","ones"],["windows","pennsylvania"],["pennsylvania","house"],["representatives","pennsylvania"],["pennsylvania","state"],["state","representative"],["representative","kevin"],["kevin","p"],["p","murphy"],["murphy","installed"],["window","designed"],["service","photo"],["photo","processing"],["file","mcdonalds"],["mcdonalds","drive"],["drive","thru"],["thumb","right"],["typical","australia"],["australia","n"],["n","mcdonald"],["speaker","file"],["file","drive"],["drive","thru"],["thumb","righthe"],["british","mcdonald"],["restaurant","edinburgh"],["edinburgh","scotland"],["restaurant","generally"],["generally","consists"],["wireless","headset"],["headset","audio"],["audio","headset"],["headset","system"],["trigger","pad"],["pad","beneathe"],["beneathe","concrete"],["headset","possibly"],["possibly","augmented"],["camera","one"],["free","standing"],["standing","signs"],["signs","listing"],["menu","items"],["items","called"],["menu","board"],["board","newer"],["newer","drive"],["drive","throughs"],["throughs","feature"],["liquid","crystal"],["crystal","display"],["display","lcd"],["speaker","system"],["full","order"],["total","costo"],["many","brands"],["secondary","display"],["display","featuring"],["order","window"],["ensure","thathe"],["thathe","customer"],["drive","throughs"],["one","window"],["window","serving"],["two","windows"],["windows","withe"],["withe","first"],["second","used"],["marked","parking"],["parking","spaces"],["last","window"],["significant","delay"],["individual","customer"],["employee","may"],["temporarily","park"],["area","clearing"],["next","customer"],["preventing","delays"],["delays","tother"],["tother","customers"],["designated","parking"],["parking","space"],["space","thiservice"],["thiservice","therefore"],["therefore","occasionally"],["occasionally","hasome"],["hasome","similarities"],["peak","periods"],["thumb","right"],["service","like"],["espresso","shop"],["shop","file"],["tim","hortons"],["hortons","location"],["brunswick","canada"],["canada","drive"],["restauranto","restaurant"],["restaurant","however"],["drive","throughs"],["accommodate","four"],["six","passenger"],["passenger","cars"],["queue","area"],["area","queue"],["lanes","designed"],["service","windows"],["driver","side"],["left","hand"],["hand","traffic"],["traffic","right"],["uk","ireland"],["ireland","australiand"],["australiand","new"],["new","zealand"],["right","side"],["vice","versa"],["right","hand"],["hand","traffic"],["traffic","left"],["north","americand"],["americand","mainland"],["mainland","europe"],["lanes","designed"],["designed","withe"],["withe","service"],["service","windows"],["passenger","side"],["side","buthese"],["buthese","lanes"],["used","easily"],["driver","according"],["author","michael"],["michael","karl"],["far","back"],["texas","pig"],["pig","stand"],["stand","chain"],["first","drive"],["sheldon","red"],["red","chaney"],["chaney","operator"],["giant","hamburg"],["springfield","missouri"],["missouri","located"],["famous","route"],["restaurant","served"],["served","customers"],["companies","lay"],["lay","claim"],["first","restaurant"],["kind","including"],["burger","chain"],["maid","rite"],["rite","also"],["also","claims"],["first","drive"],["sources","cite"],["cite","jack"],["box","restaurant"],["restaurant","jack"],["specifically","designed"],["two","way"],["philip","orange"],["golden","arches"],["american","chain"],["chain","restaurants"],["restaurants","page"],["first","jack"],["box","opened"],["san","diego"],["concept","waso"],["waso","unfamiliar"],["people","athe"],["athe","time"],["time","thathe"],["thathe","jack"],["housed","held"],["sign","saying"],["saying","pull"],["pull","forward"],["forward","jack"],["however","according"],["giant","hamburg"],["first","drive"],["window","mcdonald"],["mcdonald","sierra"],["first","city"],["first","mcdonald"],["military","installation"],["installation","located"],["located","adjacento"],["serve","military"],["military","members"],["original","mcdonald"],["new","mcdonald"],["us","drive"],["drive","throughs"],["throughs","account"],["average","drive"],["casa","linda"],["linda","texas"],["texas","franchise"],["franchise","opened"],["indoor","seating"],["seating","although"],["company","operates"],["store","front"],["front","nexto"],["west","end"],["end","station"],["dart","rail"],["first","drive"],["shopping","centre"],["dublin","ireland"],["russia","mcdonald"],["often","called"],["netherlands","germany"],["germany","france"],["france","portugal"],["portugal","italy"],["northern","european"],["european","countries"],["countries","mcdonald"],["chile","argentinand"],["argentinand","mexico"],["mexico","mcdonald"],["th","store"],["philippines","max"],["max","burger"],["burger","max"],["max","hamburgers"],["hamburgers","opens"],["opens","northern"],["northern","europe"],["first","drive"],["file","starbucks"],["america","drive"],["thumb","right"],["coffee","shop"],["city","center"],["center","bank"],["financial","corporation"],["corporation","president"],["president","r"],["first","drive"],["window","shortly"],["grand","national"],["national","bank"],["st","louis"],["louis","opened"],["deposits","westminster"],["westminster","bank"],["bank","opened"],["first","drive"],["soon","followed"],["ulster","bank"],["bank","opening"],["opening","ireland"],["recent","years"],["banking","due"],["increased","trafficongestion"],["increased","availability"],["automated","teller"],["teller","machines"],["internet","banking"],["banking","however"],["however","many"],["many","bank"],["bank","buildings"],["feature","drive"],["grocery","shopping"],["shopping","harold"],["harold","willis"],["willis","first"],["first","incorporated"],["eggs","drive"],["thearly","supplying"],["supplying","milk"],["eggs","quickly"],["driving","customers"],["harold","willis"],["offer","drive"],["grocery","shopping"],["uk","thiservice"],["first","announced"],["united","states"],["drive","buy"],["buy","grocery"],["grocery","store"],["virginia","started"],["started","offering"],["collect","groceries"],["groceries","bought"],["bought","online"],["online","non"],["non","car"],["car","usage"],["usage","pedestrian"],["pedestrian","sometimes"],["sometimes","attempto"],["attempto","walk"],["torder","food"],["seated","section"],["fast","food"],["food","restaurant"],["closed","many"],["many","establishments"],["establishments","refuse"],["refuse","drive"],["safety","insurance"],["v","jack"],["box","cal"],["cal","app"],["app","th"],["case","jack"],["box","successfully"],["california","personal"],["personal","responsibility"],["responsibility","act"],["hot","coffee"],["restaurant","prevented"],["car","door"],["hot","coffee"],["car","seat"],["vehicle","insurance"],["insurance","barred"],["many","us"],["us","personal"],["personal","injury"],["injury","cases"],["thathe","burn"],["burn","injury"],["reasonably","related"],["motor","vehicle"],["policy","would"],["car","cyclist"],["usually","refused"],["refused","service"],["service","withe"],["given","however"],["gave","use"],["rural","areas"],["horse","drawn"],["drawn","carriage"],["horse","inside"],["greater","manchester"],["manchester","united"],["united","kingdom"],["refused","service"],["service","athe"],["athe","drive"],["tother","customers"],["customers","walk"],["windows","file"],["file","mcdonald"],["thumb","mcdonald"],["window","left"],["location","inew"],["inew","york"],["york","city"],["city","somestablishments"],["somestablishments","provide"],["window","instead"],["practical","however"],["small","establishments"],["mobile","kitchen"],["concession","stand"],["value","added"],["added","services"],["full","services"],["services","provided"],["provided","inside"],["windows","generally"],["generally","provide"],["provide","similar"],["similar","customer"],["customer","experience"],["experience","withe"],["withe","drive"],["drive","throughs"],["allowing","customers"],["receive","services"],["many","reasons"],["new","market"],["owners","developed"],["alternative","anothereason"],["may","wanto"],["wanto","use"],["use","walk"],["attract","certain"],["certain","customer"],["younger","customers"],["need","quick"],["quick","services"],["late","night"],["night","also"],["also","anothereason"],["toffer","extended"],["extended","service"],["service","hours"],["convenience","store"],["high","crime"],["first","opened"],["ski","resort"],["see","also"],["also","file"],["file","cleveland"],["cleveland","august"],["august","cleveland"],["cleveland","public"],["public","library"],["library","drive"],["service","jpg"],["jpg","thumb"],["cleveland","public"],["public","library"],["library","drive"],["service","window"],["window","drive"],["externalinks","annual"],["drive","thru"],["thru","performance"],["performance","study"],["study","category"],["category","types"],["restaurants","category"],["category","road"],["road","transport"]],"all_collocations":["file uk","uk mcdonald","right mcdonald","uk file","file rally","fast food","food chainsuch","located near","near new","new orleans","orleans louisiana","louisiana la","two drive","drive throughs","throughs file","file post","post office","righthumb drive","post box","usa drive","drive thru","service provided","allows customers","purchase products","products without","without leaving","united states","jordan martin","martin robert","robert j","greenwood press","press p","hasince spread","spread tother","tother countries","first recorded","recorded use","bank using","window teller","grand national","national bank","st louis","teller allowed","deposits athatime","athatime orders","generally placed","placed using","person athe","athe window","window drive","several ways","cars create","one direction","drive throughs","parking park","park whereas","whereas drive","drive ins","ins allow","allow cars","park nexto","generally broughto","server called","parked car","eat however","peak periods","avoid traffic","traffic flow","flow problems","problems drive","drive throughs","throughs occasionally","occasionally switch","order athe","athe window","designated space","space model","perceived relationship","two service","service models","models drive","drive throughs","popular culture","vast majority","modern american","american fast","fast food","food chain","chain store","bank drive","drive throughs","throughs typically","show customers","signage used","usually illuminated","open message","closed message","available file","file rock","rock roll","roll mcdonalds","upright mcdonald","firstwo lane","lane drive","athe rock","rock n","n roll","roll mcdonald","chicago alcoholic","alcoholic beverage","liquor store","store called","brew thru","us eastern","eastern mid","pony keg","certain areas","areas generally","generally illegal","west banking","banking services","bank postal","postal services","dna testing","testing coffee","coffee shop","shop dairy","dairy products","dairy store","store notably","dairy shops","north east","east florida","dairy barn","long island","fast food","food groceries","uk marriage","marriage primarily","special drive","las vegas","vegas valley","valley las","las vegas","united states","states funeral","funeral home","loved ones","windows pennsylvania","pennsylvania house","representatives pennsylvania","pennsylvania state","state representative","representative kevin","kevin p","p murphy","murphy installed","window designed","service photo","photo processing","file mcdonalds","mcdonalds drive","drive thru","typical australia","australia n","n mcdonald","speaker file","file drive","drive thru","thumb righthe","british mcdonald","restaurant edinburgh","edinburgh scotland","restaurant generally","generally consists","wireless headset","headset audio","audio headset","headset system","trigger pad","pad beneathe","beneathe concrete","headset possibly","possibly augmented","camera one","free standing","standing signs","signs listing","menu items","items called","menu board","board newer","newer drive","drive throughs","throughs feature","liquid crystal","crystal display","display lcd","speaker system","full order","total costo","many brands","secondary display","display featuring","order window","ensure thathe","thathe customer","drive throughs","one window","window serving","two windows","windows withe","withe first","second used","marked parking","parking spaces","last window","significant delay","individual customer","employee may","temporarily park","area clearing","next customer","preventing delays","delays tother","tother customers","designated parking","parking space","space thiservice","thiservice therefore","therefore occasionally","occasionally hasome","hasome similarities","peak periods","service like","espresso shop","shop file","tim hortons","hortons location","brunswick canada","canada drive","restauranto restaurant","restaurant however","drive throughs","accommodate four","six passenger","passenger cars","queue area","area queue","lanes designed","service windows","driver side","left hand","hand traffic","traffic right","uk ireland","ireland australiand","australiand new","new zealand","right side","vice versa","right hand","hand traffic","traffic left","north americand","americand mainland","mainland europe","lanes designed","designed withe","withe service","service windows","passenger side","side buthese","buthese lanes","used easily","driver according","author michael","michael karl","far back","texas pig","pig stand","stand chain","first drive","sheldon red","red chaney","chaney operator","giant hamburg","springfield missouri","missouri located","famous route","restaurant served","served customers","companies lay","lay claim","first restaurant","kind including","burger chain","maid rite","rite also","also claims","first drive","sources cite","cite jack","box restaurant","restaurant jack","specifically designed","two way","philip orange","golden arches","american chain","chain restaurants","restaurants page","first jack","box opened","san diego","concept waso","waso unfamiliar","people athe","athe time","time thathe","thathe jack","housed held","sign saying","saying pull","pull forward","forward jack","however according","giant hamburg","first drive","window mcdonald","mcdonald sierra","first city","first mcdonald","military installation","installation located","located adjacento","serve military","military members","original mcdonald","new mcdonald","us drive","drive throughs","throughs account","average drive","casa linda","linda texas","texas franchise","franchise opened","indoor seating","seating although","company operates","store front","front nexto","west end","end station","dart rail","first drive","shopping centre","dublin ireland","russia mcdonald","often called","netherlands germany","germany france","france portugal","portugal italy","northern european","european countries","countries mcdonald","chile argentinand","argentinand mexico","mexico mcdonald","th store","philippines max","max burger","burger max","max hamburgers","hamburgers opens","opens northern","northern europe","first drive","file starbucks","america drive","coffee shop","city center","center bank","financial corporation","corporation president","president r","first drive","window shortly","grand national","national bank","st louis","louis opened","deposits westminster","westminster bank","bank opened","first drive","soon followed","ulster bank","bank opening","opening ireland","recent years","banking due","increased trafficongestion","increased availability","automated teller","teller machines","internet banking","banking however","however many","many bank","bank buildings","feature drive","grocery shopping","shopping harold","harold willis","willis first","first incorporated","eggs drive","thearly supplying","supplying milk","eggs quickly","driving customers","harold willis","offer drive","grocery shopping","uk thiservice","first announced","united states","drive buy","buy grocery","grocery store","virginia started","started offering","collect groceries","groceries bought","bought online","online non","non car","car usage","usage pedestrian","pedestrian sometimes","sometimes attempto","attempto walk","torder food","seated section","fast food","food restaurant","closed many","many establishments","establishments refuse","refuse drive","safety insurance","v jack","box cal","cal app","app th","case jack","box successfully","california personal","personal responsibility","responsibility act","hot coffee","restaurant prevented","car door","hot coffee","car seat","vehicle insurance","insurance barred","many us","us personal","personal injury","injury cases","thathe burn","burn injury","reasonably related","motor vehicle","policy would","car cyclist","usually refused","refused service","service withe","given however","gave use","rural areas","horse drawn","drawn carriage","horse inside","greater manchester","manchester united","united kingdom","refused service","service athe","athe drive","tother customers","customers walk","windows file","file mcdonald","thumb mcdonald","window left","location inew","inew york","york city","city somestablishments","somestablishments provide","window instead","practical however","small establishments","mobile kitchen","concession stand","value added","added services","full services","services provided","provided inside","windows generally","generally provide","provide similar","similar customer","customer experience","experience withe","withe drive","drive throughs","allowing customers","receive services","many reasons","new market","owners developed","alternative anothereason","may wanto","wanto use","use walk","attract certain","certain customer","younger customers","need quick","quick services","late night","night also","also anothereason","toffer extended","extended service","service hours","convenience store","high crime","first opened","ski resort","see also","also file","file cleveland","cleveland august","august cleveland","cleveland public","public library","library drive","service jpg","cleveland public","public library","library drive","service window","window drive","externalinks annual","drive thru","thru performance","performance study","study category","category types","restaurants category","category road","road transport"],"new_description":"file uk mcdonald drive thumb right mcdonald drive windows uk file rally drive righthumb fast_food chainsuch rally located_near new_orleans louisiana la two drive_throughs file post_office righthumb drive post box usa drive drive thru type service provided business allows customers purchase products without leaving cars format pioneered united_states jordan martin robert j ed greenwood press_p hasince spread tother countries first recorded use bank using drive window teller grand_national bank st_louis drive teller allowed deposits athatime orders generally placed using microphone picked person athe window drive different drive several ways cars create line move one direction drive_throughs normally parking park whereas drive_ins allow cars park nexto food generally broughto window server called carhop customer remain parked car eat however peak periods keep queue avoid traffic flow problems drive_throughs occasionally switch order athe window park designated space model customer receive food attendant ready served results perceived relationship two service models drive_throughs generally ins popular_culture found vast_majority modern american fast_food chain store store drive referred drive term attached service drive restaurant drive bank drive_throughs typically signs drive lanes show customers lanes open business types signage used usually illuminated open message changed closed message lane available file rock roll mcdonalds th sports thumb upright mcdonald firstwo lane drive athe rock_n roll mcdonald chicago alcoholic_beverage drive liquor store called beer cruise brew thru us eastern mid pony keg certain areas generally illegal northeast west banking services drive bank postal services drive dna testing coffee drive coffee_shop dairy products drive dairy store notably dairy shops north_east florida dairy barn long island drive food drink drive fast_food groceries drive first uk marriage primarily special drive marriage las_vegas valley las_vegas united_states funeral home drive view remains loved ones windows pennsylvania house representatives pennsylvania state representative kevin p murphy installed drive window designed speed service photo processing file mcdonalds drive thru thumb right typical australia n mcdonald drive speaker file drive thru thumb_righthe menus british mcdonald restaurant edinburgh scotland drive restaurant generally consists microphone customers place orders speaker microphone wireless headset audio headset system employees hear customer order speaker used trigger pad beneathe concrete microphone headset possibly augmented closed camera one free standing signs listing menu_items called menu board newer drive_throughs feature liquid crystal display lcd light within speaker system order show full order total costo many brands restaurants secondary display featuring total nexto order window ensure_thathe customer know intentionally windows interact customers processing customer payment giving order drive_throughs one window serving functions two windows withe_first used payment second used order restaurants marked parking spaces beyond last window significant delay individual customer order employee may customer temporarily park area clearing drive lane next customer preventing delays tother customers order ready employee order customer designated parking space thiservice therefore occasionally hasome similarities drive service peak periods thumb right businesses built drive service like espresso shop file thumb drive tim hortons location brunswick canada drive designs different restauranto restaurant however drive_throughs accommodate four six passenger cars trucks called queue area queue drive lanes designed service windows speaker driver side car example left hand traffic right countriesuch uk ireland australiand_new_zealand windows right side drive lane vice versa right hand traffic left countriesuch north_americand mainland europe drive lanes designed withe service windows passenger side buthese lanes cannot used easily cars driver according author michael karl drive windows method far back texas pig stand chain first drive restaurant created sheldon red chaney operator red giant hamburg springfield missouri located famous route restaurant served customers closure several companies lay claim invented first restaurant kind including burger chain open drive maid rite also claims first drive window sources cite jack box restaurant jack box first specifically designed drive featuring two way philip orange golden arches architecture american chain restaurants page first jack box opened san_diego drive concept waso unfamiliar people athe_time thathe jack box speaker housed held sign saying pull forward jack speak however according michael author route red giant hamburg springfield home world first drive window mcdonald sierra first city mcdonald drive first mcdonald drive created fort military installation located adjacento city serve military members permitted get cars wearing original mcdonald closedown may new mcdonald replaced us drive_throughs account percent mcdonald business average drive order minutes casa linda texas franchise opened drive walk store indoor seating although patio tables company operates walk store front nexto west end station dart rail first drive restaurant mcdonald drive athe shopping centre dublin ireland spain russia mcdonald drive services often_called netherlands germany france portugal italy northern european_countries mcdonald drive service called chile argentinand mexico mcdonald drive service called file th store thumb drive restaurant philippines max burger max hamburgers opens northern europe first drive file starbucks bank america drive thumb right drive shared bank coffee_shop city center bank became financial corporation president r opened considered first drive window shortly grand_national bank st_louis opened drive including side deposits westminster bank opened uk first drive bank liverpool soon followed ulster bank opening ireland first recent_years decline drive banking due increased trafficongestion increased availability automated teller machines telephone internet banking however_many bank buildings feature drive grocery shopping harold willis willis first incorporated dairy eggs drive service california thearly supplying milk eggs quickly driving customers utilized dairy harold willis invented supermarket offer drive facilities grocery shopping uk thiservice first announced august united_states drive buy grocery store virginia started offering service netherlands albert introduced pick one collect groceries bought online non car usage pedestrian sometimes attempto walk drive torder food seated section fast_food_restaurant closed many establishments refuse drive service pedestrians safety insurance liability v jack box cal app th case jack box successfully california personal responsibility act hot coffee drive suffered burns wall restaurant prevented opening car door escaping hot coffee car seat act lack vehicle insurance barred recovering damages form bulk damages many us personal injury cases court appeal thathe burn injury reasonably related operation motor_vehicle jack box accordance policy would served approached drive window foot injuries fact car cyclist usually refused service withe given however summer gave use drive window issues arise rural_areas people horseback horse drawn carriage july woman fined taking horse inside mcdonald restaurant greater_manchester united_kingdom refused service athe drive_inside restaurant tother customers walk windows file mcdonald walk thumb mcdonald walk window left location inew_york_city somestablishments provide walk window instead drive may practical however walk confused small establishments customers lined servicesuch mobile kitchen kiosk concession_stand walk windows value added services top full_services provided inside stores walk windows generally provide similar customer experience withe drive_throughs allowing customers receive services thexterior facilities window many reasons owners provide services example mcdonald entered new market russia majority cars owners developed walk windows alternative anothereason drive experience locations feasible construct drive lane city may wanto use walk windows attract certain customer younger customers need quick services late_night also anothereason toffer extended service hours maintain walk window convenience store high crime mcdonald first_opened ski called ski resort sweden see_also file cleveland august cleveland public_library drive service jpg thumb cleveland public_library drive service window drive externalinks annual drive thru performance study category_types restaurants_category road transport"},{"title":"DSE-Alpha","description":"deep spacexpedition alpha dse alpha is the name given to the lunar sortie mission proposed in to take the first space tourism space tourists to fly around the moon the mission is organized by space adventurespace adventures ltd a commercial spaceflight company the plans involve a modified soyuz spacecraft soyuz capsule docking with a boosterocket in earth orbit which then sends the spacecraft on a free return circumlunar trajectory that circles around the moonce while the price was originally announced in augusto cost us million per seat space adventures founderic anderson eric anderson announced in january that one of the two available seats had been sold for million the use of the soyuz spacecraft makesense in many ways the original soyuz design of waspecifically intended for circumlunar travel in the late s a strippedown soyuz variant under the name zond program zond made several attempts at circumlunar flight with eventual success the dse proposal is to launch the soyuz with one crew member and two passengers aboard a zenit rocket family zenit rocket booster will then be launched carrying a rocket stage weighing up to to dock withe soyuz and propel ito circumlunar velocity two different flight profiles were originally proposed by space adventures the direct staged profile lasting about days would involve docking to the booster stage intended to propel the craft andirect departure for the moon a proposed timeline for such a flight plan is as follows day launch of soyuz spacecraft soyuz spacecraft into low earth orbit day launch of blok d block dm upper stage on rocket booster day space rendezvous andocking of soyuz with booster trans lunar injection burn after checkout of systems days coasto the moon circumlunar trajectory day closest approach as the soyuz loops around the far side of the moon days coast back to earth day atmospheric reentry and landing the other profile lasting about days would incorporate a several day visito the international space station into the flight plan beforendezvousing withe booster stage andeparting for the moon the soyuz spacecraft used for the mission would be modified from the soyuz tma orbital soyuz with a thicker and more durable heat shield and a yamal satellite constellation yamal satellite communicationsystem the block dm booster would use an automatic docking system for the rendezvous withe soyuz in low earth orbit on june spacecom reported thatwo individuals hadisplayed interest in purchasing seats with contract negotiations expected to be concluded by thend of the year in january space adventures founderic anderson announced that one of the two seats on the flight had been sold at a price of us million and negotiations for the second seat were under way in space adventures projected the first mission could occur by this had slipped to space tourism firm offers flight around the moon soyuz craftseptember and the company s website hasince been changed to indicate they expectheir first mission to launch before thend of the decade mark wade author of thencyclopediastronautica has argued thathe zenit rocket is not powerful enough for this mission and thathe larger proton rocket proton rocket will in fact be needed these same calculations have also shown that a fully fueled and outfitted blok d block dm would beyond the capabilities of the zenit rocket and the dm would have to fire for a shortime in order to stabilize its orbit see also space tourism space adventures list of current and future lunar missions externalinks encyclopediastronautica dse alpha category commercial spaceflight category human spaceflight programs category space adventures category space tourism category missions to the moon","main_words":["deep","spacexpedition","alpha","dse","alpha","name","given","lunar","mission","proposed","take","first","space_tourism","space_tourists","fly","around","moon","mission","organized","space_adventurespace","adventures","ltd","commercial_spaceflight","company","plans","involve","modified","soyuz_spacecraft","soyuz","capsule","docking","boosterocket","earth_orbit","sends","spacecraft","free","return","circumlunar","trajectory","circles","around","price","originally","announced","cost","us_million","per","seat","space_adventures","anderson","eric","anderson","announced","january","one","two","available","seats","sold","soyuz_spacecraft","many","ways","original","soyuz","design","intended","circumlunar","travel","late","soyuz","variant","name","program","made","several","attempts","circumlunar","flight","eventual","success","dse","proposal","launch","soyuz","one","crew","member","two","passengers","aboard","zenit","rocket_family","zenit","rocket","booster","launched","carrying","rocket","stage","weighing","dock","withe","soyuz","propel","ito","circumlunar","velocity","two","different","flight","profiles","originally","proposed","space_adventures","direct","staged","profile","lasting","days","would","involve","docking","booster","stage","intended","propel","craft","andirect","departure","moon","proposed","timeline","flight","plan","follows","day","launch","soyuz_spacecraft","soyuz_spacecraft","low_earth_orbit","day","launch","block","upper_stage","rocket","booster","day","space","rendezvous","soyuz","booster","trans","lunar","injection","burn","systems","days","coasto","moon","circumlunar","trajectory","day","closest","approach","soyuz","loops","around","far","side","moon","days","coast","back","earth","day","atmospheric","reentry","landing","profile","lasting","days","would","incorporate","several","day","visito","international_space_station","flight","plan","withe","booster","stage","moon","soyuz_spacecraft","used","mission","would","modified","soyuz_tma","orbital","soyuz","durable","heat","shield","satellite","constellation","satellite","block","booster","would","use","automatic","docking","system","rendezvous","withe","soyuz","low_earth_orbit","june","spacecom","reported","individuals","interest","purchasing","seats","contract","negotiations","expected","concluded","thend","year","january","space_adventures","anderson","announced","one","two","seats","flight","sold","price","us_million","negotiations","second","seat","way","space_adventures","projected","first","mission","could","occur","space_tourism","firm","offers","flight","around","moon","soyuz","company","website","hasince","changed","indicate","first","mission","launch","thend","decade","mark","wade","author","argued","thathe","zenit","rocket","powerful","enough","mission","thathe","larger","proton","rocket","proton","rocket","fact","needed","calculations","also","shown","fully","fueled","outfitted","block","would","beyond","capabilities","zenit","rocket","would","fire","shortime","order","stabilize","orbit","see_also","space_tourism","space_adventures","list","current","future","lunar","missions","externalinks","dse","alpha","category_commercial_spaceflight","category_human","spaceflight","programs","category_space","adventures","category_space_tourism","category","missions","moon"],"clean_bigrams":[["deep","spacexpedition"],["spacexpedition","alpha"],["alpha","dse"],["dse","alpha"],["name","given"],["mission","proposed"],["first","space"],["space","tourism"],["tourism","space"],["space","tourists"],["fly","around"],["space","adventurespace"],["adventurespace","adventures"],["adventures","ltd"],["commercial","spaceflight"],["spaceflight","company"],["plans","involve"],["modified","soyuz"],["soyuz","spacecraft"],["spacecraft","soyuz"],["soyuz","capsule"],["capsule","docking"],["earth","orbit"],["free","return"],["return","circumlunar"],["circumlunar","trajectory"],["circles","around"],["originally","announced"],["cost","us"],["us","million"],["million","per"],["per","seat"],["seat","space"],["space","adventures"],["anderson","eric"],["eric","anderson"],["anderson","announced"],["two","available"],["available","seats"],["soyuz","spacecraft"],["many","ways"],["original","soyuz"],["soyuz","design"],["circumlunar","travel"],["soyuz","variant"],["made","several"],["several","attempts"],["circumlunar","flight"],["eventual","success"],["dse","proposal"],["one","crew"],["crew","member"],["two","passengers"],["passengers","aboard"],["zenit","rocket"],["rocket","family"],["family","zenit"],["zenit","rocket"],["rocket","booster"],["launched","carrying"],["rocket","stage"],["stage","weighing"],["dock","withe"],["withe","soyuz"],["propel","ito"],["ito","circumlunar"],["circumlunar","velocity"],["velocity","two"],["two","different"],["different","flight"],["flight","profiles"],["originally","proposed"],["space","adventures"],["direct","staged"],["staged","profile"],["profile","lasting"],["days","would"],["would","involve"],["involve","docking"],["booster","stage"],["stage","intended"],["craft","andirect"],["andirect","departure"],["proposed","timeline"],["flight","plan"],["follows","day"],["day","launch"],["soyuz","spacecraft"],["spacecraft","soyuz"],["soyuz","spacecraft"],["low","earth"],["earth","orbit"],["orbit","day"],["day","launch"],["upper","stage"],["rocket","booster"],["booster","day"],["day","space"],["space","rendezvous"],["booster","trans"],["trans","lunar"],["lunar","injection"],["injection","burn"],["systems","days"],["days","coasto"],["moon","circumlunar"],["circumlunar","trajectory"],["trajectory","day"],["day","closest"],["closest","approach"],["soyuz","loops"],["loops","around"],["far","side"],["moon","days"],["days","coast"],["coast","back"],["earth","day"],["day","atmospheric"],["atmospheric","reentry"],["profile","lasting"],["days","would"],["would","incorporate"],["several","day"],["day","visito"],["international","space"],["space","station"],["flight","plan"],["withe","booster"],["booster","stage"],["moon","soyuz"],["soyuz","spacecraft"],["spacecraft","used"],["mission","would"],["modified","soyuz"],["soyuz","tma"],["tma","orbital"],["orbital","soyuz"],["durable","heat"],["heat","shield"],["satellite","constellation"],["booster","would"],["would","use"],["automatic","docking"],["docking","system"],["rendezvous","withe"],["withe","soyuz"],["low","earth"],["earth","orbit"],["june","spacecom"],["spacecom","reported"],["purchasing","seats"],["contract","negotiations"],["negotiations","expected"],["january","space"],["space","adventures"],["anderson","announced"],["two","seats"],["us","million"],["second","seat"],["space","adventures"],["adventures","projected"],["first","mission"],["mission","could"],["could","occur"],["space","tourism"],["tourism","firm"],["firm","offers"],["offers","flight"],["flight","around"],["moon","soyuz"],["website","hasince"],["first","mission"],["decade","mark"],["mark","wade"],["wade","author"],["argued","thathe"],["thathe","zenit"],["zenit","rocket"],["powerful","enough"],["thathe","larger"],["larger","proton"],["proton","rocket"],["rocket","proton"],["proton","rocket"],["also","shown"],["fully","fueled"],["would","beyond"],["zenit","rocket"],["orbit","see"],["see","also"],["also","space"],["space","tourism"],["tourism","space"],["space","adventures"],["adventures","list"],["future","lunar"],["lunar","missions"],["missions","externalinks"],["dse","alpha"],["alpha","category"],["category","commercial"],["commercial","spaceflight"],["spaceflight","category"],["category","human"],["human","spaceflight"],["spaceflight","programs"],["programs","category"],["category","space"],["space","adventures"],["adventures","category"],["category","space"],["space","tourism"],["tourism","category"],["category","missions"]],"all_collocations":["deep spacexpedition","spacexpedition alpha","alpha dse","dse alpha","name given","mission proposed","first space","space tourism","tourism space","space tourists","fly around","space adventurespace","adventurespace adventures","adventures ltd","commercial spaceflight","spaceflight company","plans involve","modified soyuz","soyuz spacecraft","spacecraft soyuz","soyuz capsule","capsule docking","earth orbit","free return","return circumlunar","circumlunar trajectory","circles around","originally announced","cost us","us million","million per","per seat","seat space","space adventures","anderson eric","eric anderson","anderson announced","two available","available seats","soyuz spacecraft","many ways","original soyuz","soyuz design","circumlunar travel","soyuz variant","made several","several attempts","circumlunar flight","eventual success","dse proposal","one crew","crew member","two passengers","passengers aboard","zenit rocket","rocket family","family zenit","zenit rocket","rocket booster","launched carrying","rocket stage","stage weighing","dock withe","withe soyuz","propel ito","ito circumlunar","circumlunar velocity","velocity two","two different","different flight","flight profiles","originally proposed","space adventures","direct staged","staged profile","profile lasting","days would","would involve","involve docking","booster stage","stage intended","craft andirect","andirect departure","proposed timeline","flight plan","follows day","day launch","soyuz spacecraft","spacecraft soyuz","soyuz spacecraft","low earth","earth orbit","orbit day","day launch","upper stage","rocket booster","booster day","day space","space rendezvous","booster trans","trans lunar","lunar injection","injection burn","systems days","days coasto","moon circumlunar","circumlunar trajectory","trajectory day","day closest","closest approach","soyuz loops","loops around","far side","moon days","days coast","coast back","earth day","day atmospheric","atmospheric reentry","profile lasting","days would","would incorporate","several day","day visito","international space","space station","flight plan","withe booster","booster stage","moon soyuz","soyuz spacecraft","spacecraft used","mission would","modified soyuz","soyuz tma","tma orbital","orbital soyuz","durable heat","heat shield","satellite constellation","booster would","would use","automatic docking","docking system","rendezvous withe","withe soyuz","low earth","earth orbit","june spacecom","spacecom reported","purchasing seats","contract negotiations","negotiations expected","january space","space adventures","anderson announced","two seats","us million","second seat","space adventures","adventures projected","first mission","mission could","could occur","space tourism","tourism firm","firm offers","offers flight","flight around","moon soyuz","website hasince","first mission","decade mark","mark wade","wade author","argued thathe","thathe zenit","zenit rocket","powerful enough","thathe larger","larger proton","proton rocket","rocket proton","proton rocket","also shown","fully fueled","would beyond","zenit rocket","orbit see","see also","also space","space tourism","tourism space","space adventures","adventures list","future lunar","lunar missions","missions externalinks","dse alpha","alpha category","category commercial","commercial spaceflight","spaceflight category","category human","human spaceflight","spaceflight programs","programs category","category space","space adventures","adventures category","category space","space tourism","tourism category","category missions"],"new_description":"deep spacexpedition alpha dse alpha name given lunar mission proposed take first space_tourism space_tourists fly around moon mission organized space_adventurespace adventures ltd commercial_spaceflight company plans involve modified soyuz_spacecraft soyuz capsule docking boosterocket earth_orbit sends spacecraft free return circumlunar trajectory circles around price originally announced cost us_million per seat space_adventures anderson eric anderson announced january one two available seats sold million_use soyuz_spacecraft many ways original soyuz design intended circumlunar travel late soyuz variant name program made several attempts circumlunar flight eventual success dse proposal launch soyuz one crew member two passengers aboard zenit rocket_family zenit rocket booster launched carrying rocket stage weighing dock withe soyuz propel ito circumlunar velocity two different flight profiles originally proposed space_adventures direct staged profile lasting days would involve docking booster stage intended propel craft andirect departure moon proposed timeline flight plan follows day launch soyuz_spacecraft soyuz_spacecraft low_earth_orbit day launch block upper_stage rocket booster day space rendezvous soyuz booster trans lunar injection burn systems days coasto moon circumlunar trajectory day closest approach soyuz loops around far side moon days coast back earth day atmospheric reentry landing profile lasting days would incorporate several day visito international_space_station flight plan withe booster stage moon soyuz_spacecraft used mission would modified soyuz_tma orbital soyuz durable heat shield satellite constellation satellite block booster would use automatic docking system rendezvous withe soyuz low_earth_orbit june spacecom reported individuals interest purchasing seats contract negotiations expected concluded thend year january space_adventures anderson announced one two seats flight sold price us_million negotiations second seat way space_adventures projected first mission could occur space_tourism firm offers flight around moon soyuz company website hasince changed indicate first mission launch thend decade mark wade author argued thathe zenit rocket powerful enough mission thathe larger proton rocket proton rocket fact needed calculations also shown fully fueled outfitted block would beyond capabilities zenit rocket would fire shortime order stabilize orbit see_also space_tourism space_adventures list current future lunar missions externalinks dse alpha category_commercial_spaceflight category_human spaceflight programs category_space adventures category_space_tourism category missions moon"},{"title":"Dynamic packaging","description":"dynamic packaging is a method used in package holiday bookings to enable consumers to build their own package oflights hotel accommodation and carental instead of purchasing a pre defined package dynamic packages differ from traditional package tour s in thathe pricing is always based on current availability escorted group tours are rarely included and trip specific add onsuch as airport parking and show tickets are often available dynamic packages are similar in that often the air hotel and carates are available only as part of a package or only from a specific seller the term dynamic packaging is often used incorrectly to describe the lessophisticated process of interchanging various travel components within a package however this practice is more accurately described as dynamic bundling true dynamic packaging demands the automated recombination of travel components based on the inclusion of rules that not only dictate the content of the package but also conditional pricing rules based on various conditionsuch as the trip characteristicsuppliers contributing components the channel of distribution and terms of sale dynamic packages are primarily sold online but online travel agency travel agencies will also sell by phone owing to the strong margins and high sale price of the product dynamic packaging is dynamic at severalevels firstly inventory isourcedynamically meaning the dynamic packaging solution will source flights accommodation and carental components for the package in real time secondly these components are dynamically combined into packages thirdly the package is dynamically priced and is usually given an opaque total price dynamic packages are normally given a single opaque price meaning the wholesaler s cost of the individual components is hidden from the consumer the wholesaler often obtainspecial package only cost rates for travel componentsuch as negotiated fares for flights or special package rates for accommodation or carental these cost prices are typically significantly lower than the cost pricesuppliers offer for the same products if they were to be sold asingle components hence the wholesaler will be able toffer the consumer a combined saving for the dynamic package without reducing his own margins opaque pricing of dynamic packages hide the price of the included components this haseveral benefitsuppliers of travel products often impose a minimum selling price for their products for instance a hotel might give the wholesaler a room at cost price x but on the condition thathe room is not sold for less than y hotels do this to prevent wholesalers from competing withemselves with dynamic packaging the customer is not presented withe room price only the overall package price so hotels typically allow the wholesaler to discounthe hidden price of the hotel more opaque pricing also has benefits for airlines tend to increase their fares the closer you geto the departure dateven if there are many available seats this to train the consumers to book early making it easier for the airline to do properevenue management if airlines were to dump their fares if a flight failed to fill up then this would train the customers to wait until very close to departure before booking this would make it virtually impossible for an airline to manage their fares could then only be determined based on historical datand not based on current demandynamic packaging allows an airline to get rid of distressed inventory at discounted fares as the discounted fare is effectively hidden from the consumer dynamic packaging is alsoften misunderstood since it requires thathe provider of dynamic packaging be a wholesaler who must also issue tickets vouchers or otheredeemable coupons in order to become a dynamic packager without an inventory management system and a ticket coupon or voucher issuing system to make the prices of the individual components appear as one price to the consumer and allow each travel service provider to knowhat rate to accept or charge the traveler dynamic packaging does not work many travel retailers have mistakenly assumed they could provide dynamic packaging without an inventory management systemark up engine with business rules and a ticket issuing and resolution system the wholesaler must either directly control the inventory that is combined into packages or buy the package components up front from other travel suppliers this implies that dynamic packages as with static packages are always pre paid by the customer the wholesaler would typically also require special discounted fares rates from the travel suppliers for carental the supplier carental company or intermediary should ideally supply their price based on calendar days rather than hour by hour calendar day rates reduce the number of vehicle availability pricing scans the wholesaler must make for packages that include flights the outbound arrival and return departure date times determine the carental pick up androp off date times if carental rates were by the hour they wouldiffer for each flight option hence the wholesaler would have to issue a vehicle availability search for each available flight while withourates one single vehicle availability search is enough to cater for all flight optionsee also travel technology references externalinks dynamic packaging faq from travelweeklycouk category tourism","main_words":["dynamic","packaging","method","used","package_holiday","bookings","enable","consumers","build","package","oflights","hotel","accommodation","carental","instead","purchasing","pre","defined","package","dynamic","packages","differ","traditional","package","tour","thathe","pricing","always","based","current","availability","escorted","group","tours","rarely","included","trip","specific","add","airport","parking","show","tickets","often","available","dynamic","packages","similar","often","air","hotel","available","part","package","specific","seller","term","dynamic_packaging","often_used","describe","process","various","travel","components","within","package","however","practice","accurately","described","dynamic","true","dynamic_packaging","demands","automated","travel","components","based","inclusion","rules","content","package","also","pricing","rules","based","various","trip","contributing","components","channel","distribution","terms","sale","dynamic","packages","primarily","sold","online","online_travel_agency","travel_agencies","also_sell","phone","owing","strong","margins","high","sale","price","product","dynamic_packaging","dynamic","firstly","inventory","meaning","dynamic_packaging","solution","source","flights","accommodation","carental","components","package","real_time","secondly","components","combined","packages","package","priced","usually","given","opaque","total","price","dynamic","packages","normally","given","single","opaque","price","meaning","wholesaler","cost","individual","components","hidden","consumer","wholesaler","often","package","cost","rates","travel","negotiated","fares","flights","special","package","rates","accommodation","carental","cost","prices","typically","significantly","lower_cost","offer","products","sold","components","hence","wholesaler","able","toffer","consumer","combined","saving","dynamic","package","without","reducing","margins","opaque","pricing","dynamic","packages","hide","price","included","components","haseveral","travel","products","often","impose","minimum","selling","price","products","instance","hotel","might","give","wholesaler","room","cost","price","x","condition","thathe","room","sold","less","hotels","prevent","competing","dynamic_packaging","customer","presented","withe","room","price","overall","package","price","hotels","typically","allow","wholesaler","hidden","price","hotel","opaque","pricing","also","benefits","airlines","tend","increase","fares","closer","geto","departure","many","available","seats","train","consumers","book","early","making","easier","airline","management","airlines","fares","flight","failed","fill","would","train","customers","wait","close","departure","booking","would","make","virtually","impossible","airline","manage","fares","could","determined","based","historical","datand","based","current","packaging","allows","airline","get","rid","inventory","discounted","fares","discounted","fare","effectively","hidden","consumer","dynamic_packaging","alsoften","since","requires","thathe","provider","dynamic_packaging","wholesaler","must_also","issue","tickets","order","become","dynamic","without","inventory","management","system","ticket","issuing","system","make","prices","individual","components","appear","one","price","consumer","allow","travel","service","provider","rate","accept","charge","traveler","dynamic_packaging","work","many","travel","retailers","assumed","could","provide","dynamic_packaging","without","inventory","management","engine","business","rules","ticket","issuing","resolution","system","wholesaler","must","either","directly","control","inventory","combined","packages","buy","package","components","front","travel","suppliers","implies","dynamic","packages","static","packages","always","pre","paid","customer","wholesaler","would","typically","also","require","special","discounted","fares","rates","travel","suppliers","carental","supplier","carental","company","ideally","supply","price","based","calendar","days","rather","hour","hour","calendar","day","rates","reduce","number","vehicle","availability","pricing","wholesaler","must","make","packages","include","flights","outbound","arrival","return","departure","date","times","determine","carental","pick","date","times","carental","rates","hour","flight","option","hence","wholesaler","would","issue","vehicle","availability","search","available","flight","one","single","vehicle","availability","search","enough","cater","flight","also","travel_technology","references_externalinks","dynamic_packaging","faq","category_tourism"],"clean_bigrams":[["dynamic","packaging"],["method","used"],["package","holiday"],["holiday","bookings"],["enable","consumers"],["package","oflights"],["oflights","hotel"],["hotel","accommodation"],["carental","instead"],["pre","defined"],["defined","package"],["package","dynamic"],["dynamic","packages"],["packages","differ"],["traditional","package"],["package","tour"],["thathe","pricing"],["always","based"],["current","availability"],["availability","escorted"],["escorted","group"],["group","tours"],["rarely","included"],["trip","specific"],["specific","add"],["airport","parking"],["show","tickets"],["often","available"],["available","dynamic"],["dynamic","packages"],["air","hotel"],["specific","seller"],["term","dynamic"],["dynamic","packaging"],["often","used"],["various","travel"],["travel","components"],["components","within"],["package","however"],["accurately","described"],["true","dynamic"],["dynamic","packaging"],["packaging","demands"],["travel","components"],["components","based"],["pricing","rules"],["rules","based"],["contributing","components"],["sale","dynamic"],["dynamic","packages"],["primarily","sold"],["sold","online"],["online","travel"],["travel","agency"],["agency","travel"],["travel","agencies"],["also","sell"],["phone","owing"],["strong","margins"],["high","sale"],["sale","price"],["product","dynamic"],["dynamic","packaging"],["firstly","inventory"],["dynamic","packaging"],["packaging","solution"],["source","flights"],["flights","accommodation"],["carental","components"],["real","time"],["time","secondly"],["usually","given"],["opaque","total"],["total","price"],["price","dynamic"],["dynamic","packages"],["normally","given"],["single","opaque"],["opaque","price"],["price","meaning"],["individual","components"],["wholesaler","often"],["cost","rates"],["negotiated","fares"],["special","package"],["package","rates"],["cost","prices"],["typically","significantly"],["significantly","lower"],["components","hence"],["able","toffer"],["combined","saving"],["dynamic","package"],["package","without"],["without","reducing"],["margins","opaque"],["opaque","pricing"],["dynamic","packages"],["packages","hide"],["included","components"],["travel","products"],["products","often"],["often","impose"],["minimum","selling"],["selling","price"],["hotel","might"],["might","give"],["cost","price"],["price","x"],["condition","thathe"],["thathe","room"],["dynamic","packaging"],["presented","withe"],["withe","room"],["room","price"],["overall","package"],["package","price"],["hotels","typically"],["typically","allow"],["hidden","price"],["opaque","pricing"],["pricing","also"],["airlines","tend"],["many","available"],["available","seats"],["book","early"],["early","making"],["flight","failed"],["would","train"],["would","make"],["virtually","impossible"],["fares","could"],["determined","based"],["historical","datand"],["packaging","allows"],["get","rid"],["discounted","fares"],["discounted","fare"],["effectively","hidden"],["consumer","dynamic"],["dynamic","packaging"],["requires","thathe"],["thathe","provider"],["dynamic","packaging"],["wholesaler","must"],["must","also"],["also","issue"],["issue","tickets"],["inventory","management"],["management","system"],["ticket","issuing"],["issuing","system"],["individual","components"],["components","appear"],["one","price"],["travel","service"],["service","provider"],["traveler","dynamic"],["dynamic","packaging"],["work","many"],["many","travel"],["travel","retailers"],["could","provide"],["provide","dynamic"],["dynamic","packaging"],["packaging","without"],["inventory","management"],["business","rules"],["ticket","issuing"],["resolution","system"],["wholesaler","must"],["must","either"],["either","directly"],["directly","control"],["package","components"],["travel","suppliers"],["dynamic","packages"],["static","packages"],["always","pre"],["pre","paid"],["wholesaler","would"],["would","typically"],["typically","also"],["also","require"],["require","special"],["special","discounted"],["discounted","fares"],["fares","rates"],["travel","suppliers"],["supplier","carental"],["carental","company"],["ideally","supply"],["price","based"],["calendar","days"],["days","rather"],["hour","calendar"],["calendar","day"],["day","rates"],["rates","reduce"],["vehicle","availability"],["availability","pricing"],["wholesaler","must"],["must","make"],["include","flights"],["outbound","arrival"],["return","departure"],["departure","date"],["date","times"],["times","determine"],["carental","pick"],["date","times"],["carental","rates"],["flight","option"],["option","hence"],["wholesaler","would"],["vehicle","availability"],["availability","search"],["available","flight"],["one","single"],["single","vehicle"],["vehicle","availability"],["availability","search"],["also","travel"],["travel","technology"],["technology","references"],["references","externalinks"],["externalinks","dynamic"],["dynamic","packaging"],["packaging","faq"],["category","tourism"]],"all_collocations":["dynamic packaging","method used","package holiday","holiday bookings","enable consumers","package oflights","oflights hotel","hotel accommodation","carental instead","pre defined","defined package","package dynamic","dynamic packages","packages differ","traditional package","package tour","thathe pricing","always based","current availability","availability escorted","escorted group","group tours","rarely included","trip specific","specific add","airport parking","show tickets","often available","available dynamic","dynamic packages","air hotel","specific seller","term dynamic","dynamic packaging","often used","various travel","travel components","components within","package however","accurately described","true dynamic","dynamic packaging","packaging demands","travel components","components based","pricing rules","rules based","contributing components","sale dynamic","dynamic packages","primarily sold","sold online","online travel","travel agency","agency travel","travel agencies","also sell","phone owing","strong margins","high sale","sale price","product dynamic","dynamic packaging","firstly inventory","dynamic packaging","packaging solution","source flights","flights accommodation","carental components","real time","time secondly","usually given","opaque total","total price","price dynamic","dynamic packages","normally given","single opaque","opaque price","price meaning","individual components","wholesaler often","cost rates","negotiated fares","special package","package rates","cost prices","typically significantly","significantly lower","components hence","able toffer","combined saving","dynamic package","package without","without reducing","margins opaque","opaque pricing","dynamic packages","packages hide","included components","travel products","products often","often impose","minimum selling","selling price","hotel might","might give","cost price","price x","condition thathe","thathe room","dynamic packaging","presented withe","withe room","room price","overall package","package price","hotels typically","typically allow","hidden price","opaque pricing","pricing also","airlines tend","many available","available seats","book early","early making","flight failed","would train","would make","virtually impossible","fares could","determined based","historical datand","packaging allows","get rid","discounted fares","discounted fare","effectively hidden","consumer dynamic","dynamic packaging","requires thathe","thathe provider","dynamic packaging","wholesaler must","must also","also issue","issue tickets","inventory management","management system","ticket issuing","issuing system","individual components","components appear","one price","travel service","service provider","traveler dynamic","dynamic packaging","work many","many travel","travel retailers","could provide","provide dynamic","dynamic packaging","packaging without","inventory management","business rules","ticket issuing","resolution system","wholesaler must","must either","either directly","directly control","package components","travel suppliers","dynamic packages","static packages","always pre","pre paid","wholesaler would","would typically","typically also","also require","require special","special discounted","discounted fares","fares rates","travel suppliers","supplier carental","carental company","ideally supply","price based","calendar days","days rather","hour calendar","calendar day","day rates","rates reduce","vehicle availability","availability pricing","wholesaler must","must make","include flights","outbound arrival","return departure","departure date","date times","times determine","carental pick","date times","carental rates","flight option","option hence","wholesaler would","vehicle availability","availability search","available flight","one single","single vehicle","vehicle availability","availability search","also travel","travel technology","technology references","references externalinks","externalinks dynamic","dynamic packaging","packaging faq","category tourism"],"new_description":"dynamic packaging method used package_holiday bookings enable consumers build package oflights hotel accommodation carental instead purchasing pre defined package dynamic packages differ traditional package tour thathe pricing always based current availability escorted group tours rarely included trip specific add airport parking show tickets often available dynamic packages similar often air hotel available part package specific seller term dynamic_packaging often_used describe process various travel components within package however practice accurately described dynamic true dynamic_packaging demands automated travel components based inclusion rules content package also pricing rules based various trip contributing components channel distribution terms sale dynamic packages primarily sold online online_travel_agency travel_agencies also_sell phone owing strong margins high sale price product dynamic_packaging dynamic firstly inventory meaning dynamic_packaging solution source flights accommodation carental components package real_time secondly components combined packages package priced usually given opaque total price dynamic packages normally given single opaque price meaning wholesaler cost individual components hidden consumer wholesaler often package cost rates travel negotiated fares flights special package rates accommodation carental cost prices typically significantly lower_cost offer products sold components hence wholesaler able toffer consumer combined saving dynamic package without reducing margins opaque pricing dynamic packages hide price included components haseveral travel products often impose minimum selling price products instance hotel might give wholesaler room cost price x condition thathe room sold less hotels prevent competing dynamic_packaging customer presented withe room price overall package price hotels typically allow wholesaler hidden price hotel opaque pricing also benefits airlines tend increase fares closer geto departure many available seats train consumers book early making easier airline management airlines fares flight failed fill would train customers wait close departure booking would make virtually impossible airline manage fares could determined based historical datand based current packaging allows airline get rid inventory discounted fares discounted fare effectively hidden consumer dynamic_packaging alsoften since requires thathe provider dynamic_packaging wholesaler must_also issue tickets order become dynamic without inventory management system ticket issuing system make prices individual components appear one price consumer allow travel service provider rate accept charge traveler dynamic_packaging work many travel retailers assumed could provide dynamic_packaging without inventory management engine business rules ticket issuing resolution system wholesaler must either directly control inventory combined packages buy package components front travel suppliers implies dynamic packages static packages always pre paid customer wholesaler would typically also require special discounted fares rates travel suppliers carental supplier carental company ideally supply price based calendar days rather hour hour calendar day rates reduce number vehicle availability pricing wholesaler must make packages include flights outbound arrival return departure date times determine carental pick date times carental rates hour flight option hence wholesaler would issue vehicle availability search available flight one single vehicle availability search enough cater flight also travel_technology references_externalinks dynamic_packaging faq category_tourism"},{"title":"Early bird dinner","description":"early birdinner is a dinner served earlier than traditional dinner hours particularly at a restaurant many establishments offer a seating prior to their main dinner seating with a reduced price menu often more limited in selection than the standardinner menu some restaurants offer specific meals or meal options which are sometimes referred to as early bird specials the hours which are deemed as early bird hours differ depending on the locale and thestablishment or pm are common end times for early bird seating early bird seating may be ashort as an hour or may be several hours long early birdinners are often stereotypically associated withe old agelderly and by association florida but are offered throughoutheastern united states and canada see also list of restauranterminology category dinner category restauranterminology","main_words":["early","dinner","served","earlier","traditional","dinner","hours","particularly","restaurant","many","establishments","offer","seating","prior","main","dinner","seating","reduced","price","menu","often","limited","selection","menu","restaurants_offer","specific","meals","meal","options","sometimes","referred","early","bird","specials","hours","deemed","early","bird","hours","differ","depending","locale","thestablishment","common","end","times","early","bird","seating","early","bird","seating","may","hour","may","several","hours","long","early","often","associated_withe","old","association","florida","offered","united_states","canada","see_also","list","restauranterminology_category","dinner","category_restauranterminology"],"clean_bigrams":[["dinner","served"],["served","earlier"],["traditional","dinner"],["dinner","hours"],["hours","particularly"],["restaurant","many"],["many","establishments"],["establishments","offer"],["seating","prior"],["main","dinner"],["dinner","seating"],["reduced","price"],["price","menu"],["menu","often"],["restaurants","offer"],["offer","specific"],["specific","meals"],["meal","options"],["sometimes","referred"],["early","bird"],["bird","specials"],["early","bird"],["bird","hours"],["hours","differ"],["differ","depending"],["common","end"],["end","times"],["early","bird"],["bird","seating"],["seating","early"],["early","bird"],["bird","seating"],["seating","may"],["several","hours"],["hours","long"],["long","early"],["associated","withe"],["withe","old"],["association","florida"],["united","states"],["canada","see"],["see","also"],["also","list"],["restauranterminology","category"],["category","dinner"],["dinner","category"],["category","restauranterminology"]],"all_collocations":["dinner served","served earlier","traditional dinner","dinner hours","hours particularly","restaurant many","many establishments","establishments offer","seating prior","main dinner","dinner seating","reduced price","price menu","menu often","restaurants offer","offer specific","specific meals","meal options","sometimes referred","early bird","bird specials","early bird","bird hours","hours differ","differ depending","common end","end times","early bird","bird seating","seating early","early bird","bird seating","seating may","several hours","hours long","long early","associated withe","withe old","association florida","united states","canada see","see also","also list","restauranterminology category","category dinner","dinner category","category restauranterminology"],"new_description":"early dinner served earlier traditional dinner hours particularly restaurant many establishments offer seating prior main dinner seating reduced price menu often limited selection menu restaurants_offer specific meals meal options sometimes referred early bird specials hours deemed early bird hours differ depending locale thestablishment common end times early bird seating early bird seating may hour may several hours long early often associated_withe old association florida offered united_states canada see_also list restauranterminology_category dinner category_restauranterminology"},{"title":"Easy Milano","description":"easy milano is a fortnightly magazine for thenglish speaking community of milan the publication lists businesses and associations relevanto international expats as well as bilingual italians history and profileasy milano was founded in by editor in chief amie louie and partner aaron pugliesin february it published its first issue and launched its website which makes ithe longest running english language publication catering to expatriates residing in milan easy milano is published by its parent company b easy srl withendorsement of the comune di milano city of miland the provincia di milano province of milan amie louie to present in addition to classified ad listings easy milano releases articles and announcements from consulates embassies and trade offices of english speaking nations present in italy such as the british consulate uk trade investment and embassy of the united states rome in milan it also interviews many influential figures including politicians and members from the diplomaticommunity such as the former mayor of milan letizia moratti the mayor of milan giuliano pisapia the british ambassador to italy edward chaplin diplomat edward chaplin and former united states ambassador to italy ronald p spogli easy milano has organized many anglo themed events usually including charity fundraisersuch as j milan the us independence day celebrations as well as high profileventsuch as the us electionight party in thesevents have been frequently covered by national media in italy such as rai sky tg telenova la repubblicand il giornale see also list of magazines published in italy externalinks category establishments in italy category city guides category english language magazines category expatriates in italy expatriates in italy category fortnightly magazines category italian magazines category listings magazines category local interest magazines category magazinestablished in category magazines published in milan","main_words":["easy","milano","magazine","thenglish","speaking","community","milan","publication","lists","businesses","associations","relevanto","international","well","bilingual","italians","history","milano","founded","editor","chief","partner","aaron","february","published","first_issue","launched","website","makes","ithe","longest_running","english_language","publication","catering","expatriates","residing","milan","easy","milano","published","parent_company","b","easy","milano","city","miland","milano","province","milan","present","addition","classified","listings","easy","milano","releases","articles","announcements","trade","offices","english_speaking","nations","present","italy","british","uk","trade","investment","embassy","united_states","rome","milan","also","interviews","many","influential","figures","including","politicians","members","former","mayor","milan","mayor","milan","british","ambassador","italy","edward","chaplin","diplomat","edward","chaplin","former","united_states","ambassador","italy","ronald","p","easy","milano","organized","many","anglo","themed","events","usually","including","charity","j","milan","us","independence","day","celebrations","well","high","us","party","thesevents","frequently","covered","national","media","italy","sky","la","see_also","list","italy","externalinks_category_establishments","category_english_language_magazines","category","expatriates","italy","expatriates","category","italian","magazines_category","listings","magazines_category_local_interest_magazines","category_magazinestablished","category_magazines_published","milan"],"clean_bigrams":[["easy","milano"],["thenglish","speaking"],["speaking","community"],["publication","lists"],["lists","businesses"],["associations","relevanto"],["relevanto","international"],["bilingual","italians"],["italians","history"],["partner","aaron"],["first","issue"],["makes","ithe"],["ithe","longest"],["longest","running"],["running","english"],["english","language"],["language","publication"],["publication","catering"],["expatriates","residing"],["milan","easy"],["easy","milano"],["parent","company"],["company","b"],["b","easy"],["easy","milano"],["milano","city"],["milano","province"],["listings","easy"],["easy","milano"],["milano","releases"],["releases","articles"],["trade","offices"],["english","speaking"],["speaking","nations"],["nations","present"],["uk","trade"],["trade","investment"],["united","states"],["states","rome"],["also","interviews"],["interviews","many"],["many","influential"],["influential","figures"],["figures","including"],["including","politicians"],["former","mayor"],["british","ambassador"],["italy","edward"],["edward","chaplin"],["chaplin","diplomat"],["diplomat","edward"],["edward","chaplin"],["former","united"],["united","states"],["states","ambassador"],["italy","ronald"],["ronald","p"],["easy","milano"],["organized","many"],["many","anglo"],["anglo","themed"],["themed","events"],["events","usually"],["usually","including"],["including","charity"],["j","milan"],["us","independence"],["independence","day"],["day","celebrations"],["frequently","covered"],["national","media"],["see","also"],["also","list"],["magazines","published"],["italy","externalinks"],["externalinks","category"],["category","establishments"],["italy","category"],["category","city"],["city","guides"],["guides","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","expatriates"],["italy","expatriates"],["italy","category"],["category","magazines"],["magazines","category"],["category","italian"],["italian","magazines"],["magazines","category"],["category","listings"],["listings","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"]],"all_collocations":["easy milano","thenglish speaking","speaking community","publication lists","lists businesses","associations relevanto","relevanto international","bilingual italians","italians history","partner aaron","first issue","makes ithe","ithe longest","longest running","running english","english language","language publication","publication catering","expatriates residing","milan easy","easy milano","parent company","company b","b easy","easy milano","milano city","milano province","listings easy","easy milano","milano releases","releases articles","trade offices","english speaking","speaking nations","nations present","uk trade","trade investment","united states","states rome","also interviews","interviews many","many influential","influential figures","figures including","including politicians","former mayor","british ambassador","italy edward","edward chaplin","chaplin diplomat","diplomat edward","edward chaplin","former united","united states","states ambassador","italy ronald","ronald p","easy milano","organized many","many anglo","anglo themed","themed events","events usually","usually including","including charity","j milan","us independence","independence day","day celebrations","frequently covered","national media","see also","also list","magazines published","italy externalinks","externalinks category","category establishments","italy category","category city","city guides","guides category","category english","english language","language magazines","magazines category","category expatriates","italy expatriates","italy category","category magazines","magazines category","category italian","italian magazines","magazines category","category listings","listings magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines published"],"new_description":"easy milano magazine thenglish speaking community milan publication lists businesses associations relevanto international well bilingual italians history milano founded editor chief partner aaron february published first_issue launched website makes ithe longest_running english_language publication catering expatriates residing milan easy milano published parent_company b easy milano city miland milano province milan present addition classified listings easy milano releases articles announcements trade offices english_speaking nations present italy british uk trade investment embassy united_states rome milan also interviews many influential figures including politicians members former mayor milan mayor milan british ambassador italy edward chaplin diplomat edward chaplin former united_states ambassador italy ronald p easy milano organized many anglo themed events usually including charity j milan us independence day celebrations well high us party thesevents frequently covered national media italy sky la see_also list magazines_published italy externalinks_category_establishments italy_category_city_guides category_english_language_magazines category expatriates italy expatriates italy_category_magazines category italian magazines_category listings magazines_category_local_interest_magazines category_magazinestablished category_magazines_published milan"},{"title":"Ecotourism","description":"file llano del muerto in perquin el salvadorjpg thumb llano del muerto waterfall in el salvador ecotourism is a form of tourism involving visiting fragile pristine and relatively undisturbed natural areas intended as a low impact and often small scale alternative to standard commercial mass tourism it means responsible travel to natural areas conserving thenvironment and improving the well being of the local people the international ecotourism society website wwwecotourismorg access date its purpose may be to educate the traveler to provide funds for ecological conservation to directly benefitheconomic development and political empowerment of local communities or to fosterespect for different cultures and for human rightsince the s ecotourism has been considered a critical endeavor by environmentalistso that future generations may experience destinations relatively untouched by human intervention several university programs use this description as the working definition of ecotourismuntamed path defining ecotourism retrieved on generally ecotourism deals with interaction with bioticomponents of the natural environmentssadry bn fundamentals of geotourism with a special emphasis on iran samt organization publishers tehran p english summary available online at ecotourism focuses on socially responsible travel personal growth and environmental sustainability ecotourism typically involves travel to destinations where flora faunand cultural heritage are the primary attractions ecotourism is intended toffer tourists an insight into the impact of human beings on thenvironment and to foster a greater appreciation of our natural habitats responsiblecotourism programs include those that minimize the negative aspects of conventional tourism on thenvironment and enhance the cultural integrity of local people therefore in addition to evaluating environmental and cultural factors an integral part of ecotourism is the promotion of recycling energy conservation energy efficiency water conservation and creation of economic opportunities for local communities for these reasons ecotourism often appeals to advocates of environmental and social responsibility the term ecotourism like sustainable tourism is considered by many to be an oxymoron like most forms of tourism ecotourism generally depends on air transportation which contributes to global warminglobal climate change additionally the overall effect of sustainable tourism is negative where likecotourism philanthropic aspirations mask hard nosed immediate self interestabler mj eds page tourism and sustainability principles to practice cab international wallingford an ecotourist is different from a tourist in the sense that he or she is mindful of his environment in most cases contributing to the sustainability of such surroundings file h lgevaatlus postipaat helgejpg thumb halichoerus grypuseal watching near malusislands in estonia ecotourism is a responsible tourism which conserves thenvironment and sustains the well being of local people it builds environmental awareness provides direct financial benefits for conservation provides financial benefits and empowerment for local people respects local culture supports human rights andemocratic movementsuch as conservation of biodiversity biological diversity and cultural diversity through ecosystem protection promotion of sustainability sustainable use of biodiversity by providing jobs to local populationsharing of all socio economic benefits with local communities and indigenous peoples by having their informed consent and participation in the management of ecotourism enterprises tourism to unspoiled natural resources with minimal impact on thenvironment being a primary concern minimization of tourism s own environmental impact affordability and lack of waste in the form of luxury local culture florand fauna being the main attractions local people who benefit from this form of tourism economically and often more than mass tourism the international ecotourism society defines ecotourism as responsible travel to natural areas that conserves thenvironment sustains the well being of local people and involves interpretation and education for many countries ecotourism is not simply a marginal activity to finance protection of the natural environment but a major industry of the national economics economy for example in costa rica ecuador nepal kenya madagascar and territoriesuch as antarctica ecotourism represents a significant portion of the gross domestic product and economics economic activity ecotourism is often misinterpreted as any form of tourism that involves nature see jungle tourism self proclaimed practitioners and hosts of ecotourism experiences assume it is achieved by simply creating destinations inatural areas according to critics of this commonplace and assumptive practice truecotourismust above all sensitize people to the beauty and the fragility of nature these critics condemn some operators as greenwash ing their operations using the labels of green and eco friendly while behaving in environmentally irresponsible ways although academics disagree about who can be classified as an ecotourist and there is little statistical data somestimate that more than five million ecotourists the majority of thecotourist population come from the united states with many others from western europe canadand australia currently there are various moves to create national and international ecotourism accreditation programs although the process is also controversial national ecotourism certification programs have been put in place in countriesuch as costa ricaustralia kenya estoniand sweden terminology and history filelephant safarijpg thumb upright px an elephant safari through the jaldapara national park in west bengal india file hanging bridge thenmalajpg thumb right a hanging bridge in ecotourism area of thenmala kerala india india s first planned ecotourism destination ecotourism is a late th century neologism compounded from eco and tourism according to the oxford english dictionary ecotour was first recorded in and ecotourism probably after ecotour in oxford english dictionary second edition cd rom version draft entries december oxford university press citing ecol interpretative map ottawa north bay canad forestry service heading ecotour of the trans canada highway ottawa north bay and titlecological tourism ecotourism a new viewpoint un fao econ comm for europecotour n a tour of or visito an area of ecological interest usually with an educational element in later use also a similar tour or visit designed to have as little detrimental effect on thecology as possible or undertaken withe specific aim of helping conservation efforts ecotourism n tourism to areas of ecological interestypically exotic and often threatened natural environments esp to support conservation efforts and observe wildlife spec access to an endangered environment controlled so as to have the least possible adverseffect one source claims the terms were used earlier claus dieter nick hetzer an academic and adventurer from forum international in berkeley ca supposedly coined ecotourism in and ran the first ecotours in the yucat n during thearly sdavid b weaver thencyclopedia of ecotourism cabi publishing p improving sustainability regulation and accreditation because the regulation of ecotourismay be poorly implemented ecologically destructive greenwashed operations like underwater hotels helicopter tours and wildlife theme parks can be categorized as ecotourism along with canoeing camping photography and wildlife observation the failure to acknowledge responsible low impact ecotourism puts legitimatecotourism companies at a competitive disadvantage many environmentalists have argued for a global standard of accreditation differentiating ecotourism companies based on their level of environmental commitment creating a standard to follow a national or international regulatory board would enforce accreditation procedures with representation from various groups includingovernments hotels tour operators travel agents guides airlines local authorities conservation organizations and non governmental organizations the decisions of the board would be sanctioned by governmentso that non compliant companies would be legally required to disassociate themselves from the use of thecotourism brand crinion suggests a green starsystem based on criteria including a management plan benefit for the local community small group interaction education value and staff training ecotourists who consider their choices would be confident of a genuinecotourism experience when they see the higher starating environmental impact assessment s could also be used as a form of accreditation feasibility is evaluated from a scientific basis and recommendations could be made toptimally plan infrastructure setourist capacity and manage thecology this form of accreditation is more sensitive to site specificonditionsome countries have their own certification programs for ecotourism costa rica for example runs the certification of sustainable tourism cst program which is intended to balance theffecthat business has on the local environmenthe cst program focuses on a company s interaction with natural and cultural resources the improvement of quality of life within local communities and theconomicontribution tother programs of national development cst uses a rating system that categorizes a company based upon how sustainable its operations are cst evaluates the interaction between the company and the surrounding habitathe management policies and operation systems within the company how the company encourages its clients to become an active contributor towardsustainable policies and the interaction between the company and local communities the overall population based upon these criteria the company is evaluated for the strength of itsustainability the measurement index goes from to with being the worst and being the best guidelines and education file sarasotadventure kayak guided tour cormorant among the fleet frd jpg thumb ecotour guide stands on a kayaking kayak spotting dolphins and manatees around lido key an environmental protection strategy must address the issue of ecotourists removed from the cause and effect of their actions on thenvironment more initiativeshould be carried outo improve their awarenessensitize them to environmental issues and care abouthe places they visitour guides are an obvious andirect medium to communicate awareness withe confidence of ecotourists and intimate knowledge of thenvironmentour guides can actively discuss conservation issues informing ecotourists about how there actions on the trip canegatively impactherenvironment and the local people a tour guide training program in costa rica s tortuguero national park has helped mitigate negativenvironmental impacts by providing information and regulating tourists on the parks beaches used by nesting endangered sea turtlesmall scale slow growth and local control the underdevelopmentheory of tourism describes a new form of imperialism by multinational corporations that control ecotourism resources these corporations finance and profit from the development of large scalecotourism that causes excessivenvironmental degradation loss of traditional culture and way of life and exploitation of localabor in zimbabwe and nepal s annapurna region where underdevelopment is taking place more than percent of ecotourism revenues arexpatriated to the parent countries and less than percent go into local communities the lack of sustainability highlights the need for small scale slow growth and locally based ecotourism local peoples have a vested interest in the well being of their community and are therefore more accountable to environmental protection than multinational corporations though they receivery little of the profits the lack of control westernization adverse impacts to thenvironment loss of culture and traditions outweigh the benefits of establishing large scalecotourism the increased contributions of communities to locally managed ecotourism create viableconomic opportunities including high level management positions and reducenvironmental issues associated with poverty and unemployment because thecotourism experience is marketed to a different lifestyle from large scalecotourism the development ofacilities and infrastructure does not need to conform to corporate western tourism standards and can be much simpler and less expensive there is a greater fractional reserve banking multiplier effect on theconomy because local products materials and labor are used profits accrue locally and import leakages areduced the great barriereef park in australia reported over half of a billion dollars of indirect income in the areand added thousands of indirect jobs between and however even this form of tourismay require foreign investment for promotion or start up when such investments arequired it is crucial for communities for find a company or non governmental organization that reflects the philosophy of ecotourism sensitive to their concerns and willing to cooperate athexpense of profithe basic assumption of the multiplier effect is thatheconomy starts off with unused resources for example that many workers are cyclically unemployed and much of industrial capacity isitting idle or incompletely utilized by increasing demand in theconomy it is then possible to boost production if theconomy was already at full employment with only structural frictional or other supply side types of unemployment any attempto boost demand would only lead to inflation for various laissez faire schools of economics which embrace say s law andeny the possibility of keynesian inefficiency and under employment of resources therefore the multiplier concept is irrelevant or wrong headed as an example consider the government increasing its expenditure on roads by million without a corresponding increase in taxation thisum would go to the road builders who would hire more workers andistribute the money as wages and profits the households receiving these incomes will save part of the money and spend the rest on consumer goods thesexpenditures in turn will generate more jobs wages and profits and son withe income and spending circulating around theconomy the multiplier effect arises because of the induced increases in consumer spending which occur due to the increased incomes and because of the feedback into increasing business revenues jobs and income again this process does not lead to an economic explosionot only because of the supply side barriers at potential output full employment but because at each round the increase in consumer spending is less than the increase in consumer incomes that is the marginal propensity to consume mpc is less than one so that each round somextra income goes into saving leaking out of the cumulative process each increase in spending is thusmaller than that of the previous round preventing an explosion efforts to preservecosystems at risk some of the world s most exceptional biodiversity is located in the galapagos islands these islands were designated a unesco world heritage site in then added to unesco s list of world heritage in danger in igtoa is a non profit dedicated to preserving this unique living laboratory againsthe challenges of invasive species human impact and tourism for travelers who wanto be mindful of thenvironment and the impact of tourism it is recommended to utilize an operator that is endorsed by a reputablecotourism organization in the case of the galapagos igtoa has a list of the world s premiere galapagos islands tour companies dedicated to the lasting protection and preservation of the destinationatural resource management natural resource management can be utilized as a specialized tool for the development of ecotourism there are several places throughouthe world where a number of natural resources are abundant but withuman encroachment and habitats these resources are depleting withouthe sustainable use of certain resources they are destroyed and floral and faunal species are becoming extinct ecotourism programs can be introduced for the conservation of these resourceseveral plans and proper management programs can be introduced so thathese resources remain untouched several organizations ngo s and scientists are working on this field natural resources of hill areas like kurseong in west bengal are plenty inumber with various florand fauna butourism for business purpose poised the situation researchers from jadavpur university are presently working in this area for the development of ecotourism to be used as a tool for natural resource management in southeast asia government and nongovernmental organizations are working together with academics and industry operators to spread theconomic benefits of tourism into the kampungs and villages of the region a recently formed alliance the south east asian tourism organisation seato is bringing together these diverse players to discuss resource management concerns a summit held in quebec led to the global sustainable tourism criteria collaborativeffort between the un foundation and other advocacy groups the criteria which are voluntary involve the following standards effective sustainability planning maximum social and economic benefits for local communities minimum negative impacts on cultural heritage and minimum negative impacts on thenvironment clarkin and k hler p there is no enforcing agency or system of punishmentsfor summit in the continuum of tourism activities that stretch from conventional tourism to ecotourism there has been a lot of contention to the limit at which biodiversity preservation local social economic benefits and environmental impact can be considered ecotourism for this reason environmentalistspecial interest groups and governments definecotourism differently environmental organizations have generally insisted that ecotourism is nature based sustainably managed conservation supporting and environmentally educated the tourist industry and governments however focus more on the product aspectreating ecotourism as equivalento any sort of tourism based inature as a further complication many terms are used under the rubric of ecotourism nature tourism low impactourism green tourism bio tourism ecologically responsible tourism and others have been used in literature and marketing although they are not necessarily synonymous with ecotourism the problems associated with defining ecotourism have often led to confusion among tourists and academics many problems are also subject of considerable publicontroversy and concern because of green wash ing a trend towards the commercialization of tourism schemes disguised asustainable nature based and environmentally friendly ecotourism according to mclaren these schemes arenvironmentally destructiveconomically exploitative and culturally insensitive at its worsthey are also morally disconcerting because they mislead tourists and manipulate their concerns for thenvironmenthe development and success of such large scalenergy intensive and ecologically unsustainable schemes are a testamento the tremendous profits associated with being labeled as ecotourism negative impact ecotourism has become one of the fastest growing sectors of the tourism industry growing annually by worldwidemiller one definition of ecotourism is the practice of low impact educational ecologically and culturally sensitive travel that benefits local communities and host countries many of thecotourism projects are not meeting these standards even if some of the guidelines are being executed the local communities are still facing many of the negative impactsouth africa is one of the countries that is reaping significant economic benefits from ecotourism buthe negativeffects far outweigh the positive including forcing people to leave their homes gross violations ofundamental rights and environmental hazards far outweigh the medium term economic benefits miller a tremendous amount of money and human resources continue to be used for ecotourism despite unsuccessful outcomes and even more money is put into public relation campaigns to dilute theffects of criticism ecotourism channels resources away from other projects that could contribute more sustainable and realistic solutions to pressing social and environmental problems the money tourism can generate often ties parks and managements to ecotourism walpolet al buthere is a tension in this relationship becausecotourism often causes conflict and changes in land use rights fails to deliver promises of community level benefits damages environments and has many other social impacts indeed many argue repeatedly that ecotourism is neither ecologically nor socially beneficial yet it persists as a strategy for conservation andevelopment west due to the large profits while several studies are being done on ways to improve thecotourism structure some argue thathesexamples provide a rationale for stopping it altogether however there are some positivexamples among them the kavango zambezi transfrontier conservation area kazand the virunga national park as judged by wwf livelephants have to be worth more in d c vol thecotourism system exercises tremendous financial and political influence thevidence above shows that a strong casexists forestraining such activities in certain locations funding could be used for field studies aimed at finding alternative solutions tourism and the diverse problems africa faces in result of urbanization industrialization and the overexploitation of agriculture athe localevel ecotourism has become a source of conflict over control of land resources and tourism profits in this casecotourism has harmed thenvironment and local people and has led to conflicts over profit distribution in a perfect world morefforts would be made towards educating tourists of thenvironmental and social effects of their travels very few regulations or lawstand in place as boundaries for the investors in ecotourism these should be implemented to prohibithe promotion of unsustainablecotourism projects and materials which project false images of destinations demeaning local and indigenous culture though conservation efforts in east africare indisputably serving the interests of tourism in the region it is importanto make the distinction between conservation acts and the tourism industry eastern african communities are nothe only of developing regions to experienceconomic and social harms from conservation efforts conservation in the northwest yunnan region of china hasimilarly brought drastichanges to traditionaland use in the region prior to logging restrictions imposed by the chinese governmenthe industry made upercent of the regions revenue following a complete ban on commercialogging the indigenous people of the yunnan regionow see little opportunity for economic development ecotourismay provide solutions to theconomic hardshipsuffered from the loss of industry to conservation in the yunnan in the same way that it may serve to remedy the difficulties faced by the maasai astated thecotourism structure must be improved to direct more money into host communities by reducing leakages for the industry to be successful in alleviating poverty in developing regions but it provides a promising opportunity direct environmental impacts ecotourism operations occasionally fail to live up to conservation ideals it isometimes overlooked that ecotourism is a highly consumer centered activity and that environmental conservation is a means to further economic growth although ecotourism is intended for small groups even a modest increase in population however temporary puts extra pressure on the local environment and necessitates the development of additional infrastructure and amenities the construction of water treatment plantsanitation facilities and lodges come withexploitation of non renewablenergy sources and the utilization of already limited local resources the conversion of naturaland to such tourist infrastructure is implicated in deforestation and habitat deterioration of butterflies in mexico and squirrel monkeys in costa rica in other cases thenvironment suffers because local communities are unable to meethe infrastructure demands of ecotourism the lack of adequate sanitation facilities in many east african parks results in the disposal of campsite sewage in rivers contaminating the wildlife livestock and people who draw drinking water from it aside from environmental degradation with tourist infrastructure population pressures from ecotourism also leaves behind garbage and pollution associated withe western lifestyle although ecotourists claim to beducationally sophisticated and environmentally concerned they rarely understand thecological consequences of their visits and how their day to day activities append physical impacts on thenvironment as one scientist observes they rarely acknowledge how the meals they eathe toilets they flush the water they drink and son are all part of broaderegional economic and ecological systems they are helping to reconfigure witheir very activities nor do ecotourists recognize the great consumption of non renewablenergy required to arrive atheir destination which is typically moremote than conventional tourism destinations for instance an exotic journey to a place kilometers away consumes about liters ofuel person ecotourism activities are in and of themselves issues in environmental impact because they may disturb faunand flora ecotourists believe that because they are only taking pictures and leaving footprints they keep ecotourism sites pristine but even harmlessounding activitiesuch as nature hikes can becologically destructive in the annapurna circuit inepal ecotourists have worn down the marked trails and created alternate routes contributing to soil impaction erosion and plant damage where thecotourism activity involves wildlife viewing it can scare away animals disruptheir feeding and nesting sites or acclimate them to the presence of people in kenya wildlife observer disruption drives cheetahs off theireserves increasing the risk of inbreeding and further endangering the species environmental hazards the industrialization urbanization and unsustainable agriculture practices of human society are considered to be having a serious impact on thenvironment ecotourism is now also considered to be playing a role in environmental depletion while the term ecotourismay sound relatively benign one of its most serious impacts is its consumption of virgin territorieskamuaro these invasions often includeforestation disruption of ecologicalife systems and various forms of pollution all of which contribute to environmental degradation for example the number of motor vehicles crossing a park increases as tour driversearch forare species the number of roads disrupts the grass cover whichaserious consequences on plant and animal species these areas also have a higherate of disturbances and invasive species due to increasing traffic off of the beaten path into new undiscovered areas ecotourism also has an effect on species through the value placed on them certain species have gone from being little known or valued by local people to being highly valued commodities the commodification of nature commodification of plants may erase their social value and lead toverproduction within protected areas local people and their images can also be turned into commodities camaro brings up a relatively obvious contradiction any commercial venture into unspoiled pristine land with or withoutheco prefix as a contradiction in terms to generate revenue you have to have a high number of traffic tourists which inevitably means a higher pressure on thenvironment local people most forms of ecotourism are owned by foreign investors and corporations that provide few benefits to the local people an overwhelming majority of profits are put into the pockets of investors instead of reinvestment into the local economy or environmental protection leading to further environmental degradation the limited numbers of local people who aremployed in theconomy enter at its lowest level and are unable to live in tourist areas because of meager wages and a two market system in some cases the resentment by local people results in environmental degradation as a highly publicized case the maasai people maasai nomads in kenya killed wildlife inational parks but are now helping the national park to save the wildlife to show aversion to unfair compensation terms andisplacement from traditionalands the lack of economic opportunities for local people also constrains them to degrade thenvironment as a means of sustenance the presence of affluent ecotourists encourage the development of destructive markets in wildlife souvenirsuch as the sale of coral trinkets on tropical islands and animal products in asia contributing to illegal harvesting and poaching from thenvironment in suriname sea turtle reserves use a very large portion of their budgeto guard againsthese destructive activities displacement of people one of the worst examples of communities being moved in order to create a park is the story of the maasai about of national parks and game reserves in east africare on maasai land the first negative impact of tourism was the land lost from the maasai culture local and national governments took advantage of the maasai s ignorance on the situation and robbed them of huge chunks of grazing land putting to risk their only socio economic livelihood in kenya the maasai also have not gained any economic benefits despite the loss of their land employment favors better educated workers furthermore the investors in this areare not local and have not put any profits back into the local economy in some cases game reserves can be created without informing or consulting the local people the only find out when an evictionotice is delivered another source of resentment is the manipulation of the local people by their government eco tourism works to create simplistic images of local people and their uses and understandings of their surroundings through the lens of these simplified images officials direct policies and projects towards the local people and the local people are blamed if the projects fail west clearly tourism as a trade is not empowering the local people who make it rich and satisfying instead ecotourism exploits andepletes particularly in african maasai tribes it has to be reoriented if it is to be useful to local communities and to become sustainable threats to indigenous cultures ecotourism often claims that it preserves and enhances local cultures evidence shows that withestablishment of protected areas local people have illegally lostheir homes and mostly with no compensation pushing people onto marginalands witharsh climates poor soils lack of water and infested with livestock andisease does little to enhance livelihoods even when a proportion of ecotourism profits are directed back into the community thestablishment of parks can create harsh survival realities andeprive the people of their traditional use of land natural resources ethnic groups are increasingly being seen as a backdrop to the scenery and wildlife the local people struggle for cultural survival and freedom of cultural expression while being observed by tourists local indigenous people also have a strong resentmentowards the change tourism has been allowed to develop with virtually no controls too many lodges have been builtoo much firewood is being used and no limits are being placed on tourism vehicles they regularly drive off track and harass the wildlife their vehicle tracks criss cross thentire masai mara inevitably the bush is becoming eroded andegraded while governments are typically entrusted withe administration and enforcement of environmental protection they often lack the commitment or capability to managecotourism sites the regulations for environmental protection may be vaguely defined costly to implement hard to enforce and uncertain effectiveness government regulatory agencies are susceptible to making decisions that spend on politically beneficial but environmentally unproductive projects because of prestige and conspicuousness the construction of an attractive visitor s center at an ecotourism site may take precedence over more pressing environmental concerns like acquiring habitat protecting endemic species and removing invasive ones finally influential groups can lobbying pressure and sway the interests of the governmento their favor the government and its regulators can become vested in the benefits of thecotourism industry which they are supposed to regulate causing restrictivenvironmental regulations and enforcemento become more lenient management of ecotourism sites by privatecotourism companies offers an alternative to the cost of regulation andeficiency of government agencies it is believed thathese companies have a self interest in limited environmental degradation because tourists will pay more for pristinenvironments which translates to higher profit however theory indicates thathis practice is not economically feasible and will fail to manage thenvironmenthe model of monopolisticompetition states that distinctiveness will entail profits but profits will promote imitation a company that protects its ecotourism sites is able to charge a premium for the novel experience and pristinenvironment but when other companies view the success of this approach they also enter the market with similar practices increasing competition and reducing demand eventually the demand will be reduced until theconomic profit is zero a cost benefit analysishows thathe company bears the cost of environmental protection without receiving the gains without economic incentive the whole premise of self interesthrough environmental protection is quashed instead ecotourism companies will minimizenvironment related expenses and maximize tourism demand the tragedy of the commons offers another model for economic unsustainability from environmental protection in ecotourism sites utilized by many companies although there is a communal incentive to protecthenvironment maximizing the benefits in the long run a company will conclude that it is in their best interesto utilize thecotourism site beyond itsustainablevel by increasing the number of ecotourists for instance a company gains all theconomic benefit while paying only a part of thenvironmental cost in the same way a company recognizes thathere is no incentive to actively protecthenvironmenthey bear all the costs while the benefits are shared by all other companies the result again is mismanagementaken together the mobility oforeign investment and lack of economic incentive for environmental protection means that ecotourism companies are disposed to establishing themselves inew sites once their existing one isufficiently degraded case studies the purpose of ecotourism is to engage tourists in low impact non consumptive and locally oriented environments in order to maintain species and habitats especially in underdeveloped regions while somecotourism projects including some found in the united states can support such claims many projects have failed to addressome of the fundamental issues that nations face in the first place consequently ecotourismay not generate the very benefits it is intended to provide to these regions and their people and in some cases leaving economies in a state worse than before the following case studies illustrate the rising complexity of ecotourism and its impacts both positive and negative on thenvironment and economies of various regions in the world ecotourism in costa rica ecotourism in jordan ecotourism in south africa ecotourism in the united statesee also biodiversity bioregion conservation biology conservation ethiconservation movement conservation reliant species earth sciencecology ecology movement ecosystem ecoteach environmental protection global warmingreen hunting habitat conservation hypermobility travel market governance mechanismarket governance mechanisms natural capital natural environment natural resource naturenewable resource shark tourism sustainable development sustainability furthereading burger j landscapes tourism and conservation the science of the total environment ceballos lascurain h tourism ecotourism and protected areas larkin t and k n k hler ecotourism encyclopedia of environmental issues rev ed pasadena salem press vol pp iucn the international union for the conservation of nature pp ceballos lascurain h ecoturismo naturaleza y desarrollo sostenibleditorial diana pp duffy r shadow players ecotourism development corruption and state politics in belize third world quarterly gutzwiller k j y s h anderson the spatial extent of human intrusion effects on subalpine birdistributions condor nowaczek a ecotourism principles and practices annals of tourism research orams m b tourist getting close to whales is it what whale watching is all aboutourismanagement regueroxide m del ecoturismo nuevas formas de turismo en el espacio rural ed bosch turismo scheyvens r ecotourism and thempowerment of local communities tourismanagement weaver d b ecotourism in the less developed world cab int publ pp isbn externalinks the international ecotourism society nhtv centre for sustainable tourism and transport global sustainable tourism criteria scuba diverswim among the sharks fayetteville observer eco tourism holds promise peril for egyptian oasis npr hunting can help wildlife so can eco tourismother nature network category adventure travel category ecotourism category ecological economics category natural resource management","main_words":["file","llano","del","muerto","perquin","el","thumb","llano","del","muerto","waterfall","el_salvador","ecotourism","form","tourism_involving","visiting","fragile","pristine","relatively","natural","areas","intended","low_impact","often","small_scale","alternative","standard","commercial","mass_tourism","means","responsible_travel","natural","areas","conserving","thenvironment","improving","well","local_people","international","ecotourism","society","website","access_date","purpose","may","educate","traveler","provide","funds","ecological","conservation","directly","development","political","empowerment","local_communities","different","cultures","human","ecotourism","considered","critical","future","generations","may","experience","destinations","relatively","untouched","human","intervention","several","university","programs","use","description","working","definition","path","defining","ecotourism","retrieved","generally","ecotourism","deals","interaction","natural","geotourism","special","emphasis","iran","organization","publishers","tehran","p","english","summary","available_online","ecotourism","focuses","socially","responsible_travel","personal","growth","environmental","sustainability","ecotourism","typically","involves","travel_destinations","flora","faunand","cultural_heritage","primary","attractions","ecotourism","intended","toffer","tourists","insight","impact","human","beings","thenvironment","foster","greater","appreciation","natural","habitats","programs","include","minimize","negative","aspects","conventional","tourism","thenvironment","enhance","cultural","integrity","local_people","therefore","addition","evaluating","environmental","cultural","factors","integral_part","ecotourism","promotion","recycling","energy","conservation","energy","efficiency","water","conservation","creation","economic","opportunities","local_communities","reasons","ecotourism","often","appeals","advocates","environmental","social","responsibility","term","ecotourism","like","sustainable_tourism","considered","many","like","forms","tourism_ecotourism","generally","depends","air","transportation","contributes","global","climate_change","additionally","overall","effect","sustainable_tourism","negative","philanthropic","mask","hard","immediate","self","eds","page","tourism","sustainability","principles","practice","cab","international","wallingford","different","tourist","sense","environment","cases","contributing","sustainability","surroundings","file","h","thumb","watching","near","estonia","ecotourism","responsible_tourism","conserves","thenvironment","sustains","well","local_people","builds","environmental","awareness","provides","direct","financial","benefits","conservation","provides","financial","benefits","empowerment","local_people","respects","local_culture","supports","human_rights","conservation","biodiversity","biological","diversity","cultural","diversity","ecosystem","protection","promotion","sustainability","sustainable","use","biodiversity","providing","jobs","local","socio","economic_benefits","local_communities","indigenous","peoples","informed","consent","participation","management","ecotourism","enterprises","tourism","natural_resources","minimal","impact","thenvironment","primary","concern","tourism","environmental_impact","affordability","lack","waste","form","luxury","local_culture","florand","fauna","main","attractions","local_people","benefit","form","tourism","economically","often","mass_tourism","international","ecotourism","society","defines","ecotourism","responsible_travel","natural","areas","conserves","thenvironment","sustains","well","local_people","involves","interpretation","education","many_countries","ecotourism","simply","activity","finance","protection","natural_environment","major","industry","national","economics","economy","example","costa_rica","ecuador","nepal","kenya","madagascar","antarctica","ecotourism","represents","significant","portion","gross","domestic","product","economics","economic","activity","ecotourism","often","form","tourism","involves","nature","see","jungle_tourism","self","proclaimed","practitioners","hosts","ecotourism","experiences","assume","achieved","simply","creating","destinations","areas","according","critics","commonplace","practice","people","beauty","nature","critics","operators","ing","operations","using","green","eco","friendly","environmentally","ways","although","academics","disagree","classified","little","statistical","data","five","million","ecotourists","majority","population","come","united_states","many_others","western_europe","canadand","australia","currently","various","moves","create","national","international","ecotourism","accreditation","programs","although","process","also","controversial","national","ecotourism","certification","programs","put","place","countriesuch","costa","kenya","sweden","terminology","history","thumb","upright","px","elephant","safari","national_park","west","bengal","india","file","hanging","bridge","thumb","right","hanging","bridge","ecotourism","area","kerala","india","india","first","planned","ecotourism","destination","ecotourism","late_th","century","eco_tourism","according","oxford_english_dictionary","ecotour","first","recorded","ecotourism","probably","ecotour","oxford_english_dictionary","second","edition","rom","version","draft","entries","december","oxford_university_press","citing","map","ottawa","north","bay","forestry","service","heading","ecotour","trans_canada","highway","ottawa","north","bay","tourism_ecotourism","new","viewpoint","fao","n","tour","visito","area","ecological","interest","usually","educational","element","later","use","also","similar","tour","visit","designed","little","detrimental","effect","possible","undertaken","withe","specific","aim","helping","conservation_efforts","ecotourism","n","tourism","areas","ecological","exotic","often","threatened","natural_environments","support","conservation_efforts","wildlife","access","endangered","environment","controlled","least","possible","one","source","claims","terms","used","earlier","nick","academic","adventurer","forum","international","berkeley","supposedly","coined","ecotourism","ran","first","yucat","n","thearly","b","weaver","thencyclopedia","ecotourism","cabi","publishing","p","improving","sustainability","regulation","accreditation","regulation","ecotourismay","poorly","implemented","ecologically","destructive","operations","like","underwater","hotels","helicopter","tours","wildlife","theme_parks","categorized","ecotourism","along","canoeing","camping","photography","wildlife","observation","failure","acknowledge","responsible","low_impact","ecotourism","puts","companies","competitive","disadvantage","many","argued","global","standard","accreditation","ecotourism","companies_based","level","environmental","commitment","creating","standard","follow","national","international","regulatory","board","would","enforce","accreditation","procedures","representation","various","groups","hotels","tour_operators","travel_agents","guides","airlines","local_authorities","conservation","organizations","non_governmental","organizations","decisions","board","would","sanctioned","non","companies","would","legally","required","use","thecotourism","brand","suggests","green","based","criteria","including","management","plan","benefit","local_community","small","group","interaction","education","value","staff","training","ecotourists","consider","choices","would","experience","see","higher","starating","environmental_impact","assessment","could","also_used","form","accreditation","feasibility","evaluated","scientific","basis","recommendations","could","made","plan","infrastructure","capacity","manage","form","accreditation","sensitive","site","countries","certification","programs","ecotourism","costa_rica","example","runs","certification","sustainable_tourism","cst","program","intended","balance","business","local","cst","program","focuses","company","interaction","natural","cultural","resources","improvement","quality","life","within","local_communities","tother","programs","national","development","cst","uses","rating","system","sustainable","operations","cst","interaction","company","surrounding","management","policies","operation","systems","within","company","company","encourages","clients","become","active","contributor","policies","interaction","company","local_communities","overall","population","based_upon","criteria","company","evaluated","strength","measurement","index","goes","worst","best","guidelines","education","file","kayak","guided_tour","among","fleet","jpg","thumb","ecotour","guide","stands","kayaking","kayak","dolphins","around","key","environmental_protection","strategy","must","address","issue","ecotourists","removed","cause","effect","actions","thenvironment","carried","outo","improve","environmental","issues","care","abouthe","places","guides","obvious","andirect","medium","communicate","awareness","withe","confidence","ecotourists","intimate","knowledge","guides","actively","discuss","conservation","issues","informing","ecotourists","actions","trip","local_people","tour_guide","training","program","costa_rica","tortuguero","national_park","helped","mitigate","impacts","providing","information","regulating","tourists","parks","beaches","used","nesting","endangered","sea","scale","slow","growth","local","control","tourism","describes","new","form","imperialism","multinational","corporations","control","ecotourism","resources","corporations","finance","profit","development","large","causes","degradation","loss","traditional","culture","way","life","exploitation","zimbabwe","nepal","region","taking_place","percent","ecotourism","revenues","parent","countries","less","percent","go","local_communities","lack","sustainability","highlights","need","small_scale","slow","growth","locally","interest","well","community","therefore","environmental_protection","multinational","corporations","though","little","profits","lack","control","adverse","impacts","thenvironment","loss","culture","traditions","outweigh","benefits","establishing","large","increased","contributions","communities","locally","managed","ecotourism","create","opportunities","including","high_level","management","positions","issues","associated","poverty","unemployment","thecotourism","experience","marketed","different","lifestyle","large","development","ofacilities","infrastructure","need","conform","corporate","western","tourism","standards","much","simpler","less","expensive","greater","reserve","banking","multiplier","effect","theconomy","local","products","materials","labor","used","profits","locally","import","great","barriereef","park","australia","reported","half","billion","dollars","indirect","income","areand","added","thousands","indirect","jobs","however","even","form","tourismay","require","foreign","investment","promotion","start","investments","arequired","crucial","communities","find","company","non_governmental","organization","reflects","philosophy","ecotourism","sensitive","concerns","willing","basic","multiplier","effect","starts","unused","resources","example","many","workers","unemployed","much","industrial","capacity","idle","utilized","increasing","demand","theconomy","possible","boost","production","theconomy","already","full","employment","structural","supply","side","types","unemployment","attempto","boost","demand","would","lead","inflation","various","schools","economics","say","law","possibility","employment","resources","therefore","multiplier","concept","wrong","headed","example","consider","government","increasing","expenditure","roads","million","without","corresponding","increase","taxation","would","go","road","builders","would","hire","workers","money","wages","profits","households","receiving","incomes","save","part","money","spend","rest","consumer","goods","turn","generate","jobs","wages","profits","son","withe","income","spending","circulating","around","theconomy","multiplier","effect","induced","increases","consumer","spending","occur","due","increased","incomes","feedback","increasing","business","revenues","jobs","income","process","lead","economic","supply","side","barriers","potential","output","full","employment","round","increase","consumer","spending","less","increase","consumer","incomes","consume","less","one","round","income","goes","saving","leaking","process","increase","spending","previous","round","preventing","explosion","efforts","risk","world","exceptional","biodiversity","located","galapagos_islands","islands","designated","unesco_world_heritage_site","added","unesco","list","world_heritage","danger","non_profit","dedicated","preserving","unique","living","laboratory","againsthe","challenges","invasive","species","human","impact","wanto","thenvironment","impact","tourism","recommended","utilize","operator","endorsed","organization","case","galapagos","list","world","premiere","galapagos_islands","tour","companies","dedicated","lasting","protection","preservation","resource_management","natural","resource_management","utilized","specialized","tool","development","ecotourism","several","places","throughouthe_world","number","natural_resources","abundant","habitats","resources","withouthe","sustainable","use","certain","resources","destroyed","floral","species","becoming","extinct","ecotourism","programs","introduced","conservation","plans","proper","management","programs","introduced","thathese","resources","remain","untouched","several","organizations","scientists","working","field","natural_resources","hill","areas","like","west","bengal","plenty","inumber","various","florand","fauna","business","purpose","situation","researchers","university","presently","working","area","development","ecotourism","used","tool","natural","resource_management","southeast_asia","government","organizations","working","together","academics","industry","operators","spread","theconomic","benefits","tourism","villages","region","recently","formed","alliance","south_east_asian","tourism_organisation","bringing","together","diverse","players","discuss","resource_management","concerns","summit","held","quebec","led","global","sustainable_tourism","criteria","foundation","advocacy","groups","criteria","voluntary","involve","following","standards","effective","sustainability","planning","maximum","social","economic_benefits","local_communities","minimum","negative_impacts","cultural_heritage","minimum","negative_impacts","thenvironment","k","p","enforcing","agency","system","summit","continuum","tourism_activities","stretch","conventional","tourism_ecotourism","lot","limit","biodiversity","preservation","local","social","economic_benefits","environmental_impact","considered","ecotourism","reason","interest","groups","governments","differently","environmental","organizations","generally","ecotourism","nature","based","managed","conservation","supporting","environmentally","educated","tourist_industry","governments","however","focus","product","ecotourism","equivalento","sort","tourism","based","inature","many","terms","used","ecotourism","nature","tourism","low","green","tourism","bio","tourism","ecologically","responsible_tourism","others","used","literature","marketing","although","necessarily","synonymous","ecotourism","problems","associated","defining","ecotourism","often","led","confusion","among","tourists","academics","many","problems","also","subject","considerable","concern","green","wash","ing","trend","towards","commercialization","tourism","schemes","disguised","nature","based","environmentally","friendly","ecotourism","according","schemes","culturally","also","morally","tourists","concerns","thenvironmenthe","development","success","large","intensive","ecologically","schemes","tremendous","profits","associated","labeled","ecotourism","negative","impact","ecotourism","become_one","fastest_growing","sectors","tourism_industry","growing","annually","one","definition","ecotourism","practice","low_impact","educational","ecologically","culturally","sensitive","travel","benefits","local_communities","host","countries","many","thecotourism","projects","meeting","standards","even","guidelines","executed","local_communities","still","facing","many","negative","africa","one","countries","significant","economic_benefits","ecotourism","buthe","negativeffects","far","outweigh","positive","including","forcing","people","leave","homes","gross","violations","rights","environmental","hazards","far","outweigh","medium","term","economic_benefits","miller","tremendous","amount","money","human_resources","continue","used","ecotourism","despite","unsuccessful","outcomes","even","money","put","public","relation","campaigns","theffects","criticism","ecotourism","channels","resources","away","projects","could","contribute","sustainable","realistic","solutions","pressing","social","environmental","problems","money","tourism","generate","often","ties","parks","ecotourism","buthere","tension","relationship","often","causes","conflict","changes","land","use","rights","fails","deliver","promises","community","level","benefits","damages","environments","many","social","impacts","indeed","many","argue","repeatedly","ecotourism","neither","ecologically","socially","beneficial","yet","strategy","conservation","andevelopment","west","due","large","profits","several","studies","done","ways","improve","thecotourism","structure","argue","provide","stopping","altogether","however","among","zambezi","conservation","area","national_park","judged","worth","c","vol","thecotourism","system","exercises","tremendous","financial","political","influence","shows","strong","activities","certain","locations","funding","could","used","field","studies","aimed","finding","alternative","solutions","tourism","diverse","problems","africa","faces","result","urbanization","industrialization","agriculture","athe","ecotourism","become","source","conflict","control","land","resources","tourism","profits","thenvironment","local_people","led","conflicts","profit","distribution","perfect","world","would","made","towards","educating","tourists","thenvironmental","social","effects","travels","regulations","place","boundaries","investors","ecotourism","implemented","promotion","projects","materials","project","false","images","destinations","local","indigenous","culture","though","conservation_efforts","east","serving","interests","tourism_region","importanto","make","distinction","conservation","acts","tourism_industry","eastern","african","communities","nothe","developing","regions","social","conservation_efforts","conservation","northwest","yunnan","region","china","brought","use","region","prior","logging","restrictions","imposed","chinese","governmenthe","industry","made","regions","revenue","following","complete","ban","indigenous","people","yunnan","see","little","opportunity","economic_development","ecotourismay","provide","solutions","theconomic","loss","industry","conservation","yunnan","way","may_serve","difficulties","faced","maasai","astated","thecotourism","structure","must","improved","direct","money","host_communities","reducing","industry","successful","poverty","developing","regions","provides","opportunity","direct","environmental_impacts","ecotourism","operations","occasionally","fail","live","conservation","ideals","isometimes","overlooked","ecotourism","highly","consumer","centered","activity","environmental","conservation","means","economic_growth","although","ecotourism","intended","small","groups","even","modest","increase","population","however","temporary","puts","extra","pressure","local","environment","development","additional","infrastructure","amenities","construction","water","treatment","facilities","lodges","come","non","renewablenergy","sources","utilization","already","limited","local","resources","conversion","tourist","infrastructure","habitat","butterflies","mexico","squirrel","monkeys","costa_rica","cases","thenvironment","local_communities","unable","meethe","infrastructure","demands","ecotourism","lack","adequate","sanitation","facilities","many","east","african","parks","results","disposal","campsite","sewage","rivers","wildlife","livestock","people","draw","drinking","water","aside","environmental","degradation","tourist","infrastructure","population","pressures","ecotourism","also","leaves","behind","garbage","pollution","associated_withe","western","lifestyle","although","ecotourists","claim","sophisticated","environmentally","concerned","rarely","understand","consequences","visits","day","day","activities","physical","impacts","thenvironment","one","scientist","observes","rarely","acknowledge","meals","eathe","toilets","water","drink","son","part","economic","ecological","systems","helping","witheir","activities","ecotourists","recognize","great","consumption","non","renewablenergy","required","arrive","atheir","destination","typically","moremote","conventional","tourism_destinations","instance","exotic","journey","place","kilometers","away","ofuel","person","ecotourism","activities","issues","environmental_impact","may","disturb","faunand","flora","ecotourists","believe","taking","pictures","leaving","keep","ecotourism","sites","pristine","even","activitiesuch","nature","destructive","circuit","inepal","ecotourists","worn","marked","trails","created","alternate","routes","contributing","soil","erosion","plant","damage","thecotourism","activity","involves","wildlife","viewing","away","animals","feeding","nesting","sites","presence","people","kenya","wildlife","observer","disruption","drives","cheetahs","increasing","risk","inbreeding","species","environmental","hazards","industrialization","urbanization","agriculture","practices","human","society","considered","serious","impact","thenvironment","ecotourism","also_considered","playing","role","environmental","term","ecotourismay","sound","relatively","one","serious","impacts","consumption","virgin","often","disruption","systems","various","forms","pollution","contribute","environmental","degradation","example","number","motor_vehicles","crossing","park","increases","tour","species","number","roads","grass","cover","consequences","plant","animal","species","areas","also","invasive","species","due","increasing","traffic","beaten","path","new","undiscovered","areas","ecotourism","also","effect","species","value","placed","certain","species","gone","little_known","valued","local_people","highly","valued","commodities","commodification","nature","commodification","plants","may","social","value","lead","within","protected_areas","local_people","images","also","turned","commodities","brings","relatively","obvious","commercial","venture","pristine","land","terms","generate","revenue","high","number","traffic","tourists","inevitably","means","higher","pressure","thenvironment","local_people","forms","ecotourism","owned","foreign","investors","corporations","provide","benefits","local_people","majority","profits","put","pockets","investors","instead","local_economy","environmental_protection","leading","environmental","degradation","limited","numbers","local_people","aremployed","theconomy","enter","lowest","level","unable","live","tourist","areas","wages","two","market","system","cases","local_people","results","environmental","degradation","highly","publicized","case","maasai","people","maasai","kenya","killed","wildlife","inational","parks","helping","national_park","save","wildlife","show","unfair","compensation","terms","lack","economic","opportunities","local_people","also","thenvironment","means","presence","affluent","ecotourists","encourage","development","destructive","markets","wildlife","sale","coral","tropical","islands","animal","products","asia","contributing","illegal","harvesting","thenvironment","sea","turtle","reserves","use","large","portion","guard","destructive","activities","people","one","worst","examples","communities","moved","order","create","park","story","maasai","national_parks","game","reserves","east","maasai","land","first","negative","impact","tourism","land","lost","maasai","culture","local","national","governments","took","advantage","maasai","ignorance","situation","robbed","huge","grazing","land","putting","risk","socio","economic","kenya","maasai","also","gained","economic_benefits","despite","loss","land","employment","favors","better","educated","workers","furthermore","investors","areare","local","put","profits","back","local_economy","cases","game","reserves","created","without","informing","consulting","local_people","find","delivered","another","source","manipulation","local_people","government","eco_tourism","works","create","images","local_people","uses","surroundings","lens","simplified","images","officials","direct","policies","projects","towards","local_people","local_people","blamed","projects","fail","west","clearly","tourism","trade","local_people","make","rich","satisfying","instead","ecotourism","exploits","particularly","african","maasai","tribes","useful","local_communities","become","sustainable","threats","indigenous","cultures","ecotourism","often","claims","enhances","local_cultures","evidence","shows","withestablishment","protected_areas","local_people","illegally","lostheir","homes","mostly","compensation","pushing","people","onto","climates","poor","lack","water","livestock","little","enhance","even","proportion","ecotourism","profits","directed","back","community","thestablishment","parks","create","harsh","survival","realities","people","traditional","use","land","natural_resources","ethnic_groups","increasingly","seen","backdrop","scenery","wildlife","local_people","struggle","cultural","survival","freedom","cultural","expression","observed","tourists","local","indigenous","people","also","strong","change","tourism","allowed","develop","virtually","controls","many","lodges","much","firewood","used","limits","placed","tourism","vehicles","regularly","drive","track","wildlife","vehicle","tracks","cross","thentire","inevitably","bush","becoming","governments","typically","withe","administration","enforcement","environmental_protection","often","lack","commitment","capability","sites","regulations","environmental_protection","may","defined","costly","implement","hard","enforce","uncertain","effectiveness","government","regulatory","agencies","susceptible","making","decisions","spend","politically","beneficial","environmentally","projects","prestige","construction","attractive","visitor_center","ecotourism","site","may","take","pressing","environmental","concerns","like","acquiring","habitat","protecting","species","removing","invasive","ones","finally","influential","groups","pressure","sway","interests","governmento","favor","government","become","benefits","thecotourism","industry","supposed","regulate","causing","regulations","become","management","ecotourism","sites","companies","offers","alternative","cost","regulation","government_agencies","believed","thathese","companies","self","interest","limited","environmental","degradation","tourists","pay","translates","higher","profit","however","theory","indicates","thathis","practice","economically","feasible","fail","manage","thenvironmenthe","model","states","entail","profits","profits","promote","imitation","company","ecotourism","sites","able","charge","premium","novel","experience","companies","view","success","approach","also","enter","market","similar","practices","increasing","competition","reducing","demand","eventually","demand","reduced","theconomic","profit","zero","cost","benefit","thathe_company","bears","cost","environmental_protection","without","receiving","gains","without","economic","incentive","whole","premise","self","environmental_protection","instead","ecotourism","companies","related","expenses","maximize","tourism","demand","tragedy","commons","offers","another","model","economic","environmental_protection","ecotourism","sites","utilized","many","companies","although","communal","incentive","maximizing","benefits","long","run","company","best","interesto","utilize","thecotourism","site","beyond","increasing_number","ecotourists","instance","company","gains","theconomic","benefit","paying","part","thenvironmental","cost","way","company","recognizes","thathere","incentive","actively","bear","costs","benefits","shared","companies","result","together","mobility","oforeign","investment","lack","economic","incentive","environmental_protection","means","ecotourism","companies","disposed","establishing","inew","sites","existing","one","degraded","case_studies","purpose","ecotourism","engage","tourists","low_impact","non","locally","oriented","environments","order","maintain","species","habitats","especially","underdeveloped","regions","projects","including","found","united_states","support","claims","many","projects","failed","fundamental","issues","nations","face","first","place","consequently","ecotourismay","generate","benefits","intended","provide","regions","people","cases","leaving","economies","state","worse","following","case_studies","illustrate","rising","complexity","ecotourism","impacts","positive","negative","thenvironment","economies","various","regions","world","ecotourism","costa_rica","ecotourism","jordan","ecotourism","south_africa","ecotourism","united_statesee","also","biodiversity","conservation_biology","conservation","movement","conservation","reliant","species","earth","ecology","movement","ecosystem","environmental_protection","global","hunting","habitat","conservation","hypermobility","travel_market","governance","governance","mechanisms","natural","capital","natural_environment","natural","resource","resource","shark","tourism","sustainable_development","sustainability","furthereading","burger","j","landscapes","tourism","conservation","science","total","environment","h","tourism_ecotourism","protected_areas","k","n","k","ecotourism","encyclopedia","environmental","issues","rev","ed","pasadena","salem","press","vol","pp","iucn","international","union","conservation","nature","pp","h","ecoturismo","diana","pp","r","shadow","players","ecotourism","development","corruption","state","politics","belize","third_world","quarterly","k","j","h","anderson","spatial","extent","human","effects","ecotourism","principles","practices","annals","tourism_research","b","tourist","getting","close","whales","whale_watching","del","ecoturismo","de_turismo","el","rural","ed","turismo","r","ecotourism","local_communities","tourismanagement","weaver","b","ecotourism","less","developed","world","cab","int","publ","pp","isbn_externalinks","international","ecotourism","society","centre","sustainable_tourism","transport","global","sustainable_tourism","criteria","scuba","among","observer","eco_tourism","holds","promise","egyptian","oasis","npr","hunting","help","wildlife","eco","nature","network","category_adventure_travel_category","ecotourism","category","ecological","economics","category","natural","resource_management"],"clean_bigrams":[["file","llano"],["llano","del"],["del","muerto"],["perquin","el"],["thumb","llano"],["llano","del"],["del","muerto"],["muerto","waterfall"],["el","salvador"],["salvador","ecotourism"],["tourism","involving"],["involving","visiting"],["visiting","fragile"],["fragile","pristine"],["natural","areas"],["areas","intended"],["low","impact"],["often","small"],["small","scale"],["scale","alternative"],["standard","commercial"],["commercial","mass"],["mass","tourism"],["means","responsible"],["responsible","travel"],["natural","areas"],["areas","conserving"],["conserving","thenvironment"],["local","people"],["international","ecotourism"],["ecotourism","society"],["society","website"],["access","date"],["purpose","may"],["provide","funds"],["ecological","conservation"],["political","empowerment"],["local","communities"],["different","cultures"],["future","generations"],["generations","may"],["may","experience"],["experience","destinations"],["destinations","relatively"],["relatively","untouched"],["human","intervention"],["intervention","several"],["several","university"],["university","programs"],["programs","use"],["working","definition"],["path","defining"],["defining","ecotourism"],["ecotourism","retrieved"],["generally","ecotourism"],["ecotourism","deals"],["special","emphasis"],["organization","publishers"],["publishers","tehran"],["tehran","p"],["p","english"],["english","summary"],["summary","available"],["available","online"],["ecotourism","focuses"],["socially","responsible"],["responsible","travel"],["travel","personal"],["personal","growth"],["environmental","sustainability"],["sustainability","ecotourism"],["ecotourism","typically"],["typically","involves"],["involves","travel"],["flora","faunand"],["faunand","cultural"],["cultural","heritage"],["primary","attractions"],["attractions","ecotourism"],["intended","toffer"],["toffer","tourists"],["human","beings"],["greater","appreciation"],["natural","habitats"],["programs","include"],["negative","aspects"],["conventional","tourism"],["cultural","integrity"],["local","people"],["people","therefore"],["evaluating","environmental"],["cultural","factors"],["integral","part"],["recycling","energy"],["energy","conservation"],["conservation","energy"],["energy","efficiency"],["efficiency","water"],["water","conservation"],["economic","opportunities"],["local","communities"],["reasons","ecotourism"],["ecotourism","often"],["often","appeals"],["social","responsibility"],["term","ecotourism"],["ecotourism","like"],["like","sustainable"],["sustainable","tourism"],["tourism","ecotourism"],["ecotourism","generally"],["generally","depends"],["air","transportation"],["climate","change"],["change","additionally"],["overall","effect"],["sustainable","tourism"],["mask","hard"],["immediate","self"],["eds","page"],["page","tourism"],["sustainability","principles"],["practice","cab"],["cab","international"],["international","wallingford"],["cases","contributing"],["surroundings","file"],["file","h"],["watching","near"],["estonia","ecotourism"],["responsible","tourism"],["conserves","thenvironment"],["thenvironment","sustains"],["local","people"],["builds","environmental"],["environmental","awareness"],["awareness","provides"],["provides","direct"],["direct","financial"],["financial","benefits"],["conservation","provides"],["provides","financial"],["financial","benefits"],["local","people"],["people","respects"],["respects","local"],["local","culture"],["culture","supports"],["supports","human"],["human","rights"],["biodiversity","biological"],["biological","diversity"],["cultural","diversity"],["ecosystem","protection"],["protection","promotion"],["sustainability","sustainable"],["sustainable","use"],["providing","jobs"],["socio","economic"],["economic","benefits"],["benefits","local"],["local","communities"],["indigenous","peoples"],["informed","consent"],["ecotourism","enterprises"],["enterprises","tourism"],["natural","resources"],["minimal","impact"],["primary","concern"],["environmental","impact"],["impact","affordability"],["luxury","local"],["local","culture"],["culture","florand"],["florand","fauna"],["main","attractions"],["attractions","local"],["local","people"],["tourism","economically"],["mass","tourism"],["international","ecotourism"],["ecotourism","society"],["society","defines"],["defines","ecotourism"],["responsible","travel"],["natural","areas"],["conserves","thenvironment"],["thenvironment","sustains"],["local","people"],["involves","interpretation"],["many","countries"],["countries","ecotourism"],["finance","protection"],["natural","environment"],["major","industry"],["national","economics"],["economics","economy"],["costa","rica"],["rica","ecuador"],["ecuador","nepal"],["nepal","kenya"],["kenya","madagascar"],["antarctica","ecotourism"],["ecotourism","represents"],["significant","portion"],["gross","domestic"],["domestic","product"],["economics","economic"],["economic","activity"],["activity","ecotourism"],["ecotourism","often"],["involves","nature"],["nature","see"],["see","jungle"],["jungle","tourism"],["tourism","self"],["self","proclaimed"],["proclaimed","practitioners"],["ecotourism","experiences"],["experiences","assume"],["simply","creating"],["creating","destinations"],["areas","according"],["operations","using"],["eco","friendly"],["ways","although"],["although","academics"],["academics","disagree"],["little","statistical"],["statistical","data"],["five","million"],["million","ecotourists"],["population","come"],["united","states"],["many","others"],["western","europe"],["europe","canadand"],["canadand","australia"],["australia","currently"],["various","moves"],["create","national"],["international","ecotourism"],["ecotourism","accreditation"],["accreditation","programs"],["programs","although"],["also","controversial"],["controversial","national"],["national","ecotourism"],["ecotourism","certification"],["certification","programs"],["sweden","terminology"],["thumb","upright"],["upright","px"],["elephant","safari"],["national","park"],["west","bengal"],["bengal","india"],["india","file"],["file","hanging"],["hanging","bridge"],["thumb","right"],["hanging","bridge"],["ecotourism","area"],["kerala","india"],["india","india"],["first","planned"],["planned","ecotourism"],["ecotourism","destination"],["destination","ecotourism"],["late","th"],["th","century"],["eco","tourism"],["tourism","according"],["oxford","english"],["english","dictionary"],["dictionary","ecotour"],["first","recorded"],["ecotourism","probably"],["oxford","english"],["english","dictionary"],["dictionary","second"],["second","edition"],["rom","version"],["version","draft"],["draft","entries"],["entries","december"],["december","oxford"],["oxford","university"],["university","press"],["press","citing"],["map","ottawa"],["ottawa","north"],["north","bay"],["forestry","service"],["service","heading"],["heading","ecotour"],["trans","canada"],["canada","highway"],["highway","ottawa"],["ottawa","north"],["north","bay"],["tourism","ecotourism"],["new","viewpoint"],["ecological","interest"],["interest","usually"],["educational","element"],["later","use"],["use","also"],["similar","tour"],["visit","designed"],["little","detrimental"],["detrimental","effect"],["undertaken","withe"],["withe","specific"],["specific","aim"],["helping","conservation"],["conservation","efforts"],["efforts","ecotourism"],["ecotourism","n"],["n","tourism"],["often","threatened"],["threatened","natural"],["natural","environments"],["support","conservation"],["conservation","efforts"],["endangered","environment"],["environment","controlled"],["least","possible"],["one","source"],["source","claims"],["used","earlier"],["earlier","claus"],["forum","international"],["supposedly","coined"],["coined","ecotourism"],["yucat","n"],["b","weaver"],["weaver","thencyclopedia"],["ecotourism","cabi"],["cabi","publishing"],["publishing","p"],["p","improving"],["improving","sustainability"],["sustainability","regulation"],["poorly","implemented"],["implemented","ecologically"],["ecologically","destructive"],["operations","like"],["like","underwater"],["underwater","hotels"],["hotels","helicopter"],["helicopter","tours"],["wildlife","theme"],["theme","parks"],["ecotourism","along"],["canoeing","camping"],["camping","photography"],["wildlife","observation"],["acknowledge","responsible"],["responsible","low"],["low","impact"],["impact","ecotourism"],["ecotourism","puts"],["competitive","disadvantage"],["disadvantage","many"],["global","standard"],["ecotourism","companies"],["companies","based"],["environmental","commitment"],["commitment","creating"],["international","regulatory"],["regulatory","board"],["board","would"],["would","enforce"],["enforce","accreditation"],["accreditation","procedures"],["various","groups"],["hotels","tour"],["tour","operators"],["operators","travel"],["travel","agents"],["agents","guides"],["guides","airlines"],["airlines","local"],["local","authorities"],["authorities","conservation"],["conservation","organizations"],["non","governmental"],["governmental","organizations"],["board","would"],["companies","would"],["legally","required"],["thecotourism","brand"],["criteria","including"],["management","plan"],["plan","benefit"],["local","community"],["community","small"],["small","group"],["group","interaction"],["interaction","education"],["education","value"],["staff","training"],["training","ecotourists"],["choices","would"],["higher","starating"],["starating","environmental"],["environmental","impact"],["impact","assessment"],["could","also"],["accreditation","feasibility"],["scientific","basis"],["recommendations","could"],["plan","infrastructure"],["certification","programs"],["ecotourism","costa"],["costa","rica"],["example","runs"],["sustainable","tourism"],["tourism","cst"],["cst","program"],["cst","program"],["program","focuses"],["cultural","resources"],["life","within"],["within","local"],["local","communities"],["tother","programs"],["national","development"],["development","cst"],["cst","uses"],["rating","system"],["company","based"],["based","upon"],["management","policies"],["operation","systems"],["systems","within"],["company","encourages"],["active","contributor"],["local","communities"],["overall","population"],["population","based"],["based","upon"],["measurement","index"],["index","goes"],["best","guidelines"],["education","file"],["kayak","guided"],["guided","tour"],["jpg","thumb"],["thumb","ecotour"],["ecotour","guide"],["guide","stands"],["kayaking","kayak"],["environmental","protection"],["protection","strategy"],["strategy","must"],["must","address"],["ecotourists","removed"],["carried","outo"],["outo","improve"],["environmental","issues"],["care","abouthe"],["abouthe","places"],["obvious","andirect"],["andirect","medium"],["communicate","awareness"],["awareness","withe"],["withe","confidence"],["intimate","knowledge"],["actively","discuss"],["discuss","conservation"],["conservation","issues"],["issues","informing"],["informing","ecotourists"],["local","people"],["tour","guide"],["guide","training"],["training","program"],["costa","rica"],["tortuguero","national"],["national","park"],["helped","mitigate"],["providing","information"],["regulating","tourists"],["parks","beaches"],["beaches","used"],["nesting","endangered"],["endangered","sea"],["scale","slow"],["slow","growth"],["local","control"],["tourism","describes"],["new","form"],["multinational","corporations"],["control","ecotourism"],["ecotourism","resources"],["corporations","finance"],["degradation","loss"],["traditional","culture"],["taking","place"],["ecotourism","revenues"],["parent","countries"],["percent","go"],["local","communities"],["sustainability","highlights"],["small","scale"],["scale","slow"],["slow","growth"],["locally","based"],["based","ecotourism"],["ecotourism","local"],["local","peoples"],["environmental","protection"],["multinational","corporations"],["corporations","though"],["adverse","impacts"],["thenvironment","loss"],["traditions","outweigh"],["establishing","large"],["increased","contributions"],["locally","managed"],["managed","ecotourism"],["ecotourism","create"],["opportunities","including"],["including","high"],["high","level"],["level","management"],["management","positions"],["issues","associated"],["thecotourism","experience"],["different","lifestyle"],["development","ofacilities"],["corporate","western"],["western","tourism"],["tourism","standards"],["much","simpler"],["less","expensive"],["reserve","banking"],["banking","multiplier"],["multiplier","effect"],["local","products"],["products","materials"],["used","profits"],["great","barriereef"],["barriereef","park"],["australia","reported"],["billion","dollars"],["indirect","income"],["areand","added"],["added","thousands"],["indirect","jobs"],["however","even"],["tourismay","require"],["require","foreign"],["foreign","investment"],["investments","arequired"],["non","governmental"],["governmental","organization"],["ecotourism","sensitive"],["multiplier","effect"],["unused","resources"],["many","workers"],["industrial","capacity"],["increasing","demand"],["boost","production"],["full","employment"],["supply","side"],["side","types"],["attempto","boost"],["boost","demand"],["demand","would"],["resources","therefore"],["multiplier","concept"],["wrong","headed"],["example","consider"],["government","increasing"],["million","without"],["corresponding","increase"],["would","go"],["road","builders"],["would","hire"],["households","receiving"],["save","part"],["consumer","goods"],["jobs","wages"],["son","withe"],["withe","income"],["spending","circulating"],["circulating","around"],["around","theconomy"],["multiplier","effect"],["induced","increases"],["consumer","spending"],["occur","due"],["increased","incomes"],["increasing","business"],["business","revenues"],["revenues","jobs"],["supply","side"],["side","barriers"],["potential","output"],["output","full"],["full","employment"],["consumer","spending"],["consumer","incomes"],["income","goes"],["saving","leaking"],["previous","round"],["round","preventing"],["explosion","efforts"],["exceptional","biodiversity"],["galapagos","islands"],["unesco","world"],["world","heritage"],["heritage","site"],["world","heritage"],["non","profit"],["profit","dedicated"],["unique","living"],["living","laboratory"],["laboratory","againsthe"],["againsthe","challenges"],["invasive","species"],["species","human"],["human","impact"],["premiere","galapagos"],["galapagos","islands"],["islands","tour"],["tour","companies"],["companies","dedicated"],["lasting","protection"],["resource","management"],["management","natural"],["natural","resource"],["resource","management"],["specialized","tool"],["several","places"],["places","throughouthe"],["throughouthe","world"],["natural","resources"],["withouthe","sustainable"],["sustainable","use"],["certain","resources"],["becoming","extinct"],["extinct","ecotourism"],["ecotourism","programs"],["proper","management"],["management","programs"],["thathese","resources"],["resources","remain"],["remain","untouched"],["untouched","several"],["several","organizations"],["field","natural"],["natural","resources"],["hill","areas"],["areas","like"],["west","bengal"],["plenty","inumber"],["various","florand"],["florand","fauna"],["business","purpose"],["situation","researchers"],["presently","working"],["natural","resource"],["resource","management"],["southeast","asia"],["asia","government"],["working","together"],["industry","operators"],["spread","theconomic"],["theconomic","benefits"],["recently","formed"],["formed","alliance"],["south","east"],["east","asian"],["asian","tourism"],["tourism","organisation"],["bringing","together"],["diverse","players"],["discuss","resource"],["resource","management"],["management","concerns"],["summit","held"],["quebec","led"],["global","sustainable"],["sustainable","tourism"],["tourism","criteria"],["advocacy","groups"],["voluntary","involve"],["following","standards"],["standards","effective"],["effective","sustainability"],["sustainability","planning"],["planning","maximum"],["maximum","social"],["social","economic"],["economic","benefits"],["benefits","local"],["local","communities"],["communities","minimum"],["minimum","negative"],["negative","impacts"],["cultural","heritage"],["minimum","negative"],["negative","impacts"],["enforcing","agency"],["tourism","activities"],["conventional","tourism"],["tourism","ecotourism"],["biodiversity","preservation"],["preservation","local"],["local","social"],["social","economic"],["economic","benefits"],["environmental","impact"],["considered","ecotourism"],["interest","groups"],["differently","environmental"],["environmental","organizations"],["generally","ecotourism"],["ecotourism","nature"],["nature","based"],["managed","conservation"],["conservation","supporting"],["environmentally","educated"],["tourist","industry"],["governments","however"],["however","focus"],["tourism","based"],["based","inature"],["many","terms"],["ecotourism","nature"],["nature","tourism"],["tourism","low"],["green","tourism"],["tourism","bio"],["bio","tourism"],["tourism","ecologically"],["ecologically","responsible"],["responsible","tourism"],["marketing","although"],["necessarily","synonymous"],["problems","associated"],["defining","ecotourism"],["ecotourism","often"],["often","led"],["confusion","among"],["among","tourists"],["academics","many"],["many","problems"],["also","subject"],["green","wash"],["wash","ing"],["trend","towards"],["tourism","schemes"],["schemes","disguised"],["nature","based"],["environmentally","friendly"],["friendly","ecotourism"],["ecotourism","according"],["also","morally"],["thenvironmenthe","development"],["tremendous","profits"],["profits","associated"],["ecotourism","negative"],["negative","impact"],["impact","ecotourism"],["become","one"],["fastest","growing"],["growing","sectors"],["tourism","industry"],["industry","growing"],["growing","annually"],["one","definition"],["low","impact"],["impact","educational"],["educational","ecologically"],["culturally","sensitive"],["sensitive","travel"],["benefits","local"],["local","communities"],["host","countries"],["countries","many"],["thecotourism","projects"],["standards","even"],["local","communities"],["still","facing"],["facing","many"],["significant","economic"],["economic","benefits"],["ecotourism","buthe"],["buthe","negativeffects"],["negativeffects","far"],["far","outweigh"],["positive","including"],["including","forcing"],["forcing","people"],["homes","gross"],["gross","violations"],["environmental","hazards"],["hazards","far"],["far","outweigh"],["medium","term"],["term","economic"],["economic","benefits"],["benefits","miller"],["tremendous","amount"],["human","resources"],["resources","continue"],["ecotourism","despite"],["despite","unsuccessful"],["unsuccessful","outcomes"],["public","relation"],["relation","campaigns"],["criticism","ecotourism"],["ecotourism","channels"],["channels","resources"],["resources","away"],["could","contribute"],["realistic","solutions"],["pressing","social"],["environmental","problems"],["money","tourism"],["generate","often"],["often","ties"],["ties","parks"],["often","causes"],["causes","conflict"],["land","use"],["use","rights"],["rights","fails"],["deliver","promises"],["community","level"],["level","benefits"],["benefits","damages"],["damages","environments"],["social","impacts"],["impacts","indeed"],["indeed","many"],["many","argue"],["argue","repeatedly"],["neither","ecologically"],["socially","beneficial"],["beneficial","yet"],["conservation","andevelopment"],["andevelopment","west"],["west","due"],["large","profits"],["several","studies"],["improve","thecotourism"],["thecotourism","structure"],["altogether","however"],["conservation","area"],["national","park"],["c","vol"],["vol","thecotourism"],["thecotourism","system"],["system","exercises"],["exercises","tremendous"],["tremendous","financial"],["political","influence"],["certain","locations"],["locations","funding"],["funding","could"],["field","studies"],["studies","aimed"],["finding","alternative"],["alternative","solutions"],["solutions","tourism"],["diverse","problems"],["problems","africa"],["africa","faces"],["urbanization","industrialization"],["agriculture","athe"],["land","resources"],["tourism","profits"],["thenvironment","local"],["local","people"],["profit","distribution"],["perfect","world"],["made","towards"],["towards","educating"],["educating","tourists"],["social","effects"],["project","false"],["false","images"],["local","indigenous"],["indigenous","culture"],["culture","though"],["though","conservation"],["conservation","efforts"],["importanto","make"],["conservation","acts"],["tourism","industry"],["industry","eastern"],["eastern","african"],["african","communities"],["developing","regions"],["conservation","efforts"],["efforts","conservation"],["northwest","yunnan"],["yunnan","region"],["region","prior"],["logging","restrictions"],["restrictions","imposed"],["chinese","governmenthe"],["governmenthe","industry"],["industry","made"],["regions","revenue"],["revenue","following"],["complete","ban"],["indigenous","people"],["see","little"],["little","opportunity"],["economic","development"],["development","ecotourismay"],["ecotourismay","provide"],["provide","solutions"],["may","serve"],["difficulties","faced"],["maasai","astated"],["astated","thecotourism"],["thecotourism","structure"],["structure","must"],["host","communities"],["developing","regions"],["opportunity","direct"],["direct","environmental"],["environmental","impacts"],["impacts","ecotourism"],["ecotourism","operations"],["operations","occasionally"],["occasionally","fail"],["conservation","ideals"],["isometimes","overlooked"],["highly","consumer"],["consumer","centered"],["centered","activity"],["environmental","conservation"],["economic","growth"],["growth","although"],["although","ecotourism"],["small","groups"],["groups","even"],["modest","increase"],["population","however"],["however","temporary"],["temporary","puts"],["puts","extra"],["extra","pressure"],["local","environment"],["additional","infrastructure"],["water","treatment"],["lodges","come"],["non","renewablenergy"],["renewablenergy","sources"],["already","limited"],["limited","local"],["local","resources"],["tourist","infrastructure"],["squirrel","monkeys"],["costa","rica"],["cases","thenvironment"],["thenvironment","local"],["local","communities"],["meethe","infrastructure"],["infrastructure","demands"],["adequate","sanitation"],["sanitation","facilities"],["many","east"],["east","african"],["african","parks"],["parks","results"],["campsite","sewage"],["wildlife","livestock"],["draw","drinking"],["drinking","water"],["environmental","degradation"],["tourist","infrastructure"],["infrastructure","population"],["population","pressures"],["ecotourism","also"],["also","leaves"],["leaves","behind"],["behind","garbage"],["pollution","associated"],["associated","withe"],["withe","western"],["western","lifestyle"],["lifestyle","although"],["although","ecotourists"],["ecotourists","claim"],["environmentally","concerned"],["rarely","understand"],["day","activities"],["physical","impacts"],["one","scientist"],["scientist","observes"],["rarely","acknowledge"],["eathe","toilets"],["ecological","systems"],["ecotourists","recognize"],["great","consumption"],["non","renewablenergy"],["renewablenergy","required"],["arrive","atheir"],["atheir","destination"],["typically","moremote"],["conventional","tourism"],["tourism","destinations"],["exotic","journey"],["place","kilometers"],["kilometers","away"],["ofuel","person"],["person","ecotourism"],["ecotourism","activities"],["environmental","impact"],["may","disturb"],["disturb","faunand"],["faunand","flora"],["flora","ecotourists"],["ecotourists","believe"],["taking","pictures"],["keep","ecotourism"],["ecotourism","sites"],["sites","pristine"],["circuit","inepal"],["inepal","ecotourists"],["marked","trails"],["created","alternate"],["alternate","routes"],["routes","contributing"],["plant","damage"],["thecotourism","activity"],["activity","involves"],["involves","wildlife"],["wildlife","viewing"],["away","animals"],["nesting","sites"],["kenya","wildlife"],["wildlife","observer"],["observer","disruption"],["disruption","drives"],["drives","cheetahs"],["species","environmental"],["environmental","hazards"],["industrialization","urbanization"],["agriculture","practices"],["human","society"],["serious","impact"],["thenvironment","ecotourism"],["ecotourism","also"],["also","considered"],["term","ecotourismay"],["ecotourismay","sound"],["sound","relatively"],["serious","impacts"],["various","forms"],["environmental","degradation"],["motor","vehicles"],["vehicles","crossing"],["park","increases"],["grass","cover"],["animal","species"],["areas","also"],["invasive","species"],["species","due"],["increasing","traffic"],["beaten","path"],["new","undiscovered"],["undiscovered","areas"],["areas","ecotourism"],["ecotourism","also"],["value","placed"],["certain","species"],["little","known"],["local","people"],["highly","valued"],["valued","commodities"],["nature","commodification"],["plants","may"],["social","value"],["within","protected"],["protected","areas"],["areas","local"],["local","people"],["relatively","obvious"],["commercial","venture"],["pristine","land"],["generate","revenue"],["high","number"],["traffic","tourists"],["inevitably","means"],["higher","pressure"],["thenvironment","local"],["local","people"],["foreign","investors"],["benefits","local"],["local","people"],["investors","instead"],["local","economy"],["environmental","protection"],["protection","leading"],["environmental","degradation"],["limited","numbers"],["local","people"],["theconomy","enter"],["lowest","level"],["tourist","areas"],["two","market"],["market","system"],["local","people"],["people","results"],["environmental","degradation"],["highly","publicized"],["publicized","case"],["maasai","people"],["people","maasai"],["kenya","killed"],["killed","wildlife"],["wildlife","inational"],["inational","parks"],["national","park"],["unfair","compensation"],["compensation","terms"],["economic","opportunities"],["local","people"],["people","also"],["affluent","ecotourists"],["ecotourists","encourage"],["destructive","markets"],["tropical","islands"],["animal","products"],["asia","contributing"],["illegal","harvesting"],["sea","turtle"],["turtle","reserves"],["reserves","use"],["large","portion"],["destructive","activities"],["people","one"],["worst","examples"],["national","parks"],["game","reserves"],["maasai","land"],["first","negative"],["negative","impact"],["land","lost"],["maasai","culture"],["culture","local"],["national","governments"],["governments","took"],["took","advantage"],["grazing","land"],["land","putting"],["socio","economic"],["maasai","also"],["economic","benefits"],["benefits","despite"],["land","employment"],["employment","favors"],["favors","better"],["better","educated"],["educated","workers"],["workers","furthermore"],["profits","back"],["local","economy"],["cases","game"],["game","reserves"],["created","without"],["without","informing"],["local","people"],["delivered","another"],["another","source"],["local","people"],["government","eco"],["eco","tourism"],["tourism","works"],["local","people"],["simplified","images"],["images","officials"],["officials","direct"],["direct","policies"],["projects","towards"],["local","people"],["local","people"],["projects","fail"],["fail","west"],["west","clearly"],["clearly","tourism"],["local","people"],["satisfying","instead"],["instead","ecotourism"],["ecotourism","exploits"],["african","maasai"],["maasai","tribes"],["local","communities"],["become","sustainable"],["sustainable","threats"],["indigenous","cultures"],["cultures","ecotourism"],["ecotourism","often"],["often","claims"],["enhances","local"],["local","cultures"],["cultures","evidence"],["evidence","shows"],["protected","areas"],["areas","local"],["local","people"],["illegally","lostheir"],["lostheir","homes"],["compensation","pushing"],["pushing","people"],["people","onto"],["climates","poor"],["ecotourism","profits"],["directed","back"],["community","thestablishment"],["create","harsh"],["harsh","survival"],["survival","realities"],["traditional","use"],["land","natural"],["natural","resources"],["resources","ethnic"],["ethnic","groups"],["local","people"],["people","struggle"],["cultural","survival"],["cultural","expression"],["tourists","local"],["local","indigenous"],["indigenous","people"],["people","also"],["change","tourism"],["many","lodges"],["much","firewood"],["tourism","vehicles"],["regularly","drive"],["vehicle","tracks"],["cross","thentire"],["withe","administration"],["environmental","protection"],["often","lack"],["environmental","protection"],["protection","may"],["defined","costly"],["implement","hard"],["uncertain","effectiveness"],["effectiveness","government"],["government","regulatory"],["regulatory","agencies"],["making","decisions"],["politically","beneficial"],["attractive","visitor"],["ecotourism","site"],["site","may"],["may","take"],["pressing","environmental"],["environmental","concerns"],["concerns","like"],["like","acquiring"],["acquiring","habitat"],["habitat","protecting"],["removing","invasive"],["invasive","ones"],["ones","finally"],["finally","influential"],["influential","groups"],["thecotourism","industry"],["regulate","causing"],["ecotourism","sites"],["companies","offers"],["government","agencies"],["believed","thathese"],["thathese","companies"],["self","interest"],["limited","environmental"],["environmental","degradation"],["higher","profit"],["profit","however"],["however","theory"],["theory","indicates"],["indicates","thathis"],["thathis","practice"],["economically","feasible"],["manage","thenvironmenthe"],["thenvironmenthe","model"],["entail","profits"],["promote","imitation"],["ecotourism","sites"],["novel","experience"],["companies","view"],["also","enter"],["similar","practices"],["practices","increasing"],["increasing","competition"],["reducing","demand"],["demand","eventually"],["theconomic","profit"],["cost","benefit"],["thathe","company"],["company","bears"],["environmental","protection"],["protection","without"],["without","receiving"],["gains","without"],["without","economic"],["economic","incentive"],["whole","premise"],["environmental","protection"],["instead","ecotourism"],["ecotourism","companies"],["related","expenses"],["maximize","tourism"],["tourism","demand"],["commons","offers"],["offers","another"],["another","model"],["environmental","protection"],["ecotourism","sites"],["sites","utilized"],["many","companies"],["companies","although"],["communal","incentive"],["long","run"],["best","interesto"],["interesto","utilize"],["utilize","thecotourism"],["thecotourism","site"],["site","beyond"],["company","gains"],["theconomic","benefit"],["thenvironmental","cost"],["company","recognizes"],["recognizes","thathere"],["mobility","oforeign"],["oforeign","investment"],["economic","incentive"],["environmental","protection"],["protection","means"],["ecotourism","companies"],["inew","sites"],["existing","one"],["degraded","case"],["case","studies"],["engage","tourists"],["low","impact"],["impact","non"],["locally","oriented"],["oriented","environments"],["maintain","species"],["habitats","especially"],["underdeveloped","regions"],["projects","including"],["united","states"],["claims","many"],["many","projects"],["fundamental","issues"],["nations","face"],["first","place"],["place","consequently"],["consequently","ecotourismay"],["cases","leaving"],["leaving","economies"],["state","worse"],["following","case"],["case","studies"],["studies","illustrate"],["rising","complexity"],["various","regions"],["world","ecotourism"],["ecotourism","costa"],["costa","rica"],["rica","ecotourism"],["jordan","ecotourism"],["south","africa"],["africa","ecotourism"],["united","statesee"],["statesee","also"],["also","biodiversity"],["conservation","biology"],["biology","conservation"],["movement","conservation"],["conservation","reliant"],["reliant","species"],["species","earth"],["ecology","movement"],["movement","ecosystem"],["environmental","protection"],["protection","global"],["hunting","habitat"],["habitat","conservation"],["conservation","hypermobility"],["hypermobility","travel"],["travel","market"],["market","governance"],["governance","mechanisms"],["mechanisms","natural"],["natural","capital"],["capital","natural"],["natural","environment"],["environment","natural"],["natural","resource"],["resource","shark"],["shark","tourism"],["tourism","sustainable"],["sustainable","development"],["development","sustainability"],["sustainability","furthereading"],["furthereading","burger"],["burger","j"],["j","landscapes"],["landscapes","tourism"],["total","environment"],["h","tourism"],["tourism","ecotourism"],["protected","areas"],["k","n"],["n","k"],["ecotourism","encyclopedia"],["environmental","issues"],["issues","rev"],["rev","ed"],["ed","pasadena"],["pasadena","salem"],["salem","press"],["press","vol"],["vol","pp"],["pp","iucn"],["international","union"],["nature","pp"],["h","ecoturismo"],["diana","pp"],["r","shadow"],["shadow","players"],["players","ecotourism"],["ecotourism","development"],["development","corruption"],["state","politics"],["belize","third"],["third","world"],["world","quarterly"],["k","j"],["h","anderson"],["spatial","extent"],["ecotourism","principles"],["practices","annals"],["tourism","research"],["b","tourist"],["tourist","getting"],["getting","close"],["whale","watching"],["del","ecoturismo"],["de","turismo"],["rural","ed"],["r","ecotourism"],["ecotourism","local"],["local","communities"],["communities","tourismanagement"],["tourismanagement","weaver"],["b","ecotourism"],["less","developed"],["developed","world"],["world","cab"],["cab","int"],["int","publ"],["publ","pp"],["pp","isbn"],["isbn","externalinks"],["international","ecotourism"],["ecotourism","society"],["sustainable","tourism"],["transport","global"],["global","sustainable"],["sustainable","tourism"],["tourism","criteria"],["criteria","scuba"],["observer","eco"],["eco","tourism"],["tourism","holds"],["holds","promise"],["egyptian","oasis"],["oasis","npr"],["npr","hunting"],["help","wildlife"],["nature","network"],["network","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","ecotourism"],["ecotourism","category"],["category","ecological"],["ecological","economics"],["economics","category"],["category","natural"],["natural","resource"],["resource","management"]],"all_collocations":["file llano","llano del","del muerto","perquin el","thumb llano","llano del","del muerto","muerto waterfall","el salvador","salvador ecotourism","tourism involving","involving visiting","visiting fragile","fragile pristine","natural areas","areas intended","low impact","often small","small scale","scale alternative","standard commercial","commercial mass","mass tourism","means responsible","responsible travel","natural areas","areas conserving","conserving thenvironment","local people","international ecotourism","ecotourism society","society website","access date","purpose may","provide funds","ecological conservation","political empowerment","local communities","different cultures","future generations","generations may","may experience","experience destinations","destinations relatively","relatively untouched","human intervention","intervention several","several university","university programs","programs use","working definition","path defining","defining ecotourism","ecotourism retrieved","generally ecotourism","ecotourism deals","special emphasis","organization publishers","publishers tehran","tehran p","p english","english summary","summary available","available online","ecotourism focuses","socially responsible","responsible travel","travel personal","personal growth","environmental sustainability","sustainability ecotourism","ecotourism typically","typically involves","involves travel","flora faunand","faunand cultural","cultural heritage","primary attractions","attractions ecotourism","intended toffer","toffer tourists","human beings","greater appreciation","natural habitats","programs include","negative aspects","conventional tourism","cultural integrity","local people","people therefore","evaluating environmental","cultural factors","integral part","recycling energy","energy conservation","conservation energy","energy efficiency","efficiency water","water conservation","economic opportunities","local communities","reasons ecotourism","ecotourism often","often appeals","social responsibility","term ecotourism","ecotourism like","like sustainable","sustainable tourism","tourism ecotourism","ecotourism generally","generally depends","air transportation","climate change","change additionally","overall effect","sustainable tourism","mask hard","immediate self","eds page","page tourism","sustainability principles","practice cab","cab international","international wallingford","cases contributing","surroundings file","file h","watching near","estonia ecotourism","responsible tourism","conserves thenvironment","thenvironment sustains","local people","builds environmental","environmental awareness","awareness provides","provides direct","direct financial","financial benefits","conservation provides","provides financial","financial benefits","local people","people respects","respects local","local culture","culture supports","supports human","human rights","biodiversity biological","biological diversity","cultural diversity","ecosystem protection","protection promotion","sustainability sustainable","sustainable use","providing jobs","socio economic","economic benefits","benefits local","local communities","indigenous peoples","informed consent","ecotourism enterprises","enterprises tourism","natural resources","minimal impact","primary concern","environmental impact","impact affordability","luxury local","local culture","culture florand","florand fauna","main attractions","attractions local","local people","tourism economically","mass tourism","international ecotourism","ecotourism society","society defines","defines ecotourism","responsible travel","natural areas","conserves thenvironment","thenvironment sustains","local people","involves interpretation","many countries","countries ecotourism","finance protection","natural environment","major industry","national economics","economics economy","costa rica","rica ecuador","ecuador nepal","nepal kenya","kenya madagascar","antarctica ecotourism","ecotourism represents","significant portion","gross domestic","domestic product","economics economic","economic activity","activity ecotourism","ecotourism often","involves nature","nature see","see jungle","jungle tourism","tourism self","self proclaimed","proclaimed practitioners","ecotourism experiences","experiences assume","simply creating","creating destinations","areas according","operations using","eco friendly","ways although","although academics","academics disagree","little statistical","statistical data","five million","million ecotourists","population come","united states","many others","western europe","europe canadand","canadand australia","australia currently","various moves","create national","international ecotourism","ecotourism accreditation","accreditation programs","programs although","also controversial","controversial national","national ecotourism","ecotourism certification","certification programs","sweden terminology","upright px","elephant safari","national park","west bengal","bengal india","india file","file hanging","hanging bridge","hanging bridge","ecotourism area","kerala india","india india","first planned","planned ecotourism","ecotourism destination","destination ecotourism","late th","th century","eco tourism","tourism according","oxford english","english dictionary","dictionary ecotour","first recorded","ecotourism probably","oxford english","english dictionary","dictionary second","second edition","rom version","version draft","draft entries","entries december","december oxford","oxford university","university press","press citing","map ottawa","ottawa north","north bay","forestry service","service heading","heading ecotour","trans canada","canada highway","highway ottawa","ottawa north","north bay","tourism ecotourism","new viewpoint","ecological interest","interest usually","educational element","later use","use also","similar tour","visit designed","little detrimental","detrimental effect","undertaken withe","withe specific","specific aim","helping conservation","conservation efforts","efforts ecotourism","ecotourism n","n tourism","often threatened","threatened natural","natural environments","support conservation","conservation efforts","endangered environment","environment controlled","least possible","one source","source claims","used earlier","earlier claus","forum international","supposedly coined","coined ecotourism","yucat n","b weaver","weaver thencyclopedia","ecotourism cabi","cabi publishing","publishing p","p improving","improving sustainability","sustainability regulation","poorly implemented","implemented ecologically","ecologically destructive","operations like","like underwater","underwater hotels","hotels helicopter","helicopter tours","wildlife theme","theme parks","ecotourism along","canoeing camping","camping photography","wildlife observation","acknowledge responsible","responsible low","low impact","impact ecotourism","ecotourism puts","competitive disadvantage","disadvantage many","global standard","ecotourism companies","companies based","environmental commitment","commitment creating","international regulatory","regulatory board","board would","would enforce","enforce accreditation","accreditation procedures","various groups","hotels tour","tour operators","operators travel","travel agents","agents guides","guides airlines","airlines local","local authorities","authorities conservation","conservation organizations","non governmental","governmental organizations","board would","companies would","legally required","thecotourism brand","criteria including","management plan","plan benefit","local community","community small","small group","group interaction","interaction education","education value","staff training","training ecotourists","choices would","higher starating","starating environmental","environmental impact","impact assessment","could also","accreditation feasibility","scientific basis","recommendations could","plan infrastructure","certification programs","ecotourism costa","costa rica","example runs","sustainable tourism","tourism cst","cst program","cst program","program focuses","cultural resources","life within","within local","local communities","tother programs","national development","development cst","cst uses","rating system","company based","based upon","management policies","operation systems","systems within","company encourages","active contributor","local communities","overall population","population based","based upon","measurement index","index goes","best guidelines","education file","kayak guided","guided tour","thumb ecotour","ecotour guide","guide stands","kayaking kayak","environmental protection","protection strategy","strategy must","must address","ecotourists removed","carried outo","outo improve","environmental issues","care abouthe","abouthe places","obvious andirect","andirect medium","communicate awareness","awareness withe","withe confidence","intimate knowledge","actively discuss","discuss conservation","conservation issues","issues informing","informing ecotourists","local people","tour guide","guide training","training program","costa rica","tortuguero national","national park","helped mitigate","providing information","regulating tourists","parks beaches","beaches used","nesting endangered","endangered sea","scale slow","slow growth","local control","tourism describes","new form","multinational corporations","control ecotourism","ecotourism resources","corporations finance","degradation loss","traditional culture","taking place","ecotourism revenues","parent countries","percent go","local communities","sustainability highlights","small scale","scale slow","slow growth","locally based","based ecotourism","ecotourism local","local peoples","environmental protection","multinational corporations","corporations though","adverse impacts","thenvironment loss","traditions outweigh","establishing large","increased contributions","locally managed","managed ecotourism","ecotourism create","opportunities including","including high","high level","level management","management positions","issues associated","thecotourism experience","different lifestyle","development ofacilities","corporate western","western tourism","tourism standards","much simpler","less expensive","reserve banking","banking multiplier","multiplier effect","local products","products materials","used profits","great barriereef","barriereef park","australia reported","billion dollars","indirect income","areand added","added thousands","indirect jobs","however even","tourismay require","require foreign","foreign investment","investments arequired","non governmental","governmental organization","ecotourism sensitive","multiplier effect","unused resources","many workers","industrial capacity","increasing demand","boost production","full employment","supply side","side types","attempto boost","boost demand","demand would","resources therefore","multiplier concept","wrong headed","example consider","government increasing","million without","corresponding increase","would go","road builders","would hire","households receiving","save part","consumer goods","jobs wages","son withe","withe income","spending circulating","circulating around","around theconomy","multiplier effect","induced increases","consumer spending","occur due","increased incomes","increasing business","business revenues","revenues jobs","supply side","side barriers","potential output","output full","full employment","consumer spending","consumer incomes","income goes","saving leaking","previous round","round preventing","explosion efforts","exceptional biodiversity","galapagos islands","unesco world","world heritage","heritage site","world heritage","non profit","profit dedicated","unique living","living laboratory","laboratory againsthe","againsthe challenges","invasive species","species human","human impact","premiere galapagos","galapagos islands","islands tour","tour companies","companies dedicated","lasting protection","resource management","management natural","natural resource","resource management","specialized tool","several places","places throughouthe","throughouthe world","natural resources","withouthe sustainable","sustainable use","certain resources","becoming extinct","extinct ecotourism","ecotourism programs","proper management","management programs","thathese resources","resources remain","remain untouched","untouched several","several organizations","field natural","natural resources","hill areas","areas like","west bengal","plenty inumber","various florand","florand fauna","business purpose","situation researchers","presently working","natural resource","resource management","southeast asia","asia government","working together","industry operators","spread theconomic","theconomic benefits","recently formed","formed alliance","south east","east asian","asian tourism","tourism organisation","bringing together","diverse players","discuss resource","resource management","management concerns","summit held","quebec led","global sustainable","sustainable tourism","tourism criteria","advocacy groups","voluntary involve","following standards","standards effective","effective sustainability","sustainability planning","planning maximum","maximum social","social economic","economic benefits","benefits local","local communities","communities minimum","minimum negative","negative impacts","cultural heritage","minimum negative","negative impacts","enforcing agency","tourism activities","conventional tourism","tourism ecotourism","biodiversity preservation","preservation local","local social","social economic","economic benefits","environmental impact","considered ecotourism","interest groups","differently environmental","environmental organizations","generally ecotourism","ecotourism nature","nature based","managed conservation","conservation supporting","environmentally educated","tourist industry","governments however","however focus","tourism based","based inature","many terms","ecotourism nature","nature tourism","tourism low","green tourism","tourism bio","bio tourism","tourism ecologically","ecologically responsible","responsible tourism","marketing although","necessarily synonymous","problems associated","defining ecotourism","ecotourism often","often led","confusion among","among tourists","academics many","many problems","also subject","green wash","wash ing","trend towards","tourism schemes","schemes disguised","nature based","environmentally friendly","friendly ecotourism","ecotourism according","also morally","thenvironmenthe development","tremendous profits","profits associated","ecotourism negative","negative impact","impact ecotourism","become one","fastest growing","growing sectors","tourism industry","industry growing","growing annually","one definition","low impact","impact educational","educational ecologically","culturally sensitive","sensitive travel","benefits local","local communities","host countries","countries many","thecotourism projects","standards even","local communities","still facing","facing many","significant economic","economic benefits","ecotourism buthe","buthe negativeffects","negativeffects far","far outweigh","positive including","including forcing","forcing people","homes gross","gross violations","environmental hazards","hazards far","far outweigh","medium term","term economic","economic benefits","benefits miller","tremendous amount","human resources","resources continue","ecotourism despite","despite unsuccessful","unsuccessful outcomes","public relation","relation campaigns","criticism ecotourism","ecotourism channels","channels resources","resources away","could contribute","realistic solutions","pressing social","environmental problems","money tourism","generate often","often ties","ties parks","often causes","causes conflict","land use","use rights","rights fails","deliver promises","community level","level benefits","benefits damages","damages environments","social impacts","impacts indeed","indeed many","many argue","argue repeatedly","neither ecologically","socially beneficial","beneficial yet","conservation andevelopment","andevelopment west","west due","large profits","several studies","improve thecotourism","thecotourism structure","altogether however","conservation area","national park","c vol","vol thecotourism","thecotourism system","system exercises","exercises tremendous","tremendous financial","political influence","certain locations","locations funding","funding could","field studies","studies aimed","finding alternative","alternative solutions","solutions tourism","diverse problems","problems africa","africa faces","urbanization industrialization","agriculture athe","land resources","tourism profits","thenvironment local","local people","profit distribution","perfect world","made towards","towards educating","educating tourists","social effects","project false","false images","local indigenous","indigenous culture","culture though","though conservation","conservation efforts","importanto make","conservation acts","tourism industry","industry eastern","eastern african","african communities","developing regions","conservation efforts","efforts conservation","northwest yunnan","yunnan region","region prior","logging restrictions","restrictions imposed","chinese governmenthe","governmenthe industry","industry made","regions revenue","revenue following","complete ban","indigenous people","see little","little opportunity","economic development","development ecotourismay","ecotourismay provide","provide solutions","may serve","difficulties faced","maasai astated","astated thecotourism","thecotourism structure","structure must","host communities","developing regions","opportunity direct","direct environmental","environmental impacts","impacts ecotourism","ecotourism operations","operations occasionally","occasionally fail","conservation ideals","isometimes overlooked","highly consumer","consumer centered","centered activity","environmental conservation","economic growth","growth although","although ecotourism","small groups","groups even","modest increase","population however","however temporary","temporary puts","puts extra","extra pressure","local environment","additional infrastructure","water treatment","lodges come","non renewablenergy","renewablenergy sources","already limited","limited local","local resources","tourist infrastructure","squirrel monkeys","costa rica","cases thenvironment","thenvironment local","local communities","meethe infrastructure","infrastructure demands","adequate sanitation","sanitation facilities","many east","east african","african parks","parks results","campsite sewage","wildlife livestock","draw drinking","drinking water","environmental degradation","tourist infrastructure","infrastructure population","population pressures","ecotourism also","also leaves","leaves behind","behind garbage","pollution associated","associated withe","withe western","western lifestyle","lifestyle although","although ecotourists","ecotourists claim","environmentally concerned","rarely understand","day activities","physical impacts","one scientist","scientist observes","rarely acknowledge","eathe toilets","ecological systems","ecotourists recognize","great consumption","non renewablenergy","renewablenergy required","arrive atheir","atheir destination","typically moremote","conventional tourism","tourism destinations","exotic journey","place kilometers","kilometers away","ofuel person","person ecotourism","ecotourism activities","environmental impact","may disturb","disturb faunand","faunand flora","flora ecotourists","ecotourists believe","taking pictures","keep ecotourism","ecotourism sites","sites pristine","circuit inepal","inepal ecotourists","marked trails","created alternate","alternate routes","routes contributing","plant damage","thecotourism activity","activity involves","involves wildlife","wildlife viewing","away animals","nesting sites","kenya wildlife","wildlife observer","observer disruption","disruption drives","drives cheetahs","species environmental","environmental hazards","industrialization urbanization","agriculture practices","human society","serious impact","thenvironment ecotourism","ecotourism also","also considered","term ecotourismay","ecotourismay sound","sound relatively","serious impacts","various forms","environmental degradation","motor vehicles","vehicles crossing","park increases","grass cover","animal species","areas also","invasive species","species due","increasing traffic","beaten path","new undiscovered","undiscovered areas","areas ecotourism","ecotourism also","value placed","certain species","little known","local people","highly valued","valued commodities","nature commodification","plants may","social value","within protected","protected areas","areas local","local people","relatively obvious","commercial venture","pristine land","generate revenue","high number","traffic tourists","inevitably means","higher pressure","thenvironment local","local people","foreign investors","benefits local","local people","investors instead","local economy","environmental protection","protection leading","environmental degradation","limited numbers","local people","theconomy enter","lowest level","tourist areas","two market","market system","local people","people results","environmental degradation","highly publicized","publicized case","maasai people","people maasai","kenya killed","killed wildlife","wildlife inational","inational parks","national park","unfair compensation","compensation terms","economic opportunities","local people","people also","affluent ecotourists","ecotourists encourage","destructive markets","tropical islands","animal products","asia contributing","illegal harvesting","sea turtle","turtle reserves","reserves use","large portion","destructive activities","people one","worst examples","national parks","game reserves","maasai land","first negative","negative impact","land lost","maasai culture","culture local","national governments","governments took","took advantage","grazing land","land putting","socio economic","maasai also","economic benefits","benefits despite","land employment","employment favors","favors better","better educated","educated workers","workers furthermore","profits back","local economy","cases game","game reserves","created without","without informing","local people","delivered another","another source","local people","government eco","eco tourism","tourism works","local people","simplified images","images officials","officials direct","direct policies","projects towards","local people","local people","projects fail","fail west","west clearly","clearly tourism","local people","satisfying instead","instead ecotourism","ecotourism exploits","african maasai","maasai tribes","local communities","become sustainable","sustainable threats","indigenous cultures","cultures ecotourism","ecotourism often","often claims","enhances local","local cultures","cultures evidence","evidence shows","protected areas","areas local","local people","illegally lostheir","lostheir homes","compensation pushing","pushing people","people onto","climates poor","ecotourism profits","directed back","community thestablishment","create harsh","harsh survival","survival realities","traditional use","land natural","natural resources","resources ethnic","ethnic groups","local people","people struggle","cultural survival","cultural expression","tourists local","local indigenous","indigenous people","people also","change tourism","many lodges","much firewood","tourism vehicles","regularly drive","vehicle tracks","cross thentire","withe administration","environmental protection","often lack","environmental protection","protection may","defined costly","implement hard","uncertain effectiveness","effectiveness government","government regulatory","regulatory agencies","making decisions","politically beneficial","attractive visitor","ecotourism site","site may","may take","pressing environmental","environmental concerns","concerns like","like acquiring","acquiring habitat","habitat protecting","removing invasive","invasive ones","ones finally","finally influential","influential groups","thecotourism industry","regulate causing","ecotourism sites","companies offers","government agencies","believed thathese","thathese companies","self interest","limited environmental","environmental degradation","higher profit","profit however","however theory","theory indicates","indicates thathis","thathis practice","economically feasible","manage thenvironmenthe","thenvironmenthe model","entail profits","promote imitation","ecotourism sites","novel experience","companies view","also enter","similar practices","practices increasing","increasing competition","reducing demand","demand eventually","theconomic profit","cost benefit","thathe company","company bears","environmental protection","protection without","without receiving","gains without","without economic","economic incentive","whole premise","environmental protection","instead ecotourism","ecotourism companies","related expenses","maximize tourism","tourism demand","commons offers","offers another","another model","environmental protection","ecotourism sites","sites utilized","many companies","companies although","communal incentive","long run","best interesto","interesto utilize","utilize thecotourism","thecotourism site","site beyond","company gains","theconomic benefit","thenvironmental cost","company recognizes","recognizes thathere","mobility oforeign","oforeign investment","economic incentive","environmental protection","protection means","ecotourism companies","inew sites","existing one","degraded case","case studies","engage tourists","low impact","impact non","locally oriented","oriented environments","maintain species","habitats especially","underdeveloped regions","projects including","united states","claims many","many projects","fundamental issues","nations face","first place","place consequently","consequently ecotourismay","cases leaving","leaving economies","state worse","following case","case studies","studies illustrate","rising complexity","various regions","world ecotourism","ecotourism costa","costa rica","rica ecotourism","jordan ecotourism","south africa","africa ecotourism","united statesee","statesee also","also biodiversity","conservation biology","biology conservation","movement conservation","conservation reliant","reliant species","species earth","ecology movement","movement ecosystem","environmental protection","protection global","hunting habitat","habitat conservation","conservation hypermobility","hypermobility travel","travel market","market governance","governance mechanisms","mechanisms natural","natural capital","capital natural","natural environment","environment natural","natural resource","resource shark","shark tourism","tourism sustainable","sustainable development","development sustainability","sustainability furthereading","furthereading burger","burger j","j landscapes","landscapes tourism","total environment","h tourism","tourism ecotourism","protected areas","k n","n k","ecotourism encyclopedia","environmental issues","issues rev","rev ed","ed pasadena","pasadena salem","salem press","press vol","vol pp","pp iucn","international union","nature pp","h ecoturismo","diana pp","r shadow","shadow players","players ecotourism","ecotourism development","development corruption","state politics","belize third","third world","world quarterly","k j","h anderson","spatial extent","ecotourism principles","practices annals","tourism research","b tourist","tourist getting","getting close","whale watching","del ecoturismo","de turismo","rural ed","r ecotourism","ecotourism local","local communities","communities tourismanagement","tourismanagement weaver","b ecotourism","less developed","developed world","world cab","cab int","int publ","publ pp","pp isbn","isbn externalinks","international ecotourism","ecotourism society","sustainable tourism","transport global","global sustainable","sustainable tourism","tourism criteria","criteria scuba","observer eco","eco tourism","tourism holds","holds promise","egyptian oasis","oasis npr","npr hunting","help wildlife","nature network","network category","category adventure","adventure travel","travel category","category ecotourism","ecotourism category","category ecological","ecological economics","economics category","category natural","natural resource","resource management"],"new_description":"file llano del muerto perquin el thumb llano del muerto waterfall el_salvador ecotourism form tourism_involving visiting fragile pristine relatively natural areas intended low_impact often small_scale alternative standard commercial mass_tourism means responsible_travel natural areas conserving thenvironment improving well local_people international ecotourism society website access_date purpose may educate traveler provide funds ecological conservation directly development political empowerment local_communities different cultures human ecotourism considered critical future generations may experience destinations relatively untouched human intervention several university programs use description working definition path defining ecotourism retrieved generally ecotourism deals interaction natural geotourism special emphasis iran organization publishers tehran p english summary available_online ecotourism focuses socially responsible_travel personal growth environmental sustainability ecotourism typically involves travel_destinations flora faunand cultural_heritage primary attractions ecotourism intended toffer tourists insight impact human beings thenvironment foster greater appreciation natural habitats programs include minimize negative aspects conventional tourism thenvironment enhance cultural integrity local_people therefore addition evaluating environmental cultural factors integral_part ecotourism promotion recycling energy conservation energy efficiency water conservation creation economic opportunities local_communities reasons ecotourism often appeals advocates environmental social responsibility term ecotourism like sustainable_tourism considered many like forms tourism_ecotourism generally depends air transportation contributes global climate_change additionally overall effect sustainable_tourism negative philanthropic mask hard immediate self eds page tourism sustainability principles practice cab international wallingford different tourist sense environment cases contributing sustainability surroundings file h thumb watching near estonia ecotourism responsible_tourism conserves thenvironment sustains well local_people builds environmental awareness provides direct financial benefits conservation provides financial benefits empowerment local_people respects local_culture supports human_rights conservation biodiversity biological diversity cultural diversity ecosystem protection promotion sustainability sustainable use biodiversity providing jobs local socio economic_benefits local_communities indigenous peoples informed consent participation management ecotourism enterprises tourism natural_resources minimal impact thenvironment primary concern tourism environmental_impact affordability lack waste form luxury local_culture florand fauna main attractions local_people benefit form tourism economically often mass_tourism international ecotourism society defines ecotourism responsible_travel natural areas conserves thenvironment sustains well local_people involves interpretation education many_countries ecotourism simply activity finance protection natural_environment major industry national economics economy example costa_rica ecuador nepal kenya madagascar antarctica ecotourism represents significant portion gross domestic product economics economic activity ecotourism often form tourism involves nature see jungle_tourism self proclaimed practitioners hosts ecotourism experiences assume achieved simply creating destinations areas according critics commonplace practice people beauty nature critics operators ing operations using green eco friendly environmentally ways although academics disagree classified little statistical data five million ecotourists majority population come united_states many_others western_europe canadand australia currently various moves create national international ecotourism accreditation programs although process also controversial national ecotourism certification programs put place countriesuch costa kenya sweden terminology history thumb upright px elephant safari national_park west bengal india file hanging bridge thumb right hanging bridge ecotourism area kerala india india first planned ecotourism destination ecotourism late_th century eco_tourism according oxford_english_dictionary ecotour first recorded ecotourism probably ecotour oxford_english_dictionary second edition rom version draft entries december oxford_university_press citing map ottawa north bay forestry service heading ecotour trans_canada highway ottawa north bay tourism_ecotourism new viewpoint fao n tour visito area ecological interest usually educational element later use also similar tour visit designed little detrimental effect possible undertaken withe specific aim helping conservation_efforts ecotourism n tourism areas ecological exotic often threatened natural_environments support conservation_efforts wildlife access endangered environment controlled least possible one source claims terms used earlier claus nick academic adventurer forum international berkeley supposedly coined ecotourism ran first yucat n thearly b weaver thencyclopedia ecotourism cabi publishing p improving sustainability regulation accreditation regulation ecotourismay poorly implemented ecologically destructive operations like underwater hotels helicopter tours wildlife theme_parks categorized ecotourism along canoeing camping photography wildlife observation failure acknowledge responsible low_impact ecotourism puts companies competitive disadvantage many argued global standard accreditation ecotourism companies_based level environmental commitment creating standard follow national international regulatory board would enforce accreditation procedures representation various groups hotels tour_operators travel_agents guides airlines local_authorities conservation organizations non_governmental organizations decisions board would sanctioned non companies would legally required use thecotourism brand suggests green based criteria including management plan benefit local_community small group interaction education value staff training ecotourists consider choices would experience see higher starating environmental_impact assessment could also_used form accreditation feasibility evaluated scientific basis recommendations could made plan infrastructure capacity manage form accreditation sensitive site countries certification programs ecotourism costa_rica example runs certification sustainable_tourism cst program intended balance business local cst program focuses company interaction natural cultural resources improvement quality life within local_communities tother programs national development cst uses rating system company_based_upon sustainable operations cst interaction company surrounding management policies operation systems within company company encourages clients become active contributor policies interaction company local_communities overall population based_upon criteria company evaluated strength measurement index goes worst best guidelines education file kayak guided_tour among fleet jpg thumb ecotour guide stands kayaking kayak dolphins around key environmental_protection strategy must address issue ecotourists removed cause effect actions thenvironment carried outo improve environmental issues care abouthe places guides obvious andirect medium communicate awareness withe confidence ecotourists intimate knowledge guides actively discuss conservation issues informing ecotourists actions trip local_people tour_guide training program costa_rica tortuguero national_park helped mitigate impacts providing information regulating tourists parks beaches used nesting endangered sea scale slow growth local control tourism describes new form imperialism multinational corporations control ecotourism resources corporations finance profit development large causes degradation loss traditional culture way life exploitation zimbabwe nepal region taking_place percent ecotourism revenues parent countries less percent go local_communities lack sustainability highlights need small_scale slow growth locally based_ecotourism local_peoples interest well community therefore environmental_protection multinational corporations though little profits lack control adverse impacts thenvironment loss culture traditions outweigh benefits establishing large increased contributions communities locally managed ecotourism create opportunities including high_level management positions issues associated poverty unemployment thecotourism experience marketed different lifestyle large development ofacilities infrastructure need conform corporate western tourism standards much simpler less expensive greater reserve banking multiplier effect theconomy local products materials labor used profits locally import great barriereef park australia reported half billion dollars indirect income areand added thousands indirect jobs however even form tourismay require foreign investment promotion start investments arequired crucial communities find company non_governmental organization reflects philosophy ecotourism sensitive concerns willing basic multiplier effect starts unused resources example many workers unemployed much industrial capacity idle utilized increasing demand theconomy possible boost production theconomy already full employment structural supply side types unemployment attempto boost demand would lead inflation various schools economics say law possibility employment resources therefore multiplier concept wrong headed example consider government increasing expenditure roads million without corresponding increase taxation would go road builders would hire workers money wages profits households receiving incomes save part money spend rest consumer goods turn generate jobs wages profits son withe income spending circulating around theconomy multiplier effect induced increases consumer spending occur due increased incomes feedback increasing business revenues jobs income process lead economic supply side barriers potential output full employment round increase consumer spending less increase consumer incomes consume less one round income goes saving leaking process increase spending previous round preventing explosion efforts risk world exceptional biodiversity located galapagos_islands islands designated unesco_world_heritage_site added unesco list world_heritage danger non_profit dedicated preserving unique living laboratory againsthe challenges invasive species human impact tourism_travelers wanto thenvironment impact tourism recommended utilize operator endorsed organization case galapagos list world premiere galapagos_islands tour companies dedicated lasting protection preservation resource_management natural resource_management utilized specialized tool development ecotourism several places throughouthe_world number natural_resources abundant habitats resources withouthe sustainable use certain resources destroyed floral species becoming extinct ecotourism programs introduced conservation plans proper management programs introduced thathese resources remain untouched several organizations scientists working field natural_resources hill areas like west bengal plenty inumber various florand fauna business purpose situation researchers university presently working area development ecotourism used tool natural resource_management southeast_asia government organizations working together academics industry operators spread theconomic benefits tourism villages region recently formed alliance south_east_asian tourism_organisation bringing together diverse players discuss resource_management concerns summit held quebec led global sustainable_tourism criteria foundation advocacy groups criteria voluntary involve following standards effective sustainability planning maximum social economic_benefits local_communities minimum negative_impacts cultural_heritage minimum negative_impacts thenvironment k p enforcing agency system summit continuum tourism_activities stretch conventional tourism_ecotourism lot limit biodiversity preservation local social economic_benefits environmental_impact considered ecotourism reason interest groups governments differently environmental organizations generally ecotourism nature based managed conservation supporting environmentally educated tourist_industry governments however focus product ecotourism equivalento sort tourism based inature many terms used ecotourism nature tourism low green tourism bio tourism ecologically responsible_tourism others used literature marketing although necessarily synonymous ecotourism problems associated defining ecotourism often led confusion among tourists academics many problems also subject considerable concern green wash ing trend towards commercialization tourism schemes disguised nature based environmentally friendly ecotourism according schemes culturally also morally tourists concerns thenvironmenthe development success large intensive ecologically schemes tremendous profits associated labeled ecotourism negative impact ecotourism become_one fastest_growing sectors tourism_industry growing annually one definition ecotourism practice low_impact educational ecologically culturally sensitive travel benefits local_communities host countries many thecotourism projects meeting standards even guidelines executed local_communities still facing many negative africa one countries significant economic_benefits ecotourism buthe negativeffects far outweigh positive including forcing people leave homes gross violations rights environmental hazards far outweigh medium term economic_benefits miller tremendous amount money human_resources continue used ecotourism despite unsuccessful outcomes even money put public relation campaigns theffects criticism ecotourism channels resources away projects could contribute sustainable realistic solutions pressing social environmental problems money tourism generate often ties parks ecotourism buthere tension relationship often causes conflict changes land use rights fails deliver promises community level benefits damages environments many social impacts indeed many argue repeatedly ecotourism neither ecologically socially beneficial yet strategy conservation andevelopment west due large profits several studies done ways improve thecotourism structure argue provide stopping altogether however among zambezi conservation area national_park judged worth c vol thecotourism system exercises tremendous financial political influence shows strong activities certain locations funding could used field studies aimed finding alternative solutions tourism diverse problems africa faces result urbanization industrialization agriculture athe ecotourism become source conflict control land resources tourism profits thenvironment local_people led conflicts profit distribution perfect world would made towards educating tourists thenvironmental social effects travels regulations place boundaries investors ecotourism implemented promotion projects materials project false images destinations local indigenous culture though conservation_efforts east serving interests tourism_region importanto make distinction conservation acts tourism_industry eastern african communities nothe developing regions social conservation_efforts conservation northwest yunnan region china brought use region prior logging restrictions imposed chinese governmenthe industry made regions revenue following complete ban indigenous people yunnan see little opportunity economic_development ecotourismay provide solutions theconomic loss industry conservation yunnan way may_serve difficulties faced maasai astated thecotourism structure must improved direct money host_communities reducing industry successful poverty developing regions provides opportunity direct environmental_impacts ecotourism operations occasionally fail live conservation ideals isometimes overlooked ecotourism highly consumer centered activity environmental conservation means economic_growth although ecotourism intended small groups even modest increase population however temporary puts extra pressure local environment development additional infrastructure amenities construction water treatment facilities lodges come non renewablenergy sources utilization already limited local resources conversion tourist infrastructure habitat butterflies mexico squirrel monkeys costa_rica cases thenvironment local_communities unable meethe infrastructure demands ecotourism lack adequate sanitation facilities many east african parks results disposal campsite sewage rivers wildlife livestock people draw drinking water aside environmental degradation tourist infrastructure population pressures ecotourism also leaves behind garbage pollution associated_withe western lifestyle although ecotourists claim sophisticated environmentally concerned rarely understand consequences visits day day activities physical impacts thenvironment one scientist observes rarely acknowledge meals eathe toilets water drink son part economic ecological systems helping witheir activities ecotourists recognize great consumption non renewablenergy required arrive atheir destination typically moremote conventional tourism_destinations instance exotic journey place kilometers away ofuel person ecotourism activities issues environmental_impact may disturb faunand flora ecotourists believe taking pictures leaving keep ecotourism sites pristine even activitiesuch nature destructive circuit inepal ecotourists worn marked trails created alternate routes contributing soil erosion plant damage thecotourism activity involves wildlife viewing away animals feeding nesting sites presence people kenya wildlife observer disruption drives cheetahs increasing risk inbreeding species environmental hazards industrialization urbanization agriculture practices human society considered serious impact thenvironment ecotourism also_considered playing role environmental term ecotourismay sound relatively one serious impacts consumption virgin often disruption systems various forms pollution contribute environmental degradation example number motor_vehicles crossing park increases tour species number roads grass cover consequences plant animal species areas also invasive species due increasing traffic beaten path new undiscovered areas ecotourism also effect species value placed certain species gone little_known valued local_people highly valued commodities commodification nature commodification plants may social value lead within protected_areas local_people images also turned commodities brings relatively obvious commercial venture pristine land terms generate revenue high number traffic tourists inevitably means higher pressure thenvironment local_people forms ecotourism owned foreign investors corporations provide benefits local_people majority profits put pockets investors instead local_economy environmental_protection leading environmental degradation limited numbers local_people aremployed theconomy enter lowest level unable live tourist areas wages two market system cases local_people results environmental degradation highly publicized case maasai people maasai kenya killed wildlife inational parks helping national_park save wildlife show unfair compensation terms lack economic opportunities local_people also thenvironment means presence affluent ecotourists encourage development destructive markets wildlife sale coral tropical islands animal products asia contributing illegal harvesting thenvironment sea turtle reserves use large portion guard destructive activities people one worst examples communities moved order create park story maasai national_parks game reserves east maasai land first negative impact tourism land lost maasai culture local national governments took advantage maasai ignorance situation robbed huge grazing land putting risk socio economic kenya maasai also gained economic_benefits despite loss land employment favors better educated workers furthermore investors areare local put profits back local_economy cases game reserves created without informing consulting local_people find delivered another source manipulation local_people government eco_tourism works create images local_people uses surroundings lens simplified images officials direct policies projects towards local_people local_people blamed projects fail west clearly tourism trade local_people make rich satisfying instead ecotourism exploits particularly african maasai tribes useful local_communities become sustainable threats indigenous cultures ecotourism often claims enhances local_cultures evidence shows withestablishment protected_areas local_people illegally lostheir homes mostly compensation pushing people onto climates poor lack water livestock little enhance even proportion ecotourism profits directed back community thestablishment parks create harsh survival realities people traditional use land natural_resources ethnic_groups increasingly seen backdrop scenery wildlife local_people struggle cultural survival freedom cultural expression observed tourists local indigenous people also strong change tourism allowed develop virtually controls many lodges much firewood used limits placed tourism vehicles regularly drive track wildlife vehicle tracks cross thentire inevitably bush becoming governments typically withe administration enforcement environmental_protection often lack commitment capability sites regulations environmental_protection may defined costly implement hard enforce uncertain effectiveness government regulatory agencies susceptible making decisions spend politically beneficial environmentally projects prestige construction attractive visitor_center ecotourism site may take pressing environmental concerns like acquiring habitat protecting species removing invasive ones finally influential groups pressure sway interests governmento favor government become benefits thecotourism industry supposed regulate causing regulations become management ecotourism sites companies offers alternative cost regulation government_agencies believed thathese companies self interest limited environmental degradation tourists pay translates higher profit however theory indicates thathis practice economically feasible fail manage thenvironmenthe model states entail profits profits promote imitation company ecotourism sites able charge premium novel experience companies view success approach also enter market similar practices increasing competition reducing demand eventually demand reduced theconomic profit zero cost benefit thathe_company bears cost environmental_protection without receiving gains without economic incentive whole premise self environmental_protection instead ecotourism companies related expenses maximize tourism demand tragedy commons offers another model economic environmental_protection ecotourism sites utilized many companies although communal incentive maximizing benefits long run company best interesto utilize thecotourism site beyond increasing_number ecotourists instance company gains theconomic benefit paying part thenvironmental cost way company recognizes thathere incentive actively bear costs benefits shared companies result together mobility oforeign investment lack economic incentive environmental_protection means ecotourism companies disposed establishing inew sites existing one degraded case_studies purpose ecotourism engage tourists low_impact non locally oriented environments order maintain species habitats especially underdeveloped regions projects including found united_states support claims many projects failed fundamental issues nations face first place consequently ecotourismay generate benefits intended provide regions people cases leaving economies state worse following case_studies illustrate rising complexity ecotourism impacts positive negative thenvironment economies various regions world ecotourism costa_rica ecotourism jordan ecotourism south_africa ecotourism united_statesee also biodiversity conservation_biology conservation movement conservation reliant species earth ecology movement ecosystem environmental_protection global hunting habitat conservation hypermobility travel_market governance governance mechanisms natural capital natural_environment natural resource resource shark tourism sustainable_development sustainability furthereading burger j landscapes tourism conservation science total environment h tourism_ecotourism protected_areas k n k ecotourism encyclopedia environmental issues rev ed pasadena salem press vol pp iucn international union conservation nature pp h ecoturismo diana pp r shadow players ecotourism development corruption state politics belize third_world quarterly k j h anderson spatial extent human effects ecotourism principles practices annals tourism_research b tourist getting close whales whale_watching del ecoturismo de_turismo el rural ed turismo r ecotourism local_communities tourismanagement weaver b ecotourism less developed world cab int publ pp isbn_externalinks international ecotourism society centre sustainable_tourism transport global sustainable_tourism criteria scuba among observer eco_tourism holds promise egyptian oasis npr hunting help wildlife eco nature network category_adventure_travel_category ecotourism category ecological economics category natural resource_management"},{"title":"Edward Stanford Travel Writing Awards","description":"thedward stanford travel writing awards comprises two principal awards the stanfordolman travel book of the year and thedward stanford award for outstanding contribution to travel writing the award was previously calledolman bestravel book award the award is named after edward stanford and isponsored by stanfords a travel books and map storestablished in london in the stanfordolman travel book of the year is one of the two principal annual travel book awards in britain and the only one that is open to all writers the other award is that madeach year by the british guild of travel writers buthat is limited to authors who are members of the guild the first dolman award was given in justwo years after the only other travel book award the thomas cook travel book award which ran for years was abandoned by itsponsor from its founding through the to prize was organized by the authors club and wasponsored by and named after club member william dolman beginning in a new sponsor stanfords a travel book store was established along with an increase to for the winner fullist of awards thedward stanford travel writing awards consist of the following awardstanfordolman travel book of the year in association withe authors club edward stanford award for outstanding contribution to travel writing specsavers fiction with a sense of place wanderlust adventure travel book of the year national book tokens children s travel book of the year lonely planet pathfinders travel blog of the year destinationshow illustrated travel book of the year food and travel magazine food travel book of the year london book fair innovation in travel publishing bradtravel guides new travel writer of the year stanfordolman travel book of the year winner stanfordolman travel book of the year the winner was announced february james attlee station to station searching for stories on the great western line geoff dyer white sands experiences from the outside world elisabeth luard squirrel pie and other stories adventures in food across the globe jim perrin the hills of wales julian sayarer interstate hitchhiking through the state of a nation paul theroux deep south philip marsden risinground a search for the spirit of place helenattlee the land where lemons grow the story of italy and its citrus fruit horatio clare down to the sea in ships of ageless oceans and modern menick hunt walking the woods and the water in patrick leigh fermor s footsteps from the hook of holland to the golden horn jens m hling a journey into russia elizabeth pisanindonesia etc exploring the improbable nation dolman bestravel book award oliver bullough the last man in russia patrick leigh fermor the broken road charlotte higgins under another sky journeys in roman britain iain sinclair american smoke sylvain tesson the consolations of the forest consolations of the forest alone in a cabin the middle taiga sara wheeler o my america noo saro wiwa looking for transwonderland travels inigeria jeremy seal meander easto west along a turkish river kathleen jamie sightlines a gill the golden door letters to america robert macfarlane writerobert macfarlane the old ways a journey on foot robert macfarlane writer michael jacobs the robber of memories a river journey through colombia julia blackburn thin paths journeys in and around an italian mountain village john gimlette wild coastravels on south america s untamedge jacek hugo bader white fever a journey to the frozen heart of siberia olivia laing to the river a journey beneathe surface sharifa rhodes pitts harlem is nowhere a journey to the mecca of black america colin thubron to a mountain tibet nicolas jubber drinking arak off an ayatollah s beard a journey through the inside out worlds of irand afghanistan rachel polonsky molotov s magic lantern a journey in russian history katherine russell rich dreaming in hindi coming awake in another language graham robb parisians an adventure history of paris douglas rogers writer douglas rogers the last resort book the last resort a memoir of zimbabwe simon winder germania in wayward pursuit of the germans and their history william blacker author william blacker along thenchanted way horatio clare a single swallow matthew engeleven minutes late a train journey to the soul of britain daniel metcalfe out of steppe susan richards author susan richards lost and found in russia hugh thomson author hugh thomson tequila oil getting lost in mexico ian thomson writer ian thomson the dead yard alice albinia empires of the indus andrew brown writer andrew brown fishing in utopia richard grant writerichard grant bandit roads kapkassabova street without a name grevelindop travels on the dance floor dervla murphy the island that dared tim butcher blood river henry hemming misadventure in the middleast john lucas poet john lucas acharnon street robert macfarlane travel writerobert macfarlane the wild places christopherobbins in search of kazakhstan the land that disappeared rory mccarthy nobody told us we are defeatedavid mckie great british bus journeys tom parry author tom parry thumbs up australia hitchhiking the outback claire scobie last seen in lhasa nicholas jubber the prester quest joanna kavenna the ice museum ruth padel tigers in red weather a quest for the last wild tigers richard lloyd parry in the time of madnesstevie smith pedalling to hawaii edward stanford outstanding contribution to travel writing award a lifetime achievement award for travel writing bill bryson michael palin bradtravel guides new travel writer of the year winner the winner was announced february sophy downes evil eye in esfahan suchita shah enguzi dom tuletthe tiger s tail externalinks edward stanford travel writing awards dolman bestravel book award athe authors club old site dolman bestravel book award and shortlist at librarything category travel writing category british literary awards category non fiction literary awards category awards established in category establishments in the united kingdom","main_words":["stanford","travel_writing","awards","comprises","two","principal","awards","stanfordolman","travel_book","year","stanford","award","outstanding","contribution","travel_writing","award","previously","bestravel","book_award","award","named","edward","stanford","isponsored","travel_books","map","london","stanfordolman","travel_book","year","one","two","principal","annual","travel_book","awards","britain","one","open","writers","award","year","british","guild","travel_writers","buthat","limited","authors","members","guild","first","dolman","award","given","years","travel_book","award","thomas_cook","travel_book","award","ran","years","abandoned","founding","prize","organized","authors","club","wasponsored","named","club","member","william","dolman","beginning","new","sponsor","travel_book","store","established","along","increase","winner","awards","stanford","travel_writing","awards","consist","following","travel_book","year","association_withe","authors","club","edward","stanford","award","outstanding","contribution","travel_writing","fiction","sense","place","wanderlust","year","national","book","children","travel_book","year","lonely_planet","travel","blog","year","illustrated","travel_book","year","food","travel_magazine","food","travel_book","year","london","book","fair","innovation","travel","publishing","bradtravel","guides","new","travel_writer","year","stanfordolman","travel_book","year","winner","stanfordolman","travel_book","year","winner","announced","february","james","station","station","searching","stories","great","western","line","geoff","white","sands","experiences","outside","world","elisabeth","squirrel","pie","stories","adventures","food","across","globe","jim","perrin","hills","wales","julian","interstate","hitchhiking","state","nation","paul","theroux","deep","south","philip","search","spirit","place","land","grow","story","italy","citrus","fruit","horatio","clare","sea","ships","oceans","modern","hunt","walking","woods","water","patrick","leigh","footsteps","hook","holland","golden","horn","journey","russia","elizabeth","etc","exploring","nation","dolman","bestravel","book_award","oliver","last","man","russia","patrick","leigh","broken","road","charlotte","another","sky","journeys","roman","britain","iain","american","smoke","forest","forest","alone","cabin","middle","wheeler","america","looking","travels","inigeria","jeremy","seal","easto","west","along","turkish","river","kathleen","jamie","gill","golden","door","letters","america","robert","macfarlane","macfarlane","old","ways","journey","foot","robert","macfarlane","writer","michael","jacobs","memories","river","journey","colombia","julia","thin","paths","journeys","around","italian","mountain","village","john","wild","south_america","hugo","white","fever","journey","frozen","heart","river","journey","beneathe","surface","rhodes","harlem","nowhere","journey","mecca","black","america","colin","mountain","tibet","nicolas","drinking","journey","inside","worlds","irand","afghanistan","rachel","magic","lantern","journey","russian","history","katherine","russell","rich","coming","another","language","graham","robb","adventure","history","paris","douglas","rogers","writer","douglas","rogers","last","resort","book","last","resort","memoir","zimbabwe","simon","pursuit","germans","history","william","author","william","along","way","horatio","clare","single","matthew","minutes","late","train","journey","soul","britain","daniel","susan","richards","author","susan","richards","lost","found","russia","hugh","thomson","author","hugh","thomson","tequila","oil","getting","lost","mexico","ian","thomson","writer","ian","thomson","dead","yard","alice","empires","indus","andrew","brown","writer","andrew","brown","fishing","utopia","richard","grant","grant","roads","street","without","name","travels","dance_floor","murphy","island","tim","butcher","blood","river","henry","middleast","john","lucas","poet","john","lucas","street","robert","macfarlane","travel","macfarlane","wild","places","search","kazakhstan","land","disappeared","rory","nobody","told","us","great","british","bus","journeys","tom","parry","author","tom","parry","australia","hitchhiking","outback","last","seen","nicholas","quest","ice","museum","ruth","tigers","red","weather","quest","last","wild","tigers","richard","lloyd","parry","time","smith","hawaii","edward","stanford","outstanding","contribution","travel_writing","award","lifetime","achievement","award","travel_writing","bill","bryson","michael_palin","bradtravel","guides","new","travel_writer","year","winner","winner","announced","february","evil","eye","shah","dom","tiger","tail","externalinks","edward","stanford","travel_writing","awards","dolman","bestravel","book_award","athe","authors","club","old","site","dolman","bestravel","book_award","category_travel","literary","fiction","literary","awards","established","category_establishments","united_kingdom"],"clean_bigrams":[["stanford","travel"],["travel","writing"],["writing","awards"],["awards","comprises"],["comprises","two"],["two","principal"],["principal","awards"],["stanfordolman","travel"],["travel","book"],["stanford","award"],["outstanding","contribution"],["travel","writing"],["writing","award"],["bestravel","book"],["book","award"],["edward","stanford"],["travel","books"],["stanfordolman","travel"],["travel","book"],["two","principal"],["principal","annual"],["annual","travel"],["travel","book"],["book","awards"],["british","guild"],["travel","writers"],["writers","buthat"],["first","dolman"],["dolman","award"],["travel","book"],["book","award"],["thomas","cook"],["cook","travel"],["travel","book"],["book","award"],["authors","club"],["club","member"],["member","william"],["william","dolman"],["dolman","beginning"],["new","sponsor"],["travel","book"],["book","store"],["established","along"],["stanford","travel"],["travel","writing"],["writing","awards"],["awards","consist"],["travel","book"],["association","withe"],["withe","authors"],["authors","club"],["club","edward"],["edward","stanford"],["stanford","award"],["outstanding","contribution"],["travel","writing"],["place","wanderlust"],["wanderlust","adventure"],["adventure","travel"],["travel","book"],["year","national"],["national","book"],["travel","book"],["year","lonely"],["lonely","planet"],["travel","blog"],["illustrated","travel"],["travel","book"],["year","food"],["food","travel"],["travel","magazine"],["magazine","food"],["food","travel"],["travel","book"],["year","london"],["london","book"],["book","fair"],["fair","innovation"],["travel","publishing"],["publishing","bradtravel"],["bradtravel","guides"],["guides","new"],["new","travel"],["travel","writer"],["year","stanfordolman"],["stanfordolman","travel"],["travel","book"],["year","winner"],["winner","stanfordolman"],["stanfordolman","travel"],["travel","book"],["year","winner"],["announced","february"],["february","james"],["station","searching"],["great","western"],["western","line"],["line","geoff"],["white","sands"],["sands","experiences"],["outside","world"],["world","elisabeth"],["squirrel","pie"],["stories","adventures"],["food","across"],["globe","jim"],["jim","perrin"],["wales","julian"],["interstate","hitchhiking"],["nation","paul"],["paul","theroux"],["theroux","deep"],["deep","south"],["south","philip"],["citrus","fruit"],["fruit","horatio"],["horatio","clare"],["hunt","walking"],["patrick","leigh"],["golden","horn"],["russia","elizabeth"],["etc","exploring"],["nation","dolman"],["dolman","bestravel"],["bestravel","book"],["book","award"],["award","oliver"],["last","man"],["russia","patrick"],["patrick","leigh"],["broken","road"],["road","charlotte"],["another","sky"],["sky","journeys"],["roman","britain"],["britain","iain"],["american","smoke"],["forest","alone"],["travels","inigeria"],["inigeria","jeremy"],["jeremy","seal"],["easto","west"],["west","along"],["turkish","river"],["river","kathleen"],["kathleen","jamie"],["golden","door"],["door","letters"],["america","robert"],["robert","macfarlane"],["old","ways"],["foot","robert"],["robert","macfarlane"],["macfarlane","writer"],["writer","michael"],["michael","jacobs"],["river","journey"],["colombia","julia"],["thin","paths"],["paths","journeys"],["italian","mountain"],["mountain","village"],["village","john"],["south","america"],["white","fever"],["frozen","heart"],["river","journey"],["journey","beneathe"],["beneathe","surface"],["black","america"],["america","colin"],["mountain","tibet"],["tibet","nicolas"],["irand","afghanistan"],["afghanistan","rachel"],["magic","lantern"],["russian","history"],["history","katherine"],["katherine","russell"],["russell","rich"],["another","language"],["language","graham"],["graham","robb"],["adventure","history"],["paris","douglas"],["douglas","rogers"],["rogers","writer"],["writer","douglas"],["douglas","rogers"],["last","resort"],["resort","book"],["last","resort"],["zimbabwe","simon"],["history","william"],["author","william"],["way","horatio"],["horatio","clare"],["minutes","late"],["train","journey"],["britain","daniel"],["susan","richards"],["richards","author"],["author","susan"],["susan","richards"],["richards","lost"],["russia","hugh"],["hugh","thomson"],["thomson","author"],["author","hugh"],["hugh","thomson"],["thomson","tequila"],["tequila","oil"],["oil","getting"],["getting","lost"],["mexico","ian"],["ian","thomson"],["thomson","writer"],["writer","ian"],["ian","thomson"],["dead","yard"],["yard","alice"],["indus","andrew"],["andrew","brown"],["brown","writer"],["writer","andrew"],["andrew","brown"],["brown","fishing"],["utopia","richard"],["richard","grant"],["street","without"],["dance","floor"],["tim","butcher"],["butcher","blood"],["blood","river"],["river","henry"],["middleast","john"],["john","lucas"],["lucas","poet"],["poet","john"],["john","lucas"],["street","robert"],["robert","macfarlane"],["macfarlane","travel"],["wild","places"],["disappeared","rory"],["nobody","told"],["told","us"],["great","british"],["british","bus"],["bus","journeys"],["journeys","tom"],["tom","parry"],["parry","author"],["author","tom"],["tom","parry"],["australia","hitchhiking"],["last","seen"],["ice","museum"],["museum","ruth"],["red","weather"],["last","wild"],["wild","tigers"],["tigers","richard"],["richard","lloyd"],["lloyd","parry"],["hawaii","edward"],["edward","stanford"],["stanford","outstanding"],["outstanding","contribution"],["travel","writing"],["writing","award"],["lifetime","achievement"],["achievement","award"],["travel","writing"],["writing","bill"],["bill","bryson"],["bryson","michael"],["michael","palin"],["palin","bradtravel"],["bradtravel","guides"],["guides","new"],["new","travel"],["travel","writer"],["year","winner"],["announced","february"],["evil","eye"],["tail","externalinks"],["externalinks","edward"],["edward","stanford"],["stanford","travel"],["travel","writing"],["writing","awards"],["awards","dolman"],["dolman","bestravel"],["bestravel","book"],["book","award"],["award","athe"],["athe","authors"],["authors","club"],["club","old"],["old","site"],["site","dolman"],["dolman","bestravel"],["bestravel","book"],["book","award"],["category","travel"],["travel","writing"],["writing","category"],["category","british"],["british","literary"],["literary","awards"],["awards","category"],["category","non"],["non","fiction"],["fiction","literary"],["literary","awards"],["awards","category"],["category","awards"],["awards","established"],["category","establishments"],["united","kingdom"]],"all_collocations":["stanford travel","travel writing","writing awards","awards comprises","comprises two","two principal","principal awards","stanfordolman travel","travel book","stanford award","outstanding contribution","travel writing","writing award","bestravel book","book award","edward stanford","travel books","stanfordolman travel","travel book","two principal","principal annual","annual travel","travel book","book awards","british guild","travel writers","writers buthat","first dolman","dolman award","travel book","book award","thomas cook","cook travel","travel book","book award","authors club","club member","member william","william dolman","dolman beginning","new sponsor","travel book","book store","established along","stanford travel","travel writing","writing awards","awards consist","travel book","association withe","withe authors","authors club","club edward","edward stanford","stanford award","outstanding contribution","travel writing","place wanderlust","wanderlust adventure","adventure travel","travel book","year national","national book","travel book","year lonely","lonely planet","travel blog","illustrated travel","travel book","year food","food travel","travel magazine","magazine food","food travel","travel book","year london","london book","book fair","fair innovation","travel publishing","publishing bradtravel","bradtravel guides","guides new","new travel","travel writer","year stanfordolman","stanfordolman travel","travel book","year winner","winner stanfordolman","stanfordolman travel","travel book","year winner","announced february","february james","station searching","great western","western line","line geoff","white sands","sands experiences","outside world","world elisabeth","squirrel pie","stories adventures","food across","globe jim","jim perrin","wales julian","interstate hitchhiking","nation paul","paul theroux","theroux deep","deep south","south philip","citrus fruit","fruit horatio","horatio clare","hunt walking","patrick leigh","golden horn","russia elizabeth","etc exploring","nation dolman","dolman bestravel","bestravel book","book award","award oliver","last man","russia patrick","patrick leigh","broken road","road charlotte","another sky","sky journeys","roman britain","britain iain","american smoke","forest alone","travels inigeria","inigeria jeremy","jeremy seal","easto west","west along","turkish river","river kathleen","kathleen jamie","golden door","door letters","america robert","robert macfarlane","old ways","foot robert","robert macfarlane","macfarlane writer","writer michael","michael jacobs","river journey","colombia julia","thin paths","paths journeys","italian mountain","mountain village","village john","south america","white fever","frozen heart","river journey","journey beneathe","beneathe surface","black america","america colin","mountain tibet","tibet nicolas","irand afghanistan","afghanistan rachel","magic lantern","russian history","history katherine","katherine russell","russell rich","another language","language graham","graham robb","adventure history","paris douglas","douglas rogers","rogers writer","writer douglas","douglas rogers","last resort","resort book","last resort","zimbabwe simon","history william","author william","way horatio","horatio clare","minutes late","train journey","britain daniel","susan richards","richards author","author susan","susan richards","richards lost","russia hugh","hugh thomson","thomson author","author hugh","hugh thomson","thomson tequila","tequila oil","oil getting","getting lost","mexico ian","ian thomson","thomson writer","writer ian","ian thomson","dead yard","yard alice","indus andrew","andrew brown","brown writer","writer andrew","andrew brown","brown fishing","utopia richard","richard grant","street without","dance floor","tim butcher","butcher blood","blood river","river henry","middleast john","john lucas","lucas poet","poet john","john lucas","street robert","robert macfarlane","macfarlane travel","wild places","disappeared rory","nobody told","told us","great british","british bus","bus journeys","journeys tom","tom parry","parry author","author tom","tom parry","australia hitchhiking","last seen","ice museum","museum ruth","red weather","last wild","wild tigers","tigers richard","richard lloyd","lloyd parry","hawaii edward","edward stanford","stanford outstanding","outstanding contribution","travel writing","writing award","lifetime achievement","achievement award","travel writing","writing bill","bill bryson","bryson michael","michael palin","palin bradtravel","bradtravel guides","guides new","new travel","travel writer","year winner","announced february","evil eye","tail externalinks","externalinks edward","edward stanford","stanford travel","travel writing","writing awards","awards dolman","dolman bestravel","bestravel book","book award","award athe","athe authors","authors club","club old","old site","site dolman","dolman bestravel","bestravel book","book award","category travel","travel writing","writing category","category british","british literary","literary awards","awards category","category non","non fiction","fiction literary","literary awards","awards category","category awards","awards established","category establishments","united kingdom"],"new_description":"stanford travel_writing awards comprises two principal awards stanfordolman travel_book year stanford award outstanding contribution travel_writing award previously bestravel book_award award named edward stanford isponsored travel_books map london stanfordolman travel_book year one two principal annual travel_book awards britain one open writers award year british guild travel_writers buthat limited authors members guild first dolman award given years travel_book award thomas_cook travel_book award ran years abandoned founding prize organized authors club wasponsored named club member william dolman beginning new sponsor travel_book store established along increase winner awards stanford travel_writing awards consist following travel_book year association_withe authors club edward stanford award outstanding contribution travel_writing fiction sense place wanderlust adventure_travel_book year national book children travel_book year lonely_planet travel blog year illustrated travel_book year food travel_magazine food travel_book year london book fair innovation travel publishing bradtravel guides new travel_writer year stanfordolman travel_book year winner stanfordolman travel_book year winner announced february james station station searching stories great western line geoff white sands experiences outside world elisabeth squirrel pie stories adventures food across globe jim perrin hills wales julian interstate hitchhiking state nation paul theroux deep south philip search spirit place land grow story italy citrus fruit horatio clare sea ships oceans modern hunt walking woods water patrick leigh footsteps hook holland golden horn journey russia elizabeth etc exploring nation dolman bestravel book_award oliver last man russia patrick leigh broken road charlotte another sky journeys roman britain iain american smoke forest forest alone cabin middle wheeler america looking travels inigeria jeremy seal easto west along turkish river kathleen jamie gill golden door letters america robert macfarlane macfarlane old ways journey foot robert macfarlane writer michael jacobs memories river journey colombia julia thin paths journeys around italian mountain village john wild south_america hugo white fever journey frozen heart river journey beneathe surface rhodes harlem nowhere journey mecca black america colin mountain tibet nicolas drinking journey inside worlds irand afghanistan rachel magic lantern journey russian history katherine russell rich coming another language graham robb adventure history paris douglas rogers writer douglas rogers last resort book last resort memoir zimbabwe simon pursuit germans history william author william along way horatio clare single matthew minutes late train journey soul britain daniel susan richards author susan richards lost found russia hugh thomson author hugh thomson tequila oil getting lost mexico ian thomson writer ian thomson dead yard alice empires indus andrew brown writer andrew brown fishing utopia richard grant grant roads street without name travels dance_floor murphy island tim butcher blood river henry middleast john lucas poet john lucas street robert macfarlane travel macfarlane wild places search kazakhstan land disappeared rory nobody told us great british bus journeys tom parry author tom parry australia hitchhiking outback last seen nicholas quest ice museum ruth tigers red weather quest last wild tigers richard lloyd parry time smith hawaii edward stanford outstanding contribution travel_writing award lifetime achievement award travel_writing bill bryson michael_palin bradtravel guides new travel_writer year winner winner announced february evil eye shah dom tiger tail externalinks edward stanford travel_writing awards dolman bestravel book_award athe authors club old site dolman bestravel book_award category_travel writing_category_british literary awards_category_non fiction literary awards_category awards established category_establishments united_kingdom"},{"title":"Egon Ronay's Guide","description":"redirect egon ronay egon ronay s guide category restaurant guides category travel guide books category consumer guides category publications established in","main_words":["redirect","guides_category_travel_guide_books","category","consumer","guides_category","publications_established"],"clean_bigrams":[["guide","category"],["category","restaurant"],["restaurant","guides"],["guides","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","consumer"],["consumer","guides"],["guides","category"],["category","publications"],["publications","established"]],"all_collocations":["guide category","category restaurant","restaurant guides","guides category","category travel","travel guide","guide books","books category","category consumer","consumer guides","guides category","category publications","publications established"],"new_description":"redirect guide_category_restaurant guides_category_travel_guide_books category consumer guides_category publications_established"},{"title":"Elite Traveler","description":"publisher daniel wade founder dougollan daniel wade founded firstdate company country united states based new york","main_words":["publisher","daniel","wade","founder","daniel","wade","founded","firstdate","company","country_united","states_based","new_york"],"clean_bigrams":[["publisher","daniel"],["daniel","wade"],["wade","founder"],["daniel","wade"],["wade","founded"],["founded","firstdate"],["firstdate","company"],["company","country"],["country","united"],["united","states"],["states","based"],["based","new"],["new","york"]],"all_collocations":["publisher daniel","daniel wade","wade founder","daniel wade","wade founded","founded firstdate","firstdate company","company country","country united","united states","states based","based new","new york"],"new_description":"publisher daniel wade founder daniel wade founded firstdate company country_united states_based new_york"},{"title":"Embratur","description":"embratur also known as the brazilian tourist board is a federal state owned agency reporting to the brazil ian ministry of tourism brazil ministry of tourism it was formed in and works exclusively on the promotion marketing and supporting to the trading of services products and tourism tourist destinations of brazil abroad externalinks embratur official website visit brasil official tourism portal in english category tourism in brazil category tourism agencies","main_words":["embratur","also_known","brazilian","tourist_board","federal","state_owned","agency","reporting","brazil","ian","ministry","tourism","brazil","ministry","tourism","formed","works","exclusively","promotion","marketing","supporting","trading","services","products","tourism","tourist_destinations","brazil","abroad","externalinks","embratur","official_website","visit","brasil","official_tourism","portal","english","category_tourism","brazil","category_tourism","agencies"],"clean_bigrams":[["embratur","also"],["also","known"],["brazilian","tourist"],["tourist","board"],["federal","state"],["state","owned"],["owned","agency"],["agency","reporting"],["brazil","ian"],["ian","ministry"],["tourism","brazil"],["brazil","ministry"],["works","exclusively"],["promotion","marketing"],["services","products"],["tourism","tourist"],["tourist","destinations"],["brazil","abroad"],["abroad","externalinks"],["externalinks","embratur"],["embratur","official"],["official","website"],["website","visit"],["visit","brasil"],["brasil","official"],["official","tourism"],["tourism","portal"],["english","category"],["category","tourism"],["tourism","brazil"],["brazil","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["embratur also","also known","brazilian tourist","tourist board","federal state","state owned","owned agency","agency reporting","brazil ian","ian ministry","tourism brazil","brazil ministry","works exclusively","promotion marketing","services products","tourism tourist","tourist destinations","brazil abroad","abroad externalinks","externalinks embratur","embratur official","official website","website visit","visit brasil","brasil official","official tourism","tourism portal","english category","category tourism","tourism brazil","brazil category","category tourism","tourism agencies"],"new_description":"embratur also_known brazilian tourist_board federal state_owned agency reporting brazil ian ministry tourism brazil ministry tourism formed works exclusively promotion marketing supporting trading services products tourism tourist_destinations brazil abroad externalinks embratur official_website visit brasil official_tourism portal english category_tourism brazil category_tourism agencies"},{"title":"ENIT","description":"filenitalian governmentourist boardgif thumb alt italia logo of enit agenzia nazionale del turismo known in english as the italian governmentourist board formerly thente nazionale italiano per il turismo italianational agency for tourism is the italy italianational tourism board it was founded in under the italian liberal party liberal italian radical party radical government ofrancesco saverio nitti enit is responsible for the promoting worldwide tourism to italy taina syrj ma visitez l italie italian state tourist propagandabroadministrative structure and practical realization in turun yliopiston julkaisujannales universitatis turkuensiseries b humaniora not seen externalinks official site category tourism agencies category tourism in italy category government agencies of italy category establishments in italy","main_words":["governmentourist","thumb_alt","italia","logo","nazionale","del","turismo","known","english","italian","governmentourist","board","formerly","nazionale","italiano","per","turismo","agency","tourism","italy","tourism_board","founded","italian","liberal","party","liberal","italian","radical","party","radical","government","responsible","promoting","worldwide","tourism","italy","l","italie","italian","state","tourist","structure","practical","realization","b","seen","externalinks_official","site_category","tourism_agencies","category_tourism","agencies","italy"],"clean_bigrams":[["thumb","alt"],["alt","italia"],["italia","logo"],["nazionale","del"],["del","turismo"],["turismo","known"],["italian","governmentourist"],["governmentourist","board"],["board","formerly"],["nazionale","italiano"],["italiano","per"],["tourism","board"],["italian","liberal"],["liberal","party"],["party","liberal"],["liberal","italian"],["italian","radical"],["radical","party"],["party","radical"],["radical","government"],["promoting","worldwide"],["worldwide","tourism"],["l","italie"],["italie","italian"],["italian","state"],["state","tourist"],["practical","realization"],["seen","externalinks"],["externalinks","official"],["official","site"],["site","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["italy","category"],["category","government"],["government","agencies"],["italy","category"],["category","establishments"]],"all_collocations":["thumb alt","alt italia","italia logo","nazionale del","del turismo","turismo known","italian governmentourist","governmentourist board","board formerly","nazionale italiano","italiano per","tourism board","italian liberal","liberal party","party liberal","liberal italian","italian radical","radical party","party radical","radical government","promoting worldwide","worldwide tourism","l italie","italie italian","italian state","state tourist","practical realization","seen externalinks","externalinks official","official site","site category","category tourism","tourism agencies","agencies category","category tourism","italy category","category government","government agencies","italy category","category establishments"],"new_description":"governmentourist thumb_alt italia logo nazionale del turismo known english italian governmentourist board formerly nazionale italiano per turismo agency tourism italy tourism_board founded italian liberal party liberal italian radical party radical government responsible promoting worldwide tourism italy l italie italian state tourist structure practical realization b seen externalinks_official site_category tourism_agencies category_tourism italy_category_government agencies italy_category_establishments italy"},{"title":"Enotourism","description":"file willakenzie tasting roomjpg thumb typical winery tasting room enotourism oenotourism wine tourism or vinitourism refers tourism whose purpose is or includes the tasting consumption or purchase of wine often at or near the source about wine on vi wine on vi where other types of tourism are often passive inaturenotourism can consist of visits to wineries wine tasting wines vineyard walks or even taking an active part in the harvest file museo del vino bodega graffigna san juan argentinajpg thumb wine museum at graffigna san juan argentina enotourism is a relatively new form of tourism its history varies greatly from region to region but in placesuch as the napa valley ava it saw heavy growth once a concerted marketing effort was implemented in history and timeline napa valley vintners that was given a further boost by the judgment of paris wine judgment of paris the story behind the story that made wine history san francisco chronicle otheregionsuch as catalonia spain have only started marketing enotourism starting in the mid s primarily focusing on how it is an alternative form of tourism to the beach for which spain is overall known enotourism the alternative to classical sun and sand in el garraf catalanews agency there was also a rise in the profile of enotourism among english speakers withe release of the film sideways whose two central characters visit wineries and wine in the santa barbara county california santa barbara county wine country santa barbara region of southern california the industry around enotourism has grown significantly throughouthe first decade of the st century in the united states million travelers or of american leisure travelers engaged in culinary or wine related activitiestudy food and wine travel increases in popularity aboutcom in italy the figure stands at approximately five million travelers generating billion euros in revenue a private initiative by recevin holds annual enotourism day on the second sunday of november each year to promote cellar visits in germany austria slovenia spain france greece hungary italy and portugal enotourism day is coming wine on vinorth america the first wine tourism day was established for may with eventscheduled throughouthe continent file wine touring on bikesjpg thumb cycling through vineyards in mendozargentina most visits to the wineries take place at or near the site where the wine is produced visitors typically learn the history of the winery see how the wine is made and then taste the wines at some wineriestaying in a small guest house athe winery is alsoffered many visitors buy the wines made by the winery athe premises accounting for up tof their annual sales wine tourism is increasingly being sought out by travelers but is the wine industry ready mindyjoycecom very smallow production regionsuch as priorat doq priorat catalonia focus on small intimate visits withe owner as the host and include walks through the vineyards to help visitors understand the unique qualities of the region how to visit priorat hudincomorelaborate tastings can include wine tasting vertical and horizontal tasting horizontal and vertical tastings as well as full meals focused upon showcasing the wines as thenotourism industry matures additional activities have been added to visitsuch as riding electrically assisted bicycles called burricleta riding through the vineyards of pened s catalanews agency mostourism agenciesee it as a segment of the industry with tremendous growth potential stating that in some regions it is only functioning at of its full potential as enotourism grows regionsuch as napa valley have to deal with continued success and theffects that come with it such as crowds and increased tasting room fees are tasting room fees out of hand in the napa valley napa valley wine blog this can in turn have the oppositeffect desired wherein potential visitors are driven away and turned off enotourism perhaps a reality check napa valley wine on vi furthereading j carlsen s charters edith cowan university editors global wine tourism cabi publishing c michael hall brock cambourne liz sharples niki macionis wine tourism around the worldevelopment management and markets elsevier valduga v el enoturismo em brasil un an lisis territorial en el estado de rio grande do sul brasil desde hasta estudios y perspetivas en turismo v externalinks canadian council for wine tourism spanish wine and food tourism association category wine terminology category types of tourism","main_words":["file","tasting","thumb","typical","winery","tasting","room","enotourism","wine_tourism","refers","tourism","whose","purpose","includes","tasting","consumption","purchase","wine","often","near","source","wine","wine","types","tourism","often","passive","consist","visits","wineries","wine","tasting","wines","vineyard","walks","even","taking","active","part","harvest","file","del","vino","san_juan","thumb","wine","museum","san_juan","argentina","enotourism","relatively","new","form","tourism","history","varies","greatly","region","region","placesuch","napa_valley","saw","heavy","growth","marketing","effort","implemented","history","timeline","napa_valley","given","boost","judgment","paris","wine","judgment","paris","story","behind","story","made","wine","history","san_francisco","chronicle","catalonia","spain","started","marketing","enotourism","starting","mid","primarily","focusing","alternative","form","tourism","beach","spain","overall","known","enotourism","alternative","classical","sun","sand","el","agency","also","rise","profile","enotourism","among","english","speakers","withe","release","film","whose","two","central","characters","visit","wineries","wine","santa_barbara","county","wine","country","santa_barbara","region","southern_california","industry","around","enotourism","grown","significantly","throughouthe","first_decade","st_century","united_states","million","travelers","american","leisure","travelers","engaged","culinary","wine","related","food","wine","travel","increases","popularity","italy","figure","stands","approximately","five","million","travelers","generating","billion","revenue","private","initiative","holds","annual","enotourism","day","second","sunday","november","year","promote","cellar","visits","germany","austria","slovenia","spain","france","greece","hungary","italy","portugal","enotourism","day","coming","wine","america","first","wine_tourism","day","established","may","throughouthe","continent","file","wine","touring","thumb","cycling","vineyards","visits","wineries","take_place","near","site","wine","produced","visitors","typically","learn","history","winery","see","wine","made","taste","wines","small","guest","house","athe","winery","alsoffered","many","visitors","buy","wines","made","winery","athe","premises","accounting","tof","annual","sales","wine_tourism","increasingly","sought","travelers","wine","industry","ready","production","regionsuch","priorat","priorat","catalonia","focus","small","intimate","visits","withe","owner","host","include","walks","vineyards","help","visitors","understand","unique","qualities","region","visit","priorat","tastings","include","wine","tasting","vertical","horizontal","tasting","horizontal","vertical","tastings","well","full","meals","focused","upon","showcasing","wines","industry","additional","activities","added","riding","electrically","assisted","bicycles","called","riding","vineyards","agency","segment","industry","tremendous","growth","potential","stating","regions","functioning","full","potential","enotourism","grows","regionsuch","napa_valley","deal","continued","success","theffects","come","crowds","increased","tasting","room","fees","tasting","room","fees","hand","napa_valley","napa_valley","wine","blog","turn","desired","wherein","potential","visitors","driven","away","turned","enotourism","perhaps","reality","check","napa_valley","wine","furthereading","j","charters","edith","cowan","university","editors","global","wine_tourism","cabi","publishing","c","michael","hall","liz","wine_tourism","around","management","markets","elsevier","v","el","brasil","lisis","territorial","el","estado","de","rio","grande","sul","brasil","estudios","turismo","v","externalinks","canadian","council","wine_tourism","spanish","wine","category","wine","terminology","category_types","tourism"],"clean_bigrams":[["thumb","typical"],["typical","winery"],["winery","tasting"],["tasting","room"],["room","enotourism"],["wine","tourism"],["refers","tourism"],["tourism","whose"],["whose","purpose"],["tasting","consumption"],["wine","often"],["often","passive"],["wineries","wine"],["wine","tasting"],["tasting","wines"],["wines","vineyard"],["vineyard","walks"],["even","taking"],["active","part"],["harvest","file"],["del","vino"],["san","juan"],["thumb","wine"],["wine","museum"],["san","juan"],["juan","argentina"],["argentina","enotourism"],["relatively","new"],["new","form"],["history","varies"],["varies","greatly"],["napa","valley"],["saw","heavy"],["heavy","growth"],["marketing","effort"],["timeline","napa"],["napa","valley"],["paris","wine"],["wine","judgment"],["story","behind"],["made","wine"],["wine","history"],["history","san"],["san","francisco"],["francisco","chronicle"],["catalonia","spain"],["started","marketing"],["marketing","enotourism"],["enotourism","starting"],["primarily","focusing"],["alternative","form"],["overall","known"],["known","enotourism"],["classical","sun"],["enotourism","among"],["among","english"],["english","speakers"],["speakers","withe"],["withe","release"],["whose","two"],["two","central"],["central","characters"],["characters","visit"],["visit","wineries"],["wineries","wine"],["santa","barbara"],["barbara","county"],["county","california"],["california","santa"],["santa","barbara"],["barbara","county"],["county","wine"],["wine","country"],["country","santa"],["santa","barbara"],["barbara","region"],["southern","california"],["industry","around"],["around","enotourism"],["grown","significantly"],["significantly","throughouthe"],["throughouthe","first"],["first","decade"],["st","century"],["united","states"],["states","million"],["million","travelers"],["american","leisure"],["leisure","travelers"],["travelers","engaged"],["wine","related"],["wine","travel"],["travel","increases"],["figure","stands"],["approximately","five"],["five","million"],["million","travelers"],["travelers","generating"],["generating","billion"],["private","initiative"],["holds","annual"],["annual","enotourism"],["enotourism","day"],["second","sunday"],["promote","cellar"],["cellar","visits"],["germany","austria"],["austria","slovenia"],["slovenia","spain"],["spain","france"],["france","greece"],["greece","hungary"],["hungary","italy"],["portugal","enotourism"],["enotourism","day"],["coming","wine"],["first","wine"],["wine","tourism"],["tourism","day"],["throughouthe","continent"],["continent","file"],["file","wine"],["wine","touring"],["thumb","cycling"],["wineries","take"],["take","place"],["produced","visitors"],["visitors","typically"],["typically","learn"],["winery","see"],["small","guest"],["guest","house"],["house","athe"],["athe","winery"],["alsoffered","many"],["many","visitors"],["visitors","buy"],["wines","made"],["winery","athe"],["athe","premises"],["premises","accounting"],["annual","sales"],["sales","wine"],["wine","tourism"],["wine","industry"],["industry","ready"],["production","regionsuch"],["priorat","catalonia"],["catalonia","focus"],["small","intimate"],["intimate","visits"],["visits","withe"],["withe","owner"],["include","walks"],["help","visitors"],["visitors","understand"],["unique","qualities"],["visit","priorat"],["include","wine"],["wine","tasting"],["tasting","vertical"],["horizontal","tasting"],["tasting","horizontal"],["vertical","tastings"],["full","meals"],["meals","focused"],["focused","upon"],["upon","showcasing"],["additional","activities"],["riding","electrically"],["electrically","assisted"],["assisted","bicycles"],["bicycles","called"],["tremendous","growth"],["growth","potential"],["potential","stating"],["full","potential"],["enotourism","grows"],["grows","regionsuch"],["napa","valley"],["continued","success"],["increased","tasting"],["tasting","room"],["room","fees"],["tasting","room"],["room","fees"],["napa","valley"],["valley","napa"],["napa","valley"],["valley","wine"],["wine","blog"],["desired","wherein"],["wherein","potential"],["potential","visitors"],["driven","away"],["enotourism","perhaps"],["reality","check"],["check","napa"],["napa","valley"],["valley","wine"],["furthereading","j"],["charters","edith"],["edith","cowan"],["cowan","university"],["university","editors"],["editors","global"],["global","wine"],["wine","tourism"],["tourism","cabi"],["cabi","publishing"],["publishing","c"],["c","michael"],["michael","hall"],["wine","tourism"],["tourism","around"],["markets","elsevier"],["v","el"],["lisis","territorial"],["el","estado"],["estado","de"],["de","rio"],["rio","grande"],["sul","brasil"],["turismo","v"],["v","externalinks"],["externalinks","canadian"],["canadian","council"],["wine","tourism"],["tourism","spanish"],["spanish","wine"],["food","tourism"],["tourism","association"],["association","category"],["category","wine"],["wine","terminology"],["terminology","category"],["category","types"]],"all_collocations":["thumb typical","typical winery","winery tasting","tasting room","room enotourism","wine tourism","refers tourism","tourism whose","whose purpose","tasting consumption","wine often","often passive","wineries wine","wine tasting","tasting wines","wines vineyard","vineyard walks","even taking","active part","harvest file","del vino","san juan","thumb wine","wine museum","san juan","juan argentina","argentina enotourism","relatively new","new form","history varies","varies greatly","napa valley","saw heavy","heavy growth","marketing effort","timeline napa","napa valley","paris wine","wine judgment","story behind","made wine","wine history","history san","san francisco","francisco chronicle","catalonia spain","started marketing","marketing enotourism","enotourism starting","primarily focusing","alternative form","overall known","known enotourism","classical sun","enotourism among","among english","english speakers","speakers withe","withe release","whose two","two central","central characters","characters visit","visit wineries","wineries wine","santa barbara","barbara county","county california","california santa","santa barbara","barbara county","county wine","wine country","country santa","santa barbara","barbara region","southern california","industry around","around enotourism","grown significantly","significantly throughouthe","throughouthe first","first decade","st century","united states","states million","million travelers","american leisure","leisure travelers","travelers engaged","wine related","wine travel","travel increases","figure stands","approximately five","five million","million travelers","travelers generating","generating billion","private initiative","holds annual","annual enotourism","enotourism day","second sunday","promote cellar","cellar visits","germany austria","austria slovenia","slovenia spain","spain france","france greece","greece hungary","hungary italy","portugal enotourism","enotourism day","coming wine","first wine","wine tourism","tourism day","throughouthe continent","continent file","file wine","wine touring","thumb cycling","wineries take","take place","produced visitors","visitors typically","typically learn","winery see","small guest","guest house","house athe","athe winery","alsoffered many","many visitors","visitors buy","wines made","winery athe","athe premises","premises accounting","annual sales","sales wine","wine tourism","wine industry","industry ready","production regionsuch","priorat catalonia","catalonia focus","small intimate","intimate visits","visits withe","withe owner","include walks","help visitors","visitors understand","unique qualities","visit priorat","include wine","wine tasting","tasting vertical","horizontal tasting","tasting horizontal","vertical tastings","full meals","meals focused","focused upon","upon showcasing","additional activities","riding electrically","electrically assisted","assisted bicycles","bicycles called","tremendous growth","growth potential","potential stating","full potential","enotourism grows","grows regionsuch","napa valley","continued success","increased tasting","tasting room","room fees","tasting room","room fees","napa valley","valley napa","napa valley","valley wine","wine blog","desired wherein","wherein potential","potential visitors","driven away","enotourism perhaps","reality check","check napa","napa valley","valley wine","furthereading j","charters edith","edith cowan","cowan university","university editors","editors global","global wine","wine tourism","tourism cabi","cabi publishing","publishing c","c michael","michael hall","wine tourism","tourism around","markets elsevier","v el","lisis territorial","el estado","estado de","de rio","rio grande","sul brasil","turismo v","v externalinks","externalinks canadian","canadian council","wine tourism","tourism spanish","spanish wine","food tourism","tourism association","association category","category wine","wine terminology","terminology category","category types"],"new_description":"file tasting thumb typical winery tasting room enotourism wine_tourism refers tourism whose purpose includes tasting consumption purchase wine often near source wine wine types tourism often passive consist visits wineries wine tasting wines vineyard walks even taking active part harvest file del vino san_juan thumb wine museum san_juan argentina enotourism relatively new form tourism history varies greatly region region placesuch napa_valley saw heavy growth marketing effort implemented history timeline napa_valley given boost judgment paris wine judgment paris story behind story made wine history san_francisco chronicle catalonia spain started marketing enotourism starting mid primarily focusing alternative form tourism beach spain overall known enotourism alternative classical sun sand el agency also rise profile enotourism among english speakers withe release film whose two central characters visit wineries wine santa_barbara county_california_santa_barbara county wine country santa_barbara region southern_california industry around enotourism grown significantly throughouthe first_decade st_century united_states million travelers american leisure travelers engaged culinary wine related food wine travel increases popularity italy figure stands approximately five million travelers generating billion revenue private initiative holds annual enotourism day second sunday november year promote cellar visits germany austria slovenia spain france greece hungary italy portugal enotourism day coming wine america first wine_tourism day established may throughouthe continent file wine touring thumb cycling vineyards visits wineries take_place near site wine produced visitors typically learn history winery see wine made taste wines small guest house athe winery alsoffered many visitors buy wines made winery athe premises accounting tof annual sales wine_tourism increasingly sought travelers wine industry ready production regionsuch priorat priorat catalonia focus small intimate visits withe owner host include walks vineyards help visitors understand unique qualities region visit priorat tastings include wine tasting vertical horizontal tasting horizontal vertical tastings well full meals focused upon showcasing wines industry additional activities added riding electrically assisted bicycles called riding vineyards agency segment industry tremendous growth potential stating regions functioning full potential enotourism grows regionsuch napa_valley deal continued success theffects come crowds increased tasting room fees tasting room fees hand napa_valley napa_valley wine blog turn desired wherein potential visitors driven away turned enotourism perhaps reality check napa_valley wine furthereading j charters edith cowan university editors global wine_tourism cabi publishing c michael hall liz wine_tourism around management markets elsevier v el brasil lisis territorial el estado de rio grande sul brasil estudios turismo v externalinks canadian council wine_tourism spanish wine food_tourism_association category wine terminology category_types tourism"},{"title":"EnRoute (magazine)","description":"enroute is the in flight magazine and entertainment system of air canadall content in the monthly magazine is published in both french language french and english languagenglish by spafax the magazine is headquartered in montreal quebec history and profile the magazine is offered for free on all air canada flights and in their mapleaf lounges the publisher of the magazine ispafax canada inc as well as the magazine on most air canada flights enroute alsoffers in flight programming of movies television radio and short films ilana weitzman served as theditor in chief of the magazine until july when she was replaced by jean fran ois l gar in enroute won awards athe canadianational magazine awards in may cnncom named it as the best inflight magazine worldwide air canada enroute film festival the magazine runs the air canada enroute film festival the festival began in enroute student film festival and is hosted annually enroute student film festival the festival has a different jury each year consisting ofilm industry professionals including famous actors writers directors and producers the festival s purpose is to generatexposure for emerging filmmakers externalinks category air canada category canadian monthly magazines category canadian travel magazines category inflight magazines category magazines with year of establishment missing category tourismagazines category magazines published in montreal category french language magazines in canada","main_words":["enroute","flight","magazine","entertainment","system","air","content","monthly","magazine_published","french_language","french","english_languagenglish","magazine","headquartered","montreal","quebec","history","profile","magazine","offered","free","air","canada","flights","lounges","publisher","magazine","canada","inc","well","magazine","air","canada","flights","enroute","alsoffers","flight","programming","movies","television","radio","short","films","served","theditor","chief","magazine","july","replaced","jean","fran_ois","l","gar","enroute","awards","athe","canadianational","magazine","awards","may","named","best","inflight_magazine","worldwide","air","canada","enroute","film_festival","magazine","runs","air","canada","enroute","film_festival","festival","began","enroute","student","film_festival","hosted","annually","enroute","student","film_festival","festival","different","jury","year","consisting","ofilm","industry","professionals","including","famous","actors","writers","directors","producers","festival","purpose","emerging","externalinks_category","air","monthly_magazines_category","canadian","year","establishment","category_magazines_published","montreal","category_french","language_magazines","canada"],"clean_bigrams":[["flight","magazine"],["entertainment","system"],["monthly","magazine"],["french","language"],["language","french"],["english","languagenglish"],["montreal","quebec"],["quebec","history"],["air","canada"],["canada","flights"],["canada","inc"],["air","canada"],["canada","flights"],["flights","enroute"],["enroute","alsoffers"],["flight","programming"],["movies","television"],["television","radio"],["short","films"],["jean","fran"],["fran","ois"],["ois","l"],["l","gar"],["awards","athe"],["athe","canadianational"],["canadianational","magazine"],["magazine","awards"],["best","inflight"],["inflight","magazine"],["magazine","worldwide"],["worldwide","air"],["air","canada"],["canada","enroute"],["enroute","film"],["film","festival"],["magazine","runs"],["air","canada"],["canada","enroute"],["enroute","film"],["film","festival"],["festival","began"],["enroute","student"],["student","film"],["film","festival"],["hosted","annually"],["annually","enroute"],["enroute","student"],["student","film"],["film","festival"],["different","jury"],["year","consisting"],["consisting","ofilm"],["ofilm","industry"],["industry","professionals"],["professionals","including"],["including","famous"],["famous","actors"],["actors","writers"],["writers","directors"],["externalinks","category"],["category","air"],["air","canada"],["canada","category"],["category","canadian"],["canadian","monthly"],["monthly","magazines"],["magazines","category"],["category","canadian"],["canadian","travel"],["travel","magazines"],["magazines","category"],["category","inflight"],["inflight","magazines"],["magazines","category"],["category","magazines"],["establishment","missing"],["missing","category"],["category","tourismagazines"],["tourismagazines","category"],["category","magazines"],["magazines","published"],["montreal","category"],["category","french"],["french","language"],["language","magazines"]],"all_collocations":["flight magazine","entertainment system","monthly magazine","french language","language french","english languagenglish","montreal quebec","quebec history","air canada","canada flights","canada inc","air canada","canada flights","flights enroute","enroute alsoffers","flight programming","movies television","television radio","short films","jean fran","fran ois","ois l","l gar","awards athe","athe canadianational","canadianational magazine","magazine awards","best inflight","inflight magazine","magazine worldwide","worldwide air","air canada","canada enroute","enroute film","film festival","magazine runs","air canada","canada enroute","enroute film","film festival","festival began","enroute student","student film","film festival","hosted annually","annually enroute","enroute student","student film","film festival","different jury","year consisting","consisting ofilm","ofilm industry","industry professionals","professionals including","including famous","famous actors","actors writers","writers directors","externalinks category","category air","air canada","canada category","category canadian","canadian monthly","monthly magazines","magazines category","category canadian","canadian travel","travel magazines","magazines category","category inflight","inflight magazines","magazines category","category magazines","establishment missing","missing category","category tourismagazines","tourismagazines category","category magazines","magazines published","montreal category","category french","french language","language magazines"],"new_description":"enroute flight magazine entertainment system air content monthly magazine_published french_language french english_languagenglish magazine headquartered montreal quebec history profile magazine offered free air canada flights lounges publisher magazine canada inc well magazine air canada flights enroute alsoffers flight programming movies television radio short films served theditor chief magazine july replaced jean fran_ois l gar enroute awards athe canadianational magazine awards may named best inflight_magazine worldwide air canada enroute film_festival magazine runs air canada enroute film_festival festival began enroute student film_festival hosted annually enroute student film_festival festival different jury year consisting ofilm industry professionals including famous actors writers directors producers festival purpose emerging externalinks_category air canada_category_canadian monthly_magazines_category canadian travel_magazines_category inflight_magazines_category_magazines year establishment missing_category_tourismagazines category_magazines_published montreal category_french language_magazines canada"},{"title":"ENTREE Travel Newsletter","description":"entree travel newsletter est is a travel newsletter by american writer bill tomickit bills itself as an uncompromising and confidential travelers newsletter as of it has over subscribers tomicki said then when it started in it was the third travel newsletter in the industry it is targeted to upscale clientele tomicki said entree s average reader is between and has a household income of a year in tomicki described the newsletter operations i have a staff ofour permanent people based in santa barbara calif where he lives and eight stringers around the world who contribute information which i then edit and assemble in the newsletter the newsletter has been reviewed in the chicago tribute the new york times and the los angeles times externalinks entree travel newsletter official website category establishments in california category advertising free magazines category american monthly magazines category consumer magazines category electronic publishing category english language magazines category magazinestablished in category magazines published in california category travel newsletters category tourismagazines","main_words":["entree","travel","newsletter","est","travel","newsletter","american","writer","bill","bills","confidential","travelers","newsletter","subscribers","said","started","third","travel","newsletter","industry","targeted","upscale","clientele","said","entree","average","reader","household","income","year","described","newsletter","operations","staff","ofour","permanent","people","based","santa_barbara","calif","lives","eight","around","world","contribute","information","newsletter","newsletter","reviewed","chicago","tribute","new_york","times","los_angeles","times","externalinks","entree","travel","newsletter","california_category","advertising","category_american","monthly_magazines_category","consumer","magazines_category","electronic","publishing","category_english_language_magazines","category_magazinestablished","category_magazines_published","category_tourismagazines"],"clean_bigrams":[["entree","travel"],["travel","newsletter"],["newsletter","est"],["travel","newsletter"],["american","writer"],["writer","bill"],["confidential","travelers"],["travelers","newsletter"],["third","travel"],["travel","newsletter"],["upscale","clientele"],["said","entree"],["average","reader"],["household","income"],["newsletter","operations"],["staff","ofour"],["ofour","permanent"],["permanent","people"],["people","based"],["santa","barbara"],["barbara","calif"],["contribute","information"],["chicago","tribute"],["new","york"],["york","times"],["los","angeles"],["angeles","times"],["times","externalinks"],["externalinks","entree"],["entree","travel"],["travel","newsletter"],["newsletter","official"],["official","website"],["website","category"],["category","establishments"],["california","category"],["category","advertising"],["advertising","free"],["free","magazines"],["magazines","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","consumer"],["consumer","magazines"],["magazines","category"],["category","electronic"],["electronic","publishing"],["publishing","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["california","category"],["category","travel"],["category","tourismagazines"]],"all_collocations":["entree travel","travel newsletter","newsletter est","travel newsletter","american writer","writer bill","confidential travelers","travelers newsletter","third travel","travel newsletter","upscale clientele","said entree","average reader","household income","newsletter operations","staff ofour","ofour permanent","permanent people","people based","santa barbara","barbara calif","contribute information","chicago tribute","new york","york times","los angeles","angeles times","times externalinks","externalinks entree","entree travel","travel newsletter","newsletter official","official website","website category","category establishments","california category","category advertising","advertising free","free magazines","magazines category","category american","american monthly","monthly magazines","magazines category","category consumer","consumer magazines","magazines category","category electronic","electronic publishing","publishing category","category english","english language","language magazines","magazines category","category magazinestablished","category magazines","magazines published","california category","category travel","category tourismagazines"],"new_description":"entree travel newsletter est travel newsletter american writer bill bills confidential travelers newsletter subscribers said started third travel newsletter industry targeted upscale clientele said entree average reader household income year described newsletter operations staff ofour permanent people based santa_barbara calif lives eight around world contribute information newsletter newsletter reviewed chicago tribute new_york times los_angeles times externalinks entree travel newsletter official_website_category_establishments california_category advertising free_magazines category_american monthly_magazines_category consumer magazines_category electronic publishing category_english_language_magazines category_magazinestablished category_magazines_published california_category_travel category_tourismagazines"},{"title":"Eric C. Anderson","description":"birth place nationality united states american other names ethnicity education almater university of virginia occupation chairman of space adventurespace adventures ltd ceof intentional software corporation co founder of planetary power inc years active present employer organization agent home town littleton colorado residence bellevue washingtonet wortheight weight spouse inessanderson children parents awards websiteric anderson born is an united states american entrepreneur and aerospacengineer he is the co founder and chairman of space adventurespace adventures ltd the first commercial spaceflight company whichas arranged for eight missions for privately funded individuals to the international space station since anderson is widely credited as having established the market for commercial spaceflight he is also a founding partner of space angels network ceof intentional software corporation co founder and chairman of planetary power inco founder and co chairman of planetary resources and chairman of personalcom and booster fuels early life and education anderson was raised in littleton colorado by his father an american real estatentrepreneur and his argentine mother as a child he showed an early interest spacexploration and read cosmos book cosmos by carl sagan in third grade anderson also developed strengths in computers and mathematics by fifth grade he wrote computer programs and by his freshman year of high school had completed all of the math classes thathe school offered he attended columbine high school and graduated in early in high school anderson intended to join the united states air force air force as a pilot withe goal of eventually becoming an astronaut however his diagnosed myopia would have prevented him from being able to pass the physical examinations to enter the air force anderson decided to attend the university of virginiand major in aerospacengineering and computer science in order to study space technologies and continue his interest in spacexploration athe university he began a chapter of students for thexploration andevelopment of space in he graduated magna cum laude with a bachelor of science in aerospacengineering and computer science and first in his class in the university s engineering school early career in while anderson was athe university of virginia he interned for the founder and chairman of the x prize foundation peter diamandis in washington dc while there helped organize the ansari x prize a competition for the first private sector manned space flight and projects for zero gravity corporation zero g the following year anderson waselected as virginia s representative and one of approximately undergraduates chosen to take part in the nasacademy student summer program during the program he carried out research at goddard space flight center and met key individuals involved in the aerospace industry including several astronauts thenasadministrator daniel goldin dan goldin and the ceos of lockheed martin and orbital sciences corporation anderson s first job after graduating was an engineer and business developer at analytical graphics an aerospace software company based in philadelphia his role withe company involvedeveloping software for space missions in anderson founded starportcom a websitendorsed by astronauts that provided the public with information about space travel he sold the website to spacecom in space adventures while anderson was athe nasacademy program in he began thinking seriously about space tourism and in particular decided that nasa would not be able to develop a program that could take civilians into space at a reasonable cost in collaboration with peter diamandis with whom anderson had interned in and adventure travel operator quark expeditions mike mcdowell anderson developed the initial idea to create a space tourism company space adventures he co founded space adventures with diamandis and mcdowell initially funded by raised from diamandis mcdowell and other investors anderson became the company s founding director and vice president and set up company operations in his townhouse in arlington virginia making space adventures the world s first space tourism company development of the business anderson initially arranged for clients to experience flights to thedge of space in mig fighter jets airplane flights to experience weightlessness and tours of russian soyuz launches in kazakhstan he continued to look for opportunities to place clients on an actual space flight including commissioning a report from the russian federal space agency to study whether the soyuz spacecraft soyuz space vehicle could transportourists to the international space station iss in he reached an agreement withe russian space agency to purchaseats on the soyuz on behalf of private citizens he sold the first seato money manager dennis tito for million in tito was part of a group of astronauts who were launched intorbit and visited the iss the firstime a private citizen had paid to fly torbit commercial market for space travel in his work with space adventures anderson has been widely credited as the firsto monetize spaceflight andemonstrate the viability of a commercial market for space travel by proving there is demand for space tourism in smart ceo reported that anderson s company was the only firm in the world to have sold space flights that have actually been realized anderson hasold nearly half a billion in space missions and his company had arranged for all seven missions of private citizens including dennis tito guy laliberte and charlesimonyi to visithe iss anderson hastated that he sees tourism as a catalyst for the commercialization of space through encouraging development of cheaper transportation into space which will eventually allow humanity to develop and colonize space including the development of natural resources beyond earth in an interviewith smart ceo he said that he believes that it is imperative to explore space for humanity s long term survival otheroles in addition to his role as chairman of space adventures anderson holds a number of other professional positions he is the chairman of planetary power inc a renewablenergy company he co founded in which focuses on developing affordable renewablenergy technology anderson is also the president and ceof intentional software corporation a software development company founded by charlesimonyi that developsolutions to make creating application software applications more intuitive and accessible to people who are not experienced in computer programming he joined intentional as its president in september to work with simonyi on marketing his intentional programming method later that year on december he was chosen as the next chairman of the board of the commercial spaceflight federation an organization that promotes the development of the commercial spaceflight industry anderson is also the co founder and co chairman of planetary resources planetary resources inc a company that develops technology withe aim of carrying out asteroid mining exploration of asteroids and mining them foresources including platinum and other precious metalspeaking appearances and writing anderson has appeared as a guest speaker and lecturer at conferences including the world economic forum in davoswitzerland the forbes global ceo conference and a ted conference tedglobal where he spoke about how mining asteroids could create profit from space travel he has also contributed to two books kids who think outside the box by stephanie lerner and the space tourist s handbook a guide to space tourism that he co authored philanthropy and organizations anderson is a board member of the x prize foundation and a founder of the planetary security foundation which aims to educate the public abouthe global risks of nuclear weapons and advocates for eliminating all nuclear weapons he is also a trustee of the koshka foundation and seattle s museum oflight and a member of the board of governors for the national space society in he became a member of the younglobaleaders of the world economic forum he is also a member of the young presidents organization honors and awards anderson has received a number of awards and honors during his career in he was named by usa today as one of its us top university graduates in he received the university of virginia engineering foundation s outstanding young engineeringraduate award the national space society and space tourism society s orbit award and the world technology network s world technology award in itspace category in he was named one of ernst young s entrepreneurs of the year personalife anderson lives in bellevue washington withis wife inessand their four children externalinks official personal website category space tourism category space adventures category living people category university of virginia school of engineering and applied science alumni","main_words":["birth","place","nationality","united_states","american","names","ethnicity","education","almater","university","virginia","occupation","chairman","space_adventurespace","adventures","ltd","ceof","intentional","software","corporation","founder","planetary","power","inc","years","active","present","employer","organization","agent","home","town","colorado","residence","bellevue","weight","spouse","children","parents","awards","anderson","born","united_states","american","entrepreneur","founder","chairman","space_adventurespace","adventures","ltd","first_commercial","spaceflight","company","whichas","arranged","eight","missions","privately_funded","individuals","international_space_station","since","anderson","widely","credited","established","market","commercial_spaceflight","partner","space_angels","network","ceof","intentional","software","corporation","founder","chairman","planetary","power","founder","chairman","planetary","resources","chairman","booster","fuels","early_life","education","anderson","raised","colorado","father","american","real","argentine","mother","child","showed","early","interest","spacexploration","read","cosmos","book","cosmos","carl","third","grade","anderson","also","developed","computers","mathematics","fifth","grade","wrote","computer","programs","year","high_school","completed","math","classes","thathe","school","offered","attended","high_school","graduated","early","high_school","anderson","intended","join","united_states","air_force","air_force","pilot","withe_goal","eventually","becoming","astronaut","however","would","prevented","able","pass","physical","enter","air_force","anderson","decided","attend","university","virginiand","major","aerospacengineering","computer","science","order","study","space","technologies","continue","interest","spacexploration","athe_university","began","chapter","students","thexploration","andevelopment","space","graduated","bachelor","science","aerospacengineering","computer","science","first","class","university","engineering","school","early","career","anderson","athe_university","virginia","founder","chairman","x_prize","foundation","peter","diamandis","washington","helped","organize","ansari_x_prize","competition","manned","space","flight","projects","zero","gravity","corporation","zero","g","following_year","anderson","waselected","virginia","representative","one","approximately","chosen","take_part","student","summer","program","program","carried","research","goddard","space","flight","center","met","key","individuals","involved","aerospace","industry","including","several","astronauts","daniel","dan","lockheed","martin","orbital","sciences","corporation","anderson","first","job","engineer","business","developer","analytical","graphics","aerospace","software","company_based","philadelphia","role","withe","company","software","space","missions","anderson","founded","astronauts","provided","public","information","space_travel","sold","website","spacecom","space_adventures","anderson","athe","program","began","thinking","seriously","space_tourism","particular","decided","nasa","would","able","develop","program","could","take","civilians","space","reasonable","cost","collaboration","peter","diamandis","anderson","adventure_travel","operator","expeditions","mike","mcdowell","anderson","developed","initial","idea","create","space_tourism","company","space_adventures","founded","space_adventures","diamandis","mcdowell","initially","funded","raised","diamandis","mcdowell","investors","anderson","became","company","founding","director","vice_president","set","company","operations","townhouse","arlington","virginia","making","space_adventures","world","first","space_tourism","company","development","business","anderson","initially","arranged","clients","experience","flights","thedge","space","fighter","jets","airplane","flights","experience","weightlessness","tours","russian","soyuz","launches","kazakhstan","continued","look","opportunities","place","clients","actual","space","flight","including","commissioning","report","russian","federal","space_agency","study","whether","soyuz_spacecraft","soyuz","space_vehicle","could","international_space_station","iss","reached","agreement","withe","russian_space_agency","soyuz","behalf","private","citizens","sold","first","money","manager","dennis_tito","million","tito","part","group","astronauts","launched","intorbit","visited","iss","firstime","private","citizen","paid","fly","torbit","commercial","market","space_travel","work","space_adventures","anderson","widely","credited","firsto","spaceflight","viability","commercial","market","space_travel","proving","demand","space_tourism","smart","ceo","reported","anderson","company","firm","world","sold","space","flights","actually","realized","anderson","hasold","nearly","half","billion","space","missions","company","arranged","seven","missions","private","citizens","including","dennis_tito","guy","charlesimonyi","visithe","iss","anderson","hastated","sees","tourism","catalyst","commercialization","space","encouraging","development","cheaper","transportation","space","eventually","allow","humanity","develop","space","including","development","natural_resources","beyond","earth","interviewith","smart","ceo","said","believes","imperative","explore","space","humanity","long_term","survival","addition","role","chairman","space_adventures","anderson","holds","number","professional","positions","chairman","planetary","power","inc","renewablenergy","company","founded","focuses","developing","affordable","renewablenergy","technology","anderson","also","president","ceof","intentional","software","corporation","software","development","company","founded","charlesimonyi","make","creating","application","software","applications","accessible","people","experienced","computer","programming","joined","intentional","president","september","work","marketing","intentional","programming","method","later","year","december","chosen","next","chairman","board","commercial_spaceflight","federation","organization","promotes","development","commercial_spaceflight","industry","anderson","chairman","planetary","resources","planetary","resources","inc","company","develops","technology","withe_aim","carrying","mining","exploration","mining","including","platinum","precious","appearances","writing","anderson","appeared","guest","speaker","lecturer","conferences","including","world","economic","forum","forbes","global","ceo","conference","ted","conference","spoke","mining","could","create","profit","space_travel","also","contributed","two","books","kids","think","outside","box","stephanie","space_tourist","handbook","guide","space_tourism","authored","organizations","anderson","board","member","x_prize","foundation","founder","planetary","security","foundation","aims","educate","public","abouthe","global","risks","nuclear_weapons","advocates","eliminating","nuclear_weapons","seattle","museum","oflight","member","board","national","space","society","became","member","world","economic","forum","also","member","young","presidents","organization","honors","awards","anderson","received","number","awards","honors","career","named","usa_today","one","us","top","university","graduates","received","university","virginia","engineering","foundation","outstanding","young","award","national","space","society","space_tourism","society","orbit","award","world","technology","network","world","technology","award","category","named","one","ernst","young","entrepreneurs","year","personalife","anderson","lives","bellevue","washington","withis","wife","four","children","externalinks_official","personal","website_category","space_tourism","category_space","adventures","category_living_people_category","university","virginia","school","engineering","applied","science","alumni"],"clean_bigrams":[["birth","place"],["place","nationality"],["nationality","united"],["united","states"],["states","american"],["names","ethnicity"],["ethnicity","education"],["education","almater"],["almater","university"],["virginia","occupation"],["occupation","chairman"],["space","adventurespace"],["adventurespace","adventures"],["adventures","ltd"],["ltd","ceof"],["ceof","intentional"],["intentional","software"],["software","corporation"],["planetary","power"],["power","inc"],["inc","years"],["years","active"],["active","present"],["present","employer"],["employer","organization"],["organization","agent"],["agent","home"],["home","town"],["colorado","residence"],["residence","bellevue"],["weight","spouse"],["children","parents"],["parents","awards"],["awards","anderson"],["anderson","born"],["united","states"],["states","american"],["american","entrepreneur"],["space","adventurespace"],["adventurespace","adventures"],["adventures","ltd"],["first","commercial"],["commercial","spaceflight"],["spaceflight","company"],["company","whichas"],["whichas","arranged"],["eight","missions"],["privately","funded"],["funded","individuals"],["international","space"],["space","station"],["station","since"],["since","anderson"],["widely","credited"],["commercial","spaceflight"],["founding","partner"],["space","angels"],["angels","network"],["network","ceof"],["ceof","intentional"],["intentional","software"],["software","corporation"],["planetary","power"],["planetary","resources"],["booster","fuels"],["fuels","early"],["early","life"],["education","anderson"],["american","real"],["argentine","mother"],["early","interest"],["interest","spacexploration"],["read","cosmos"],["cosmos","book"],["book","cosmos"],["third","grade"],["grade","anderson"],["anderson","also"],["also","developed"],["fifth","grade"],["wrote","computer"],["computer","programs"],["high","school"],["math","classes"],["classes","thathe"],["thathe","school"],["school","offered"],["high","school"],["high","school"],["school","anderson"],["anderson","intended"],["united","states"],["states","air"],["air","force"],["force","air"],["air","force"],["pilot","withe"],["withe","goal"],["eventually","becoming"],["astronaut","however"],["air","force"],["force","anderson"],["anderson","decided"],["virginiand","major"],["computer","science"],["study","space"],["space","technologies"],["interest","spacexploration"],["spacexploration","athe"],["athe","university"],["thexploration","andevelopment"],["computer","science"],["engineering","school"],["school","early"],["early","career"],["athe","university"],["x","prize"],["prize","foundation"],["foundation","peter"],["peter","diamandis"],["helped","organize"],["ansari","x"],["x","prize"],["first","private"],["private","sector"],["sector","manned"],["manned","space"],["space","flight"],["zero","gravity"],["gravity","corporation"],["corporation","zero"],["zero","g"],["following","year"],["year","anderson"],["anderson","waselected"],["take","part"],["student","summer"],["summer","program"],["goddard","space"],["space","flight"],["flight","center"],["met","key"],["key","individuals"],["individuals","involved"],["aerospace","industry"],["industry","including"],["including","several"],["several","astronauts"],["lockheed","martin"],["orbital","sciences"],["sciences","corporation"],["corporation","anderson"],["first","job"],["business","developer"],["analytical","graphics"],["aerospace","software"],["software","company"],["company","based"],["role","withe"],["withe","company"],["space","missions"],["anderson","founded"],["space","travel"],["space","adventures"],["adventures","anderson"],["began","thinking"],["thinking","seriously"],["space","tourism"],["particular","decided"],["nasa","would"],["could","take"],["take","civilians"],["reasonable","cost"],["peter","diamandis"],["adventure","travel"],["travel","operator"],["expeditions","mike"],["mike","mcdowell"],["mcdowell","anderson"],["anderson","developed"],["initial","idea"],["space","tourism"],["tourism","company"],["company","space"],["space","adventures"],["founded","space"],["space","adventures"],["diamandis","mcdowell"],["mcdowell","initially"],["initially","funded"],["diamandis","mcdowell"],["investors","anderson"],["anderson","became"],["founding","director"],["vice","president"],["company","operations"],["arlington","virginia"],["virginia","making"],["making","space"],["space","adventures"],["first","space"],["space","tourism"],["tourism","company"],["company","development"],["business","anderson"],["anderson","initially"],["initially","arranged"],["experience","flights"],["fighter","jets"],["jets","airplane"],["airplane","flights"],["experience","weightlessness"],["russian","soyuz"],["soyuz","launches"],["place","clients"],["actual","space"],["space","flight"],["flight","including"],["including","commissioning"],["russian","federal"],["federal","space"],["space","agency"],["study","whether"],["soyuz","spacecraft"],["spacecraft","soyuz"],["soyuz","space"],["space","vehicle"],["vehicle","could"],["international","space"],["space","station"],["station","iss"],["agreement","withe"],["withe","russian"],["russian","space"],["space","agency"],["private","citizens"],["money","manager"],["manager","dennis"],["dennis","tito"],["launched","intorbit"],["private","citizen"],["fly","torbit"],["torbit","commercial"],["commercial","market"],["space","travel"],["space","adventures"],["adventures","anderson"],["widely","credited"],["commercial","market"],["space","travel"],["space","tourism"],["smart","ceo"],["ceo","reported"],["sold","space"],["space","flights"],["realized","anderson"],["anderson","hasold"],["hasold","nearly"],["nearly","half"],["space","missions"],["seven","missions"],["private","citizens"],["citizens","including"],["including","dennis"],["dennis","tito"],["tito","guy"],["visithe","iss"],["iss","anderson"],["anderson","hastated"],["sees","tourism"],["encouraging","development"],["cheaper","transportation"],["eventually","allow"],["allow","humanity"],["space","including"],["natural","resources"],["resources","beyond"],["beyond","earth"],["interviewith","smart"],["smart","ceo"],["explore","space"],["long","term"],["term","survival"],["space","adventures"],["adventures","anderson"],["anderson","holds"],["professional","positions"],["planetary","power"],["power","inc"],["renewablenergy","company"],["company","founded"],["developing","affordable"],["affordable","renewablenergy"],["renewablenergy","technology"],["technology","anderson"],["anderson","also"],["ceof","intentional"],["intentional","software"],["software","corporation"],["software","development"],["development","company"],["company","founded"],["make","creating"],["creating","application"],["application","software"],["software","applications"],["computer","programming"],["joined","intentional"],["intentional","programming"],["programming","method"],["method","later"],["next","chairman"],["commercial","spaceflight"],["spaceflight","federation"],["commercial","spaceflight"],["spaceflight","industry"],["industry","anderson"],["anderson","also"],["planetary","resources"],["resources","planetary"],["planetary","resources"],["resources","inc"],["develops","technology"],["technology","withe"],["withe","aim"],["mining","exploration"],["including","platinum"],["writing","anderson"],["guest","speaker"],["conferences","including"],["world","economic"],["economic","forum"],["forbes","global"],["global","ceo"],["ceo","conference"],["ted","conference"],["could","create"],["create","profit"],["space","travel"],["also","contributed"],["two","books"],["books","kids"],["think","outside"],["space","tourist"],["space","tourism"],["organizations","anderson"],["board","member"],["x","prize"],["prize","foundation"],["planetary","security"],["security","foundation"],["public","abouthe"],["abouthe","global"],["global","risks"],["nuclear","weapons"],["nuclear","weapons"],["museum","oflight"],["national","space"],["space","society"],["world","economic"],["economic","forum"],["young","presidents"],["presidents","organization"],["organization","honors"],["awards","anderson"],["usa","today"],["us","top"],["top","university"],["university","graduates"],["virginia","engineering"],["engineering","foundation"],["outstanding","young"],["national","space"],["space","society"],["space","tourism"],["tourism","society"],["orbit","award"],["world","technology"],["technology","network"],["world","technology"],["technology","award"],["named","one"],["ernst","young"],["year","personalife"],["personalife","anderson"],["anderson","lives"],["bellevue","washington"],["washington","withis"],["withis","wife"],["four","children"],["children","externalinks"],["externalinks","official"],["official","personal"],["personal","website"],["website","category"],["category","space"],["space","tourism"],["tourism","category"],["category","space"],["space","adventures"],["adventures","category"],["category","living"],["living","people"],["people","category"],["category","university"],["virginia","school"],["applied","science"],["science","alumni"]],"all_collocations":["birth place","place nationality","nationality united","united states","states american","names ethnicity","ethnicity education","education almater","almater university","virginia occupation","occupation chairman","space adventurespace","adventurespace adventures","adventures ltd","ltd ceof","ceof intentional","intentional software","software corporation","planetary power","power inc","inc years","years active","active present","present employer","employer organization","organization agent","agent home","home town","colorado residence","residence bellevue","weight spouse","children parents","parents awards","awards anderson","anderson born","united states","states american","american entrepreneur","space adventurespace","adventurespace adventures","adventures ltd","first commercial","commercial spaceflight","spaceflight company","company whichas","whichas arranged","eight missions","privately funded","funded individuals","international space","space station","station since","since anderson","widely credited","commercial spaceflight","founding partner","space angels","angels network","network ceof","ceof intentional","intentional software","software corporation","planetary power","planetary resources","booster fuels","fuels early","early life","education anderson","american real","argentine mother","early interest","interest spacexploration","read cosmos","cosmos book","book cosmos","third grade","grade anderson","anderson also","also developed","fifth grade","wrote computer","computer programs","high school","math classes","classes thathe","thathe school","school offered","high school","high school","school anderson","anderson intended","united states","states air","air force","force air","air force","pilot withe","withe goal","eventually becoming","astronaut however","air force","force anderson","anderson decided","virginiand major","computer science","study space","space technologies","interest spacexploration","spacexploration athe","athe university","thexploration andevelopment","computer science","engineering school","school early","early career","athe university","x prize","prize foundation","foundation peter","peter diamandis","helped organize","ansari x","x prize","first private","private sector","sector manned","manned space","space flight","zero gravity","gravity corporation","corporation zero","zero g","following year","year anderson","anderson waselected","take part","student summer","summer program","goddard space","space flight","flight center","met key","key individuals","individuals involved","aerospace industry","industry including","including several","several astronauts","lockheed martin","orbital sciences","sciences corporation","corporation anderson","first job","business developer","analytical graphics","aerospace software","software company","company based","role withe","withe company","space missions","anderson founded","space travel","space adventures","adventures anderson","began thinking","thinking seriously","space tourism","particular decided","nasa would","could take","take civilians","reasonable cost","peter diamandis","adventure travel","travel operator","expeditions mike","mike mcdowell","mcdowell anderson","anderson developed","initial idea","space tourism","tourism company","company space","space adventures","founded space","space adventures","diamandis mcdowell","mcdowell initially","initially funded","diamandis mcdowell","investors anderson","anderson became","founding director","vice president","company operations","arlington virginia","virginia making","making space","space adventures","first space","space tourism","tourism company","company development","business anderson","anderson initially","initially arranged","experience flights","fighter jets","jets airplane","airplane flights","experience weightlessness","russian soyuz","soyuz launches","place clients","actual space","space flight","flight including","including commissioning","russian federal","federal space","space agency","study whether","soyuz spacecraft","spacecraft soyuz","soyuz space","space vehicle","vehicle could","international space","space station","station iss","agreement withe","withe russian","russian space","space agency","private citizens","money manager","manager dennis","dennis tito","launched intorbit","private citizen","fly torbit","torbit commercial","commercial market","space travel","space adventures","adventures anderson","widely credited","commercial market","space travel","space tourism","smart ceo","ceo reported","sold space","space flights","realized anderson","anderson hasold","hasold nearly","nearly half","space missions","seven missions","private citizens","citizens including","including dennis","dennis tito","tito guy","visithe iss","iss anderson","anderson hastated","sees tourism","encouraging development","cheaper transportation","eventually allow","allow humanity","space including","natural resources","resources beyond","beyond earth","interviewith smart","smart ceo","explore space","long term","term survival","space adventures","adventures anderson","anderson holds","professional positions","planetary power","power inc","renewablenergy company","company founded","developing affordable","affordable renewablenergy","renewablenergy technology","technology anderson","anderson also","ceof intentional","intentional software","software corporation","software development","development company","company founded","make creating","creating application","application software","software applications","computer programming","joined intentional","intentional programming","programming method","method later","next chairman","commercial spaceflight","spaceflight federation","commercial spaceflight","spaceflight industry","industry anderson","anderson also","planetary resources","resources planetary","planetary resources","resources inc","develops technology","technology withe","withe aim","mining exploration","including platinum","writing anderson","guest speaker","conferences including","world economic","economic forum","forbes global","global ceo","ceo conference","ted conference","could create","create profit","space travel","also contributed","two books","books kids","think outside","space tourist","space tourism","organizations anderson","board member","x prize","prize foundation","planetary security","security foundation","public abouthe","abouthe global","global risks","nuclear weapons","nuclear weapons","museum oflight","national space","space society","world economic","economic forum","young presidents","presidents organization","organization honors","awards anderson","usa today","us top","top university","university graduates","virginia engineering","engineering foundation","outstanding young","national space","space society","space tourism","tourism society","orbit award","world technology","technology network","world technology","technology award","named one","ernst young","year personalife","personalife anderson","anderson lives","bellevue washington","washington withis","withis wife","four children","children externalinks","externalinks official","official personal","personal website","website category","category space","space tourism","tourism category","category space","space adventures","adventures category","category living","living people","people category","category university","virginia school","applied science","science alumni"],"new_description":"birth place nationality united_states american names ethnicity education almater university virginia occupation chairman space_adventurespace adventures ltd ceof intentional software corporation founder planetary power inc years active present employer organization agent home town colorado residence bellevue weight spouse children parents awards anderson born united_states american entrepreneur founder chairman space_adventurespace adventures ltd first_commercial spaceflight company whichas arranged eight missions privately_funded individuals international_space_station since anderson widely credited established market commercial_spaceflight also_founding partner space_angels network ceof intentional software corporation founder chairman planetary power founder chairman planetary resources chairman booster fuels early_life education anderson raised colorado father american real argentine mother child showed early interest spacexploration read cosmos book cosmos carl third grade anderson also developed computers mathematics fifth grade wrote computer programs year high_school completed math classes thathe school offered attended high_school graduated early high_school anderson intended join united_states air_force air_force pilot withe_goal eventually becoming astronaut however would prevented able pass physical enter air_force anderson decided attend university virginiand major aerospacengineering computer science order study space technologies continue interest spacexploration athe_university began chapter students thexploration andevelopment space graduated laude bachelor science aerospacengineering computer science first class university engineering school early career anderson athe_university virginia founder chairman x_prize foundation peter diamandis washington helped organize ansari_x_prize competition first_private_sector manned space flight projects zero gravity corporation zero g following_year anderson waselected virginia representative one approximately chosen take_part student summer program program carried research goddard space flight center met key individuals involved aerospace industry including several astronauts daniel dan lockheed martin orbital sciences corporation anderson first job engineer business developer analytical graphics aerospace software company_based philadelphia role withe company software space missions anderson founded astronauts provided public information space_travel sold website spacecom space_adventures anderson athe program began thinking seriously space_tourism particular decided nasa would able develop program could take civilians space reasonable cost collaboration peter diamandis anderson adventure_travel operator expeditions mike mcdowell anderson developed initial idea create space_tourism company space_adventures founded space_adventures diamandis mcdowell initially funded raised diamandis mcdowell investors anderson became company founding director vice_president set company operations townhouse arlington virginia making space_adventures world first space_tourism company development business anderson initially arranged clients experience flights thedge space fighter jets airplane flights experience weightlessness tours russian soyuz launches kazakhstan continued look opportunities place clients actual space flight including commissioning report russian federal space_agency study whether soyuz_spacecraft soyuz space_vehicle could international_space_station iss reached agreement withe russian_space_agency soyuz behalf private citizens sold first money manager dennis_tito million tito part group astronauts launched intorbit visited iss firstime private citizen paid fly torbit commercial market space_travel work space_adventures anderson widely credited firsto spaceflight viability commercial market space_travel proving demand space_tourism smart ceo reported anderson company firm world sold space flights actually realized anderson hasold nearly half billion space missions company arranged seven missions private citizens including dennis_tito guy charlesimonyi visithe iss anderson hastated sees tourism catalyst commercialization space encouraging development cheaper transportation space eventually allow humanity develop space including development natural_resources beyond earth interviewith smart ceo said believes imperative explore space humanity long_term survival addition role chairman space_adventures anderson holds number professional positions chairman planetary power inc renewablenergy company founded focuses developing affordable renewablenergy technology anderson also president ceof intentional software corporation software development company founded charlesimonyi make creating application software applications accessible people experienced computer programming joined intentional president september work marketing intentional programming method later year december chosen next chairman board commercial_spaceflight federation organization promotes development commercial_spaceflight industry anderson also_founder chairman planetary resources planetary resources inc company develops technology withe_aim carrying mining exploration mining including platinum precious appearances writing anderson appeared guest speaker lecturer conferences including world economic forum forbes global ceo conference ted conference spoke mining could create profit space_travel also contributed two books kids think outside box stephanie space_tourist handbook guide space_tourism authored organizations anderson board member x_prize foundation founder planetary security foundation aims educate public abouthe global risks nuclear_weapons advocates eliminating nuclear_weapons also_foundation seattle museum oflight member board national space society became member world economic forum also member young presidents organization honors awards anderson received number awards honors career named usa_today one us top university graduates received university virginia engineering foundation outstanding young award national space society space_tourism society orbit award world technology network world technology award category named one ernst young entrepreneurs year personalife anderson lives bellevue washington withis wife four children externalinks_official personal website_category space_tourism category_space adventures category_living_people_category university virginia school engineering applied science alumni"},{"title":"Escapism Travel Magazine","description":"country usa based language websitescapism issn escapism travel magazine is a travel magazine based inew york city united states published twice a year it has readers according to its corporate media kithe magazinemphasizes luxury travel eco tourism and cultural heritage articles offer information new emerging destinations coastal tourism foodesign and style it is published by sanmax publishing externalinks the official escapism travel magazine website category american lifestyle magazines category biannual magazines category english language magazines category magazinestablished in category magazines published inew york category tourismagazines category establishments inew york","main_words":["country","usa","based","language","issn","travel_magazine","travel_magazine","based_inew_york_city","united_states","published","twice","year","readers","according","corporate","media","luxury","travel","articles","offer","information","new","emerging","destinations","coastal","tourism","style","published","publishing","externalinks_official","travel_magazine","website_category","american_lifestyle_magazines_category","biannual","magazines_category","category_magazinestablished","category_magazines_published","inew_york","category_tourismagazines","category_establishments","inew_york"],"clean_bigrams":[["country","usa"],["usa","based"],["based","language"],["travel","magazine"],["travel","magazine"],["magazine","based"],["based","inew"],["inew","york"],["york","city"],["city","united"],["united","states"],["states","published"],["published","twice"],["readers","according"],["corporate","media"],["luxury","travel"],["travel","eco"],["eco","tourism"],["cultural","heritage"],["heritage","articles"],["articles","offer"],["offer","information"],["information","new"],["new","emerging"],["emerging","destinations"],["destinations","coastal"],["coastal","tourism"],["publishing","externalinks"],["travel","magazine"],["magazine","website"],["website","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","biannual"],["biannual","magazines"],["magazines","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["published","inew"],["inew","york"],["york","category"],["category","tourismagazines"],["tourismagazines","category"],["category","establishments"],["establishments","inew"],["inew","york"]],"all_collocations":["country usa","usa based","based language","travel magazine","travel magazine","magazine based","based inew","inew york","york city","city united","united states","states published","published twice","readers according","corporate media","luxury travel","travel eco","eco tourism","cultural heritage","heritage articles","articles offer","offer information","information new","new emerging","emerging destinations","destinations coastal","coastal tourism","publishing externalinks","travel magazine","magazine website","website category","category american","american lifestyle","lifestyle magazines","magazines category","category biannual","biannual magazines","magazines category","category english","english language","language magazines","magazines category","category magazinestablished","category magazines","magazines published","published inew","inew york","york category","category tourismagazines","tourismagazines category","category establishments","establishments inew","inew york"],"new_description":"country usa based language issn travel_magazine travel_magazine based_inew_york_city united_states published twice year readers according corporate media luxury travel eco_tourism_cultural_heritage articles offer information new emerging destinations coastal tourism style published publishing externalinks_official travel_magazine website_category american_lifestyle_magazines_category biannual magazines_category english_language_magazines category_magazinestablished category_magazines_published inew_york category_tourismagazines category_establishments inew_york"},{"title":"Escorted tour","description":"image doppelgelenkbus kmjjpg thumb right large motor coach with tourists escorted tours are a form of tourism in which travelers arescorted in a group to various destinations versus a self guided tour where the tourist is on their own escorted tours are also known as guided tours or package tour package tours escorted tours are normally conducted by a tour guide tour director who takes care of all services from the beginning to end of the tour escorted tours also normally include the flights hotels transportation transfers to the airport hotel most meals and some sightseeing escorted tours are often conducted by motor coach and usually no more than three nights are spent in each location visited they are usually fast paced and prices include most everything see also heritage trail walking tour furthereading pond kathleen lingle the professional guide dynamics of tour guiding new york vanostrand reinhold wynn jonathan r the tour guide walking and talking new york chicago the university of chicago press wynn jonathan r city tour guides urban alchemists at work city community no june category types of tourism","main_words":["image","thumb","right","large","motor","coach","tourists","escorted","tours","form","group","various","destinations","versus","self_guided_tour","tourist","escorted","tours","also_known","guided_tours","package","tour","package","tours","escorted","tours","normally","conducted","tour_guide","tour","director","takes","care","services","beginning","end","tour","escorted","tours","also","normally","include","flights","hotels","transportation","airport","hotel","meals","sightseeing","escorted","tours","often","conducted","motor","coach","usually","three","nights","spent","location","visited","usually","fast","paced","prices","include","everything","see_also","heritage","trail","walking_tour","furthereading","pond","kathleen","professional","guide","dynamics","tour","guiding","new_york","vanostrand","wynn","jonathan","r","tour_guide","walking","talking","new_york","chicago","university","chicago","press","wynn","jonathan","r","city","tour_guides","urban","alchemists","work","city","community","tourism"],"clean_bigrams":[["thumb","right"],["right","large"],["large","motor"],["motor","coach"],["tourists","escorted"],["escorted","tours"],["various","destinations"],["destinations","versus"],["self","guided"],["guided","tour"],["escorted","tours"],["tours","also"],["also","known"],["guided","tours"],["package","tour"],["tour","package"],["package","tours"],["tours","escorted"],["escorted","tours"],["normally","conducted"],["tour","guide"],["guide","tour"],["tour","director"],["takes","care"],["tour","escorted"],["escorted","tours"],["tours","also"],["also","normally"],["normally","include"],["flights","hotels"],["hotels","transportation"],["airport","hotel"],["sightseeing","escorted"],["escorted","tours"],["often","conducted"],["motor","coach"],["three","nights"],["location","visited"],["usually","fast"],["fast","paced"],["prices","include"],["everything","see"],["see","also"],["also","heritage"],["heritage","trail"],["trail","walking"],["walking","tour"],["tour","furthereading"],["furthereading","pond"],["pond","kathleen"],["professional","guide"],["guide","dynamics"],["tour","guiding"],["guiding","new"],["new","york"],["york","vanostrand"],["wynn","jonathan"],["jonathan","r"],["tour","guide"],["guide","walking"],["talking","new"],["new","york"],["york","chicago"],["chicago","press"],["press","wynn"],["wynn","jonathan"],["jonathan","r"],["r","city"],["city","tour"],["tour","guides"],["guides","urban"],["urban","alchemists"],["work","city"],["city","community"],["june","category"],["category","types"]],"all_collocations":["right large","large motor","motor coach","tourists escorted","escorted tours","various destinations","destinations versus","self guided","guided tour","escorted tours","tours also","also known","guided tours","package tour","tour package","package tours","tours escorted","escorted tours","normally conducted","tour guide","guide tour","tour director","takes care","tour escorted","escorted tours","tours also","also normally","normally include","flights hotels","hotels transportation","airport hotel","sightseeing escorted","escorted tours","often conducted","motor coach","three nights","location visited","usually fast","fast paced","prices include","everything see","see also","also heritage","heritage trail","trail walking","walking tour","tour furthereading","furthereading pond","pond kathleen","professional guide","guide dynamics","tour guiding","guiding new","new york","york vanostrand","wynn jonathan","jonathan r","tour guide","guide walking","talking new","new york","york chicago","chicago press","press wynn","wynn jonathan","jonathan r","r city","city tour","tour guides","guides urban","urban alchemists","work city","city community","june category","category types"],"new_description":"image thumb right large motor coach tourists escorted tours form tourism_travelers group various destinations versus self_guided_tour tourist escorted tours also_known guided_tours package tour package tours escorted tours normally conducted tour_guide tour director takes care services beginning end tour escorted tours also normally include flights hotels transportation airport hotel meals sightseeing escorted tours often conducted motor coach usually three nights spent location visited usually fast paced prices include everything see_also heritage trail walking_tour furthereading pond kathleen professional guide dynamics tour guiding new_york vanostrand wynn jonathan r tour_guide walking talking new_york chicago university chicago press wynn jonathan r city tour_guides urban alchemists work city community june_category_types tourism"},{"title":"European Institute of Cultural Routes","description":"headquarters abbaye de neum nster leader title president leader name colette flesch leader title director leader name stefano dominioni nameuropean institute of cultural routes website theuropean institute of cultural routes is a non profit association based in luxembourg whose aim is to help the council of europe as a technical body in thestablishment of european cultural route s it was established in and its role is council of europe cultural routes to examine applications for new projects to monitor activities in the field and cordinate the work of partner organizations to disseminate and archive information documents the council of europentrusted the institute to follow up the already elected routes to cordinate and provide technical aid to networks in particular in their development in central and eastern europe to initiate new proposals as well as to disseminate information and set up a database that will constitute the memory of the programme of the cultural routes european institute of cultural route who are we theuropean institute of cultural routes theuropean institute of cultural routes eicr was established as a european public service and technical body as part of a political agreement between the council of europe and the granduchy of luxembourg ministry of culture further education and research since the institute has worked in close collaboration withe council of europe in carrying out its responsibilities namely to ensure the continuity andevelopment of the programme of the cultural routes in the signatory countries of theuropean cultural convention andepending on the geographical and historical requirements of themes in those countries whichave had and continue to have close relations with europe theicresides in the neum nster abbey centre culturel de rencontre abbaye de neum nster in luxembourg it retains all relevant documentation and maintains a specialist library on the routes the institute regularly welcomes those in charge of the networks of the routes as well as project managers researcherstudents and members of the general public theicr is also charged with participating in european training research and analysis programmes concerning cultural tourism for theuropean commission and various governments and project managers the institute organises themed symposiums and specialistraining collaborates in the setting up and running of the routes and participates in specialist exhibitions while promoting a greater awareness of the links between culture tourism and thenvironment from to the institute managed the visibility and communication work of theuropean research programme picture proactive management of the impact of cultural tourism on urban resources and economies in theuropean commission directorate general education and culture named theicr as a body active on a european level in the field of culture in recognition for its essential role in creating a coherent programme of sustainable cultural tourism initiatives promoting the destination europe and encouraging europeans to discover their common roots and history through travel and thexploration of material and immaterial heritage the institute is a member of necstour an association of european regions working to develop competitive and sustainable tourism and hasigned an agreement withe cit de la culturet du tourisme durable to provide distance learning and to study the sustainability of introducing tourism to the cultural routes the institute is currently working withe council of europe and the tourism unit of theuropean commission a study into the impact of the cultural routes on small and medium businesses in the institute welcome a partial agreement aimed at combining the voluntary contributions of those member countries of the council of europe who wish to increase the funds available to the cultural routesince the opening up of europe to theasthe cultural routes havenabled and continue to enable particularly by expanding to include the southern caucasus the creation of a real dialogue between eastern and western europeans the opening of a resourcentre for the cultural routes in sibiu in the casa luxembourg in liaison witheuropean institute of cultural routes in luxembourg and the mioritics association is testamento thistefano dominionis the current director of the institute and executive secretary of thenlarged partial agreement on cultural routes of the council of europe michel tomas penette and penelope denu directed the institute from to and from to respectively colette flesch colette flesch is president of the institute since she replaced erna hennicot schoepges and guy dockendorf see also european cultural route cultural policies of theuropean union references externalinks european institute of cultural routes official website category council of europe category tourism agencies category cultural heritage category cultural policies of theuropean union category tourism in europe","main_words":["headquarters","de","nster","leader_title","president","leader_name","flesch","leader_title","director","leader_name","institute","cultural_routes","website","theuropean","institute","cultural_routes","non_profit","association","based","luxembourg","whose","aim","help","council","europe","technical","body","thestablishment","european","cultural","role","council","europe","cultural_routes","applications","new","projects","monitor","activities","field","cordinate","work","partner","organizations","archive","information","documents","council","institute","follow","already","elected","routes","cordinate","provide","technical","aid","networks","particular","development","central","eastern_europe","initiate","new","proposals","well","information","set","database","constitute","memory","programme","cultural_routes","european","institute","cultural","route","theuropean","institute","cultural_routes","theuropean","institute","cultural_routes","established","european","public","service","technical","body","part","political","agreement","council","europe","luxembourg","ministry","culture","education","research","since","institute","worked","close","collaboration","withe","council","europe","carrying","responsibilities","namely","ensure","continuity","andevelopment","programme","cultural_routes","countries","theuropean","cultural","convention","geographical","historical","requirements","themes","countries","whichave","continue","close","relations","europe","nster","abbey","centre","de","de","nster","luxembourg","retains","relevant","documentation","maintains","specialist","library","routes","institute","regularly","welcomes","charge","networks","routes","well","project","managers","members","general_public","also","charged","participating","european","training","research","analysis","programmes","concerning","cultural_tourism","theuropean_commission","various","governments","project","managers","institute","themed","setting","running","routes","participates","specialist","exhibitions","promoting","greater","awareness","links","culture_tourism","thenvironment","institute","managed","visibility","communication","work","theuropean","research","programme","picture","proactive","management","impact","cultural_tourism","urban","resources","economies","theuropean_commission","directorate","general","education","culture","named","body","active","european","level","field","culture","recognition","essential","role","creating","programme","sustainable","cultural_tourism","initiatives","promoting","destination","europe","encouraging","europeans","discover","common","roots","history","travel","thexploration","material","heritage","institute","member","association","european","regions","working","develop","competitive","sustainable_tourism","agreement","withe","cit","de_la","tourisme","durable","provide","distance","learning","study","sustainability","introducing","tourism_cultural","routes","institute","currently","working","withe","council","europe","tourism","unit","theuropean_commission","study","impact","cultural_routes","small","medium","businesses","institute","welcome","partial","agreement","aimed","combining","voluntary","contributions","member_countries","council","europe","wish","increase","funds","available","cultural","opening","europe","cultural_routes","continue","enable","particularly","expanding","include","southern","caucasus","creation","real","dialogue","eastern","opening","cultural_routes","casa","luxembourg","liaison","institute","cultural_routes","luxembourg","association","current","director","institute","executive","secretary","partial","agreement","cultural_routes","council","europe","michel","directed","institute","respectively","flesch","flesch","president","institute","since","replaced","guy","see_also","european","cultural","route","cultural","policies","theuropean_union","references_externalinks","european","institute","cultural_routes","official_website_category","council","europe_category_tourism","category_cultural","policies","theuropean_union","category_tourism","europe"],"clean_bigrams":[["nster","leader"],["leader","title"],["title","president"],["president","leader"],["leader","name"],["flesch","leader"],["leader","title"],["title","director"],["director","leader"],["leader","name"],["cultural","routes"],["routes","website"],["website","theuropean"],["theuropean","institute"],["cultural","routes"],["non","profit"],["profit","association"],["association","based"],["luxembourg","whose"],["whose","aim"],["technical","body"],["european","cultural"],["cultural","route"],["europe","cultural"],["cultural","routes"],["new","projects"],["monitor","activities"],["partner","organizations"],["archive","information"],["information","documents"],["already","elected"],["elected","routes"],["provide","technical"],["technical","aid"],["eastern","europe"],["initiate","new"],["new","proposals"],["cultural","routes"],["routes","european"],["european","institute"],["cultural","route"],["theuropean","institute"],["cultural","routes"],["routes","theuropean"],["theuropean","institute"],["cultural","routes"],["european","public"],["public","service"],["technical","body"],["political","agreement"],["luxembourg","ministry"],["research","since"],["close","collaboration"],["collaboration","withe"],["withe","council"],["responsibilities","namely"],["continuity","andevelopment"],["cultural","routes"],["theuropean","cultural"],["cultural","convention"],["historical","requirements"],["countries","whichave"],["close","relations"],["nster","abbey"],["abbey","centre"],["relevant","documentation"],["specialist","library"],["institute","regularly"],["regularly","welcomes"],["project","managers"],["general","public"],["also","charged"],["european","training"],["training","research"],["analysis","programmes"],["programmes","concerning"],["concerning","cultural"],["cultural","tourism"],["theuropean","commission"],["various","governments"],["project","managers"],["specialist","exhibitions"],["greater","awareness"],["culture","tourism"],["institute","managed"],["communication","work"],["theuropean","research"],["research","programme"],["programme","picture"],["picture","proactive"],["proactive","management"],["cultural","tourism"],["urban","resources"],["theuropean","commission"],["commission","directorate"],["directorate","general"],["general","education"],["culture","named"],["body","active"],["european","level"],["essential","role"],["sustainable","cultural"],["cultural","tourism"],["tourism","initiatives"],["initiatives","promoting"],["destination","europe"],["encouraging","europeans"],["common","roots"],["european","regions"],["regions","working"],["develop","competitive"],["sustainable","tourism"],["agreement","withe"],["withe","cit"],["cit","de"],["de","la"],["tourisme","durable"],["provide","distance"],["distance","learning"],["introducing","tourism"],["cultural","routes"],["currently","working"],["working","withe"],["withe","council"],["tourism","unit"],["theuropean","commission"],["cultural","routes"],["medium","businesses"],["institute","welcome"],["partial","agreement"],["agreement","aimed"],["voluntary","contributions"],["member","countries"],["funds","available"],["europe","cultural"],["cultural","routes"],["enable","particularly"],["southern","caucasus"],["real","dialogue"],["western","europeans"],["cultural","routes"],["casa","luxembourg"],["cultural","routes"],["current","director"],["executive","secretary"],["partial","agreement"],["cultural","routes"],["europe","michel"],["institute","since"],["see","also"],["also","european"],["european","cultural"],["cultural","route"],["route","cultural"],["cultural","policies"],["theuropean","union"],["union","references"],["references","externalinks"],["externalinks","european"],["european","institute"],["cultural","routes"],["routes","official"],["official","website"],["website","category"],["category","council"],["europe","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","cultural"],["cultural","heritage"],["heritage","category"],["category","cultural"],["cultural","policies"],["theuropean","union"],["union","category"],["category","tourism"]],"all_collocations":["nster leader","leader title","title president","president leader","leader name","flesch leader","leader title","title director","director leader","leader name","cultural routes","routes website","website theuropean","theuropean institute","cultural routes","non profit","profit association","association based","luxembourg whose","whose aim","technical body","european cultural","cultural route","europe cultural","cultural routes","new projects","monitor activities","partner organizations","archive information","information documents","already elected","elected routes","provide technical","technical aid","eastern europe","initiate new","new proposals","cultural routes","routes european","european institute","cultural route","theuropean institute","cultural routes","routes theuropean","theuropean institute","cultural routes","european public","public service","technical body","political agreement","luxembourg ministry","research since","close collaboration","collaboration withe","withe council","responsibilities namely","continuity andevelopment","cultural routes","theuropean cultural","cultural convention","historical requirements","countries whichave","close relations","nster abbey","abbey centre","relevant documentation","specialist library","institute regularly","regularly welcomes","project managers","general public","also charged","european training","training research","analysis programmes","programmes concerning","concerning cultural","cultural tourism","theuropean commission","various governments","project managers","specialist exhibitions","greater awareness","culture tourism","institute managed","communication work","theuropean research","research programme","programme picture","picture proactive","proactive management","cultural tourism","urban resources","theuropean commission","commission directorate","directorate general","general education","culture named","body active","european level","essential role","sustainable cultural","cultural tourism","tourism initiatives","initiatives promoting","destination europe","encouraging europeans","common roots","european regions","regions working","develop competitive","sustainable tourism","agreement withe","withe cit","cit de","de la","tourisme durable","provide distance","distance learning","introducing tourism","cultural routes","currently working","working withe","withe council","tourism unit","theuropean commission","cultural routes","medium businesses","institute welcome","partial agreement","agreement aimed","voluntary contributions","member countries","funds available","europe cultural","cultural routes","enable particularly","southern caucasus","real dialogue","western europeans","cultural routes","casa luxembourg","cultural routes","current director","executive secretary","partial agreement","cultural routes","europe michel","institute since","see also","also european","european cultural","cultural route","route cultural","cultural policies","theuropean union","union references","references externalinks","externalinks european","european institute","cultural routes","routes official","official website","website category","category council","europe category","category tourism","tourism agencies","agencies category","category cultural","cultural heritage","heritage category","category cultural","cultural policies","theuropean union","union category","category tourism"],"new_description":"headquarters de nster leader_title president leader_name flesch leader_title director leader_name institute cultural_routes website theuropean institute cultural_routes non_profit association based luxembourg whose aim help council europe technical body thestablishment european cultural route_established role council europe cultural_routes applications new projects monitor activities field cordinate work partner organizations archive information documents council institute follow already elected routes cordinate provide technical aid networks particular development central eastern_europe initiate new proposals well information set database constitute memory programme cultural_routes european institute cultural route theuropean institute cultural_routes theuropean institute cultural_routes established european public service technical body part political agreement council europe luxembourg ministry culture education research since institute worked close collaboration withe council europe carrying responsibilities namely ensure continuity andevelopment programme cultural_routes countries theuropean cultural convention geographical historical requirements themes countries whichave continue close relations europe nster abbey centre de de nster luxembourg retains relevant documentation maintains specialist library routes institute regularly welcomes charge networks routes well project managers members general_public also charged participating european training research analysis programmes concerning cultural_tourism theuropean_commission various governments project managers institute themed setting running routes participates specialist exhibitions promoting greater awareness links culture_tourism thenvironment institute managed visibility communication work theuropean research programme picture proactive management impact cultural_tourism urban resources economies theuropean_commission directorate general education culture named body active european level field culture recognition essential role creating programme sustainable cultural_tourism initiatives promoting destination europe encouraging europeans discover common roots history travel thexploration material heritage institute member association european regions working develop competitive sustainable_tourism agreement withe cit de_la tourisme durable provide distance learning study sustainability introducing tourism_cultural routes institute currently working withe council europe tourism unit theuropean_commission study impact cultural_routes small medium businesses institute welcome partial agreement aimed combining voluntary contributions member_countries council europe wish increase funds available cultural opening europe cultural_routes continue enable particularly expanding include southern caucasus creation real dialogue eastern western_europeans opening cultural_routes casa luxembourg liaison institute cultural_routes luxembourg association current director institute executive secretary partial agreement cultural_routes council europe michel directed institute respectively flesch flesch president institute since replaced guy see_also european cultural route cultural policies theuropean_union references_externalinks european institute cultural_routes official_website_category council europe_category_tourism agencies_category_cultural_heritage category_cultural policies theuropean_union category_tourism europe"},{"title":"European Travel Commission","description":"theuropean travel commission etc is an international organisation responsible for the promotion of europe as a tourist destination its members are the national tourism organisations ntos of thirty three members including european union eu member states as well as iceland monaco montenegro norway san marino serbia switzerland turkey the national tourism organizations of all sovereign states in europe areligible for full membership of theuropean travel commission regional cross border organizations and tourism related bodies may join associate members theuropean travel commission is neither part of theuropean commissionor an institution of theuropean union history etc was established in norway between world war i and world war ii europe became aware of the importance of tourism thestablishment of national tourism organizations rapidly led to the creation of the international union official tourist publicity organizations its first mission was the launch of a joint publicity campaignamed europe calling this union became the international union official travel organisations iuoto which is today known as the world tourism organization wto in its first general assembly the iuoto adopted the principle of regional commissions european countries werepresented and those countries decided to establish the first such commission since its creation etc has been a results oriented organisation working closely with government agencies and all segments of the industry to achieve practical objectives first priority was given to makingovernments aware of the importance of tourism in their national economies whichad been deeply disturbed by world war ii that is why etc has alwaysupported an international coperation a collective action and the building of a european solidarity constitution henringrand france the first chairman of thetc had settled the basic principles for its operations the second one arthur haulot belgium drafted in its official statutes in accordance withe belgium lawhen the commission was transferred to dublin with timothy o driscoll as chairman these statutes remained the only legal constitution of thetc new statutes were drafted in when theadquarters were transferred to paris under the chairmanship of walter leu switzerland in when thetc moved to brussels a new version was adopted to the belgian legislation under the chairman walter leu switzerland constitution was modified and adopted athe general meeting n following the law membership in the original membership of theuropean travel commission was countries athatimeastern european countries members of iuoto were invited to participate none of these countries accepted apparently due to political reasons germanyugoslavia maltand cyprus joined the commission a few years later mission etc sees itself as a virtual organisation marketing europe as a tourist destination in global markets primarily by means of the internethe three principal focuses of the commission s work arelectronic marketing market intelligence and operational excellencetc seeks to provide added value to members by encouraging exchange of information and management expertise and promoting awareness abouthe role played by national tourism organisations organisation and budgethe members elect a presidenthree vice presidents a board of directors a chairman of the market intelligence group and a chairman of the marketing network forevolving two years terms etc is entirely financed by members contributions calculated according to a set of agreed criteriadditional financial support for specificampaigns is raised overseas long standing local industry support for etc s activities is proof its credibility in the field etc is registered in belgium as an association internationale sans but lucratif or aisbl a non profit making international association overseas the representatives of the overseas offices of theuropeanational tourism organisations operating in the various long haul markets join together to form an etc operations group and elect a chairman they decide on a programme of joint activities for the promotion of europe for the year ahead propose a budget and seek local industry support in europe this programme isubmitted for approval to etc s members in europe who meetwice a year in spring and autumn for a general meeting activities etcurrently promotes and markets destination europe around the world through its operations groups in the united states canadasia chinand latin america brazil etc also plans to extend its activities tother emerging marketsuch as indiand russia vital to etc activities are its market intelligence group and e marketing network the market intelligence group commissions and produces market intelligence studies handbooks on methodologies and best practice and facilitates thexchange of european tourism statistics on tourmis the marketing network provides information and expertise abouthe use of digital media by national tourism organisations produces thetc digital and organises an e business academy once a year the work of all operations groups is carried out by experts fromember ntos visiteuropecom is the official website of theuropean travel commission etc markets europe as tourist destination behalf of its member countries under a pair of soaring wings a symbol of travel andiscovery deeply rooted in europe s myths and history visiteuropecom brings thexcitement of a european vacation to potential guests around the world with localised versions in a number of major languages the content of visiteuropecom is brought jointly by etc and the national tourism organisationsee also association of special fares agents european distance and e learning network externalinks european travel commission etc digital tourmis category non profit organisations based in europe category organizations established in category tourism agencies category tourism in europe","main_words":["theuropean","travel","commission","etc","international","organisation","responsible","promotion","europe","tourist_destination","members","national_tourism_organisations","thirty","three","members","including","european","union","member_states","well","iceland","monaco","montenegro","norway","san","marino","serbia","switzerland","turkey","sovereign","states","europe","full","membership","theuropean","travel","commission","regional","cross_border","organizations","tourism_related","bodies","may","join","associate","members","theuropean","travel","commission","neither","part","theuropean","institution","theuropean_union","history","etc","established","norway","world_war","world_war","ii","europe","became","aware","importance","tourism","thestablishment","rapidly","led","creation","international","union","official","tourist","publicity","organizations","first","mission","launch","joint","publicity","europe","calling","union","became","international","union","official","travel","organisations","iuoto","today","known","world_tourism","organization","wto","first","general_assembly","iuoto","adopted","principle","regional","commissions","european_countries","countries","decided","establish","first","commission","since","creation","etc","results","oriented","organisation","working","closely","government_agencies","segments","industry","achieve","practical","objectives","first","priority","given","aware","importance","tourism","national","economies","whichad","deeply","disturbed","world_war","ii","etc","international","collective","action","building","european","solidarity","constitution","france","first","chairman","thetc","settled","basic","principles","operations","second","one","arthur","belgium","official","statutes","accordance","withe","belgium","commission","transferred","dublin","timothy","chairman","statutes","remained","legal","constitution","thetc","new","statutes","theadquarters","transferred","paris","walter","switzerland","thetc","moved","brussels","new","version","adopted","belgian","legislation","chairman","walter","switzerland","constitution","modified","adopted","athe","general","meeting","n","following","law","membership","original","membership","theuropean","travel","commission","countries","european_countries","members","iuoto","invited","participate","none","countries","accepted","apparently","due","political","reasons","cyprus","joined","commission","years_later","mission","etc","sees","virtual","organisation","marketing","europe","tourist_destination","global","markets","primarily","means","internethe","three","principal","focuses","commission","work","marketing","market","intelligence","operational","seeks","provide","added","value","members","encouraging","exchange","information","management","expertise","promoting","awareness","abouthe","role","played","national_tourism_organisations","organisation","budgethe","members","vice_presidents","board","directors","chairman","market","intelligence","group","chairman","marketing","network","two_years","terms","etc","entirely","financed","members","contributions","calculated","according","set","agreed","financial","support","raised","overseas","long","standing","local","industry","support","etc","activities","proof","credibility","field","etc","registered","belgium","non_profit","making","international_association","overseas","representatives","overseas","offices","operating","various","long_haul","markets","join","together","form","etc","operations","group","chairman","decide","programme","joint","activities","promotion","europe","year","ahead","propose","budget","seek","local","industry","support","europe","programme","approval","etc","members","europe","year","spring","autumn","general","meeting","activities","promotes","markets","destination","europe","around","world","operations","groups","united_states","chinand","latin_america","brazil","etc","also","plans","extend","activities","tother","emerging","marketsuch","indiand","russia","vital","etc","activities","market","intelligence","group","e","marketing","network","market","intelligence","group","commissions","produces","market","intelligence","studies","handbooks","best","practice","facilitates","thexchange","european","tourism","statistics","marketing","network","provides_information","expertise","abouthe","use","digital","media","national_tourism_organisations","produces","thetc","digital","e","business","academy","year","work","operations","groups","carried","experts","official_website","theuropean","travel","commission","etc","markets","europe","tourist_destination","behalf","member_countries","pair","soaring","wings","symbol","travel","deeply","rooted","europe","myths","history","brings","european","vacation","potential","guests","around","world","versions","number","major","languages","content","brought","jointly","etc","national_tourism","also","association","special","fares","agents","european","distance","e","learning","network","externalinks","european_travel","commission","etc","digital","category_non_profit","organisations_based","established","category_tourism","agencies_category_tourism","europe"],"clean_bigrams":[["theuropean","travel"],["travel","commission"],["commission","etc"],["international","organisation"],["organisation","responsible"],["tourist","destination"],["national","tourism"],["tourism","organisations"],["thirty","three"],["three","members"],["members","including"],["including","european"],["european","union"],["member","states"],["iceland","monaco"],["monaco","montenegro"],["montenegro","norway"],["norway","san"],["san","marino"],["marino","serbia"],["serbia","switzerland"],["switzerland","turkey"],["national","tourism"],["tourism","organizations"],["sovereign","states"],["full","membership"],["theuropean","travel"],["travel","commission"],["commission","regional"],["regional","cross"],["cross","border"],["border","organizations"],["tourism","related"],["related","bodies"],["bodies","may"],["may","join"],["join","associate"],["associate","members"],["members","theuropean"],["theuropean","travel"],["travel","commission"],["neither","part"],["theuropean","union"],["union","history"],["history","etc"],["world","war"],["world","war"],["war","ii"],["ii","europe"],["europe","became"],["became","aware"],["tourism","thestablishment"],["national","tourism"],["tourism","organizations"],["organizations","rapidly"],["rapidly","led"],["international","union"],["union","official"],["official","tourist"],["tourist","publicity"],["publicity","organizations"],["first","mission"],["joint","publicity"],["europe","calling"],["union","became"],["international","union"],["union","official"],["official","travel"],["travel","organisations"],["organisations","iuoto"],["today","known"],["world","tourism"],["tourism","organization"],["organization","wto"],["first","general"],["general","assembly"],["iuoto","adopted"],["regional","commissions"],["commissions","european"],["european","countries"],["countries","decided"],["commission","since"],["creation","etc"],["results","oriented"],["oriented","organisation"],["organisation","working"],["working","closely"],["government","agencies"],["achieve","practical"],["practical","objectives"],["objectives","first"],["first","priority"],["national","economies"],["economies","whichad"],["deeply","disturbed"],["world","war"],["war","ii"],["collective","action"],["european","solidarity"],["solidarity","constitution"],["first","chairman"],["basic","principles"],["second","one"],["one","arthur"],["official","statutes"],["accordance","withe"],["withe","belgium"],["statutes","remained"],["legal","constitution"],["thetc","new"],["new","statutes"],["thetc","moved"],["new","version"],["belgian","legislation"],["chairman","walter"],["switzerland","constitution"],["adopted","athe"],["athe","general"],["general","meeting"],["meeting","n"],["n","following"],["law","membership"],["original","membership"],["theuropean","travel"],["travel","commission"],["european","countries"],["countries","members"],["participate","none"],["countries","accepted"],["accepted","apparently"],["apparently","due"],["political","reasons"],["cyprus","joined"],["years","later"],["later","mission"],["mission","etc"],["etc","sees"],["virtual","organisation"],["organisation","marketing"],["marketing","europe"],["tourist","destination"],["global","markets"],["markets","primarily"],["internethe","three"],["three","principal"],["principal","focuses"],["marketing","market"],["market","intelligence"],["provide","added"],["added","value"],["encouraging","exchange"],["management","expertise"],["promoting","awareness"],["awareness","abouthe"],["abouthe","role"],["role","played"],["national","tourism"],["tourism","organisations"],["organisations","organisation"],["budgethe","members"],["vice","presidents"],["market","intelligence"],["intelligence","group"],["marketing","network"],["two","years"],["years","terms"],["terms","etc"],["entirely","financed"],["members","contributions"],["contributions","calculated"],["calculated","according"],["financial","support"],["raised","overseas"],["overseas","long"],["long","standing"],["standing","local"],["local","industry"],["industry","support"],["etc","activities"],["field","etc"],["association","internationale"],["non","profit"],["profit","making"],["making","international"],["international","association"],["association","overseas"],["overseas","offices"],["tourism","organisations"],["organisations","operating"],["various","long"],["long","haul"],["haul","markets"],["markets","join"],["join","together"],["etc","operations"],["operations","group"],["joint","activities"],["year","ahead"],["ahead","propose"],["seek","local"],["local","industry"],["industry","support"],["general","meeting"],["meeting","activities"],["markets","destination"],["destination","europe"],["europe","around"],["operations","groups"],["united","states"],["chinand","latin"],["latin","america"],["america","brazil"],["brazil","etc"],["etc","also"],["also","plans"],["activities","tother"],["tother","emerging"],["emerging","marketsuch"],["indiand","russia"],["russia","vital"],["etc","activities"],["market","intelligence"],["intelligence","group"],["e","marketing"],["marketing","network"],["market","intelligence"],["intelligence","group"],["group","commissions"],["produces","market"],["market","intelligence"],["intelligence","studies"],["studies","handbooks"],["best","practice"],["facilitates","thexchange"],["european","tourism"],["tourism","statistics"],["marketing","network"],["network","provides"],["provides","information"],["expertise","abouthe"],["abouthe","use"],["digital","media"],["national","tourism"],["tourism","organisations"],["organisations","produces"],["produces","thetc"],["thetc","digital"],["e","business"],["business","academy"],["operations","groups"],["official","website"],["theuropean","travel"],["travel","commission"],["commission","etc"],["etc","markets"],["markets","europe"],["tourist","destination"],["destination","behalf"],["member","countries"],["soaring","wings"],["deeply","rooted"],["european","vacation"],["potential","guests"],["guests","around"],["major","languages"],["brought","jointly"],["national","tourism"],["also","association"],["special","fares"],["fares","agents"],["agents","european"],["european","distance"],["e","learning"],["learning","network"],["network","externalinks"],["externalinks","european"],["european","travel"],["travel","commission"],["commission","etc"],["etc","digital"],["category","non"],["non","profit"],["profit","organisations"],["organisations","based"],["europe","category"],["category","organizations"],["organizations","established"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"]],"all_collocations":["theuropean travel","travel commission","commission etc","international organisation","organisation responsible","tourist destination","national tourism","tourism organisations","thirty three","three members","members including","including european","european union","member states","iceland monaco","monaco montenegro","montenegro norway","norway san","san marino","marino serbia","serbia switzerland","switzerland turkey","national tourism","tourism organizations","sovereign states","full membership","theuropean travel","travel commission","commission regional","regional cross","cross border","border organizations","tourism related","related bodies","bodies may","may join","join associate","associate members","members theuropean","theuropean travel","travel commission","neither part","theuropean union","union history","history etc","world war","world war","war ii","ii europe","europe became","became aware","tourism thestablishment","national tourism","tourism organizations","organizations rapidly","rapidly led","international union","union official","official tourist","tourist publicity","publicity organizations","first mission","joint publicity","europe calling","union became","international union","union official","official travel","travel organisations","organisations iuoto","today known","world tourism","tourism organization","organization wto","first general","general assembly","iuoto adopted","regional commissions","commissions european","european countries","countries decided","commission since","creation etc","results oriented","oriented organisation","organisation working","working closely","government agencies","achieve practical","practical objectives","objectives first","first priority","national economies","economies whichad","deeply disturbed","world war","war ii","collective action","european solidarity","solidarity constitution","first chairman","basic principles","second one","one arthur","official statutes","accordance withe","withe belgium","statutes remained","legal constitution","thetc new","new statutes","thetc moved","new version","belgian legislation","chairman walter","switzerland constitution","adopted athe","athe general","general meeting","meeting n","n following","law membership","original membership","theuropean travel","travel commission","european countries","countries members","participate none","countries accepted","accepted apparently","apparently due","political reasons","cyprus joined","years later","later mission","mission etc","etc sees","virtual organisation","organisation marketing","marketing europe","tourist destination","global markets","markets primarily","internethe three","three principal","principal focuses","marketing market","market intelligence","provide added","added value","encouraging exchange","management expertise","promoting awareness","awareness abouthe","abouthe role","role played","national tourism","tourism organisations","organisations organisation","budgethe members","vice presidents","market intelligence","intelligence group","marketing network","two years","years terms","terms etc","entirely financed","members contributions","contributions calculated","calculated according","financial support","raised overseas","overseas long","long standing","standing local","local industry","industry support","etc activities","field etc","association internationale","non profit","profit making","making international","international association","association overseas","overseas offices","tourism organisations","organisations operating","various long","long haul","haul markets","markets join","join together","etc operations","operations group","joint activities","year ahead","ahead propose","seek local","local industry","industry support","general meeting","meeting activities","markets destination","destination europe","europe around","operations groups","united states","chinand latin","latin america","america brazil","brazil etc","etc also","also plans","activities tother","tother emerging","emerging marketsuch","indiand russia","russia vital","etc activities","market intelligence","intelligence group","e marketing","marketing network","market intelligence","intelligence group","group commissions","produces market","market intelligence","intelligence studies","studies handbooks","best practice","facilitates thexchange","european tourism","tourism statistics","marketing network","network provides","provides information","expertise abouthe","abouthe use","digital media","national tourism","tourism organisations","organisations produces","produces thetc","thetc digital","e business","business academy","operations groups","official website","theuropean travel","travel commission","commission etc","etc markets","markets europe","tourist destination","destination behalf","member countries","soaring wings","deeply rooted","european vacation","potential guests","guests around","major languages","brought jointly","national tourism","also association","special fares","fares agents","agents european","european distance","e learning","learning network","network externalinks","externalinks european","european travel","travel commission","commission etc","etc digital","category non","non profit","profit organisations","organisations based","europe category","category organizations","organizations established","category tourism","tourism agencies","agencies category","category tourism"],"new_description":"theuropean travel commission etc international organisation responsible promotion europe tourist_destination members national_tourism_organisations thirty three members including european union member_states well iceland monaco montenegro norway san marino serbia switzerland turkey national_tourism_organizations sovereign states europe full membership theuropean travel commission regional cross_border organizations tourism_related bodies may join associate members theuropean travel commission neither part theuropean institution theuropean_union history etc established norway world_war world_war ii europe became aware importance tourism thestablishment national_tourism_organizations rapidly led creation international union official tourist publicity organizations first mission launch joint publicity europe calling union became international union official travel organisations iuoto today known world_tourism organization wto first general_assembly iuoto adopted principle regional commissions european_countries countries decided establish first commission since creation etc results oriented organisation working closely government_agencies segments industry achieve practical objectives first priority given aware importance tourism national economies whichad deeply disturbed world_war ii etc international collective action building european solidarity constitution france first chairman thetc settled basic principles operations second one arthur belgium official statutes accordance withe belgium commission transferred dublin timothy chairman statutes remained legal constitution thetc new statutes theadquarters transferred paris walter switzerland thetc moved brussels new version adopted belgian legislation chairman walter switzerland constitution modified adopted athe general meeting n following law membership original membership theuropean travel commission countries european_countries members iuoto invited participate none countries accepted apparently due political reasons cyprus joined commission years_later mission etc sees virtual organisation marketing europe tourist_destination global markets primarily means internethe three principal focuses commission work marketing market intelligence operational seeks provide added value members encouraging exchange information management expertise promoting awareness abouthe role played national_tourism_organisations organisation budgethe members vice_presidents board directors chairman market intelligence group chairman marketing network two_years terms etc entirely financed members contributions calculated according set agreed financial support raised overseas long standing local industry support etc activities proof credibility field etc registered belgium association_internationale non_profit making international_association overseas representatives overseas offices tourism_organisations operating various long_haul markets join together form etc operations group chairman decide programme joint activities promotion europe year ahead propose budget seek local industry support europe programme approval etc members europe year spring autumn general meeting activities promotes markets destination europe around world operations groups united_states chinand latin_america brazil etc also plans extend activities tother emerging marketsuch indiand russia vital etc activities market intelligence group e marketing network market intelligence group commissions produces market intelligence studies handbooks best practice facilitates thexchange european tourism statistics marketing network provides_information expertise abouthe use digital media national_tourism_organisations produces thetc digital e business academy year work operations groups carried experts official_website theuropean travel commission etc markets europe tourist_destination behalf member_countries pair soaring wings symbol travel deeply rooted europe myths history brings european vacation potential guests around world versions number major languages content brought jointly etc national_tourism also association special fares agents european distance e learning network externalinks european_travel commission etc digital category_non_profit organisations_based europe_category_organizations established category_tourism agencies_category_tourism europe"},{"title":"Excursion","description":"imagexcursion the sls e rr c jpg thumb upright an excursion outside seattle circan excursion is a trip by a group of people usually made for leisureducation or physical exercise physical purposes it is often an adjuncto a longer journey or visito a place sometimes for other typically work related purposes public transportation companies issue reduced pricexcursion tickets to attract business of this type often these tickets arestricted toff peak days or times for the destination concerned short excursions for education or for observations of natural phenomenare called field trip s one day educational field studies are often made by classes as extracurricular exercises eg to visit a natural or geographical feature the term is also used for short military movements into foreign territory without a formal announcement of war an example of this use in a newseek article see also business trip field tripicnic escorted toureferences category types of tourism","main_words":["e","c","jpg","thumb","upright","excursion","outside","seattle","excursion","trip","group","people","usually_made","physical","exercise","physical","purposes","often","longer","journey","visito","place","sometimes","typically","work","related","purposes","public_transportation","companies","issue","reduced","tickets","attract","business","type","often","tickets","peak","days","times","destination","concerned","short","excursions","education","observations","natural","called","field","trip","one_day","educational","field","studies","often","made","classes","exercises","visit","natural","geographical","feature","term","also_used","short","military","movements","foreign","territory","without","formal","announcement","war","example","use","article","see_also","business","trip","field","escorted","category_types","tourism"],"clean_bigrams":[["c","jpg"],["jpg","thumb"],["thumb","upright"],["excursion","outside"],["outside","seattle"],["people","usually"],["usually","made"],["physical","exercise"],["exercise","physical"],["physical","purposes"],["longer","journey"],["place","sometimes"],["typically","work"],["work","related"],["related","purposes"],["purposes","public"],["public","transportation"],["transportation","companies"],["companies","issue"],["issue","reduced"],["attract","business"],["type","often"],["peak","days"],["destination","concerned"],["concerned","short"],["short","excursions"],["called","field"],["field","trip"],["one","day"],["day","educational"],["educational","field"],["field","studies"],["often","made"],["geographical","feature"],["also","used"],["short","military"],["military","movements"],["foreign","territory"],["territory","without"],["formal","announcement"],["article","see"],["see","also"],["also","business"],["business","trip"],["trip","field"],["category","types"]],"all_collocations":["c jpg","excursion outside","outside seattle","people usually","usually made","physical exercise","exercise physical","physical purposes","longer journey","place sometimes","typically work","work related","related purposes","purposes public","public transportation","transportation companies","companies issue","issue reduced","attract business","type often","peak days","destination concerned","concerned short","short excursions","called field","field trip","one day","day educational","educational field","field studies","often made","geographical feature","also used","short military","military movements","foreign territory","territory without","formal announcement","article see","see also","also business","business trip","trip field","category types"],"new_description":"e c jpg thumb upright excursion outside seattle excursion trip group people usually_made physical exercise physical purposes often longer journey visito place sometimes typically work related purposes public_transportation companies issue reduced tickets attract business type often tickets peak days times destination concerned short excursions education observations natural called field trip one_day educational field studies often made classes exercises visit natural geographical feature term also_used short military movements foreign territory without formal announcement war example use article see_also business trip field escorted category_types tourism"},{"title":"Executive Travel","description":"finaldate company country based language website issn oclc executive travel magazine was an united states american bimonthly magazine published inew york city by time inc the magazine launched in may was published times a year geared toward upscalexecutives the magazine covered relevantopics on business travel and affluent lifestyle it offered exclusive reach to american express corporate platinum cardmembers the publication was initially released by american express publishing but wasold on october to time inc on february time inc announced that it was to cease publishing the magazine the final issue was the december january issuexternalinks category establishments inew york category disestablishments inew york category american business magazines category american bi monthly magazines category american express category defunct magazines of the united states category magazinestablished in category magazines disestablished in category magazines published inew york city category tourismagazines","main_words":["finaldate","company","country","based","language","website_issn_oclc","executive","travel_magazine","united_states","american","bimonthly","time","inc","magazine","launched","may","published","times","year","geared","toward","magazine","covered","business_travel","affluent","lifestyle","offered","exclusive","reach","american_express","corporate","platinum","publication","initially","released","american_express","publishing","wasold","october","time","inc","february","time","inc","announced","cease","publishing","magazine","final","issue","december","january","category_establishments","inew_york","category_disestablishments","inew_york","category_american","business","magazines_category","american_monthly_magazines_category","american_express","category_defunct","magazines","united_states","category_magazinestablished","category_magazines","disestablished","category_magazines_published","inew_york_city","category_tourismagazines"],"clean_bigrams":[["finaldate","company"],["company","country"],["country","based"],["based","language"],["language","website"],["website","issn"],["issn","oclc"],["oclc","executive"],["executive","travel"],["travel","magazine"],["united","states"],["states","american"],["american","bimonthly"],["bimonthly","magazine"],["magazine","published"],["published","inew"],["inew","york"],["york","city"],["time","inc"],["magazine","launched"],["published","times"],["year","geared"],["geared","toward"],["magazine","covered"],["business","travel"],["affluent","lifestyle"],["offered","exclusive"],["exclusive","reach"],["american","express"],["express","corporate"],["corporate","platinum"],["initially","released"],["american","express"],["express","publishing"],["time","inc"],["february","time"],["time","inc"],["inc","announced"],["cease","publishing"],["final","issue"],["december","january"],["category","establishments"],["establishments","inew"],["inew","york"],["york","category"],["category","disestablishments"],["disestablishments","inew"],["inew","york"],["york","category"],["category","american"],["american","business"],["business","magazines"],["magazines","category"],["category","american"],["monthly","magazines"],["magazines","category"],["category","american"],["american","express"],["express","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","magazines"],["magazines","published"],["published","inew"],["inew","york"],["york","city"],["city","category"],["category","tourismagazines"]],"all_collocations":["finaldate company","company country","country based","based language","language website","website issn","issn oclc","oclc executive","executive travel","travel magazine","united states","states american","american bimonthly","bimonthly magazine","magazine published","published inew","inew york","york city","time inc","magazine launched","published times","year geared","geared toward","magazine covered","business travel","affluent lifestyle","offered exclusive","exclusive reach","american express","express corporate","corporate platinum","initially released","american express","express publishing","time inc","february time","time inc","inc announced","cease publishing","final issue","december january","category establishments","establishments inew","inew york","york category","category disestablishments","disestablishments inew","inew york","york category","category american","american business","business magazines","magazines category","category american","monthly magazines","magazines category","category american","american express","express category","category defunct","defunct magazines","united states","states category","category magazinestablished","category magazines","magazines disestablished","category magazines","magazines published","published inew","inew york","york city","city category","category tourismagazines"],"new_description":"finaldate company country based language website_issn_oclc executive travel_magazine united_states american bimonthly magazine_published_inew_york_city time inc magazine launched may published times year geared toward magazine covered business_travel affluent lifestyle offered exclusive reach american_express corporate platinum publication initially released american_express publishing wasold october time inc february time inc announced cease publishing magazine final issue december january category_establishments inew_york category_disestablishments inew_york category_american business magazines_category american_monthly_magazines_category american_express category_defunct magazines united_states category_magazinestablished category_magazines disestablished category_magazines_published inew_york_city category_tourismagazines"},{"title":"Experiential travel","description":"experiential travel also known as immersion travel is a form of tourism in which people focus on experiencing a country city or particular place by connecting to its history people and culture new york times new frontier for tourists your home therewithe concept is based on very similar mechanisms as for examplexperiential education experiential knowledgexperiential interior design and experiential marketing experiential travel can emphasize different areas of localife culinary culture history shopping nature or socialife washington post coming and going new hotel booking site travel trends and more news and can therewith be the basis for a holistic travel experience the goal is to more deeply understand a travel destination s culture people and history by connecting with it more than just by visiting itherefore the traveller usually gets in touch with locals who give guidance how to experience a place weekly travel african safaris as experiential as it gets this can be a friend an accommodation host or another person the term experiential travel is already mentioned in books and publications from google books insights in strategic retail management however it was discovered as a meaningful marketrend in see also cultural tourism category tourism","main_words":["experiential","travel","also_known","immersion","travel","form","tourism","people","focus","experiencing","country","city","particular","place","connecting","history","people","culture","new_york","times","new","frontier","tourists","home","concept","based","similar","mechanisms","education","experiential","interior","design","experiential","marketing","experiential","travel","emphasize","different","areas","culinary","culture","history","shopping","nature","socialife","washington_post","coming","going","new","hotel","booking","site","travel","trends","news","basis","holistic","travel","experience","goal","deeply","understand","travel_destination","culture","people","history","connecting","visiting","traveller","usually","gets","touch","locals","give","guidance","experience","place","weekly","travel","african","safaris","experiential","gets","friend","accommodation","host","another","person","term","experiential","travel","already","mentioned","google_books","insights","strategic","retail","management","however","discovered","meaningful","see_also","cultural_tourism","category_tourism"],"clean_bigrams":[["experiential","travel"],["travel","also"],["also","known"],["immersion","travel"],["people","focus"],["country","city"],["particular","place"],["history","people"],["culture","new"],["new","york"],["york","times"],["times","new"],["new","frontier"],["similar","mechanisms"],["education","experiential"],["interior","design"],["experiential","marketing"],["marketing","experiential"],["experiential","travel"],["emphasize","different"],["different","areas"],["culinary","culture"],["culture","history"],["history","shopping"],["shopping","nature"],["socialife","washington"],["washington","post"],["post","coming"],["going","new"],["new","hotel"],["hotel","booking"],["booking","site"],["site","travel"],["travel","trends"],["holistic","travel"],["travel","experience"],["deeply","understand"],["travel","destination"],["culture","people"],["traveller","usually"],["usually","gets"],["give","guidance"],["place","weekly"],["weekly","travel"],["travel","african"],["african","safaris"],["accommodation","host"],["another","person"],["term","experiential"],["experiential","travel"],["already","mentioned"],["google","books"],["books","insights"],["strategic","retail"],["retail","management"],["management","however"],["see","also"],["also","cultural"],["cultural","tourism"],["tourism","category"],["category","tourism"]],"all_collocations":["experiential travel","travel also","also known","immersion travel","people focus","country city","particular place","history people","culture new","new york","york times","times new","new frontier","similar mechanisms","education experiential","interior design","experiential marketing","marketing experiential","experiential travel","emphasize different","different areas","culinary culture","culture history","history shopping","shopping nature","socialife washington","washington post","post coming","going new","new hotel","hotel booking","booking site","site travel","travel trends","holistic travel","travel experience","deeply understand","travel destination","culture people","traveller usually","usually gets","give guidance","place weekly","weekly travel","travel african","african safaris","accommodation host","another person","term experiential","experiential travel","already mentioned","google books","books insights","strategic retail","retail management","management however","see also","also cultural","cultural tourism","tourism category","category tourism"],"new_description":"experiential travel also_known immersion travel form tourism people focus experiencing country city particular place connecting history people culture new_york times new frontier tourists home concept based similar mechanisms education experiential interior design experiential marketing experiential travel emphasize different areas culinary culture history shopping nature socialife washington_post coming going new hotel booking site travel trends news basis holistic travel experience goal deeply understand travel_destination culture people history connecting visiting traveller usually gets touch locals give guidance experience place weekly travel african safaris experiential gets friend accommodation host another person term experiential travel already mentioned books_publications google_books insights strategic retail management however discovered meaningful see_also cultural_tourism category_tourism"},{"title":"Experimental travel","description":"experimental tourism is a novel approach tourism in which visitors do not visithe ordinary tourist attraction s or at least not withe ordinary approach but allowhim to guide them it is an alternative form of tourism in which destinations are chosenot on their standard touristic merit but on the basis of an idea or experiment it often involves elements of humor serendipity and randomness chance there are a number of approaches to experimental tourism aerotourism in which a tourist visits the local airport and explores it without going anywhere alphatourism in which a tourist finds the firstreet alphabetically on a map and the lastreet alphabetically draws a straight line or any other figure they desire between them and walk the path between the two points alternating travel in which a tourist leaves their front door turns righturns left athe next intersection turns right athe next and son alternating each direction until they are unable to continue because of an obstruction blindfolded tourism or cecitourism in which a blindfolded tourist is escorted through the city by a guide contretourism in which a tourist visits a famous tourist site buturns their back on the site and takes photos of or just examines the view from that direction erotourism in which a couple travelseparately to the same city and then tries to find each other monopolytourism in which a touristakes the local version of a monopoly game monopoly board withem and visits places on the board as determined by a roll of the dice nyctalotourism in which the tourist only visits tourist attractions between dusk andawn sagittatourism in which a person throws an arrow often a dart arrow on a map and travel s to the location geography place the arrow hit on the map other ideas do not have particular names touring a home town stay at a youthostel backpacking travel backpack through town meet new people do not go home until the vacation is over taking a map of the town being visited selecting a randomap grid and exploring every bit of the grid visiting a bar establishment bar asking the bartender where their favorite bar is and whathey drink there visithat bar do the same withe bartender there and continue the concept of experimental travel was developed by writer joel henry the france french director of the laboratory of experimental tourism latourex in lonely planet published the lonely planet guide to experimental travel which formalised andeveloped many of henry s ideasee also experiential travel adventure travel externalinks latourex website in english cnn experimental tourism catches on the observer ideas to turn travel on its head experimental travelonely planet online sheffield laboratory of experimental travel joel henry dean of experimental travel category types of tourism category adventure travel category conceptual art","main_words":["experimental","tourism","novel","approach","tourism","visitors","visithe","ordinary","tourist_attraction","least","withe","ordinary","approach","guide","alternative","form","tourism_destinations","standard","touristic","merit","basis","idea","experiment","often","involves","elements","humor","chance","number","approaches","experimental","tourism","tourist","visits","local","airport","explores","without","going","anywhere","tourist","finds","map","draws","straight","line","figure","desire","walk","path","two","points","alternating","travel","tourist","leaves","front","door","turns","left","athe","next","intersection","turns","right","athe","next","son","alternating","direction","unable","continue","blindfolded","tourism","blindfolded","tourist","escorted","city_guide","tourist","visits","famous","tourist","site","back","site","takes","photos","view","direction","couple","city","tries","find","local","version","monopoly","game","monopoly","board","withem","visits","places","board","determined","roll","tourist","visits","tourist_attractions","person","arrow","often","dart","arrow","map","travel","location","geography","place","arrow","hit","map","ideas","particular","names","touring","home","town","stay","youthostel","backpacking_travel","backpack","town","meet","new","people","go","home","vacation","taking","map","town","visited","selecting","grid","exploring","every","bit","grid","visiting","bar_establishment_bar","asking","bartender","favorite","bar","whathey","drink","bar","withe","bartender","continue","concept","experimental","travel","developed","writer","henry","france","french","director","laboratory","experimental","tourism","lonely_planet","published","lonely_planet","guide","experimental","travel","andeveloped","many","henry","also","experiential","travel_adventure_travel","externalinks","website","english","cnn","experimental","tourism","catches","observer","ideas","turn","travel","head","experimental","planet","online","sheffield","laboratory","experimental","travel","henry","dean","experimental","travel_category","types","tourism_category","adventure_travel_category","conceptual","art"],"clean_bigrams":[["experimental","tourism"],["novel","approach"],["approach","tourism"],["visithe","ordinary"],["ordinary","tourist"],["tourist","attraction"],["withe","ordinary"],["ordinary","approach"],["alternative","form"],["standard","touristic"],["touristic","merit"],["often","involves"],["involves","elements"],["experimental","tourism"],["tourist","visits"],["local","airport"],["without","going"],["going","anywhere"],["tourist","finds"],["straight","line"],["two","points"],["points","alternating"],["alternating","travel"],["tourist","leaves"],["front","door"],["door","turns"],["left","athe"],["athe","next"],["next","intersection"],["intersection","turns"],["turns","right"],["right","athe"],["athe","next"],["son","alternating"],["blindfolded","tourism"],["blindfolded","tourist"],["tourist","visits"],["famous","tourist"],["tourist","site"],["takes","photos"],["local","version"],["monopoly","game"],["game","monopoly"],["monopoly","board"],["board","withem"],["visits","places"],["tourist","visits"],["visits","tourist"],["tourist","attractions"],["arrow","often"],["dart","arrow"],["location","geography"],["geography","place"],["arrow","hit"],["particular","names"],["names","touring"],["home","town"],["town","stay"],["youthostel","backpacking"],["backpacking","travel"],["travel","backpack"],["town","meet"],["meet","new"],["new","people"],["go","home"],["visited","selecting"],["exploring","every"],["every","bit"],["grid","visiting"],["bar","establishment"],["establishment","bar"],["bar","asking"],["favorite","bar"],["whathey","drink"],["withe","bartender"],["experimental","travel"],["france","french"],["french","director"],["experimental","tourism"],["lonely","planet"],["planet","published"],["lonely","planet"],["planet","guide"],["experimental","travel"],["andeveloped","many"],["also","experiential"],["experiential","travel"],["travel","adventure"],["adventure","travel"],["travel","externalinks"],["english","cnn"],["cnn","experimental"],["experimental","tourism"],["tourism","catches"],["observer","ideas"],["turn","travel"],["head","experimental"],["planet","online"],["online","sheffield"],["sheffield","laboratory"],["experimental","travel"],["henry","dean"],["experimental","travel"],["travel","category"],["category","types"],["tourism","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","conceptual"],["conceptual","art"]],"all_collocations":["experimental tourism","novel approach","approach tourism","visithe ordinary","ordinary tourist","tourist attraction","withe ordinary","ordinary approach","alternative form","standard touristic","touristic merit","often involves","involves elements","experimental tourism","tourist visits","local airport","without going","going anywhere","tourist finds","straight line","two points","points alternating","alternating travel","tourist leaves","front door","door turns","left athe","athe next","next intersection","intersection turns","turns right","right athe","athe next","son alternating","blindfolded tourism","blindfolded tourist","tourist visits","famous tourist","tourist site","takes photos","local version","monopoly game","game monopoly","monopoly board","board withem","visits places","tourist visits","visits tourist","tourist attractions","arrow often","dart arrow","location geography","geography place","arrow hit","particular names","names touring","home town","town stay","youthostel backpacking","backpacking travel","travel backpack","town meet","meet new","new people","go home","visited selecting","exploring every","every bit","grid visiting","bar establishment","establishment bar","bar asking","favorite bar","whathey drink","withe bartender","experimental travel","france french","french director","experimental tourism","lonely planet","planet published","lonely planet","planet guide","experimental travel","andeveloped many","also experiential","experiential travel","travel adventure","adventure travel","travel externalinks","english cnn","cnn experimental","experimental tourism","tourism catches","observer ideas","turn travel","head experimental","planet online","online sheffield","sheffield laboratory","experimental travel","henry dean","experimental travel","travel category","category types","tourism category","category adventure","adventure travel","travel category","category conceptual","conceptual art"],"new_description":"experimental tourism novel approach tourism visitors visithe ordinary tourist_attraction least withe ordinary approach guide alternative form tourism_destinations standard touristic merit basis idea experiment often involves elements humor chance number approaches experimental tourism tourist visits local airport explores without going anywhere tourist finds map draws straight line figure desire walk path two points alternating travel tourist leaves front door turns left athe next intersection turns right athe next son alternating direction unable continue blindfolded tourism blindfolded tourist escorted city_guide tourist visits famous tourist site back site takes photos view direction couple city tries find local version monopoly game monopoly board withem visits places board determined roll tourist visits tourist_attractions person arrow often dart arrow map travel location geography place arrow hit map ideas particular names touring home town stay youthostel backpacking_travel backpack town meet new people go home vacation taking map town visited selecting grid exploring every bit grid visiting bar_establishment_bar asking bartender favorite bar whathey drink bar withe bartender continue concept experimental travel developed writer henry france french director laboratory experimental tourism lonely_planet published lonely_planet guide experimental travel andeveloped many henry also experiential travel_adventure_travel externalinks website english cnn experimental tourism catches observer ideas turn travel head experimental planet online sheffield laboratory experimental travel henry dean experimental travel_category types tourism_category adventure_travel_category conceptual art"},{"title":"Extreme tourism","description":"image junglejpg thumb px an area of the sierre madre jungle image bill s bungy jumpjpg thumb right px upright bungee jumping off the victoria falls bridge in zambia zimbabwextreme tourism alsoften referred to ashock tourism although both concepts do not appear strictly similar is a niche in the tourism industry involving travel to dangerous places mountain s jungle s desert s cave s canyon s etc or participation in dangerous events extreme tourism overlaps with extreme sporthe two share the main attraction adrenaline rush caused by an element of risk andiffering mostly in the degree of engagement and professionalism while traditional tourism requiresignificant investments in hotels roads etc extreme tourism requires much less to jump start a business in addition to traditional travel based tourism destinations various exotic attractions are suggested such as flyovers in mig s at mach speed mach ice diving in the white sea or travelling across the chernobyl zone some of thextreme tourism famous attractions in the world chernobyl city chernobyl tours ukraine victoria falls tourism in recent yearswimming in the devil s pool in victoria falls zambiand zimbabwe mount huascent routes walking the plank at mount hua china yungas roadeath road tour bolivia green zone baghdad iraq sistema sactun sactun tours riviera maya mexico cave of swallows mexico see also trekking hiking via ferrata canyoning river trekking paragliding bungee jumping skydiving base jumping canoeing rafting scuba diving snorkeling boating urban exploration caving speleology mountaineering skiing snowboarding speed riding storm chasing hypermobility travel exploration externalinks ladyvoyagecom extreme tourism would you darelementmoscowru extreme tourism bbc news russian touristsalute army boot camp category types of tourism category adventure travel","main_words":["image","thumb","px","area","jungle","image","bill","thumb","right","px","upright","bungee","jumping","victoria","falls","bridge","zambia","referred","tourism","although","concepts","appear","strictly","similar","niche","tourism_industry","involving","travel","dangerous_places","mountain","jungle","desert","cave","canyon","etc","participation","dangerous","events","extreme","tourism","extreme","two","share","main","attraction","rush","caused","element","risk","mostly","degree","engagement","professionalism","traditional","tourism","investments","hotels","roads","etc","extreme","tourism","requires","much","less","jump","start","business","addition","traditional","travel","various","exotic","attractions","suggested","mach","speed","mach","ice","diving","white","sea","travelling","across","chernobyl","zone","tourism","famous","attractions","world","chernobyl","city","chernobyl","tours","ukraine","victoria","falls","tourism","recent","devil","pool","victoria","falls","zimbabwe","mount","routes","walking","mount","china","road","tour","bolivia","green","zone","baghdad","iraq","tours","riviera","maya","mexico","cave","mexico","see_also","trekking","hiking","via","river","trekking","paragliding","bungee","jumping","base","jumping","canoeing","rafting","scuba","diving","snorkeling","boating","urban_exploration","caving","mountaineering","skiing","snowboarding","speed_riding","storm","chasing","hypermobility","travel","exploration","externalinks","extreme","tourism","would","extreme","tourism","bbc_news","russian","army","boot","camp","category_types","tourism_category","adventure_travel"],"clean_bigrams":[["thumb","px"],["jungle","image"],["image","bill"],["thumb","right"],["right","px"],["px","upright"],["upright","bungee"],["bungee","jumping"],["victoria","falls"],["falls","bridge"],["tourism","alsoften"],["alsoften","referred"],["tourism","although"],["appear","strictly"],["strictly","similar"],["tourism","industry"],["industry","involving"],["involving","travel"],["dangerous","places"],["places","mountain"],["dangerous","events"],["events","extreme"],["extreme","tourism"],["two","share"],["main","attraction"],["rush","caused"],["traditional","tourism"],["hotels","roads"],["roads","etc"],["etc","extreme"],["extreme","tourism"],["tourism","requires"],["requires","much"],["much","less"],["jump","start"],["traditional","travel"],["travel","based"],["based","tourism"],["tourism","destinations"],["destinations","various"],["various","exotic"],["exotic","attractions"],["mach","speed"],["speed","mach"],["mach","ice"],["ice","diving"],["white","sea"],["travelling","across"],["chernobyl","zone"],["tourism","famous"],["famous","attractions"],["world","chernobyl"],["chernobyl","city"],["city","chernobyl"],["chernobyl","tours"],["tours","ukraine"],["ukraine","victoria"],["victoria","falls"],["falls","tourism"],["victoria","falls"],["zimbabwe","mount"],["routes","walking"],["road","tour"],["tour","bolivia"],["bolivia","green"],["green","zone"],["zone","baghdad"],["baghdad","iraq"],["tours","riviera"],["riviera","maya"],["maya","mexico"],["mexico","cave"],["mexico","see"],["see","also"],["also","trekking"],["trekking","hiking"],["hiking","via"],["river","trekking"],["trekking","paragliding"],["paragliding","bungee"],["bungee","jumping"],["base","jumping"],["jumping","canoeing"],["canoeing","rafting"],["rafting","scuba"],["scuba","diving"],["diving","snorkeling"],["snorkeling","boating"],["boating","urban"],["urban","exploration"],["exploration","caving"],["mountaineering","skiing"],["skiing","snowboarding"],["snowboarding","speed"],["speed","riding"],["riding","storm"],["storm","chasing"],["chasing","hypermobility"],["hypermobility","travel"],["travel","exploration"],["exploration","externalinks"],["extreme","tourism"],["tourism","would"],["extreme","tourism"],["tourism","bbc"],["bbc","news"],["news","russian"],["army","boot"],["boot","camp"],["camp","category"],["category","types"],["tourism","category"],["category","adventure"],["adventure","travel"]],"all_collocations":["jungle image","image bill","px upright","upright bungee","bungee jumping","victoria falls","falls bridge","tourism alsoften","alsoften referred","tourism although","appear strictly","strictly similar","tourism industry","industry involving","involving travel","dangerous places","places mountain","dangerous events","events extreme","extreme tourism","two share","main attraction","rush caused","traditional tourism","hotels roads","roads etc","etc extreme","extreme tourism","tourism requires","requires much","much less","jump start","traditional travel","travel based","based tourism","tourism destinations","destinations various","various exotic","exotic attractions","mach speed","speed mach","mach ice","ice diving","white sea","travelling across","chernobyl zone","tourism famous","famous attractions","world chernobyl","chernobyl city","city chernobyl","chernobyl tours","tours ukraine","ukraine victoria","victoria falls","falls tourism","victoria falls","zimbabwe mount","routes walking","road tour","tour bolivia","bolivia green","green zone","zone baghdad","baghdad iraq","tours riviera","riviera maya","maya mexico","mexico cave","mexico see","see also","also trekking","trekking hiking","hiking via","river trekking","trekking paragliding","paragliding bungee","bungee jumping","base jumping","jumping canoeing","canoeing rafting","rafting scuba","scuba diving","diving snorkeling","snorkeling boating","boating urban","urban exploration","exploration caving","mountaineering skiing","skiing snowboarding","snowboarding speed","speed riding","riding storm","storm chasing","chasing hypermobility","hypermobility travel","travel exploration","exploration externalinks","extreme tourism","tourism would","extreme tourism","tourism bbc","bbc news","news russian","army boot","boot camp","camp category","category types","tourism category","category adventure","adventure travel"],"new_description":"image thumb px area jungle image bill thumb right px upright bungee jumping victoria falls bridge zambia tourism_alsoften referred tourism although concepts appear strictly similar niche tourism_industry involving travel dangerous_places mountain jungle desert cave canyon etc participation dangerous events extreme tourism extreme two share main attraction rush caused element risk mostly degree engagement professionalism traditional tourism investments hotels roads etc extreme tourism requires much less jump start business addition traditional travel based_tourism_destinations various exotic attractions suggested mach speed mach ice diving white sea travelling across chernobyl zone tourism famous attractions world chernobyl city chernobyl tours ukraine victoria falls tourism recent devil pool victoria falls zimbabwe mount routes walking mount china road tour bolivia green zone baghdad iraq tours riviera maya mexico cave mexico see_also trekking hiking via river trekking paragliding bungee jumping base jumping canoeing rafting scuba diving snorkeling boating urban_exploration caving mountaineering skiing snowboarding speed_riding storm chasing hypermobility travel exploration externalinks extreme tourism would extreme tourism bbc_news russian army boot camp category_types tourism_category adventure_travel"},{"title":"Eyewitness Travel Guides","description":"redirect eyewitness books category travel guide books","main_words":["redirect","eyewitness","books_category","travel_guide_books"],"clean_bigrams":[["redirect","eyewitness"],["eyewitness","books"],["books","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["redirect eyewitness","eyewitness books","books category","category travel","travel guide","guide books"],"new_description":"redirect eyewitness books_category travel_guide_books"},{"title":"F*INK","description":"founder founded firstdate company country new zealand basedunedin website issn oclc f ink weekly entertainment guide was a free weekly guide owned by martin keand caroline mccaw it was published each wednesday from february to december from in dunedinew zealand the aim of the guide was to provide free information about events to the local community using cheap one colour printing but with a distinctive design style part of ink s mission wasupport of and collaboration with artist networks bands and musicians including those that grew out of the dunedin sound history in june dunedinew zealand caroline mccaw and martin kean together with allan thommason aka ozibsy published the first issue of ink in response to a lack of entertainment listings for band events andance parties in the usual media outletsuch as the otago daily times f ink was the first of many a sized free paper giguides inew zealand has outlasted many similar guides f ink s reputation as a consistent source of entertainment information meanthat it was popular for more than twelve years f ink has also published articles during its history that documenthe growth of alternative communities in dunedin and otago f ink has published free comics in every issue of ink notably work by indira neville and city of tales by stefaneville and futurians band claytonoone pavement magazine oct nov in f ink publishedunedin maps and arts fashion maps that won support from the dunedin city council visitor centre kevin thompson the visitor centre manager in described the a sized fold up maps as a very good working tool for us evening star dunedin the star sunday june pp an exhibition of ten years of ink issues was hosted by dunedin public libraries in june dunedin public libraries f ink was recommended by two travel books guides lonely planet and rough guides in thedition lonely planet new zealand writes entertainmenthe otago daily times newspaper lists what is on around the city buthe best publication is the free f ink available around town or online at wwwfinknetnz lonely planet new zealand harding p bain c bedford n th edition lonely planet publications pty ltd sydney p the rough guide to new zealand of states for the latest on the dunedin sound check out f ink the freentertainment pamphlet available all around town including the visitor centre or see wwwfinknetnz which keeps track of dunedin s bandsingers and songwriters the rough guide to new zealand the publication wasold in to carmenorgate resurrecting thentertainment guide as ink which was published weekly until otago daily times a festival ofanzines zinefest by shane gilchrist published on sat jul see also dunedin media dunedin media externalinks finknetnz defunct art not in use listing at civicmediacenterorg category city guides category defunct magazines of new zealand category free magazines category independent magazines category magazinestablished in category magazines disestablished in category media in dunedin category new zealand magazines category new zealand weekly magazines","main_words":["founder","founded","firstdate","company","country","new_zealand","website_issn_oclc","f","ink","weekly","entertainment","guide","free","weekly","guide","owned","martin","caroline","published","wednesday","february","december","dunedinew","zealand","aim","guide","provide","free","information","events","local_community","using","cheap","one","colour","printing","distinctive","design","style","part","ink","mission","collaboration","artist","networks","bands","musicians","including","grew","dunedin","sound","history","june","dunedinew","zealand","caroline","martin","together","allan","aka","published","first_issue","ink","response","lack","entertainment","listings","band","events","andance","parties","usual","media","otago","daily","times","f","ink","first","many","sized","free","paper","inew_zealand","many","similar","guides","f","ink","reputation","consistent","source","entertainment","information","meanthat","popular","twelve","years","f","ink","also_published","articles","history","growth","alternative","communities","dunedin","otago","f","ink","published","free","comics","every","issue","ink","notably","work","neville","city","tales","band","pavement","magazine","oct","nov","f","ink","maps","arts","fashion","maps","support","dunedin","city_council","visitor","centre","kevin","thompson","visitor","centre","manager","described","sized","fold","maps","good","working","tool","us","evening","star","dunedin","star","sunday","june","pp","exhibition","ten_years","ink","issues","hosted","dunedin","public","libraries","june","dunedin","public","libraries","f","ink","recommended","two","travel_books","guides","lonely_planet","rough_guides","thedition","lonely_planet","new_zealand","writes","entertainmenthe","otago","daily","times","newspaper","lists","around","city","buthe","best","publication","free","f","ink","available","around","town","online","lonely_planet","new_zealand","harding","p","c","bedford","n","th_edition","lonely_planet","publications","ltd","sydney","p","rough_guide","new_zealand","states","latest","dunedin","sound","check","f","ink","pamphlet","available","around","town","including","visitor","centre","see","keeps","track","dunedin","rough_guide","new_zealand","publication","wasold","thentertainment","guide","ink","published","weekly","otago","daily","times","festival","shane","gilchrist","published","sat","jul","see_also","dunedin","media","dunedin","media","externalinks","defunct","art","use","listing","category_city_guides","category_defunct","magazines","new_zealand","category_free_magazines","category","independent","magazines_category_magazinestablished","category_magazines","disestablished","category_media","dunedin","category_new_zealand","magazines_category","new_zealand","weekly","magazines"],"clean_bigrams":[["founder","founded"],["founded","firstdate"],["firstdate","company"],["company","country"],["country","new"],["new","zealand"],["website","issn"],["issn","oclc"],["oclc","f"],["f","ink"],["ink","weekly"],["weekly","entertainment"],["entertainment","guide"],["free","weekly"],["weekly","guide"],["guide","owned"],["dunedinew","zealand"],["provide","free"],["free","information"],["local","community"],["community","using"],["using","cheap"],["cheap","one"],["one","colour"],["colour","printing"],["distinctive","design"],["design","style"],["style","part"],["artist","networks"],["networks","bands"],["musicians","including"],["dunedin","sound"],["sound","history"],["june","dunedinew"],["dunedinew","zealand"],["zealand","caroline"],["first","issue"],["entertainment","listings"],["band","events"],["events","andance"],["andance","parties"],["usual","media"],["otago","daily"],["daily","times"],["times","f"],["f","ink"],["sized","free"],["free","paper"],["inew","zealand"],["many","similar"],["similar","guides"],["guides","f"],["f","ink"],["consistent","source"],["entertainment","information"],["information","meanthat"],["twelve","years"],["years","f"],["f","ink"],["also","published"],["published","articles"],["alternative","communities"],["otago","f"],["f","ink"],["published","free"],["free","comics"],["every","issue"],["ink","notably"],["notably","work"],["pavement","magazine"],["magazine","oct"],["oct","nov"],["f","ink"],["arts","fashion"],["fashion","maps"],["dunedin","city"],["city","council"],["council","visitor"],["visitor","centre"],["centre","kevin"],["kevin","thompson"],["visitor","centre"],["centre","manager"],["sized","fold"],["good","working"],["working","tool"],["us","evening"],["evening","star"],["star","dunedin"],["star","sunday"],["sunday","june"],["june","pp"],["ten","years"],["ink","issues"],["dunedin","public"],["public","libraries"],["june","dunedin"],["dunedin","public"],["public","libraries"],["libraries","f"],["f","ink"],["two","travel"],["travel","books"],["books","guides"],["guides","lonely"],["lonely","planet"],["rough","guides"],["thedition","lonely"],["lonely","planet"],["planet","new"],["new","zealand"],["zealand","writes"],["writes","entertainmenthe"],["entertainmenthe","otago"],["otago","daily"],["daily","times"],["times","newspaper"],["newspaper","lists"],["city","buthe"],["buthe","best"],["best","publication"],["free","f"],["f","ink"],["ink","available"],["available","around"],["around","town"],["lonely","planet"],["planet","new"],["new","zealand"],["zealand","harding"],["harding","p"],["c","bedford"],["bedford","n"],["n","th"],["th","edition"],["edition","lonely"],["lonely","planet"],["planet","publications"],["ltd","sydney"],["sydney","p"],["rough","guide"],["new","zealand"],["dunedin","sound"],["sound","check"],["f","ink"],["pamphlet","available"],["available","around"],["around","town"],["town","including"],["visitor","centre"],["keeps","track"],["rough","guide"],["new","zealand"],["publication","wasold"],["thentertainment","guide"],["published","weekly"],["otago","daily"],["daily","times"],["shane","gilchrist"],["gilchrist","published"],["sat","jul"],["jul","see"],["see","also"],["also","dunedin"],["dunedin","media"],["media","dunedin"],["dunedin","media"],["media","externalinks"],["defunct","art"],["use","listing"],["category","city"],["city","guides"],["guides","category"],["category","defunct"],["defunct","magazines"],["new","zealand"],["zealand","category"],["category","free"],["free","magazines"],["magazines","category"],["category","independent"],["independent","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","media"],["media","dunedin"],["dunedin","category"],["category","new"],["new","zealand"],["zealand","magazines"],["magazines","category"],["category","new"],["new","zealand"],["zealand","weekly"],["weekly","magazines"]],"all_collocations":["founder founded","founded firstdate","firstdate company","company country","country new","new zealand","website issn","issn oclc","oclc f","f ink","ink weekly","weekly entertainment","entertainment guide","free weekly","weekly guide","guide owned","dunedinew zealand","provide free","free information","local community","community using","using cheap","cheap one","one colour","colour printing","distinctive design","design style","style part","artist networks","networks bands","musicians including","dunedin sound","sound history","june dunedinew","dunedinew zealand","zealand caroline","first issue","entertainment listings","band events","events andance","andance parties","usual media","otago daily","daily times","times f","f ink","sized free","free paper","inew zealand","many similar","similar guides","guides f","f ink","consistent source","entertainment information","information meanthat","twelve years","years f","f ink","also published","published articles","alternative communities","otago f","f ink","published free","free comics","every issue","ink notably","notably work","pavement magazine","magazine oct","oct nov","f ink","arts fashion","fashion maps","dunedin city","city council","council visitor","visitor centre","centre kevin","kevin thompson","visitor centre","centre manager","sized fold","good working","working tool","us evening","evening star","star dunedin","star sunday","sunday june","june pp","ten years","ink issues","dunedin public","public libraries","june dunedin","dunedin public","public libraries","libraries f","f ink","two travel","travel books","books guides","guides lonely","lonely planet","rough guides","thedition lonely","lonely planet","planet new","new zealand","zealand writes","writes entertainmenthe","entertainmenthe otago","otago daily","daily times","times newspaper","newspaper lists","city buthe","buthe best","best publication","free f","f ink","ink available","available around","around town","lonely planet","planet new","new zealand","zealand harding","harding p","c bedford","bedford n","n th","th edition","edition lonely","lonely planet","planet publications","ltd sydney","sydney p","rough guide","new zealand","dunedin sound","sound check","f ink","pamphlet available","available around","around town","town including","visitor centre","keeps track","rough guide","new zealand","publication wasold","thentertainment guide","published weekly","otago daily","daily times","shane gilchrist","gilchrist published","sat jul","jul see","see also","also dunedin","dunedin media","media dunedin","dunedin media","media externalinks","defunct art","use listing","category city","city guides","guides category","category defunct","defunct magazines","new zealand","zealand category","category free","free magazines","magazines category","category independent","independent magazines","magazines category","category magazinestablished","category magazines","magazines disestablished","category media","media dunedin","dunedin category","category new","new zealand","zealand magazines","magazines category","category new","new zealand","zealand weekly","weekly magazines"],"new_description":"founder founded firstdate company country new_zealand website_issn_oclc f ink weekly entertainment guide free weekly guide owned martin caroline published wednesday february december dunedinew zealand aim guide provide free information events local_community using cheap one colour printing distinctive design style part ink mission collaboration artist networks bands musicians including grew dunedin sound history june dunedinew zealand caroline martin together allan aka published first_issue ink response lack entertainment listings band events andance parties usual media otago daily times f ink first many sized free paper inew_zealand many similar guides f ink reputation consistent source entertainment information meanthat popular twelve years f ink also_published articles history growth alternative communities dunedin otago f ink published free comics every issue ink notably work neville city tales band pavement magazine oct nov f ink maps arts fashion maps support dunedin city_council visitor centre kevin thompson visitor centre manager described sized fold maps good working tool us evening star dunedin star sunday june pp exhibition ten_years ink issues hosted dunedin public libraries june dunedin public libraries f ink recommended two travel_books guides lonely_planet rough_guides thedition lonely_planet new_zealand writes entertainmenthe otago daily times newspaper lists around city buthe best publication free f ink available around town online lonely_planet new_zealand harding p c bedford n th_edition lonely_planet publications ltd sydney p rough_guide new_zealand states latest dunedin sound check f ink pamphlet available around town including visitor centre see keeps track dunedin rough_guide new_zealand publication wasold thentertainment guide ink published weekly otago daily times festival shane gilchrist published sat jul see_also dunedin media dunedin media externalinks defunct art use listing category_city_guides category_defunct magazines new_zealand category_free_magazines category independent magazines_category_magazinestablished category_magazines disestablished category_media dunedin category_new_zealand magazines_category new_zealand weekly magazines"},{"title":"F\u00e1ilte Ireland","description":"file shamrock symbol shows approved accommodationear kilmore geographorguk jpg thumb the shamrock sign is the approved quality symbol of ilte ireland the national tourism development authority f ilte ireland is the national tourism development authority of republic of ireland this authority was established under the national tourism development authority act of and replaces and builds upon the functions of bord f ilte its predecessorganizationnational tourism development authority act sections f ilte ireland s current ceo is redmond o donoghue the legal name of the body is the national tourism development authority according to the national tourism development authority act which established itnational tourism development authority act section the act also empowers the body to use the trading name of ilte ireland the word f ilte is irish for welcome in official irish language texts the form f ilte ireann has been used file bord f ilte special awardublin botanic gardensjpg thumbord f ilte special award after the foundation of the irish free state in hoteliers and others created local tourism boards in various regions which combined into the irish tourism association ita private organisation promoting tourism to the benefit of the nation an earlier unionist led ita existed from to ita lobbying led to the irish tourist board being established by the touristraffic acthis was renamed an bord f ilte by the touristraffic act which created a separate body f gra f ilte to handle publicity the touristraffic act remerged the two as bord f ilte ireann bf or bord f ilte an t stal a summer cultural festival held from took up the bulk of the authority s work in this period in the council of education recruitment and training cert was created to take over training of workers in the hospitality industry in eight regional tourist organisations rtos werestablished which were intended to supersede the itan extraordinary general meeting called in to dissolve the ita voted noto do so but it neverthelessoon became defunctzuelow p the rtos reduced inumber to six in the s and werenamed regional tourist associations rtas in strategy advisory services p fn in the dublin rto lost a high court ireland high court action to prevent bf dissolving it was reconstituted as dublin tourismore closely controlled by bf casey and o rourke p in cert and bf merged to form f ilte ireland to better cordinate with tourism ireland the all island body established under the good friday agreementhe advent of travel website s reduced the usefulness of the rtas and a pricewaterhousecoopers report recommended substantial reorganisation strategy advisory services chapter as a consequence all were dissolved in except dublin tourism which was made a subsidiary of ilte irelandcasey and o rourke p but instead to make it a subsidiary of ilte ireland which afforded it a semi protected status as a state body in thathexchequer stands over its losses dublin tourism separate status ended in line with a report by granthornton granthornton p our overall recommendation is that dublin tourism isubsumed into f ilte ireland the board of dublin tourism disbanded f ilte ireland played a leading role in the gathering ireland a year long programme of events encouraging members of the irish diaspora to visitheiregion of origin the goal of ilte ireland is to provide strategic and practical support in developing and sustaining ireland as a high quality and competitive tourist destination f ilte ireland works in partnership with tourism interests to supporthe industry in its efforts to be more profitable and to help individual tourist enterprises enhance their performance its activities fall into four areas tourismarketing provides marketing support and a range of cost efficient promotional opportunities for irish product providers marketingroups tour operators handling agents and other tourism interests as well as visitor services to consumers f ilte ireland s festivals and cultural events initiative and sports tourism initiative fall under this heading training services provides education and advice for people working in the tourism industry including training unemployed adults and assisting them back into the workforce f ilte ireland have recently launched a new campaign which aims to encourage and support young people into choosing a career in the tourism sector the campaign is called pick tourism and it ulitisesocial networking sitesuch as bebo in an efforto reach outo young people product development providesupport for selective capital investment in tourism producthrough grant aid and tax incentive schemes and encourages new and innovative products and areas of service research and statistics provides overviews of tourism performance and profiles all aspects of tourism developmento provides a knowledge base to guide industry development and servicesee also the gathering ireland tourism ireland externalinks category tourism in the republic of ireland category government agencies of the republic of ireland category tourism in ireland category tourism agencies category establishments in ireland category organizations established in category state sponsored bodies of the republic of ireland with irish names","main_words":["file","shamrock","symbol","shows","approved","geographorguk_jpg","thumb","shamrock","sign","approved","quality","symbol","ilte_ireland","national_tourism_development","authority","f_ilte","ireland","national_tourism_development","authority","republic","ireland","authority","established","national_tourism_development","authority","act","replaces","builds","upon","functions","bord","f_ilte","tourism_development","authority","act","sections","f_ilte","ireland","current","ceo","redmond","legal","name","body","national_tourism_development","authority","according","national_tourism_development","authority","act","established","tourism_development","authority","act","section","act","also","body","use","trading","name","ilte_ireland","word","f_ilte","irish","welcome","official","irish","language","texts","form","f_ilte","used","file","bord","f_ilte","special","botanic","f_ilte","special","award","foundation","irish","free","state","hoteliers","others","created","local","various","regions","combined","irish","tourism_association","ita","private","organisation","promoting_tourism","benefit","nation","earlier","unionist","led","ita","existed","ita","led","irish","tourist_board","established","touristraffic","renamed","bord","f_ilte","touristraffic","act","created","separate","body","f","f_ilte","handle","publicity","touristraffic","act","two","bord","f_ilte","bord","f_ilte","summer","cultural","festival","held","took","bulk","authority","work","period","council","education","recruitment","training","created","take","training","workers","hospitality_industry","eight","regional","tourist","organisations","werestablished","intended","extraordinary","general","meeting","called","ita","voted","noto","became","p","reduced","inumber","six","regional","tourist","associations","strategy","advisory","services","p","dublin","lost","high_court","ireland","high_court","action","prevent","dublin","tourismore","closely","controlled","casey","p","merged","form","f_ilte","ireland","better","cordinate","tourism_ireland","island","body","established","good","friday","advent","travel_website","reduced","report","recommended","substantial","strategy","advisory","services","chapter","consequence","dissolved","except","dublin","tourism","made","subsidiary","p","instead","make","subsidiary","ilte_ireland","afforded","semi","protected","status","state","body","stands","losses","dublin","tourism","separate","status","ended","line","report","p","overall","recommendation","dublin","tourism","f_ilte","ireland","board","dublin","tourism","f_ilte","ireland","played","leading","role","gathering","ireland","year","long","programme","events","encouraging","members","irish","diaspora","origin","goal","ilte_ireland","provide","strategic","practical","support","developing","sustaining","ireland","high_quality","competitive","tourist_destination","f_ilte","ireland","works","partnership","tourism","interests","supporthe","industry","efforts","profitable","help","individual","tourist","enterprises","enhance","performance","activities","fall","four","areas","tourismarketing","provides","marketing","support","range","cost","efficient","promotional","opportunities","irish","product","providers","tour_operators","handling","agents","tourism","interests","well","visitor","services","consumers","f_ilte","ireland","festivals","cultural","events","initiative","sports_tourism","initiative","fall","heading","training","services","provides","education","advice","people_working","tourism_industry","including","training","unemployed","adults","assisting","back","workforce","f_ilte","ireland","recently","launched","new","campaign","aims","encourage","support","young_people","choosing","career","tourism_sector","campaign","called","pick","tourism","networking","sitesuch","efforto","reach","outo","young_people","product_development","selective","capital","investment","tourism","grant","aid","tax","incentive","schemes","encourages","new","innovative","products","areas","service","research","statistics","provides","tourism","performance","profiles","aspects","tourism","provides","knowledge","base","guide","industry","development","also","gathering","ireland","tourism_ireland","externalinks_category_tourism","republic","ireland_category","government_agencies","republic","ireland_category","organizations_established","category","state","sponsored","bodies","republic","ireland","irish","names"],"clean_bigrams":[["file","shamrock"],["shamrock","symbol"],["symbol","shows"],["shows","approved"],["geographorguk","jpg"],["jpg","thumb"],["shamrock","sign"],["approved","quality"],["quality","symbol"],["ilte","ireland"],["national","tourism"],["tourism","development"],["development","authority"],["authority","f"],["f","ilte"],["ilte","ireland"],["national","tourism"],["tourism","development"],["development","authority"],["national","tourism"],["tourism","development"],["development","authority"],["authority","act"],["builds","upon"],["bord","f"],["f","ilte"],["tourism","development"],["development","authority"],["authority","act"],["act","sections"],["sections","f"],["f","ilte"],["ilte","ireland"],["current","ceo"],["legal","name"],["national","tourism"],["tourism","development"],["development","authority"],["authority","according"],["national","tourism"],["tourism","development"],["development","authority"],["authority","act"],["tourism","development"],["development","authority"],["authority","act"],["act","section"],["act","also"],["trading","name"],["ilte","ireland"],["word","f"],["f","ilte"],["official","irish"],["irish","language"],["language","texts"],["form","f"],["f","ilte"],["used","file"],["file","bord"],["bord","f"],["f","ilte"],["ilte","special"],["f","ilte"],["ilte","special"],["special","award"],["irish","free"],["free","state"],["others","created"],["created","local"],["local","tourism"],["tourism","boards"],["various","regions"],["irish","tourism"],["tourism","association"],["association","ita"],["ita","private"],["private","organisation"],["organisation","promoting"],["promoting","tourism"],["earlier","unionist"],["unionist","led"],["led","ita"],["ita","existed"],["irish","tourist"],["tourist","board"],["bord","f"],["f","ilte"],["touristraffic","act"],["separate","body"],["body","f"],["f","ilte"],["handle","publicity"],["touristraffic","act"],["bord","f"],["f","ilte"],["bord","f"],["f","ilte"],["summer","cultural"],["cultural","festival"],["festival","held"],["education","recruitment"],["hospitality","industry"],["eight","regional"],["regional","tourist"],["tourist","organisations"],["extraordinary","general"],["general","meeting"],["meeting","called"],["ita","voted"],["voted","noto"],["reduced","inumber"],["regional","tourist"],["tourist","associations"],["strategy","advisory"],["advisory","services"],["services","p"],["high","court"],["court","ireland"],["ireland","high"],["high","court"],["court","action"],["dublin","tourismore"],["tourismore","closely"],["closely","controlled"],["form","f"],["f","ilte"],["ilte","ireland"],["better","cordinate"],["tourism","ireland"],["island","body"],["body","established"],["good","friday"],["travel","website"],["report","recommended"],["recommended","substantial"],["strategy","advisory"],["advisory","services"],["services","chapter"],["except","dublin"],["dublin","tourism"],["ilte","ireland"],["semi","protected"],["protected","status"],["state","body"],["losses","dublin"],["dublin","tourism"],["tourism","separate"],["separate","status"],["status","ended"],["overall","recommendation"],["dublin","tourism"],["f","ilte"],["ilte","ireland"],["dublin","tourism"],["f","ilte"],["ilte","ireland"],["ireland","played"],["leading","role"],["gathering","ireland"],["year","long"],["long","programme"],["events","encouraging"],["encouraging","members"],["irish","diaspora"],["ilte","ireland"],["provide","strategic"],["practical","support"],["sustaining","ireland"],["ireland","high"],["high","quality"],["competitive","tourist"],["tourist","destination"],["destination","f"],["f","ilte"],["ilte","ireland"],["ireland","works"],["tourism","interests"],["supporthe","industry"],["help","individual"],["individual","tourist"],["tourist","enterprises"],["enterprises","enhance"],["activities","fall"],["four","areas"],["areas","tourismarketing"],["tourismarketing","provides"],["provides","marketing"],["marketing","support"],["cost","efficient"],["efficient","promotional"],["promotional","opportunities"],["irish","product"],["product","providers"],["tour","operators"],["operators","handling"],["handling","agents"],["tourism","interests"],["visitor","services"],["consumers","f"],["f","ilte"],["ilte","ireland"],["cultural","events"],["events","initiative"],["sports","tourism"],["tourism","initiative"],["initiative","fall"],["heading","training"],["training","services"],["services","provides"],["provides","education"],["people","working"],["tourism","industry"],["industry","including"],["including","training"],["training","unemployed"],["unemployed","adults"],["workforce","f"],["f","ilte"],["ilte","ireland"],["recently","launched"],["new","campaign"],["support","young"],["young","people"],["tourism","sector"],["called","pick"],["pick","tourism"],["networking","sitesuch"],["efforto","reach"],["reach","outo"],["outo","young"],["young","people"],["people","product"],["product","development"],["selective","capital"],["capital","investment"],["grant","aid"],["tax","incentive"],["incentive","schemes"],["encourages","new"],["innovative","products"],["service","research"],["statistics","provides"],["tourism","performance"],["knowledge","base"],["guide","industry"],["industry","development"],["gathering","ireland"],["ireland","tourism"],["tourism","ireland"],["ireland","externalinks"],["externalinks","category"],["category","tourism"],["ireland","category"],["category","government"],["government","agencies"],["ireland","category"],["category","tourism"],["tourism","ireland"],["ireland","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","establishments"],["ireland","category"],["category","organizations"],["organizations","established"],["category","state"],["state","sponsored"],["sponsored","bodies"],["irish","names"]],"all_collocations":["file shamrock","shamrock symbol","symbol shows","shows approved","geographorguk jpg","shamrock sign","approved quality","quality symbol","ilte ireland","national tourism","tourism development","development authority","authority f","f ilte","ilte ireland","national tourism","tourism development","development authority","national tourism","tourism development","development authority","authority act","builds upon","bord f","f ilte","tourism development","development authority","authority act","act sections","sections f","f ilte","ilte ireland","current ceo","legal name","national tourism","tourism development","development authority","authority according","national tourism","tourism development","development authority","authority act","tourism development","development authority","authority act","act section","act also","trading name","ilte ireland","word f","f ilte","official irish","irish language","language texts","form f","f ilte","used file","file bord","bord f","f ilte","ilte special","f ilte","ilte special","special award","irish free","free state","others created","created local","local tourism","tourism boards","various regions","irish tourism","tourism association","association ita","ita private","private organisation","organisation promoting","promoting tourism","earlier unionist","unionist led","led ita","ita existed","irish tourist","tourist board","bord f","f ilte","touristraffic act","separate body","body f","f ilte","handle publicity","touristraffic act","bord f","f ilte","bord f","f ilte","summer cultural","cultural festival","festival held","education recruitment","hospitality industry","eight regional","regional tourist","tourist organisations","extraordinary general","general meeting","meeting called","ita voted","voted noto","reduced inumber","regional tourist","tourist associations","strategy advisory","advisory services","services p","high court","court ireland","ireland high","high court","court action","dublin tourismore","tourismore closely","closely controlled","form f","f ilte","ilte ireland","better cordinate","tourism ireland","island body","body established","good friday","travel website","report recommended","recommended substantial","strategy advisory","advisory services","services chapter","except dublin","dublin tourism","ilte ireland","semi protected","protected status","state body","losses dublin","dublin tourism","tourism separate","separate status","status ended","overall recommendation","dublin tourism","f ilte","ilte ireland","dublin tourism","f ilte","ilte ireland","ireland played","leading role","gathering ireland","year long","long programme","events encouraging","encouraging members","irish diaspora","ilte ireland","provide strategic","practical support","sustaining ireland","ireland high","high quality","competitive tourist","tourist destination","destination f","f ilte","ilte ireland","ireland works","tourism interests","supporthe industry","help individual","individual tourist","tourist enterprises","enterprises enhance","activities fall","four areas","areas tourismarketing","tourismarketing provides","provides marketing","marketing support","cost efficient","efficient promotional","promotional opportunities","irish product","product providers","tour operators","operators handling","handling agents","tourism interests","visitor services","consumers f","f ilte","ilte ireland","cultural events","events initiative","sports tourism","tourism initiative","initiative fall","heading training","training services","services provides","provides education","people working","tourism industry","industry including","including training","training unemployed","unemployed adults","workforce f","f ilte","ilte ireland","recently launched","new campaign","support young","young people","tourism sector","called pick","pick tourism","networking sitesuch","efforto reach","reach outo","outo young","young people","people product","product development","selective capital","capital investment","grant aid","tax incentive","incentive schemes","encourages new","innovative products","service research","statistics provides","tourism performance","knowledge base","guide industry","industry development","gathering ireland","ireland tourism","tourism ireland","ireland externalinks","externalinks category","category tourism","ireland category","category government","government agencies","ireland category","category tourism","tourism ireland","ireland category","category tourism","tourism agencies","agencies category","category establishments","ireland category","category organizations","organizations established","category state","state sponsored","sponsored bodies","irish names"],"new_description":"file shamrock symbol shows approved geographorguk_jpg thumb shamrock sign approved quality symbol ilte_ireland national_tourism_development authority f_ilte ireland national_tourism_development authority republic ireland authority established national_tourism_development authority act replaces builds upon functions bord f_ilte tourism_development authority act sections f_ilte ireland current ceo redmond legal name body national_tourism_development authority according national_tourism_development authority act established tourism_development authority act section act also body use trading name ilte_ireland word f_ilte irish welcome official irish language texts form f_ilte used file bord f_ilte special botanic f_ilte special award foundation irish free state hoteliers others created local tourism_boards various regions combined irish tourism_association ita private organisation promoting_tourism benefit nation earlier unionist led ita existed ita led irish tourist_board established touristraffic renamed bord f_ilte touristraffic act created separate body f f_ilte handle publicity touristraffic act two bord f_ilte bord f_ilte summer cultural festival held took bulk authority work period council education recruitment training created take training workers hospitality_industry eight regional tourist organisations werestablished intended extraordinary general meeting called ita voted noto became p reduced inumber six regional tourist associations strategy advisory services p dublin lost high_court ireland high_court action prevent dublin tourismore closely controlled casey p merged form f_ilte ireland better cordinate tourism_ireland island body established good friday advent travel_website reduced report recommended substantial strategy advisory services chapter consequence dissolved except dublin tourism made subsidiary ilte p instead make subsidiary ilte_ireland afforded semi protected status state body stands losses dublin tourism separate status ended line report p overall recommendation dublin tourism f_ilte ireland board dublin tourism f_ilte ireland played leading role gathering ireland year long programme events encouraging members irish diaspora origin goal ilte_ireland provide strategic practical support developing sustaining ireland high_quality competitive tourist_destination f_ilte ireland works partnership tourism interests supporthe industry efforts profitable help individual tourist enterprises enhance performance activities fall four areas tourismarketing provides marketing support range cost efficient promotional opportunities irish product providers tour_operators handling agents tourism interests well visitor services consumers f_ilte ireland festivals cultural events initiative sports_tourism initiative fall heading training services provides education advice people_working tourism_industry including training unemployed adults assisting back workforce f_ilte ireland recently launched new campaign aims encourage support young_people choosing career tourism_sector campaign called pick tourism networking sitesuch efforto reach outo young_people product_development selective capital investment tourism grant aid tax incentive schemes encourages new innovative products areas service research statistics provides tourism performance profiles aspects tourism provides knowledge base guide industry development also gathering ireland tourism_ireland externalinks_category_tourism republic ireland_category government_agencies republic ireland_category_tourism ireland_category_tourism agencies_category_establishments ireland_category organizations_established category state sponsored bodies republic ireland irish names"},{"title":"Family meal","description":"a family meal or staff meal is a group meal that a restaurant serves itstaff outside of peak business hours the restaurant provides the meal free of charge as a employee benefit perk of employmentypically the meal iserved to thentire staff at once with all staff being treated equally like a family the restaurant s own chefs prepare the meal often using leftover or unused ingredients a chef may also use the family meal to experiment with new recipeseveral cookbooks have been publishedescribing family meals at well known restaurants examples include the family meal home cooking with ferran adria by ferran adri of elbulli staff meals from chanterelle by david waltuck off the menu staff meals from america s top restaurants by marissa guggiana come in we are closed an invitation to staff meals athe world s best restaurants by christine carroll and jody eddy see also list of restauranterminology externalinks family meal a chef describes his experiences preparing staff meals early in his career category restauranterminology category employment compensation","main_words":["family","meal","staff","meal","group","meal","restaurant","serves","itstaff","outside","peak","business","hours","restaurant","provides","meal","free","charge","employee","benefit","meal","iserved","thentire","staff","staff","treated","equally","like","family","restaurant","chefs","prepare","meal","often","using","unused","ingredients","chef","may_also","use","family","meal","experiment","new","family","meals","well_known","restaurants","examples_include","family","meal","home","cooking","adri","staff","meals","david","menu","staff","meals","america","top","restaurants","marissa","come","closed","invitation","staff","meals","athe","world","best","restaurants","christine","carroll","eddy","see_also","list","restauranterminology","externalinks","family","meal","experiences","preparing","staff","meals","early","career","category_restauranterminology","category","employment","compensation"],"clean_bigrams":[["family","meal"],["staff","meal"],["group","meal"],["restaurant","serves"],["serves","itstaff"],["itstaff","outside"],["peak","business"],["business","hours"],["restaurant","provides"],["meal","free"],["employee","benefit"],["meal","iserved"],["thentire","staff"],["treated","equally"],["equally","like"],["chefs","prepare"],["meal","often"],["often","using"],["unused","ingredients"],["chef","may"],["may","also"],["also","use"],["family","meal"],["family","meals"],["well","known"],["known","restaurants"],["restaurants","examples"],["examples","include"],["family","meal"],["meal","home"],["home","cooking"],["staff","meals"],["menu","staff"],["staff","meals"],["top","restaurants"],["staff","meals"],["meals","athe"],["athe","world"],["best","restaurants"],["christine","carroll"],["eddy","see"],["see","also"],["also","list"],["restauranterminology","externalinks"],["externalinks","family"],["family","meal"],["chef","describes"],["experiences","preparing"],["preparing","staff"],["staff","meals"],["meals","early"],["career","category"],["category","restauranterminology"],["restauranterminology","category"],["category","employment"],["employment","compensation"]],"all_collocations":["family meal","staff meal","group meal","restaurant serves","serves itstaff","itstaff outside","peak business","business hours","restaurant provides","meal free","employee benefit","meal iserved","thentire staff","treated equally","equally like","chefs prepare","meal often","often using","unused ingredients","chef may","may also","also use","family meal","family meals","well known","known restaurants","restaurants examples","examples include","family meal","meal home","home cooking","staff meals","menu staff","staff meals","top restaurants","staff meals","meals athe","athe world","best restaurants","christine carroll","eddy see","see also","also list","restauranterminology externalinks","externalinks family","family meal","chef describes","experiences preparing","preparing staff","staff meals","meals early","career category","category restauranterminology","restauranterminology category","category employment","employment compensation"],"new_description":"family meal staff meal group meal restaurant serves itstaff outside peak business hours restaurant provides meal free charge employee benefit meal iserved thentire staff staff treated equally like family restaurant chefs prepare meal often using unused ingredients chef may_also use family meal experiment new family meals well_known restaurants examples_include family meal home cooking adri staff meals david menu staff meals america top restaurants marissa come closed invitation staff meals athe world best restaurants christine carroll eddy see_also list restauranterminology externalinks family meal chef_describes experiences preparing staff meals early career category_restauranterminology category employment compensation"},{"title":"Fashion tourism","description":"date october date october fashion tourism is a niche market segment evolved out of three major sectors creative tourism cultural tourism and shopping tourism fashion tourism can be defined as the interaction between destination marketing organisations dmos trade associations tourism suppliers and host communities with people travelling to and visiting a particular place for business or leisure to enjoy experiment discover study trade communicate about and consume fashion all over the world today cities are increasingly using the cultural industries for the development of tourism and other industries to boostheir economic fortune and to position themselves in the global markethere is ofteno need for cities to specialize in any new activity but rather to diversify their economy and it is in this contexthat fashion tourism has been adopted and promoted in many citieseexamples for antwerp london and tokyo fashion is a global industry and many capital cities have press grabbing trade activity at leastwice a year eg london through its london fashion week and this often the starting point for many dmos to take fashion seriously as a new anchor for their tourism industry and visitor economy they are consciously pushing fashion week tradevents into the public eye to raise their city s fashionable credentials and encourage visitors to consider travel to their city prime movers london via the mayor of london s office and new york via the new york city economic development council government offices have been leading the way internationally to use their fashion credentials to attract visitors to their cities and wider other cities also following suit having seen theconomic impact which london and new york s fashion credentials can bring seoul now has two fashion weeks and riding on the reputation of these the city now has a vast complex of shopping malls and wholesale retailers which attract more than two million visitors per year including just about half of all the tourists who come to seoulfashion is essential tourism january by hannah bae singapore also has a fashion week and the singapore tourism board includes fashion as one of the high profile component for enhancing the city s destination attractivenesssingapore tourism board annual report even a city as obscure as lagos nigeria in terms ofashion credentials has recently commissioned the central university of applied sciences to prepare a reportitled themerging role ofashion tourism and the need for a development strategy themerging role ofashion tourism and the need for a development strategy in lagos nigeria olubukola bada central university of applied sciences june so thathey could assess the advantages fashion could bring to their local and regional economy shopping as a tourismotivator shopping has become a motive to travel and is now a major tourist activity visitors are increasingly choosing shopping as a way to experience local culture through an engagement with local products and local craftspeople and some destinations provide special tourist shopping activities for tourists to shop for goodsconciergeetceteracom fashion tourism the ultimatepicure of travel june culture shopping tourism as a niche market segment within shopping tourism theconomic importance ofashion tourism cannot be under estimated the recently launched bicester designer shopping village an hours train journey out of london is now the third largest shopping destination in the uk after harrods and selfridges and the bicester train station hasignage in mandarin and arabic individual fashion brands also play a major part in fashion tourismarketing visitbritain the uk s tourism board recently stated thathe luxury clothing brand burberry has almost played a lone hand in attracting lucrative high spending chinese tourists to the ukchinese tourists can help uk out of recession says british tourist board october james meikle theguardiancom according to the tourism statistical data of the us office of travel and tourism industries on tourism performance shopping ranked as the toparticipation activity for asians and western europeans and eastern european tourists detailed profiles for countries of origin show that shopping is on the top among all other tourist activities for theuropean countries of ireland spain and italy asian shopping participation percentages are particularly high in taiwand japan tom wilson blog shopping tourism april there are increasing incentives to travel for economic reasons as purchasing power and currency fluctuations can play an important role in travel decision making as well as relative price positioning there is a trend within shopping tourism for consumers from emerging markets notably chinand south america to plan their trips according to where the fashion handbags is cheapest up to per cent of sales of luxury goods in western europe are generated by foreigners and global travel generates as much as of total sales of luxury goodsthe rise of accessories tourism october by vanessa friedman the queues of non parisians outside louis vuitton clearly mean something but according to an hsbc reporthe bling dynasty china s bling shoppers choose asia over europe april by rajeshni naidu ghelani this less about status the chic of buying from the point of origin than economic intelligence the savings involved thisn t limited to luxury products brazil has overtaken the uk as the source of the largest group of tourists to floridand new york and they spend close to twice as much as british tourists on products partly because they can make savings of up ton us merchandise compared to its cost in brazil the nature of shopping tourism is certainly changing it s not about souvenirs it s about savingsee also fashion capital category types of tourism category fashion","main_words":["date","october","date","october","fashion","tourism","niche","market","segment","evolved","three_major","sectors","shopping","tourism","fashion","tourism","defined","interaction","destination_marketing","organisations","dmos","trade","associations","tourism","suppliers","host_communities","people","travelling","visiting","particular","place","business","leisure","enjoy","experiment","discover","study","trade","communicate","consume","fashion","world","today","cities","increasingly","using","cultural","industries","development","tourism_industries","economic","fortune","position","global","need","cities","specialize","new","activity","rather","diversify","economy","fashion","tourism","adopted","promoted","many","antwerp","london","tokyo","fashion","global","industry","many","capital","cities","press","trade","activity","year","london","london","fashion","week","often","starting_point","many","dmos","take","fashion","seriously","new","anchor","tourism_industry","visitor","economy","consciously","pushing","fashion","week","public","eye","raise","city","fashionable","credentials","encourage","visitors","consider","travel","city","prime","london","via","mayor","london","office","new_york","via","new_york","city","economic_development","council","government","offices","leading","way","internationally","use","fashion","credentials","attract","visitors","cities","wider","cities","also","following","suit","seen","theconomic","impact","london","new_york","fashion","credentials","bring","seoul","two","fashion","weeks","riding","reputation","city","vast","complex","shopping_malls","wholesale","retailers","attract","two","million_visitors","per_year","including","half","tourists","come","essential","tourism","january","hannah","singapore","also","fashion","week","singapore","tourism_board","includes","fashion","one","high_profile","component","enhancing","city","destination","tourism_board","annual","report","even","city","obscure","lagos","nigeria","terms","ofashion","credentials","recently","commissioned","central","university","applied","sciences","prepare","themerging","role","ofashion","tourism","need","development","strategy","themerging","role","ofashion","tourism","need","development","strategy","lagos","nigeria","central","university","applied","sciences","june","thathey","could","assess","advantages","fashion","could","bring","local","regional","economy","shopping","shopping","become","motive","travel","major","tourist","activity","visitors","increasingly","choosing","shopping","way","experience","local_culture","engagement","local","products","local","destinations","provide","special","tourist","shopping","activities","tourists","shop","fashion","tourism_travel","june","culture","shopping","tourism","niche","market","segment","within","shopping","tourism","theconomic","importance","ofashion","tourism","cannot","estimated","recently","launched","designer","shopping","village","hours","train","journey","london","third","largest","shopping","destination","uk","harrods","train","station","mandarin","arabic","individual","fashion","brands","also","play","major","part","fashion","tourismarketing","visitbritain","uk","tourism_board","recently","stated_thathe","luxury","clothing","brand","almost","played","lone","hand","attracting","lucrative","high","spending","chinese","tourists","tourists","help","uk","recession","says","british","tourist_board","october","james","according","tourism","statistical","data","us","office","travel_tourism","industries","tourism","performance","shopping","ranked","activity","eastern_european","tourists","detailed","profiles","countries","origin","show","shopping","top","among","tourist_activities","theuropean","countries","ireland","spain","italy","asian","shopping","participation","particularly","high","taiwand","japan","tom","wilson","blog","shopping","tourism","april","increasing","incentives","travel","economic","reasons","purchasing","power","currency","play","important_role","travel","decision_making","well","relative","price","positioning","trend","within","shopping","tourism","consumers","emerging","markets","notably","chinand","south_america","plan","trips","according","fashion","cheapest","per_cent","sales","luxury","goods","western_europe","generated","foreigners","global","travel","generates","much","total","sales","luxury","rise","accessories","tourism","october","queues","non","outside","louis","clearly","mean","something","according","reporthe","dynasty","china","choose","asia","europe","april","less","status","chic","buying","point","origin","economic","intelligence","savings","involved","limited","luxury","products","brazil","uk","source","largest","group","tourists","floridand","new_york","spend","close","twice","much","british","tourists","products","partly","make","savings","ton","us","merchandise","compared","cost","brazil","nature","shopping","tourism","certainly","changing","souvenirs","also","fashion","capital","category_types","tourism_category","fashion"],"clean_bigrams":[["date","october"],["october","date"],["date","october"],["october","fashion"],["fashion","tourism"],["niche","market"],["market","segment"],["segment","evolved"],["three","major"],["major","sectors"],["sectors","creative"],["creative","tourism"],["tourism","cultural"],["cultural","tourism"],["shopping","tourism"],["tourism","fashion"],["fashion","tourism"],["destination","marketing"],["marketing","organisations"],["organisations","dmos"],["dmos","trade"],["trade","associations"],["associations","tourism"],["tourism","suppliers"],["host","communities"],["people","travelling"],["particular","place"],["enjoy","experiment"],["experiment","discover"],["discover","study"],["study","trade"],["trade","communicate"],["consume","fashion"],["world","today"],["today","cities"],["increasingly","using"],["cultural","industries"],["tourism","industries"],["economic","fortune"],["new","activity"],["fashion","tourism"],["antwerp","london"],["tokyo","fashion"],["global","industry"],["many","capital"],["capital","cities"],["trade","activity"],["london","fashion"],["fashion","week"],["starting","point"],["many","dmos"],["take","fashion"],["fashion","seriously"],["new","anchor"],["tourism","industry"],["visitor","economy"],["consciously","pushing"],["pushing","fashion"],["fashion","week"],["public","eye"],["fashionable","credentials"],["encourage","visitors"],["consider","travel"],["city","prime"],["london","via"],["new","york"],["york","via"],["new","york"],["york","city"],["city","economic"],["economic","development"],["development","council"],["council","government"],["government","offices"],["way","internationally"],["fashion","credentials"],["attract","visitors"],["cities","also"],["also","following"],["following","suit"],["seen","theconomic"],["theconomic","impact"],["new","york"],["fashion","credentials"],["bring","seoul"],["two","fashion"],["fashion","weeks"],["vast","complex"],["shopping","malls"],["wholesale","retailers"],["two","million"],["million","visitors"],["visitors","per"],["per","year"],["year","including"],["essential","tourism"],["tourism","january"],["singapore","also"],["also","fashion"],["fashion","week"],["singapore","tourism"],["tourism","board"],["board","includes"],["includes","fashion"],["high","profile"],["profile","component"],["tourism","board"],["board","annual"],["annual","report"],["report","even"],["lagos","nigeria"],["terms","ofashion"],["ofashion","credentials"],["recently","commissioned"],["central","university"],["applied","sciences"],["themerging","role"],["role","ofashion"],["ofashion","tourism"],["development","strategy"],["strategy","themerging"],["themerging","role"],["role","ofashion"],["ofashion","tourism"],["development","strategy"],["lagos","nigeria"],["central","university"],["applied","sciences"],["sciences","june"],["thathey","could"],["could","assess"],["advantages","fashion"],["fashion","could"],["could","bring"],["regional","economy"],["economy","shopping"],["major","tourist"],["tourist","activity"],["activity","visitors"],["increasingly","choosing"],["choosing","shopping"],["experience","local"],["local","culture"],["local","products"],["destinations","provide"],["provide","special"],["special","tourist"],["tourist","shopping"],["shopping","activities"],["fashion","tourism"],["travel","june"],["june","culture"],["culture","shopping"],["shopping","tourism"],["niche","market"],["market","segment"],["segment","within"],["within","shopping"],["shopping","tourism"],["tourism","theconomic"],["theconomic","importance"],["importance","ofashion"],["ofashion","tourism"],["recently","launched"],["designer","shopping"],["shopping","village"],["hours","train"],["train","journey"],["third","largest"],["largest","shopping"],["shopping","destination"],["train","station"],["arabic","individual"],["individual","fashion"],["fashion","brands"],["brands","also"],["also","play"],["major","part"],["fashion","tourismarketing"],["tourismarketing","visitbritain"],["tourism","board"],["board","recently"],["recently","stated"],["stated","thathe"],["thathe","luxury"],["luxury","clothing"],["clothing","brand"],["almost","played"],["lone","hand"],["attracting","lucrative"],["lucrative","high"],["high","spending"],["spending","chinese"],["chinese","tourists"],["help","uk"],["recession","says"],["says","british"],["british","tourist"],["tourist","board"],["board","october"],["october","james"],["tourism","statistical"],["statistical","data"],["us","office"],["tourism","industries"],["tourism","performance"],["performance","shopping"],["shopping","ranked"],["western","europeans"],["eastern","european"],["european","tourists"],["tourists","detailed"],["detailed","profiles"],["origin","show"],["top","among"],["tourist","activities"],["theuropean","countries"],["ireland","spain"],["italy","asian"],["asian","shopping"],["shopping","participation"],["particularly","high"],["taiwand","japan"],["japan","tom"],["tom","wilson"],["wilson","blog"],["blog","shopping"],["shopping","tourism"],["tourism","april"],["increasing","incentives"],["economic","reasons"],["purchasing","power"],["important","role"],["travel","decision"],["decision","making"],["relative","price"],["price","positioning"],["trend","within"],["within","shopping"],["shopping","tourism"],["emerging","markets"],["markets","notably"],["notably","chinand"],["chinand","south"],["south","america"],["trips","according"],["per","cent"],["luxury","goods"],["western","europe"],["global","travel"],["travel","generates"],["total","sales"],["accessories","tourism"],["tourism","october"],["outside","louis"],["clearly","mean"],["mean","something"],["dynasty","china"],["choose","asia"],["europe","april"],["economic","intelligence"],["savings","involved"],["luxury","products"],["products","brazil"],["largest","group"],["floridand","new"],["new","york"],["spend","close"],["british","tourists"],["products","partly"],["make","savings"],["ton","us"],["us","merchandise"],["merchandise","compared"],["shopping","tourism"],["certainly","changing"],["also","fashion"],["fashion","capital"],["capital","category"],["category","types"],["tourism","category"],["category","fashion"]],"all_collocations":["date october","october date","date october","october fashion","fashion tourism","niche market","market segment","segment evolved","three major","major sectors","sectors creative","creative tourism","tourism cultural","cultural tourism","shopping tourism","tourism fashion","fashion tourism","destination marketing","marketing organisations","organisations dmos","dmos trade","trade associations","associations tourism","tourism suppliers","host communities","people travelling","particular place","enjoy experiment","experiment discover","discover study","study trade","trade communicate","consume fashion","world today","today cities","increasingly using","cultural industries","tourism industries","economic fortune","new activity","fashion tourism","antwerp london","tokyo fashion","global industry","many capital","capital cities","trade activity","london fashion","fashion week","starting point","many dmos","take fashion","fashion seriously","new anchor","tourism industry","visitor economy","consciously pushing","pushing fashion","fashion week","public eye","fashionable credentials","encourage visitors","consider travel","city prime","london via","new york","york via","new york","york city","city economic","economic development","development council","council government","government offices","way internationally","fashion credentials","attract visitors","cities also","also following","following suit","seen theconomic","theconomic impact","new york","fashion credentials","bring seoul","two fashion","fashion weeks","vast complex","shopping malls","wholesale retailers","two million","million visitors","visitors per","per year","year including","essential tourism","tourism january","singapore also","also fashion","fashion week","singapore tourism","tourism board","board includes","includes fashion","high profile","profile component","tourism board","board annual","annual report","report even","lagos nigeria","terms ofashion","ofashion credentials","recently commissioned","central university","applied sciences","themerging role","role ofashion","ofashion tourism","development strategy","strategy themerging","themerging role","role ofashion","ofashion tourism","development strategy","lagos nigeria","central university","applied sciences","sciences june","thathey could","could assess","advantages fashion","fashion could","could bring","regional economy","economy shopping","major tourist","tourist activity","activity visitors","increasingly choosing","choosing shopping","experience local","local culture","local products","destinations provide","provide special","special tourist","tourist shopping","shopping activities","fashion tourism","travel june","june culture","culture shopping","shopping tourism","niche market","market segment","segment within","within shopping","shopping tourism","tourism theconomic","theconomic importance","importance ofashion","ofashion tourism","recently launched","designer shopping","shopping village","hours train","train journey","third largest","largest shopping","shopping destination","train station","arabic individual","individual fashion","fashion brands","brands also","also play","major part","fashion tourismarketing","tourismarketing visitbritain","tourism board","board recently","recently stated","stated thathe","thathe luxury","luxury clothing","clothing brand","almost played","lone hand","attracting lucrative","lucrative high","high spending","spending chinese","chinese tourists","help uk","recession says","says british","british tourist","tourist board","board october","october james","tourism statistical","statistical data","us office","tourism industries","tourism performance","performance shopping","shopping ranked","western europeans","eastern european","european tourists","tourists detailed","detailed profiles","origin show","top among","tourist activities","theuropean countries","ireland spain","italy asian","asian shopping","shopping participation","particularly high","taiwand japan","japan tom","tom wilson","wilson blog","blog shopping","shopping tourism","tourism april","increasing incentives","economic reasons","purchasing power","important role","travel decision","decision making","relative price","price positioning","trend within","within shopping","shopping tourism","emerging markets","markets notably","notably chinand","chinand south","south america","trips according","per cent","luxury goods","western europe","global travel","travel generates","total sales","accessories tourism","tourism october","outside louis","clearly mean","mean something","dynasty china","choose asia","europe april","economic intelligence","savings involved","luxury products","products brazil","largest group","floridand new","new york","spend close","british tourists","products partly","make savings","ton us","us merchandise","merchandise compared","shopping tourism","certainly changing","also fashion","fashion capital","capital category","category types","tourism category","category fashion"],"new_description":"date october date october fashion tourism niche market segment evolved three_major sectors creative_tourism_cultural_tourism shopping tourism fashion tourism defined interaction destination_marketing organisations dmos trade associations tourism suppliers host_communities people travelling visiting particular place business leisure enjoy experiment discover study trade communicate consume fashion world today cities increasingly using cultural industries development tourism_industries economic fortune position global need cities specialize new activity rather diversify economy fashion tourism adopted promoted many antwerp london tokyo fashion global industry many capital cities press trade activity year london london fashion week often starting_point many dmos take fashion seriously new anchor tourism_industry visitor economy consciously pushing fashion week public eye raise city fashionable credentials encourage visitors consider travel city prime london via mayor london office new_york via new_york city economic_development council government offices leading way internationally use fashion credentials attract visitors cities wider cities also following suit seen theconomic impact london new_york fashion credentials bring seoul two fashion weeks riding reputation city vast complex shopping_malls wholesale retailers attract two million_visitors per_year including half tourists come essential tourism january hannah singapore also fashion week singapore tourism_board includes fashion one high_profile component enhancing city destination tourism_board annual report even city obscure lagos nigeria terms ofashion credentials recently commissioned central university applied sciences prepare themerging role ofashion tourism need development strategy themerging role ofashion tourism need development strategy lagos nigeria central university applied sciences june thathey could assess advantages fashion could bring local regional economy shopping shopping become motive travel major tourist activity visitors increasingly choosing shopping way experience local_culture engagement local products local destinations provide special tourist shopping activities tourists shop fashion tourism_travel june culture shopping tourism niche market segment within shopping tourism theconomic importance ofashion tourism cannot estimated recently launched designer shopping village hours train journey london third largest shopping destination uk harrods train station mandarin arabic individual fashion brands also play major part fashion tourismarketing visitbritain uk tourism_board recently stated_thathe luxury clothing brand almost played lone hand attracting lucrative high spending chinese tourists tourists help uk recession says british tourist_board october james according tourism statistical data us office travel_tourism industries tourism performance shopping ranked activity western_europeans eastern_european tourists detailed profiles countries origin show shopping top among tourist_activities theuropean countries ireland spain italy asian shopping participation particularly high taiwand japan tom wilson blog shopping tourism april increasing incentives travel economic reasons purchasing power currency play important_role travel decision_making well relative price positioning trend within shopping tourism consumers emerging markets notably chinand south_america plan trips according fashion cheapest per_cent sales luxury goods western_europe generated foreigners global travel generates much total sales luxury rise accessories tourism october queues non outside louis clearly mean something according reporthe dynasty china choose asia europe april less status chic buying point origin economic intelligence savings involved limited luxury products brazil uk source largest group tourists floridand new_york spend close twice much british tourists products partly make savings ton us merchandise compared cost brazil nature shopping tourism certainly changing souvenirs also fashion capital category_types tourism_category fashion"},{"title":"Fast casual restaurant","description":"a fast casual restaurant found primarily in the united states does not offer full table service but promises food quality higher quality food than other fast food restaurant s with fewer frozen or processed ingredients it is an intermediate concept between fast food and casual dining and typically priced accordingly the category is exemplified by chainsuch as boston market bruegger s captain d s chipotle mexican grill culvers dig inn el polloco five guys freddy s frozen custard steakburgers newk s eatery noodles co panera bread pizza ranch and vapiano history the concept originated in the united states in thearly to mid s but did not become mainstream until thend of the s and the beginning of the s during the great recession economic recession that began in the category ofast casual dining saw increased sales to the year oldemographicustomers with limitediscretionary spending for meals tend to choose fast casual for dining perceived as healthier definition the publisher and founder ofastcasualcom paul barron is credited with coining the term fast casual in the late s horatio lonsdale hands former chairmand ceof zuzu inc is also credited with coining the term fast casual zuzu a handmade mexican food concept co founded by lonsdale hands in filed a us federal trademark registration for the term fast casual inovember leading michael deluca to callonsdale hands a progressive pioneer in the burgeoning fast casual market segment in the july edition of restaurant hospitality the company technomic information services defined fast casual restaurants as meeting the following criteria limited service or self service format average meal price between and made torder food with more complex flavors than fast food restaurants upscale unique or highly developed cor most often will not have a drive thru see also list of casual dining restaurant chains references category fast casual restaurants category types of restaurants","main_words":["fast","casual","restaurant","found","primarily","united_states","offer","full","table_service","promises","food_quality","higher","quality","food","fast_food_restaurant","fewer","frozen","processed","ingredients","intermediate","concept","fast_food","casual_dining","typically","priced","accordingly","category","chainsuch","boston","market","captain","chipotle","mexican","grill","dig","inn","el","five","guys","frozen","eatery","noodles","bread","pizza","ranch","history","concept","originated","united_states","become","mainstream","thend","beginning","great","recession","economic","recession","began","category","casual_dining","saw","increased","sales","year","spending","meals","tend","choose","fast_casual","dining","perceived","healthier","definition","publisher","founder","paul","credited","coining","term","fast_casual","late","horatio","hands","former","chairmand","ceof","inc","also","credited","coining","term","fast_casual","mexican","food","concept","founded","hands","filed","us","federal","trademark","registration","term","fast_casual","inovember","leading","michael","hands","progressive","pioneer","burgeoning","fast_casual","market","segment","july","edition","restaurant","hospitality","company","information","services","defined","fast_casual","restaurants","meeting","following","criteria","limited_service","self","service","format","average","meal","price","made","torder","food","complex","flavors","fast_food_restaurants","upscale","unique","highly","developed","cor","often","drive","thru","see_also","list","casual_dining","restaurant_chains","references_category","fast_casual","restaurants_category_types","restaurants"],"clean_bigrams":[["fast","casual"],["casual","restaurant"],["restaurant","found"],["found","primarily"],["united","states"],["offer","full"],["full","table"],["table","service"],["promises","food"],["food","quality"],["quality","higher"],["higher","quality"],["quality","food"],["fast","food"],["food","restaurant"],["fewer","frozen"],["processed","ingredients"],["intermediate","concept"],["fast","food"],["casual","dining"],["typically","priced"],["priced","accordingly"],["boston","market"],["chipotle","mexican"],["mexican","grill"],["dig","inn"],["inn","el"],["five","guys"],["eatery","noodles"],["bread","pizza"],["pizza","ranch"],["concept","originated"],["united","states"],["become","mainstream"],["great","recession"],["recession","economic"],["economic","recession"],["category","ofast"],["ofast","casual"],["casual","dining"],["dining","saw"],["saw","increased"],["increased","sales"],["meals","tend"],["choose","fast"],["fast","casual"],["casual","dining"],["dining","perceived"],["healthier","definition"],["term","fast"],["fast","casual"],["hands","former"],["former","chairmand"],["chairmand","ceof"],["also","credited"],["term","fast"],["fast","casual"],["mexican","food"],["food","concept"],["us","federal"],["federal","trademark"],["trademark","registration"],["term","fast"],["fast","casual"],["casual","inovember"],["inovember","leading"],["leading","michael"],["progressive","pioneer"],["burgeoning","fast"],["fast","casual"],["casual","market"],["market","segment"],["july","edition"],["restaurant","hospitality"],["information","services"],["services","defined"],["defined","fast"],["fast","casual"],["casual","restaurants"],["following","criteria"],["criteria","limited"],["limited","service"],["self","service"],["service","format"],["format","average"],["average","meal"],["meal","price"],["made","torder"],["torder","food"],["complex","flavors"],["fast","food"],["food","restaurants"],["restaurants","upscale"],["upscale","unique"],["highly","developed"],["developed","cor"],["drive","thru"],["thru","see"],["see","also"],["also","list"],["casual","dining"],["dining","restaurant"],["restaurant","chains"],["chains","references"],["references","category"],["category","fast"],["fast","casual"],["casual","restaurants"],["restaurants","category"],["category","types"]],"all_collocations":["fast casual","casual restaurant","restaurant found","found primarily","united states","offer full","full table","table service","promises food","food quality","quality higher","higher quality","quality food","fast food","food restaurant","fewer frozen","processed ingredients","intermediate concept","fast food","casual dining","typically priced","priced accordingly","boston market","chipotle mexican","mexican grill","dig inn","inn el","five guys","eatery noodles","bread pizza","pizza ranch","concept originated","united states","become mainstream","great recession","recession economic","economic recession","category ofast","ofast casual","casual dining","dining saw","saw increased","increased sales","meals tend","choose fast","fast casual","casual dining","dining perceived","healthier definition","term fast","fast casual","hands former","former chairmand","chairmand ceof","also credited","term fast","fast casual","mexican food","food concept","us federal","federal trademark","trademark registration","term fast","fast casual","casual inovember","inovember leading","leading michael","progressive pioneer","burgeoning fast","fast casual","casual market","market segment","july edition","restaurant hospitality","information services","services defined","defined fast","fast casual","casual restaurants","following criteria","criteria limited","limited service","self service","service format","format average","average meal","meal price","made torder","torder food","complex flavors","fast food","food restaurants","restaurants upscale","upscale unique","highly developed","developed cor","drive thru","thru see","see also","also list","casual dining","dining restaurant","restaurant chains","chains references","references category","category fast","fast casual","casual restaurants","restaurants category","category types"],"new_description":"fast casual restaurant found primarily united_states offer full table_service promises food_quality higher quality food fast_food_restaurant fewer frozen processed ingredients intermediate concept fast_food casual_dining typically priced accordingly category chainsuch boston market captain chipotle mexican grill dig inn el five guys frozen eatery noodles bread pizza ranch history concept originated united_states thearly_mid become mainstream thend beginning great recession economic recession began category ofast casual_dining saw increased sales year spending meals tend choose fast_casual dining perceived healthier definition publisher founder paul credited coining term fast_casual late horatio hands former chairmand ceof inc also credited coining term fast_casual mexican food concept founded hands filed us federal trademark registration term fast_casual inovember leading michael hands progressive pioneer burgeoning fast_casual market segment july edition restaurant hospitality company information services defined fast_casual restaurants meeting following criteria limited_service self service format average meal price made torder food complex flavors fast_food_restaurants upscale unique highly developed cor often drive thru see_also list casual_dining restaurant_chains references_category fast_casual restaurants_category_types restaurants"},{"title":"Fast food","description":"file fast food mealjpg thumb a basic and popular fast food meal which includes a hamburger french fries and a soft drink file fast food universalanguagejpg thumb mcdonald s kentucky fried chicken and pizza hut fast food restaurants in the united arab emirates fast food is a type of mass production mass produced food that is prepared and served very quickly the food is typically less nutritional value nutritionally valuable compared tother foods andishes while any meal with low preparation time can be considered fast food typically the term refers to food sold in a restaurant or store with preheated or precooked ingredients and served to the customer in a packaged form for take outake away fast food restaurants are traditionally distinguished by their ability to serve food via drive through outlets may be stands or kiosk s which may provide no shelter or seating or fast food restaurant s also known as quick service restaurants franchising franchise operations that are part of chain storestaurant chains have standardized foodstuffshipped to each restaurant from centralocations fast food began withe first fish and chip shops in britain the s drive through restaurants were first popularized in the s in the united states the term fast food was recognized in a dictionary by merriam webster in according to the national institutes of health nih fast foods are quick alternatives to home cooked meals they are also high in saturated fat sugar salt and calories livestrongcom last hellesvigaskell first karen website livestrongcom access date may eating too much fast food has been linked to among other things colorectal cancer obesity and high cholesterol the traditional family dinner is increasingly being replaced by the consumption of takeaway or eating on the run as a resulthe time invested on food preparation is getting lower and lower with an average couple in the united statespending minutes and seconds per day on food preparation in history file chinese noodlesjpg thumb pulling wheat dough into thin strands to form lamian the concept of ready cooked food for sale is closely connected with urban development homes in emerging cities often lacked adequate space or proper food preparation accouterments additionally procuring cooking fuel could cost as much as purchased produce frying foods in vats of searing oil proved as dangerous as it was expensive and homeowners feared that a rogue cooking fire might easily conflagrate an entire neighborhood thus urbanites werencouraged to purchase prepared meats or starchesuch as bread or noodles whenever possible in ancient rome cities had street stands a large counter with a receptacle in the middle from which food or drink would have been served it was during post wwii american economic boom that americans began to spend more and buy more as theconomy boomed and a culture of consumerism bloomed as a result of this new desire to have it all coupled withe strides made by women while the men were away both members of the household began to work outside the homeating out whichad previously been considered a luxury became a common occurrence and then a necessity workers and working families needed quick service and inexpensive food for both lunch andinner this need is what drove the phenomenal success of thearly fast food giants which catered to the family on the go franklin a jacobs fast food became an easy option for a busy family as is the case for many families today pre industrial old world in the cities of romantiquity much of the urban population living insulae multi story apartment blocks depended on food vendors for much of their meal the forum itself served as a marketplace where romans could purchase baked goods and cured meats in the mornings bread soaked in wine was eaten as a quick snack and cooked vegetables and stews later in popina simple type of eating establishment in asia th century chinese scarfedown friedough soups and stuffed buns all of which still exist as contemporary snack food their baghdadi contemporariesupplemented home cooked meals with processed legumes purchased starches and even ready to eat meats during the middle ages large towns and major urban areasuch as london and parisupported numerous vendors that soldishesuch as pie s pasty pasties custard tart flans waffle s wafer s pancake s and cooked meats as in roman cities during antiquity many of thesestablishments catered to those who did not have means to cook their own food particularly single households unlike richer town dwellers many often could not afford housing with kitchen facilities and thus relied on fast food travelers as well such as pilgrim s en route to a shrine holy site were among the customers united kingdom file oldham first chip shop in ukjpg thumb left blue plaque in oldham england commemorating the s origins ofish and chips and the fast food industry file bclm fish chipsjpg thumb upright fish and chips in a wrapper in areas with access to coast al or tidal waters fast food frequently included local shellfish or seafood such as oyster s or as in london eel food eels often thiseafood was cookedirectly on the quay or close by the development of commercial trawler fishing in the mid nineteenth century led to the development of a british favourite fish and chips and the first shop in a prominent meal in british culture it was created in on the streets of theast end of london by a year old jewish boy joseph malin who came up withe idea of combining fried fish with chips bacon butties roast dinners and a cuppa things we love best about britain showe are a nation ofood lovers daily mail retrieved november a blue plaque at oldham s tommyfield market marks the origin of the fish and chip shop and fast food industries as a cheap fast food served in a wrapper fish and chips became a stock meal among the victorian era victorian working classes by there were more than fish and chip shops across the country and in the s there were more than shops in george orwell s the road to wigan pier documenting his experience of working class life in the north of england the author considered fish and chips chief among the home comforts which acted as a panacea to the working classes in harry ramsden s fast food restaurant chain opened in the uk on a single day in his fish and chip shop in guiseley west yorkshire served portions ofish and chips earning itself a place in the guinness book of records british fast food had considerable regional variation sometimes the regionality of a dish became part of the culture of its respective area such as the cornish pasty andeep fried mars bar the content ofast food pies has varied with poultry such as chicken s or anatidae wildfowl commonly being used since the world war ii second world war turkey bird turkey has been used more frequently in fast food the uk has adopted fast food from other cultures as well such as pizza doner kebab and curry morecently healthier alternatives to conventional fast food have also emerged united states file fastfoodjpg thumb neighboring fast food restaurant advertisement signs in bowlingreen kentucky for wendy s kfc krystal restaurant krystal and taco bell a mcdonald sign can be seen in the very far background as automobile s became popular and more affordable following world war i drive through drive in restaurants were introduced the american company white castle restaurant white castle founded by billy ingram and walter anderson in wichita kansas wichita kansas in is generally credited with opening the second fast food outlet and first hamburger chain selling hamburgers for five cents each walter anderson had builthe first white castle restaurant in wichita introducing the limited menu high volume low cost high speed hamburgerestaurant among its innovations the company allowed customers to see the food being prepared white castle restaurant white castle wasuccessful from its inception and spawned numerous competitors franchising was introduced in by a w root beer which franchised its distinctive syrup howard johnson s first franchised the restaurant concept in the mid s formally standardizing menusignage and advertising curb service was introduced in the late s and was mobilized in the s when carhop strapped on roller skates the united states has the largest fast food industry in the world and american fast food restaurants are located in over countries approximately million us workers aremployed in the areas ofood preparation and food servicing including fast food in the usa worries of an obesity epidemic and its related illnesses have inspired many local government officials in the united states to propose to limit oregulate fast food restaurants yet us adults are unwilling to change their fast food consumption even in the face of rising costs and unemployment characterized by the great recession great recession suggesting an pricelasticity of demand inelastic demand however some areas are more affected than others in los angeles county for example about of the restaurants in south centralos angeles are fast food chains orestaurants with minimal seating by comparisonly of those on the westside los angeles county westside are such restaurants working conditions the national employment law project wrote in according to a study by researchers athe university of california berkeley more than half percent ofront line fast food workers must rely on at least one public assistance program to supportheir families as a resulthe fast food industry business model of lowages non existent benefits and limited work hours costs taxpayers an average of nearly billion everyear they claim this funding allows these workers to afford health care food and other basic necessities on the go file rock roll mcdonalds from th fl of sports authorityjpg thumb mcdonald s firstwo lane drive thru was athe rock n roll mcdonald s in chicago fast food outlets are take away or take out providers that promise quick service such fast food outlets often come with a drive through service that lets customers order and pick up food from their vehicles others have indoor outdoor seating areas where customers can eat on site in recentimes the boom in it services has allowed customers torder food from their homes through their smart phone apps nearly from its inception fast food has been designed to beaten on the goften does not require traditional cutlery and is eaten as a finger food common menu items at fast food outlets include fish and chipsandwich es pita s hamburger s fried chicken french fries onion rings chickenuggets taco s pizza hot dog s and ice cream though many fast food restaurants offer slower foods like chili con carne chili mashed potatoes and salad s filling stations convenience store s located within many filling station petrol gastationsell pre packaged sandwiches doughnut s and hot food many gastations in the united states and europe also sell frozen food s and have microwave oven s on the premises in which to prepare them petrol stations in australia sell foodsuch as hot piesandwiches and chocolate bars which areasy for a customer to access while on their journey petrol stations are a place that are often open long hours and are open before and after shop trading hours therefore it makes it easy to access for consumerstreet vendors and concessions file messe jpg thumb street vendor serving fast food inepal file pajdasobotajpg thumb fastfood restaurant in eastern europe the pajda in prekmurje dialect buddy murska sobota slovenia traditional street food is available around the world usually though small and independent hawker trade vendors operating from a cartable portable grill or motor vehicle common examples include vietnam ese noodle vendors middleastern falafel stands new york city hot dog cart s and food truck taco trucks turo vendors tagalog language tagalog for point are a feature of philippines philippine life commonly street vendors provide a colorful and varying range of options designed to quickly captivate passers by and attract as much attention as possible depending on the locale multiple street vendors may specialize in specific types ofood characteristic of a given cultural or ethnic tradition in some cultures it is typical for street vendors to call out pricesing or chant sales pitches play music or engage in other forms of streetheatre streetheatrics to engage prospective customers in some cases this can garner more attention than the food cuisine file fried calamarijpg thumb deep fried squid food calamari modern commercial fast food is often highly processed and prepared in an industrial fashion ie on a large scale with standard ingredients and standardized cooking and production methods it is usually rapidly served in cartons or bags or in a plastic wrapping in a fashion that minimizes cost in most fast food operations menu items are generally made from food processing processed ingredients prepared at a central supply facility and then shipped to individual outlets where they areheated cooked usually by microwave or deep frying or assembled in a short amount of time this process ensures a consistent level of product quality and is key to being able to deliver the order quickly to the customer and eliminate labor and equipment costs in the individual stores because of commercial emphasis on quickness uniformity and low cost fast food products are often made with ingredients formulated to achieve a certain flavor consistency and to preserve freshness variants file feb sushi odaiba manytypesjpg thumb many types of sushi ready to eat chinese takeaways takeout restaurants are particularly popular in western countriesuch as the us and uk they normally offer a wide variety of asian cuisine asian food not always chinese whichas normally been fried most options are some form of noodles rice or meat in some cases the food is presented as a sm rg sbord sometimeself service the customer chooses the size of the container they wish to buy and then is free to fill it witheir choice ofood it is common to combine several options in one container and some outlets charge by weight rather than by item in large cities these restaurants may offer free delivery for purchases over a minimum amount file shish kebab mcbjpg thumb left lamb shish kebab sushi haseen rapidly rising popularity recently in the western world a form ofast food created in japan where bent is the japanese variety ofast food sushis normally cold sticky rice flavored with a sweet rice vinegar and served with some topping often fish food fish or as in the most popular kind in the west rolled inori dried laver seaweed laver with filling the filling often includes fish seafood chicken or cucumber file fast food in yamboljpg thumb a fast food kiosk in yambol bulgaria pizza is a common fast food category in the united states with nationwide chains including papa john s domino s pizza sbarro and pizza hut itrails only the burger industry in supplying children s fast food calories menus are more limited and standardized than in traditional pizzerias and pizza delivery is offered kebab shop kebab houses are a form ofast food restaurant from the middleast especially turkey and lebanon meat ishaven from a rotisserie and iserved on a warmed flatbread with salad and a choice of sauce andressing these d ner kebab doner kebabs or shawarma s are distinct from kebab shish kebabserved on sticks kebab shops are also found throughouthe world especially europe new zealand australia buthey generally are less common in the us fish and chip shops are a form ofast food popular in the united kingdom australiand new zealand fish is battered and then deep fried and served with deep fried potato strips the netherlands dutchave their own types ofast food a dutch fast food meal often consists of a portion ofrench fries called friet or patat with a sauce and a meat producthe most common sauce to accompany french fries is fritessaus it is a sweet vinegary and low fat mayonnaise substitute thathe dutch neverthelesstill call mayonnaise when ordering it is very often abbreviated to met literally with other popular sauces are ketchup or spiced ketchup curry indonesian style peanut sauce sat saus or pindasaus or piccalilli sometimes the fries are served with combinations of sauces most famously speciaal special mayonnaise with spiced ketchup and chopped onion s and oorlog literally war mayonnaise and peanut sauce sometimes also with ketchup and chopped onions the meat product is usually a deep fried snack this includes the frikandel a deep fried skinless ground meat minced meat sausage and the croquette kroket deep fried meat ragout covered in breadcrumb s file restaurante fastfood francesinhasjpg thumb a francesinha fastfood restaurant in p voa de varzim portugal file pasztecik szczeci ski barjpg thumb left a small restaurant with pasztecik szczeci skin szczecin poland in portugal there are some varieties of local fast food and restaurantspecialized in this type of local cuisine some of the most popular foods include frango assado piri grilled chicken previously marinated francesinha poveira espetada turkey or pork meat on two sticks and bifana s pork cutlets in a specific sauce served as a sandwich this type ofood is alsoften served with french fries called batatas fritasome international chainstarted appearing specialized in some of the typical portuguese fast food such as nando s an example of a local form ofast food in poland is pasztecik szczeci ski a deep fried yeast dough stuffed with meat or vegetarian filling typical fast foodish of the city of szczecin well known in many other cities in the country a dish is on polish list of traditional products the first bar serving pasztecik szczeci ski bar pasztecik founded in is located on wojska polskiego avenue in szczecin a fixture of east asia n cities is the noodle shop flatbread and falafel are today ubiquitous in the middleast popular indian fast foodishes include vada pav panipuri andahi vada in the french speaking nations of west africa street food roadside stands in and around the larger cities continue to sell as they have done for generations a range of ready to eat char grilled meat sticks known locally as brochette s noto be confused withe bread snack food snack of the same name found in europe business in the united states consumerspent billion fast food in up from billion in total the us restaurant industry had projected sales of billion in fast food has been losing market share to fast casual dining restaurants which offer more robust and expensive cuisine s due to this competition fast food giants have seen dramatic drops in their sales while overall fast food sales have fallen the amount of americans who eat in these restaurants once a month or a few times a year has risen in contrasto the rest of the world american citizenspend a much smaller amount of their income on food largely due to various government subsidies that make fast food cheap and easily accessible calorie for calorie foodsold in fast food restaurants costs less and is morenergy dense and is made mostly of products thathe government subsidizes heavily corn soy and beef the australian fast food market is valued at more than billion gpb and is composed of billion fast food meals this includes mealserviced at fast food outlets the fast food market has experienced an average annual growth rate of percent which is the most rapidly growing sector of the retail food market advertising in fast food restaurantspent roughly billion usd on advertising campaigns which represented an increase from in the same period of time mcdonald spent nearly times as much on advertising as all water milk and produce advertiserspent combined a study done by researchers from the geisel school of medicine at dartmouth college saw results that suggesthat when children watch more commercial television and see more advertisements on fast food they are more inclined to ask to visithese subsequent fast food restaurantspecifically fast food restaurants have been increasing their advertising efforts thatarget black and hispanic youth advertising on spanish speaking channels increased by in with kfc and burger king increasing spending in this demographic by while cutting down on theiregular advertising within english speaking channels the council of better business bureaustarted the children s food and beverage advertising initiative in which asked fast food companies to pledge to advertise only more healthful products to children with mcdonald s and burger king signing on however despite a slight increase in healthful food advertising theffectiveness of this initiative has been disputed by studies that reveal that children could not remember or identify healthful foods in the ads and that percent of the to year olds in that study recalled french fries even though there were no french fries in the advertisement employment according to the us bureau of labor statistics about million us workers aremployed in food preparation and serving including fast food as of the bls projected job outlook expects average growth and excellent opportunity as a result of high turnover however in april mcdonald s hired approximately neworkers and received a million applications for those positions an acceptance rate of the median age of workers in the industry in was obtaining human resource management diploma or diploma in fast food management can help to get a job in major fast food restaurantsince it is one of the most desired themployment rate for australians working in the fast food industry is increasingly high with of people working within the fast food sector in australia in australian fast food outletsold approximately billion take away meals in that year incredibly there are now more than subways domino s mcdonald s hungry jacks and kfcs in australiand new zealand it is expected that more than billion will be spent in takeaway food in australia this year making australia the th biggest spending fast food nation in the world this figure is an increase of billion in just years primeskillstatistics globalization file mcdonald s in moscow jpg thumb mcdonald s in moscow in the global fast food market grew by and reached a value of billion and a volume of billion transactions global fast food sales are projected to reach billion in indialone the fast food industry is growing by a year mcdonald s has outlets in countries on continents and operates overestaurants worldwide onexample of mcdonald s expansion a global scale was its introduction to the russian market in order for the american business to succeed it would have to be accepted and integrated into the daily lives of natives in moscow thus the restaurant wastrategically implemented so that its offerings would align withe distinct and established foodways also known as the customs around food eating and cooking of muscovites one significant characteristic of russian food culture is themphasis on knowing abouthe localness of goods that are consumed essentially in order to successfully launch this american brand in a foreign country mcdonald s interpreted the local interests of consumers in moscow by promoting the origins of the produce used in the restaurantcaldwell melissa l domesticating the french fry mcdonald s and consumerism in moscow journal of consumer culture web january on january mcdonald s opened a restaurant in moscow and broke opening day records for customerserved the moscow restaurant is the busiest in the world the largest mcdonald s in the world with feet of play tubes an arcade and play center is located in orlando florida united states there are numerous other fast food restaurants located all over the world burger king has more than restaurants in more than countries kfc is located in countriesubway restaurant subway is one of the fastest growing franchises in the world with approximately restaurants in countries as of may the first non us location opening in december in bahrain wienerwald restaurant wienerwald haspread from germany into asiand africa pizza hut is located in countries with locations in china taco bell has restaurants located in countries besides the united states criticism fast food chains have come under criticism over concerns ranging from claimed negative health effects alleged animal cruelty cases of worker exploitation and claims of cultural degradation via shifts in people s eating patterns away from traditional foodssinger peter and mason jim thethics of what weat why our food choices matter holtzbrink publisherschlosseric fast food nation the dark side of the all american meal harper collins publishers james f sallis karen glanz the role of built environments in physical activity eating and obesity in childhood the future of children volume number spring pp focassey wage theft and new york city s fast food workers new york city s hidden crime wave fast food foreword april sadhbhow america s fast food industry makes a quick buck the gulf between ceo pay and staff mcwages ishockingly wide a strike serves thisystem of super exploitation right april mello eric b rimm andavid m studderthe mclawsuithe fast food industry and legal accountability for obesity health affairs november vol no a bowman steven l gortmaker cara b ebbeling mark a pereira david s ludwig effects ofast food consumption energy intake andiet quality among children in a national household survey pediatrics vol no january pp the intake ofast food is increasing worldwide a study done in the city of jeddahashown that current fast food habits arelated to the increase of overweight and obesity among adolescents in saudi arabia in the world health organization published a study which claims that deregulated food markets are largely to blame for the obesity crisis and suggested tighteregulations to reverse the trend study finds deregulation fuelling obesity epidemic reuters february retrieved march in america local governments arestricting fast food chains by limiting the number of restaurants found in certain geographical areas to combat criticism fast food restaurants are starting toffer more health friendly menu items in addition to health critics there are suggestions for the fast food industry to become moreco friendly the chains have responded by reducing packaging waste despite so much popularity fast foods and fast food chains have adverse impacts not only on the job and social skills but on thealth and academic performance of students the researcher ofast food nation eric schlosser highlights this fact arguing thathis not only a financial but also a psychological baithe students are lured towards this early employment opportunity knowing little thathe time spent on this no skillearning job is wastedschlosseric fast food nation the dark side of all american meals mariner books new york printwotheresearchers charles hirschmand irina voloshin highlightheir dangerous impacts and consequences regarding hiring and firing of teenager school goers in the fast food industryhirschman charles and irina voloshin the structure of teenagemployment social background and the jobs held by high school seniors research in social stratification and mobility national center for biotechnology information web november kelly brownwell of the atlantic times has further supported this argumenthat another dangerous practice was adopted by burger king and mcdonald s for marketing to the innocent childrenbrownwell kelly are children prey for fast food companies the atlantic the atlantic november web november it has been found out in a research study conducted by two eminent professors purtell kelly and gershoff they found thathe students ofifth grades who ate fast foods as compared to the students of the same age after some other social factors were controlled also the percentage of the students having consumed fast food and showed poor grades was around than those who used organic foods they are of the view that other social factorsuch as television watching video games and playing were controlled to assess the real impacts of the fast foods there have been books and films designed to highlighthe potential dangers ofast food as it is mentioned heavily in regard tobesity the film supersize me showed the negative health effects of excessive fast food consumption see also fast food song food group junk food list ofast food restaurant chains list of pizza chains list of restauranterminology lists ofoods national center for health statistics panic nation slow food super size me western pattern diet references furthereading arndt michael mcdonald s business week february food and eating in medieval europe martha carlin and joel t rosenthal editors the hambledon press london hogan david selling em by the sack white castle and the creation of american food new york new york university press kroc ray with robert anderson grinding it outhe making of mcdonald st martin s press levinstein harvey paradox of plenty a social history of eating in modern america berkeley university of california p luxenberg stan roadsidempires how the chains franchised america new york viking mcginley lou ellen with stephanie spurr honk for service a man a tray and the glory days of the drive in st louis tray days publishing for photos of the parkmoorestaurantsee drive in restaurant photos pollan m in defense ofood an eater s manifesto new york city penguin schlosseric fast food nation the dark side of the all american meal houghton mifflin company schultz howard with dori jones yang pour your heart into it how starbucks built a company one cup at a time hyperion warner melanie salads or no cheap burgers revive mcdonald s the new york times april externalinks qsr magazine publication that covers the fast food industry a copy of the caesar barber lawsuit caloric intake from fast food among adults united states category fast food category convenience foods category restauranterminology","main_words":["file","fast_food","thumb","basic","popular","fast_food","meal","includes","hamburger","french_fries","soft_drink","file","fast_food","thumb","mcdonald","kentucky","fried_chicken","pizza_hut","fast_food_restaurants","united_arab_emirates","fast_food","type","mass","production","mass","produced","food","prepared","served","quickly","food","typically","less","nutritional","value","valuable","compared","tother","foods","andishes","meal","low","preparation","time","considered","fast_food","typically","term","refers","food","sold","restaurant","store","ingredients","served","customer","packaged","form","take_away","fast_food_restaurants","traditionally","distinguished","ability","serve_food","via","drive","outlets","may","stands","kiosk","may","provide","shelter","seating","fast_food_restaurant","also_known","quick","franchising","franchise","operations","part","chain","chains","standardized","restaurant","fast_food","began","withe_first","fish","chip","shops","britain","drive","restaurants","first","popularized","united_states","term","fast_food","recognized","dictionary","merriam_webster","according","national","institutes","health","fast_foods","quick","alternatives","home","cooked","meals","also","high","fat","sugar","salt","calories","last","first","karen","website","access_date","may","eating","much","fast_food","linked","among","things","cancer","obesity","high","traditional","family","dinner","increasingly","replaced","consumption","takeaway","eating","run","resulthe","time","invested","food_preparation","getting","lower","lower","average","couple","united","minutes","seconds","per_day","food_preparation","history_file","chinese","thumb","pulling","wheat","dough","thin","form","concept","ready","cooked_food","sale","closely","connected","urban","development","homes","emerging","cities","often","lacked","adequate","space","proper","food_preparation","additionally","procuring","cooking","fuel","could","cost","much","purchased","produce","frying","foods","oil","proved","dangerous","expensive","homeowners","feared","rogue","cooking","fire","might","easily","entire","neighborhood","thus","purchase","prepared","meats","bread","noodles","whenever","possible","ancient_rome","cities","street","stands","large","counter","middle","food","drink","would","served","post","american","economic","boom","americans","began","spend","buy","theconomy","culture","consumerism","result","new","desire","coupled","withe","made","women","men","away","members","household","began","work","outside","whichad","previously","considered","luxury","became","common","occurrence","necessity","workers","working","families","needed","quick","service","inexpensive","food","lunch","andinner","need","drove","success","thearly","fast_food","giants","catered","family","go","franklin","jacobs","fast_food","became","easy","option","busy","family","case","many","families","today","pre","industrial","old","world","cities","much","urban","population","living","multi","story","apartment","blocks","depended","food_vendors","much","meal","forum","served","marketplace","romans","could","purchase","baked_goods","cured","meats","mornings","bread","wine","eaten","quick","snack","cooked","vegetables","later","simple","type","eating","establishment","asia","th_century","chinese","soups","stuffed","buns","still","exist","contemporary","snack","food","home","cooked","meals","processed","legumes","purchased","even","ready","eat","meats","middle_ages","large","towns","major","london","numerous","vendors","pie","tart","waffle","pancake","cooked","meats","roman","cities","antiquity","many","thesestablishments","catered","means","cook","food","particularly","single","households","unlike","richer","town","dwellers","many","often","could","afford","housing","kitchen","facilities","thus","relied","fast_food","travelers","well","pilgrim","route","shrine","holy","site","among","customers","united_kingdom","file","first","chip","shop","thumb","left","blue","plaque","england","commemorating","origins","ofish","chips","fast_food","industry","file","fish","thumb","upright","fish","chips","areas","access","coast","tidal","waters","fast_food","frequently","included","local","shellfish","seafood","oyster","food","eels","often","close","development","commercial","fishing","mid","nineteenth_century","led","development","british","favourite","fish","chips","first","shop","prominent","meal","british","culture","created","streets","theast","end","london","year_old","jewish","boy","joseph","malin","came","withe_idea","combining","fried","fish","chips","bacon","roast","dinners","things","love","best","britain","nation","ofood","lovers","daily_mail","retrieved_november","blue","plaque","market","marks","origin","fish","chip","shop","fast_food","industries","cheap","fast_food","served","fish","chips","became","stock","meal","among","victorian_era","victorian","working_classes","fish","chip","shops","across","country","shops","george","orwell","road","pier","documenting","experience","working_class","life","north","england","author","considered","fish","chips","chief","among","home","comforts","acted","working_classes","harry","fast_food_restaurant","chain","opened","uk","single","day","fish","chip","shop","west","yorkshire","served","portions","ofish","chips","earning","place","guinness","book","records","british","fast_food","considerable","regional","variation","sometimes","dish","became","part","culture","respective","area","fried","mars","bar","content","ofast_food","pies","varied","poultry","chicken","commonly_used","since","world_war","ii","second_world_war","turkey","bird","turkey","used","frequently","fast_food","uk","adopted","fast_food","cultures","well","pizza","doner","kebab","curry","morecently","healthier","alternatives","conventional","fast_food","also","emerged","united_states","file","thumb","neighboring","fast_food_restaurant","advertisement","signs","bowlingreen","kentucky","wendy","kfc","krystal","restaurant","krystal","taco_bell","mcdonald","sign","seen","far","background","automobile","became_popular","affordable","following","world_war","drive","drive","restaurants","introduced","american","company","white_castle","restaurant","white_castle","founded","billy","walter","anderson","wichita","kansas","wichita","kansas","generally","credited","opening","second","fast_food","outlet","first","hamburger","chain","selling","hamburgers","five","cents","walter","anderson","builthe","first","white_castle","restaurant","wichita","introducing","limited","menu","high","volume","low_cost","high_speed","hamburgerestaurant","among","innovations","company","allowed","customers","see","food","prepared","white_castle","restaurant","white_castle","wasuccessful","inception","numerous","competitors","franchising","introduced","w","root","beer","franchised","distinctive","syrup","howard","johnson","first","franchised","restaurant","concept","mid","formally","advertising","service","introduced","late","mobilized","carhop","roller","united_states","largest","fast_food","industry","world","american","fast_food_restaurants","located","countries","approximately","million_us","workers","aremployed","areas","ofood","preparation","food","including","fast_food","usa","worries","obesity","epidemic","related","illnesses","inspired","many","local_government","officials","united_states","propose","limit","fast_food_restaurants","yet","us","adults","change","fast_food","consumption","even","face","rising","costs","unemployment","characterized","great","recession","great","recession","suggesting","demand","demand","however","areas","affected","others","los_angeles","county","example","restaurants","south","angeles","fast_food","chains","minimal","seating","westside","los_angeles","county","westside","restaurants","working","conditions","national","employment","law","project","wrote","according","study","researchers","athe_university","california","berkeley","half","percent","line","fast_food","workers","must","rely","least_one","public","assistance","program","supportheir","families","resulthe","fast_food","industry","business_model","lowages","non","existent","benefits","limited","work","hours","costs","average","nearly","billion","everyear","claim","funding","allows","workers","afford","health_care","food","basic","go","file","rock","roll","mcdonalds","th","sports","thumb","mcdonald","firstwo","lane","drive","thru","athe","rock_n","roll","mcdonald","chicago","fast_food","outlets","take_away","take","providers","promise","quick","service","fast_food","outlets","often","come","drive","service","lets","customers","order","pick","food","vehicles","others","indoor","outdoor","seating","areas","customers","eat","site","recentimes","boom","services","allowed","customers","torder","food","homes","smart","phone","apps","nearly","inception","fast_food","designed","beaten","require","traditional","cutlery","eaten","finger","food","common","menu_items","fast_food","outlets","include","fish","pita","hamburger","fried_chicken","french_fries","onion","rings","taco","pizza","hot_dog","ice_cream","though","many","fast_food_restaurants","offer","slower","foods","like","chili","con","carne","chili","mashed","potatoes","salad","filling","stations","convenience","store","located","within","many","filling","station","petrol","pre","packaged","sandwiches","doughnut","hot","food","many","gastations","united_states","europe","also_sell","frozen","food","microwave","oven","premises","prepare","petrol","stations","australia","sell","foodsuch","hot","chocolate","bars","areasy","customer","access","journey","petrol","stations","place","often","open","long","hours","open","shop","trading","hours","therefore","makes","easy","access","vendors","concessions","file_jpg","thumb","street_vendor","serving","fast_food","inepal","file","thumb","restaurant","eastern_europe","dialect","slovenia","traditional","street_food","available","around","world","usually","though","small","independent","hawker","trade","vendors","operating","portable","grill","motor_vehicle","common","examples_include","vietnam","ese","noodle","vendors","middleastern","falafel","stands","new_york","city","hot_dog","cart","food_truck","taco_trucks","vendors","language","point","feature","philippines","philippine","life","commonly","street_vendors","provide","colorful","varying","range","options","designed","quickly","attract","much","attention","possible","depending","locale","multiple","street_vendors","may","specialize","specific","types_ofood","characteristic","given","cultural","ethnic","tradition","cultures","typical","street_vendors","call","sales","pitches","play","music","engage","forms","engage","prospective","customers","cases","garner","attention","food","cuisine","file","fried","thumb","deep_fried","squid","food","modern","commercial","fast_food","often","highly","processed","prepared","industrial","fashion","large_scale","standard","ingredients","standardized","cooking","production","methods","usually","rapidly","served","bags","plastic","fashion","cost","fast_food","operations","menu_items","generally","made","food","processing","processed","ingredients","prepared","central","supply","facility","shipped","individual","outlets","cooked","usually","microwave","deep","frying","assembled","short","amount","time","process","ensures","consistent","level","product","quality","key","able","deliver","order","quickly","customer","eliminate","labor","equipment","costs","individual","stores","commercial","emphasis","uniformity","low_cost","fast_food","products","often","made","ingredients","formulated","achieve","certain","flavor","consistency","preserve","freshness","variants","file","feb","sushi","thumb","many","types","sushi","ready","eat","chinese","takeout","restaurants","particularly","popular","western","countriesuch","us","uk","normally","offer","wide_variety","asian","cuisine","asian","food","always","chinese","whichas","normally","fried","options","form","noodles","rice","meat","cases","food","presented","service","customer","size","container","wish","buy","free","fill","witheir","choice","ofood","common","combine","several","options","one","container","outlets","charge","weight","rather","item","large_cities","restaurants_may","offer","free","delivery","purchases","minimum","amount","file","shish","kebab","thumb","left","lamb","shish","kebab","sushi","haseen","rapidly","rising","popularity","recently","western","world","form","ofast_food","created","japan","japanese","variety","ofast_food","normally","cold","rice","sweet","rice","vinegar","served","topping","often","fish","food","fish","popular","kind","west","rolled","dried","filling","filling","often","includes","fish","seafood","chicken","file","fast_food","thumb","fast_food","kiosk","bulgaria","pizza","common","fast_food","category_united_states","nationwide","chains","including","papa","john","domino","pizza","pizza_hut","burger","industry","supplying","children","fast_food","calories","menus","limited","standardized","traditional","pizza","delivery","offered","kebab","shop","kebab","houses","form","ofast_food_restaurant","middleast","especially","turkey","lebanon","meat","rotisserie","iserved","flatbread","salad","choice","sauce","kebab","doner","distinct","kebab","shish","sticks","kebab","shops","also_found","throughouthe_world","especially","europe","new_zealand","australia","buthey","generally","less_common","us","fish","chip","shops","form","ofast_food","popular","united_kingdom","australiand_new_zealand","fish","battered","deep_fried","served","deep_fried","potato","netherlands","types","ofast_food","dutch","fast_food","meal","often","consists","portion","ofrench","fries","called","sauce","meat","common","sauce","accompany","french_fries","sweet","low","fat","mayonnaise","thathe","dutch","call","mayonnaise","ordering","often","abbreviated","met","literally","popular","sauces","ketchup","spiced","ketchup","curry","indonesian","style","peanut","sauce","sat","sometimes","fries","served","combinations","sauces","famously","special","mayonnaise","spiced","ketchup","chopped","onion","literally","war","mayonnaise","peanut","sauce","sometimes","also","ketchup","chopped","onions","meat","product","usually","deep_fried","snack","includes","deep_fried","ground","meat","minced","meat","sausage","deep_fried","meat","covered","file","thumb","restaurant","p","de","portugal","file","pasztecik","szczeci","ski","barjpg","thumb","left","small","restaurant","pasztecik","szczeci","skin","szczecin","poland","portugal","varieties","local","fast_food","type","local","cuisine","popular","foods","include","grilled","chicken","previously","marinated","turkey","pork","meat","two","sticks","pork","specific","sauce","served","sandwich","type","ofood","alsoften","served","french_fries","called","international","appearing","specialized","typical","portuguese","fast_food","nando","example","local","form","ofast_food","poland","pasztecik","szczeci","ski","deep_fried","yeast","dough","stuffed","meat","vegetarian","filling","typical","fast","city","szczecin","well_known","many","cities","country","dish","polish","list","traditional","products","first","bar","serving","pasztecik","szczeci","ski","bar","pasztecik","founded","located","avenue","szczecin","east_asia","n","cities","noodle","shop","flatbread","falafel","today","ubiquitous","middleast","popular","indian","fast","include","pav","french","speaking","nations","west","africa","street_food","roadside","stands","around","larger","cities","continue","sell","done","generations","range","ready","eat","grilled","meat","sticks","known","locally","noto","confused","withe","bread","snack","food","snack","name","found","europe","business","united_states","billion","fast_food","billion","total","us","restaurant","industry","projected","sales","billion","fast_food","losing","market_share","fast_casual","robust","expensive","cuisine","due","competition","fast_food","giants","seen","dramatic","drops","sales","overall","fast_food","sales","fallen","amount","americans","eat","restaurants","month","times","year","risen","contrasto","rest","world","american","much_smaller","amount","income","food","largely","due","various","government","subsidies","make","fast_food","cheap","easily","accessible","calorie","calorie","fast_food_restaurants","costs","less","dense","made","mostly","products","thathe_government","heavily","corn","soy","beef","australian","fast_food","market","valued","billion","composed","billion","fast_food","meals","includes","fast_food","outlets","fast_food","market","experienced","average","annual","growth","rate","percent","rapidly","growing","sector","retail","advertising","fast_food","roughly","billion","usd","advertising","campaigns","represented","increase","period","time","mcdonald","spent","nearly","times","much","advertising","water","milk","produce","combined","study","done","researchers","school","medicine","college","saw","results","suggesthat","children","watch","commercial","television","see","advertisements","fast_food","inclined","ask","subsequent","fast_food","fast_food_restaurants","increasing","advertising","efforts","black","hispanic","youth","advertising","spanish","speaking","channels","increased","kfc","burger_king","increasing","spending","demographic","cutting","advertising","within","english_speaking","channels","council","better","business","children","food","beverage","advertising","initiative","asked","fast_food","companies","advertise","healthful","products","children","mcdonald","burger_king","signing","however","despite","slight","increase","healthful","food","advertising","initiative","disputed","studies","reveal","children","could","remember","identify","healthful","foods","ads","percent","year","study","recalled","french_fries","even_though","french_fries","advertisement","employment","according","us","bureau","labor","statistics","million_us","workers","aremployed","food_preparation","serving","including","fast_food","projected","job","outlook","expects","average","growth","excellent","opportunity","result","high","turnover","however","april","mcdonald","hired","approximately","received","million","applications","positions","acceptance","rate","median","age","workers","industry","obtaining","human_resource","management","diploma","diploma","fast_food","management","help","get","job","major","one","desired","themployment","rate","australians","working","fast_food","industry","increasingly","high","people_working","within","fast_food","sector","australia","australian","fast_food","approximately","billion","take_away","meals","year","domino","mcdonald","hungry","australiand_new_zealand","expected","billion","spent","takeaway","food","australia","year","making","australia","th","biggest","spending","fast_food","nation","world","figure","increase","billion","years","globalization","file","mcdonald","moscow","jpg","thumb","mcdonald","moscow","global","fast_food","market","grew","reached","value","billion","volume","billion","transactions","global","fast_food","sales","projected","reach","billion","fast_food","industry","growing","year","mcdonald","outlets","countries","continents","operates","worldwide","onexample","mcdonald","expansion","global","scale","introduction","russian","market","order","american","business","would","accepted","integrated","daily","lives","natives","moscow","thus","restaurant","implemented","offerings","would","align","withe","distinct","established","also_known","customs","around","food","eating","cooking","one","significant","characteristic","russian","food_culture","themphasis","knowing","abouthe","goods","consumed","essentially","order","successfully","launch","american","brand","foreign_country","mcdonald","interpreted","consumers","moscow","promoting","origins","produce","used","melissa","l","french","fry","mcdonald","consumerism","moscow","journal","consumer","culture","web","january","january","mcdonald","opened","restaurant","moscow","broke","opening","day","records","moscow","restaurant","busiest","world","largest","mcdonald","world","feet","play","tubes","arcade","play","center","located","orlando_florida","united_states","numerous","fast_food_restaurants","located","world","burger_king","restaurants","countries","kfc","located","restaurant","subway","one","fastest_growing","franchises","world","approximately","restaurants","countries","may","first","non","us","location","opening","december","bahrain","restaurant","haspread","germany","asiand","africa","pizza_hut","located","countries","locations","china","taco_bell","restaurants","located","countries","besides","united_states","criticism","fast_food","chains","come","criticism","concerns","ranging","claimed","negative","health","effects","alleged","animal","cruelty","cases","worker","exploitation","claims","cultural","degradation","via","shifts","people","eating","patterns","away","traditional","peter","mason","jim","thethics","food","choices","matter","fast_food","nation","dark","side","american","meal","harper","collins","publishers","james","f","karen","role","physical","activity","eating","obesity","childhood","future","children","volume","number","spring","pp","wage","theft","new_york","city","fast_food","workers","new_york","city","hidden","crime","wave","fast_food","foreword","april","america","fast_food","industry","makes","quick","buck","gulf","ceo","pay","staff","wide","strike","serves","thisystem","super","exploitation","right","april","eric","b","andavid","fast_food","industry","legal","accountability","obesity","health","affairs","november","vol","steven","l","b","mark","david","ludwig","effects","ofast_food","consumption","energy","intake","quality","among","children","national","household","survey","vol","january","pp","intake","ofast_food","increasing","worldwide","study","done","city","current","fast_food","habits","arelated","increase","obesity","among","adolescents","saudi_arabia","world","health","organization","published","study","claims","largely","blame","obesity","crisis","suggested","reverse","trend","study","finds","obesity","epidemic","reuters","february","retrieved_march","america","local_governments","fast_food","chains","limiting","number","restaurants","found","certain","geographical","areas","combat","criticism","fast_food_restaurants","starting","toffer","health","friendly","menu_items","addition","health","critics","suggestions","fast_food","industry","become","friendly","chains","responded","reducing","packaging","waste","despite","much","popularity","fast_foods","fast_food","chains","adverse","impacts","job","social","skills","thealth","academic","performance","students","researcher","ofast_food","nation","eric","highlights","fact","arguing","thathis","financial","also","psychological","students","lured","towards","early","employment","opportunity","knowing","little","thathe","time","spent","job","fast_food","nation","dark","side","american","meals","books","new_york","charles","dangerous","impacts","consequences","regarding","hiring","firing","school","goers","fast_food","charles","structure","social","background","jobs","held","high_school","seniors","research","social","mobility","national","center","information","web","november","kelly","atlantic","times","supported","another","dangerous","practice","adopted","burger_king","mcdonald","marketing","innocent","kelly","children","prey","fast_food","companies","atlantic","atlantic","november","web","november","found","research","study","conducted","two","eminent","kelly","found","thathe","students","grades","ate","fast_foods","compared","students","age","social","factors","controlled","also","percentage","students","consumed","fast_food","showed","poor","grades","around","used","organic","foods","view","social","factorsuch","television","watching","video_games","playing","controlled","assess","real","impacts","fast_foods","books","films","designed","potential","dangers","ofast_food","mentioned","heavily","regard","film","showed","negative","health","effects","excessive","fast_food","consumption","see_also","fast_food","song","food","group","food","list","ofast_food_restaurant","chains","list","pizza","chains","list","restauranterminology","lists","ofoods","national","center","health","statistics","panic","nation","slow","food","super","size","western","pattern","diet","references_furthereading","michael","mcdonald","business","week","february","food","eating","medieval_europe","martha","editors","press","london","david","selling","white_castle","creation","american","food","new_york","new_york","university_press","kroc","ray","robert","anderson","grinding","outhe","making","mcdonald","st_martin","press","harvey","plenty","social","history","eating","modern","america","berkeley","university","california","p","stan","chains","franchised","america","new_york","viking","lou","ellen","stephanie","service","man","tray","days","drive","st_louis","tray","days","publishing","photos","drive","restaurant","photos","defense","ofood","new_york","city","penguin","fast_food","nation","dark","side","american","meal","houghton","mifflin","company","howard","jones","pour","heart","starbucks","built","company","one","cup","time","hyperion","warner","salads","cheap","burgers","revive","mcdonald","new_york","times_april","externalinks","magazine","publication","covers","fast_food","industry","copy","barber","lawsuit","intake","fast_food","among","adults","united_states","category_fast_food","category","convenience","foods","category_restauranterminology"],"clean_bigrams":[["file","fast"],["fast","food"],["popular","fast"],["fast","food"],["food","meal"],["hamburger","french"],["french","fries"],["soft","drink"],["drink","file"],["file","fast"],["fast","food"],["thumb","mcdonald"],["kentucky","fried"],["fried","chicken"],["pizza","hut"],["hut","fast"],["fast","food"],["food","restaurants"],["united","arab"],["arab","emirates"],["emirates","fast"],["fast","food"],["mass","production"],["production","mass"],["mass","produced"],["produced","food"],["food","typically"],["typically","less"],["less","nutritional"],["nutritional","value"],["valuable","compared"],["compared","tother"],["tother","foods"],["foods","andishes"],["low","preparation"],["preparation","time"],["considered","fast"],["fast","food"],["food","typically"],["term","refers"],["food","sold"],["packaged","form"],["take","away"],["away","fast"],["fast","food"],["food","restaurants"],["traditionally","distinguished"],["serve","food"],["food","via"],["via","drive"],["outlets","may"],["may","provide"],["fast","food"],["food","restaurant"],["also","known"],["quick","service"],["service","restaurants"],["restaurants","franchising"],["franchising","franchise"],["franchise","operations"],["fast","food"],["food","began"],["began","withe"],["withe","first"],["first","fish"],["chip","shops"],["first","popularized"],["united","states"],["term","fast"],["fast","food"],["merriam","webster"],["national","institutes"],["fast","foods"],["quick","alternatives"],["home","cooked"],["cooked","meals"],["also","high"],["fat","sugar"],["sugar","salt"],["first","karen"],["karen","website"],["access","date"],["date","may"],["may","eating"],["much","fast"],["fast","food"],["cancer","obesity"],["traditional","family"],["family","dinner"],["resulthe","time"],["time","invested"],["food","preparation"],["getting","lower"],["average","couple"],["seconds","per"],["per","day"],["food","preparation"],["history","file"],["file","chinese"],["thumb","pulling"],["pulling","wheat"],["wheat","dough"],["ready","cooked"],["cooked","food"],["closely","connected"],["urban","development"],["development","homes"],["emerging","cities"],["cities","often"],["often","lacked"],["lacked","adequate"],["adequate","space"],["proper","food"],["food","preparation"],["additionally","procuring"],["procuring","cooking"],["cooking","fuel"],["fuel","could"],["could","cost"],["purchased","produce"],["produce","frying"],["frying","foods"],["oil","proved"],["homeowners","feared"],["rogue","cooking"],["cooking","fire"],["fire","might"],["might","easily"],["entire","neighborhood"],["neighborhood","thus"],["purchase","prepared"],["prepared","meats"],["noodles","whenever"],["whenever","possible"],["ancient","rome"],["rome","cities"],["street","stands"],["large","counter"],["drink","would"],["american","economic"],["economic","boom"],["americans","began"],["new","desire"],["coupled","withe"],["household","began"],["work","outside"],["whichad","previously"],["luxury","became"],["common","occurrence"],["necessity","workers"],["working","families"],["families","needed"],["needed","quick"],["quick","service"],["inexpensive","food"],["lunch","andinner"],["thearly","fast"],["fast","food"],["food","giants"],["go","franklin"],["jacobs","fast"],["fast","food"],["food","became"],["easy","option"],["busy","family"],["many","families"],["families","today"],["today","pre"],["pre","industrial"],["industrial","old"],["old","world"],["urban","population"],["population","living"],["multi","story"],["story","apartment"],["apartment","blocks"],["blocks","depended"],["food","vendors"],["romans","could"],["could","purchase"],["purchase","baked"],["baked","goods"],["cured","meats"],["mornings","bread"],["quick","snack"],["cooked","vegetables"],["simple","type"],["eating","establishment"],["asia","th"],["th","century"],["century","chinese"],["stuffed","buns"],["still","exist"],["contemporary","snack"],["snack","food"],["home","cooked"],["cooked","meals"],["processed","legumes"],["legumes","purchased"],["even","ready"],["eat","meats"],["middle","ages"],["ages","large"],["large","towns"],["major","urban"],["urban","areasuch"],["numerous","vendors"],["cooked","meats"],["roman","cities"],["antiquity","many"],["thesestablishments","catered"],["food","particularly"],["particularly","single"],["single","households"],["households","unlike"],["unlike","richer"],["richer","town"],["town","dwellers"],["dwellers","many"],["many","often"],["often","could"],["afford","housing"],["kitchen","facilities"],["thus","relied"],["fast","food"],["food","travelers"],["shrine","holy"],["holy","site"],["customers","united"],["united","kingdom"],["kingdom","file"],["first","chip"],["chip","shop"],["thumb","left"],["left","blue"],["blue","plaque"],["england","commemorating"],["origins","ofish"],["fast","food"],["food","industry"],["industry","file"],["thumb","upright"],["upright","fish"],["tidal","waters"],["waters","fast"],["fast","food"],["food","frequently"],["frequently","included"],["included","local"],["local","shellfish"],["london","eel"],["eel","food"],["food","eels"],["eels","often"],["mid","nineteenth"],["nineteenth","century"],["century","led"],["british","favourite"],["favourite","fish"],["first","shop"],["prominent","meal"],["british","culture"],["theast","end"],["year","old"],["old","jewish"],["jewish","boy"],["boy","joseph"],["joseph","malin"],["withe","idea"],["combining","fried"],["fried","fish"],["chips","bacon"],["roast","dinners"],["love","best"],["nation","ofood"],["ofood","lovers"],["lovers","daily"],["daily","mail"],["mail","retrieved"],["retrieved","november"],["blue","plaque"],["market","marks"],["chip","shop"],["fast","food"],["food","industries"],["cheap","fast"],["fast","food"],["food","served"],["chips","became"],["stock","meal"],["meal","among"],["victorian","era"],["era","victorian"],["victorian","working"],["working","classes"],["chip","shops"],["shops","across"],["george","orwell"],["pier","documenting"],["working","class"],["class","life"],["author","considered"],["considered","fish"],["chips","chief"],["chief","among"],["home","comforts"],["working","classes"],["fast","food"],["food","restaurant"],["restaurant","chain"],["chain","opened"],["single","day"],["chip","shop"],["west","yorkshire"],["yorkshire","served"],["served","portions"],["portions","ofish"],["chips","earning"],["guinness","book"],["records","british"],["british","fast"],["fast","food"],["considerable","regional"],["regional","variation"],["variation","sometimes"],["dish","became"],["became","part"],["respective","area"],["fried","mars"],["mars","bar"],["content","ofast"],["ofast","food"],["food","pies"],["used","since"],["world","war"],["war","ii"],["ii","second"],["second","world"],["world","war"],["war","turkey"],["turkey","bird"],["bird","turkey"],["fast","food"],["adopted","fast"],["fast","food"],["pizza","doner"],["doner","kebab"],["curry","morecently"],["morecently","healthier"],["healthier","alternatives"],["conventional","fast"],["fast","food"],["also","emerged"],["emerged","united"],["united","states"],["states","file"],["thumb","neighboring"],["neighboring","fast"],["fast","food"],["food","restaurant"],["restaurant","advertisement"],["advertisement","signs"],["bowlingreen","kentucky"],["kfc","krystal"],["krystal","restaurant"],["restaurant","krystal"],["taco","bell"],["mcdonald","sign"],["far","background"],["became","popular"],["affordable","following"],["following","world"],["world","war"],["american","company"],["company","white"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["castle","founded"],["walter","anderson"],["wichita","kansas"],["kansas","wichita"],["wichita","kansas"],["generally","credited"],["second","fast"],["fast","food"],["food","outlet"],["first","hamburger"],["hamburger","chain"],["chain","selling"],["selling","hamburgers"],["five","cents"],["walter","anderson"],["builthe","first"],["first","white"],["white","castle"],["castle","restaurant"],["wichita","introducing"],["limited","menu"],["menu","high"],["high","volume"],["volume","low"],["low","cost"],["cost","high"],["high","speed"],["speed","hamburgerestaurant"],["hamburgerestaurant","among"],["company","allowed"],["allowed","customers"],["prepared","white"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["castle","wasuccessful"],["numerous","competitors"],["competitors","franchising"],["w","root"],["root","beer"],["distinctive","syrup"],["syrup","howard"],["howard","johnson"],["first","franchised"],["restaurant","concept"],["united","states"],["largest","fast"],["fast","food"],["food","industry"],["world","american"],["american","fast"],["fast","food"],["food","restaurants"],["restaurants","located"],["countries","approximately"],["approximately","million"],["million","us"],["us","workers"],["workers","aremployed"],["areas","ofood"],["ofood","preparation"],["including","fast"],["fast","food"],["usa","worries"],["obesity","epidemic"],["related","illnesses"],["inspired","many"],["many","local"],["local","government"],["government","officials"],["united","states"],["fast","food"],["food","restaurants"],["restaurants","yet"],["yet","us"],["us","adults"],["fast","food"],["food","consumption"],["consumption","even"],["rising","costs"],["unemployment","characterized"],["great","recession"],["recession","great"],["great","recession"],["recession","suggesting"],["demand","however"],["los","angeles"],["angeles","county"],["fast","food"],["food","chains"],["minimal","seating"],["westside","los"],["los","angeles"],["angeles","county"],["county","westside"],["restaurants","working"],["working","conditions"],["national","employment"],["employment","law"],["law","project"],["project","wrote"],["researchers","athe"],["athe","university"],["california","berkeley"],["half","percent"],["line","fast"],["fast","food"],["food","workers"],["workers","must"],["must","rely"],["least","one"],["one","public"],["public","assistance"],["assistance","program"],["supportheir","families"],["resulthe","fast"],["fast","food"],["food","industry"],["industry","business"],["business","model"],["lowages","non"],["non","existent"],["existent","benefits"],["limited","work"],["work","hours"],["hours","costs"],["nearly","billion"],["billion","everyear"],["funding","allows"],["afford","health"],["health","care"],["care","food"],["go","file"],["file","rock"],["rock","roll"],["roll","mcdonalds"],["thumb","mcdonald"],["firstwo","lane"],["lane","drive"],["drive","thru"],["athe","rock"],["rock","n"],["n","roll"],["roll","mcdonald"],["chicago","fast"],["fast","food"],["food","outlets"],["take","away"],["promise","quick"],["quick","service"],["fast","food"],["food","outlets"],["outlets","often"],["often","come"],["lets","customers"],["customers","order"],["vehicles","others"],["indoor","outdoor"],["outdoor","seating"],["seating","areas"],["allowed","customers"],["customers","torder"],["torder","food"],["smart","phone"],["phone","apps"],["apps","nearly"],["inception","fast"],["fast","food"],["require","traditional"],["traditional","cutlery"],["finger","food"],["food","common"],["common","menu"],["menu","items"],["fast","food"],["food","outlets"],["outlets","include"],["include","fish"],["fried","chicken"],["chicken","french"],["french","fries"],["fries","onion"],["onion","rings"],["pizza","hot"],["hot","dog"],["ice","cream"],["cream","though"],["though","many"],["many","fast"],["fast","food"],["food","restaurants"],["restaurants","offer"],["offer","slower"],["slower","foods"],["foods","like"],["like","chili"],["chili","con"],["con","carne"],["carne","chili"],["chili","mashed"],["mashed","potatoes"],["filling","stations"],["stations","convenience"],["convenience","store"],["located","within"],["within","many"],["many","filling"],["filling","station"],["station","petrol"],["pre","packaged"],["packaged","sandwiches"],["sandwiches","doughnut"],["hot","food"],["food","many"],["many","gastations"],["united","states"],["europe","also"],["also","sell"],["sell","frozen"],["frozen","food"],["microwave","oven"],["petrol","stations"],["australia","sell"],["sell","foodsuch"],["chocolate","bars"],["journey","petrol"],["petrol","stations"],["often","open"],["open","long"],["long","hours"],["shop","trading"],["trading","hours"],["hours","therefore"],["concessions","file"],["jpg","thumb"],["thumb","street"],["street","vendor"],["vendor","serving"],["serving","fast"],["fast","food"],["food","inepal"],["inepal","file"],["eastern","europe"],["slovenia","traditional"],["traditional","street"],["street","food"],["available","around"],["world","usually"],["usually","though"],["though","small"],["independent","hawker"],["hawker","trade"],["trade","vendors"],["vendors","operating"],["portable","grill"],["motor","vehicle"],["vehicle","common"],["common","examples"],["examples","include"],["include","vietnam"],["vietnam","ese"],["ese","noodle"],["noodle","vendors"],["vendors","middleastern"],["middleastern","falafel"],["falafel","stands"],["stands","new"],["new","york"],["york","city"],["city","hot"],["hot","dog"],["dog","cart"],["food","truck"],["truck","taco"],["taco","trucks"],["philippines","philippine"],["philippine","life"],["life","commonly"],["commonly","street"],["street","vendors"],["vendors","provide"],["varying","range"],["options","designed"],["much","attention"],["possible","depending"],["locale","multiple"],["multiple","street"],["street","vendors"],["vendors","may"],["may","specialize"],["specific","types"],["types","ofood"],["ofood","characteristic"],["given","cultural"],["ethnic","tradition"],["street","vendors"],["sales","pitches"],["pitches","play"],["play","music"],["engage","prospective"],["prospective","customers"],["food","cuisine"],["cuisine","file"],["file","fried"],["thumb","deep"],["deep","fried"],["fried","squid"],["squid","food"],["modern","commercial"],["commercial","fast"],["fast","food"],["often","highly"],["highly","processed"],["industrial","fashion"],["large","scale"],["standard","ingredients"],["standardized","cooking"],["production","methods"],["usually","rapidly"],["rapidly","served"],["cost","fast"],["fast","food"],["food","operations"],["operations","menu"],["menu","items"],["generally","made"],["food","processing"],["processing","processed"],["processed","ingredients"],["ingredients","prepared"],["central","supply"],["supply","facility"],["individual","outlets"],["cooked","usually"],["deep","frying"],["short","amount"],["process","ensures"],["consistent","level"],["product","quality"],["order","quickly"],["eliminate","labor"],["equipment","costs"],["individual","stores"],["commercial","emphasis"],["low","cost"],["cost","fast"],["fast","food"],["food","products"],["often","made"],["ingredients","formulated"],["certain","flavor"],["flavor","consistency"],["preserve","freshness"],["freshness","variants"],["variants","file"],["file","feb"],["feb","sushi"],["thumb","many"],["many","types"],["sushi","ready"],["eat","chinese"],["takeout","restaurants"],["particularly","popular"],["western","countriesuch"],["normally","offer"],["wide","variety"],["asian","cuisine"],["cuisine","asian"],["asian","food"],["always","chinese"],["chinese","whichas"],["whichas","normally"],["noodles","rice"],["witheir","choice"],["choice","ofood"],["combine","several"],["several","options"],["one","container"],["outlets","charge"],["weight","rather"],["large","cities"],["restaurants","may"],["may","offer"],["offer","free"],["free","delivery"],["minimum","amount"],["amount","file"],["file","shish"],["shish","kebab"],["thumb","left"],["left","lamb"],["lamb","shish"],["shish","kebab"],["kebab","sushi"],["sushi","haseen"],["haseen","rapidly"],["rapidly","rising"],["rising","popularity"],["popularity","recently"],["western","world"],["form","ofast"],["ofast","food"],["food","created"],["japanese","variety"],["variety","ofast"],["ofast","food"],["normally","cold"],["sweet","rice"],["rice","vinegar"],["topping","often"],["often","fish"],["fish","food"],["food","fish"],["popular","kind"],["west","rolled"],["filling","often"],["often","includes"],["includes","fish"],["fish","seafood"],["seafood","chicken"],["file","fast"],["fast","food"],["fast","food"],["food","kiosk"],["bulgaria","pizza"],["common","fast"],["fast","food"],["food","category"],["united","states"],["nationwide","chains"],["chains","including"],["including","papa"],["papa","john"],["pizza","hut"],["burger","industry"],["supplying","children"],["fast","food"],["food","calories"],["calories","menus"],["pizza","delivery"],["offered","kebab"],["kebab","shop"],["shop","kebab"],["kebab","houses"],["form","ofast"],["ofast","food"],["food","restaurant"],["middleast","especially"],["especially","turkey"],["lebanon","meat"],["kebab","doner"],["kebab","shish"],["sticks","kebab"],["kebab","shops"],["also","found"],["found","throughouthe"],["throughouthe","world"],["world","especially"],["especially","europe"],["europe","new"],["new","zealand"],["zealand","australia"],["australia","buthey"],["buthey","generally"],["less","common"],["us","fish"],["chip","shops"],["form","ofast"],["ofast","food"],["food","popular"],["united","kingdom"],["kingdom","australiand"],["australiand","new"],["new","zealand"],["zealand","fish"],["deep","fried"],["deep","fried"],["fried","potato"],["types","ofast"],["ofast","food"],["dutch","fast"],["fast","food"],["food","meal"],["meal","often"],["often","consists"],["portion","ofrench"],["ofrench","fries"],["fries","called"],["common","sauce"],["accompany","french"],["french","fries"],["low","fat"],["fat","mayonnaise"],["thathe","dutch"],["call","mayonnaise"],["often","abbreviated"],["met","literally"],["popular","sauces"],["spiced","ketchup"],["ketchup","curry"],["curry","indonesian"],["indonesian","style"],["style","peanut"],["peanut","sauce"],["sauce","sat"],["special","mayonnaise"],["spiced","ketchup"],["chopped","onion"],["literally","war"],["war","mayonnaise"],["peanut","sauce"],["sauce","sometimes"],["sometimes","also"],["chopped","onions"],["meat","product"],["deep","fried"],["fried","snack"],["deep","fried"],["ground","meat"],["meat","minced"],["minced","meat"],["meat","sausage"],["deep","fried"],["fried","meat"],["portugal","file"],["file","pasztecik"],["pasztecik","szczeci"],["szczeci","ski"],["ski","barjpg"],["barjpg","thumb"],["thumb","left"],["small","restaurant"],["pasztecik","szczeci"],["szczeci","skin"],["skin","szczecin"],["szczecin","poland"],["local","fast"],["fast","food"],["local","cuisine"],["popular","foods"],["foods","include"],["grilled","chicken"],["chicken","previously"],["previously","marinated"],["pork","meat"],["two","sticks"],["specific","sauce"],["sauce","served"],["type","ofood"],["alsoften","served"],["french","fries"],["fries","called"],["appearing","specialized"],["typical","portuguese"],["portuguese","fast"],["fast","food"],["local","form"],["form","ofast"],["ofast","food"],["pasztecik","szczeci"],["szczeci","ski"],["deep","fried"],["fried","yeast"],["yeast","dough"],["dough","stuffed"],["vegetarian","filling"],["filling","typical"],["typical","fast"],["szczecin","well"],["well","known"],["polish","list"],["traditional","products"],["first","bar"],["bar","serving"],["serving","pasztecik"],["pasztecik","szczeci"],["szczeci","ski"],["ski","bar"],["bar","pasztecik"],["pasztecik","founded"],["east","asia"],["asia","n"],["n","cities"],["noodle","shop"],["shop","flatbread"],["today","ubiquitous"],["middleast","popular"],["popular","indian"],["indian","fast"],["french","speaking"],["speaking","nations"],["west","africa"],["africa","street"],["street","food"],["food","roadside"],["roadside","stands"],["larger","cities"],["cities","continue"],["grilled","meat"],["meat","sticks"],["sticks","known"],["known","locally"],["confused","withe"],["withe","bread"],["bread","snack"],["snack","food"],["food","snack"],["name","found"],["europe","business"],["united","states"],["billion","fast"],["fast","food"],["us","restaurant"],["restaurant","industry"],["projected","sales"],["billion","fast"],["fast","food"],["losing","market"],["market","share"],["fast","casual"],["casual","dining"],["dining","restaurants"],["restaurants","offer"],["expensive","cuisine"],["competition","fast"],["fast","food"],["food","giants"],["seen","dramatic"],["dramatic","drops"],["overall","fast"],["fast","food"],["food","sales"],["world","american"],["much","smaller"],["smaller","amount"],["food","largely"],["largely","due"],["various","government"],["government","subsidies"],["make","fast"],["fast","food"],["food","cheap"],["easily","accessible"],["accessible","calorie"],["fast","food"],["food","restaurants"],["restaurants","costs"],["costs","less"],["made","mostly"],["products","thathe"],["thathe","government"],["heavily","corn"],["corn","soy"],["australian","fast"],["fast","food"],["food","market"],["billion","fast"],["fast","food"],["food","meals"],["fast","food"],["food","outlets"],["fast","food"],["food","market"],["average","annual"],["annual","growth"],["growth","rate"],["rapidly","growing"],["growing","sector"],["retail","food"],["food","market"],["market","advertising"],["fast","food"],["roughly","billion"],["billion","usd"],["advertising","campaigns"],["time","mcdonald"],["mcdonald","spent"],["spent","nearly"],["nearly","times"],["water","milk"],["study","done"],["college","saw"],["saw","results"],["children","watch"],["commercial","television"],["fast","food"],["subsequent","fast"],["fast","food"],["fast","food"],["food","restaurants"],["advertising","efforts"],["hispanic","youth"],["youth","advertising"],["spanish","speaking"],["speaking","channels"],["channels","increased"],["burger","king"],["king","increasing"],["increasing","spending"],["advertising","within"],["within","english"],["english","speaking"],["speaking","channels"],["better","business"],["beverage","advertising"],["advertising","initiative"],["asked","fast"],["fast","food"],["food","companies"],["healthful","products"],["burger","king"],["king","signing"],["however","despite"],["slight","increase"],["healthful","food"],["food","advertising"],["advertising","initiative"],["children","could"],["identify","healthful"],["healthful","foods"],["study","recalled"],["recalled","french"],["french","fries"],["fries","even"],["even","though"],["french","fries"],["advertisement","employment"],["employment","according"],["us","bureau"],["labor","statistics"],["million","us"],["us","workers"],["workers","aremployed"],["food","preparation"],["serving","including"],["including","fast"],["fast","food"],["projected","job"],["job","outlook"],["outlook","expects"],["expects","average"],["average","growth"],["excellent","opportunity"],["high","turnover"],["turnover","however"],["april","mcdonald"],["hired","approximately"],["million","applications"],["acceptance","rate"],["median","age"],["obtaining","human"],["human","resource"],["resource","management"],["management","diploma"],["fast","food"],["food","management"],["major","fast"],["fast","food"],["food","restaurantsince"],["desired","themployment"],["themployment","rate"],["australians","working"],["fast","food"],["food","industry"],["increasingly","high"],["people","working"],["working","within"],["fast","food"],["food","sector"],["australian","fast"],["fast","food"],["approximately","billion"],["billion","take"],["take","away"],["away","meals"],["australiand","new"],["new","zealand"],["takeaway","food"],["year","making"],["making","australia"],["th","biggest"],["biggest","spending"],["spending","fast"],["fast","food"],["food","nation"],["globalization","file"],["file","mcdonald"],["moscow","jpg"],["jpg","thumb"],["thumb","mcdonald"],["global","fast"],["fast","food"],["food","market"],["market","grew"],["billion","transactions"],["transactions","global"],["global","fast"],["fast","food"],["food","sales"],["reach","billion"],["billion","fast"],["fast","food"],["food","industry"],["year","mcdonald"],["worldwide","onexample"],["global","scale"],["russian","market"],["american","business"],["daily","lives"],["moscow","thus"],["offerings","would"],["would","align"],["align","withe"],["withe","distinct"],["also","known"],["customs","around"],["around","food"],["food","eating"],["one","significant"],["significant","characteristic"],["russian","food"],["food","culture"],["knowing","abouthe"],["consumed","essentially"],["successfully","launch"],["american","brand"],["foreign","country"],["country","mcdonald"],["local","interests"],["produce","used"],["melissa","l"],["french","fry"],["fry","mcdonald"],["moscow","journal"],["consumer","culture"],["culture","web"],["web","january"],["january","mcdonald"],["broke","opening"],["opening","day"],["day","records"],["moscow","restaurant"],["largest","mcdonald"],["play","tubes"],["play","center"],["orlando","florida"],["florida","united"],["united","states"],["fast","food"],["food","restaurants"],["restaurants","located"],["world","burger"],["burger","king"],["countries","kfc"],["restaurant","subway"],["fastest","growing"],["growing","franchises"],["approximately","restaurants"],["first","non"],["non","us"],["us","location"],["location","opening"],["asiand","africa"],["africa","pizza"],["pizza","hut"],["china","taco"],["taco","bell"],["restaurants","located"],["countries","besides"],["united","states"],["states","criticism"],["criticism","fast"],["fast","food"],["food","chains"],["concerns","ranging"],["claimed","negative"],["negative","health"],["health","effects"],["effects","alleged"],["alleged","animal"],["animal","cruelty"],["cruelty","cases"],["worker","exploitation"],["cultural","degradation"],["degradation","via"],["via","shifts"],["eating","patterns"],["patterns","away"],["mason","jim"],["jim","thethics"],["food","choices"],["choices","matter"],["fast","food"],["food","nation"],["dark","side"],["american","meal"],["meal","harper"],["harper","collins"],["collins","publishers"],["publishers","james"],["james","f"],["built","environments"],["physical","activity"],["activity","eating"],["children","volume"],["volume","number"],["number","spring"],["spring","pp"],["wage","theft"],["new","york"],["york","city"],["fast","food"],["food","workers"],["workers","new"],["new","york"],["york","city"],["hidden","crime"],["crime","wave"],["wave","fast"],["fast","food"],["food","foreword"],["foreword","april"],["fast","food"],["food","industry"],["industry","makes"],["quick","buck"],["ceo","pay"],["strike","serves"],["serves","thisystem"],["super","exploitation"],["exploitation","right"],["right","april"],["eric","b"],["fast","food"],["food","industry"],["legal","accountability"],["obesity","health"],["health","affairs"],["affairs","november"],["november","vol"],["steven","l"],["ludwig","effects"],["effects","ofast"],["ofast","food"],["food","consumption"],["consumption","energy"],["energy","intake"],["quality","among"],["among","children"],["national","household"],["household","survey"],["january","pp"],["intake","ofast"],["ofast","food"],["increasing","worldwide"],["study","done"],["current","fast"],["fast","food"],["food","habits"],["habits","arelated"],["obesity","among"],["among","adolescents"],["saudi","arabia"],["world","health"],["health","organization"],["organization","published"],["food","markets"],["obesity","crisis"],["trend","study"],["study","finds"],["obesity","epidemic"],["epidemic","reuters"],["reuters","february"],["february","retrieved"],["retrieved","march"],["america","local"],["local","governments"],["fast","food"],["food","chains"],["restaurants","found"],["certain","geographical"],["geographical","areas"],["combat","criticism"],["criticism","fast"],["fast","food"],["food","restaurants"],["starting","toffer"],["health","friendly"],["friendly","menu"],["menu","items"],["health","critics"],["fast","food"],["food","industry"],["reducing","packaging"],["packaging","waste"],["waste","despite"],["much","popularity"],["popularity","fast"],["fast","foods"],["fast","food"],["food","chains"],["adverse","impacts"],["social","skills"],["academic","performance"],["researcher","ofast"],["ofast","food"],["food","nation"],["nation","eric"],["fact","arguing"],["arguing","thathis"],["lured","towards"],["early","employment"],["employment","opportunity"],["opportunity","knowing"],["knowing","little"],["little","thathe"],["thathe","time"],["time","spent"],["fast","food"],["food","nation"],["dark","side"],["american","meals"],["books","new"],["new","york"],["dangerous","impacts"],["consequences","regarding"],["regarding","hiring"],["school","goers"],["fast","food"],["social","background"],["jobs","held"],["high","school"],["school","seniors"],["seniors","research"],["mobility","national"],["national","center"],["information","web"],["web","november"],["november","kelly"],["atlantic","times"],["another","dangerous"],["dangerous","practice"],["burger","king"],["children","prey"],["fast","food"],["food","companies"],["atlantic","november"],["november","web"],["web","november"],["research","study"],["study","conducted"],["two","eminent"],["found","thathe"],["thathe","students"],["ate","fast"],["fast","foods"],["social","factors"],["controlled","also"],["consumed","fast"],["fast","food"],["showed","poor"],["poor","grades"],["used","organic"],["organic","foods"],["social","factorsuch"],["television","watching"],["watching","video"],["video","games"],["real","impacts"],["fast","foods"],["films","designed"],["potential","dangers"],["dangers","ofast"],["ofast","food"],["mentioned","heavily"],["negative","health"],["health","effects"],["excessive","fast"],["fast","food"],["food","consumption"],["consumption","see"],["see","also"],["also","fast"],["fast","food"],["food","song"],["song","food"],["food","group"],["food","list"],["list","ofast"],["ofast","food"],["food","restaurant"],["restaurant","chains"],["chains","list"],["pizza","chains"],["chains","list"],["restauranterminology","lists"],["lists","ofoods"],["ofoods","national"],["national","center"],["health","statistics"],["statistics","panic"],["panic","nation"],["nation","slow"],["slow","food"],["food","super"],["super","size"],["western","pattern"],["pattern","diet"],["diet","references"],["references","furthereading"],["michael","mcdonald"],["business","week"],["week","february"],["february","food"],["food","eating"],["medieval","europe"],["europe","martha"],["press","london"],["david","selling"],["white","castle"],["american","food"],["food","new"],["new","york"],["york","new"],["new","york"],["york","university"],["university","press"],["press","kroc"],["kroc","ray"],["robert","anderson"],["anderson","grinding"],["outhe","making"],["mcdonald","st"],["st","martin"],["social","history"],["modern","america"],["america","berkeley"],["berkeley","university"],["california","p"],["chains","franchised"],["franchised","america"],["america","new"],["new","york"],["york","viking"],["lou","ellen"],["tray","days"],["st","louis"],["louis","tray"],["tray","days"],["days","publishing"],["restaurant","photos"],["defense","ofood"],["new","york"],["york","city"],["city","penguin"],["fast","food"],["food","nation"],["dark","side"],["american","meal"],["meal","houghton"],["houghton","mifflin"],["mifflin","company"],["starbucks","built"],["company","one"],["one","cup"],["time","hyperion"],["hyperion","warner"],["cheap","burgers"],["burgers","revive"],["revive","mcdonald"],["new","york"],["york","times"],["times","april"],["april","externalinks"],["magazine","publication"],["fast","food"],["food","industry"],["barber","lawsuit"],["fast","food"],["food","among"],["among","adults"],["adults","united"],["united","states"],["states","category"],["category","fast"],["fast","food"],["food","category"],["category","convenience"],["convenience","foods"],["foods","category"],["category","restauranterminology"]],"all_collocations":["file fast","fast food","popular fast","fast food","food meal","hamburger french","french fries","soft drink","drink file","file fast","fast food","thumb mcdonald","kentucky fried","fried chicken","pizza hut","hut fast","fast food","food restaurants","united arab","arab emirates","emirates fast","fast food","mass production","production mass","mass produced","produced food","food typically","typically less","less nutritional","nutritional value","valuable compared","compared tother","tother foods","foods andishes","low preparation","preparation time","considered fast","fast food","food typically","term refers","food sold","packaged form","take away","away fast","fast food","food restaurants","traditionally distinguished","serve food","food via","via drive","outlets may","may provide","fast food","food restaurant","also known","quick service","service restaurants","restaurants franchising","franchising franchise","franchise operations","fast food","food began","began withe","withe first","first fish","chip shops","first popularized","united states","term fast","fast food","merriam webster","national institutes","fast foods","quick alternatives","home cooked","cooked meals","also high","fat sugar","sugar salt","first karen","karen website","access date","date may","may eating","much fast","fast food","cancer obesity","traditional family","family dinner","resulthe time","time invested","food preparation","getting lower","average couple","seconds per","per day","food preparation","history file","file chinese","thumb pulling","pulling wheat","wheat dough","ready cooked","cooked food","closely connected","urban development","development homes","emerging cities","cities often","often lacked","lacked adequate","adequate space","proper food","food preparation","additionally procuring","procuring cooking","cooking fuel","fuel could","could cost","purchased produce","produce frying","frying foods","oil proved","homeowners feared","rogue cooking","cooking fire","fire might","might easily","entire neighborhood","neighborhood thus","purchase prepared","prepared meats","noodles whenever","whenever possible","ancient rome","rome cities","street stands","large counter","drink would","american economic","economic boom","americans began","new desire","coupled withe","household began","work outside","whichad previously","luxury became","common occurrence","necessity workers","working families","families needed","needed quick","quick service","inexpensive food","lunch andinner","thearly fast","fast food","food giants","go franklin","jacobs fast","fast food","food became","easy option","busy family","many families","families today","today pre","pre industrial","industrial old","old world","urban population","population living","multi story","story apartment","apartment blocks","blocks depended","food vendors","romans could","could purchase","purchase baked","baked goods","cured meats","mornings bread","quick snack","cooked vegetables","simple type","eating establishment","asia th","th century","century chinese","stuffed buns","still exist","contemporary snack","snack food","home cooked","cooked meals","processed legumes","legumes purchased","even ready","eat meats","middle ages","ages large","large towns","major urban","urban areasuch","numerous vendors","cooked meats","roman cities","antiquity many","thesestablishments catered","food particularly","particularly single","single households","households unlike","unlike richer","richer town","town dwellers","dwellers many","many often","often could","afford housing","kitchen facilities","thus relied","fast food","food travelers","shrine holy","holy site","customers united","united kingdom","kingdom file","first chip","chip shop","left blue","blue plaque","england commemorating","origins ofish","fast food","food industry","industry file","upright fish","tidal waters","waters fast","fast food","food frequently","frequently included","included local","local shellfish","london eel","eel food","food eels","eels often","mid nineteenth","nineteenth century","century led","british favourite","favourite fish","first shop","prominent meal","british culture","theast end","year old","old jewish","jewish boy","boy joseph","joseph malin","withe idea","combining fried","fried fish","chips bacon","roast dinners","love best","nation ofood","ofood lovers","lovers daily","daily mail","mail retrieved","retrieved november","blue plaque","market marks","chip shop","fast food","food industries","cheap fast","fast food","food served","chips became","stock meal","meal among","victorian era","era victorian","victorian working","working classes","chip shops","shops across","george orwell","pier documenting","working class","class life","author considered","considered fish","chips chief","chief among","home comforts","working classes","fast food","food restaurant","restaurant chain","chain opened","single day","chip shop","west yorkshire","yorkshire served","served portions","portions ofish","chips earning","guinness book","records british","british fast","fast food","considerable regional","regional variation","variation sometimes","dish became","became part","respective area","fried mars","mars bar","content ofast","ofast food","food pies","used since","world war","war ii","ii second","second world","world war","war turkey","turkey bird","bird turkey","fast food","adopted fast","fast food","pizza doner","doner kebab","curry morecently","morecently healthier","healthier alternatives","conventional fast","fast food","also emerged","emerged united","united states","states file","thumb neighboring","neighboring fast","fast food","food restaurant","restaurant advertisement","advertisement signs","bowlingreen kentucky","kfc krystal","krystal restaurant","restaurant krystal","taco bell","mcdonald sign","far background","became popular","affordable following","following world","world war","american company","company white","white castle","castle restaurant","restaurant white","white castle","castle founded","walter anderson","wichita kansas","kansas wichita","wichita kansas","generally credited","second fast","fast food","food outlet","first hamburger","hamburger chain","chain selling","selling hamburgers","five cents","walter anderson","builthe first","first white","white castle","castle restaurant","wichita introducing","limited menu","menu high","high volume","volume low","low cost","cost high","high speed","speed hamburgerestaurant","hamburgerestaurant among","company allowed","allowed customers","prepared white","white castle","castle restaurant","restaurant white","white castle","castle wasuccessful","numerous competitors","competitors franchising","w root","root beer","distinctive syrup","syrup howard","howard johnson","first franchised","restaurant concept","united states","largest fast","fast food","food industry","world american","american fast","fast food","food restaurants","restaurants located","countries approximately","approximately million","million us","us workers","workers aremployed","areas ofood","ofood preparation","including fast","fast food","usa worries","obesity epidemic","related illnesses","inspired many","many local","local government","government officials","united states","fast food","food restaurants","restaurants yet","yet us","us adults","fast food","food consumption","consumption even","rising costs","unemployment characterized","great recession","recession great","great recession","recession suggesting","demand however","los angeles","angeles county","fast food","food chains","minimal seating","westside los","los angeles","angeles county","county westside","restaurants working","working conditions","national employment","employment law","law project","project wrote","researchers athe","athe university","california berkeley","half percent","line fast","fast food","food workers","workers must","must rely","least one","one public","public assistance","assistance program","supportheir families","resulthe fast","fast food","food industry","industry business","business model","lowages non","non existent","existent benefits","limited work","work hours","hours costs","nearly billion","billion everyear","funding allows","afford health","health care","care food","go file","file rock","rock roll","roll mcdonalds","thumb mcdonald","firstwo lane","lane drive","drive thru","athe rock","rock n","n roll","roll mcdonald","chicago fast","fast food","food outlets","take away","promise quick","quick service","fast food","food outlets","outlets often","often come","lets customers","customers order","vehicles others","indoor outdoor","outdoor seating","seating areas","allowed customers","customers torder","torder food","smart phone","phone apps","apps nearly","inception fast","fast food","require traditional","traditional cutlery","finger food","food common","common menu","menu items","fast food","food outlets","outlets include","include fish","fried chicken","chicken french","french fries","fries onion","onion rings","pizza hot","hot dog","ice cream","cream though","though many","many fast","fast food","food restaurants","restaurants offer","offer slower","slower foods","foods like","like chili","chili con","con carne","carne chili","chili mashed","mashed potatoes","filling stations","stations convenience","convenience store","located within","within many","many filling","filling station","station petrol","pre packaged","packaged sandwiches","sandwiches doughnut","hot food","food many","many gastations","united states","europe also","also sell","sell frozen","frozen food","microwave oven","petrol stations","australia sell","sell foodsuch","chocolate bars","journey petrol","petrol stations","often open","open long","long hours","shop trading","trading hours","hours therefore","concessions file","thumb street","street vendor","vendor serving","serving fast","fast food","food inepal","inepal file","eastern europe","slovenia traditional","traditional street","street food","available around","world usually","usually though","though small","independent hawker","hawker trade","trade vendors","vendors operating","portable grill","motor vehicle","vehicle common","common examples","examples include","include vietnam","vietnam ese","ese noodle","noodle vendors","vendors middleastern","middleastern falafel","falafel stands","stands new","new york","york city","city hot","hot dog","dog cart","food truck","truck taco","taco trucks","philippines philippine","philippine life","life commonly","commonly street","street vendors","vendors provide","varying range","options designed","much attention","possible depending","locale multiple","multiple street","street vendors","vendors may","may specialize","specific types","types ofood","ofood characteristic","given cultural","ethnic tradition","street vendors","sales pitches","pitches play","play music","engage prospective","prospective customers","food cuisine","cuisine file","file fried","thumb deep","deep fried","fried squid","squid food","modern commercial","commercial fast","fast food","often highly","highly processed","industrial fashion","large scale","standard ingredients","standardized cooking","production methods","usually rapidly","rapidly served","cost fast","fast food","food operations","operations menu","menu items","generally made","food processing","processing processed","processed ingredients","ingredients prepared","central supply","supply facility","individual outlets","cooked usually","deep frying","short amount","process ensures","consistent level","product quality","order quickly","eliminate labor","equipment costs","individual stores","commercial emphasis","low cost","cost fast","fast food","food products","often made","ingredients formulated","certain flavor","flavor consistency","preserve freshness","freshness variants","variants file","file feb","feb sushi","thumb many","many types","sushi ready","eat chinese","takeout restaurants","particularly popular","western countriesuch","normally offer","wide variety","asian cuisine","cuisine asian","asian food","always chinese","chinese whichas","whichas normally","noodles rice","witheir choice","choice ofood","combine several","several options","one container","outlets charge","weight rather","large cities","restaurants may","may offer","offer free","free delivery","minimum amount","amount file","file shish","shish kebab","left lamb","lamb shish","shish kebab","kebab sushi","sushi haseen","haseen rapidly","rapidly rising","rising popularity","popularity recently","western world","form ofast","ofast food","food created","japanese variety","variety ofast","ofast food","normally cold","sweet rice","rice vinegar","topping often","often fish","fish food","food fish","popular kind","west rolled","filling often","often includes","includes fish","fish seafood","seafood chicken","file fast","fast food","fast food","food kiosk","bulgaria pizza","common fast","fast food","food category","united states","nationwide chains","chains including","including papa","papa john","pizza hut","burger industry","supplying children","fast food","food calories","calories menus","pizza delivery","offered kebab","kebab shop","shop kebab","kebab houses","form ofast","ofast food","food restaurant","middleast especially","especially turkey","lebanon meat","kebab doner","kebab shish","sticks kebab","kebab shops","also found","found throughouthe","throughouthe world","world especially","especially europe","europe new","new zealand","zealand australia","australia buthey","buthey generally","less common","us fish","chip shops","form ofast","ofast food","food popular","united kingdom","kingdom australiand","australiand new","new zealand","zealand fish","deep fried","deep fried","fried potato","types ofast","ofast food","dutch fast","fast food","food meal","meal often","often consists","portion ofrench","ofrench fries","fries called","common sauce","accompany french","french fries","low fat","fat mayonnaise","thathe dutch","call mayonnaise","often abbreviated","met literally","popular sauces","spiced ketchup","ketchup curry","curry indonesian","indonesian style","style peanut","peanut sauce","sauce sat","special mayonnaise","spiced ketchup","chopped onion","literally war","war mayonnaise","peanut sauce","sauce sometimes","sometimes also","chopped onions","meat product","deep fried","fried snack","deep fried","ground meat","meat minced","minced meat","meat sausage","deep fried","fried meat","portugal file","file pasztecik","pasztecik szczeci","szczeci ski","ski barjpg","barjpg thumb","small restaurant","pasztecik szczeci","szczeci skin","skin szczecin","szczecin poland","local fast","fast food","local cuisine","popular foods","foods include","grilled chicken","chicken previously","previously marinated","pork meat","two sticks","specific sauce","sauce served","type ofood","alsoften served","french fries","fries called","appearing specialized","typical portuguese","portuguese fast","fast food","local form","form ofast","ofast food","pasztecik szczeci","szczeci ski","deep fried","fried yeast","yeast dough","dough stuffed","vegetarian filling","filling typical","typical fast","szczecin well","well known","polish list","traditional products","first bar","bar serving","serving pasztecik","pasztecik szczeci","szczeci ski","ski bar","bar pasztecik","pasztecik founded","east asia","asia n","n cities","noodle shop","shop flatbread","today ubiquitous","middleast popular","popular indian","indian fast","french speaking","speaking nations","west africa","africa street","street food","food roadside","roadside stands","larger cities","cities continue","grilled meat","meat sticks","sticks known","known locally","confused withe","withe bread","bread snack","snack food","food snack","name found","europe business","united states","billion fast","fast food","us restaurant","restaurant industry","projected sales","billion fast","fast food","losing market","market share","fast casual","casual dining","dining restaurants","restaurants offer","expensive cuisine","competition fast","fast food","food giants","seen dramatic","dramatic drops","overall fast","fast food","food sales","world american","much smaller","smaller amount","food largely","largely due","various government","government subsidies","make fast","fast food","food cheap","easily accessible","accessible calorie","fast food","food restaurants","restaurants costs","costs less","made mostly","products thathe","thathe government","heavily corn","corn soy","australian fast","fast food","food market","billion fast","fast food","food meals","fast food","food outlets","fast food","food market","average annual","annual growth","growth rate","rapidly growing","growing sector","retail food","food market","market advertising","fast food","roughly billion","billion usd","advertising campaigns","time mcdonald","mcdonald spent","spent nearly","nearly times","water milk","study done","college saw","saw results","children watch","commercial television","fast food","subsequent fast","fast food","fast food","food restaurants","advertising efforts","hispanic youth","youth advertising","spanish speaking","speaking channels","channels increased","burger king","king increasing","increasing spending","advertising within","within english","english speaking","speaking channels","better business","beverage advertising","advertising initiative","asked fast","fast food","food companies","healthful products","burger king","king signing","however despite","slight increase","healthful food","food advertising","advertising initiative","children could","identify healthful","healthful foods","study recalled","recalled french","french fries","fries even","even though","french fries","advertisement employment","employment according","us bureau","labor statistics","million us","us workers","workers aremployed","food preparation","serving including","including fast","fast food","projected job","job outlook","outlook expects","expects average","average growth","excellent opportunity","high turnover","turnover however","april mcdonald","hired approximately","million applications","acceptance rate","median age","obtaining human","human resource","resource management","management diploma","fast food","food management","major fast","fast food","food restaurantsince","desired themployment","themployment rate","australians working","fast food","food industry","increasingly high","people working","working within","fast food","food sector","australian fast","fast food","approximately billion","billion take","take away","away meals","australiand new","new zealand","takeaway food","year making","making australia","th biggest","biggest spending","spending fast","fast food","food nation","globalization file","file mcdonald","moscow jpg","thumb mcdonald","global fast","fast food","food market","market grew","billion transactions","transactions global","global fast","fast food","food sales","reach billion","billion fast","fast food","food industry","year mcdonald","worldwide onexample","global scale","russian market","american business","daily lives","moscow thus","offerings would","would align","align withe","withe distinct","also known","customs around","around food","food eating","one significant","significant characteristic","russian food","food culture","knowing abouthe","consumed essentially","successfully launch","american brand","foreign country","country mcdonald","local interests","produce used","melissa l","french fry","fry mcdonald","moscow journal","consumer culture","culture web","web january","january mcdonald","broke opening","opening day","day records","moscow restaurant","largest mcdonald","play tubes","play center","orlando florida","florida united","united states","fast food","food restaurants","restaurants located","world burger","burger king","countries kfc","restaurant subway","fastest growing","growing franchises","approximately restaurants","first non","non us","us location","location opening","asiand africa","africa pizza","pizza hut","china taco","taco bell","restaurants located","countries besides","united states","states criticism","criticism fast","fast food","food chains","concerns ranging","claimed negative","negative health","health effects","effects alleged","alleged animal","animal cruelty","cruelty cases","worker exploitation","cultural degradation","degradation via","via shifts","eating patterns","patterns away","mason jim","jim thethics","food choices","choices matter","fast food","food nation","dark side","american meal","meal harper","harper collins","collins publishers","publishers james","james f","built environments","physical activity","activity eating","children volume","volume number","number spring","spring pp","wage theft","new york","york city","fast food","food workers","workers new","new york","york city","hidden crime","crime wave","wave fast","fast food","food foreword","foreword april","fast food","food industry","industry makes","quick buck","ceo pay","strike serves","serves thisystem","super exploitation","exploitation right","right april","eric b","fast food","food industry","legal accountability","obesity health","health affairs","affairs november","november vol","steven l","ludwig effects","effects ofast","ofast food","food consumption","consumption energy","energy intake","quality among","among children","national household","household survey","january pp","intake ofast","ofast food","increasing worldwide","study done","current fast","fast food","food habits","habits arelated","obesity among","among adolescents","saudi arabia","world health","health organization","organization published","food markets","obesity crisis","trend study","study finds","obesity epidemic","epidemic reuters","reuters february","february retrieved","retrieved march","america local","local governments","fast food","food chains","restaurants found","certain geographical","geographical areas","combat criticism","criticism fast","fast food","food restaurants","starting toffer","health friendly","friendly menu","menu items","health critics","fast food","food industry","reducing packaging","packaging waste","waste despite","much popularity","popularity fast","fast foods","fast food","food chains","adverse impacts","social skills","academic performance","researcher ofast","ofast food","food nation","nation eric","fact arguing","arguing thathis","lured towards","early employment","employment opportunity","opportunity knowing","knowing little","little thathe","thathe time","time spent","fast food","food nation","dark side","american meals","books new","new york","dangerous impacts","consequences regarding","regarding hiring","school goers","fast food","social background","jobs held","high school","school seniors","seniors research","mobility national","national center","information web","web november","november kelly","atlantic times","another dangerous","dangerous practice","burger king","children prey","fast food","food companies","atlantic november","november web","web november","research study","study conducted","two eminent","found thathe","thathe students","ate fast","fast foods","social factors","controlled also","consumed fast","fast food","showed poor","poor grades","used organic","organic foods","social factorsuch","television watching","watching video","video games","real impacts","fast foods","films designed","potential dangers","dangers ofast","ofast food","mentioned heavily","negative health","health effects","excessive fast","fast food","food consumption","consumption see","see also","also fast","fast food","food song","song food","food group","food list","list ofast","ofast food","food restaurant","restaurant chains","chains list","pizza chains","chains list","restauranterminology lists","lists ofoods","ofoods national","national center","health statistics","statistics panic","panic nation","nation slow","slow food","food super","super size","western pattern","pattern diet","diet references","references furthereading","michael mcdonald","business week","week february","february food","food eating","medieval europe","europe martha","press london","david selling","white castle","american food","food new","new york","york new","new york","york university","university press","press kroc","kroc ray","robert anderson","anderson grinding","outhe making","mcdonald st","st martin","social history","modern america","america berkeley","berkeley university","california p","chains franchised","franchised america","america new","new york","york viking","lou ellen","tray days","st louis","louis tray","tray days","days publishing","restaurant photos","defense ofood","new york","york city","city penguin","fast food","food nation","dark side","american meal","meal houghton","houghton mifflin","mifflin company","starbucks built","company one","one cup","time hyperion","hyperion warner","cheap burgers","burgers revive","revive mcdonald","new york","york times","times april","april externalinks","magazine publication","fast food","food industry","barber lawsuit","fast food","food among","among adults","adults united","united states","states category","category fast","fast food","food category","category convenience","convenience foods","foods category","category restauranterminology"],"new_description":"file fast_food thumb basic popular fast_food meal includes hamburger french_fries soft_drink file fast_food thumb mcdonald kentucky fried_chicken pizza_hut fast_food_restaurants united_arab_emirates fast_food type mass production mass produced food prepared served quickly food typically less nutritional value valuable compared tother foods andishes meal low preparation time considered fast_food typically term refers food sold restaurant store ingredients served customer packaged form take_away fast_food_restaurants traditionally distinguished ability serve_food via drive outlets may stands kiosk may provide shelter seating fast_food_restaurant also_known quick service_restaurants franchising franchise operations part chain chains standardized restaurant fast_food began withe_first fish chip shops britain drive restaurants first popularized united_states term fast_food recognized dictionary merriam_webster according national institutes health fast_foods quick alternatives home cooked meals also high fat sugar salt calories last first karen website access_date may eating much fast_food linked among things cancer obesity high traditional family dinner increasingly replaced consumption takeaway eating run resulthe time invested food_preparation getting lower lower average couple united minutes seconds per_day food_preparation history_file chinese thumb pulling wheat dough thin form concept ready cooked_food sale closely connected urban development homes emerging cities often lacked adequate space proper food_preparation additionally procuring cooking fuel could cost much purchased produce frying foods oil proved dangerous expensive homeowners feared rogue cooking fire might easily entire neighborhood thus purchase prepared meats bread noodles whenever possible ancient_rome cities street stands large counter middle food drink would served post american economic boom americans began spend buy theconomy culture consumerism result new desire coupled withe made women men away members household began work outside whichad previously considered luxury became common occurrence necessity workers working families needed quick service inexpensive food lunch andinner need drove success thearly fast_food giants catered family go franklin jacobs fast_food became easy option busy family case many families today pre industrial old world cities much urban population living multi story apartment blocks depended food_vendors much meal forum served marketplace romans could purchase baked_goods cured meats mornings bread wine eaten quick snack cooked vegetables later simple type eating establishment asia th_century chinese soups stuffed buns still exist contemporary snack food home cooked meals processed legumes purchased even ready eat meats middle_ages large towns major urban_areasuch london numerous vendors pie tart waffle pancake cooked meats roman cities antiquity many thesestablishments catered means cook food particularly single households unlike richer town dwellers many often could afford housing kitchen facilities thus relied fast_food travelers well pilgrim route shrine holy site among customers united_kingdom file first chip shop thumb left blue plaque england commemorating origins ofish chips fast_food industry file fish thumb upright fish chips areas access coast tidal waters fast_food frequently included local shellfish seafood oyster london_eel food eels often close development commercial fishing mid nineteenth_century led development british favourite fish chips first shop prominent meal british culture created streets theast end london year_old jewish boy joseph malin came withe_idea combining fried fish chips bacon roast dinners things love best britain nation ofood lovers daily_mail retrieved_november blue plaque market marks origin fish chip shop fast_food industries cheap fast_food served fish chips became stock meal among victorian_era victorian working_classes fish chip shops across country shops george orwell road pier documenting experience working_class life north england author considered fish chips chief among home comforts acted working_classes harry fast_food_restaurant chain opened uk single day fish chip shop west yorkshire served portions ofish chips earning place guinness book records british fast_food considerable regional variation sometimes dish became part culture respective area fried mars bar content ofast_food pies varied poultry chicken commonly_used since world_war ii second_world_war turkey bird turkey used frequently fast_food uk adopted fast_food cultures well pizza doner kebab curry morecently healthier alternatives conventional fast_food also emerged united_states file thumb neighboring fast_food_restaurant advertisement signs bowlingreen kentucky wendy kfc krystal restaurant krystal taco_bell mcdonald sign seen far background automobile became_popular affordable following world_war drive drive restaurants introduced american company white_castle restaurant white_castle founded billy walter anderson wichita kansas wichita kansas generally credited opening second fast_food outlet first hamburger chain selling hamburgers five cents walter anderson builthe first white_castle restaurant wichita introducing limited menu high volume low_cost high_speed hamburgerestaurant among innovations company allowed customers see food prepared white_castle restaurant white_castle wasuccessful inception numerous competitors franchising introduced w root beer franchised distinctive syrup howard johnson first franchised restaurant concept mid formally advertising service introduced late mobilized carhop roller united_states largest fast_food industry world american fast_food_restaurants located countries approximately million_us workers aremployed areas ofood preparation food including fast_food usa worries obesity epidemic related illnesses inspired many local_government officials united_states propose limit fast_food_restaurants yet us adults change fast_food consumption even face rising costs unemployment characterized great recession great recession suggesting demand demand however areas affected others los_angeles county example restaurants south angeles fast_food chains minimal seating westside los_angeles county westside restaurants working conditions national employment law project wrote according study researchers athe_university california berkeley half percent line fast_food workers must rely least_one public assistance program supportheir families resulthe fast_food industry business_model lowages non existent benefits limited work hours costs average nearly billion everyear claim funding allows workers afford health_care food basic go file rock roll mcdonalds th sports thumb mcdonald firstwo lane drive thru athe rock_n roll mcdonald chicago fast_food outlets take_away take providers promise quick service fast_food outlets often come drive service lets customers order pick food vehicles others indoor outdoor seating areas customers eat site recentimes boom services allowed customers torder food homes smart phone apps nearly inception fast_food designed beaten require traditional cutlery eaten finger food common menu_items fast_food outlets include fish pita hamburger fried_chicken french_fries onion rings taco pizza hot_dog ice_cream though many fast_food_restaurants offer slower foods like chili con carne chili mashed potatoes salad filling stations convenience store located within many filling station petrol pre packaged sandwiches doughnut hot food many gastations united_states europe also_sell frozen food microwave oven premises prepare petrol stations australia sell foodsuch hot chocolate bars areasy customer access journey petrol stations place often open long hours open shop trading hours therefore makes easy access vendors concessions file_jpg thumb street_vendor serving fast_food inepal file thumb restaurant eastern_europe dialect slovenia traditional street_food available around world usually though small independent hawker trade vendors operating portable grill motor_vehicle common examples_include vietnam ese noodle vendors middleastern falafel stands new_york city hot_dog cart food_truck taco_trucks vendors language point feature philippines philippine life commonly street_vendors provide colorful varying range options designed quickly attract much attention possible depending locale multiple street_vendors may specialize specific types_ofood characteristic given cultural ethnic tradition cultures typical street_vendors call sales pitches play music engage forms engage prospective customers cases garner attention food cuisine file fried thumb deep_fried squid food modern commercial fast_food often highly processed prepared industrial fashion large_scale standard ingredients standardized cooking production methods usually rapidly served bags plastic fashion cost fast_food operations menu_items generally made food processing processed ingredients prepared central supply facility shipped individual outlets cooked usually microwave deep frying assembled short amount time process ensures consistent level product quality key able deliver order quickly customer eliminate labor equipment costs individual stores commercial emphasis uniformity low_cost fast_food products often made ingredients formulated achieve certain flavor consistency preserve freshness variants file feb sushi thumb many types sushi ready eat chinese takeout restaurants particularly popular western countriesuch us uk normally offer wide_variety asian cuisine asian food always chinese whichas normally fried options form noodles rice meat cases food presented service customer size container wish buy free fill witheir choice ofood common combine several options one container outlets charge weight rather item large_cities restaurants_may offer free delivery purchases minimum amount file shish kebab thumb left lamb shish kebab sushi haseen rapidly rising popularity recently western world form ofast_food created japan japanese variety ofast_food normally cold rice sweet rice vinegar served topping often fish food fish popular kind west rolled dried filling filling often includes fish seafood chicken file fast_food thumb fast_food kiosk bulgaria pizza common fast_food category_united_states nationwide chains including papa john domino pizza pizza_hut burger industry supplying children fast_food calories menus limited standardized traditional pizza delivery offered kebab shop kebab houses form ofast_food_restaurant middleast especially turkey lebanon meat rotisserie iserved flatbread salad choice sauce kebab doner distinct kebab shish sticks kebab shops also_found throughouthe_world especially europe new_zealand australia buthey generally less_common us fish chip shops form ofast_food popular united_kingdom australiand_new_zealand fish battered deep_fried served deep_fried potato netherlands types ofast_food dutch fast_food meal often consists portion ofrench fries called sauce meat common sauce accompany french_fries sweet low fat mayonnaise thathe dutch call mayonnaise ordering often abbreviated met literally popular sauces ketchup spiced ketchup curry indonesian style peanut sauce sat sometimes fries served combinations sauces famously special mayonnaise spiced ketchup chopped onion literally war mayonnaise peanut sauce sometimes also ketchup chopped onions meat product usually deep_fried snack includes deep_fried ground meat minced meat sausage deep_fried meat covered file thumb restaurant p de portugal file pasztecik szczeci ski barjpg thumb left small restaurant pasztecik szczeci skin szczecin poland portugal varieties local fast_food type local cuisine popular foods include grilled chicken previously marinated turkey pork meat two sticks pork specific sauce served sandwich type ofood alsoften served french_fries called international appearing specialized typical portuguese fast_food nando example local form ofast_food poland pasztecik szczeci ski deep_fried yeast dough stuffed meat vegetarian filling typical fast city szczecin well_known many cities country dish polish list traditional products first bar serving pasztecik szczeci ski bar pasztecik founded located avenue szczecin east_asia n cities noodle shop flatbread falafel today ubiquitous middleast popular indian fast include pav french speaking nations west africa street_food roadside stands around larger cities continue sell done generations range ready eat grilled meat sticks known locally noto confused withe bread snack food snack name found europe business united_states billion fast_food billion total us restaurant industry projected sales billion fast_food losing market_share fast_casual dining_restaurants_offer robust expensive cuisine due competition fast_food giants seen dramatic drops sales overall fast_food sales fallen amount americans eat restaurants month times year risen contrasto rest world american much_smaller amount income food largely due various government subsidies make fast_food cheap easily accessible calorie calorie fast_food_restaurants costs less dense made mostly products thathe_government heavily corn soy beef australian fast_food market valued billion composed billion fast_food meals includes fast_food outlets fast_food market experienced average annual growth rate percent rapidly growing sector retail food_market advertising fast_food roughly billion usd advertising campaigns represented increase period time mcdonald spent nearly times much advertising water milk produce combined study done researchers school medicine college saw results suggesthat children watch commercial television see advertisements fast_food inclined ask subsequent fast_food fast_food_restaurants increasing advertising efforts black hispanic youth advertising spanish speaking channels increased kfc burger_king increasing spending demographic cutting advertising within english_speaking channels council better business children food beverage advertising initiative asked fast_food companies advertise healthful products children mcdonald burger_king signing however despite slight increase healthful food advertising initiative disputed studies reveal children could remember identify healthful foods ads percent year study recalled french_fries even_though french_fries advertisement employment according us bureau labor statistics million_us workers aremployed food_preparation serving including fast_food projected job outlook expects average growth excellent opportunity result high turnover however april mcdonald hired approximately received million applications positions acceptance rate median age workers industry obtaining human_resource management diploma diploma fast_food management help get job major fast_food_restaurantsince one desired themployment rate australians working fast_food industry increasingly high people_working within fast_food sector australia australian fast_food approximately billion take_away meals year domino mcdonald hungry australiand_new_zealand expected billion spent takeaway food australia year making australia th biggest spending fast_food nation world figure increase billion years globalization file mcdonald moscow jpg thumb mcdonald moscow global fast_food market grew reached value billion volume billion transactions global fast_food sales projected reach billion fast_food industry growing year mcdonald outlets countries continents operates worldwide onexample mcdonald expansion global scale introduction russian market order american business would accepted integrated daily lives natives moscow thus restaurant implemented offerings would align withe distinct established also_known customs around food eating cooking one significant characteristic russian food_culture themphasis knowing abouthe goods consumed essentially order successfully launch american brand foreign_country mcdonald interpreted local_interests consumers moscow promoting origins produce used melissa l french fry mcdonald consumerism moscow journal consumer culture web january january mcdonald opened restaurant moscow broke opening day records moscow restaurant busiest world largest mcdonald world feet play tubes arcade play center located orlando_florida united_states numerous fast_food_restaurants located world burger_king restaurants countries kfc located restaurant subway one fastest_growing franchises world approximately restaurants countries may first non us location opening december bahrain restaurant haspread germany asiand africa pizza_hut located countries locations china taco_bell restaurants located countries besides united_states criticism fast_food chains come criticism concerns ranging claimed negative health effects alleged animal cruelty cases worker exploitation claims cultural degradation via shifts people eating patterns away traditional peter mason jim thethics food choices matter fast_food nation dark side american meal harper collins publishers james f karen role built_environments physical activity eating obesity childhood future children volume number spring pp wage theft new_york city fast_food workers new_york city hidden crime wave fast_food foreword april america fast_food industry makes quick buck gulf ceo pay staff wide strike serves thisystem super exploitation right april eric b andavid fast_food industry legal accountability obesity health affairs november vol steven l b mark david ludwig effects ofast_food consumption energy intake quality among children national household survey vol january pp intake ofast_food increasing worldwide study done city current fast_food habits arelated increase obesity among adolescents saudi_arabia world health organization published study claims food_markets largely blame obesity crisis suggested reverse trend study finds obesity epidemic reuters february retrieved_march america local_governments fast_food chains limiting number restaurants found certain geographical areas combat criticism fast_food_restaurants starting toffer health friendly menu_items addition health critics suggestions fast_food industry become friendly chains responded reducing packaging waste despite much popularity fast_foods fast_food chains adverse impacts job social skills thealth academic performance students researcher ofast_food nation eric highlights fact arguing thathis financial also psychological students lured towards early employment opportunity knowing little thathe time spent job fast_food nation dark side american meals books new_york charles dangerous impacts consequences regarding hiring firing school goers fast_food charles structure social background jobs held high_school seniors research social mobility national center information web november kelly atlantic times supported another dangerous practice adopted burger_king mcdonald marketing innocent kelly children prey fast_food companies atlantic atlantic november web november found research study conducted two eminent kelly found thathe students grades ate fast_foods compared students age social factors controlled also percentage students consumed fast_food showed poor grades around used organic foods view social factorsuch television watching video_games playing controlled assess real impacts fast_foods books films designed potential dangers ofast_food mentioned heavily regard film showed negative health effects excessive fast_food consumption see_also fast_food song food group food list ofast_food_restaurant chains list pizza chains list restauranterminology lists ofoods national center health statistics panic nation slow food super size western pattern diet references_furthereading michael mcdonald business week february food eating medieval_europe martha editors press london david selling white_castle creation american food new_york new_york university_press kroc ray robert anderson grinding outhe making mcdonald st_martin press harvey plenty social history eating modern america berkeley university california p stan chains franchised america new_york viking lou ellen stephanie service man tray days drive st_louis tray days publishing photos drive restaurant photos defense ofood new_york city penguin fast_food nation dark side american meal houghton mifflin company howard jones pour heart starbucks built company one cup time hyperion warner salads cheap burgers revive mcdonald new_york times_april externalinks magazine publication covers fast_food industry copy barber lawsuit intake fast_food among adults united_states category_fast_food category convenience foods category_restauranterminology"},{"title":"Fast food restaurant","description":"file fast food restaurant in malinska im hafenjpg thumb a fast food restaurant in the port of malinska croatia file mcdonalds timesqpng thumb a mcdonald s restaurant in timesquare new york city file hkwun tong how ming lane shop cafe de coral fast food restaurant april jpg thumb a fast food restaurant in hong kong a fast food restaurant also known as a quick service restaurant qsr within the industry is a specific type of restauranthat serves fast food cuisine and has minimal foodservice table service table service the food served in fast food restaurants is typically part of a western pattern diet meat sweet diet offered from a limited menu cooked in bulk in advance and kept hot finished and packaged torder and usually available for take outake away though seating may be provided athe restaurant fast food restaurants are typically part of a chain storestaurant chains restaurant chain or franchising franchise operation that provisionstandardized ingredients and or partially prepared foods and supplies to each restauranthrough controlled supply channels the term fast food was recognized in a dictionary by merriam webster in arguably the first fast food restaurants originated in the united states with a w restaurants a w in and white castle restaurant white castle in today american founded fast food chainsuch as mcdonald s est and kfc est are multinational corporation s with outlets across the globe variations on the fast food restaurant concept include fast casual restaurant s and mobile catering trucks fast casual restaurants have higher sit in ratios and customers can sit and have their orders broughto them catering trucks often park just outside worksites and are popular with factory workers united states file big mac hamburgerjpg thumb righthe big mac hamburger made its debut in file burger king whopperjpg thumb a burger king whopper sandwich some trace the modern history ofast food in the united states to july withe opening of a fast food restaurant called the automat inew york the automat was a cafeteria with its prepared foods behind small glass windows and coin operated slots josephorn and frank hardart had already opened the first horn hardart automat in philadelphia in butheir automat broadway and th street inew york city created a sensationumerous automat restaurants were built around the country to deal withe demand automat s remained extremely popular throughouthe s and s the company also popularized the notion of take out food witheir slogan less work for mother some historians concur that a w restaurants a which opened in and began franchising in was the first fast food restaurant e tavares thus the american company white castle restaurant white castle is generally credited with opening the second fast food outlet in wichita kansas in selling hamburgers for five cents apiece from its inception and spawning numerous competitors and emulators what is certain however is that white castle made the first significant efforto standardize the food production in look of and operation ofast food hamburgerestaurants william ingram s and walter anderson s white castle system created the first fast food supply chain to provide meat buns paper goods and other supplies to theirestaurants pioneered the concept of the multi state hamburgerestaurant chain standardized the look and construction of the restaurants themselves and even developed a construction division that manufactured and builthe chain s prefabricated restaurant buildings the mcdonald speedee service system and much lateray kroc s mcdonald s outlets and hamburger university all built on principlesystems and practices that white castle had already established between and the hamburgerestaurant most associated by the public withe term fast food was created by two brothers originally from nashua new hampshire richard and maurice mcdonald opened a barbecue drive in in the city of san bernardino californiafter discovering that most of their profits came from hamburgers the brothers closed theirestaurant for three months and reopened it in as a walk up stand offering a simple menu of hamburgers french fries milkshakes coffee and coca cola served in disposable paper wrapping as a resulthey could produce hamburgers and fries constantly without waiting for customer orders and could serve them immediately hamburgers cost cents about half the price at a typical diner their streamlined production method which they named the speedee service system was influenced by the production line innovations of henry ford by the mcdonald brotherstand was restaurant equipment manufacturer prince castle s biggest purchaser of milkshake blending machines prince castle salesman ray kroc traveled to california to discover why the company had purchased almost a dozen of the units as opposed to the normal one or two found in most restaurants of the timenticed by the success of the mcdonald s concept kroc signed a franchise agreement withe brothers and began opening mcdonald s restaurants in illinois by kroc had bought outhe brothers and created what is now the modern mcdonald s mcdonald s corporatione of the major parts of his business plan was to promote cleanliness of his restaurants to growingroups of americans that had become aware ofood safety issues as part of his commitmento cleanliness kroc often took part in cleaning his own des plaines illinois outlet by hosing down the garbage cans and scrapingum off the cement another concept kroc added was great swaths of glass which enabled the customer to view the food preparation a practice still found in chainsuch as krispy kreme a clean atmosphere was only part of kroc s grander plan which separated mcdonald s from the rest of the competition and attributes to their great success kroc envisioned making his restaurants appeal to suburban families where white tower one of the original fast food restaurants had tied hamburgers to public transportation and the workingmanmcdonald s tied hamburgers to the car children and the family levinstein p at roughly the same time as kroc was conceiving what eventually became mcdonald s corporation two miami florida businessmen james mclamore andavid edgerton opened a franchise of the predecessor to what is now the international fast food restaurant chain burger king mclamore had visited the original mcdonald s hamburger stand belonging to the mcdonald brothersensing potential in their innovative assembly line based production system he decided he wanted topen a similar operation of his own the two partners eventually decided to investheir money in jacksonville florida based insta burger king originally opened in the founders and owners of the chain kieth j kramer and his wife s uncle matthew burns opened their firstores around a piece of equipment known as the insta broiler the insta broiler oven proved so successful at cooking burgers they required all of their franchises to carry the device by mclamore and edgarton were operating severalocations within the miami dade county miami dade areand were growing at a fast clip despite the success of their operation the partners discovered thathe design of the insta broiler made the unit s heating elements prone to degradation from the drippings of the beef patties the pair eventually created a mechanized gas grill that avoided the problems by changing the way the meat patties were cooked in the unit after the original company began to falter in it was purchased by mclamore and edgerton who renamed the company burger king while fast food restaurants usually have a seating area in which customers can eathe food on the premises orders are designed to be take outaken away and traditional table service is rare orders are generally taken and paid for at a wide counter withe customer waiting by the counter for a tray or container for their food a drive through service can allow customers torder and pick up food from their cars nearly from its inception fast food has been designed to beaten on the go and often does not require traditional cutlery and is eaten as a finger food common menu items at fast food outlets include fish and chipsandwich es pita s hamburger s fried chicken french fries chickenugget s taco s pizzand ice cream although many fast food restaurants offer slower foods like chili con carne chili mashed potato es and salad s modern commercial fast food is highly processed and prepared on a large scale from bulk ingredients using standardized cooking and production methods and equipment it is usually rapidly served in cartons or bags or in a plastic wrapping in a fashion which reduces operating costs by allowing rapid product identification and counting promoting longer holding time avoiding transfer of bacteriand facilitating order fulfillment in most fast food operations menu items are generally made from processed ingredients prepared at central supply facilities and then shipped to individual outlets where they are cooked usually by grill microwave or deep frying or assembled in a short amount of timeither in anticipation of upcoming orders ie to stock or in response to actual orders ie torder following standard operating procedures pre cooked products are monitored for freshness andisposed of if holding times becomexcessive this process ensures a consistent level of product quality and is key to delivering the order quickly to the customer and avoiding labor and equipment costs in the individual stores because of commercial emphasis on taste speed product safety uniformity and low cost fast food products are made with ingredients formulated to achieve an identifiable flavor aroma texture and mouth feel and to preserve freshness and control handling costs during preparation and order fulfillmenthis requires a high degree ofood engineering the use ofood additives including salt sugar seasoning flavorings and preservative s and processing techniques may limithe nutritional value of the final product value meals a value meal is a group of menu items offered together at a lower price than they would cost individually a hamburger side ofries andrink commonly constitute a value meal or combo depending on the chain value meals at fast food restaurants are common as a merchandising tactic to facilitate product bundling up selling and price discrimination most of the time they can be upgraded to a larger side andrink for a small fee the perceived creation of a discount on individual menu items in exchange for the purchase of a meal is also consistent withe loyalty marketing school of thoughto make quick service possible and to ensure accuracy and security many fast food restaurants have incorporated hospitality point of sale systems this makes it possible for kitchen crew people to view orders placed athe front counter or drive through in real time wirelessystems allow orders placed at drive through speakers to be taken by cashiers and cooks drive through and walk through configurations will allow orders to be taken at one register and paid at another modern point of sale systems can operate on computer networks using a variety of software programsales records can be generated and remote access to computereports can be given to corporate offices managers troubleshooters and other authorized personnel food service chains partner with food equipment manufacturers to design highly specialized restaurant equipment often incorporating heat sensor s timers and other electronicontrols into the design collaboration collaborative design techniquesuch as rapid visualization and computer aidedesign of restaurant kitchens are now being used to establish equipment specifications that are consistent with restaurant operating and merchandising requirements file fastfoodjpg thumb neighboring fast food restaurant advertisement signs in bowlingreen kentucky file mcdonaldskulimjpg thumb mcdonald s fast food restaurant at kulim kedah malaysia file dublin airport mcdonald s restaurantjpg thumb mcdonald s fast food restaurant at dublin airport consumer spending in the united states consumerspent about us billion fast food in which increased from billion in the national restaurant association forecasts that fast food restaurants in the us will reach billion in sales in a increase over in comparison the full service restaurant segment of the food industry is expected to generate billion in sales fast food has been losing market share to so called fast casual restaurant s which offer more robust and expensive cuisine s major international brands mcdonald s a fast food supplier opened its first franchised restaurant in the us in the uk it has become a phenomenally successful enterprise in terms ofinancial growth brand name recognition and worldwidexpansion ray kroc who boughthe franchising license from the mcdonald brothers pioneered concepts which emphasized standardization he introduced uniform products identical in all respects at each outleto increase sales kroc also insisted on cutting food costs as much as possibleventually using the mcdonald s corporation size to force suppliers to conform to this ethos other prominent international fast food companies include burger king the number two hamburger chain the world known for promoting its customized menu offerings have it your way another international fast food chain is kfc which sells chicken related products and is the number fast food company in the people s republic of china multinational corporations typically modify their menus to cater to local tastes and most overseas outlets are owned by native franchisees mcdonald s india for example uses chicken and paneerather than beef and pork in their burgers because hinduism traditionally forbids eating beef in israel some mcdonald s restaurants are kashrut kosher and respecthe jew ishabbathere is also a kashrut kosher mcdonald s in argentina in egypt indonesia morocco saudi arabia malaysia pakistand singapore all menu items are halal north america file animalfriesjpg thumb animal fries from in out burger secret menu many fast food operations have more local and regional rootsuch as white castle restaurant white castle in the midwest united states along withardee s owned by cke restaurants which alsowns carl s jr whose locations are primarily on the united states west coast krystal restaurant krystal bojangles famous chicken biscuits cook out restaurant cook out and zaxby s restaurants in the american southeast raising cane s chicken fingers raising cane s in louisianand other mostly southern states hot now in michigand wisconsin n out burger in californiarizona nevada utah and texas and original tommy s chains in southern california dick s drive in seattle washington and arcticircle restaurants arcticircle in utah and other western states halo burger around flint michigand burgerville usa burgerville in the portland oregon arealso whataburger is a popular burger chain the american south and jack in the box restaurant jack in the box is located in the west and south canada pizza chains topper s pizza canadian restaurantopper s pizzand pizza are primarily located in ontario coffee chain country style operates only in ontario and competes withe famous coffee andonut chain tim hortons maid rite restaurant is one of the oldest chain fast food restaurants in the united states founded in their specialty is a loose meat hamburger maid rites can be found in the midwest mainly iowa minnesota illinois and missourinternational brands dominant inorth america include mcdonald s burger king and wendy s the number three burger chain the usa dunkin donuts a new england based chain automobile oriented sonic drive in s from oklahoma city starbuckseattle born coffee based fast food beverage corporation kfc and taco bell which are both part of the largest restaurant conglomerate in the world yum brands andomino s pizza pizza chain known for popularizing home delivery ofast food subway restaurant subway is known for their sub sandwiches and are the largest restaurant chain to serve such food items quiznos a denver based sub shop is another fast growing sub chain yet with over locations it istill far behind subway s locations other smaller sub shops include blimpie jersey mike subs mr goodcents jimmy john s and firehouse subs firehouse a w restaurants was originally a united states and canada fast food brand but it is currently an international fast food corporation in several countries in canada the majority ofast food chains are american owned or were originally american owned but have since set up a canadian management headquarters locationsuch as panera bread chipotle mexican grill five guys and carl s jr although the case is usually american fast food chains expanding into canada canadian chainsuch as tim hortons havexpanded into states in the united states but are more prominent in border statesuch as new york and michigan tim hortons hastarted to expand tother countries outside of north america the pita pit franchise originated in canadand has expanded to the united states and other countries the canadian extreme pita franchisells low fat and salt pita sandwiches with stores in the larger canadian cities other canadian fast food chainsuch as manchu wok serve north american style asian cuisine asian foods this company is located mainly in canadand the usa with other outlets on us military bases on other continents harvey s is a canadian only burgerestaurant chain present in every province australia s fast food market began in thearly s withe opening of several american franchises including mcdonald s and kfc pizza hut was introduced in the s and burger king followed however the burger king market found thathis name was already a registered trademark to a takeaway food shop in adelaide thus the burger king australian market was forced to pick another name selecting the hungry jack s brand name prior to this the australian fast food market consisted primarily of imports from the uk fish and chips takeaway united kingdom in the united kingdomany home based fast food operations were closed in the s and s after mcdonald s became the number one outlet in the market however brands like wimpy brand wimpy still remain although the majority of branches became burger king in the republic of ireland in addition to home grown chainsuch asupermac s numerous american chainsuch as mcdonald s and burger king have also established a presence in ireland in a study developed by treatedcom was published in the irish times which named swords dublin swords in county dublin as ireland s fast food capital american chainsuch as domino s pizza mcdonald s pizza hut and kfc have a big presence in japan but local gyudon chainsuch asukiya restaurant chain sukiya matsuya foods co matsuyand yoshinoyalso blankethe country japan has its own burger chains including mos burger lotteriand freshness burger the major fast food chains indiare kfc mcdonald starbucks burger king subway pizza hut andominos these chains provide mostly western products however most indians prefer the local cuisine such asamosa s panipuri pav bhaji vada pav etc major emerging food chains include haldiram s faaso s chicking pitstop and caf coffee day inigeria mr bigg s chicken republic tantalizers and tastee fried chicken are the predominant fast food chains kfc andomino s pizza have recently entered the country fast food in pakistan varies there are many international chainserving fast food including nandos burger king kfc mcdonald s domino s pizza fatburger dunkin donutsubway pizza hut hardees telepizza steak escape and gloria jean s coffees in addition to the international chains in local cuisine people in pakistan like to have biryani bun kebab s nihari kebab rolls etc as fast food most international fast food chains like subway mcdonald s burger king etc arepresented in majorussian cities there are also local chains like teremok specializing in russian cuisine or having elements of it added into their menu south africa kfc is the most popular fast food chain south africaccording to a the sunday timesouth africa sunday timesurvey chicken licken restaurant chicken licken wimpy restaurant south africa branches wimpy and ocean basket along with nando s and steers arexamples of homegrown franchises that are highly popular within the country mcdonald subway and pizza hut have a significant presence within south africa hong kong file hk admiralty queensway far east financentre interior cafe de coral barjpg thumb a caf de coral branch in admiralty hong kong admiralty in hong kong although mcdonald s and kfc are quite popular three major local fast food chains provide hong kong style fast food namely caf de coral restaurant caf de coral fairwood restaurant fairwood and maxim s caterers limited maximx caf de coralone serves more than customers daily unlike western fast food chains these restaurants offer four different menus at differentimes of the day namely breakfast lunch afternoon teandinner siu meis offered throughouthe day dai pai dong and traditional hong kong street food may be considered close relatives of the conventional fast food outlet in israelocal burger chain burgeranch israel burgeranch is popular as are mcdonald s and burger king domino s pizza is also a popular fast food restaurant chains like mcdonald s offer kosher branches non kosher foodsuch as cheeseburger s are rare in israeli fast food chains even inon kosher branches there are many smallocal fast food chains that serve pizza hamburger sushi and local foodsuch as hummus falafel and shawarma new zealand inew zealand the fast food market began in the s with kfc opened pizza hut and mcdonald s and all three remain popular today burger king andomino s entered the market later in the s australian pizza chains eagle boys and pizza haven australia pizza haven also entered the market in the s butheir new zealand operations were later sold to pizza hut andomino s a few fast food chains have been founded inew zealand including burger fuel founded georgie pie founded but closed after falling into financial trouble and being bought out by mcdonald s and hell pizza founded in the philippines fast food is the same as in the us however the only difference is thathey serve filipino dishes and a few american products being served filipino style a fast food chain restaurant is generally owned either by the parent company of the fast food chain or a franchisee an independent party given the righto use the company s trademark and trade name in the latter case a contract is made between the franchisee and the parent company typically requiring the franchisee to pay an initial fixed fee in addition to a continual percentage of monthly sales upon opening for business the franchisee oversees the day to day operations of the restaurant and acts as a manager of the store once the contract expires the parent company may choose to renew the contract sell the franchise to another franchisee or operate the restaurant itself in most fast food chains the number ofranchised locations exceeds the number of company owned locations fast food chains rely on consistency and uniformity internal operations and brand image across all of theirestaurant locations in order to convey a sense of reliability to their customers thisense of reliability coupled with a positive customer experience brings customers to place trust in the company thisense of trust leads to increased customer loyalty which gives the company a source of recurring business when a person is presented with a choice of different restaurants to eat it is much easier for them to stick with whathey know rather than to take a gamble andive into the unknown due to the importance of consistency most companieset standards unifying their various restaurant locations with a set of common rules and regulations parent companies often rely on field representatives to ensure thathe practices ofranchised locations are consistent withe company standards however the more locations a fast food chain has the harder it is for the parent company to guarantee thathese standards are being followed moreover it is much morexpensive to discharge a franchisee for noncompliance with company standards than it is to discharge an employee for that same reason as a consequence parent companies tend to deal with franchisee violations in a morelaxed manner for the most part someone visiting a mcdonald s in the united states will have the samexperience asomeone visiting a mcdonald s in japan the interior design the menu the speed of service and the taste of the food will all be very similar however some differences do existo tailor to particular cultural differences for example in october during a midst of plummeting sales in japan mcdonald s added a shrimp burger to the japanese menu the choice to introduce a shrimp burger was no coincidence as a study stated that world consumption of shrimp was led by japan in march taco bell opened their first restaurant india because non consumption of beef is a cultural norm in light of india s dharma dharmic beliefs taco bell had to tailor its menu to the dietary distinctions of indian culture by replacing all of the beef with chicken by the same token completely meatless options were introduced to the menu due to the prevalence of vegetarianism throughouthe country health concernsome of the large fast food chains are beginning to incorporate healthier alternatives in their menu eg white meat snack wrapsalads and fresh fruit however some people see these moves as a tokenism tokenistic and commercial measure rather than appropriate reaction to ethical concerns abouthe world ecology and people s health mcdonald s announced that in march the chain would include nutritional information the packaging of all of its products in september and october during the starlink corn recall s up to million worth of corn based foods werecalled from restaurants as well asupermarkets the products contained starlink genetically modified maize genetically modified corn that was not approved for human consumption it was the first everecall of a genetically modified food thenvironmental group friends of thearthat had first detected the contaminated shells was critical of the fda for not doing its own job consumer appeal file hk sheung wan grand millennium plaza cafe de coral restaurant june jpg thumb the interior of a fast food restaurant in sheung wan hong kong fast food outlets have become popular with consumers for several reasons one is thathrough economies of scale in purchasing and producing food these companies can deliver food to consumers at a very low cost in addition although some people dislike fast food for its predictability it can be reassuring to a hungry person in a hurry or far from home in the post world war ii period in the united states fast food chains like mcdonald s rapidly gained a reputation for their cleanliness fast service and a child friendly atmosphere where families on the road could grab a quick meal or seek a break from the routine of home cooking prior to the rise of the fast food chain restaurant people generally had a choice between greasy spoon diners where the quality of the food was often questionable and service lacking or high end restaurants that werexpensive and impractical for families with children the modern stream lined convenience of the fast food restaurant provided a new alternative and appealed to americans instinct for ideas and products associated with progress technology and innovation fast food restaurants rapidly became theatery everyone could agree on with many featuring child size menu combos play areas and whimsical branding campaigns like the iconic ronald mcdonaldesigned to appeal to younger customers parents could have a few minutes of peace while children played or amused themselves withe toys included in their happy meal there is a long history ofast food advertising campaigns many of which are directed at children fast food marketing largely focuses on children and teenagers popular methods of advertising include television product placement in toys games educational materialsongs and movies character licensing and celebrity endorsements and websites advertisements targeting children mainly focus on free toys movie tie ins and other giveaways fast food restaurants use kid s meals with toys kid friendly mascots vibrant colors and play areas to draw children toward their products children s power over their parents purchases is estimated total to billion everyear fast food has become a part of american culture as a reward for children to deny a childesirable thingsuch as the advertised fast food restaurant can cause stigmatization of parents as the mean parent when it is common among other parents to comply witheir child s desires the major focus on children by the fast food industry has created controversy due to the rising issue of children obesity in americas a result of this focus in a coalition was created and run by the council of better business bureaus called children s food and beverage advertising initiative cfbai to stop ads aimed at children or to promote only whathe council dubs better for you products in ads directed towards children however it was not until that congress requested guidelines be put in place by the cfbai fdagriculture department and centers for disease control there are two basic requirements identified in the guidelines for foods that are advertised for children the food has to include healthful ingredients the food cannot contain unhealthful amounts of sugar saturated fatrans fat and salthe guidelines are voluntary but companies experience heavy pressure to comply once a company complies they have years to comply withe guidelines many fast food industries have started to comply withe guidelines although many companies have ways to go in the fast food industry spent billion to advertise unhealthy products to children and teens according to a report by the yale rudd center for food policy obesity there are points of progress that include healthier sides and beverages in most fast food restaurant kids meals the guidelines are interested in a healthier lifestyle for children and the growing problem of american obesity in other parts of the world americand american style fast food outlets have been popular for their quality customer service and novelty even though they are often the targets of popular anger towards american foreign policy or globalization more generally many consumers nonethelessee them asymbols of the wealth progress and well ordered openness of western society and they therefore become trendy attractions in many cities around the world particularly among younger people with more varied tastes impact ofast food restaurant availability over time fast food restaurants have been growing rapidly especially in urbaneighborhoods according to us research low income and predominantly african americaneighborhoods have greater exposure to fast food outlets than higher income and predominantly white areas this has put into question whether urbanized neighborhoods were targeted which causes a more unhealthy group of people compared to people from a higher socioeconomic status it has also been shown thathere is a lower chance ofinding a fast food restaurant in a suburbaneighborhood in a study of selected us locations morland et al found the number ofast food restaurants and bars was inversely proportional to the wealth of the neighborhood and that predominantly african american residential areas were four times less likely to have a supermarket near them than predominantly white areas innovations timeline walter scott of providence ri outfitted a horse drawn lunch wagon with a simple kitchen bringing hot dinners to workers first horn hardart automat opened in philadelphia horn hardart opens a second automat in manhattan walter anderson builthe first white castle restaurant white castle in wichita ks introducing the limited menu high volume low cost high speed hamburgerestaurant a w root beer took its product out of the soda fountain and into a roadside stand a w root beer began franchising itsyrup white castle restaurant white castle opens its first restaurant maid rite opened its first restaurant in muscatine iowa s howard johnson s pioneered the concept ofranchising restaurants formally standardizing menusignage and advertising in out burger begins drive through service utilizing call box technology mcdonald s opens its first restaurants outside the us mcdonald s beginserving breakfastest marketing thegg mcmuffin the us the firstarbuckstore opens in seattle washington in pike place marketo sell high quality coffee beans and equipment eleven introduces theleven products and services bigulp arby s offers nutritional information howard schultz leads purchase of the starbucks brand from its founders who adopted the name peet s coffee tea peet s and begins offering coffee drinks modeled after those sold in italian coffee bars mcdonald s beginsupersize supersizing extra value meals arcticircle becomes the first fast food restauranto sell angus cattle angus beef exclusively arby s is first fast food restauranto implement a no smoking policy mcdonald s cuts back on the amount of trans fat by percent on french fries arby s begins elimination of trans fatrans fat oils in french fries the introduction of the halal option by some fast food companiesaw thexpansion ofast food chains into muslimajority countries has resulted in a rise of restaurant options inon westernations and has also increased revenue for some western restaurant chainsemerging research on islamic marketing and tourism in the global economy p el gohary hatem some outlets offering halal options include kfc nando s pizza express and subway mcdonald s carried out a trial but decided thathe cost of operations would be too high there have also been court cases involving start up businesses during attempts to alter the halal certified method by machine killing which is againsthe beliefs of some muslims however the trend towards halal has been unpopular in some communities whichave atimes resulted internet petitions the fast food industry is a popular target for critics from anti globalization activists like jos bov to vegetarian activist groupsuch as people for thethical treatment of animals petas well as the workers themselves a number ofast food worker strikes occurred in the united states in the s in his best selling book fast food nation investigative journalist eric schlosser leveled a broad socioeconomicsocioeconomicritique againsthe fast food industry documenting how fast food rose from small family run businesses like the mcdonald brothers burger jointo large multinational corporate juggernauts whoseconomy of scaleconomies of scale radically transformed agriculture meat processing and labor markets in the late twentieth century schlosser argues that while the innovations of the fast food industry gave americans more and cheaper dining options it has come athe price of destroying thenvironment economy and small town communities of rural america while shielding consumers from the real costs of their convenient meal both in terms of health and the broader impact of large scale food production and processing on workers animals and land the fast food industry is popular in the united states the source of most of its innovation and many major international chains are based there seen asymbols of us dominance and perceived cultural imperialism american fast food franchises have often been the target of anti globalization protests andemonstrations againsthe us government in for example rioters in karachi pakistan who were initially angered because of the bombing of a shia islam shiite mosque destroyed a kfc restaurant legal issues in mcdonald s wasued in a new york court by a family who claimed thathe restaurant chain was responsible for their teenage childhood obesity daughter s obesity and attendant health problems by manipulating food s taste sugar and fat content andirecting their advertising to children the suit argued thathe company purposely misleads the public abouthe nutritional value of its product a judge dismissed the case buthe fast food industry disliked the publicity of its practices particularly the way itargets children in its advertising although further lawsuits have not materialized the issue is kept alive in the mediand political circles by those promoting the need for tort reform in response to this the personal responsibility in food consumption act cheeseburger bill was passed by the us house of representatives in it later stalled in the usenate the lawas reintroduced in only to meethe same fate this lawas claimed to ban frivolous lawsuits against producers and sellers ofood and non alcoholic drinks arising from obesity claims the bill arose because of an increase in lawsuits against fast food chains by people who claimed that eating their products made them obese disassociating themselves from any of the blame see also fast food advertising hazard analysis and critical control points haccp list ofast food restaurant chains list of hamburgerestaurants list of the largest fast food restaurant chains roadhouse facility sanitation standard operating procedures furthereading hogan david selling em by the sack white castle and the creation of american food new york new york university press kroc ray anderson robert grinding it outhe making of mcdonald s chicago contemporary books levinstein harvey paradox of plenty a social history of eating in modern america berkeley university of california p luxenberg stan roadsidempires how the chains franchised america new york viking mcginley lou ellen with stephanie spurr honk for service a man a tray and the glory days of the drive in restaurantray days publishing schlosseric fast food nation the dark side of the all american meal harpercollins publisherschultz howard and yang dori jones pour your heart into it how starbucks built a company one cup at a time hyperion category fast food restaurants category types of restaurants","main_words":["file","fast_food_restaurant","thumb","fast_food_restaurant","port","croatia","file","mcdonalds","thumb","mcdonald","restaurant","timesquare","new_york","city","file","tong","ming","lane","shop","cafe_de","coral","fast_food_restaurant","april","jpg","thumb","fast_food_restaurant","hong_kong","fast_food_restaurant","also_known","quick","service_restaurant","within","industry","specific","type","restauranthat","serves","fast_food","cuisine","minimal","foodservice","table_service","table_service","food_served","fast_food_restaurants","typically","part","western","pattern","diet","meat","sweet","diet","offered","limited","menu","cooked","bulk","advance","kept","hot","finished","packaged","torder","usually","available","take_away","though","seating","may","provided","athe","restaurant","fast_food_restaurants","typically","part","chain","chains","restaurant_chain","franchising","franchise","operation","ingredients","partially","prepared","foods","supplies","controlled","supply","channels","term","fast_food","recognized","dictionary","merriam_webster","arguably","first","fast_food_restaurants","originated","united_states","w","restaurants","w","white_castle","restaurant","white_castle","today","american","founded","fast_food","chainsuch","mcdonald","est","kfc","est","multinational","corporation","outlets","across","globe","variations","fast_food_restaurant","concept","include","fast_casual","restaurant","mobile_catering","trucks","fast_casual","restaurants","higher","sit","customers","sit","orders","broughto","catering","trucks","often","park","outside","popular","factory","workers","united_states","file","big","thumb_righthe","big","hamburger","made","debut","file","burger_king","thumb","burger_king","sandwich","trace","modern","history","ofast_food","united_states","july","withe","opening","fast_food_restaurant","called","automat","inew_york","automat","cafeteria","prepared","foods","behind","small","glass","windows","coin","operated","frank","already","opened","first","horn_hardart","automat","philadelphia","butheir","automat","broadway","th_street","inew_york_city","created","automat","restaurants","built","around","country","deal","withe","demand","automat","remained","extremely","popular","throughouthe","company_also","popularized","notion","take","food","witheir","slogan","less","work","mother","historians","w","restaurants","opened","began","franchising","first","fast_food_restaurant","e","thus","american","company","white_castle","restaurant","white_castle","generally","credited","opening","second","fast_food","outlet","wichita","kansas","selling","hamburgers","five","cents","inception","numerous","competitors","certain","however","white_castle","made","first","significant","efforto","food","production","look","operation","ofast_food","william","walter","anderson","white_castle","system","created","first","fast_food","supply","chain","provide","meat","buns","paper","goods","supplies","pioneered","concept","multi","state","hamburgerestaurant","chain","standardized","look","construction","restaurants","even","developed","construction","division","manufactured","builthe","chain","prefabricated","restaurant","buildings","mcdonald","service","system","much","kroc","mcdonald","outlets","hamburger","university","built","practices","white_castle","already","established","hamburgerestaurant","associated","public","withe","term","fast_food","created","two","brothers","originally","new_hampshire","richard","maurice","mcdonald","opened","barbecue","drive","city","san","discovering","profits","came","hamburgers","brothers","closed","three_months","reopened","walk","stand","offering","simple","menu","hamburgers","french_fries","coffee","coca","cola","served","disposable","paper","could","produce","hamburgers","fries","constantly","without","waiting","customer","orders","could","serve","immediately","hamburgers","cost","cents","half","price","typical","diner","streamlined","production","method","named","service","system","influenced","production","line","innovations","henry","ford","mcdonald","restaurant","equipment","manufacturer","prince","castle","biggest","milkshake","machines","prince","castle","ray","kroc","traveled","california","discover","company","purchased","almost","dozen","units","opposed","normal","one","two","found","restaurants","success","mcdonald","concept","kroc","signed","franchise","agreement","withe","brothers","began","opening","mcdonald","restaurants","illinois","kroc","bought","outhe","brothers","created","modern","mcdonald","mcdonald","major","parts","business","plan","promote","cleanliness","restaurants","americans","become","aware","ofood","safety","issues","part","commitmento","cleanliness","kroc","often","took","part","cleaning","des","illinois","outlet","garbage","cans","another","concept","kroc","added","great","glass","enabled","customer","view","food_preparation","practice","still","found","chainsuch","clean","atmosphere","part","kroc","plan","separated","mcdonald","rest","competition","attributes","great","success","kroc","envisioned","making","restaurants","appeal","suburban","families","white","tower","one","original","fast_food_restaurants","tied","hamburgers","public_transportation","tied","hamburgers","car","children","family","p","roughly","time","kroc","eventually","became","mcdonald","corporation","two","miami","florida","businessmen","james","mclamore","andavid","opened","franchise","predecessor","international","fast_food_restaurant","chain","burger_king","mclamore","visited","original","mcdonald","hamburger","stand","belonging","mcdonald","potential","innovative","assembly","line","based","production","system","decided","wanted","topen","similar","operation","two","partners","eventually","decided","money","jacksonville","florida","based","insta","burger_king","originally","opened","founders","owners","chain","j","wife","uncle","matthew","burns","opened","around","piece","equipment","known","insta","insta","oven","proved","successful","cooking","burgers","required","franchises","carry","device","mclamore","operating","within","miami","county","miami","areand","growing","fast","despite","success","operation","partners","discovered","thathe","design","insta","made","unit","heating","elements","prone","degradation","beef","pair","eventually","created","mechanized","gas","grill","avoided","problems","changing","way","meat","cooked","unit","original","company","began","purchased","mclamore","renamed","company","burger_king","fast_food_restaurants","usually","seating","area","customers","eathe","food","premises","orders","designed","take_away","traditional","table_service","rare","orders","generally","taken","paid","wide","counter","withe","customer","waiting","counter","tray","container","food","drive","service","allow","customers","torder","pick","food","cars","nearly","inception","fast_food","designed","beaten","go","often","require","traditional","cutlery","eaten","finger","food","common","menu_items","fast_food","outlets","include","fish","pita","hamburger","fried_chicken","french_fries","taco","ice_cream","although_many","fast_food_restaurants","offer","slower","foods","like","chili","con","carne","chili","mashed","potato","salad","modern","commercial","fast_food","highly","processed","prepared","large_scale","bulk","ingredients","using","standardized","cooking","production","methods","equipment","usually","rapidly","served","bags","plastic","fashion","reduces","operating","costs","allowing","rapid","product","identification","counting","promoting","longer","holding","time","avoiding","transfer","facilitating","order","fast_food","operations","menu_items","generally","made","processed","ingredients","prepared","central","supply","facilities","shipped","individual","outlets","cooked","usually","grill","microwave","deep","frying","assembled","short","amount","upcoming","orders","stock","response","actual","orders","torder","following","standard","operating","procedures","pre","cooked","products","monitored","freshness","holding","times","process","ensures","consistent","level","product","quality","key","delivering","order","quickly","customer","avoiding","labor","equipment","costs","individual","stores","commercial","emphasis","taste","speed","product","safety","uniformity","low_cost","fast_food","products","made","ingredients","formulated","achieve","flavor","texture","mouth","feel","preserve","freshness","control","handling","costs","preparation","order","requires","high","degree","ofood","engineering","use","ofood","including","salt","sugar","seasoning","processing","techniques","may","limithe","nutritional","value","final","product","value","meals","value","meal","group","menu_items","offered","together","lower","price","would","cost","individually","hamburger","side","andrink","commonly","constitute","value","meal","depending","chain","value","meals","fast_food_restaurants","common","merchandising","facilitate","product","selling","price","discrimination","time","upgraded","larger","side","andrink","small","fee","perceived","creation","discount","individual","menu_items","exchange","purchase","meal","also","consistent","withe","loyalty","marketing","school","thoughto","make","quick","service","possible","ensure","accuracy","security","many","fast_food_restaurants","incorporated","hospitality","point","sale","systems","makes","possible","kitchen","crew","people","view","orders","placed","athe","front","counter","drive","real_time","allow","orders","placed","drive","speakers","taken","cooks","drive","walk","configurations","allow","orders","taken","one","register","paid","another","modern","point","sale","systems","operate","computer","networks","using","variety","software","records","generated","remote","access","given","corporate","offices","managers","authorized","personnel","food_service","chains","partner","food","equipment","manufacturers","design","highly","specialized","restaurant","equipment","often","incorporating","heat","sensor","design","collaboration","collaborative","design","rapid","computer","restaurant","kitchens","used","establish","equipment","specifications","consistent","restaurant","operating","merchandising","requirements","file","thumb","neighboring","fast_food_restaurant","advertisement","signs","bowlingreen","kentucky","file","thumb","mcdonald","fast_food_restaurant","malaysia","file","dublin","airport","mcdonald","restaurantjpg","thumb","mcdonald","fast_food_restaurant","dublin","airport","consumer","spending","united_states","us_billion","fast_food","increased","billion","national","restaurant","association","fast_food_restaurants","us","reach","billion","sales","increase","comparison","full_service","restaurant","segment","food_industry","expected","generate","billion","sales","fast_food","losing","market_share","called","fast_casual","restaurant","offer","robust","expensive","cuisine","major_international","brands","mcdonald","fast_food","supplier","opened","first","franchised","restaurant","us","uk","become","successful","enterprise","terms","ofinancial","growth","brand_name","recognition","ray","kroc","boughthe","franchising","license","mcdonald","brothers","pioneered","concepts","emphasized","standardization","introduced","uniform","products","identical","respects","increase","sales","kroc","also","cutting","much","using","mcdonald","corporation","size","force","suppliers","conform","prominent","international","fast_food","companies","include","burger_king","number","two","hamburger","chain","world","known","promoting","customized","menu","offerings","way","another","international","fast_food","chain","kfc","sells","chicken","related","products","number","fast_food","company","people","republic","china","multinational","corporations","typically","modify","menus","cater","local","tastes","overseas","outlets","owned","native","franchisees","mcdonald","india","example","uses","chicken","beef","pork","burgers","traditionally","eating","beef","israel","mcdonald","restaurants","kashrut","kosher","respecthe","also","kashrut","kosher","mcdonald","argentina","egypt","indonesia","morocco","saudi_arabia","malaysia","pakistand","singapore","menu_items","halal","north_america","file","thumb","animal","fries","burger","secret","menu","many","fast_food","operations","local","regional","white_castle","restaurant","white_castle","midwest","united_states","along","owned","cke","restaurants","alsowns","carl","whose","locations","primarily","united_states","west_coast","krystal","restaurant","krystal","famous","chicken","biscuits","cook","restaurant","cook","restaurants","american","southeast","raising","cane","chicken","fingers","raising","cane","mostly","southern","states","hot","michigand","wisconsin","n","burger","nevada","utah","texas","original","chains","southern_california","dick","drive","seattle_washington","arcticircle","restaurants","arcticircle","utah","western","states","burger","around","flint","michigand","usa","portland_oregon","popular","burger","chain","american","south","jack","box","restaurant","jack","box","located","west","south","canada","pizza","chains","pizza","canadian","pizza","primarily","located","ontario","coffee","chain","country","style","operates","ontario","withe","famous","coffee","chain","tim","hortons","maid","rite","restaurant","one","oldest","chain","fast_food_restaurants","united_states","founded","specialty","loose","meat","hamburger","maid","rites","found","midwest","mainly","iowa","minnesota","illinois","brands","dominant","inorth_america","include","mcdonald","burger_king","wendy","number","three","burger","chain","usa","new_england","based","chain","automobile","oriented","sonic","drive","oklahoma_city","born","coffee","based","fast_food","beverage","corporation","kfc","taco_bell","part","largest","restaurant","world","yum","brands","andomino","pizza","pizza","chain","known","popularizing","home","delivery","ofast_food","subway","restaurant","subway","known","sub","sandwiches","largest","restaurant_chain","serve_food","items","denver","based","sub","shop","another","fast_growing","sub","chain","yet","locations","istill","far","behind","subway","locations","smaller","sub","shops","include","jersey","mike","jimmy","firehouse","w","restaurants","originally","united_states","canada","fast_food","brand","currently","international","fast_food","corporation","several","countries","canada","majority","american","owned","originally","american","owned","since","set","canadian","management","headquarters","locationsuch","bread","chipotle","mexican","grill","five","guys","carl","although","case","usually","american","fast_food","chains","expanding","canada","canadian","chainsuch","tim","hortons","states","united_states","prominent","border","new_york","michigan","tim","hortons","expand","tother","countries","outside","north_america","pita","pit","franchise","originated","canadand","expanded","united_states","countries","canadian","extreme","pita","low","fat","salt","pita","sandwiches","stores","larger","canadian","cities","canadian","fast_food","chainsuch","serve","north_american","style","asian","cuisine","asian","foods","company","located","mainly","canadand","usa","outlets","us","military","bases","continents","harvey","canadian","chain","present","every","province","australia","fast_food","market","began","thearly","withe","opening","several","american","franchises","including","mcdonald","kfc","pizza_hut","introduced","burger_king","followed","however","burger_king","market","found","thathis","name","already","registered","trademark","takeaway","food","shop","adelaide","thus","burger_king","australian","market","forced","pick","another","name","selecting","hungry","jack","brand_name","prior","australian","fast_food","market","consisted","primarily","imports","uk","fish","chips","takeaway","united_kingdom","united","home","based","fast_food","operations","closed","mcdonald","became","number","one","outlet","market","however","brands","like","wimpy","brand","wimpy","still","remain","although","majority","branches","became","burger_king","republic","ireland","addition","home","grown","chainsuch","numerous","american","chainsuch","mcdonald","burger_king","also","established","presence","ireland","study","developed","published","irish","times","named","dublin","county","dublin","ireland","fast_food","capital","american","chainsuch","domino","pizza","mcdonald","pizza_hut","kfc","big","presence","japan","local","chainsuch","restaurant_chain","foods","country","japan","burger","chains","including","burger","freshness","burger","major","fast_food","chains","indiare","kfc","mcdonald","starbucks","burger_king","subway","pizza_hut","chains","provide","mostly","western","products","however","indians","prefer","local","cuisine","pav","pav","etc","major","emerging","food_chains","include","caf","coffee","day","inigeria","chicken","republic","fried_chicken","fast_food","chains","kfc","andomino","pizza","recently","entered","country","fast_food","pakistan","varies","many","international","fast_food","including","burger_king","kfc","mcdonald","domino","pizza","pizza_hut","steak","escape","gloria","jean","addition","international","chains","local","cuisine","people","pakistan","like","bun","kebab","kebab","rolls","etc","fast_food","international","fast_food","chains","like","subway","mcdonald","burger_king","etc","arepresented","cities","also","local","chains","like","specializing","russian","cuisine","elements","added","menu","south_africa","kfc","popular","fast_food","chain","south","sunday","africa","sunday","chicken","restaurant","chicken","wimpy","restaurant","south_africa","branches","wimpy","ocean","basket","along","nando","arexamples","homegrown","franchises","highly","popular","within","country","mcdonald","subway","pizza_hut","significant","presence","within","south_africa","hong_kong","file","far","east","interior","cafe_de","coral","barjpg","thumb","caf_de","coral","branch","hong_kong","hong_kong","although","mcdonald","kfc","quite","popular","three_major","local","fast_food","chains","provide","hong_kong","style","fast_food","namely","caf_de","coral","restaurant","caf_de","coral","restaurant","caterers","limited","caf_de","serves","customers","daily","unlike","western","fast_food","chains","restaurants_offer","four","different","menus","day","namely","breakfast","lunch","afternoon","offered","throughouthe","day","dai_pai_dong","traditional","hong_kong","street_food","may","considered","close","relatives","conventional","fast_food","outlet","burger","chain","israel","popular","mcdonald","burger_king","domino","pizza","also_popular","fast_food_restaurant","chains","like","mcdonald","offer","kosher","branches","non","kosher","foodsuch","cheeseburger","rare","israeli","fast_food","chains","even","inon","kosher","branches","many","fast_food","chains","serve","pizza","hamburger","sushi","falafel","new_zealand","inew_zealand","fast_food","market","began","kfc","opened","pizza_hut","mcdonald","three","remain","popular","today","burger_king","andomino","entered","market","later","australian","pizza","chains","eagle","boys","pizza","australia","pizza","also","entered","market","butheir","new_zealand","operations","later","sold","pizza_hut","andomino","fast_food","chains","founded","inew_zealand","including","burger","fuel","founded","pie","founded","closed","falling","financial","trouble","bought","mcdonald","hell","pizza","founded","philippines","fast_food","us","however","difference","thathey","serve","filipino","dishes","american","products","served","filipino","style","fast_food","chain","restaurant","generally","owned","either","parent_company","fast_food","chain","franchisee","independent","party","given","righto","use","company","trademark","trade","name","latter","case","contract","made","franchisee","parent_company","typically","requiring","franchisee","pay","initial","fixed","fee","addition","percentage","monthly","sales","upon","opening","business","franchisee","oversees","day","day","operations","restaurant","acts","manager","store","contract","parent_company","may","choose","contract","sell","franchise","another","franchisee","operate","restaurant","fast_food","chains","number","locations","exceeds","number","company","owned","locations","fast_food","chains","rely","consistency","uniformity","internal","operations","brand","image","across","locations","order","convey","sense","reliability","customers","thisense","reliability","coupled","positive","customer","experience","brings","customers","place","trust","company","thisense","trust","leads","increased","customer","loyalty","gives","company","source","recurring","business","person","presented","choice","different","restaurants","eat","much","easier","stick","whathey","know","rather","take","gamble","unknown","due","importance","consistency","standards","various","restaurant","locations","set","common","rules","regulations","parent","companies","often","rely","field","representatives","ensure_thathe","practices","locations","consistent","withe","company","standards","however","locations","fast_food","chain","harder","parent_company","guarantee","thathese","standards","followed","moreover","much","morexpensive","discharge","franchisee","company","standards","discharge","employee","reason","consequence","parent","companies","tend","deal","franchisee","violations","morelaxed","manner","part","someone","visiting","mcdonald","united_states","visiting","mcdonald","japan","interior","design","menu","speed","service","taste","food","similar","however","differences","tailor","particular","cultural","differences","example","october","midst","sales","japan","mcdonald","added","shrimp","burger","japanese","menu","choice","introduce","shrimp","burger","study","stated","world","consumption","shrimp","led","japan","march","taco_bell","opened","first","restaurant","india","non","consumption","beef","cultural","norm","light","india","beliefs","taco_bell","tailor","menu","dietary","distinctions","indian","culture","replacing","beef","chicken","token","completely","options","introduced","menu","due","throughouthe_country","health","large","fast_food","chains","beginning","incorporate","healthier","alternatives","menu","white","meat","snack","fresh","fruit","however","people","see","moves","commercial","measure","rather","appropriate","reaction","ethical","concerns","abouthe","world","ecology","people","health","mcdonald","announced","march","chain","would","include","nutritional","information","packaging","products","september","october","corn","recall","million","worth","corn","based","foods","restaurants","well","products","contained","genetically","modified","maize","genetically","modified","corn","approved","human","consumption","first","genetically","modified","food","thenvironmental","group","friends","first","detected","contaminated","shells","critical","fda","job","consumer","appeal","file","wan","grand","millennium","plaza","cafe_de","coral","restaurant","june","jpg","thumb_interior","fast_food_restaurant","wan","hong_kong","fast_food","outlets","become_popular","consumers","several","reasons","one","economies","scale","purchasing","producing","food","companies","deliver","food","consumers","low_cost","addition","although","people","fast_food","hungry","person","far","home","post","world_war","ii","period","united_states","fast_food","chains","like","mcdonald","rapidly","gained","reputation","cleanliness","fast","service","child","friendly","atmosphere","families","road","could","grab","quick","meal","seek","break","routine","home","cooking","prior","rise","fast_food","chain","restaurant","people","generally","choice","greasy_spoon","diners","quality","food","often","service","lacking","high_end_restaurants","impractical","families","children","modern","stream","lined","convenience","fast_food_restaurant","provided","new","alternative","appealed","americans","ideas","products","associated","progress","technology","innovation","fast_food_restaurants","rapidly","became","everyone","could","agree","many","featuring","child","size","menu","play","areas","branding","campaigns","like","iconic","ronald","appeal","younger","customers","parents","could","minutes","peace","children","played","withe","toys","included","happy","meal","long","history","ofast_food","advertising","campaigns","many","directed","children","fast_food","marketing","largely","focuses","children","teenagers","popular","methods","advertising","include","television","product","placement","toys","games","educational","movies","character","licensing","celebrity","websites","advertisements","targeting","children","mainly","focus","free","toys","movie","tie","ins","fast_food_restaurants","use","kid","meals","toys","kid","friendly","vibrant","colors","play","areas","draw","children","toward","products","children","power","parents","purchases","estimated","total","billion","everyear","fast_food","become","part","american_culture","reward","children","advertised","fast_food_restaurant","cause","parents","mean","parent","common","among","parents","comply","witheir","child","desires","major","focus","children","fast_food","industry","created","controversy","due","rising","issue","children","obesity","americas","result","focus","coalition","created","run","council","better","business","bureaus","called","children","food","beverage","advertising","initiative","stop","ads","aimed","children","promote","whathe","council","better","products","ads","directed","towards","children","however","congress","requested","guidelines","put","place","department","centers","disease","control","two","basic","requirements","identified","guidelines","foods","advertised","children","food","include","healthful","ingredients","food","cannot","contain","amounts","sugar","fat","guidelines","voluntary","companies","experience","heavy","pressure","comply","company","years","comply","withe","guidelines","many","fast_food","industries","started","comply","withe","guidelines","although_many","companies","ways","go","fast_food","industry","spent","billion","advertise","unhealthy","products","children","teens","according","report","yale","rudd","center","food","policy","obesity","points","progress","include","healthier","sides","beverages","fast_food_restaurant","kids_meals","guidelines","interested","healthier","lifestyle","children","growing","problem","american","obesity","parts","world","americand","american","style","fast_food","outlets","popular","quality","customer_service","novelty","even_though","often","targets","popular","towards","american","foreign","policy","globalization","generally","many","consumers","wealth","progress","well","ordered","western","society","therefore","become","attractions","many","cities","around","world","particularly","among","younger","people","varied","tastes","impact","ofast_food_restaurant","availability","time","fast_food_restaurants","growing","rapidly","especially","according","us","research","low_income","predominantly","african","greater","exposure","fast_food","outlets","higher","income","predominantly","white","areas","put","question","whether","neighborhoods","targeted","causes","unhealthy","group","people","compared","people","higher","socioeconomic","status","also","shown","thathere","lower","chance","fast_food_restaurant","study","selected","us","locations","found","number","bars","wealth","neighborhood","predominantly","african_american","residential","areas","four_times","less","likely","supermarket","near","predominantly","white","areas","innovations","timeline","walter","scott","providence","outfitted","horse","drawn","lunch","wagon","simple","kitchen","bringing","hot","dinners","workers","first","horn_hardart","automat","opened","philadelphia","horn_hardart","opens","second","automat","manhattan","walter","anderson","builthe","first","white_castle","restaurant","white_castle","wichita","introducing","limited","menu","high","volume","low_cost","high_speed","hamburgerestaurant","w","root","beer","took","product","soda_fountain","roadside","stand","w","root","beer","began","franchising","white_castle","restaurant","white_castle","opens","first","restaurant","maid","rite","opened","first","restaurant","muscatine_iowa","howard","johnson","pioneered","concept","restaurants","formally","advertising","burger","begins","drive","service","utilizing","call","box","technology","mcdonald","opens","first","restaurants","outside","us","mcdonald","marketing","us","opens","seattle_washington","pike","place","marketo","sell","high_quality","coffee","beans","equipment","eleven","introduces","products","services","arby","offers","nutritional","information","howard","leads","purchase","starbucks","brand","founders","adopted","name","coffee","tea","begins","offering","coffee","drinks","modeled","sold","italian","coffee","bars","mcdonald","extra","value","meals","arcticircle","becomes","first","sell","angus","cattle","angus","beef","exclusively","arby","first","implement","smoking","policy","mcdonald","cuts","back","amount","trans","fat","percent","french_fries","arby","begins","elimination","trans","fat","french_fries","introduction","halal","option","fast_food","thexpansion","countries","resulted","rise","restaurant","options","inon","also","increased","revenue","western","restaurant","research","islamic","marketing","tourism","global","economy","p","el","outlets","offering","halal","options","include","kfc","nando","pizza","express","subway","mcdonald","carried","trial","decided","thathe","cost","operations","would","high","also","court","cases","involving","start","businesses","attempts","alter","halal","certified","method","machine","killing","againsthe","beliefs","muslims","however","trend","towards","halal","communities","whichave","atimes","resulted","internet","petitions","fast_food","industry","popular","target","critics","anti","globalization","activists","like","jos","vegetarian","activist","groupsuch","people","treatment","animals","well","workers","number","ofast_food","worker","occurred","united_states","best","selling","book","fast_food","nation","investigative","journalist","eric","broad","againsthe","fast_food","industry","documenting","fast_food","rose","small","family","run","businesses","like","mcdonald","brothers","burger","large","multinational","corporate","scale","radically","transformed","agriculture","meat","processing","labor","markets","late","twentieth_century","argues","innovations","fast_food","industry","gave","americans","cheaper","dining","options","come","athe","price","thenvironment","economy","small_town","communities","rural","america","consumers","real","costs","convenient","meal","terms","health","broader","impact","large_scale","food","production","processing","workers","animals","land","fast_food","industry","popular","united_states","source","innovation","many","major_international","chains","based","seen","us","dominance","perceived","cultural","imperialism","american","fast_food","franchises","often","target","anti","globalization","protests","againsthe","us_government","example","karachi","pakistan","initially","bombing","islam","mosque","destroyed","kfc","restaurant","legal","issues","mcdonald","new_york","court","family","claimed","thathe","restaurant_chain","responsible","teenage","childhood","obesity","daughter","obesity","attendant","health","problems","food","taste","sugar","fat","content","advertising","children","suit","argued","thathe_company","purposely","public","abouthe","nutritional","value","product","judge","dismissed","case","buthe","fast_food","industry","publicity","practices","particularly","way","children","advertising","although","lawsuits","issue","kept","alive","mediand","political","circles","promoting","need","reform","response","personal","responsibility","food","consumption","act","cheeseburger","bill","passed","us","house","representatives","later","lawas","reintroduced","meethe","fate","lawas","claimed","ban","lawsuits","producers","sellers","ofood","non_alcoholic","drinks","arising","obesity","claims","bill","arose","increase","lawsuits","fast_food","chains","people","claimed","eating","products","made","blame","see_also","fast_food","advertising","hazard","analysis","critical","control","points","list","ofast_food_restaurant","chains","list","list","largest","fast_food_restaurant","chains","roadhouse","facility","sanitation","standard","operating","procedures","furthereading","david","selling","white_castle","creation","american","food","new_york","new_york","university_press","kroc","ray","anderson","robert","grinding","outhe","making","mcdonald","chicago","contemporary","books","harvey","plenty","social","history","eating","modern","america","berkeley","university","california","p","stan","chains","franchised","america","new_york","viking","lou","ellen","stephanie","service","man","tray","days","drive","days","publishing","fast_food","nation","dark","side","american","meal","harpercollins","howard","jones","pour","heart","starbucks","built","company","one","cup","time","hyperion","restaurants"],"clean_bigrams":[["file","fast"],["fast","food"],["food","restaurant"],["fast","food"],["food","restaurant"],["croatia","file"],["file","mcdonalds"],["thumb","mcdonald"],["timesquare","new"],["new","york"],["york","city"],["city","file"],["ming","lane"],["lane","shop"],["shop","cafe"],["cafe","de"],["de","coral"],["coral","fast"],["fast","food"],["food","restaurant"],["restaurant","april"],["april","jpg"],["jpg","thumb"],["fast","food"],["food","restaurant"],["hong","kong"],["kong","fast"],["fast","food"],["food","restaurant"],["restaurant","also"],["also","known"],["quick","service"],["service","restaurant"],["specific","type"],["restauranthat","serves"],["serves","fast"],["fast","food"],["food","cuisine"],["minimal","foodservice"],["foodservice","table"],["table","service"],["service","table"],["table","service"],["food","served"],["fast","food"],["food","restaurants"],["typically","part"],["western","pattern"],["pattern","diet"],["diet","meat"],["meat","sweet"],["sweet","diet"],["diet","offered"],["limited","menu"],["menu","cooked"],["kept","hot"],["hot","finished"],["packaged","torder"],["usually","available"],["away","though"],["though","seating"],["seating","may"],["provided","athe"],["athe","restaurant"],["restaurant","fast"],["fast","food"],["food","restaurants"],["typically","part"],["chains","restaurant"],["restaurant","chain"],["franchising","franchise"],["franchise","operation"],["partially","prepared"],["prepared","foods"],["controlled","supply"],["supply","channels"],["term","fast"],["fast","food"],["merriam","webster"],["first","fast"],["fast","food"],["food","restaurants"],["restaurants","originated"],["united","states"],["w","restaurants"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["today","american"],["american","founded"],["founded","fast"],["fast","food"],["food","chainsuch"],["kfc","est"],["multinational","corporation"],["outlets","across"],["globe","variations"],["fast","food"],["food","restaurant"],["restaurant","concept"],["concept","include"],["include","fast"],["fast","casual"],["casual","restaurant"],["mobile","catering"],["catering","trucks"],["trucks","fast"],["fast","casual"],["casual","restaurants"],["higher","sit"],["orders","broughto"],["catering","trucks"],["trucks","often"],["often","park"],["factory","workers"],["workers","united"],["united","states"],["states","file"],["file","big"],["thumb","righthe"],["righthe","big"],["hamburger","made"],["file","burger"],["burger","king"],["burger","king"],["modern","history"],["history","ofast"],["ofast","food"],["united","states"],["july","withe"],["withe","opening"],["fast","food"],["food","restaurant"],["restaurant","called"],["automat","inew"],["inew","york"],["prepared","foods"],["foods","behind"],["behind","small"],["small","glass"],["glass","windows"],["coin","operated"],["frank","hardart"],["already","opened"],["first","horn"],["horn","hardart"],["hardart","automat"],["butheir","automat"],["automat","broadway"],["th","street"],["street","inew"],["inew","york"],["york","city"],["city","created"],["automat","restaurants"],["built","around"],["deal","withe"],["withe","demand"],["demand","automat"],["remained","extremely"],["extremely","popular"],["popular","throughouthe"],["company","also"],["also","popularized"],["food","witheir"],["witheir","slogan"],["slogan","less"],["less","work"],["w","restaurants"],["began","franchising"],["first","fast"],["fast","food"],["food","restaurant"],["restaurant","e"],["american","company"],["company","white"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["generally","credited"],["second","fast"],["fast","food"],["food","outlet"],["wichita","kansas"],["selling","hamburgers"],["five","cents"],["numerous","competitors"],["certain","however"],["white","castle"],["castle","made"],["first","significant"],["significant","efforto"],["food","production"],["operation","ofast"],["ofast","food"],["walter","anderson"],["white","castle"],["castle","system"],["system","created"],["first","fast"],["fast","food"],["food","supply"],["supply","chain"],["provide","meat"],["meat","buns"],["buns","paper"],["paper","goods"],["multi","state"],["state","hamburgerestaurant"],["hamburgerestaurant","chain"],["chain","standardized"],["even","developed"],["construction","division"],["builthe","chain"],["prefabricated","restaurant"],["restaurant","buildings"],["service","system"],["hamburger","university"],["white","castle"],["already","established"],["public","withe"],["withe","term"],["term","fast"],["fast","food"],["two","brothers"],["brothers","originally"],["new","hampshire"],["hampshire","richard"],["maurice","mcdonald"],["mcdonald","opened"],["barbecue","drive"],["profits","came"],["brothers","closed"],["three","months"],["stand","offering"],["simple","menu"],["hamburgers","french"],["french","fries"],["coca","cola"],["cola","served"],["disposable","paper"],["could","produce"],["produce","hamburgers"],["fries","constantly"],["constantly","without"],["without","waiting"],["customer","orders"],["could","serve"],["immediately","hamburgers"],["hamburgers","cost"],["cost","cents"],["typical","diner"],["streamlined","production"],["production","method"],["service","system"],["production","line"],["line","innovations"],["henry","ford"],["restaurant","equipment"],["equipment","manufacturer"],["manufacturer","prince"],["prince","castle"],["machines","prince"],["prince","castle"],["ray","kroc"],["kroc","traveled"],["purchased","almost"],["normal","one"],["two","found"],["concept","kroc"],["kroc","signed"],["franchise","agreement"],["agreement","withe"],["withe","brothers"],["began","opening"],["opening","mcdonald"],["bought","outhe"],["outhe","brothers"],["modern","mcdonald"],["major","parts"],["business","plan"],["promote","cleanliness"],["become","aware"],["aware","ofood"],["ofood","safety"],["safety","issues"],["commitmento","cleanliness"],["cleanliness","kroc"],["kroc","often"],["often","took"],["took","part"],["illinois","outlet"],["garbage","cans"],["another","concept"],["concept","kroc"],["kroc","added"],["food","preparation"],["practice","still"],["still","found"],["clean","atmosphere"],["separated","mcdonald"],["great","success"],["success","kroc"],["kroc","envisioned"],["envisioned","making"],["restaurants","appeal"],["suburban","families"],["white","tower"],["tower","one"],["original","fast"],["fast","food"],["food","restaurants"],["tied","hamburgers"],["public","transportation"],["tied","hamburgers"],["car","children"],["eventually","became"],["became","mcdonald"],["corporation","two"],["two","miami"],["miami","florida"],["florida","businessmen"],["businessmen","james"],["james","mclamore"],["mclamore","andavid"],["international","fast"],["fast","food"],["food","restaurant"],["restaurant","chain"],["chain","burger"],["burger","king"],["king","mclamore"],["original","mcdonald"],["hamburger","stand"],["stand","belonging"],["innovative","assembly"],["assembly","line"],["line","based"],["based","production"],["production","system"],["wanted","topen"],["similar","operation"],["two","partners"],["partners","eventually"],["eventually","decided"],["jacksonville","florida"],["florida","based"],["based","insta"],["insta","burger"],["burger","king"],["king","originally"],["originally","opened"],["uncle","matthew"],["matthew","burns"],["burns","opened"],["equipment","known"],["oven","proved"],["cooking","burgers"],["county","miami"],["partners","discovered"],["discovered","thathe"],["thathe","design"],["heating","elements"],["elements","prone"],["pair","eventually"],["eventually","created"],["mechanized","gas"],["gas","grill"],["original","company"],["company","began"],["company","burger"],["burger","king"],["fast","food"],["food","restaurants"],["restaurants","usually"],["seating","area"],["eathe","food"],["premises","orders"],["traditional","table"],["table","service"],["rare","orders"],["generally","taken"],["wide","counter"],["counter","withe"],["withe","customer"],["customer","waiting"],["allow","customers"],["customers","torder"],["cars","nearly"],["inception","fast"],["fast","food"],["require","traditional"],["traditional","cutlery"],["finger","food"],["food","common"],["common","menu"],["menu","items"],["fast","food"],["food","outlets"],["outlets","include"],["include","fish"],["fried","chicken"],["chicken","french"],["french","fries"],["ice","cream"],["cream","although"],["although","many"],["many","fast"],["fast","food"],["food","restaurants"],["restaurants","offer"],["offer","slower"],["slower","foods"],["foods","like"],["like","chili"],["chili","con"],["con","carne"],["carne","chili"],["chili","mashed"],["mashed","potato"],["modern","commercial"],["commercial","fast"],["fast","food"],["highly","processed"],["large","scale"],["bulk","ingredients"],["ingredients","using"],["using","standardized"],["standardized","cooking"],["production","methods"],["usually","rapidly"],["rapidly","served"],["reduces","operating"],["operating","costs"],["allowing","rapid"],["rapid","product"],["product","identification"],["counting","promoting"],["promoting","longer"],["longer","holding"],["holding","time"],["time","avoiding"],["avoiding","transfer"],["facilitating","order"],["fast","food"],["food","operations"],["operations","menu"],["menu","items"],["generally","made"],["processed","ingredients"],["ingredients","prepared"],["central","supply"],["supply","facilities"],["individual","outlets"],["cooked","usually"],["grill","microwave"],["deep","frying"],["short","amount"],["upcoming","orders"],["actual","orders"],["torder","following"],["following","standard"],["standard","operating"],["operating","procedures"],["procedures","pre"],["pre","cooked"],["cooked","products"],["holding","times"],["process","ensures"],["consistent","level"],["product","quality"],["order","quickly"],["avoiding","labor"],["equipment","costs"],["individual","stores"],["commercial","emphasis"],["taste","speed"],["speed","product"],["product","safety"],["safety","uniformity"],["low","cost"],["cost","fast"],["fast","food"],["food","products"],["products","made"],["ingredients","formulated"],["mouth","feel"],["preserve","freshness"],["control","handling"],["handling","costs"],["high","degree"],["degree","ofood"],["ofood","engineering"],["use","ofood"],["including","salt"],["salt","sugar"],["sugar","seasoning"],["processing","techniques"],["techniques","may"],["may","limithe"],["limithe","nutritional"],["nutritional","value"],["final","product"],["product","value"],["value","meals"],["value","meal"],["menu","items"],["items","offered"],["offered","together"],["lower","price"],["would","cost"],["cost","individually"],["hamburger","side"],["side","andrink"],["andrink","commonly"],["commonly","constitute"],["value","meal"],["chain","value"],["value","meals"],["fast","food"],["food","restaurants"],["facilitate","product"],["price","discrimination"],["larger","side"],["side","andrink"],["small","fee"],["perceived","creation"],["individual","menu"],["menu","items"],["also","consistent"],["consistent","withe"],["withe","loyalty"],["loyalty","marketing"],["marketing","school"],["thoughto","make"],["make","quick"],["quick","service"],["service","possible"],["ensure","accuracy"],["security","many"],["many","fast"],["fast","food"],["food","restaurants"],["incorporated","hospitality"],["hospitality","point"],["sale","systems"],["kitchen","crew"],["crew","people"],["view","orders"],["orders","placed"],["placed","athe"],["athe","front"],["front","counter"],["real","time"],["allow","orders"],["orders","placed"],["cooks","drive"],["allow","orders"],["one","register"],["another","modern"],["modern","point"],["sale","systems"],["computer","networks"],["networks","using"],["remote","access"],["corporate","offices"],["offices","managers"],["authorized","personnel"],["personnel","food"],["food","service"],["service","chains"],["chains","partner"],["food","equipment"],["equipment","manufacturers"],["design","highly"],["highly","specialized"],["specialized","restaurant"],["restaurant","equipment"],["equipment","often"],["often","incorporating"],["incorporating","heat"],["heat","sensor"],["design","collaboration"],["collaboration","collaborative"],["collaborative","design"],["restaurant","kitchens"],["establish","equipment"],["equipment","specifications"],["restaurant","operating"],["merchandising","requirements"],["requirements","file"],["thumb","neighboring"],["neighboring","fast"],["fast","food"],["food","restaurant"],["restaurant","advertisement"],["advertisement","signs"],["bowlingreen","kentucky"],["kentucky","file"],["thumb","mcdonald"],["fast","food"],["food","restaurant"],["malaysia","file"],["file","dublin"],["dublin","airport"],["airport","mcdonald"],["restaurantjpg","thumb"],["thumb","mcdonald"],["fast","food"],["food","restaurant"],["dublin","airport"],["airport","consumer"],["consumer","spending"],["united","states"],["us","billion"],["billion","fast"],["fast","food"],["national","restaurant"],["restaurant","association"],["fast","food"],["food","restaurants"],["reach","billion"],["full","service"],["service","restaurant"],["restaurant","segment"],["food","industry"],["generate","billion"],["sales","fast"],["fast","food"],["losing","market"],["market","share"],["called","fast"],["fast","casual"],["casual","restaurant"],["expensive","cuisine"],["major","international"],["international","brands"],["brands","mcdonald"],["fast","food"],["food","supplier"],["supplier","opened"],["first","franchised"],["franchised","restaurant"],["successful","enterprise"],["terms","ofinancial"],["ofinancial","growth"],["growth","brand"],["brand","name"],["name","recognition"],["ray","kroc"],["boughthe","franchising"],["franchising","license"],["mcdonald","brothers"],["brothers","pioneered"],["pioneered","concepts"],["emphasized","standardization"],["introduced","uniform"],["uniform","products"],["products","identical"],["increase","sales"],["sales","kroc"],["kroc","also"],["cutting","food"],["food","costs"],["corporation","size"],["force","suppliers"],["prominent","international"],["international","fast"],["fast","food"],["food","companies"],["companies","include"],["include","burger"],["burger","king"],["number","two"],["two","hamburger"],["hamburger","chain"],["world","known"],["customized","menu"],["menu","offerings"],["way","another"],["another","international"],["international","fast"],["fast","food"],["food","chain"],["sells","chicken"],["chicken","related"],["related","products"],["number","fast"],["fast","food"],["food","company"],["china","multinational"],["multinational","corporations"],["corporations","typically"],["typically","modify"],["local","tastes"],["overseas","outlets"],["native","franchisees"],["franchisees","mcdonald"],["example","uses"],["uses","chicken"],["eating","beef"],["kashrut","kosher"],["kashrut","kosher"],["kosher","mcdonald"],["egypt","indonesia"],["indonesia","morocco"],["morocco","saudi"],["saudi","arabia"],["arabia","malaysia"],["malaysia","pakistand"],["pakistand","singapore"],["menu","items"],["halal","north"],["north","america"],["america","file"],["thumb","animal"],["animal","fries"],["burger","secret"],["secret","menu"],["menu","many"],["many","fast"],["fast","food"],["food","operations"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["midwest","united"],["united","states"],["states","along"],["cke","restaurants"],["alsowns","carl"],["whose","locations"],["united","states"],["states","west"],["west","coast"],["coast","krystal"],["krystal","restaurant"],["restaurant","krystal"],["famous","chicken"],["chicken","biscuits"],["biscuits","cook"],["restaurant","cook"],["american","southeast"],["southeast","raising"],["raising","cane"],["chicken","fingers"],["fingers","raising"],["raising","cane"],["mostly","southern"],["southern","states"],["states","hot"],["michigand","wisconsin"],["wisconsin","n"],["nevada","utah"],["southern","california"],["california","dick"],["seattle","washington"],["arcticircle","restaurants"],["restaurants","arcticircle"],["western","states"],["burger","around"],["around","flint"],["flint","michigand"],["portland","oregon"],["popular","burger"],["burger","chain"],["american","south"],["box","restaurant"],["restaurant","jack"],["south","canada"],["canada","pizza"],["pizza","chains"],["pizza","canadian"],["primarily","located"],["ontario","coffee"],["coffee","chain"],["chain","country"],["country","style"],["style","operates"],["withe","famous"],["famous","coffee"],["coffee","chain"],["chain","tim"],["tim","hortons"],["hortons","maid"],["maid","rite"],["rite","restaurant"],["oldest","chain"],["chain","fast"],["fast","food"],["food","restaurants"],["united","states"],["states","founded"],["loose","meat"],["meat","hamburger"],["hamburger","maid"],["maid","rites"],["midwest","mainly"],["mainly","iowa"],["iowa","minnesota"],["minnesota","illinois"],["brands","dominant"],["dominant","inorth"],["inorth","america"],["america","include"],["include","mcdonald"],["burger","king"],["number","three"],["three","burger"],["burger","chain"],["new","england"],["england","based"],["based","chain"],["chain","automobile"],["automobile","oriented"],["oriented","sonic"],["sonic","drive"],["oklahoma","city"],["born","coffee"],["coffee","based"],["based","fast"],["fast","food"],["food","beverage"],["beverage","corporation"],["corporation","kfc"],["taco","bell"],["largest","restaurant"],["world","yum"],["yum","brands"],["brands","andomino"],["pizza","pizza"],["pizza","chain"],["chain","known"],["popularizing","home"],["home","delivery"],["delivery","ofast"],["ofast","food"],["food","subway"],["subway","restaurant"],["restaurant","subway"],["sub","sandwiches"],["largest","restaurant"],["restaurant","chain"],["food","items"],["denver","based"],["based","sub"],["sub","shop"],["another","fast"],["fast","growing"],["growing","sub"],["sub","chain"],["chain","yet"],["istill","far"],["far","behind"],["behind","subway"],["smaller","sub"],["sub","shops"],["shops","include"],["jersey","mike"],["jimmy","john"],["w","restaurants"],["united","states"],["canada","fast"],["fast","food"],["food","brand"],["international","fast"],["fast","food"],["food","corporation"],["several","countries"],["majority","ofast"],["ofast","food"],["food","chains"],["american","owned"],["originally","american"],["american","owned"],["since","set"],["canadian","management"],["management","headquarters"],["headquarters","locationsuch"],["bread","chipotle"],["chipotle","mexican"],["mexican","grill"],["grill","five"],["five","guys"],["usually","american"],["american","fast"],["fast","food"],["food","chains"],["chains","expanding"],["canada","canadian"],["canadian","chainsuch"],["tim","hortons"],["united","states"],["border","statesuch"],["new","york"],["michigan","tim"],["tim","hortons"],["expand","tother"],["tother","countries"],["countries","outside"],["north","america"],["pita","pit"],["pit","franchise"],["franchise","originated"],["united","states"],["canadian","extreme"],["extreme","pita"],["low","fat"],["salt","pita"],["pita","sandwiches"],["larger","canadian"],["canadian","cities"],["canadian","fast"],["fast","food"],["food","chainsuch"],["serve","north"],["north","american"],["american","style"],["style","asian"],["asian","cuisine"],["cuisine","asian"],["asian","foods"],["located","mainly"],["us","military"],["military","bases"],["continents","harvey"],["chain","present"],["every","province"],["province","australia"],["fast","food"],["food","market"],["market","began"],["withe","opening"],["several","american"],["american","franchises"],["franchises","including"],["including","mcdonald"],["kfc","pizza"],["pizza","hut"],["burger","king"],["king","followed"],["followed","however"],["burger","king"],["king","market"],["market","found"],["found","thathis"],["thathis","name"],["registered","trademark"],["takeaway","food"],["food","shop"],["adelaide","thus"],["burger","king"],["king","australian"],["australian","market"],["pick","another"],["another","name"],["name","selecting"],["hungry","jack"],["brand","name"],["name","prior"],["australian","fast"],["fast","food"],["food","market"],["market","consisted"],["consisted","primarily"],["uk","fish"],["chips","takeaway"],["takeaway","united"],["united","kingdom"],["home","based"],["based","fast"],["fast","food"],["food","operations"],["number","one"],["one","outlet"],["market","however"],["however","brands"],["brands","like"],["like","wimpy"],["wimpy","brand"],["brand","wimpy"],["wimpy","still"],["still","remain"],["remain","although"],["branches","became"],["became","burger"],["burger","king"],["home","grown"],["grown","chainsuch"],["numerous","american"],["american","chainsuch"],["burger","king"],["also","established"],["study","developed"],["irish","times"],["county","dublin"],["fast","food"],["food","capital"],["capital","american"],["american","chainsuch"],["pizza","mcdonald"],["pizza","hut"],["big","presence"],["restaurant","chain"],["country","japan"],["burger","chains"],["chains","including"],["including","burger"],["freshness","burger"],["major","fast"],["fast","food"],["food","chains"],["chains","indiare"],["indiare","kfc"],["kfc","mcdonald"],["mcdonald","starbucks"],["starbucks","burger"],["burger","king"],["king","subway"],["subway","pizza"],["pizza","hut"],["chains","provide"],["provide","mostly"],["mostly","western"],["western","products"],["products","however"],["indians","prefer"],["local","cuisine"],["pav","etc"],["etc","major"],["major","emerging"],["emerging","food"],["food","chains"],["chains","include"],["caf","coffee"],["coffee","day"],["day","inigeria"],["chicken","republic"],["fried","chicken"],["fast","food"],["food","chains"],["chains","kfc"],["kfc","andomino"],["recently","entered"],["country","fast"],["fast","food"],["pakistan","varies"],["many","international"],["international","fast"],["fast","food"],["food","including"],["including","burger"],["burger","king"],["king","kfc"],["kfc","mcdonald"],["pizza","pizza"],["pizza","hut"],["steak","escape"],["gloria","jean"],["international","chains"],["local","cuisine"],["cuisine","people"],["pakistan","like"],["bun","kebab"],["kebab","rolls"],["rolls","etc"],["fast","food"],["international","fast"],["fast","food"],["food","chains"],["chains","like"],["like","subway"],["subway","mcdonald"],["burger","king"],["king","etc"],["etc","arepresented"],["also","local"],["local","chains"],["chains","like"],["russian","cuisine"],["menu","south"],["south","africa"],["africa","kfc"],["popular","fast"],["fast","food"],["food","chain"],["chain","south"],["africa","sunday"],["restaurant","chicken"],["wimpy","restaurant"],["restaurant","south"],["south","africa"],["africa","branches"],["branches","wimpy"],["ocean","basket"],["basket","along"],["homegrown","franchises"],["highly","popular"],["popular","within"],["country","mcdonald"],["mcdonald","subway"],["subway","pizza"],["pizza","hut"],["significant","presence"],["presence","within"],["within","south"],["south","africa"],["africa","hong"],["hong","kong"],["kong","file"],["far","east"],["interior","cafe"],["cafe","de"],["de","coral"],["coral","barjpg"],["barjpg","thumb"],["caf","de"],["de","coral"],["coral","branch"],["hong","kong"],["hong","kong"],["kong","although"],["although","mcdonald"],["quite","popular"],["popular","three"],["three","major"],["major","local"],["local","fast"],["fast","food"],["food","chains"],["chains","provide"],["provide","hong"],["hong","kong"],["kong","style"],["style","fast"],["fast","food"],["food","namely"],["namely","caf"],["caf","de"],["de","coral"],["coral","restaurant"],["restaurant","caf"],["caf","de"],["de","coral"],["coral","restaurant"],["caterers","limited"],["caf","de"],["customers","daily"],["daily","unlike"],["unlike","western"],["western","fast"],["fast","food"],["food","chains"],["restaurants","offer"],["offer","four"],["four","different"],["different","menus"],["day","namely"],["namely","breakfast"],["breakfast","lunch"],["lunch","afternoon"],["offered","throughouthe"],["throughouthe","day"],["day","dai"],["dai","pai"],["pai","dong"],["traditional","hong"],["hong","kong"],["kong","street"],["street","food"],["food","may"],["considered","close"],["close","relatives"],["conventional","fast"],["fast","food"],["food","outlet"],["burger","chain"],["burger","king"],["king","domino"],["popular","fast"],["fast","food"],["food","restaurant"],["restaurant","chains"],["chains","like"],["like","mcdonald"],["offer","kosher"],["kosher","branches"],["branches","non"],["non","kosher"],["kosher","foodsuch"],["israeli","fast"],["fast","food"],["food","chains"],["chains","even"],["even","inon"],["inon","kosher"],["kosher","branches"],["many","fast"],["fast","food"],["food","chains"],["serve","pizza"],["pizza","hamburger"],["hamburger","sushi"],["local","foodsuch"],["new","zealand"],["zealand","inew"],["inew","zealand"],["fast","food"],["food","market"],["market","began"],["kfc","opened"],["opened","pizza"],["pizza","hut"],["three","remain"],["remain","popular"],["popular","today"],["today","burger"],["burger","king"],["king","andomino"],["market","later"],["australian","pizza"],["pizza","chains"],["chains","eagle"],["eagle","boys"],["australia","pizza"],["also","entered"],["butheir","new"],["new","zealand"],["zealand","operations"],["later","sold"],["pizza","hut"],["hut","andomino"],["fast","food"],["food","chains"],["founded","inew"],["inew","zealand"],["zealand","including"],["including","burger"],["burger","fuel"],["fuel","founded"],["pie","founded"],["financial","trouble"],["hell","pizza"],["pizza","founded"],["philippines","fast"],["fast","food"],["us","however"],["thathey","serve"],["serve","filipino"],["filipino","dishes"],["american","products"],["served","filipino"],["filipino","style"],["style","fast"],["fast","food"],["food","chain"],["chain","restaurant"],["generally","owned"],["owned","either"],["parent","company"],["fast","food"],["food","chain"],["independent","party"],["party","given"],["righto","use"],["trade","name"],["latter","case"],["parent","company"],["company","typically"],["typically","requiring"],["initial","fixed"],["fixed","fee"],["monthly","sales"],["sales","upon"],["upon","opening"],["franchisee","oversees"],["day","operations"],["parent","company"],["company","may"],["may","choose"],["contract","sell"],["another","franchisee"],["restaurant","fast"],["fast","food"],["food","chains"],["locations","exceeds"],["company","owned"],["owned","locations"],["locations","fast"],["fast","food"],["food","chains"],["chains","rely"],["uniformity","internal"],["internal","operations"],["brand","image"],["image","across"],["customers","thisense"],["reliability","coupled"],["positive","customer"],["customer","experience"],["experience","brings"],["brings","customers"],["place","trust"],["company","thisense"],["trust","leads"],["increased","customer"],["customer","loyalty"],["recurring","business"],["different","restaurants"],["much","easier"],["whathey","know"],["know","rather"],["unknown","due"],["various","restaurant"],["restaurant","locations"],["common","rules"],["regulations","parent"],["parent","companies"],["companies","often"],["often","rely"],["field","representatives"],["ensure","thathe"],["thathe","practices"],["consistent","withe"],["withe","company"],["company","standards"],["standards","however"],["locations","fast"],["fast","food"],["food","chain"],["parent","company"],["guarantee","thathese"],["thathese","standards"],["followed","moreover"],["much","morexpensive"],["company","standards"],["consequence","parent"],["parent","companies"],["companies","tend"],["franchisee","violations"],["morelaxed","manner"],["part","someone"],["someone","visiting"],["united","states"],["interior","design"],["similar","however"],["particular","cultural"],["cultural","differences"],["japan","mcdonald"],["shrimp","burger"],["japanese","menu"],["shrimp","burger"],["study","stated"],["world","consumption"],["march","taco"],["taco","bell"],["bell","opened"],["first","restaurant"],["restaurant","india"],["non","consumption"],["cultural","norm"],["beliefs","taco"],["taco","bell"],["dietary","distinctions"],["indian","culture"],["token","completely"],["menu","due"],["throughouthe","country"],["country","health"],["large","fast"],["fast","food"],["food","chains"],["incorporate","healthier"],["healthier","alternatives"],["white","meat"],["meat","snack"],["fresh","fruit"],["fruit","however"],["people","see"],["commercial","measure"],["measure","rather"],["appropriate","reaction"],["ethical","concerns"],["concerns","abouthe"],["abouthe","world"],["world","ecology"],["health","mcdonald"],["chain","would"],["would","include"],["include","nutritional"],["nutritional","information"],["corn","recall"],["million","worth"],["corn","based"],["based","foods"],["products","contained"],["genetically","modified"],["modified","maize"],["maize","genetically"],["genetically","modified"],["modified","corn"],["human","consumption"],["genetically","modified"],["modified","food"],["food","thenvironmental"],["thenvironmental","group"],["group","friends"],["first","detected"],["contaminated","shells"],["job","consumer"],["consumer","appeal"],["appeal","file"],["wan","grand"],["grand","millennium"],["millennium","plaza"],["plaza","cafe"],["cafe","de"],["de","coral"],["coral","restaurant"],["restaurant","june"],["june","jpg"],["jpg","thumb"],["fast","food"],["food","restaurant"],["wan","hong"],["hong","kong"],["kong","fast"],["fast","food"],["food","outlets"],["become","popular"],["several","reasons"],["reasons","one"],["producing","food"],["food","companies"],["deliver","food"],["low","cost"],["addition","although"],["fast","food"],["hungry","person"],["post","world"],["world","war"],["war","ii"],["ii","period"],["united","states"],["states","fast"],["fast","food"],["food","chains"],["chains","like"],["like","mcdonald"],["rapidly","gained"],["cleanliness","fast"],["fast","service"],["child","friendly"],["friendly","atmosphere"],["road","could"],["could","grab"],["quick","meal"],["home","cooking"],["cooking","prior"],["fast","food"],["food","chain"],["chain","restaurant"],["restaurant","people"],["people","generally"],["greasy","spoon"],["spoon","diners"],["service","lacking"],["high","end"],["end","restaurants"],["modern","stream"],["stream","lined"],["lined","convenience"],["fast","food"],["food","restaurant"],["restaurant","provided"],["new","alternative"],["products","associated"],["progress","technology"],["innovation","fast"],["fast","food"],["food","restaurants"],["restaurants","rapidly"],["rapidly","became"],["everyone","could"],["could","agree"],["many","featuring"],["featuring","child"],["child","size"],["size","menu"],["play","areas"],["branding","campaigns"],["campaigns","like"],["iconic","ronald"],["younger","customers"],["customers","parents"],["parents","could"],["children","played"],["withe","toys"],["toys","included"],["happy","meal"],["long","history"],["history","ofast"],["ofast","food"],["food","advertising"],["advertising","campaigns"],["campaigns","many"],["children","fast"],["fast","food"],["food","marketing"],["marketing","largely"],["largely","focuses"],["teenagers","popular"],["popular","methods"],["advertising","include"],["include","television"],["television","product"],["product","placement"],["toys","games"],["games","educational"],["movies","character"],["character","licensing"],["websites","advertisements"],["advertisements","targeting"],["targeting","children"],["children","mainly"],["mainly","focus"],["free","toys"],["toys","movie"],["movie","tie"],["tie","ins"],["fast","food"],["food","restaurants"],["restaurants","use"],["use","kid"],["toys","kid"],["kid","friendly"],["vibrant","colors"],["play","areas"],["draw","children"],["children","toward"],["products","children"],["parents","purchases"],["estimated","total"],["billion","everyear"],["everyear","fast"],["fast","food"],["american","culture"],["advertised","fast"],["fast","food"],["food","restaurant"],["mean","parent"],["common","among"],["comply","witheir"],["witheir","child"],["major","focus"],["children","fast"],["fast","food"],["food","industry"],["created","controversy"],["controversy","due"],["rising","issue"],["children","obesity"],["better","business"],["business","bureaus"],["bureaus","called"],["called","children"],["food","beverage"],["beverage","advertising"],["advertising","initiative"],["stop","ads"],["ads","aimed"],["whathe","council"],["ads","directed"],["directed","towards"],["towards","children"],["children","however"],["congress","requested"],["requested","guidelines"],["disease","control"],["two","basic"],["basic","requirements"],["requirements","identified"],["include","healthful"],["healthful","ingredients"],["companies","experience"],["experience","heavy"],["heavy","pressure"],["comply","withe"],["withe","guidelines"],["guidelines","many"],["many","fast"],["fast","food"],["food","industries"],["comply","withe"],["withe","guidelines"],["guidelines","although"],["although","many"],["many","companies"],["fast","food"],["food","industry"],["industry","spent"],["spent","billion"],["advertise","unhealthy"],["unhealthy","products"],["products","children"],["teens","according"],["yale","rudd"],["rudd","center"],["food","policy"],["policy","obesity"],["include","healthier"],["healthier","sides"],["fast","food"],["food","restaurant"],["restaurant","kids"],["kids","meals"],["healthier","lifestyle"],["growing","problem"],["american","obesity"],["world","americand"],["americand","american"],["american","style"],["style","fast"],["fast","food"],["food","outlets"],["quality","customer"],["customer","service"],["novelty","even"],["even","though"],["towards","american"],["american","foreign"],["foreign","policy"],["generally","many"],["many","consumers"],["wealth","progress"],["well","ordered"],["western","society"],["therefore","become"],["many","cities"],["cities","around"],["world","particularly"],["particularly","among"],["among","younger"],["younger","people"],["varied","tastes"],["tastes","impact"],["impact","ofast"],["ofast","food"],["food","restaurant"],["restaurant","availability"],["time","fast"],["fast","food"],["food","restaurants"],["growing","rapidly"],["rapidly","especially"],["us","research"],["research","low"],["low","income"],["predominantly","african"],["greater","exposure"],["fast","food"],["food","outlets"],["higher","income"],["predominantly","white"],["white","areas"],["question","whether"],["unhealthy","group"],["people","compared"],["higher","socioeconomic"],["socioeconomic","status"],["shown","thathere"],["lower","chance"],["fast","food"],["food","restaurant"],["selected","us"],["us","locations"],["number","ofast"],["ofast","food"],["food","restaurants"],["predominantly","african"],["african","american"],["american","residential"],["residential","areas"],["four","times"],["times","less"],["less","likely"],["supermarket","near"],["predominantly","white"],["white","areas"],["areas","innovations"],["innovations","timeline"],["timeline","walter"],["walter","scott"],["horse","drawn"],["drawn","lunch"],["lunch","wagon"],["simple","kitchen"],["kitchen","bringing"],["bringing","hot"],["hot","dinners"],["workers","first"],["first","horn"],["horn","hardart"],["hardart","automat"],["automat","opened"],["philadelphia","horn"],["horn","hardart"],["hardart","opens"],["second","automat"],["manhattan","walter"],["walter","anderson"],["anderson","builthe"],["builthe","first"],["first","white"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["limited","menu"],["menu","high"],["high","volume"],["volume","low"],["low","cost"],["cost","high"],["high","speed"],["speed","hamburgerestaurant"],["w","root"],["root","beer"],["beer","took"],["soda","fountain"],["roadside","stand"],["w","root"],["root","beer"],["beer","began"],["began","franchising"],["white","castle"],["castle","restaurant"],["restaurant","white"],["white","castle"],["castle","opens"],["first","restaurant"],["restaurant","maid"],["maid","rite"],["rite","opened"],["first","restaurant"],["muscatine","iowa"],["howard","johnson"],["restaurants","formally"],["burger","begins"],["begins","drive"],["service","utilizing"],["utilizing","call"],["call","box"],["box","technology"],["technology","mcdonald"],["first","restaurants"],["restaurants","outside"],["us","mcdonald"],["seattle","washington"],["pike","place"],["place","marketo"],["marketo","sell"],["sell","high"],["high","quality"],["quality","coffee"],["coffee","beans"],["equipment","eleven"],["eleven","introduces"],["offers","nutritional"],["nutritional","information"],["information","howard"],["leads","purchase"],["starbucks","brand"],["coffee","tea"],["begins","offering"],["offering","coffee"],["coffee","drinks"],["drinks","modeled"],["italian","coffee"],["coffee","bars"],["bars","mcdonald"],["extra","value"],["value","meals"],["meals","arcticircle"],["arcticircle","becomes"],["first","fast"],["fast","food"],["food","restauranto"],["restauranto","sell"],["sell","angus"],["angus","cattle"],["cattle","angus"],["angus","beef"],["beef","exclusively"],["exclusively","arby"],["first","fast"],["fast","food"],["food","restauranto"],["restauranto","implement"],["smoking","policy"],["policy","mcdonald"],["cuts","back"],["trans","fat"],["french","fries"],["fries","arby"],["begins","elimination"],["trans","fat"],["french","fries"],["halal","option"],["fast","food"],["thexpansion","ofast"],["ofast","food"],["food","chains"],["restaurant","options"],["options","inon"],["also","increased"],["increased","revenue"],["western","restaurant"],["islamic","marketing"],["global","economy"],["economy","p"],["p","el"],["outlets","offering"],["offering","halal"],["halal","options"],["options","include"],["include","kfc"],["kfc","nando"],["pizza","express"],["subway","mcdonald"],["decided","thathe"],["thathe","cost"],["operations","would"],["court","cases"],["cases","involving"],["involving","start"],["halal","certified"],["certified","method"],["machine","killing"],["againsthe","beliefs"],["muslims","however"],["trend","towards"],["towards","halal"],["communities","whichave"],["whichave","atimes"],["atimes","resulted"],["resulted","internet"],["internet","petitions"],["fast","food"],["food","industry"],["popular","target"],["anti","globalization"],["globalization","activists"],["activists","like"],["like","jos"],["vegetarian","activist"],["activist","groupsuch"],["number","ofast"],["ofast","food"],["food","worker"],["united","states"],["best","selling"],["selling","book"],["book","fast"],["fast","food"],["food","nation"],["nation","investigative"],["investigative","journalist"],["journalist","eric"],["againsthe","fast"],["fast","food"],["food","industry"],["industry","documenting"],["fast","food"],["food","rose"],["small","family"],["family","run"],["run","businesses"],["businesses","like"],["like","mcdonald"],["mcdonald","brothers"],["brothers","burger"],["large","multinational"],["multinational","corporate"],["scale","radically"],["radically","transformed"],["transformed","agriculture"],["agriculture","meat"],["meat","processing"],["labor","markets"],["late","twentieth"],["twentieth","century"],["fast","food"],["food","industry"],["industry","gave"],["gave","americans"],["cheaper","dining"],["dining","options"],["come","athe"],["athe","price"],["thenvironment","economy"],["small","town"],["town","communities"],["rural","america"],["real","costs"],["convenient","meal"],["broader","impact"],["large","scale"],["scale","food"],["food","production"],["workers","animals"],["fast","food"],["food","industry"],["united","states"],["many","major"],["major","international"],["international","chains"],["us","dominance"],["perceived","cultural"],["cultural","imperialism"],["imperialism","american"],["american","fast"],["fast","food"],["food","franchises"],["anti","globalization"],["globalization","protests"],["againsthe","us"],["us","government"],["karachi","pakistan"],["mosque","destroyed"],["kfc","restaurant"],["restaurant","legal"],["legal","issues"],["new","york"],["york","court"],["claimed","thathe"],["thathe","restaurant"],["restaurant","chain"],["teenage","childhood"],["childhood","obesity"],["obesity","daughter"],["attendant","health"],["health","problems"],["taste","sugar"],["fat","content"],["suit","argued"],["argued","thathe"],["thathe","company"],["company","purposely"],["public","abouthe"],["abouthe","nutritional"],["nutritional","value"],["judge","dismissed"],["case","buthe"],["buthe","fast"],["fast","food"],["food","industry"],["practices","particularly"],["advertising","although"],["kept","alive"],["mediand","political"],["political","circles"],["personal","responsibility"],["food","consumption"],["consumption","act"],["act","cheeseburger"],["cheeseburger","bill"],["us","house"],["lawas","reintroduced"],["lawas","claimed"],["sellers","ofood"],["non","alcoholic"],["alcoholic","drinks"],["drinks","arising"],["obesity","claims"],["bill","arose"],["fast","food"],["food","chains"],["products","made"],["blame","see"],["see","also"],["also","fast"],["fast","food"],["food","advertising"],["advertising","hazard"],["hazard","analysis"],["critical","control"],["control","points"],["list","ofast"],["ofast","food"],["food","restaurant"],["restaurant","chains"],["chains","list"],["largest","fast"],["fast","food"],["food","restaurant"],["restaurant","chains"],["chains","roadhouse"],["roadhouse","facility"],["facility","sanitation"],["sanitation","standard"],["standard","operating"],["operating","procedures"],["procedures","furthereading"],["david","selling"],["white","castle"],["american","food"],["food","new"],["new","york"],["york","new"],["new","york"],["york","university"],["university","press"],["press","kroc"],["kroc","ray"],["ray","anderson"],["anderson","robert"],["robert","grinding"],["outhe","making"],["chicago","contemporary"],["contemporary","books"],["social","history"],["modern","america"],["america","berkeley"],["berkeley","university"],["california","p"],["chains","franchised"],["franchised","america"],["america","new"],["new","york"],["york","viking"],["lou","ellen"],["days","publishing"],["fast","food"],["food","nation"],["dark","side"],["american","meal"],["meal","harpercollins"],["jones","pour"],["starbucks","built"],["company","one"],["one","cup"],["time","hyperion"],["hyperion","category"],["category","fast"],["fast","food"],["food","restaurants"],["restaurants","category"],["category","types"]],"all_collocations":["file fast","fast food","food restaurant","fast food","food restaurant","croatia file","file mcdonalds","thumb mcdonald","timesquare new","new york","york city","city file","ming lane","lane shop","shop cafe","cafe de","de coral","coral fast","fast food","food restaurant","restaurant april","april jpg","fast food","food restaurant","hong kong","kong fast","fast food","food restaurant","restaurant also","also known","quick service","service restaurant","specific type","restauranthat serves","serves fast","fast food","food cuisine","minimal foodservice","foodservice table","table service","service table","table service","food served","fast food","food restaurants","typically part","western pattern","pattern diet","diet meat","meat sweet","sweet diet","diet offered","limited menu","menu cooked","kept hot","hot finished","packaged torder","usually available","away though","though seating","seating may","provided athe","athe restaurant","restaurant fast","fast food","food restaurants","typically part","chains restaurant","restaurant chain","franchising franchise","franchise operation","partially prepared","prepared foods","controlled supply","supply channels","term fast","fast food","merriam webster","first fast","fast food","food restaurants","restaurants originated","united states","w restaurants","white castle","castle restaurant","restaurant white","white castle","today american","american founded","founded fast","fast food","food chainsuch","kfc est","multinational corporation","outlets across","globe variations","fast food","food restaurant","restaurant concept","concept include","include fast","fast casual","casual restaurant","mobile catering","catering trucks","trucks fast","fast casual","casual restaurants","higher sit","orders broughto","catering trucks","trucks often","often park","factory workers","workers united","united states","states file","file big","thumb righthe","righthe big","hamburger made","file burger","burger king","burger king","modern history","history ofast","ofast food","united states","july withe","withe opening","fast food","food restaurant","restaurant called","automat inew","inew york","prepared foods","foods behind","behind small","small glass","glass windows","coin operated","frank hardart","already opened","first horn","horn hardart","hardart automat","butheir automat","automat broadway","th street","street inew","inew york","york city","city created","automat restaurants","built around","deal withe","withe demand","demand automat","remained extremely","extremely popular","popular throughouthe","company also","also popularized","food witheir","witheir slogan","slogan less","less work","w restaurants","began franchising","first fast","fast food","food restaurant","restaurant e","american company","company white","white castle","castle restaurant","restaurant white","white castle","generally credited","second fast","fast food","food outlet","wichita kansas","selling hamburgers","five cents","numerous competitors","certain however","white castle","castle made","first significant","significant efforto","food production","operation ofast","ofast food","walter anderson","white castle","castle system","system created","first fast","fast food","food supply","supply chain","provide meat","meat buns","buns paper","paper goods","multi state","state hamburgerestaurant","hamburgerestaurant chain","chain standardized","even developed","construction division","builthe chain","prefabricated restaurant","restaurant buildings","service system","hamburger university","white castle","already established","public withe","withe term","term fast","fast food","two brothers","brothers originally","new hampshire","hampshire richard","maurice mcdonald","mcdonald opened","barbecue drive","profits came","brothers closed","three months","stand offering","simple menu","hamburgers french","french fries","coca cola","cola served","disposable paper","could produce","produce hamburgers","fries constantly","constantly without","without waiting","customer orders","could serve","immediately hamburgers","hamburgers cost","cost cents","typical diner","streamlined production","production method","service system","production line","line innovations","henry ford","restaurant equipment","equipment manufacturer","manufacturer prince","prince castle","machines prince","prince castle","ray kroc","kroc traveled","purchased almost","normal one","two found","concept kroc","kroc signed","franchise agreement","agreement withe","withe brothers","began opening","opening mcdonald","bought outhe","outhe brothers","modern mcdonald","major parts","business plan","promote cleanliness","become aware","aware ofood","ofood safety","safety issues","commitmento cleanliness","cleanliness kroc","kroc often","often took","took part","illinois outlet","garbage cans","another concept","concept kroc","kroc added","food preparation","practice still","still found","clean atmosphere","separated mcdonald","great success","success kroc","kroc envisioned","envisioned making","restaurants appeal","suburban families","white tower","tower one","original fast","fast food","food restaurants","tied hamburgers","public transportation","tied hamburgers","car children","eventually became","became mcdonald","corporation two","two miami","miami florida","florida businessmen","businessmen james","james mclamore","mclamore andavid","international fast","fast food","food restaurant","restaurant chain","chain burger","burger king","king mclamore","original mcdonald","hamburger stand","stand belonging","innovative assembly","assembly line","line based","based production","production system","wanted topen","similar operation","two partners","partners eventually","eventually decided","jacksonville florida","florida based","based insta","insta burger","burger king","king originally","originally opened","uncle matthew","matthew burns","burns opened","equipment known","oven proved","cooking burgers","county miami","partners discovered","discovered thathe","thathe design","heating elements","elements prone","pair eventually","eventually created","mechanized gas","gas grill","original company","company began","company burger","burger king","fast food","food restaurants","restaurants usually","seating area","eathe food","premises orders","traditional table","table service","rare orders","generally taken","wide counter","counter withe","withe customer","customer waiting","allow customers","customers torder","cars nearly","inception fast","fast food","require traditional","traditional cutlery","finger food","food common","common menu","menu items","fast food","food outlets","outlets include","include fish","fried chicken","chicken french","french fries","ice cream","cream although","although many","many fast","fast food","food restaurants","restaurants offer","offer slower","slower foods","foods like","like chili","chili con","con carne","carne chili","chili mashed","mashed potato","modern commercial","commercial fast","fast food","highly processed","large scale","bulk ingredients","ingredients using","using standardized","standardized cooking","production methods","usually rapidly","rapidly served","reduces operating","operating costs","allowing rapid","rapid product","product identification","counting promoting","promoting longer","longer holding","holding time","time avoiding","avoiding transfer","facilitating order","fast food","food operations","operations menu","menu items","generally made","processed ingredients","ingredients prepared","central supply","supply facilities","individual outlets","cooked usually","grill microwave","deep frying","short amount","upcoming orders","actual orders","torder following","following standard","standard operating","operating procedures","procedures pre","pre cooked","cooked products","holding times","process ensures","consistent level","product quality","order quickly","avoiding labor","equipment costs","individual stores","commercial emphasis","taste speed","speed product","product safety","safety uniformity","low cost","cost fast","fast food","food products","products made","ingredients formulated","mouth feel","preserve freshness","control handling","handling costs","high degree","degree ofood","ofood engineering","use ofood","including salt","salt sugar","sugar seasoning","processing techniques","techniques may","may limithe","limithe nutritional","nutritional value","final product","product value","value meals","value meal","menu items","items offered","offered together","lower price","would cost","cost individually","hamburger side","side andrink","andrink commonly","commonly constitute","value meal","chain value","value meals","fast food","food restaurants","facilitate product","price discrimination","larger side","side andrink","small fee","perceived creation","individual menu","menu items","also consistent","consistent withe","withe loyalty","loyalty marketing","marketing school","thoughto make","make quick","quick service","service possible","ensure accuracy","security many","many fast","fast food","food restaurants","incorporated hospitality","hospitality point","sale systems","kitchen crew","crew people","view orders","orders placed","placed athe","athe front","front counter","real time","allow orders","orders placed","cooks drive","allow orders","one register","another modern","modern point","sale systems","computer networks","networks using","remote access","corporate offices","offices managers","authorized personnel","personnel food","food service","service chains","chains partner","food equipment","equipment manufacturers","design highly","highly specialized","specialized restaurant","restaurant equipment","equipment often","often incorporating","incorporating heat","heat sensor","design collaboration","collaboration collaborative","collaborative design","restaurant kitchens","establish equipment","equipment specifications","restaurant operating","merchandising requirements","requirements file","thumb neighboring","neighboring fast","fast food","food restaurant","restaurant advertisement","advertisement signs","bowlingreen kentucky","kentucky file","thumb mcdonald","fast food","food restaurant","malaysia file","file dublin","dublin airport","airport mcdonald","restaurantjpg thumb","thumb mcdonald","fast food","food restaurant","dublin airport","airport consumer","consumer spending","united states","us billion","billion fast","fast food","national restaurant","restaurant association","fast food","food restaurants","reach billion","full service","service restaurant","restaurant segment","food industry","generate billion","sales fast","fast food","losing market","market share","called fast","fast casual","casual restaurant","expensive cuisine","major international","international brands","brands mcdonald","fast food","food supplier","supplier opened","first franchised","franchised restaurant","successful enterprise","terms ofinancial","ofinancial growth","growth brand","brand name","name recognition","ray kroc","boughthe franchising","franchising license","mcdonald brothers","brothers pioneered","pioneered concepts","emphasized standardization","introduced uniform","uniform products","products identical","increase sales","sales kroc","kroc also","cutting food","food costs","corporation size","force suppliers","prominent international","international fast","fast food","food companies","companies include","include burger","burger king","number two","two hamburger","hamburger chain","world known","customized menu","menu offerings","way another","another international","international fast","fast food","food chain","sells chicken","chicken related","related products","number fast","fast food","food company","china multinational","multinational corporations","corporations typically","typically modify","local tastes","overseas outlets","native franchisees","franchisees mcdonald","example uses","uses chicken","eating beef","kashrut kosher","kashrut kosher","kosher mcdonald","egypt indonesia","indonesia morocco","morocco saudi","saudi arabia","arabia malaysia","malaysia pakistand","pakistand singapore","menu items","halal north","north america","america file","thumb animal","animal fries","burger secret","secret menu","menu many","many fast","fast food","food operations","white castle","castle restaurant","restaurant white","white castle","midwest united","united states","states along","cke restaurants","alsowns carl","whose locations","united states","states west","west coast","coast krystal","krystal restaurant","restaurant krystal","famous chicken","chicken biscuits","biscuits cook","restaurant cook","american southeast","southeast raising","raising cane","chicken fingers","fingers raising","raising cane","mostly southern","southern states","states hot","michigand wisconsin","wisconsin n","nevada utah","southern california","california dick","seattle washington","arcticircle restaurants","restaurants arcticircle","western states","burger around","around flint","flint michigand","portland oregon","popular burger","burger chain","american south","box restaurant","restaurant jack","south canada","canada pizza","pizza chains","pizza canadian","primarily located","ontario coffee","coffee chain","chain country","country style","style operates","withe famous","famous coffee","coffee chain","chain tim","tim hortons","hortons maid","maid rite","rite restaurant","oldest chain","chain fast","fast food","food restaurants","united states","states founded","loose meat","meat hamburger","hamburger maid","maid rites","midwest mainly","mainly iowa","iowa minnesota","minnesota illinois","brands dominant","dominant inorth","inorth america","america include","include mcdonald","burger king","number three","three burger","burger chain","new england","england based","based chain","chain automobile","automobile oriented","oriented sonic","sonic drive","oklahoma city","born coffee","coffee based","based fast","fast food","food beverage","beverage corporation","corporation kfc","taco bell","largest restaurant","world yum","yum brands","brands andomino","pizza pizza","pizza chain","chain known","popularizing home","home delivery","delivery ofast","ofast food","food subway","subway restaurant","restaurant subway","sub sandwiches","largest restaurant","restaurant chain","food items","denver based","based sub","sub shop","another fast","fast growing","growing sub","sub chain","chain yet","istill far","far behind","behind subway","smaller sub","sub shops","shops include","jersey mike","jimmy john","w restaurants","united states","canada fast","fast food","food brand","international fast","fast food","food corporation","several countries","majority ofast","ofast food","food chains","american owned","originally american","american owned","since set","canadian management","management headquarters","headquarters locationsuch","bread chipotle","chipotle mexican","mexican grill","grill five","five guys","usually american","american fast","fast food","food chains","chains expanding","canada canadian","canadian chainsuch","tim hortons","united states","border statesuch","new york","michigan tim","tim hortons","expand tother","tother countries","countries outside","north america","pita pit","pit franchise","franchise originated","united states","canadian extreme","extreme pita","low fat","salt pita","pita sandwiches","larger canadian","canadian cities","canadian fast","fast food","food chainsuch","serve north","north american","american style","style asian","asian cuisine","cuisine asian","asian foods","located mainly","us military","military bases","continents harvey","chain present","every province","province australia","fast food","food market","market began","withe opening","several american","american franchises","franchises including","including mcdonald","kfc pizza","pizza hut","burger king","king followed","followed however","burger king","king market","market found","found thathis","thathis name","registered trademark","takeaway food","food shop","adelaide thus","burger king","king australian","australian market","pick another","another name","name selecting","hungry jack","brand name","name prior","australian fast","fast food","food market","market consisted","consisted primarily","uk fish","chips takeaway","takeaway united","united kingdom","home based","based fast","fast food","food operations","number one","one outlet","market however","however brands","brands like","like wimpy","wimpy brand","brand wimpy","wimpy still","still remain","remain although","branches became","became burger","burger king","home grown","grown chainsuch","numerous american","american chainsuch","burger king","also established","study developed","irish times","county dublin","fast food","food capital","capital american","american chainsuch","pizza mcdonald","pizza hut","big presence","restaurant chain","country japan","burger chains","chains including","including burger","freshness burger","major fast","fast food","food chains","chains indiare","indiare kfc","kfc mcdonald","mcdonald starbucks","starbucks burger","burger king","king subway","subway pizza","pizza hut","chains provide","provide mostly","mostly western","western products","products however","indians prefer","local cuisine","pav etc","etc major","major emerging","emerging food","food chains","chains include","caf coffee","coffee day","day inigeria","chicken republic","fried chicken","fast food","food chains","chains kfc","kfc andomino","recently entered","country fast","fast food","pakistan varies","many international","international fast","fast food","food including","including burger","burger king","king kfc","kfc mcdonald","pizza pizza","pizza hut","steak escape","gloria jean","international chains","local cuisine","cuisine people","pakistan like","bun kebab","kebab rolls","rolls etc","fast food","international fast","fast food","food chains","chains like","like subway","subway mcdonald","burger king","king etc","etc arepresented","also local","local chains","chains like","russian cuisine","menu south","south africa","africa kfc","popular fast","fast food","food chain","chain south","africa sunday","restaurant chicken","wimpy restaurant","restaurant south","south africa","africa branches","branches wimpy","ocean basket","basket along","homegrown franchises","highly popular","popular within","country mcdonald","mcdonald subway","subway pizza","pizza hut","significant presence","presence within","within south","south africa","africa hong","hong kong","kong file","far east","interior cafe","cafe de","de coral","coral barjpg","barjpg thumb","caf de","de coral","coral branch","hong kong","hong kong","kong although","although mcdonald","quite popular","popular three","three major","major local","local fast","fast food","food chains","chains provide","provide hong","hong kong","kong style","style fast","fast food","food namely","namely caf","caf de","de coral","coral restaurant","restaurant caf","caf de","de coral","coral restaurant","caterers limited","caf de","customers daily","daily unlike","unlike western","western fast","fast food","food chains","restaurants offer","offer four","four different","different menus","day namely","namely breakfast","breakfast lunch","lunch afternoon","offered throughouthe","throughouthe day","day dai","dai pai","pai dong","traditional hong","hong kong","kong street","street food","food may","considered close","close relatives","conventional fast","fast food","food outlet","burger chain","burger king","king domino","popular fast","fast food","food restaurant","restaurant chains","chains like","like mcdonald","offer kosher","kosher branches","branches non","non kosher","kosher foodsuch","israeli fast","fast food","food chains","chains even","even inon","inon kosher","kosher branches","many fast","fast food","food chains","serve pizza","pizza hamburger","hamburger sushi","local foodsuch","new zealand","zealand inew","inew zealand","fast food","food market","market began","kfc opened","opened pizza","pizza hut","three remain","remain popular","popular today","today burger","burger king","king andomino","market later","australian pizza","pizza chains","chains eagle","eagle boys","australia pizza","also entered","butheir new","new zealand","zealand operations","later sold","pizza hut","hut andomino","fast food","food chains","founded inew","inew zealand","zealand including","including burger","burger fuel","fuel founded","pie founded","financial trouble","hell pizza","pizza founded","philippines fast","fast food","us however","thathey serve","serve filipino","filipino dishes","american products","served filipino","filipino style","style fast","fast food","food chain","chain restaurant","generally owned","owned either","parent company","fast food","food chain","independent party","party given","righto use","trade name","latter case","parent company","company typically","typically requiring","initial fixed","fixed fee","monthly sales","sales upon","upon opening","franchisee oversees","day operations","parent company","company may","may choose","contract sell","another franchisee","restaurant fast","fast food","food chains","locations exceeds","company owned","owned locations","locations fast","fast food","food chains","chains rely","uniformity internal","internal operations","brand image","image across","customers thisense","reliability coupled","positive customer","customer experience","experience brings","brings customers","place trust","company thisense","trust leads","increased customer","customer loyalty","recurring business","different restaurants","much easier","whathey know","know rather","unknown due","various restaurant","restaurant locations","common rules","regulations parent","parent companies","companies often","often rely","field representatives","ensure thathe","thathe practices","consistent withe","withe company","company standards","standards however","locations fast","fast food","food chain","parent company","guarantee thathese","thathese standards","followed moreover","much morexpensive","company standards","consequence parent","parent companies","companies tend","franchisee violations","morelaxed manner","part someone","someone visiting","united states","interior design","similar however","particular cultural","cultural differences","japan mcdonald","shrimp burger","japanese menu","shrimp burger","study stated","world consumption","march taco","taco bell","bell opened","first restaurant","restaurant india","non consumption","cultural norm","beliefs taco","taco bell","dietary distinctions","indian culture","token completely","menu due","throughouthe country","country health","large fast","fast food","food chains","incorporate healthier","healthier alternatives","white meat","meat snack","fresh fruit","fruit however","people see","commercial measure","measure rather","appropriate reaction","ethical concerns","concerns abouthe","abouthe world","world ecology","health mcdonald","chain would","would include","include nutritional","nutritional information","corn recall","million worth","corn based","based foods","products contained","genetically modified","modified maize","maize genetically","genetically modified","modified corn","human consumption","genetically modified","modified food","food thenvironmental","thenvironmental group","group friends","first detected","contaminated shells","job consumer","consumer appeal","appeal file","wan grand","grand millennium","millennium plaza","plaza cafe","cafe de","de coral","coral restaurant","restaurant june","june jpg","fast food","food restaurant","wan hong","hong kong","kong fast","fast food","food outlets","become popular","several reasons","reasons one","producing food","food companies","deliver food","low cost","addition although","fast food","hungry person","post world","world war","war ii","ii period","united states","states fast","fast food","food chains","chains like","like mcdonald","rapidly gained","cleanliness fast","fast service","child friendly","friendly atmosphere","road could","could grab","quick meal","home cooking","cooking prior","fast food","food chain","chain restaurant","restaurant people","people generally","greasy spoon","spoon diners","service lacking","high end","end restaurants","modern stream","stream lined","lined convenience","fast food","food restaurant","restaurant provided","new alternative","products associated","progress technology","innovation fast","fast food","food restaurants","restaurants rapidly","rapidly became","everyone could","could agree","many featuring","featuring child","child size","size menu","play areas","branding campaigns","campaigns like","iconic ronald","younger customers","customers parents","parents could","children played","withe toys","toys included","happy meal","long history","history ofast","ofast food","food advertising","advertising campaigns","campaigns many","children fast","fast food","food marketing","marketing largely","largely focuses","teenagers popular","popular methods","advertising include","include television","television product","product placement","toys games","games educational","movies character","character licensing","websites advertisements","advertisements targeting","targeting children","children mainly","mainly focus","free toys","toys movie","movie tie","tie ins","fast food","food restaurants","restaurants use","use kid","toys kid","kid friendly","vibrant colors","play areas","draw children","children toward","products children","parents purchases","estimated total","billion everyear","everyear fast","fast food","american culture","advertised fast","fast food","food restaurant","mean parent","common among","comply witheir","witheir child","major focus","children fast","fast food","food industry","created controversy","controversy due","rising issue","children obesity","better business","business bureaus","bureaus called","called children","food beverage","beverage advertising","advertising initiative","stop ads","ads aimed","whathe council","ads directed","directed towards","towards children","children however","congress requested","requested guidelines","disease control","two basic","basic requirements","requirements identified","include healthful","healthful ingredients","companies experience","experience heavy","heavy pressure","comply withe","withe guidelines","guidelines many","many fast","fast food","food industries","comply withe","withe guidelines","guidelines although","although many","many companies","fast food","food industry","industry spent","spent billion","advertise unhealthy","unhealthy products","products children","teens according","yale rudd","rudd center","food policy","policy obesity","include healthier","healthier sides","fast food","food restaurant","restaurant kids","kids meals","healthier lifestyle","growing problem","american obesity","world americand","americand american","american style","style fast","fast food","food outlets","quality customer","customer service","novelty even","even though","towards american","american foreign","foreign policy","generally many","many consumers","wealth progress","well ordered","western society","therefore become","many cities","cities around","world particularly","particularly among","among younger","younger people","varied tastes","tastes impact","impact ofast","ofast food","food restaurant","restaurant availability","time fast","fast food","food restaurants","growing rapidly","rapidly especially","us research","research low","low income","predominantly african","greater exposure","fast food","food outlets","higher income","predominantly white","white areas","question whether","unhealthy group","people compared","higher socioeconomic","socioeconomic status","shown thathere","lower chance","fast food","food restaurant","selected us","us locations","number ofast","ofast food","food restaurants","predominantly african","african american","american residential","residential areas","four times","times less","less likely","supermarket near","predominantly white","white areas","areas innovations","innovations timeline","timeline walter","walter scott","horse drawn","drawn lunch","lunch wagon","simple kitchen","kitchen bringing","bringing hot","hot dinners","workers first","first horn","horn hardart","hardart automat","automat opened","philadelphia horn","horn hardart","hardart opens","second automat","manhattan walter","walter anderson","anderson builthe","builthe first","first white","white castle","castle restaurant","restaurant white","white castle","limited menu","menu high","high volume","volume low","low cost","cost high","high speed","speed hamburgerestaurant","w root","root beer","beer took","soda fountain","roadside stand","w root","root beer","beer began","began franchising","white castle","castle restaurant","restaurant white","white castle","castle opens","first restaurant","restaurant maid","maid rite","rite opened","first restaurant","muscatine iowa","howard johnson","restaurants formally","burger begins","begins drive","service utilizing","utilizing call","call box","box technology","technology mcdonald","first restaurants","restaurants outside","us mcdonald","seattle washington","pike place","place marketo","marketo sell","sell high","high quality","quality coffee","coffee beans","equipment eleven","eleven introduces","offers nutritional","nutritional information","information howard","leads purchase","starbucks brand","coffee tea","begins offering","offering coffee","coffee drinks","drinks modeled","italian coffee","coffee bars","bars mcdonald","extra value","value meals","meals arcticircle","arcticircle becomes","first fast","fast food","food restauranto","restauranto sell","sell angus","angus cattle","cattle angus","angus beef","beef exclusively","exclusively arby","first fast","fast food","food restauranto","restauranto implement","smoking policy","policy mcdonald","cuts back","trans fat","french fries","fries arby","begins elimination","trans fat","french fries","halal option","fast food","thexpansion ofast","ofast food","food chains","restaurant options","options inon","also increased","increased revenue","western restaurant","islamic marketing","global economy","economy p","p el","outlets offering","offering halal","halal options","options include","include kfc","kfc nando","pizza express","subway mcdonald","decided thathe","thathe cost","operations would","court cases","cases involving","involving start","halal certified","certified method","machine killing","againsthe beliefs","muslims however","trend towards","towards halal","communities whichave","whichave atimes","atimes resulted","resulted internet","internet petitions","fast food","food industry","popular target","anti globalization","globalization activists","activists like","like jos","vegetarian activist","activist groupsuch","number ofast","ofast food","food worker","united states","best selling","selling book","book fast","fast food","food nation","nation investigative","investigative journalist","journalist eric","againsthe fast","fast food","food industry","industry documenting","fast food","food rose","small family","family run","run businesses","businesses like","like mcdonald","mcdonald brothers","brothers burger","large multinational","multinational corporate","scale radically","radically transformed","transformed agriculture","agriculture meat","meat processing","labor markets","late twentieth","twentieth century","fast food","food industry","industry gave","gave americans","cheaper dining","dining options","come athe","athe price","thenvironment economy","small town","town communities","rural america","real costs","convenient meal","broader impact","large scale","scale food","food production","workers animals","fast food","food industry","united states","many major","major international","international chains","us dominance","perceived cultural","cultural imperialism","imperialism american","american fast","fast food","food franchises","anti globalization","globalization protests","againsthe us","us government","karachi pakistan","mosque destroyed","kfc restaurant","restaurant legal","legal issues","new york","york court","claimed thathe","thathe restaurant","restaurant chain","teenage childhood","childhood obesity","obesity daughter","attendant health","health problems","taste sugar","fat content","suit argued","argued thathe","thathe company","company purposely","public abouthe","abouthe nutritional","nutritional value","judge dismissed","case buthe","buthe fast","fast food","food industry","practices particularly","advertising although","kept alive","mediand political","political circles","personal responsibility","food consumption","consumption act","act cheeseburger","cheeseburger bill","us house","lawas reintroduced","lawas claimed","sellers ofood","non alcoholic","alcoholic drinks","drinks arising","obesity claims","bill arose","fast food","food chains","products made","blame see","see also","also fast","fast food","food advertising","advertising hazard","hazard analysis","critical control","control points","list ofast","ofast food","food restaurant","restaurant chains","chains list","largest fast","fast food","food restaurant","restaurant chains","chains roadhouse","roadhouse facility","facility sanitation","sanitation standard","standard operating","operating procedures","procedures furthereading","david selling","white castle","american food","food new","new york","york new","new york","york university","university press","press kroc","kroc ray","ray anderson","anderson robert","robert grinding","outhe making","chicago contemporary","contemporary books","social history","modern america","america berkeley","berkeley university","california p","chains franchised","franchised america","america new","new york","york viking","lou ellen","days publishing","fast food","food nation","dark side","american meal","meal harpercollins","jones pour","starbucks built","company one","one cup","time hyperion","hyperion category","category fast","fast food","food restaurants","restaurants category","category types"],"new_description":"file fast_food_restaurant thumb fast_food_restaurant port croatia file mcdonalds thumb mcdonald restaurant timesquare new_york city file tong ming lane shop cafe_de coral fast_food_restaurant april jpg thumb fast_food_restaurant hong_kong fast_food_restaurant also_known quick service_restaurant within industry specific type restauranthat serves fast_food cuisine minimal foodservice table_service table_service food_served fast_food_restaurants typically part western pattern diet meat sweet diet offered limited menu cooked bulk advance kept hot finished packaged torder usually available take_away though seating may provided athe restaurant fast_food_restaurants typically part chain chains restaurant_chain franchising franchise operation ingredients partially prepared foods supplies controlled supply channels term fast_food recognized dictionary merriam_webster arguably first fast_food_restaurants originated united_states w restaurants w white_castle restaurant white_castle today american founded fast_food chainsuch mcdonald est kfc est multinational corporation outlets across globe variations fast_food_restaurant concept include fast_casual restaurant mobile_catering trucks fast_casual restaurants higher sit customers sit orders broughto catering trucks often park outside popular factory workers united_states file big thumb_righthe big hamburger made debut file burger_king thumb burger_king sandwich trace modern history ofast_food united_states july withe opening fast_food_restaurant called automat inew_york automat cafeteria prepared foods behind small glass windows coin operated frank hardart already opened first horn_hardart automat philadelphia butheir automat broadway th_street inew_york_city created automat restaurants built around country deal withe demand automat remained extremely popular throughouthe company_also popularized notion take food witheir slogan less work mother historians w restaurants opened began franchising first fast_food_restaurant e thus american company white_castle restaurant white_castle generally credited opening second fast_food outlet wichita kansas selling hamburgers five cents inception numerous competitors certain however white_castle made first significant efforto food production look operation ofast_food william walter anderson white_castle system created first fast_food supply chain provide meat buns paper goods supplies pioneered concept multi state hamburgerestaurant chain standardized look construction restaurants even developed construction division manufactured builthe chain prefabricated restaurant buildings mcdonald service system much kroc mcdonald outlets hamburger university built practices white_castle already established hamburgerestaurant associated public withe term fast_food created two brothers originally new_hampshire richard maurice mcdonald opened barbecue drive city san discovering profits came hamburgers brothers closed three_months reopened walk stand offering simple menu hamburgers french_fries coffee coca cola served disposable paper could produce hamburgers fries constantly without waiting customer orders could serve immediately hamburgers cost cents half price typical diner streamlined production method named service system influenced production line innovations henry ford mcdonald restaurant equipment manufacturer prince castle biggest milkshake machines prince castle ray kroc traveled california discover company purchased almost dozen units opposed normal one two found restaurants success mcdonald concept kroc signed franchise agreement withe brothers began opening mcdonald restaurants illinois kroc bought outhe brothers created modern mcdonald mcdonald major parts business plan promote cleanliness restaurants americans become aware ofood safety issues part commitmento cleanliness kroc often took part cleaning des illinois outlet garbage cans another concept kroc added great glass enabled customer view food_preparation practice still found chainsuch clean atmosphere part kroc plan separated mcdonald rest competition attributes great success kroc envisioned making restaurants appeal suburban families white tower one original fast_food_restaurants tied hamburgers public_transportation tied hamburgers car children family p roughly time kroc eventually became mcdonald corporation two miami florida businessmen james mclamore andavid opened franchise predecessor international fast_food_restaurant chain burger_king mclamore visited original mcdonald hamburger stand belonging mcdonald potential innovative assembly line based production system decided wanted topen similar operation two partners eventually decided money jacksonville florida based insta burger_king originally opened founders owners chain j wife uncle matthew burns opened around piece equipment known insta insta oven proved successful cooking burgers required franchises carry device mclamore operating within miami county miami areand growing fast despite success operation partners discovered thathe design insta made unit heating elements prone degradation beef pair eventually created mechanized gas grill avoided problems changing way meat cooked unit original company began purchased mclamore renamed company burger_king fast_food_restaurants usually seating area customers eathe food premises orders designed take_away traditional table_service rare orders generally taken paid wide counter withe customer waiting counter tray container food drive service allow customers torder pick food cars nearly inception fast_food designed beaten go often require traditional cutlery eaten finger food common menu_items fast_food outlets include fish pita hamburger fried_chicken french_fries taco ice_cream although_many fast_food_restaurants offer slower foods like chili con carne chili mashed potato salad modern commercial fast_food highly processed prepared large_scale bulk ingredients using standardized cooking production methods equipment usually rapidly served bags plastic fashion reduces operating costs allowing rapid product identification counting promoting longer holding time avoiding transfer facilitating order fast_food operations menu_items generally made processed ingredients prepared central supply facilities shipped individual outlets cooked usually grill microwave deep frying assembled short amount upcoming orders stock response actual orders torder following standard operating procedures pre cooked products monitored freshness holding times process ensures consistent level product quality key delivering order quickly customer avoiding labor equipment costs individual stores commercial emphasis taste speed product safety uniformity low_cost fast_food products made ingredients formulated achieve flavor texture mouth feel preserve freshness control handling costs preparation order requires high degree ofood engineering use ofood including salt sugar seasoning processing techniques may limithe nutritional value final product value meals value meal group menu_items offered together lower price would cost individually hamburger side andrink commonly constitute value meal depending chain value meals fast_food_restaurants common merchandising facilitate product selling price discrimination time upgraded larger side andrink small fee perceived creation discount individual menu_items exchange purchase meal also consistent withe loyalty marketing school thoughto make quick service possible ensure accuracy security many fast_food_restaurants incorporated hospitality point sale systems makes possible kitchen crew people view orders placed athe front counter drive real_time allow orders placed drive speakers taken cooks drive walk configurations allow orders taken one register paid another modern point sale systems operate computer networks using variety software records generated remote access given corporate offices managers authorized personnel food_service chains partner food equipment manufacturers design highly specialized restaurant equipment often incorporating heat sensor design collaboration collaborative design rapid computer restaurant kitchens used establish equipment specifications consistent restaurant operating merchandising requirements file thumb neighboring fast_food_restaurant advertisement signs bowlingreen kentucky file thumb mcdonald fast_food_restaurant malaysia file dublin airport mcdonald restaurantjpg thumb mcdonald fast_food_restaurant dublin airport consumer spending united_states us_billion fast_food increased billion national restaurant association fast_food_restaurants us reach billion sales increase comparison full_service restaurant segment food_industry expected generate billion sales fast_food losing market_share called fast_casual restaurant offer robust expensive cuisine major_international brands mcdonald fast_food supplier opened first franchised restaurant us uk become successful enterprise terms ofinancial growth brand_name recognition ray kroc boughthe franchising license mcdonald brothers pioneered concepts emphasized standardization introduced uniform products identical respects increase sales kroc also cutting food_costs much using mcdonald corporation size force suppliers conform prominent international fast_food companies include burger_king number two hamburger chain world known promoting customized menu offerings way another international fast_food chain kfc sells chicken related products number fast_food company people republic china multinational corporations typically modify menus cater local tastes overseas outlets owned native franchisees mcdonald india example uses chicken beef pork burgers traditionally eating beef israel mcdonald restaurants kashrut kosher respecthe also kashrut kosher mcdonald argentina egypt indonesia morocco saudi_arabia malaysia pakistand singapore menu_items halal north_america file thumb animal fries burger secret menu many fast_food operations local regional white_castle restaurant white_castle midwest united_states along owned cke restaurants alsowns carl whose locations primarily united_states west_coast krystal restaurant krystal famous chicken biscuits cook restaurant cook restaurants american southeast raising cane chicken fingers raising cane mostly southern states hot michigand wisconsin n burger nevada utah texas original chains southern_california dick drive seattle_washington arcticircle restaurants arcticircle utah western states burger around flint michigand usa portland_oregon popular burger chain american south jack box restaurant jack box located west south canada pizza chains pizza canadian pizza primarily located ontario coffee chain country style operates ontario withe famous coffee chain tim hortons maid rite restaurant one oldest chain fast_food_restaurants united_states founded specialty loose meat hamburger maid rites found midwest mainly iowa minnesota illinois brands dominant inorth_america include mcdonald burger_king wendy number three burger chain usa new_england based chain automobile oriented sonic drive oklahoma_city born coffee based fast_food beverage corporation kfc taco_bell part largest restaurant world yum brands andomino pizza pizza chain known popularizing home delivery ofast_food subway restaurant subway known sub sandwiches largest restaurant_chain serve_food items denver based sub shop another fast_growing sub chain yet locations istill far behind subway locations smaller sub shops include jersey mike jimmy john_firehouse firehouse w restaurants originally united_states canada fast_food brand currently international fast_food corporation several countries canada majority ofast_food_chains american owned originally american owned since set canadian management headquarters locationsuch bread chipotle mexican grill five guys carl although case usually american fast_food chains expanding canada canadian chainsuch tim hortons states united_states prominent border statesuch new_york michigan tim hortons expand tother countries outside north_america pita pit franchise originated canadand expanded united_states countries canadian extreme pita low fat salt pita sandwiches stores larger canadian cities canadian fast_food chainsuch serve north_american style asian cuisine asian foods company located mainly canadand usa outlets us military bases continents harvey canadian chain present every province australia fast_food market began thearly withe opening several american franchises including mcdonald kfc pizza_hut introduced burger_king followed however burger_king market found thathis name already registered trademark takeaway food shop adelaide thus burger_king australian market forced pick another name selecting hungry jack brand_name prior australian fast_food market consisted primarily imports uk fish chips takeaway united_kingdom united home based fast_food operations closed mcdonald became number one outlet market however brands like wimpy brand wimpy still remain although majority branches became burger_king republic ireland addition home grown chainsuch numerous american chainsuch mcdonald burger_king also established presence ireland study developed published irish times named dublin county dublin ireland fast_food capital american chainsuch domino pizza mcdonald pizza_hut kfc big presence japan local chainsuch restaurant_chain foods country japan burger chains including burger freshness burger major fast_food chains indiare kfc mcdonald starbucks burger_king subway pizza_hut chains provide mostly western products however indians prefer local cuisine pav pav etc major emerging food_chains include caf coffee day inigeria chicken republic fried_chicken fast_food chains kfc andomino pizza recently entered country fast_food pakistan varies many international fast_food including burger_king kfc mcdonald domino pizza pizza_hut steak escape gloria jean addition international chains local cuisine people pakistan like bun kebab kebab rolls etc fast_food international fast_food chains like subway mcdonald burger_king etc arepresented cities also local chains like specializing russian cuisine elements added menu south_africa kfc popular fast_food chain south sunday africa sunday chicken restaurant chicken wimpy restaurant south_africa branches wimpy ocean basket along nando arexamples homegrown franchises highly popular within country mcdonald subway pizza_hut significant presence within south_africa hong_kong file far east interior cafe_de coral barjpg thumb caf_de coral branch hong_kong hong_kong although mcdonald kfc quite popular three_major local fast_food chains provide hong_kong style fast_food namely caf_de coral restaurant caf_de coral restaurant caterers limited caf_de serves customers daily unlike western fast_food chains restaurants_offer four different menus day namely breakfast lunch afternoon offered throughouthe day dai_pai_dong traditional hong_kong street_food may considered close relatives conventional fast_food outlet burger chain israel popular mcdonald burger_king domino pizza also_popular fast_food_restaurant chains like mcdonald offer kosher branches non kosher foodsuch cheeseburger rare israeli fast_food chains even inon kosher branches many fast_food chains serve pizza hamburger sushi local_foodsuch falafel new_zealand inew_zealand fast_food market began kfc opened pizza_hut mcdonald three remain popular today burger_king andomino entered market later australian pizza chains eagle boys pizza australia pizza also entered market butheir new_zealand operations later sold pizza_hut andomino fast_food chains founded inew_zealand including burger fuel founded pie founded closed falling financial trouble bought mcdonald hell pizza founded philippines fast_food us however difference thathey serve filipino dishes american products served filipino style fast_food chain restaurant generally owned either parent_company fast_food chain franchisee independent party given righto use company trademark trade name latter case contract made franchisee parent_company typically requiring franchisee pay initial fixed fee addition percentage monthly sales upon opening business franchisee oversees day day operations restaurant acts manager store contract parent_company may choose contract sell franchise another franchisee operate restaurant fast_food chains number locations exceeds number company owned locations fast_food chains rely consistency uniformity internal operations brand image across locations order convey sense reliability customers thisense reliability coupled positive customer experience brings customers place trust company thisense trust leads increased customer loyalty gives company source recurring business person presented choice different restaurants eat much easier stick whathey know rather take gamble unknown due importance consistency standards various restaurant locations set common rules regulations parent companies often rely field representatives ensure_thathe practices locations consistent withe company standards however locations fast_food chain harder parent_company guarantee thathese standards followed moreover much morexpensive discharge franchisee company standards discharge employee reason consequence parent companies tend deal franchisee violations morelaxed manner part someone visiting mcdonald united_states visiting mcdonald japan interior design menu speed service taste food similar however differences tailor particular cultural differences example october midst sales japan mcdonald added shrimp burger japanese menu choice introduce shrimp burger study stated world consumption shrimp led japan march taco_bell opened first restaurant india non consumption beef cultural norm light india beliefs taco_bell tailor menu dietary distinctions indian culture replacing beef chicken token completely options introduced menu due throughouthe_country health large fast_food chains beginning incorporate healthier alternatives menu white meat snack fresh fruit however people see moves commercial measure rather appropriate reaction ethical concerns abouthe world ecology people health mcdonald announced march chain would include nutritional information packaging products september october corn recall million worth corn based foods restaurants well products contained genetically modified maize genetically modified corn approved human consumption first genetically modified food thenvironmental group friends first detected contaminated shells critical fda job consumer appeal file wan grand millennium plaza cafe_de coral restaurant june jpg thumb_interior fast_food_restaurant wan hong_kong fast_food outlets become_popular consumers several reasons one economies scale purchasing producing food companies deliver food consumers low_cost addition although people fast_food hungry person far home post world_war ii period united_states fast_food chains like mcdonald rapidly gained reputation cleanliness fast service child friendly atmosphere families road could grab quick meal seek break routine home cooking prior rise fast_food chain restaurant people generally choice greasy_spoon diners quality food often service lacking high_end_restaurants impractical families children modern stream lined convenience fast_food_restaurant provided new alternative appealed americans ideas products associated progress technology innovation fast_food_restaurants rapidly became everyone could agree many featuring child size menu play areas branding campaigns like iconic ronald appeal younger customers parents could minutes peace children played withe toys included happy meal long history ofast_food advertising campaigns many directed children fast_food marketing largely focuses children teenagers popular methods advertising include television product placement toys games educational movies character licensing celebrity websites advertisements targeting children mainly focus free toys movie tie ins fast_food_restaurants use kid meals toys kid friendly vibrant colors play areas draw children toward products children power parents purchases estimated total billion everyear fast_food become part american_culture reward children advertised fast_food_restaurant cause parents mean parent common among parents comply witheir child desires major focus children fast_food industry created controversy due rising issue children obesity americas result focus coalition created run council better business bureaus called children food beverage advertising initiative stop ads aimed children promote whathe council better products ads directed towards children however congress requested guidelines put place department centers disease control two basic requirements identified guidelines foods advertised children food include healthful ingredients food cannot contain amounts sugar fat guidelines voluntary companies experience heavy pressure comply company years comply withe guidelines many fast_food industries started comply withe guidelines although_many companies ways go fast_food industry spent billion advertise unhealthy products children teens according report yale rudd center food policy obesity points progress include healthier sides beverages fast_food_restaurant kids_meals guidelines interested healthier lifestyle children growing problem american obesity parts world americand american style fast_food outlets popular quality customer_service novelty even_though often targets popular towards american foreign policy globalization generally many consumers wealth progress well ordered western society therefore become attractions many cities around world particularly among younger people varied tastes impact ofast_food_restaurant availability time fast_food_restaurants growing rapidly especially according us research low_income predominantly african greater exposure fast_food outlets higher income predominantly white areas put question whether neighborhoods targeted causes unhealthy group people compared people higher socioeconomic status also shown thathere lower chance fast_food_restaurant study selected us locations found number ofast_food_restaurants bars wealth neighborhood predominantly african_american residential areas four_times less likely supermarket near predominantly white areas innovations timeline walter scott providence outfitted horse drawn lunch wagon simple kitchen bringing hot dinners workers first horn_hardart automat opened philadelphia horn_hardart opens second automat manhattan walter anderson builthe first white_castle restaurant white_castle wichita introducing limited menu high volume low_cost high_speed hamburgerestaurant w root beer took product soda_fountain roadside stand w root beer began franchising white_castle restaurant white_castle opens first restaurant maid rite opened first restaurant muscatine_iowa howard johnson pioneered concept restaurants formally advertising burger begins drive service utilizing call box technology mcdonald opens first restaurants outside us mcdonald marketing us opens seattle_washington pike place marketo sell high_quality coffee beans equipment eleven introduces products services arby offers nutritional information howard leads purchase starbucks brand founders adopted name coffee tea begins offering coffee drinks modeled sold italian coffee bars mcdonald extra value meals arcticircle becomes first fast_food_restauranto sell angus cattle angus beef exclusively arby first fast_food_restauranto implement smoking policy mcdonald cuts back amount trans fat percent french_fries arby begins elimination trans fat french_fries introduction halal option fast_food thexpansion ofast_food_chains countries resulted rise restaurant options inon also increased revenue western restaurant research islamic marketing tourism global economy p el outlets offering halal options include kfc nando pizza express subway mcdonald carried trial decided thathe cost operations would high also court cases involving start businesses attempts alter halal certified method machine killing againsthe beliefs muslims however trend towards halal communities whichave atimes resulted internet petitions fast_food industry popular target critics anti globalization activists like jos vegetarian activist groupsuch people treatment animals well workers number ofast_food worker occurred united_states best selling book fast_food nation investigative journalist eric broad againsthe fast_food industry documenting fast_food rose small family run businesses like mcdonald brothers burger large multinational corporate scale radically transformed agriculture meat processing labor markets late twentieth_century argues innovations fast_food industry gave americans cheaper dining options come athe price thenvironment economy small_town communities rural america consumers real costs convenient meal terms health broader impact large_scale food production processing workers animals land fast_food industry popular united_states source innovation many major_international chains based seen us dominance perceived cultural imperialism american fast_food franchises often target anti globalization protests againsthe us_government example karachi pakistan initially bombing islam mosque destroyed kfc restaurant legal issues mcdonald new_york court family claimed thathe restaurant_chain responsible teenage childhood obesity daughter obesity attendant health problems food taste sugar fat content advertising children suit argued thathe_company purposely public abouthe nutritional value product judge dismissed case buthe fast_food industry publicity practices particularly way children advertising although lawsuits issue kept alive mediand political circles promoting need reform response personal responsibility food consumption act cheeseburger bill passed us house representatives later lawas reintroduced meethe fate lawas claimed ban lawsuits producers sellers ofood non_alcoholic drinks arising obesity claims bill arose increase lawsuits fast_food chains people claimed eating products made blame see_also fast_food advertising hazard analysis critical control points list ofast_food_restaurant chains list list largest fast_food_restaurant chains roadhouse facility sanitation standard operating procedures furthereading david selling white_castle creation american food new_york new_york university_press kroc ray anderson robert grinding outhe making mcdonald chicago contemporary books harvey plenty social history eating modern america berkeley university california p stan chains franchised america new_york viking lou ellen stephanie service man tray days drive days publishing fast_food nation dark side american meal harpercollins howard jones pour heart starbucks built company one cup time hyperion category_fast_food_restaurants_category_types restaurants"},{"title":"Fearless Critic","description":"file fearless critic santonio restaurant guide coverjpg thumb fearless critic santonio restaurant guide published in fearless critic media is a us publishing house best known for its books the wine trials the beer trials and the fearless critic series of restaurant guidebooks to us cities the publishing house was founded in merged with workman publishing company workman in and currently has eight restaurant guides in print austin texas houston texas dallas texasantonio santonio texaseattle seattle washington portland oregon washington dc and new haven connecticut in fearless critic launched a new nonfiction imprint whose firstitle will be the marchardcover blind taste a defense ofast food cheap beer by robin goldstein author of the wine trials fearless critic books are distributed by independent publishers group ipg rating system the fearless critic restaurant guide series uses a point rating scale to in withe houston guide the series experimented with a letter grading system from a to d but hasince moved back to the original point scale series name change the fearless critic restaurant guide series was called the menuntil older titles in the northeast ustill bear the menu title controversy overatings fearless critic has incitedebate on food boardsuch as chowhound over its harsh ratings the wine trials fearless critic s nonfiction polemic book the wine trials by robin goldstein sparkedebate over its claim that non expert wine drinkers preferred cheap bottles to morexpensive bottles in scientific blind tastings it went on to sell more than copies in threeditions becoming the world s bestsellinguide to cheap wine spectator award of excellence controversy on august wine trials authorobin goldstein revealed that he had submitted an application for a wine spectator award of excellence for an imaginary restaurant in milan whiche named osteria l intrepido fearless restaurant and thathe non existent restaurant had won the award thexpose was reported widely across the mediand blogosphere see also zagat survey restaurant rating michelin guide wine spectator externalinks fearless critic web site austin american statesman article houstonist article foodinhouston blog yale daily news article category restaurant guides category travel guide books category books about wine category book publishing companies of the united states category book publishing companies based in california","main_words":["file","fearless_critic","santonio","restaurant_guide","coverjpg","thumb","fearless_critic","santonio","restaurant_guide","published","fearless_critic","media","us","publishing_house","best_known","books","wine","trials","beer","trials","fearless_critic","series","us","cities","publishing_house","founded","merged","workman","publishing_company","workman","currently","eight","restaurant_guides","print","austin_texas","houston_texas","santonio","seattle_washington","portland_oregon","washington","new","connecticut","fearless_critic","launched","new","imprint","whose","blind","taste","defense","ofast_food","cheap","beer","robin","goldstein","author","wine","trials","fearless_critic","books","distributed","independent","publishers","group","rating","system","fearless_critic","uses","point","rating","scale","withe","houston","guide_series","letter","grading","system","hasince","moved","back","original","point","scale","series","name","change","fearless_critic","called","older","titles","northeast","bear","menu","title","controversy","fearless_critic","food","harsh","ratings","wine","trials","fearless_critic","book","wine","trials","robin","goldstein","claim","non","expert","wine","drinkers","preferred","cheap","bottles","morexpensive","bottles","scientific","blind","tastings","went","sell","copies","becoming","world","cheap","wine","spectator","award","excellence","controversy","august","wine","trials","goldstein","revealed","submitted","application","wine","spectator","award","excellence","imaginary","restaurant","milan","whiche","named","osteria","l","restaurant","thathe","non","existent","restaurant","award","reported","widely","across","mediand","see_also","zagat","survey","restaurant","rating","michelin_guide","wine","spectator","externalinks","fearless_critic","web_site","austin","american","statesman","article","article","blog","yale","daily_news","article","category_restaurant","guides_category_travel_guide_books","category_books","wine","category","book_publishing_companies","united_states","category","california"],"clean_bigrams":[["file","fearless"],["fearless","critic"],["critic","santonio"],["santonio","restaurant"],["restaurant","guide"],["guide","coverjpg"],["coverjpg","thumb"],["thumb","fearless"],["fearless","critic"],["critic","santonio"],["santonio","restaurant"],["restaurant","guide"],["guide","published"],["fearless","critic"],["critic","media"],["us","publishing"],["publishing","house"],["house","best"],["best","known"],["wine","trials"],["beer","trials"],["trials","fearless"],["fearless","critic"],["critic","series"],["restaurant","guidebooks"],["us","cities"],["publishing","house"],["workman","publishing"],["publishing","company"],["company","workman"],["eight","restaurant"],["restaurant","guides"],["print","austin"],["austin","texas"],["texas","houston"],["houston","texas"],["texas","dallas"],["dallas","texasantonio"],["texasantonio","santonio"],["seattle","washington"],["washington","portland"],["portland","oregon"],["oregon","washington"],["fearless","critic"],["critic","launched"],["imprint","whose"],["blind","taste"],["defense","ofast"],["ofast","food"],["food","cheap"],["cheap","beer"],["robin","goldstein"],["goldstein","author"],["wine","trials"],["trials","fearless"],["fearless","critic"],["critic","books"],["independent","publishers"],["publishers","group"],["rating","system"],["fearless","critic"],["critic","restaurant"],["restaurant","guide"],["guide","series"],["series","uses"],["point","rating"],["rating","scale"],["withe","houston"],["houston","guide"],["guide","series"],["letter","grading"],["grading","system"],["hasince","moved"],["moved","back"],["original","point"],["point","scale"],["scale","series"],["series","name"],["name","change"],["fearless","critic"],["critic","restaurant"],["restaurant","guide"],["guide","series"],["older","titles"],["menu","title"],["title","controversy"],["fearless","critic"],["harsh","ratings"],["wine","trials"],["trials","fearless"],["fearless","critic"],["wine","trials"],["robin","goldstein"],["non","expert"],["expert","wine"],["wine","drinkers"],["drinkers","preferred"],["preferred","cheap"],["cheap","bottles"],["morexpensive","bottles"],["scientific","blind"],["blind","tastings"],["cheap","wine"],["wine","spectator"],["spectator","award"],["excellence","controversy"],["august","wine"],["wine","trials"],["goldstein","revealed"],["wine","spectator"],["spectator","award"],["imaginary","restaurant"],["milan","whiche"],["whiche","named"],["named","osteria"],["osteria","l"],["fearless","restaurant"],["thathe","non"],["non","existent"],["existent","restaurant"],["reported","widely"],["widely","across"],["see","also"],["also","zagat"],["zagat","survey"],["survey","restaurant"],["restaurant","rating"],["rating","michelin"],["michelin","guide"],["guide","wine"],["wine","spectator"],["spectator","externalinks"],["externalinks","fearless"],["fearless","critic"],["critic","web"],["web","site"],["site","austin"],["austin","american"],["american","statesman"],["statesman","article"],["blog","yale"],["yale","daily"],["daily","news"],["news","article"],["article","category"],["category","restaurant"],["restaurant","guides"],["guides","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","books"],["wine","category"],["category","book"],["book","publishing"],["publishing","companies"],["united","states"],["states","category"],["category","book"],["book","publishing"],["publishing","companies"],["companies","based"]],"all_collocations":["file fearless","fearless critic","critic santonio","santonio restaurant","restaurant guide","guide coverjpg","coverjpg thumb","thumb fearless","fearless critic","critic santonio","santonio restaurant","restaurant guide","guide published","fearless critic","critic media","us publishing","publishing house","house best","best known","wine trials","beer trials","trials fearless","fearless critic","critic series","restaurant guidebooks","us cities","publishing house","workman publishing","publishing company","company workman","eight restaurant","restaurant guides","print austin","austin texas","texas houston","houston texas","texas dallas","dallas texasantonio","texasantonio santonio","seattle washington","washington portland","portland oregon","oregon washington","fearless critic","critic launched","imprint whose","blind taste","defense ofast","ofast food","food cheap","cheap beer","robin goldstein","goldstein author","wine trials","trials fearless","fearless critic","critic books","independent publishers","publishers group","rating system","fearless critic","critic restaurant","restaurant guide","guide series","series uses","point rating","rating scale","withe houston","houston guide","guide series","letter grading","grading system","hasince moved","moved back","original point","point scale","scale series","series name","name change","fearless critic","critic restaurant","restaurant guide","guide series","older titles","menu title","title controversy","fearless critic","harsh ratings","wine trials","trials fearless","fearless critic","wine trials","robin goldstein","non expert","expert wine","wine drinkers","drinkers preferred","preferred cheap","cheap bottles","morexpensive bottles","scientific blind","blind tastings","cheap wine","wine spectator","spectator award","excellence controversy","august wine","wine trials","goldstein revealed","wine spectator","spectator award","imaginary restaurant","milan whiche","whiche named","named osteria","osteria l","fearless restaurant","thathe non","non existent","existent restaurant","reported widely","widely across","see also","also zagat","zagat survey","survey restaurant","restaurant rating","rating michelin","michelin guide","guide wine","wine spectator","spectator externalinks","externalinks fearless","fearless critic","critic web","web site","site austin","austin american","american statesman","statesman article","blog yale","yale daily","daily news","news article","article category","category restaurant","restaurant guides","guides category","category travel","travel guide","guide books","books category","category books","wine category","category book","book publishing","publishing companies","united states","states category","category book","book publishing","publishing companies","companies based"],"new_description":"file fearless_critic santonio restaurant_guide coverjpg thumb fearless_critic santonio restaurant_guide published fearless_critic media us publishing_house best_known books wine trials beer trials fearless_critic series restaurant_guidebooks us cities publishing_house founded merged workman publishing_company workman currently eight restaurant_guides print austin_texas houston_texas dallas_texasantonio santonio seattle_washington portland_oregon washington new connecticut fearless_critic launched new imprint whose blind taste defense ofast_food cheap beer robin goldstein author wine trials fearless_critic books distributed independent publishers group rating system fearless_critic restaurant_guide_series uses point rating scale withe houston guide_series letter grading system hasince moved back original point scale series name change fearless_critic restaurant_guide_series called older titles northeast bear menu title controversy fearless_critic food harsh ratings wine trials fearless_critic book wine trials robin goldstein claim non expert wine drinkers preferred cheap bottles morexpensive bottles scientific blind tastings went sell copies becoming world cheap wine spectator award excellence controversy august wine trials goldstein revealed submitted application wine spectator award excellence imaginary restaurant milan whiche named osteria l fearless restaurant thathe non existent restaurant award reported widely across mediand see_also zagat survey restaurant rating michelin_guide wine spectator externalinks fearless_critic web_site austin american statesman article article blog yale daily_news article category_restaurant guides_category_travel_guide_books category_books wine category book_publishing_companies united_states category book_publishing_companies_based california"},{"title":"Female sex tourism","description":"file female sex tourismapgif px thumb right female tourists home countries australiaustria belgium canada denmark finland france germany ireland japanetherlands new zealand norway sweden united kingdom united states destination countries balkans cambodia caribbean costa rica ecuador greece indonesia italy kenya morocco philippines portugal spain thailand turkey vietnam female sex tourism refers to sex tourism by female s who travel intending to engage in sexual activities with a sex worker female sex tourists may seek aspects of the sexual relationship not shared by their male counterpart such as perceived romance love romance and intimate relationship intimacy women especially wealthy single older white women plan their holidays to have romance and sex with a companion who knows how to make them feel special and give them attention the prevalence ofemale sex tourism isignificantly lower than male sex tourism female sex tourism occurs in diverse regions of the world the demographics ofemale sex tourism vary by destination but in general female sex tourists are usually classified as women from a developed country who travel to less developed countries in search of romance or sexual outlets female sex tourists can be grouped into three types traditional sex tourists who have similar characteristics and motives as male sex touristsituational sex tourists who do not intentionally puthemselves in a sex tourist position but find themselves involved in a sexual encounter with local men situational sex tourists may fall into the category of either being businessperson businesswomen student s women in overseas conferences or other women who have different agendas that are non sexual romance tourists who plan to fulfil their travel with romance love romantic experiences thathey cannot experience in their native country within the realm ofemale sex tourismale sex workers are vital for the satisfaction of these women whether physical or emotional withouthemployment of local sex workersex tourism for both men and women would not exist sex tourism is becoming a global phenomenon withis movement of different populations to different countries problems concerning health increasespecially ailments involving sexually transmitted infection stis and hiv aids women involved with sex tourism do not find themselves using barrier contraceptives during the majority of their visit leaving them unprotected againstis terminology there is an ongoing debate on terminology regarding female sex tourism pruitt and lafont argue thathe term female sex tourism is not representative of the relationship that female tourists have with local men they argue that female sex tourism oversimplifies the motives of these women and that romance tourism explains the complex nature of whathese women arengaging themselves in while involved in romance tours they also state thathexpression female sex tourism serves to perpetuate genderoles and reinforce powerelations of patriarchy male dominance and female subordination romance tourism in jamaica provides an arena for change scholarsuch as klaus de alburquerque counter thathe term romance tourism overcomplicates whathe motives of sex tourists are de albuquerque stated that concepts like romance tourism are only representative of small niches like that of jamaicand its cultural beliefs throughis researche concludes thathe majority ofemale sex tourists are solely touring for physical encounters and not romance he also says thathe tourist and beach boys may define theirelationships as one of romance but in reality the relationship is one of prostitution researcher jacqueline sanchez taylor argues thathe term female sex tourism and even the term romance tourism undermine what is actually happening in these situationshe compares female and male sex tourism and shows how each relationship is based upon sexual economic relationshipshe also explores whether or not female sex tourism is based on romance and if there isome sort of sexual economic relationship occurring between the two partieshe added the facthat parallels between male and female sex tourism are widely overlooked reflects and reproduces weaknesses in existing theoretical and commonsense understandings of gendered power and sex tourism destinations a number of countries have become popular destinations for female sex tourism including southern europe mainly in greece italy malta cypruspain and portugal the caribbean led by jamaica india talcher barbados and the dominican republic brazil egypturkey southeast asiand phuket province phuket in thailand gambia senegal and kenya in africa other popular destinations include bulgaria croatia lebanon morocco jordan armenialbania fiji colombiand costa rica women going on sex tours look for big bamboos and marlboro men pravdaru balindonesia is the only destination where females from western europe japand australia engages in sex tourism with male locals bali beach gigolos under fire asia sentinel may thevidence suggests that notional stereotypes among western women about countries that areputed to have an abundance of conventionally sexual attraction sexually attractive and visually and aesthetically pleasing young men become popular destinations for female sex tourism thus countries of the list of mediterranean countries mediterranean region whichave the reputation of men resembling the latin lover stereotype latin lover stereotype figure prominently among female sex tourism destinations motives for travel traditional sex tourism traditional female sex tourists have the same intentions as their male counterparts and travel to foreign countries that have lower wages and take advantage of cheaprostitution at a level unaffordable in their own countries examples of thesexual economic relationships can be found in countries likenyafrica where women from the united kingdom travel to kenya to enjoy the sun and enjoy the company of young men in a sexual manner situational sex tourism situational sex tourists differ from traditional sex tourists by considering their sexual activities withe sex worker as an added amenity to their original motive to travel the background of the situational sex tourist consists ofirstime tourists who do not plan on being involved intimately with local men the majority of these firstime tourist will become involved in relationships where the tourist becomes romantically involved withe local men rather than being exclusively physical withe sex workersituational sex tourism occurs when foreign tourists are lured in by male sex workers known as either beach boys in the caribbean gringueros in costa rica or local men according to the tourists they are usually lured in due to thexotic appeal thathese men emulate thexotic appeal can come from thethnic differences between the sex worker and the sex tourist or the foreign lifestyle thathese men live the sex workers will target women who they deem vulnerability vulnerable older or younger overweight women romance tourism romance tourism refers to a different relationship than female sex tourism the concept of romance tourism came from researchers observations in jamaica it appeared to them thathe female tourist and local males viewed theirelationship with each other solely based on romance love romance and courtship rather than lust and monetary value romance tourism is an issue of gender identification gender identity is a relational constructhe western culture western women who seek to break from conventional roles require a different kind of relationship with men in order to realize a new gender identity with increasing independence and financial self reliance women are able to travel showing their independence fromen of their culture female tourists have the opportunity to explore new gender behavior like traditional sex tourists romance tourists have a motive for travel romance tourists travel to underdeveloped countries to find romantic relationships thejakartapostcom whatjapanthinkscom smhcomau daily mailos angeles times tokyoreportercom fox news indoboomcom canadacom japantimescojp the independenthe indepdendent africaspeakscom sex workers background and intentions male sex workers have more freedom and security than female sex workers do because males are not confined to a brothel or a procuring prostitution pimp and are not generally physically abused by their clientsimilar to the sex touristsex workers have their own intentions just asome western culture western women may consider the local men exotic the local men may consider western women to bexotic popular characteristics that appeal to a majority of sex workers are women with blonde hair and light colored eyesome of the sex workers will specifically targethis type of exotic woman for their own personal pleasure with no guarantee of monetary gain on the other side of the spectrumost sex workers have the intention of making some form of monetary gain such a sex worker typically profiles tourists in hopes of increasing his monetary wealthe fastest while profiling he willook for older women over the age oforty or young overweight women the sex worker considers these women vulnerability vulnerable and will play on their vulnerability to gethe tourists tobtain feelings for the sex worker once the tourist and sex worker obtain a relationship the sex worker finds it easy for them to have an open relationship regarding monetary exchange defined by the tourist romance tourists do not label their sex workers prostitutes the local men and the tourists understand theiroles in the relationship the primary difference in definition of a local man to a romance tourist and a local man to a sex tourist is themphasis the romance tourist places on passion instead of a transaction of goods or money for sexual favors health risks the rate of sexually transmitted infection s including hiv aids may be relatively high in some countries which are popular destinations for female sex tourism particularly in comparison to the home countries of many sex tourists little or no researchas been done into the transmission rates of hiv and other stds pertaining to sex tourism neither has there been reliable research done into whether or not condom use is prevalent among female sex tourists however writer julie bindel speculates in an article for the guardian that hiv infection figures for the region suggesthat condom use by the beach boys in the caribbean may be sporadic yet female sex tourists do not appear especially preoccupied by the potential risks women seeking to experience sex with foreign men puthemselves at a higherisk for stis condom use during sex tours is relatively low it is often cited that women have the intention to have safe sex witheir casual sex partners while on vacation but at some point during the initiation of the condom the women do not follow through the sex workers usually will not initiate the use of a condom due to either the limited availability of condoms cost beliefs or previous experiences the sex worker has had with condoms the lack of barrier contraceptives increases the risk of the tourist obtaining a sexually transmitted infection from their foreign partner especially when their partner has been with multiple women with sex tourism women reporthat given the atmosphere and thexoticness of their lover condoms are rarely used or discussed prior to engaging in sexual activities it has been found that in the monteverde region of costa rica data researched by nancy romero daza hashown that female tourists in the region engage in some form of unprotected sexual activity with local men known as gringueros the women in the study were found to not be traditional sex tourists but situational sex touristsee also feminismale prostitution sex tourism references major academic publications jacobs jessica sex tourism and the postcolonial encounter landscapes of longing in egypt aldershot ashgate bloor michael et al differences in sexual risk behaviour between young men and women travelling abroad from the uk contains only random survey of young sex travelers the lancet cohen erik araboys and tourist girls in a mixed jewish arab community international journal of comparative sociology de albuquerque klausex beach boys and female tourists in the caribbean sexuality cultured barry m dank vol new brunswick nj transaction de albuquerque klaus in search of the big bamboo how caribbean beach boysell fun in the sun the utne reader jan feb gorry april marie leaving home foromance tourist women s adventures abroadoctoral dissertation university of california santa barbarann arbor umi herold edward rafael garciand tony demoya female tourists and beach boys romance or sex tourism annals of tourism research meisch lynn a gringas and otavale os changing tourist relations a description of sex and romance tourism in ecuador annals of tourism research pruitt deborah and suzanne lafont for love and money romance tourism in jamaicannals of tourism research thomas michellexploring the contexts and meanings of women s experiences of sexual intercourse on holiday clift stephen and simon carter ed tourism and sex culture commerce and coercion london pinter vorakitphokatorn sairudeet al aids risk in tourists a study on japanese female tourists in thailand journal of population and social studies wagner ulla out of time and space mass tourism and charter trips ethnos this article describesex tourism in the gambia west africas does a follow up article wagner ulland bawa yamba going north and getting attached the case of the gambians ethnos externalinks romance on the road traveling women who love foreign men kenya cracking down on beach boys gigoloserving tourists the new york times women travel to jamaica each year in search of the big bamboo rent a rastacom sex tourism when women do it is called romance travelling sex tourism in full boom ottawa citizen ottawa citizen monday january the jordanian desert s other delight sex tourism senegal draws tourists with sun seaand sex sadie nicholasun sea sex and bitteregrets middle class girls and their holiday secrets mail online august category prostitution category sex tourism category female travelers category women and sexuality","main_words":["file","px_thumb","right","female","tourists","home_countries","belgium","canada","denmark","finland","france","germany","ireland","new_zealand","norway","sweden","united_kingdom","united_states","destination","countries","cambodia","caribbean","costa_rica","ecuador","greece","indonesia","italy","kenya","morocco","philippines","portugal","spain","thailand","turkey","vietnam","female_sex_tourism","refers","sex_tourism","female","travel","intending","engage","sexual","activities","sex_worker","female_sex_tourists","may","seek","aspects","sexual","relationship","shared","male","counterpart","perceived","romance","love","romance","intimate","relationship","women","especially","wealthy","single","older","white","women","plan","holidays","romance","sex","companion","knows","make","feel","special","give","attention","ofemale","sex_tourism","lower","male","sex_tourism","female_sex_tourism","occurs","diverse","regions","world","demographics","ofemale","sex_tourism","vary","destination","general","female_sex_tourists","usually","classified","women","developed","country","travel","less","developed_countries","search","romance","sexual","outlets","female_sex_tourists","grouped","three","types","traditional","sex_tourists","similar","characteristics","motives","male","sex","sex_tourists","intentionally","sex","tourist","position","find","involved","sexual","encounter","local_men","situational","sex_tourists","may","fall","category","either","student","women","overseas","conferences","women","different","non","sexual","romance","tourists","plan","travel","romance","love","romantic","experiences","thathey","cannot","experience","native","country","within","realm","ofemale","sex","sex_workers","vital","satisfaction","women","whether","physical","emotional","local","sex_tourism","men","women","would","exist","sex_tourism","becoming","global","phenomenon","withis","movement","different","populations","different_countries","problems","concerning","health","involving","sexually","transmitted","infection","hiv","aids","women","involved","sex_tourism","find","using","barrier","majority","visit","leaving","terminology","ongoing","debate","terminology","regarding","female_sex_tourism","argue","thathe","term","female_sex_tourism","representative","relationship","female","tourists","local_men","argue","female_sex_tourism","motives","women","romance_tourism","explains","complex","nature","women","involved","romance","tours","also","state","female_sex_tourism","serves","reinforce","male","dominance","female","romance_tourism","jamaica","provides","arena","change","klaus","de","counter","thathe","term","romance_tourism","whathe","motives","sex_tourists","de","albuquerque","stated","concepts","like","romance_tourism","representative","small","like","cultural","beliefs","throughis","concludes","thathe","majority","ofemale","sex_tourists","solely","touring","physical","encounters","romance","also","says","thathe","tourist","beach","boys","may","define","one","romance","reality","relationship","one","prostitution","researcher","taylor","argues","thathe","term","female_sex_tourism","even","term","romance_tourism","undermine","actually","female","male","sex_tourism","shows","relationship","based_upon","sexual","economic","also","explores","whether","female_sex_tourism","based","romance","sort","sexual","economic","relationship","occurring","two","added","facthat","male","female_sex_tourism","widely","overlooked","reflects","existing","theoretical","power","number","countries","become_popular","destinations","female_sex_tourism","including","southern","europe","mainly","greece","italy","malta","portugal","caribbean","led","jamaica","india","barbados","dominican","republic","brazil","southeast_asiand","phuket","province","phuket","thailand","gambia","senegal","kenya","africa","popular_destinations","include","bulgaria","croatia","lebanon","morocco","jordan","fiji","colombiand","costa_rica","women","going","sex","tours","look","big","men","balindonesia","destination","females","western_europe","japand","australia","engages","sex_tourism","male","locals","bali","beach","fire","asia","sentinel","may","suggests","stereotypes","among","western","women","countries","abundance","sexual","attraction","sexually","attractive","visually","aesthetically","young","men","become_popular","destinations","female_sex_tourism","thus","countries","list","mediterranean","countries","mediterranean","region","whichave","reputation","men","resembling","latin","lover","stereotype","latin","lover","stereotype","figure","prominently","among","motives","travel","traditional","sex_tourism","traditional","female_sex_tourists","intentions","male","counterparts","travel","foreign_countries","lower","wages","take_advantage","level","countries","examples","economic","relationships","found","countries","women","united_kingdom","travel","kenya","enjoy","sun","enjoy","company","young","men","sexual","manner","situational","sex_tourism","situational","sex_tourists","differ","traditional","sex_tourists","considering","sexual","activities","withe","sex_worker","added","amenity","original","motive","travel","background","situational","sex","tourist","consists","tourists","plan","involved","local_men","majority","firstime","tourist","become","involved","relationships","tourist","becomes","involved","withe","local_men","rather","exclusively","physical","withe","sex","sex_tourism","occurs","foreign","tourists","lured","male","sex_workers","known","either","beach","boys","caribbean","costa_rica","local_men","according","tourists","usually","lured","due","thexotic","appeal","thathese","men","thexotic","appeal","come","differences","sex_worker","sex","tourist","foreign","lifestyle","thathese","men","live","sex_workers","target","women","vulnerability","vulnerable","older","younger","women","romance_tourism","romance_tourism","refers","different","relationship","female_sex_tourism","concept","romance_tourism","came","researchers","observations","jamaica","appeared","thathe","female","tourist","local","males","viewed","solely","based","romance","love","romance","rather","monetary","value","romance_tourism","issue","gender","identification","gender","identity","western","culture","western","women","seek","break","conventional","roles","require","different","kind","relationship","men","order","realize","new","gender","identity","increasing","independence","financial","self","reliance","women","able","travel","showing","independence","culture","female","tourists","opportunity","explore","new","gender","behavior","like","traditional","sex_tourists","romance","tourists","motive","travel","romance","tourists","travel","underdeveloped","countries","find","romantic","relationships","daily","fox","news","sex_workers","background","intentions","male","sex_workers","freedom","security","males","confined","brothel","procuring","prostitution","generally","physically","sex_workers","intentions","asome","western","culture","western","women","may","consider","local_men","exotic","local_men","may","consider","western","women","popular","characteristics","appeal","majority","sex_workers","women","blonde","hair","light","colored","sex_workers","specifically","type","exotic","woman","personal","pleasure","guarantee","monetary","gain","side","sex_workers","intention","making","form","monetary","gain","sex_worker","typically","profiles","tourists","hopes","increasing","monetary","fastest","older","women","age","young","women","sex_worker","considers","women","vulnerability","vulnerable","play","vulnerability","gethe","tourists","tobtain","feelings","sex_worker","tourist","sex_worker","obtain","relationship","sex_worker","finds","easy","open","relationship","regarding","monetary_exchange","defined","tourist","romance","tourists","label","sex_workers","prostitutes","local_men","tourists","understand","relationship","primary","difference","definition","local","man","romance","tourist","local","man","sex","tourist","themphasis","romance","tourist","places","passion","instead","transaction","goods","money","sexual","favors","health","risks","rate","sexually","transmitted","infection","including","hiv","aids","may","relatively","high","countries","popular_destinations","female_sex_tourism","particularly","comparison","home_countries","many","sex_tourists","little","researchas","done","transmission","rates","hiv","sex_tourism","neither","reliable","research","done","whether","condom","use","prevalent","among","female_sex_tourists","however","writer","julie","article","guardian","hiv","infection","figures","region","suggesthat","condom","use","beach","boys","caribbean","may","yet","female_sex_tourists","appear","especially","potential","risks","women","seeking","experience","sex","foreign","men","condom","use","sex","tours","relatively","low","often","cited","women","intention","safe","sex","witheir","casual","sex","partners","vacation","point","condom","women","follow","sex_workers","usually","initiate","use","condom","due","either","limited","availability","condoms","cost","beliefs","previous","experiences","sex_worker","condoms","lack","barrier","increases","risk","tourist","obtaining","sexually","transmitted","infection","foreign","partner","especially","partner","multiple","women","sex_tourism","women","given","atmosphere","lover","condoms","rarely","used","discussed","prior","engaging","sexual","activities","found","region","costa_rica","data","researched","nancy","hashown","female","tourists","region","engage","form","sexual_activity","local_men","known","women","study","found","traditional","sex_tourists","situational","sex","also","prostitution","sex_tourism","references","major","academic","publications","jacobs","jessica","sex_tourism","encounter","landscapes","egypt","ashgate","michael","differences","sexual","risk","behaviour","young","men","women","travelling","abroad","uk","contains","random","survey","young","sex","travelers","cohen","erik","tourist","girls","mixed","jewish","arab","community","international_journal","comparative","sociology","de","albuquerque","beach","boys","female","tourists","caribbean","barry","vol","new_brunswick","transaction","de","albuquerque","klaus","search","big","bamboo","caribbean","beach","fun","sun","reader","jan","feb","april","marie","leaving","home","tourist","women","adventures","university","edward","rafael","tony","female","tourists","beach","boys","romance","sex_tourism","annals","tourism_research","lynn","changing","tourist","relations","description","sex","romance_tourism","ecuador","annals","tourism_research","deborah","love","money","romance_tourism","tourism_research","thomas","contexts","meanings","women","experiences","sexual","holiday","stephen","simon","carter","ed","tourism","sex","culture","commerce","london","aids","risk","tourists","study","japanese","female","tourists","thailand","journal","population","social","studies","wagner","time","space","mass_tourism","charter","trips","article","tourism","gambia","west","africas","follow","article","wagner","going","north","getting","attached","case","externalinks","romance","women","love","foreign","men","kenya","beach","boys","tourists","new_york","times","women","travel","jamaica","year","search","big","bamboo","rent","sex_tourism","women","called","romance","travelling","sex_tourism","full","boom","ottawa","citizen","ottawa","citizen","monday","january","desert","delight","sex_tourism","senegal","draws","tourists","sun","sex","sadie","sea","sex","middle_class","girls","holiday","secrets","mail","online","august","category","prostitution","category","female","travelers","category","women"],"clean_bigrams":[["file","female"],["female","sex"],["px","thumb"],["thumb","right"],["right","female"],["female","tourists"],["tourists","home"],["home","countries"],["belgium","canada"],["canada","denmark"],["denmark","finland"],["finland","france"],["france","germany"],["germany","ireland"],["new","zealand"],["zealand","norway"],["norway","sweden"],["sweden","united"],["united","kingdom"],["kingdom","united"],["united","states"],["states","destination"],["destination","countries"],["cambodia","caribbean"],["caribbean","costa"],["costa","rica"],["rica","ecuador"],["ecuador","greece"],["greece","indonesia"],["indonesia","italy"],["italy","kenya"],["kenya","morocco"],["morocco","philippines"],["philippines","portugal"],["portugal","spain"],["spain","thailand"],["thailand","turkey"],["turkey","vietnam"],["vietnam","female"],["female","sex"],["sex","tourism"],["tourism","refers"],["sex","tourism"],["tourism","female"],["travel","intending"],["sexual","activities"],["sex","worker"],["worker","female"],["female","sex"],["sex","tourists"],["tourists","may"],["may","seek"],["seek","aspects"],["sexual","relationship"],["male","counterpart"],["perceived","romance"],["romance","love"],["love","romance"],["intimate","relationship"],["women","especially"],["especially","wealthy"],["wealthy","single"],["single","older"],["older","white"],["white","women"],["women","plan"],["feel","special"],["ofemale","sex"],["sex","tourism"],["male","sex"],["sex","tourism"],["tourism","female"],["female","sex"],["sex","tourism"],["tourism","occurs"],["diverse","regions"],["demographics","ofemale"],["ofemale","sex"],["sex","tourism"],["tourism","vary"],["general","female"],["female","sex"],["sex","tourists"],["usually","classified"],["developed","country"],["less","developed"],["developed","countries"],["sexual","outlets"],["outlets","female"],["female","sex"],["sex","tourists"],["three","types"],["types","traditional"],["traditional","sex"],["sex","tourists"],["similar","characteristics"],["male","sex"],["sex","tourists"],["sex","tourist"],["tourist","position"],["sexual","encounter"],["local","men"],["men","situational"],["situational","sex"],["sex","tourists"],["tourists","may"],["may","fall"],["overseas","conferences"],["non","sexual"],["sexual","romance"],["romance","tourists"],["travel","romance"],["romance","love"],["love","romantic"],["romantic","experiences"],["experiences","thathey"],["native","country"],["country","within"],["realm","ofemale"],["ofemale","sex"],["sex","workers"],["women","whether"],["whether","physical"],["local","sex"],["sex","tourism"],["women","would"],["exist","sex"],["sex","tourism"],["global","phenomenon"],["phenomenon","withis"],["withis","movement"],["different","populations"],["different","countries"],["countries","problems"],["problems","concerning"],["concerning","health"],["involving","sexually"],["sexually","transmitted"],["transmitted","infection"],["hiv","aids"],["aids","women"],["women","involved"],["sex","tourism"],["using","barrier"],["visit","leaving"],["ongoing","debate"],["terminology","regarding"],["regarding","female"],["female","sex"],["sex","tourism"],["argue","thathe"],["thathe","term"],["term","female"],["female","sex"],["sex","tourism"],["female","tourists"],["local","men"],["female","sex"],["sex","tourism"],["women","romance"],["romance","tourism"],["tourism","explains"],["complex","nature"],["women","involved"],["romance","tours"],["also","state"],["female","sex"],["sex","tourism"],["tourism","serves"],["male","dominance"],["romance","tourism"],["jamaica","provides"],["klaus","de"],["counter","thathe"],["thathe","term"],["term","romance"],["romance","tourism"],["whathe","motives"],["sex","tourists"],["de","albuquerque"],["albuquerque","stated"],["concepts","like"],["like","romance"],["romance","tourism"],["cultural","beliefs"],["beliefs","throughis"],["concludes","thathe"],["thathe","majority"],["majority","ofemale"],["ofemale","sex"],["sex","tourists"],["solely","touring"],["physical","encounters"],["also","says"],["says","thathe"],["thathe","tourist"],["beach","boys"],["boys","may"],["may","define"],["prostitution","researcher"],["taylor","argues"],["argues","thathe"],["thathe","term"],["term","female"],["female","sex"],["sex","tourism"],["term","romance"],["romance","tourism"],["tourism","undermine"],["male","sex"],["sex","tourism"],["based","upon"],["upon","sexual"],["sexual","economic"],["also","explores"],["explores","whether"],["female","sex"],["sex","tourism"],["sexual","economic"],["economic","relationship"],["relationship","occurring"],["female","sex"],["sex","tourism"],["widely","overlooked"],["overlooked","reflects"],["existing","theoretical"],["sex","tourism"],["tourism","destinations"],["become","popular"],["popular","destinations"],["female","sex"],["sex","tourism"],["tourism","including"],["including","southern"],["southern","europe"],["europe","mainly"],["greece","italy"],["italy","malta"],["caribbean","led"],["jamaica","india"],["dominican","republic"],["republic","brazil"],["southeast","asiand"],["asiand","phuket"],["phuket","province"],["province","phuket"],["thailand","gambia"],["gambia","senegal"],["popular","destinations"],["destinations","include"],["include","bulgaria"],["bulgaria","croatia"],["croatia","lebanon"],["lebanon","morocco"],["morocco","jordan"],["fiji","colombiand"],["colombiand","costa"],["costa","rica"],["rica","women"],["women","going"],["sex","tours"],["tours","look"],["western","europe"],["europe","japand"],["japand","australia"],["australia","engages"],["sex","tourism"],["male","locals"],["locals","bali"],["bali","beach"],["fire","asia"],["asia","sentinel"],["sentinel","may"],["stereotypes","among"],["among","western"],["western","women"],["sexual","attraction"],["attraction","sexually"],["sexually","attractive"],["young","men"],["men","become"],["become","popular"],["popular","destinations"],["female","sex"],["sex","tourism"],["tourism","thus"],["thus","countries"],["mediterranean","countries"],["countries","mediterranean"],["mediterranean","region"],["region","whichave"],["men","resembling"],["latin","lover"],["lover","stereotype"],["stereotype","latin"],["latin","lover"],["lover","stereotype"],["stereotype","figure"],["figure","prominently"],["prominently","among"],["among","female"],["female","sex"],["sex","tourism"],["tourism","destinations"],["destinations","motives"],["travel","traditional"],["traditional","sex"],["sex","tourism"],["tourism","traditional"],["traditional","female"],["female","sex"],["sex","tourists"],["intentions","male"],["male","counterparts"],["foreign","countries"],["lower","wages"],["take","advantage"],["countries","examples"],["economic","relationships"],["united","kingdom"],["kingdom","travel"],["young","men"],["sexual","manner"],["manner","situational"],["situational","sex"],["sex","tourism"],["tourism","situational"],["situational","sex"],["sex","tourists"],["tourists","differ"],["traditional","sex"],["sex","tourists"],["sexual","activities"],["activities","withe"],["withe","sex"],["sex","worker"],["added","amenity"],["original","motive"],["situational","sex"],["sex","tourist"],["tourist","consists"],["local","men"],["firstime","tourist"],["become","involved"],["tourist","becomes"],["involved","withe"],["withe","local"],["local","men"],["men","rather"],["exclusively","physical"],["physical","withe"],["withe","sex"],["sex","tourism"],["tourism","occurs"],["foreign","tourists"],["male","sex"],["sex","workers"],["workers","known"],["either","beach"],["beach","boys"],["caribbean","costa"],["costa","rica"],["local","men"],["men","according"],["usually","lured"],["thexotic","appeal"],["appeal","thathese"],["thathese","men"],["thexotic","appeal"],["sex","worker"],["sex","tourist"],["foreign","lifestyle"],["lifestyle","thathese"],["thathese","men"],["men","live"],["sex","workers"],["target","women"],["women","vulnerability"],["vulnerability","vulnerable"],["vulnerable","older"],["women","romance"],["romance","tourism"],["tourism","romance"],["romance","tourism"],["tourism","refers"],["different","relationship"],["female","sex"],["sex","tourism"],["romance","tourism"],["tourism","came"],["researchers","observations"],["thathe","female"],["female","tourist"],["local","males"],["males","viewed"],["solely","based"],["romance","love"],["love","romance"],["monetary","value"],["value","romance"],["romance","tourism"],["gender","identification"],["identification","gender"],["gender","identity"],["western","culture"],["culture","western"],["western","women"],["conventional","roles"],["roles","require"],["different","kind"],["new","gender"],["gender","identity"],["increasing","independence"],["financial","self"],["self","reliance"],["reliance","women"],["travel","showing"],["culture","female"],["female","tourists"],["explore","new"],["new","gender"],["gender","behavior"],["behavior","like"],["like","traditional"],["traditional","sex"],["sex","tourists"],["tourists","romance"],["romance","tourists"],["travel","romance"],["romance","tourists"],["tourists","travel"],["underdeveloped","countries"],["find","romantic"],["romantic","relationships"],["angeles","times"],["fox","news"],["sex","workers"],["workers","background"],["intentions","male"],["male","sex"],["sex","workers"],["female","sex"],["sex","workers"],["procuring","prostitution"],["generally","physically"],["sex","workers"],["asome","western"],["western","culture"],["culture","western"],["western","women"],["women","may"],["may","consider"],["local","men"],["men","exotic"],["local","men"],["men","may"],["may","consider"],["consider","western"],["western","women"],["popular","characteristics"],["sex","workers"],["blonde","hair"],["light","colored"],["sex","workers"],["exotic","woman"],["personal","pleasure"],["monetary","gain"],["sex","workers"],["monetary","gain"],["sex","worker"],["worker","typically"],["typically","profiles"],["profiles","tourists"],["older","women"],["sex","worker"],["worker","considers"],["women","vulnerability"],["vulnerability","vulnerable"],["gethe","tourists"],["tourists","tobtain"],["tobtain","feelings"],["sex","worker"],["sex","worker"],["worker","obtain"],["sex","worker"],["worker","finds"],["open","relationship"],["relationship","regarding"],["regarding","monetary"],["monetary","exchange"],["exchange","defined"],["tourist","romance"],["romance","tourists"],["sex","workers"],["workers","prostitutes"],["local","men"],["tourists","understand"],["primary","difference"],["local","man"],["romance","tourist"],["local","man"],["sex","tourist"],["romance","tourist"],["tourist","places"],["passion","instead"],["sexual","favors"],["favors","health"],["health","risks"],["sexually","transmitted"],["transmitted","infection"],["including","hiv"],["hiv","aids"],["aids","may"],["relatively","high"],["popular","destinations"],["female","sex"],["sex","tourism"],["tourism","particularly"],["home","countries"],["many","sex"],["sex","tourists"],["tourists","little"],["transmission","rates"],["sex","tourism"],["tourism","neither"],["reliable","research"],["research","done"],["condom","use"],["prevalent","among"],["among","female"],["female","sex"],["sex","tourists"],["tourists","however"],["however","writer"],["writer","julie"],["hiv","infection"],["infection","figures"],["region","suggesthat"],["suggesthat","condom"],["condom","use"],["beach","boys"],["caribbean","may"],["yet","female"],["female","sex"],["sex","tourists"],["appear","especially"],["potential","risks"],["risks","women"],["women","seeking"],["experience","sex"],["foreign","men"],["condom","use"],["sex","tours"],["relatively","low"],["often","cited"],["safe","sex"],["sex","witheir"],["witheir","casual"],["casual","sex"],["sex","partners"],["sex","workers"],["workers","usually"],["condom","due"],["limited","availability"],["condoms","cost"],["cost","beliefs"],["previous","experiences"],["sex","worker"],["tourist","obtaining"],["sexually","transmitted"],["transmitted","infection"],["foreign","partner"],["partner","especially"],["multiple","women"],["sex","tourism"],["tourism","women"],["lover","condoms"],["rarely","used"],["discussed","prior"],["sexual","activities"],["costa","rica"],["rica","data"],["data","researched"],["female","tourists"],["region","engage"],["sexual","activity"],["local","men"],["men","known"],["traditional","sex"],["sex","tourists"],["situational","sex"],["prostitution","sex"],["sex","tourism"],["tourism","references"],["references","major"],["major","academic"],["academic","publications"],["publications","jacobs"],["jacobs","jessica"],["jessica","sex"],["sex","tourism"],["encounter","landscapes"],["sexual","risk"],["risk","behaviour"],["young","men"],["women","travelling"],["travelling","abroad"],["uk","contains"],["random","survey"],["young","sex"],["sex","travelers"],["cohen","erik"],["tourist","girls"],["mixed","jewish"],["jewish","arab"],["arab","community"],["community","international"],["international","journal"],["comparative","sociology"],["sociology","de"],["de","albuquerque"],["beach","boys"],["female","tourists"],["vol","new"],["new","brunswick"],["transaction","de"],["de","albuquerque"],["albuquerque","klaus"],["big","bamboo"],["caribbean","beach"],["reader","jan"],["jan","feb"],["april","marie"],["marie","leaving"],["leaving","home"],["tourist","women"],["california","santa"],["edward","rafael"],["female","tourists"],["beach","boys"],["boys","romance"],["sex","tourism"],["tourism","annals"],["tourism","research"],["changing","tourist"],["tourist","relations"],["romance","tourism"],["ecuador","annals"],["tourism","research"],["money","romance"],["romance","tourism"],["tourism","research"],["research","thomas"],["simon","carter"],["carter","ed"],["ed","tourism"],["sex","culture"],["culture","commerce"],["aids","risk"],["japanese","female"],["female","tourists"],["thailand","journal"],["social","studies"],["studies","wagner"],["space","mass"],["mass","tourism"],["charter","trips"],["gambia","west"],["west","africas"],["article","wagner"],["going","north"],["getting","attached"],["externalinks","romance"],["road","traveling"],["traveling","women"],["love","foreign"],["foreign","men"],["men","kenya"],["beach","boys"],["new","york"],["york","times"],["times","women"],["women","travel"],["big","bamboo"],["bamboo","rent"],["sex","tourism"],["tourism","women"],["called","romance"],["romance","travelling"],["travelling","sex"],["sex","tourism"],["full","boom"],["boom","ottawa"],["ottawa","citizen"],["citizen","ottawa"],["ottawa","citizen"],["citizen","monday"],["monday","january"],["delight","sex"],["sex","tourism"],["tourism","senegal"],["senegal","draws"],["draws","tourists"],["sex","sadie"],["sea","sex"],["middle","class"],["class","girls"],["holiday","secrets"],["secrets","mail"],["mail","online"],["online","august"],["august","category"],["category","prostitution"],["prostitution","category"],["category","sex"],["sex","tourism"],["tourism","category"],["category","female"],["female","travelers"],["travelers","category"],["category","women"]],"all_collocations":["file female","female sex","px thumb","right female","female tourists","tourists home","home countries","belgium canada","canada denmark","denmark finland","finland france","france germany","germany ireland","new zealand","zealand norway","norway sweden","sweden united","united kingdom","kingdom united","united states","states destination","destination countries","cambodia caribbean","caribbean costa","costa rica","rica ecuador","ecuador greece","greece indonesia","indonesia italy","italy kenya","kenya morocco","morocco philippines","philippines portugal","portugal spain","spain thailand","thailand turkey","turkey vietnam","vietnam female","female sex","sex tourism","tourism refers","sex tourism","tourism female","travel intending","sexual activities","sex worker","worker female","female sex","sex tourists","tourists may","may seek","seek aspects","sexual relationship","male counterpart","perceived romance","romance love","love romance","intimate relationship","women especially","especially wealthy","wealthy single","single older","older white","white women","women plan","feel special","ofemale sex","sex tourism","male sex","sex tourism","tourism female","female sex","sex tourism","tourism occurs","diverse regions","demographics ofemale","ofemale sex","sex tourism","tourism vary","general female","female sex","sex tourists","usually classified","developed country","less developed","developed countries","sexual outlets","outlets female","female sex","sex tourists","three types","types traditional","traditional sex","sex tourists","similar characteristics","male sex","sex tourists","sex tourist","tourist position","sexual encounter","local men","men situational","situational sex","sex tourists","tourists may","may fall","overseas conferences","non sexual","sexual romance","romance tourists","travel romance","romance love","love romantic","romantic experiences","experiences thathey","native country","country within","realm ofemale","ofemale sex","sex workers","women whether","whether physical","local sex","sex tourism","women would","exist sex","sex tourism","global phenomenon","phenomenon withis","withis movement","different populations","different countries","countries problems","problems concerning","concerning health","involving sexually","sexually transmitted","transmitted infection","hiv aids","aids women","women involved","sex tourism","using barrier","visit leaving","ongoing debate","terminology regarding","regarding female","female sex","sex tourism","argue thathe","thathe term","term female","female sex","sex tourism","female tourists","local men","female sex","sex tourism","women romance","romance tourism","tourism explains","complex nature","women involved","romance tours","also state","female sex","sex tourism","tourism serves","male dominance","romance tourism","jamaica provides","klaus de","counter thathe","thathe term","term romance","romance tourism","whathe motives","sex tourists","de albuquerque","albuquerque stated","concepts like","like romance","romance tourism","cultural beliefs","beliefs throughis","concludes thathe","thathe majority","majority ofemale","ofemale sex","sex tourists","solely touring","physical encounters","also says","says thathe","thathe tourist","beach boys","boys may","may define","prostitution researcher","taylor argues","argues thathe","thathe term","term female","female sex","sex tourism","term romance","romance tourism","tourism undermine","male sex","sex tourism","based upon","upon sexual","sexual economic","also explores","explores whether","female sex","sex tourism","sexual economic","economic relationship","relationship occurring","female sex","sex tourism","widely overlooked","overlooked reflects","existing theoretical","sex tourism","tourism destinations","become popular","popular destinations","female sex","sex tourism","tourism including","including southern","southern europe","europe mainly","greece italy","italy malta","caribbean led","jamaica india","dominican republic","republic brazil","southeast asiand","asiand phuket","phuket province","province phuket","thailand gambia","gambia senegal","popular destinations","destinations include","include bulgaria","bulgaria croatia","croatia lebanon","lebanon morocco","morocco jordan","fiji colombiand","colombiand costa","costa rica","rica women","women going","sex tours","tours look","western europe","europe japand","japand australia","australia engages","sex tourism","male locals","locals bali","bali beach","fire asia","asia sentinel","sentinel may","stereotypes among","among western","western women","sexual attraction","attraction sexually","sexually attractive","young men","men become","become popular","popular destinations","female sex","sex tourism","tourism thus","thus countries","mediterranean countries","countries mediterranean","mediterranean region","region whichave","men resembling","latin lover","lover stereotype","stereotype latin","latin lover","lover stereotype","stereotype figure","figure prominently","prominently among","among female","female sex","sex tourism","tourism destinations","destinations motives","travel traditional","traditional sex","sex tourism","tourism traditional","traditional female","female sex","sex tourists","intentions male","male counterparts","foreign countries","lower wages","take advantage","countries examples","economic relationships","united kingdom","kingdom travel","young men","sexual manner","manner situational","situational sex","sex tourism","tourism situational","situational sex","sex tourists","tourists differ","traditional sex","sex tourists","sexual activities","activities withe","withe sex","sex worker","added amenity","original motive","situational sex","sex tourist","tourist consists","local men","firstime tourist","become involved","tourist becomes","involved withe","withe local","local men","men rather","exclusively physical","physical withe","withe sex","sex tourism","tourism occurs","foreign tourists","male sex","sex workers","workers known","either beach","beach boys","caribbean costa","costa rica","local men","men according","usually lured","thexotic appeal","appeal thathese","thathese men","thexotic appeal","sex worker","sex tourist","foreign lifestyle","lifestyle thathese","thathese men","men live","sex workers","target women","women vulnerability","vulnerability vulnerable","vulnerable older","women romance","romance tourism","tourism romance","romance tourism","tourism refers","different relationship","female sex","sex tourism","romance tourism","tourism came","researchers observations","thathe female","female tourist","local males","males viewed","solely based","romance love","love romance","monetary value","value romance","romance tourism","gender identification","identification gender","gender identity","western culture","culture western","western women","conventional roles","roles require","different kind","new gender","gender identity","increasing independence","financial self","self reliance","reliance women","travel showing","culture female","female tourists","explore new","new gender","gender behavior","behavior like","like traditional","traditional sex","sex tourists","tourists romance","romance tourists","travel romance","romance tourists","tourists travel","underdeveloped countries","find romantic","romantic relationships","angeles times","fox news","sex workers","workers background","intentions male","male sex","sex workers","female sex","sex workers","procuring prostitution","generally physically","sex workers","asome western","western culture","culture western","western women","women may","may consider","local men","men exotic","local men","men may","may consider","consider western","western women","popular characteristics","sex workers","blonde hair","light colored","sex workers","exotic woman","personal pleasure","monetary gain","sex workers","monetary gain","sex worker","worker typically","typically profiles","profiles tourists","older women","sex worker","worker considers","women vulnerability","vulnerability vulnerable","gethe tourists","tourists tobtain","tobtain feelings","sex worker","sex worker","worker obtain","sex worker","worker finds","open relationship","relationship regarding","regarding monetary","monetary exchange","exchange defined","tourist romance","romance tourists","sex workers","workers prostitutes","local men","tourists understand","primary difference","local man","romance tourist","local man","sex tourist","romance tourist","tourist places","passion instead","sexual favors","favors health","health risks","sexually transmitted","transmitted infection","including hiv","hiv aids","aids may","relatively high","popular destinations","female sex","sex tourism","tourism particularly","home countries","many sex","sex tourists","tourists little","transmission rates","sex tourism","tourism neither","reliable research","research done","condom use","prevalent among","among female","female sex","sex tourists","tourists however","however writer","writer julie","hiv infection","infection figures","region suggesthat","suggesthat condom","condom use","beach boys","caribbean may","yet female","female sex","sex tourists","appear especially","potential risks","risks women","women seeking","experience sex","foreign men","condom use","sex tours","relatively low","often cited","safe sex","sex witheir","witheir casual","casual sex","sex partners","sex workers","workers usually","condom due","limited availability","condoms cost","cost beliefs","previous experiences","sex worker","tourist obtaining","sexually transmitted","transmitted infection","foreign partner","partner especially","multiple women","sex tourism","tourism women","lover condoms","rarely used","discussed prior","sexual activities","costa rica","rica data","data researched","female tourists","region engage","sexual activity","local men","men known","traditional sex","sex tourists","situational sex","prostitution sex","sex tourism","tourism references","references major","major academic","academic publications","publications jacobs","jacobs jessica","jessica sex","sex tourism","encounter landscapes","sexual risk","risk behaviour","young men","women travelling","travelling abroad","uk contains","random survey","young sex","sex travelers","cohen erik","tourist girls","mixed jewish","jewish arab","arab community","community international","international journal","comparative sociology","sociology de","de albuquerque","beach boys","female tourists","vol new","new brunswick","transaction de","de albuquerque","albuquerque klaus","big bamboo","caribbean beach","reader jan","jan feb","april marie","marie leaving","leaving home","tourist women","california santa","edward rafael","female tourists","beach boys","boys romance","sex tourism","tourism annals","tourism research","changing tourist","tourist relations","romance tourism","ecuador annals","tourism research","money romance","romance tourism","tourism research","research thomas","simon carter","carter ed","ed tourism","sex culture","culture commerce","aids risk","japanese female","female tourists","thailand journal","social studies","studies wagner","space mass","mass tourism","charter trips","gambia west","west africas","article wagner","going north","getting attached","externalinks romance","road traveling","traveling women","love foreign","foreign men","men kenya","beach boys","new york","york times","times women","women travel","big bamboo","bamboo rent","sex tourism","tourism women","called romance","romance travelling","travelling sex","sex tourism","full boom","boom ottawa","ottawa citizen","citizen ottawa","ottawa citizen","citizen monday","monday january","delight sex","sex tourism","tourism senegal","senegal draws","draws tourists","sex sadie","sea sex","middle class","class girls","holiday secrets","secrets mail","mail online","online august","august category","category prostitution","prostitution category","category sex","sex tourism","tourism category","category female","female travelers","travelers category","category women"],"new_description":"file female_sex px_thumb right female tourists home_countries belgium canada denmark finland france germany ireland new_zealand norway sweden united_kingdom united_states destination countries cambodia caribbean costa_rica ecuador greece indonesia italy kenya morocco philippines portugal spain thailand turkey vietnam female_sex_tourism refers sex_tourism female travel intending engage sexual activities sex_worker female_sex_tourists may seek aspects sexual relationship shared male counterpart perceived romance love romance intimate relationship women especially wealthy single older white women plan holidays romance sex companion knows make feel special give attention ofemale sex_tourism lower male sex_tourism female_sex_tourism occurs diverse regions world demographics ofemale sex_tourism vary destination general female_sex_tourists usually classified women developed country travel less developed_countries search romance sexual outlets female_sex_tourists grouped three types traditional sex_tourists similar characteristics motives male sex sex_tourists intentionally sex tourist position find involved sexual encounter local_men situational sex_tourists may fall category either student women overseas conferences women different non sexual romance tourists plan travel romance love romantic experiences thathey cannot experience native country within realm ofemale sex sex_workers vital satisfaction women whether physical emotional local sex_tourism men women would exist sex_tourism becoming global phenomenon withis movement different populations different_countries problems concerning health involving sexually transmitted infection hiv aids women involved sex_tourism find using barrier majority visit leaving terminology ongoing debate terminology regarding female_sex_tourism argue thathe term female_sex_tourism representative relationship female tourists local_men argue female_sex_tourism motives women romance_tourism explains complex nature women involved romance tours also state female_sex_tourism serves reinforce male dominance female romance_tourism jamaica provides arena change klaus de counter thathe term romance_tourism whathe motives sex_tourists de albuquerque stated concepts like romance_tourism representative small like cultural beliefs throughis concludes thathe majority ofemale sex_tourists solely touring physical encounters romance also says thathe tourist beach boys may define one romance reality relationship one prostitution researcher taylor argues thathe term female_sex_tourism even term romance_tourism undermine actually female male sex_tourism shows relationship based_upon sexual economic also explores whether female_sex_tourism based romance sort sexual economic relationship occurring two added facthat male female_sex_tourism widely overlooked reflects existing theoretical power sex_tourism_destinations number countries become_popular destinations female_sex_tourism including southern europe mainly greece italy malta portugal caribbean led jamaica india barbados dominican republic brazil southeast_asiand phuket province phuket thailand gambia senegal kenya africa popular_destinations include bulgaria croatia lebanon morocco jordan fiji colombiand costa_rica women going sex tours look big men balindonesia destination females western_europe japand australia engages sex_tourism male locals bali beach fire asia sentinel may suggests stereotypes among western women countries abundance sexual attraction sexually attractive visually aesthetically young men become_popular destinations female_sex_tourism thus countries list mediterranean countries mediterranean region whichave reputation men resembling latin lover stereotype latin lover stereotype figure prominently among female_sex_tourism_destinations motives travel traditional sex_tourism traditional female_sex_tourists intentions male counterparts travel foreign_countries lower wages take_advantage level countries examples economic relationships found countries women united_kingdom travel kenya enjoy sun enjoy company young men sexual manner situational sex_tourism situational sex_tourists differ traditional sex_tourists considering sexual activities withe sex_worker added amenity original motive travel background situational sex tourist consists tourists plan involved local_men majority firstime tourist become involved relationships tourist becomes involved withe local_men rather exclusively physical withe sex sex_tourism occurs foreign tourists lured male sex_workers known either beach boys caribbean costa_rica local_men according tourists usually lured due thexotic appeal thathese men thexotic appeal come differences sex_worker sex tourist foreign lifestyle thathese men live sex_workers target women vulnerability vulnerable older younger women romance_tourism romance_tourism refers different relationship female_sex_tourism concept romance_tourism came researchers observations jamaica appeared thathe female tourist local males viewed solely based romance love romance rather monetary value romance_tourism issue gender identification gender identity western culture western women seek break conventional roles require different kind relationship men order realize new gender identity increasing independence financial self reliance women able travel showing independence culture female tourists opportunity explore new gender behavior like traditional sex_tourists romance tourists motive travel romance tourists travel underdeveloped countries find romantic relationships daily angeles_times fox news sex_workers background intentions male sex_workers freedom security female_sex_workers males confined brothel procuring prostitution generally physically sex_workers intentions asome western culture western women may consider local_men exotic local_men may consider western women popular characteristics appeal majority sex_workers women blonde hair light colored sex_workers specifically type exotic woman personal pleasure guarantee monetary gain side sex_workers intention making form monetary gain sex_worker typically profiles tourists hopes increasing monetary fastest older women age young women sex_worker considers women vulnerability vulnerable play vulnerability gethe tourists tobtain feelings sex_worker tourist sex_worker obtain relationship sex_worker finds easy open relationship regarding monetary_exchange defined tourist romance tourists label sex_workers prostitutes local_men tourists understand relationship primary difference definition local man romance tourist local man sex tourist themphasis romance tourist places passion instead transaction goods money sexual favors health risks rate sexually transmitted infection including hiv aids may relatively high countries popular_destinations female_sex_tourism particularly comparison home_countries many sex_tourists little researchas done transmission rates hiv sex_tourism neither reliable research done whether condom use prevalent among female_sex_tourists however writer julie article guardian hiv infection figures region suggesthat condom use beach boys caribbean may yet female_sex_tourists appear especially potential risks women seeking experience sex foreign men condom use sex tours relatively low often cited women intention safe sex witheir casual sex partners vacation point condom women follow sex_workers usually initiate use condom due either limited availability condoms cost beliefs previous experiences sex_worker condoms lack barrier increases risk tourist obtaining sexually transmitted infection foreign partner especially partner multiple women sex_tourism women given atmosphere lover condoms rarely used discussed prior engaging sexual activities found region costa_rica data researched nancy hashown female tourists region engage form sexual_activity local_men known women study found traditional sex_tourists situational sex also prostitution sex_tourism references major academic publications jacobs jessica sex_tourism encounter landscapes egypt ashgate michael differences sexual risk behaviour young men women travelling abroad uk contains random survey young sex travelers cohen erik tourist girls mixed jewish arab community international_journal comparative sociology de albuquerque beach boys female tourists caribbean barry vol new_brunswick transaction de albuquerque klaus search big bamboo caribbean beach fun sun reader jan feb april marie leaving home tourist women adventures university california_santa edward rafael tony female tourists beach boys romance sex_tourism annals tourism_research lynn changing tourist relations description sex romance_tourism ecuador annals tourism_research deborah love money romance_tourism tourism_research thomas contexts meanings women experiences sexual holiday stephen simon carter ed tourism sex culture commerce london aids risk tourists study japanese female tourists thailand journal population social studies wagner time space mass_tourism charter trips article tourism gambia west africas follow article wagner going north getting attached case externalinks romance road_traveling women love foreign men kenya beach boys tourists new_york times women travel jamaica year search big bamboo rent sex_tourism women called romance travelling sex_tourism full boom ottawa citizen ottawa citizen monday january desert delight sex_tourism senegal draws tourists sun sex sadie sea sex middle_class girls holiday secrets mail online august category prostitution category sex_tourism_category female travelers category women"},{"title":"Fertility tourism","description":"fertility tourism oreproductive tourism is the practice of traveling to another country or jurisdiction for fertility treatment and may be regarded as a form of medical tourism the main reasons for fertility tourism are legal prohibitions oregulation of the sought procedure in the home country the non availability of a procedure in the home country as well as lower costs in the destination country the main proceduresought are in vitro fertilization ivf andonor insemination but also surrogacy it has been proposed to be termed reproductivexile to emphasise the difficulties and constraints faced by infertile patients who are forced to travel globally foreproductive procedures ivf destinations abouto women often accompanied by their partners annually seek cross border assisted reproductive technology art services israel is the leading fertility tourism destination for in vitro fertilization ivf treatmenthe united states is the destination of many europeans because of the higher success rates and liberal regulations in turn indiand other asian countries are the main destinations for us women seeking fertility treatment being the destinations for of us women seeking ivf and seeking ivf with egg donation many travel from countries like germany and italy which are very restrictive of the number of eggs that may be fertilized and how many embryos can be used for implantation or cryopreservation in recent years mexico has become a popular destination for cross border ivf treatment due to its liberal art and egg donation policies even small countriesuch as barbados provide joint commission jci accredited ivf treatment aimed at women from abroad cost factors women from countriesuch as the united states and the united kingdomay travel for ivf treatment and medications to save money the cost for ivf cycle in the united states averages us while for comparable treatment in mexico it is about us thailand india egg donation egg donation is illegal in a number of european countries includingermany austriand italy many women then will seek treatment in places where the procedure is allowed such aspain and the united states where donors can be paid for their donation almost half of all ivf treatments with donor eggs in europe are performed in spain ivf with anonymous egg donation is also the main art sought by canadians traveling to the us and is the sought procedure for of cross border treatments by canadiansex selection sex selection is prohibited in many countries including the united kingdom us clinic offers british couples the chance to choose the sex of their child from the times august australiand canada krishan s nehra library of congressex selection abortion canada except when it is used to screen for genetic diseasesome women wishing to be sure of a child sex may travel to countries where it is legal to perform a preimplantation genetic diagnosis pgd a potential expansion of ivf which can be used for sex selection such as the united states us clinic offers british couples the chance to choose the sex of their child from the times august many countries have no restriction how many embryos may be transferred into the uterus athe same time increasing the risk of multiple pregnancy and resultant potential complications health warning to women over fertility tourism xpert fertility care of california the burden of multiple births generated by placing too many embryos is carried by the patients and the home country donor insemination a woman may go to another country tobtain artificial insemination by donor the practice is influenced by the attitudes and sperm donation laws by country sperm donation laws in the host country there is generally a demand for sperm donor s who have no genetic problems in their family eyesight with excellent visual acuity a college degree and sometimes a value on a certain height ageye colour hair texture blood type and ethnicity the geniusperm bank june baby steps how lesbian alternative insemination is changing the world by amy agigianecdotal evidence suggests thathe inventory of taller men who are blonde and blueyed is most popular sperm counts overcome by man s most precious fluid by lisa jean mooretrieved january denmark has a well developed system of sperm exporthisuccess mainly comes from the reputation of danish sperm donors for being of high sperm quality and in contrast withe law in the other nordicountries gives donors the choice of being either anonymous or non anonymous to the receiving couple assisted reproduction in the nordicountries ncbioorg furthermore nordic sperm donors tend to be tall with rarer features like blond hair or different color eyes and a light complexion and highly educated fda rules block import of prizedanish sperm posted august am cdt in world science health and have altruistic motives for their donations partly due to the relatively low monetary compensation inordicountries more than countries worldwide are importers of danish sperm including paraguay canada kenyand hong kong another emerging destination for fertility tourism is barbados more and more caribbean couples and couples of african origin are ineed medical help to conceive and often want eggs and sperm that match their geneticomposition for a long time their only option was the united states however for over years barbados has been providing couples withe latest in cutting edge technology and has introduced new techniquesome countriesuch as united kingdom and sweden have a shortage of sperm donorswedenow has an month long waiting list for donor sperm as a consequence of the shortage of donor sperm in uk in the late s and thearlyears of the st century british women travelled to belgium and spain for donor insemination wordspy in turn citing madeleine bunting x y the formula for genetic imperialism the guardian may until those two countries changed their laws and imposed a maximum number of children one donor may produce prior to the change in the law the limit in the number of children born to each donor depended upon practitioners at fertility clinics and belgiand spanish clinics were purchasing donor sperm from abroad to satisfy demand for treatments anonymous donation was permitted in belgium and is a legal requirement in spain these two countries also allowed single heterosexual and single and coupled lesbians to undergo fertility treatment ironically athe time many belgiand spanish clinics were buying sperm from british clinics donated by british donors whose localimit of ten families in the uk had not been reached and they were able to use that sperm according to localaws and limits in addition lesbian women from france and eastern europe travelled to these countries in order to achieve a pregnancy by anonymous donor since this treatment was not available to them in their own countries british fertility tourists mustherefore now travel tother countries particularly those that do not include children born to foreigners in their national totals of children produced by each donor britain also imports donor sperm from scandinavia but can only limithe use of that donor sperm to ten families in the uk itself so that more children may be produced elsewhere from the same donor shortage of sperm donors in britain prompts calls for change by denise grady published november the new york times at least swedish sperm recipients travel to denmark annually for insemination some of this also due to that denmark also allowsingle women to be inseminated it is illegal to pay donors for eggs or sperm in canada women can still import commercial usperm buthat is notrue for eggs resulting in many canadian women leaving the country for such procedures my scattered grandchildren the globe and mail alison motluk sunday sepm edt surrogacy destinationsurrogacy destinations are those countries and jurisdictions which permit commercial surrogacy gestational surrogacy gestational surrogacy where the cost is relatively low and which give the intended parents legal rights over the newborn child whether by streamlined adoption procedures or direct parental rights india is a main destination for surrogacy because of the relatively low cost indian clinics are athe same time becoming more competitive not just in pricing but in the hiring and retention of indian females asurrogates clinics charge patients between and for the complete package including fertilization the surrogate s fee andelivery of the baby at a hospital including the costs oflightickets medical procedures and hotels it comes to roughly a third of the price compared with going through the procedure in the uk regulators eye india surrogacy sector by shilpa kannan india business report bbc world retrieved on mars in the supreme court of india in the manji s case japanese baby has held that commercial surrogacy is permitted india there is an upcoming assisted reproductive technology bill aiming to regulate the surrogacy however it is expected to increase the confidence in clinics by sorting out dubious practitioners and in this way stimulate the practice russian federation liberalegislation makes russiattractive foreproductive tourists looking for techniques not available in their countries intended parents come there for oocyte donation because of advanced age or marital statusingle women and single men and when surrogacy is considered gestational surrogacy even commercial is absolutely legal in russia being available for practically all adults willing to be parents foreigners have the same rights as for assisted reproduction as russian citizens within days after the birthe commissioning parents obtain a russian birth certificate with botheir names on it genetic relation to the child in case of donation doesn t matter on august a moscow court ruled that a single man who applied for gestational surrogacy using donor eggs could be registered as the only parent of hison becoming the first man in russia to defend his righto become a father through a court procedure the surrogate mother s name was not listed on the birth certificate the father was listed as the only parent surrogacy is completely legal in ukraine however only healthy mothers who have had children before can become surrogates in ukraine have zero parental rights over the child astated on article of the family code of ukraine thus a surrogate cannot refuse to hand the baby over in case she changes her mind after birth only married couples can legally go through gestational surrogacy in ukraine gay couples and single parents are prohibited to use gestational surrogates united states the united states isought as a location for surrogate mothers by coupleseeking permanent residence united states green card in that country since the resulting child can get birthright citizenship in the united states and can thereby apply for green cards for the parents when turning years of age wealthy chineseek usurrogates for second child green card by alexandra harney reuters health information sep however there are many othereasons people come to the us for surrogacy procedures including to enjoy a better quality of medical technology and care as well as the high level of legal protections afforded through some ustate courts to surrogacy contracts as compared tother countries increasingly same sex couples who face restrictions using ivf and surrogacy procedures in their home countries travel to ustates where it is legal citizenship the citizenship and legal status of a child resulting from surrogacy can be problematic the hague conference permanent bureau identified the question of citizenship of these children as a pressing problem in the permanent bureau study hague conference permanent bureau according to us department of state bureau of consular affairs for the child to be a us citizen one or both of the child s genetic parents must be a us citizen in other words the only way for the child to acquire us citizenship automatically at birth is if he she is biologically related to a us citizen further in some countries the child will not be a citizen of the country in whiche she is born because the surrogate mother is not legally the parent of the child this could result in a child being born without citizenship externalinks ivf treatment abroad issues and risks category infertility category medical tourism","main_words":["fertility","tourism","tourism","practice","traveling","another_country","jurisdiction","fertility","treatment","may","regarded","form","medical_tourism","main","reasons","fertility","tourism","legal","sought","procedure","home_country","non","availability","procedure","home_country","well","lower_costs","destination","country","main","vitro","fertilization","ivf","insemination","also","surrogacy","proposed","termed","difficulties","constraints","faced","patients","forced","travel","globally","procedures","ivf","destinations","abouto","women","often","accompanied","partners","annually","seek","cross_border","assisted","reproductive","technology","art","services","israel","leading","fertility","tourism_destination","vitro","fertilization","ivf","united_states","destination","many","europeans","higher","success","rates","liberal","regulations","turn","indiand","asian","countries","main","destinations","us","women","seeking","fertility","treatment","destinations","us","women","seeking","ivf","seeking","ivf","egg","donation","many","travel","countries","like","germany","italy","restrictive","number","eggs","may","many","embryos","used","cryopreservation","recent_years","mexico","become_popular","destination","cross_border","ivf","treatment","due","liberal","art","egg","donation","policies","even","small","countriesuch","barbados","provide","joint_commission","jci","accredited","ivf","treatment","aimed","women","abroad","cost","factors","women","countriesuch","united_states","united","travel","ivf","treatment","save","money","cost","ivf","cycle","united_states","us","comparable","treatment","mexico","us","thailand","india","egg","donation","egg","donation","illegal","number","european_countries","austriand","italy","many","women","seek","treatment","places","procedure","allowed","united_states","donors","paid","donation","almost","half","ivf","treatments","donor","eggs","europe","performed","spain","ivf","anonymous","egg","donation","also","main","art","sought","canadians","traveling","us","sought","procedure","cross_border","treatments","selection","sex","selection","prohibited","many_countries","including","united_kingdom","us","clinic","offers","british","couples","chance","choose","sex","child","times","august","australiand","canada","library","selection","abortion","canada","except","used","screen","genetic","women","wishing","sure","child_sex","may","travel","countries","legal","perform","genetic","potential","expansion","ivf","used","sex","selection","united_states","us","clinic","offers","british","couples","chance","choose","sex","child","times","august","many_countries","restriction","many","embryos","may","transferred","athe_time","increasing","risk","multiple","pregnancy","resultant","potential","complications","health","warning","women","fertility","tourism","fertility","care","california","burden","multiple","births","generated","placing","many","embryos","carried","patients","home_country","donor","insemination","woman","may","go","another_country","tobtain","artificial","insemination","donor","practice","influenced","attitudes","sperm","donation","laws","country","sperm","donation","laws","host","country","generally","demand","sperm","donor","genetic","problems","family","excellent","visual","college","degree","sometimes","value","certain","height","colour","hair","texture","blood","type","ethnicity","bank","june","baby","steps","lesbian","alternative","insemination","changing","world","amy","evidence","suggests","thathe","inventory","taller","men","blonde","popular","sperm","counts","overcome","man","precious","fluid","lisa","jean","january","denmark","well","developed","system","sperm","mainly","comes","reputation","danish","sperm","donors","high","sperm","quality","contrast","withe","law","nordicountries","gives","donors","choice","either","anonymous","non","anonymous","receiving","couple","assisted","reproduction","nordicountries","furthermore","nordic","sperm","donors","tend","tall","features","like","hair","different","color","eyes","light","highly","educated","fda","rules","block","import","sperm","posted","august","world","science","health","motives","donations","partly","due","relatively","low","monetary","compensation","countries","worldwide","danish","sperm","including","canada","hong_kong","another","emerging","destination","fertility","tourism","barbados","caribbean","couples","couples","african","origin","ineed","medical","help","often","want","eggs","sperm","match","long_time","option","united_states","however","years","barbados","providing","couples","withe","latest","cutting","edge","technology","introduced","new","countriesuch","united_kingdom","sweden","shortage","sperm","month","long","waiting","list","donor","sperm","consequence","shortage","donor","sperm","uk","st_century","british","women","travelled","belgium","spain","donor","insemination","turn","citing","x","formula","genetic","imperialism","guardian","may","two","countries","changed","laws","imposed","maximum","number","children","one","donor","may","produce","prior","change","law","limit","number","children","born","donor","depended","upon","practitioners","fertility","clinics","spanish","clinics","purchasing","donor","sperm","abroad","satisfy","demand","treatments","anonymous","donation","permitted","belgium","legal","requirement","spain","two","countries","also","allowed","single","single","coupled","undergo","fertility","treatment","athe_time","many","spanish","clinics","buying","sperm","british","clinics","donated","british","donors","whose","ten","families","uk","reached","able","use","sperm","according","limits","addition","lesbian","women","france","eastern_europe","travelled","countries","order","achieve","pregnancy","anonymous","donor","since","treatment","available","countries","british","fertility","tourists","travel","tother","countries","particularly","include","children","born","foreigners","national","children","produced","donor","britain","also","imports","donor","sperm","scandinavia","limithe","use","donor","sperm","ten","families","uk","children","may","produced","elsewhere","donor","shortage","sperm","donors","britain","calls","change","denise","published","november","new_york","times","least","swedish","sperm","recipients","travel","denmark","annually","insemination","also","due","denmark","also","women","illegal","pay","donors","eggs","sperm","canada","women","still","import","commercial","buthat","eggs","resulting","many","canadian","women","leaving","country","procedures","scattered","globe","mail","alison","sunday","surrogacy","destinations","countries","jurisdictions","permit","commercial","surrogacy","gestational","surrogacy","gestational","surrogacy","cost","relatively","low","give","intended","parents","legal","rights","child","whether","streamlined","adoption","procedures","direct","parental","rights","india","main","destination","surrogacy","relatively","low_cost","indian","clinics","athe_time","becoming","competitive","pricing","hiring","retention","indian","females","clinics","charge","patients","complete","package","including","fertilization","surrogate","fee","andelivery","baby","hospital","including","costs","medical","procedures","hotels","comes","roughly","third","price","compared","going","procedure","uk","eye","india","surrogacy","sector","shilpa","india","business","report","bbc","world","retrieved","mars","supreme_court","india","manji","case","japanese","baby","held","commercial","surrogacy","permitted","india","upcoming","assisted","reproductive","technology","bill","aiming","regulate","surrogacy","however","expected","increase","confidence","clinics","practitioners","way","stimulate","practice","russian","federation","makes","tourists","looking","techniques","available","countries","intended","parents","come","donation","advanced","age","women","single","men","surrogacy","considered","gestational","surrogacy","even","commercial","absolutely","legal","russia","available","practically","adults","willing","parents","foreigners","rights","assisted","reproduction","russian","citizens","within","days","commissioning","parents","obtain","russian","birth","certificate","names","genetic","relation","child","case","donation","matter","august","moscow","court","ruled","single","man","applied","gestational","surrogacy","using","donor","eggs","could","registered","parent","hison","becoming","first","man","russia","defend","righto","become","father","court","procedure","surrogate","mother","name","listed","birth","certificate","father","listed","parent","surrogacy","completely","legal","ukraine","however","healthy","mothers","children","become","surrogates","ukraine","zero","parental","rights","child","astated","article","family","code","ukraine","thus","surrogate","cannot","refuse","hand","baby","case","changes","mind","birth","married","couples","legally","go","gestational","surrogacy","ukraine","gay","couples","single","parents","prohibited","use","gestational","surrogates","united_states","united_states","location","surrogate","mothers","permanent","residence","united_states","green","card","country","since","resulting","child","get","birthright_citizenship","united_states","thereby","apply","green","cards","parents","turning","years","age","wealthy","second","child","green","card","alexandra","reuters","health","information","sep","come","us","surrogacy","procedures","including","enjoy","better","quality","medical","technology","care","well","high_level","legal","protections","afforded","ustate","courts","surrogacy","contracts","compared","tother","countries","increasingly","sex","couples","face","restrictions","using","ivf","surrogacy","procedures","home_countries","travel","ustates","legal","citizenship","citizenship","legal","status","child","resulting","surrogacy","problematic","hague","conference","permanent","bureau","identified","question","citizenship","children","pressing","problem","permanent","bureau","study","hague","conference","permanent","bureau","according","us_department","state","bureau","consular","affairs","child","us","citizen","one","child","genetic","parents","must","us","citizen","words","way","child","acquire","us","citizenship","automatically","birth","related","us","citizen","countries","child","citizen","country","whiche","born","surrogate","mother","legally","parent","child","could","result","child","born","without","citizenship","externalinks","ivf","treatment","abroad","issues","risks","category","infertility","category_medical","tourism"],"clean_bigrams":[["fertility","tourism"],["another","country"],["fertility","treatment"],["medical","tourism"],["main","reasons"],["fertility","tourism"],["sought","procedure"],["home","country"],["non","availability"],["home","country"],["lower","costs"],["destination","country"],["vitro","fertilization"],["fertilization","ivf"],["also","surrogacy"],["constraints","faced"],["travel","globally"],["procedures","ivf"],["ivf","destinations"],["destinations","abouto"],["abouto","women"],["women","often"],["often","accompanied"],["partners","annually"],["annually","seek"],["seek","cross"],["cross","border"],["border","assisted"],["assisted","reproductive"],["reproductive","technology"],["technology","art"],["art","services"],["services","israel"],["leading","fertility"],["fertility","tourism"],["tourism","destination"],["vitro","fertilization"],["fertilization","ivf"],["united","states"],["many","europeans"],["higher","success"],["success","rates"],["liberal","regulations"],["turn","indiand"],["asian","countries"],["main","destinations"],["us","women"],["women","seeking"],["seeking","fertility"],["fertility","treatment"],["us","women"],["women","seeking"],["seeking","ivf"],["seeking","ivf"],["egg","donation"],["donation","many"],["many","travel"],["countries","like"],["like","germany"],["many","embryos"],["recent","years"],["years","mexico"],["popular","destination"],["cross","border"],["border","ivf"],["ivf","treatment"],["treatment","due"],["liberal","art"],["egg","donation"],["donation","policies"],["policies","even"],["even","small"],["small","countriesuch"],["barbados","provide"],["provide","joint"],["joint","commission"],["commission","jci"],["jci","accredited"],["accredited","ivf"],["ivf","treatment"],["treatment","aimed"],["abroad","cost"],["cost","factors"],["factors","women"],["united","states"],["ivf","treatment"],["save","money"],["ivf","cycle"],["united","states"],["states","us"],["comparable","treatment"],["us","thailand"],["thailand","india"],["india","egg"],["egg","donation"],["donation","egg"],["egg","donation"],["european","countries"],["austriand","italy"],["italy","many"],["many","women"],["seek","treatment"],["united","states"],["donation","almost"],["almost","half"],["ivf","treatments"],["donor","eggs"],["spain","ivf"],["anonymous","egg"],["egg","donation"],["main","art"],["art","sought"],["canadians","traveling"],["sought","procedure"],["cross","border"],["border","treatments"],["selection","sex"],["sex","selection"],["many","countries"],["countries","including"],["united","kingdom"],["kingdom","us"],["us","clinic"],["clinic","offers"],["offers","british"],["british","couples"],["times","august"],["august","australiand"],["australiand","canada"],["selection","abortion"],["abortion","canada"],["canada","except"],["women","wishing"],["child","sex"],["sex","may"],["may","travel"],["potential","expansion"],["sex","selection"],["united","states"],["states","us"],["us","clinic"],["clinic","offers"],["offers","british"],["british","couples"],["times","august"],["august","many"],["many","countries"],["many","embryos"],["embryos","may"],["athe","time"],["time","increasing"],["multiple","pregnancy"],["resultant","potential"],["potential","complications"],["complications","health"],["health","warning"],["fertility","tourism"],["fertility","care"],["multiple","births"],["births","generated"],["many","embryos"],["home","country"],["country","donor"],["donor","insemination"],["woman","may"],["may","go"],["another","country"],["country","tobtain"],["tobtain","artificial"],["artificial","insemination"],["sperm","donation"],["donation","laws"],["country","sperm"],["sperm","donation"],["donation","laws"],["host","country"],["sperm","donor"],["genetic","problems"],["excellent","visual"],["college","degree"],["certain","height"],["colour","hair"],["hair","texture"],["texture","blood"],["blood","type"],["bank","june"],["june","baby"],["baby","steps"],["lesbian","alternative"],["alternative","insemination"],["evidence","suggests"],["suggests","thathe"],["thathe","inventory"],["taller","men"],["popular","sperm"],["sperm","counts"],["counts","overcome"],["precious","fluid"],["lisa","jean"],["january","denmark"],["well","developed"],["developed","system"],["mainly","comes"],["danish","sperm"],["sperm","donors"],["high","sperm"],["sperm","quality"],["contrast","withe"],["withe","law"],["nordicountries","gives"],["gives","donors"],["either","anonymous"],["non","anonymous"],["receiving","couple"],["couple","assisted"],["assisted","reproduction"],["furthermore","nordic"],["nordic","sperm"],["sperm","donors"],["donors","tend"],["features","like"],["different","color"],["color","eyes"],["highly","educated"],["educated","fda"],["fda","rules"],["rules","block"],["block","import"],["sperm","posted"],["posted","august"],["world","science"],["science","health"],["donations","partly"],["partly","due"],["relatively","low"],["low","monetary"],["monetary","compensation"],["countries","worldwide"],["danish","sperm"],["sperm","including"],["hong","kong"],["kong","another"],["another","emerging"],["emerging","destination"],["fertility","tourism"],["caribbean","couples"],["african","origin"],["ineed","medical"],["medical","help"],["often","want"],["want","eggs"],["long","time"],["united","states"],["states","however"],["years","barbados"],["providing","couples"],["couples","withe"],["withe","latest"],["cutting","edge"],["edge","technology"],["introduced","new"],["united","kingdom"],["month","long"],["long","waiting"],["waiting","list"],["donor","sperm"],["donor","sperm"],["st","century"],["century","british"],["british","women"],["women","travelled"],["donor","insemination"],["turn","citing"],["genetic","imperialism"],["guardian","may"],["two","countries"],["countries","changed"],["maximum","number"],["children","one"],["one","donor"],["donor","may"],["may","produce"],["produce","prior"],["children","born"],["donor","depended"],["depended","upon"],["upon","practitioners"],["fertility","clinics"],["spanish","clinics"],["purchasing","donor"],["donor","sperm"],["satisfy","demand"],["treatments","anonymous"],["anonymous","donation"],["legal","requirement"],["two","countries"],["countries","also"],["also","allowed"],["allowed","single"],["undergo","fertility"],["fertility","treatment"],["athe","time"],["time","many"],["spanish","clinics"],["buying","sperm"],["british","clinics"],["clinics","donated"],["british","donors"],["donors","whose"],["ten","families"],["sperm","according"],["addition","lesbian"],["lesbian","women"],["eastern","europe"],["europe","travelled"],["anonymous","donor"],["donor","since"],["countries","british"],["british","fertility"],["fertility","tourists"],["travel","tother"],["tother","countries"],["countries","particularly"],["include","children"],["children","born"],["children","produced"],["donor","britain"],["britain","also"],["also","imports"],["imports","donor"],["donor","sperm"],["limithe","use"],["donor","sperm"],["ten","families"],["children","may"],["produced","elsewhere"],["donor","shortage"],["sperm","donors"],["published","november"],["new","york"],["york","times"],["least","swedish"],["swedish","sperm"],["sperm","recipients"],["recipients","travel"],["denmark","annually"],["also","due"],["denmark","also"],["pay","donors"],["canada","women"],["still","import"],["import","commercial"],["eggs","resulting"],["many","canadian"],["canadian","women"],["women","leaving"],["mail","alison"],["permit","commercial"],["commercial","surrogacy"],["surrogacy","gestational"],["gestational","surrogacy"],["surrogacy","gestational"],["gestational","surrogacy"],["relatively","low"],["intended","parents"],["parents","legal"],["legal","rights"],["child","whether"],["streamlined","adoption"],["adoption","procedures"],["direct","parental"],["parental","rights"],["rights","india"],["main","destination"],["relatively","low"],["low","cost"],["cost","indian"],["indian","clinics"],["athe","time"],["time","becoming"],["indian","females"],["clinics","charge"],["charge","patients"],["complete","package"],["package","including"],["including","fertilization"],["fee","andelivery"],["hospital","including"],["medical","procedures"],["price","compared"],["eye","india"],["india","surrogacy"],["surrogacy","sector"],["india","business"],["business","report"],["report","bbc"],["bbc","world"],["world","retrieved"],["supreme","court"],["case","japanese"],["japanese","baby"],["commercial","surrogacy"],["permitted","india"],["upcoming","assisted"],["assisted","reproductive"],["reproductive","technology"],["technology","bill"],["bill","aiming"],["surrogacy","however"],["way","stimulate"],["practice","russian"],["russian","federation"],["tourists","looking"],["countries","intended"],["intended","parents"],["parents","come"],["advanced","age"],["single","men"],["considered","gestational"],["gestational","surrogacy"],["surrogacy","even"],["even","commercial"],["absolutely","legal"],["adults","willing"],["parents","foreigners"],["assisted","reproduction"],["russian","citizens"],["citizens","within"],["within","days"],["commissioning","parents"],["parents","obtain"],["russian","birth"],["birth","certificate"],["genetic","relation"],["moscow","court"],["court","ruled"],["single","man"],["gestational","surrogacy"],["surrogacy","using"],["using","donor"],["donor","eggs"],["eggs","could"],["hison","becoming"],["first","man"],["righto","become"],["court","procedure"],["surrogate","mother"],["birth","certificate"],["parent","surrogacy"],["completely","legal"],["ukraine","however"],["healthy","mothers"],["become","surrogates"],["zero","parental"],["parental","rights"],["child","astated"],["family","code"],["ukraine","thus"],["married","couples"],["legally","go"],["gestational","surrogacy"],["ukraine","gay"],["gay","couples"],["single","parents"],["use","gestational"],["gestational","surrogates"],["surrogates","united"],["united","states"],["united","states"],["surrogate","mothers"],["permanent","residence"],["residence","united"],["united","states"],["states","green"],["green","card"],["country","since"],["resulting","child"],["get","birthright"],["birthright","citizenship"],["united","states"],["thereby","apply"],["green","cards"],["turning","years"],["age","wealthy"],["second","child"],["child","green"],["green","card"],["reuters","health"],["health","information"],["information","sep"],["sep","however"],["people","come"],["surrogacy","procedures"],["procedures","including"],["better","quality"],["medical","technology"],["high","level"],["legal","protections"],["protections","afforded"],["ustate","courts"],["surrogacy","contracts"],["compared","tother"],["tother","countries"],["countries","increasingly"],["sex","couples"],["face","restrictions"],["restrictions","using"],["using","ivf"],["surrogacy","procedures"],["home","countries"],["countries","travel"],["legal","citizenship"],["legal","status"],["child","resulting"],["hague","conference"],["conference","permanent"],["permanent","bureau"],["bureau","identified"],["pressing","problem"],["permanent","bureau"],["bureau","study"],["study","hague"],["hague","conference"],["conference","permanent"],["permanent","bureau"],["bureau","according"],["us","department"],["state","bureau"],["consular","affairs"],["us","citizen"],["citizen","one"],["genetic","parents"],["parents","must"],["us","citizen"],["acquire","us"],["us","citizenship"],["citizenship","automatically"],["us","citizen"],["surrogate","mother"],["could","result"],["born","without"],["without","citizenship"],["citizenship","externalinks"],["externalinks","ivf"],["ivf","treatment"],["treatment","abroad"],["abroad","issues"],["risks","category"],["category","infertility"],["infertility","category"],["category","medical"],["medical","tourism"]],"all_collocations":["fertility tourism","another country","fertility treatment","medical tourism","main reasons","fertility tourism","sought procedure","home country","non availability","home country","lower costs","destination country","vitro fertilization","fertilization ivf","also surrogacy","constraints faced","travel globally","procedures ivf","ivf destinations","destinations abouto","abouto women","women often","often accompanied","partners annually","annually seek","seek cross","cross border","border assisted","assisted reproductive","reproductive technology","technology art","art services","services israel","leading fertility","fertility tourism","tourism destination","vitro fertilization","fertilization ivf","united states","many europeans","higher success","success rates","liberal regulations","turn indiand","asian countries","main destinations","us women","women seeking","seeking fertility","fertility treatment","us women","women seeking","seeking ivf","seeking ivf","egg donation","donation many","many travel","countries like","like germany","many embryos","recent years","years mexico","popular destination","cross border","border ivf","ivf treatment","treatment due","liberal art","egg donation","donation policies","policies even","even small","small countriesuch","barbados provide","provide joint","joint commission","commission jci","jci accredited","accredited ivf","ivf treatment","treatment aimed","abroad cost","cost factors","factors women","united states","ivf treatment","save money","ivf cycle","united states","states us","comparable treatment","us thailand","thailand india","india egg","egg donation","donation egg","egg donation","european countries","austriand italy","italy many","many women","seek treatment","united states","donation almost","almost half","ivf treatments","donor eggs","spain ivf","anonymous egg","egg donation","main art","art sought","canadians traveling","sought procedure","cross border","border treatments","selection sex","sex selection","many countries","countries including","united kingdom","kingdom us","us clinic","clinic offers","offers british","british couples","times august","august australiand","australiand canada","selection abortion","abortion canada","canada except","women wishing","child sex","sex may","may travel","potential expansion","sex selection","united states","states us","us clinic","clinic offers","offers british","british couples","times august","august many","many countries","many embryos","embryos may","athe time","time increasing","multiple pregnancy","resultant potential","potential complications","complications health","health warning","fertility tourism","fertility care","multiple births","births generated","many embryos","home country","country donor","donor insemination","woman may","may go","another country","country tobtain","tobtain artificial","artificial insemination","sperm donation","donation laws","country sperm","sperm donation","donation laws","host country","sperm donor","genetic problems","excellent visual","college degree","certain height","colour hair","hair texture","texture blood","blood type","bank june","june baby","baby steps","lesbian alternative","alternative insemination","evidence suggests","suggests thathe","thathe inventory","taller men","popular sperm","sperm counts","counts overcome","precious fluid","lisa jean","january denmark","well developed","developed system","mainly comes","danish sperm","sperm donors","high sperm","sperm quality","contrast withe","withe law","nordicountries gives","gives donors","either anonymous","non anonymous","receiving couple","couple assisted","assisted reproduction","furthermore nordic","nordic sperm","sperm donors","donors tend","features like","different color","color eyes","highly educated","educated fda","fda rules","rules block","block import","sperm posted","posted august","world science","science health","donations partly","partly due","relatively low","low monetary","monetary compensation","countries worldwide","danish sperm","sperm including","hong kong","kong another","another emerging","emerging destination","fertility tourism","caribbean couples","african origin","ineed medical","medical help","often want","want eggs","long time","united states","states however","years barbados","providing couples","couples withe","withe latest","cutting edge","edge technology","introduced new","united kingdom","month long","long waiting","waiting list","donor sperm","donor sperm","st century","century british","british women","women travelled","donor insemination","turn citing","genetic imperialism","guardian may","two countries","countries changed","maximum number","children one","one donor","donor may","may produce","produce prior","children born","donor depended","depended upon","upon practitioners","fertility clinics","spanish clinics","purchasing donor","donor sperm","satisfy demand","treatments anonymous","anonymous donation","legal requirement","two countries","countries also","also allowed","allowed single","undergo fertility","fertility treatment","athe time","time many","spanish clinics","buying sperm","british clinics","clinics donated","british donors","donors whose","ten families","sperm according","addition lesbian","lesbian women","eastern europe","europe travelled","anonymous donor","donor since","countries british","british fertility","fertility tourists","travel tother","tother countries","countries particularly","include children","children born","children produced","donor britain","britain also","also imports","imports donor","donor sperm","limithe use","donor sperm","ten families","children may","produced elsewhere","donor shortage","sperm donors","published november","new york","york times","least swedish","swedish sperm","sperm recipients","recipients travel","denmark annually","also due","denmark also","pay donors","canada women","still import","import commercial","eggs resulting","many canadian","canadian women","women leaving","mail alison","permit commercial","commercial surrogacy","surrogacy gestational","gestational surrogacy","surrogacy gestational","gestational surrogacy","relatively low","intended parents","parents legal","legal rights","child whether","streamlined adoption","adoption procedures","direct parental","parental rights","rights india","main destination","relatively low","low cost","cost indian","indian clinics","athe time","time becoming","indian females","clinics charge","charge patients","complete package","package including","including fertilization","fee andelivery","hospital including","medical procedures","price compared","eye india","india surrogacy","surrogacy sector","india business","business report","report bbc","bbc world","world retrieved","supreme court","case japanese","japanese baby","commercial surrogacy","permitted india","upcoming assisted","assisted reproductive","reproductive technology","technology bill","bill aiming","surrogacy however","way stimulate","practice russian","russian federation","tourists looking","countries intended","intended parents","parents come","advanced age","single men","considered gestational","gestational surrogacy","surrogacy even","even commercial","absolutely legal","adults willing","parents foreigners","assisted reproduction","russian citizens","citizens within","within days","commissioning parents","parents obtain","russian birth","birth certificate","genetic relation","moscow court","court ruled","single man","gestational surrogacy","surrogacy using","using donor","donor eggs","eggs could","hison becoming","first man","righto become","court procedure","surrogate mother","birth certificate","parent surrogacy","completely legal","ukraine however","healthy mothers","become surrogates","zero parental","parental rights","child astated","family code","ukraine thus","married couples","legally go","gestational surrogacy","ukraine gay","gay couples","single parents","use gestational","gestational surrogates","surrogates united","united states","united states","surrogate mothers","permanent residence","residence united","united states","states green","green card","country since","resulting child","get birthright","birthright citizenship","united states","thereby apply","green cards","turning years","age wealthy","second child","child green","green card","reuters health","health information","information sep","sep however","people come","surrogacy procedures","procedures including","better quality","medical technology","high level","legal protections","protections afforded","ustate courts","surrogacy contracts","compared tother","tother countries","countries increasingly","sex couples","face restrictions","restrictions using","using ivf","surrogacy procedures","home countries","countries travel","legal citizenship","legal status","child resulting","hague conference","conference permanent","permanent bureau","bureau identified","pressing problem","permanent bureau","bureau study","study hague","hague conference","conference permanent","permanent bureau","bureau according","us department","state bureau","consular affairs","us citizen","citizen one","genetic parents","parents must","us citizen","acquire us","us citizenship","citizenship automatically","us citizen","surrogate mother","could result","born without","without citizenship","citizenship externalinks","externalinks ivf","ivf treatment","treatment abroad","abroad issues","risks category","category infertility","infertility category","category medical","medical tourism"],"new_description":"fertility tourism tourism practice traveling another_country jurisdiction fertility treatment may regarded form medical_tourism main reasons fertility tourism legal sought procedure home_country non availability procedure home_country well lower_costs destination country main vitro fertilization ivf insemination also surrogacy proposed termed difficulties constraints faced patients forced travel globally procedures ivf destinations abouto women often accompanied partners annually seek cross_border assisted reproductive technology art services israel leading fertility tourism_destination vitro fertilization ivf united_states destination many europeans higher success rates liberal regulations turn indiand asian countries main destinations us women seeking fertility treatment destinations us women seeking ivf seeking ivf egg donation many travel countries like germany italy restrictive number eggs may many embryos used cryopreservation recent_years mexico become_popular destination cross_border ivf treatment due liberal art egg donation policies even small countriesuch barbados provide joint_commission jci accredited ivf treatment aimed women abroad cost factors women countriesuch united_states united travel ivf treatment save money cost ivf cycle united_states us comparable treatment mexico us thailand india egg donation egg donation illegal number european_countries austriand italy many women seek treatment places procedure allowed united_states donors paid donation almost half ivf treatments donor eggs europe performed spain ivf anonymous egg donation also main art sought canadians traveling us sought procedure cross_border treatments selection sex selection prohibited many_countries including united_kingdom us clinic offers british couples chance choose sex child times august australiand canada library selection abortion canada except used screen genetic women wishing sure child_sex may travel countries legal perform genetic potential expansion ivf used sex selection united_states us clinic offers british couples chance choose sex child times august many_countries restriction many embryos may transferred athe_time increasing risk multiple pregnancy resultant potential complications health warning women fertility tourism fertility care california burden multiple births generated placing many embryos carried patients home_country donor insemination woman may go another_country tobtain artificial insemination donor practice influenced attitudes sperm donation laws country sperm donation laws host country generally demand sperm donor genetic problems family excellent visual college degree sometimes value certain height colour hair texture blood type ethnicity bank june baby steps lesbian alternative insemination changing world amy evidence suggests thathe inventory taller men blonde popular sperm counts overcome man precious fluid lisa jean january denmark well developed system sperm mainly comes reputation danish sperm donors high sperm quality contrast withe law nordicountries gives donors choice either anonymous non anonymous receiving couple assisted reproduction nordicountries furthermore nordic sperm donors tend tall features like hair different color eyes light highly educated fda rules block import sperm posted august world science health motives donations partly due relatively low monetary compensation countries worldwide danish sperm including canada hong_kong another emerging destination fertility tourism barbados caribbean couples couples african origin ineed medical help often want eggs sperm match long_time option united_states however years barbados providing couples withe latest cutting edge technology introduced new countriesuch united_kingdom sweden shortage sperm month long waiting list donor sperm consequence shortage donor sperm uk late_thearlyears st_century british women travelled belgium spain donor insemination turn citing x formula genetic imperialism guardian may two countries changed laws imposed maximum number children one donor may produce prior change law limit number children born donor depended upon practitioners fertility clinics spanish clinics purchasing donor sperm abroad satisfy demand treatments anonymous donation permitted belgium legal requirement spain two countries also allowed single single coupled undergo fertility treatment athe_time many spanish clinics buying sperm british clinics donated british donors whose ten families uk reached able use sperm according limits addition lesbian women france eastern_europe travelled countries order achieve pregnancy anonymous donor since treatment available countries british fertility tourists travel tother countries particularly include children born foreigners national children produced donor britain also imports donor sperm scandinavia limithe use donor sperm ten families uk children may produced elsewhere donor shortage sperm donors britain calls change denise published november new_york times least swedish sperm recipients travel denmark annually insemination also due denmark also women illegal pay donors eggs sperm canada women still import commercial buthat eggs resulting many canadian women leaving country procedures scattered globe mail alison sunday surrogacy destinations countries jurisdictions permit commercial surrogacy gestational surrogacy gestational surrogacy cost relatively low give intended parents legal rights child whether streamlined adoption procedures direct parental rights india main destination surrogacy relatively low_cost indian clinics athe_time becoming competitive pricing hiring retention indian females clinics charge patients complete package including fertilization surrogate fee andelivery baby hospital including costs medical procedures hotels comes roughly third price compared going procedure uk eye india surrogacy sector shilpa india business report bbc world retrieved mars supreme_court india manji case japanese baby held commercial surrogacy permitted india upcoming assisted reproductive technology bill aiming regulate surrogacy however expected increase confidence clinics practitioners way stimulate practice russian federation makes tourists looking techniques available countries intended parents come donation advanced age women single men surrogacy considered gestational surrogacy even commercial absolutely legal russia available practically adults willing parents foreigners rights assisted reproduction russian citizens within days commissioning parents obtain russian birth certificate names genetic relation child case donation matter august moscow court ruled single man applied gestational surrogacy using donor eggs could registered parent hison becoming first man russia defend righto become father court procedure surrogate mother name listed birth certificate father listed parent surrogacy completely legal ukraine however healthy mothers children become surrogates ukraine zero parental rights child astated article family code ukraine thus surrogate cannot refuse hand baby case changes mind birth married couples legally go gestational surrogacy ukraine gay couples single parents prohibited use gestational surrogates united_states united_states location surrogate mothers permanent residence united_states green card country since resulting child get birthright_citizenship united_states thereby apply green cards parents turning years age wealthy second child green card alexandra reuters health information sep however_many_people come us surrogacy procedures including enjoy better quality medical technology care well high_level legal protections afforded ustate courts surrogacy contracts compared tother countries increasingly sex couples face restrictions using ivf surrogacy procedures home_countries travel ustates legal citizenship citizenship legal status child resulting surrogacy problematic hague conference permanent bureau identified question citizenship children pressing problem permanent bureau study hague conference permanent bureau according us_department state bureau consular affairs child us citizen one child genetic parents must us citizen words way child acquire us citizenship automatically birth related us citizen countries child citizen country whiche born surrogate mother legally parent child could result child born without citizenship externalinks ivf treatment abroad issues risks category infertility category_medical tourism"},{"title":"Fetish club","description":"a fetish club is a nightclubar establishment bar or other entertainment hub which caters to clientele interested in some of but not necessarily all fetish fashion bondage bdsm bondage domination submission bdsm dominance submission and or sadism and masochism bdsm some clubs have active play going on inside the club while others are a socialising place for like minded people fetish community events take place at specialty fare hosted at other public venues and night clubs activities at fetish clubs have been interpreted as neo burlesque freak show queer and body mutation styles the fetish club as carnival represents a rejection official world viewsee also play party bdsmunch bdsm sex club category nightclubs category fetish subculture category bdsm terminology","main_words":["fetish","club","entertainment","hub","caters","clientele","interested","necessarily","fetish","fashion","bondage","bdsm","bondage","domination","bdsm","dominance","bdsm","clubs","active","play","going","inside","club","others","place","like","minded","people","fetish","community","events","take_place","specialty","fare","hosted","public","venues","night_clubs","activities","fetish","clubs","interpreted","neo","freak","show","body","styles","fetish","club","carnival","represents","official","world","also","play","party","bdsm","sex","club","category_nightclubs_category","fetish","subculture","category","bdsm","terminology"],"clean_bigrams":[["fetish","club"],["establishment","bar"],["entertainment","hub"],["clientele","interested"],["fetish","fashion"],["fashion","bondage"],["bondage","bdsm"],["bdsm","bondage"],["bondage","domination"],["bdsm","dominance"],["active","play"],["play","going"],["like","minded"],["minded","people"],["people","fetish"],["fetish","community"],["community","events"],["events","take"],["take","place"],["specialty","fare"],["fare","hosted"],["public","venues"],["night","clubs"],["clubs","activities"],["fetish","clubs"],["freak","show"],["fetish","club"],["carnival","represents"],["official","world"],["also","play"],["play","party"],["bdsm","sex"],["sex","club"],["club","category"],["category","nightclubs"],["nightclubs","category"],["category","fetish"],["fetish","subculture"],["subculture","category"],["category","bdsm"],["bdsm","terminology"]],"all_collocations":["fetish club","establishment bar","entertainment hub","clientele interested","fetish fashion","fashion bondage","bondage bdsm","bdsm bondage","bondage domination","bdsm dominance","active play","play going","like minded","minded people","people fetish","fetish community","community events","events take","take place","specialty fare","fare hosted","public venues","night clubs","clubs activities","fetish clubs","freak show","fetish club","carnival represents","official world","also play","play party","bdsm sex","sex club","club category","category nightclubs","nightclubs category","category fetish","fetish subculture","subculture category","category bdsm","bdsm terminology"],"new_description":"fetish club establishment_bar entertainment hub caters clientele interested necessarily fetish fashion bondage bdsm bondage domination bdsm dominance bdsm clubs active play going inside club others place like minded people fetish community events take_place specialty fare hosted public venues night_clubs activities fetish clubs interpreted neo freak show body styles fetish club carnival represents official world also play party bdsm sex club category_nightclubs_category fetish subculture category bdsm terminology"},{"title":"FIDO Friendly","description":"fido friendly is an american dog travel and lifestyle magazine published bimonthly including hotel andestination reviews life and style along withealth and wellness topics dog training advicelebrity interviews and the latest fashion trends founder of get your licks on route annual month long pet adoption campaign to promote animal wellness and shelter adoptions fido friendly is also cooperatively involved with over non profit organizations including north shore animaleague america publisher susan sims hosts fido friendly travel talk on animal radio sims also co hosts a podcast with editor nicholasveslosky travel tails for pet life radio externalinks official website category american bi monthly magazines category american lifestyle magazines category animal and pet magazines category dogs as pets category dogs in the united states category magazinestablished in category magazines published in idaho category tourismagazines","main_words":["friendly","american","dog","travel","bimonthly","including","hotel","andestination","reviews","life","style","along","wellness","topics","dog","training","interviews","latest","fashion","trends","founder","get","route","annual","month","long","pet","adoption","campaign","promote","animal","wellness","shelter","friendly","also","involved","non_profit","organizations","including","north","shore","america","publisher","susan","sims","hosts","friendly","travel","talk","animal","radio","sims","also","hosts","podcast","editor","travel","tails","pet","life","radio","externalinks_official_website_category","american_monthly_magazines_category","american_lifestyle_magazines_category","animal","pet","magazines_category","dogs","pets","category","dogs","united_states","category_magazinestablished","category_magazines_published","idaho","category_tourismagazines"],"clean_bigrams":[["american","dog"],["dog","travel"],["lifestyle","magazine"],["magazine","published"],["published","bimonthly"],["bimonthly","including"],["including","hotel"],["hotel","andestination"],["andestination","reviews"],["reviews","life"],["style","along"],["wellness","topics"],["topics","dog"],["dog","training"],["latest","fashion"],["fashion","trends"],["trends","founder"],["route","annual"],["annual","month"],["month","long"],["long","pet"],["pet","adoption"],["adoption","campaign"],["promote","animal"],["animal","wellness"],["non","profit"],["profit","organizations"],["organizations","including"],["including","north"],["north","shore"],["america","publisher"],["publisher","susan"],["susan","sims"],["sims","hosts"],["friendly","travel"],["travel","talk"],["animal","radio"],["radio","sims"],["sims","also"],["travel","tails"],["pet","life"],["life","radio"],["radio","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","american"],["monthly","magazines"],["magazines","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","animal"],["pet","magazines"],["magazines","category"],["category","dogs"],["pets","category"],["category","dogs"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["idaho","category"],["category","tourismagazines"]],"all_collocations":["american dog","dog travel","lifestyle magazine","magazine published","published bimonthly","bimonthly including","including hotel","hotel andestination","andestination reviews","reviews life","style along","wellness topics","topics dog","dog training","latest fashion","fashion trends","trends founder","route annual","annual month","month long","long pet","pet adoption","adoption campaign","promote animal","animal wellness","non profit","profit organizations","organizations including","including north","north shore","america publisher","publisher susan","susan sims","sims hosts","friendly travel","travel talk","animal radio","radio sims","sims also","travel tails","pet life","life radio","radio externalinks","externalinks official","official website","website category","category american","monthly magazines","magazines category","category american","american lifestyle","lifestyle magazines","magazines category","category animal","pet magazines","magazines category","category dogs","pets category","category dogs","united states","states category","category magazinestablished","category magazines","magazines published","idaho category","category tourismagazines"],"new_description":"friendly american dog travel lifestyle_magazine_published bimonthly including hotel andestination reviews life style along wellness topics dog training interviews latest fashion trends founder get route annual month long pet adoption campaign promote animal wellness shelter friendly also involved non_profit organizations including north shore america publisher susan sims hosts friendly travel talk animal radio sims also hosts podcast editor travel tails pet life radio externalinks_official_website_category american_monthly_magazines_category american_lifestyle_magazines_category animal pet magazines_category dogs pets category dogs united_states category_magazinestablished category_magazines_published idaho category_tourismagazines"},{"title":"Floating restaurant","description":"image vaal river floating restaurant jpg thumb a floating restaurant on the vaal river at vereeniging south africa image ravintolalaivojaurajoessajpg thumb restaurant ships on the aura river finland aura river file river cafe bklynyww jehjpg thumbarge restaurant in brooklynew york a floating restaurant is a vessel usually a large steel barge used as a restaurant on water the jumbo kingdom at aberdeen harbour aberdeen in hong kong is an example sometimes retired ships are given a second lease on life as floating restaurants the former car ferry new york built in serves as dimillo s in portland maine another example is the train ferry ss lansdowne which served as a restaurant in detroit plans for the lansdowne to continue in this capacity on the buffalo new york waterfront came to naught and she wascrapped in the summer of a third example of a ship s hull converted for this purpose is captain john s harbour boat restaurant in toronto which was located on the ms jadran a former yugoslavian ship but hasince been closed and scrapped the normac the first captain john s restaurant was moved to port dahousie as the floating cocktailounge big kahunand is now the riverboat mexican grill binghamton ferryboat captain john s harbour boat restaurant ms jadran defunctourism in patna ganges river banks mv ganga vihar jumbo kingdomcbarge moshulu ms normac ms normac the original captain john s restaurant in toronto now the riverboat mexican grill in port dalhousie ontario rustar dhow usat general frank m coxe sherman ss south steyne south steyne star seafood floating restaurant ab celestial see also revolving restaurant houseboat kettuvallam a type of houseboat in kerala india many of which serve as hotels for tourists with cooking on board category ship types restaurant category theme restaurants category types of restaurants","main_words":["image","river","floating_restaurant","jpg","thumb","floating_restaurant","river","south_africa","image","thumb","restaurant","ships","river","finland","river","file","river","cafe","jehjpg","restaurant","brooklynew","york","floating_restaurant","vessel","usually","large","steel","barge","used","restaurant","water","jumbo","kingdom","aberdeen","harbour","aberdeen","hong_kong","example","sometimes","retired","ships","given","second","lease","life","former","car","ferry","new_york","built","serves","portland","maine","another","example","train","ferry","served","restaurant","detroit","plans","continue","capacity","buffalo_new_york","waterfront","came","summer","third","example","ship","hull","converted","purpose","captain","john","harbour","boat","restaurant","toronto","located","former","ship","hasince","closed","normac","first","captain","john","restaurant","moved","port","floating","cocktailounge","big","riverboat","mexican","grill","captain","john","harbour","boat","restaurant","ganges","river","banks","jumbo","normac","normac","original","captain","john","restaurant","toronto","riverboat","mexican","grill","port","ontario","usat","general","frank","coxe","sherman","south","south","star","seafood","floating_restaurant","see_also","revolving_restaurant","houseboat","type","houseboat","kerala","india","many","serve","hotels","tourists","cooking","board","category","ship","types","restaurant","restaurants"],"clean_bigrams":[["river","floating"],["floating","restaurant"],["restaurant","jpg"],["jpg","thumb"],["floating","restaurant"],["south","africa"],["africa","image"],["thumb","restaurant"],["restaurant","ships"],["river","finland"],["river","file"],["file","river"],["river","cafe"],["brooklynew","york"],["floating","restaurant"],["vessel","usually"],["large","steel"],["steel","barge"],["barge","used"],["jumbo","kingdom"],["aberdeen","harbour"],["harbour","aberdeen"],["hong","kong"],["example","sometimes"],["sometimes","retired"],["retired","ships"],["second","lease"],["floating","restaurants"],["former","car"],["car","ferry"],["ferry","new"],["new","york"],["york","built"],["portland","maine"],["maine","another"],["another","example"],["train","ferry"],["detroit","plans"],["buffalo","new"],["new","york"],["york","waterfront"],["waterfront","came"],["third","example"],["hull","converted"],["captain","john"],["harbour","boat"],["boat","restaurant"],["first","captain"],["captain","john"],["floating","cocktailounge"],["cocktailounge","big"],["riverboat","mexican"],["mexican","grill"],["captain","john"],["harbour","boat"],["boat","restaurant"],["ganges","river"],["river","banks"],["original","captain"],["captain","john"],["riverboat","mexican"],["mexican","grill"],["usat","general"],["general","frank"],["coxe","sherman"],["star","seafood"],["seafood","floating"],["floating","restaurant"],["see","also"],["also","revolving"],["revolving","restaurant"],["restaurant","houseboat"],["kerala","india"],["india","many"],["board","category"],["category","ship"],["ship","types"],["types","restaurant"],["restaurant","category"],["category","theme"],["theme","restaurants"],["restaurants","category"],["category","types"]],"all_collocations":["river floating","floating restaurant","restaurant jpg","floating restaurant","south africa","africa image","thumb restaurant","restaurant ships","river finland","river file","file river","river cafe","brooklynew york","floating restaurant","vessel usually","large steel","steel barge","barge used","jumbo kingdom","aberdeen harbour","harbour aberdeen","hong kong","example sometimes","sometimes retired","retired ships","second lease","floating restaurants","former car","car ferry","ferry new","new york","york built","portland maine","maine another","another example","train ferry","detroit plans","buffalo new","new york","york waterfront","waterfront came","third example","hull converted","captain john","harbour boat","boat restaurant","first captain","captain john","floating cocktailounge","cocktailounge big","riverboat mexican","mexican grill","captain john","harbour boat","boat restaurant","ganges river","river banks","original captain","captain john","riverboat mexican","mexican grill","usat general","general frank","coxe sherman","star seafood","seafood floating","floating restaurant","see also","also revolving","revolving restaurant","restaurant houseboat","kerala india","india many","board category","category ship","ship types","types restaurant","restaurant category","category theme","theme restaurants","restaurants category","category types"],"new_description":"image river floating_restaurant jpg thumb floating_restaurant river south_africa image thumb restaurant ships river finland river file river cafe jehjpg restaurant brooklynew york floating_restaurant vessel usually large steel barge used restaurant water jumbo kingdom aberdeen harbour aberdeen hong_kong example sometimes retired ships given second lease life floating_restaurants former car ferry new_york built serves portland maine another example train ferry served restaurant detroit plans continue capacity buffalo_new_york waterfront came summer third example ship hull converted purpose captain john harbour boat restaurant toronto located former ship hasince closed normac first captain john restaurant moved port floating cocktailounge big riverboat mexican grill captain john harbour boat restaurant ganges river banks jumbo normac normac original captain john restaurant toronto riverboat mexican grill port ontario usat general frank coxe sherman south south star seafood floating_restaurant see_also revolving_restaurant houseboat type houseboat kerala india many serve hotels tourists cooking board category ship types restaurant category_theme_restaurants_category_types restaurants"},{"title":"Fodor's","description":"fodor s is the world s largest publisher of english language travel and tourism information and the first relatively professional producer of travel guidebooks fodor s travel and fodorscom are divisions of random house inc founder eugene fodor writer eugene fodor was a keen traveler but felthathe guidebooks of his time were boring uninspired collections of quickly outdated facts and figures he decided to address these shortcomings and wrote a guide to europe on the continenthentertaining travel annual which was published in by francis aldor publications london going beyond the usualists of hotels and attractions the book was updated yearly and gave practical guidance such as tip gratuity tiping advice alongside information abouthe local people and culture for example in the introduction fodor wrote rome contains not only magnificent monument s but also italy italians the pioneering book was a success in england the united states fodor s modern guides inc was founded in paris france andavid mckay publications david mckay company began publishing the books a year later mckay wasold to random house in fodor s launched a travel related website fodorscom which was nominated for a webby award in today fodor s has published more than guides in series on over destinations and has more than permanently placed researchers all over the world the fodor s division s current publisher is amanda d acierno in fodor s was acquired by el segundo california el segundo california based internet brands externalinks fodorscom official site category travel guide books category publishing companies of the united states category random house","main_words":["fodor","world","largest","publisher","english_language","travel_tourism","information","first","relatively","professional","producer","travel_guidebooks","fodor","travel","divisions","random_house","inc","founder","eugene","fodor","writer","eugene","fodor","keen","traveler","guidebooks","time","collections","quickly","outdated","facts","figures","decided","address","wrote","guide","europe","travel","annual","published","francis","publications","london","going","beyond","hotels","attractions","book","updated","yearly","gave","practical","guidance","tip","gratuity","advice","alongside","information_abouthe","local_people","culture","example","introduction","fodor","wrote","rome","contains","magnificent","monument","also","italy","italians","pioneering","book","success","england","united_states","fodor","modern","guides","inc","founded","paris_france","andavid","publications","david","company","began","publishing","books","year_later","wasold","random_house","fodor","launched","travel_related","website","nominated","webby","award","today","fodor","published","guides","series","destinations","permanently","placed","researchers","world","fodor","division","current","publisher","amanda","fodor","acquired","el","segundo","california","el","segundo","california","based","internet","brands","externalinks_official","site_category","travel_guide_books","category_publishing","companies","united_states","category","random_house"],"clean_bigrams":[["largest","publisher"],["english","language"],["language","travel"],["tourism","information"],["first","relatively"],["relatively","professional"],["professional","producer"],["travel","guidebooks"],["guidebooks","fodor"],["random","house"],["house","inc"],["inc","founder"],["founder","eugene"],["eugene","fodor"],["fodor","writer"],["writer","eugene"],["eugene","fodor"],["keen","traveler"],["quickly","outdated"],["outdated","facts"],["travel","annual"],["publications","london"],["london","going"],["going","beyond"],["updated","yearly"],["gave","practical"],["practical","guidance"],["tip","gratuity"],["advice","alongside"],["alongside","information"],["information","abouthe"],["abouthe","local"],["local","people"],["introduction","fodor"],["fodor","wrote"],["wrote","rome"],["rome","contains"],["magnificent","monument"],["also","italy"],["italy","italians"],["pioneering","book"],["united","states"],["states","fodor"],["modern","guides"],["guides","inc"],["paris","france"],["france","andavid"],["publications","david"],["company","began"],["began","publishing"],["year","later"],["random","house"],["travel","related"],["related","website"],["webby","award"],["today","fodor"],["permanently","placed"],["placed","researchers"],["current","publisher"],["el","segundo"],["segundo","california"],["california","el"],["el","segundo"],["segundo","california"],["california","based"],["based","internet"],["internet","brands"],["brands","externalinks"],["official","site"],["site","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","publishing"],["publishing","companies"],["united","states"],["states","category"],["category","random"],["random","house"]],"all_collocations":["largest publisher","english language","language travel","tourism information","first relatively","relatively professional","professional producer","travel guidebooks","guidebooks fodor","random house","house inc","inc founder","founder eugene","eugene fodor","fodor writer","writer eugene","eugene fodor","keen traveler","quickly outdated","outdated facts","travel annual","publications london","london going","going beyond","updated yearly","gave practical","practical guidance","tip gratuity","advice alongside","alongside information","information abouthe","abouthe local","local people","introduction fodor","fodor wrote","wrote rome","rome contains","magnificent monument","also italy","italy italians","pioneering book","united states","states fodor","modern guides","guides inc","paris france","france andavid","publications david","company began","began publishing","year later","random house","travel related","related website","webby award","today fodor","permanently placed","placed researchers","current publisher","el segundo","segundo california","california el","el segundo","segundo california","california based","based internet","internet brands","brands externalinks","official site","site category","category travel","travel guide","guide books","books category","category publishing","publishing companies","united states","states category","category random","random house"],"new_description":"fodor world largest publisher english_language travel_tourism information first relatively professional producer travel_guidebooks fodor travel divisions random_house inc founder eugene fodor writer eugene fodor keen traveler guidebooks time collections quickly outdated facts figures decided address wrote guide europe travel annual published francis publications london going beyond hotels attractions book updated yearly gave practical guidance tip gratuity advice alongside information_abouthe local_people culture example introduction fodor wrote rome contains magnificent monument also italy italians pioneering book success england united_states fodor modern guides inc founded paris_france andavid publications david company began publishing books year_later wasold random_house fodor launched travel_related website nominated webby award today fodor published guides series destinations permanently placed researchers world fodor division current publisher amanda fodor acquired el segundo california el segundo california based internet brands externalinks_official site_category travel_guide_books category_publishing companies united_states category random_house"},{"title":"Food away from home","description":"food away from home fafh covers meal s and snack supplied by commercial food servicestablishments and by eating facilities inon commercial institutionsegments covered in fafh commercial foodservice limited service restaurants quick service restaurant s quick casual dining cafeteria delivery and take away and buffet full service restaurant s family style restaurants casual dining upscale casual dining and fine dining restaurants drinking place bars taverns lodging hotels motels bed breakfasts etc retail stores including vending machine sales recreational places ie movie theaters bowling alleys pool parlorsports arenas amusement parks camps golf and country clubs non commercial foodservice schools and colleges business industry employees feeding in offices factories and plants healthcare hospitals and all other places ie military exchanges and clubs railroadining cars airlines institutions hospitals boarding houses fraternity and sorority houses and civic and social organizations and food facilities for military forces civilian employees and childay careferences united states department of agriculture us trends in eating away from home j c durnagan j w hackett united states department of agriculture the demand for food away from home full service or fast food h stewart n blisard s bhuyan r m nayga jr category foodservice","main_words":["food","away","home","covers","meal","snack","supplied","commercial","food","eating","facilities","inon","commercial","covered","commercial","foodservice","limited_service","restaurants","quick","service_restaurant","quick","casual_dining","cafeteria","delivery","take_away","buffet","full_service","restaurant","casual_dining","upscale","casual_dining","fine_dining","restaurants","drinking","place","bars","taverns","lodging","hotels","motels","bed","breakfasts","etc","retail","stores","including","vending","machine","sales","recreational","places","movie_theaters","bowling","alleys","pool","amusement_parks","camps","golf","country","clubs","non","commercial","foodservice","schools","colleges","business","industry","employees","feeding","offices","factories","plants","healthcare","hospitals","places","military","exchanges","clubs","cars","airlines","institutions","hospitals","boarding","houses","houses","civic","social","organizations","food","facilities","military","forces","civilian","employees","united_states","department","agriculture","us","trends","eating","away","home","j","c","j","w","united_states","department","agriculture","demand","food","away","home","full_service","fast_food","h","stewart","n","r","category_foodservice"],"clean_bigrams":[["food","away"],["covers","meal"],["snack","supplied"],["commercial","food"],["eating","facilities"],["facilities","inon"],["inon","commercial"],["commercial","foodservice"],["foodservice","limited"],["limited","service"],["service","restaurants"],["restaurants","quick"],["quick","service"],["service","restaurant"],["quick","casual"],["casual","dining"],["dining","cafeteria"],["cafeteria","delivery"],["take","away"],["buffet","full"],["full","service"],["service","restaurant"],["family","style"],["style","restaurants"],["restaurants","casual"],["casual","dining"],["dining","upscale"],["upscale","casual"],["casual","dining"],["fine","dining"],["dining","restaurants"],["restaurants","drinking"],["drinking","place"],["place","bars"],["bars","taverns"],["taverns","lodging"],["lodging","hotels"],["hotels","motels"],["motels","bed"],["bed","breakfasts"],["breakfasts","etc"],["etc","retail"],["retail","stores"],["stores","including"],["including","vending"],["vending","machine"],["machine","sales"],["sales","recreational"],["recreational","places"],["movie","theaters"],["theaters","bowling"],["bowling","alleys"],["alleys","pool"],["amusement","parks"],["parks","camps"],["camps","golf"],["country","clubs"],["clubs","non"],["non","commercial"],["commercial","foodservice"],["foodservice","schools"],["colleges","business"],["business","industry"],["industry","employees"],["employees","feeding"],["offices","factories"],["plants","healthcare"],["healthcare","hospitals"],["military","exchanges"],["cars","airlines"],["airlines","institutions"],["institutions","hospitals"],["hospitals","boarding"],["boarding","houses"],["social","organizations"],["food","facilities"],["military","forces"],["forces","civilian"],["civilian","employees"],["united","states"],["states","department"],["agriculture","us"],["us","trends"],["eating","away"],["home","j"],["j","c"],["j","w"],["united","states"],["states","department"],["food","away"],["home","full"],["full","service"],["fast","food"],["food","h"],["h","stewart"],["stewart","n"],["category","foodservice"]],"all_collocations":["food away","covers meal","snack supplied","commercial food","eating facilities","facilities inon","inon commercial","commercial foodservice","foodservice limited","limited service","service restaurants","restaurants quick","quick service","service restaurant","quick casual","casual dining","dining cafeteria","cafeteria delivery","take away","buffet full","full service","service restaurant","family style","style restaurants","restaurants casual","casual dining","dining upscale","upscale casual","casual dining","fine dining","dining restaurants","restaurants drinking","drinking place","place bars","bars taverns","taverns lodging","lodging hotels","hotels motels","motels bed","bed breakfasts","breakfasts etc","etc retail","retail stores","stores including","including vending","vending machine","machine sales","sales recreational","recreational places","movie theaters","theaters bowling","bowling alleys","alleys pool","amusement parks","parks camps","camps golf","country clubs","clubs non","non commercial","commercial foodservice","foodservice schools","colleges business","business industry","industry employees","employees feeding","offices factories","plants healthcare","healthcare hospitals","military exchanges","cars airlines","airlines institutions","institutions hospitals","hospitals boarding","boarding houses","social organizations","food facilities","military forces","forces civilian","civilian employees","united states","states department","agriculture us","us trends","eating away","home j","j c","j w","united states","states department","food away","home full","full service","fast food","food h","h stewart","stewart n","category foodservice"],"new_description":"food away home covers meal snack supplied commercial food eating facilities inon commercial covered commercial foodservice limited_service restaurants quick service_restaurant quick casual_dining cafeteria delivery take_away buffet full_service restaurant family_style_restaurants casual_dining upscale casual_dining fine_dining restaurants drinking place bars taverns lodging hotels motels bed breakfasts etc retail stores including vending machine sales recreational places movie_theaters bowling alleys pool amusement_parks camps golf country clubs non commercial foodservice schools colleges business industry employees feeding offices factories plants healthcare hospitals places military exchanges clubs cars airlines institutions hospitals boarding houses houses civic social organizations food facilities military forces civilian employees united_states department agriculture us trends eating away home j c j w united_states department agriculture demand food away home full_service fast_food h stewart n r category_foodservice"},{"title":"Food booth","description":"file u distreet fair sausagesjpg thumb right food booth vendors cooking sausages at university district street fair university district seattle washington a food booth also food stand temporary food service facility is generally a temporary structure used to prepare and sell food to the general public usually where large groups of people are situated outdoors in a park at a parade near a stadium or otherwise sometimes the term also refers to the business operations and vendors that operate from such booths there is evidence to suggesthat certain foods haveither originated from or gained in popularity through food boothsa confectionery booth is depicted in an etching by christoph weigel from one hundred fools c for example the popularity of the ice cream cone inorth america is attributed to the louisiana purchasexposition st louis world s fair in according to legend an ice cream seller had run out of clean dishes and could not sell any more ice cream next door to the ice cream booth was the waffle booth unsuccessful due to intense heathe waffle maker offered to make cones by rolling up his waffles and the new product sold well and wasubsequently copied by other vendors file kaleenka piroshky boothjpg thumb right kaleenka piroshky food booth at northwest folklifestival seattle center file zandvoort jpg thumb food booth at zandvoort beach the netherlands a common practice is for modern food booths toperate as concession stand s at various kinds of special events these may be operated by small independent vendors catering companies or by established restaurant s offering a subset of items featured from a more comprehensive menu alternatively some food booths may be operated by local nonprofit organization s as a means ofundraising in some situations nonprofit orgs may face slightly lower processing fees or lesstringent regulations and contractual requirements making such operations relatively more advantageouseeg chapter leavenworth municipal code seeg environmental health services temporary food facility application santa barbera county california depending on the jurisdiction and local customs operators of such booths ordinarily require a temporary food sales permit and government issued license seeg city of san fernando special event permit application typically operators also must demonstrate compliance with various regulations for sanitation public health and food safety seeg california health and safety code chscalifornia uniform retail food facilities law curffl an excerpt from the california health and safety code sanitation requirements for temporary food facilities et seq eg california conference of directors of environmental health ccdeh questions and answers regarding health department regulation of temporary food facilities file crepestand auf street food festival jpg thumb food booth in a street food festival koln such regulations include for example structural requirements for the construction and placement of booths eg san francisco department of public health food safety program requirements or limitations regarding the hours and number of days of continuous operation eg license application foretail food booth athe skidmore saturday sunday market restrictions on the handling and preparation of ingredients eg curffl et seq restrictions on the storage transport and placement of ingredients rules regarding availability and proximity of waste disposal facilities and toilets eg curffl et seq rules governing conduct and cleanliness of operators rules governing animals and the use of pest control measures provisions imposing additional requirements if deemed necessary by an authorized on site health inspector eg curffl on site inspection toversee compliance with applicable regulations many municipalities hire andeploy health inspector s or provide general guidelines for inspection in order to ensure food booths do not present an unreasonable risk of harm to customersseeg nevada state health division bureau of health protection services temporary food booth self inspection sheet hired inspectors are usually permitted to make unscheduled inspections ofacilities with little or no advance notice to the proprietors the rules regarding the frequency scope and extent of routine on site inspections vary depending on the jurisdiction alsome jurisdictions may establish priorities based on the type ofood served the type of organization involved and other ancillary factorsuch as any prior history of customer complaints carroll county maryland see also fast food cart food truck list ofood trucks funfair kiosk local food street food taco stand take out ice cream van milk float yatai retail references externalinks category fast food category types of restaurants","main_words":["file","fair","thumb","right","food_booth","vendors","cooking","sausages","university","district","street","fair","university","district","seattle_washington","food_booth","also","food","stand","temporary","food_service","facility","generally","temporary","structure","used","prepare","sell","food","general_public","usually","large","groups","people","situated","outdoors","park","parade","near","stadium","otherwise","sometimes","term","also","refers","business","operations","vendors","operate","booths","evidence","suggesthat","certain","foods","originated","gained","popularity","food","confectionery","booth","depicted","one","hundred","c","example","popularity","ice_cream","cone","inorth_america","attributed","louisiana","st_louis","world","fair","according","legend","ice_cream","seller","run","clean","dishes","could","sell","ice_cream","next","door","ice_cream","booth","waffle","booth","unsuccessful","due","intense","waffle","maker","offered","make","rolling","waffles","new_product","sold","well","wasubsequently","copied","vendors","file","thumb","right","food_booth","northwest","seattle","center","file_jpg","thumb","food_booth","beach","netherlands","common_practice","modern","food_booths","toperate","concession_stand","various","kinds","special_events","may","operated","small","independent","vendors","catering","companies","established","restaurant","offering","subset","items","featured","comprehensive","menu","alternatively","food_booths","may","operated","local","nonprofit","organization","means","situations","nonprofit","may","face","slightly","lower","processing","fees","regulations","requirements","making","operations","relatively","chapter","municipal","code","seeg","environmental","health","services","temporary","food","facility","application","santa","county_california","depending","jurisdiction","local","customs","operators","booths","ordinarily","require","temporary","food","sales","permit","government","issued","license","seeg","city","san","special","event","permit","application","typically","operators","also","must","demonstrate","compliance","various","regulations","sanitation","public_health","food","safety","seeg","california","health","safety","code","uniform","retail","food","facilities","law","curffl","excerpt","california","health","safety","code","sanitation","requirements","temporary","food","facilities","california","conference","directors","environmental","health","questions","answers","regarding","health","department","regulation","temporary","food","facilities","file","auf","street_food","festival","jpg","thumb","food_booth","street_food","festival","regulations","include","example","structural","requirements","construction","placement","booths","san_francisco","department","public_health","food","safety","program","requirements","limitations","regarding","hours","number","days","continuous","operation","license","application","food_booth","athe","saturday","sunday","market","restrictions","handling","preparation","ingredients","curffl","restrictions","storage","transport","placement","ingredients","rules","regarding","availability","proximity","waste","disposal","facilities","toilets","curffl","rules","governing","conduct","cleanliness","operators","rules","governing","animals","use","pest","control","measures","provisions","imposing","additional","requirements","deemed","necessary","authorized","site","health","inspector","curffl","site","inspection","compliance","applicable","regulations","many","municipalities","hire","health","inspector","provide","general","guidelines","inspection","order","ensure","food_booths","present","risk","harm","nevada","state","health","division","bureau","health","protection","services","temporary","food_booth","self","inspection","sheet","hired","inspectors","usually","permitted","make","inspections","ofacilities","little","advance","notice","proprietors","rules","regarding","frequency","scope","extent","routine","site","inspections","vary","depending","jurisdiction","alsome","jurisdictions","may","establish","priorities","based","type","ofood","served","type","organization","involved","ancillary","factorsuch","prior","history","customer","complaints","carroll","county","maryland","see_also","fast_food","cart","food_truck","list_ofood_trucks","funfair","kiosk","local_food","street_food","taco_stand","take","ice_cream","van","milk","float","retail","references_externalinks","category_fast_food","category_types","restaurants"],"clean_bigrams":[["thumb","right"],["right","food"],["food","booth"],["booth","vendors"],["vendors","cooking"],["cooking","sausages"],["university","district"],["district","street"],["street","fair"],["fair","university"],["university","district"],["district","seattle"],["seattle","washington"],["food","booth"],["booth","also"],["also","food"],["food","stand"],["stand","temporary"],["temporary","food"],["food","service"],["service","facility"],["temporary","structure"],["structure","used"],["sell","food"],["general","public"],["public","usually"],["large","groups"],["situated","outdoors"],["parade","near"],["otherwise","sometimes"],["term","also"],["also","refers"],["business","operations"],["suggesthat","certain"],["certain","foods"],["confectionery","booth"],["one","hundred"],["ice","cream"],["cream","cone"],["cone","inorth"],["inorth","america"],["st","louis"],["louis","world"],["ice","cream"],["cream","seller"],["clean","dishes"],["ice","cream"],["cream","next"],["next","door"],["ice","cream"],["cream","booth"],["waffle","booth"],["booth","unsuccessful"],["unsuccessful","due"],["waffle","maker"],["maker","offered"],["new","product"],["product","sold"],["sold","well"],["wasubsequently","copied"],["vendors","file"],["thumb","right"],["right","food"],["food","booth"],["seattle","center"],["center","file"],["jpg","thumb"],["thumb","food"],["food","booth"],["common","practice"],["modern","food"],["food","booths"],["booths","toperate"],["concession","stand"],["various","kinds"],["special","events"],["small","independent"],["independent","vendors"],["vendors","catering"],["catering","companies"],["established","restaurant"],["items","featured"],["comprehensive","menu"],["menu","alternatively"],["food","booths"],["booths","may"],["local","nonprofit"],["nonprofit","organization"],["situations","nonprofit"],["may","face"],["face","slightly"],["slightly","lower"],["lower","processing"],["processing","fees"],["requirements","making"],["operations","relatively"],["municipal","code"],["code","seeg"],["seeg","environmental"],["environmental","health"],["health","services"],["services","temporary"],["temporary","food"],["food","facility"],["facility","application"],["application","santa"],["county","california"],["california","depending"],["local","customs"],["customs","operators"],["booths","ordinarily"],["ordinarily","require"],["temporary","food"],["food","sales"],["sales","permit"],["government","issued"],["issued","license"],["license","seeg"],["seeg","city"],["special","event"],["event","permit"],["permit","application"],["application","typically"],["typically","operators"],["operators","also"],["also","must"],["must","demonstrate"],["demonstrate","compliance"],["various","regulations"],["sanitation","public"],["public","health"],["health","food"],["food","safety"],["safety","seeg"],["seeg","california"],["california","health"],["safety","code"],["uniform","retail"],["retail","food"],["food","facilities"],["facilities","law"],["law","curffl"],["california","health"],["safety","code"],["code","sanitation"],["sanitation","requirements"],["temporary","food"],["food","facilities"],["california","conference"],["environmental","health"],["answers","regarding"],["regarding","health"],["health","department"],["department","regulation"],["temporary","food"],["food","facilities"],["facilities","file"],["auf","street"],["street","food"],["food","festival"],["festival","jpg"],["jpg","thumb"],["thumb","food"],["food","booth"],["street","food"],["food","festival"],["regulations","include"],["example","structural"],["structural","requirements"],["san","francisco"],["francisco","department"],["public","health"],["health","food"],["food","safety"],["safety","program"],["program","requirements"],["limitations","regarding"],["continuous","operation"],["license","application"],["food","booth"],["booth","athe"],["saturday","sunday"],["sunday","market"],["market","restrictions"],["storage","transport"],["ingredients","rules"],["rules","regarding"],["regarding","availability"],["waste","disposal"],["disposal","facilities"],["rules","governing"],["governing","conduct"],["operators","rules"],["rules","governing"],["governing","animals"],["pest","control"],["control","measures"],["measures","provisions"],["provisions","imposing"],["imposing","additional"],["additional","requirements"],["deemed","necessary"],["site","health"],["health","inspector"],["site","inspection"],["applicable","regulations"],["regulations","many"],["many","municipalities"],["municipalities","hire"],["health","inspector"],["provide","general"],["general","guidelines"],["ensure","food"],["food","booths"],["nevada","state"],["state","health"],["health","division"],["division","bureau"],["health","protection"],["protection","services"],["services","temporary"],["temporary","food"],["food","booth"],["booth","self"],["self","inspection"],["inspection","sheet"],["sheet","hired"],["hired","inspectors"],["usually","permitted"],["inspections","ofacilities"],["advance","notice"],["rules","regarding"],["frequency","scope"],["site","inspections"],["inspections","vary"],["vary","depending"],["jurisdiction","alsome"],["alsome","jurisdictions"],["jurisdictions","may"],["may","establish"],["establish","priorities"],["priorities","based"],["type","ofood"],["ofood","served"],["organization","involved"],["ancillary","factorsuch"],["prior","history"],["customer","complaints"],["complaints","carroll"],["carroll","county"],["county","maryland"],["maryland","see"],["see","also"],["also","fast"],["fast","food"],["food","cart"],["cart","food"],["food","truck"],["truck","list"],["list","ofood"],["ofood","trucks"],["trucks","funfair"],["funfair","kiosk"],["kiosk","local"],["local","food"],["food","street"],["street","food"],["food","taco"],["taco","stand"],["stand","take"],["ice","cream"],["cream","van"],["van","milk"],["milk","float"],["retail","references"],["references","externalinks"],["externalinks","category"],["category","fast"],["fast","food"],["food","category"],["category","types"]],"all_collocations":["right food","food booth","booth vendors","vendors cooking","cooking sausages","university district","district street","street fair","fair university","university district","district seattle","seattle washington","food booth","booth also","also food","food stand","stand temporary","temporary food","food service","service facility","temporary structure","structure used","sell food","general public","public usually","large groups","situated outdoors","parade near","otherwise sometimes","term also","also refers","business operations","suggesthat certain","certain foods","confectionery booth","one hundred","ice cream","cream cone","cone inorth","inorth america","st louis","louis world","ice cream","cream seller","clean dishes","ice cream","cream next","next door","ice cream","cream booth","waffle booth","booth unsuccessful","unsuccessful due","waffle maker","maker offered","new product","product sold","sold well","wasubsequently copied","vendors file","right food","food booth","seattle center","center file","thumb food","food booth","common practice","modern food","food booths","booths toperate","concession stand","various kinds","special events","small independent","independent vendors","vendors catering","catering companies","established restaurant","items featured","comprehensive menu","menu alternatively","food booths","booths may","local nonprofit","nonprofit organization","situations nonprofit","may face","face slightly","slightly lower","lower processing","processing fees","requirements making","operations relatively","municipal code","code seeg","seeg environmental","environmental health","health services","services temporary","temporary food","food facility","facility application","application santa","county california","california depending","local customs","customs operators","booths ordinarily","ordinarily require","temporary food","food sales","sales permit","government issued","issued license","license seeg","seeg city","special event","event permit","permit application","application typically","typically operators","operators also","also must","must demonstrate","demonstrate compliance","various regulations","sanitation public","public health","health food","food safety","safety seeg","seeg california","california health","safety code","uniform retail","retail food","food facilities","facilities law","law curffl","california health","safety code","code sanitation","sanitation requirements","temporary food","food facilities","california conference","environmental health","answers regarding","regarding health","health department","department regulation","temporary food","food facilities","facilities file","auf street","street food","food festival","festival jpg","thumb food","food booth","street food","food festival","regulations include","example structural","structural requirements","san francisco","francisco department","public health","health food","food safety","safety program","program requirements","limitations regarding","continuous operation","license application","food booth","booth athe","saturday sunday","sunday market","market restrictions","storage transport","ingredients rules","rules regarding","regarding availability","waste disposal","disposal facilities","rules governing","governing conduct","operators rules","rules governing","governing animals","pest control","control measures","measures provisions","provisions imposing","imposing additional","additional requirements","deemed necessary","site health","health inspector","site inspection","applicable regulations","regulations many","many municipalities","municipalities hire","health inspector","provide general","general guidelines","ensure food","food booths","nevada state","state health","health division","division bureau","health protection","protection services","services temporary","temporary food","food booth","booth self","self inspection","inspection sheet","sheet hired","hired inspectors","usually permitted","inspections ofacilities","advance notice","rules regarding","frequency scope","site inspections","inspections vary","vary depending","jurisdiction alsome","alsome jurisdictions","jurisdictions may","may establish","establish priorities","priorities based","type ofood","ofood served","organization involved","ancillary factorsuch","prior history","customer complaints","complaints carroll","carroll county","county maryland","maryland see","see also","also fast","fast food","food cart","cart food","food truck","truck list","list ofood","ofood trucks","trucks funfair","funfair kiosk","kiosk local","local food","food street","street food","food taco","taco stand","stand take","ice cream","cream van","van milk","milk float","retail references","references externalinks","externalinks category","category fast","fast food","food category","category types"],"new_description":"file fair thumb right food_booth vendors cooking sausages university district street fair university district seattle_washington food_booth also food stand temporary food_service facility generally temporary structure used prepare sell food general_public usually large groups people situated outdoors park parade near stadium otherwise sometimes term also refers business operations vendors operate booths evidence suggesthat certain foods originated gained popularity food confectionery booth depicted one hundred c example popularity ice_cream cone inorth_america attributed louisiana st_louis world fair according legend ice_cream seller run clean dishes could sell ice_cream next door ice_cream booth waffle booth unsuccessful due intense waffle maker offered make rolling waffles new_product sold well wasubsequently copied vendors file thumb right food_booth northwest seattle center file_jpg thumb food_booth beach netherlands common_practice modern food_booths toperate concession_stand various kinds special_events may operated small independent vendors catering companies established restaurant offering subset items featured comprehensive menu alternatively food_booths may operated local nonprofit organization means situations nonprofit may face slightly lower processing fees regulations requirements making operations relatively chapter municipal code seeg environmental health services temporary food facility application santa county_california depending jurisdiction local customs operators booths ordinarily require temporary food sales permit government issued license seeg city san special event permit application typically operators also must demonstrate compliance various regulations sanitation public_health food safety seeg california health safety code uniform retail food facilities law curffl excerpt california health safety code sanitation requirements temporary food facilities california conference directors environmental health questions answers regarding health department regulation temporary food facilities file auf street_food festival jpg thumb food_booth street_food festival regulations include example structural requirements construction placement booths san_francisco department public_health food safety program requirements limitations regarding hours number days continuous operation license application food_booth athe saturday sunday market restrictions handling preparation ingredients curffl restrictions storage transport placement ingredients rules regarding availability proximity waste disposal facilities toilets curffl rules governing conduct cleanliness operators rules governing animals use pest control measures provisions imposing additional requirements deemed necessary authorized site health inspector curffl site inspection compliance applicable regulations many municipalities hire health inspector provide general guidelines inspection order ensure food_booths present risk harm nevada state health division bureau health protection services temporary food_booth self inspection sheet hired inspectors usually permitted make inspections ofacilities little advance notice proprietors rules regarding frequency scope extent routine site inspections vary depending jurisdiction alsome jurisdictions may establish priorities based type ofood served type organization involved ancillary factorsuch prior history customer complaints carroll county maryland see_also fast_food cart food_truck list_ofood_trucks funfair kiosk local_food street_food taco_stand take ice_cream van milk float retail references_externalinks category_fast_food category_types restaurants"},{"title":"Food cart","description":"file kakilima street vendors in jakartajpg thumb px right wooden traditional food carts lining jakarta street selling various indonesian cuisine indonesian street foods file nyc hotdog cartjpg thumb upright sabrett hot dog cart inew york city run by a hawker trade street vendor a food cart is a mobile catering mobile kitchen that iset up on the streeto facilitate the sale and marketing of street food to people from the local pedestrian traffic food carts are often found in large cities throughouthe world and can be found selling food of just about any varieties food carts come in two basic styles one allows the vendor to sit or stand inside and serve food through a window another uses all of the room inside the cart for storage and to house the cooking machinery usually some type of grilling surface the cart style is determined principally by the type ofood served athe cart food carts are different from food truck s because they do notravel under their own power some food carts are towed by another vehicle while some alternatively are pushed by a human or animal the us city of portland oregon is renowned as the home of many food cart pods these groups ofood carts can have a few options or span entire city blocksome of the most popular food cart pods offer a great selection of craft beer file vnr employee sells cornjpg thumb upright vietnam railways employee sells corn from a carthe first food carts probably came into being athe time of thearly greek and roman civilizations with traders converting old hand cart s and smaller animal drawn carts into mobile trading units carts have the distinct advantage of being able to be moved should a locationot be productive in sales as well as transportingoods to from storage to the place chosen from which to trade however the use of carts exploded withe coming of the railway s firstly highly mobile customers required food andrink to keep them warm within thearly open carriagesecondly locomotives needed to stop regularly to take on coal and water and hence allow their passengers use the toilets eat andrink thirdly few early trains had any form of buffet car buffet or dining car finally when passengers did arrive atheir destination or at a point when they needed to switch trains or modes of transport some refreshment was required particularly for poorer passengers who could not afford to stay in the railway owned hotels this expansion lead to a mutually successful relationship with some of the first concession stand s and laws developing fromobile traders operating from restricted railway property this form of concession based operation can be seen still in many countries but at its most original in the under developed stations and infrastructure of africand southeast asia the railways also brought another benefit a plentiful supply of new suitably sized carts often traders requiring new carts would simply buy old railway station luggage cart s and adapthem to serving food knowing thathese were sized scaled to fit in between the necessary doors and lifts today the size and scale of carts has generally increased and most are towed behind x vehicles but hand towed food carts are still a common site where access is restricted and hungry people can be found modern food carts in the st century innovations have included modular designed carts made with stainlessteel fibereinforced plastic and aluminum some have been developed withe ability to be driven by themselvesome food carts are associated with restaurants most of the food served from the cart is the same as the food in the restaurant portland s food carts file two portland oregon food cartsjpg thumb food from two portland carts whiffies fried pie left plus belgian style fries and poutine from potato champion right in the united states the city of portland oregon has experienced a boom in the number ofood carts trailers and stands a report in the oregonian stated portland was home to carts with fierce competition for the four cart spaces available since in the south park blocks a bidding war in february led for a combined price ofor the spaces there was also a large cluster often referred to as a food cart pod at fifth and stark street and one food cart had been running since in it was estimated thathere are between and carts citywide about cartattackorg cartopia is another food cart pod located on the corner of se th avenue and hawthorne portland oregon hawthorne boulevard in southeast portland one of these portland food carts includes the grilled cheese grill see also food booth kiosk list ofood trucks list of street foods mobile catering taco stand references externalinks inside the underground economy propping up new york city s food carts by jeff koyen crain s new york business june category fast food category types of restaurants category street culture category food trucks cart","main_words":["file","street_vendors","thumb","px","right","wooden","traditional","food_carts","lining","jakarta","street","selling","various","indonesian","cuisine","indonesian","street_foods","file","nyc","thumb","upright","hot_dog","cart","inew_york_city","run","hawker","trade","street_vendor","food_cart","mobile_catering","mobile","kitchen","iset","streeto","facilitate","sale","marketing","street_food","people","local","pedestrian","traffic","food_carts","often","found","large_cities","throughouthe_world","found","selling","food","varieties","food_carts","come","two","basic","styles","one","allows","vendor","sit","stand","inside","serve_food","window","another","uses","room","inside","cart","storage","house","cooking","machinery","usually","type","surface","cart","style","determined","principally","type","ofood","served","athe","cart","food_carts","different","food_truck","power","food_carts","towed","another","vehicle","alternatively","pushed","human","animal","us","city","portland_oregon","renowned","home","many","food_cart","pods","groups","ofood","carts","options","span","entire","city","popular","food_cart","pods","offer","great","selection","craft","beer","file","employee","sells","thumb","upright","vietnam","railways","employee","sells","corn","first","food_carts","probably","came","athe_time","thearly","greek","roman","civilizations","traders","converting","old","hand","cart","smaller","animal","drawn","carts","mobile","trading","units","carts","distinct","advantage","able","moved","productive","sales","well","storage","place","chosen","trade","however","use","carts","exploded","withe","coming","railway","firstly","highly","mobile","customers","required","food_andrink","keep","warm","within","thearly","open","locomotives","needed","stop","regularly","take","coal","water","hence","allow","passengers","use","toilets","eat","andrink","early","trains","form","buffet","car","buffet","dining_car","finally","passengers","arrive","atheir","destination","point","needed","switch","trains","modes","transport","refreshment","required","particularly","poorer","passengers","could","afford","stay","railway","owned","hotels","expansion","lead","successful","relationship","first","concession_stand","laws","developing","traders","operating","restricted","railway","property","form","concession","based","operation","seen","still","many_countries","original","developed","stations","infrastructure","africand","southeast_asia","railways","also","brought","another","benefit","plentiful","supply","new","sized","carts","often","traders","requiring","new","carts","would","simply","buy","old","railway_station","luggage","cart","serving","food","knowing","thathese","sized","scaled","fit","necessary","doors","today","size","scale","carts","generally","increased","towed","behind","x","vehicles","hand","towed","food_carts","still","common","site","access","restricted","hungry","people","found","modern","food_carts","st_century","innovations","included","modular","designed","carts","made","stainlessteel","plastic","aluminum","developed","withe","ability","driven","food_carts","associated","restaurants","food_served","cart","food_restaurant","portland","food_carts","file","two","portland_oregon","food","thumb","food","two","portland","carts","fried","pie","left","plus","belgian","style","fries","potato","champion","right","united_states","city","portland_oregon","experienced","boom","number","ofood","carts","trailers","stands","report","stated","portland","home","carts","fierce","competition","four","cart","spaces","available","since","south","park","blocks","bidding","war","february","led","combined","price","ofor","spaces","also","large","often_referred","food_cart","pod","fifth","street","one","food_cart","running","since","estimated","thathere","carts","another","food_cart","pod","located","corner","th","avenue","hawthorne","portland_oregon","hawthorne","boulevard","southeast","portland","one","portland","food_carts","includes","grilled_cheese","grill","see_also","food_booth","kiosk","list_ofood_trucks","list","street_foods","mobile_catering","taco_stand","references_externalinks","inside","underground","economy","new_york","city","food_carts","jeff","crain","new_york","business","june_category","fast_food","category_types","restaurants_category","street","culture_category","food_trucks","cart"],"clean_bigrams":[["street","vendors"],["thumb","px"],["px","right"],["right","wooden"],["wooden","traditional"],["traditional","food"],["food","carts"],["carts","lining"],["lining","jakarta"],["jakarta","street"],["street","selling"],["selling","various"],["various","indonesian"],["indonesian","cuisine"],["cuisine","indonesian"],["indonesian","street"],["street","foods"],["foods","file"],["file","nyc"],["thumb","upright"],["hot","dog"],["dog","cart"],["cart","inew"],["inew","york"],["york","city"],["city","run"],["hawker","trade"],["trade","street"],["street","vendor"],["food","cart"],["mobile","catering"],["catering","mobile"],["mobile","kitchen"],["streeto","facilitate"],["street","food"],["local","pedestrian"],["pedestrian","traffic"],["traffic","food"],["food","carts"],["carts","often"],["often","found"],["large","cities"],["cities","throughouthe"],["throughouthe","world"],["found","selling"],["selling","food"],["varieties","food"],["food","carts"],["carts","come"],["two","basic"],["basic","styles"],["styles","one"],["one","allows"],["stand","inside"],["serve","food"],["window","another"],["another","uses"],["room","inside"],["cooking","machinery"],["machinery","usually"],["cart","style"],["determined","principally"],["type","ofood"],["ofood","served"],["served","athe"],["athe","cart"],["cart","food"],["food","carts"],["food","truck"],["food","carts"],["another","vehicle"],["us","city"],["portland","oregon"],["many","food"],["food","cart"],["cart","pods"],["groups","ofood"],["ofood","carts"],["span","entire"],["entire","city"],["popular","food"],["food","cart"],["cart","pods"],["pods","offer"],["great","selection"],["craft","beer"],["beer","file"],["employee","sells"],["thumb","upright"],["upright","vietnam"],["vietnam","railways"],["railways","employee"],["employee","sells"],["sells","corn"],["first","food"],["food","carts"],["carts","probably"],["probably","came"],["athe","time"],["thearly","greek"],["roman","civilizations"],["traders","converting"],["converting","old"],["old","hand"],["hand","cart"],["smaller","animal"],["animal","drawn"],["drawn","carts"],["mobile","trading"],["trading","units"],["units","carts"],["distinct","advantage"],["place","chosen"],["trade","however"],["carts","exploded"],["exploded","withe"],["withe","coming"],["firstly","highly"],["highly","mobile"],["mobile","customers"],["customers","required"],["required","food"],["food","andrink"],["warm","within"],["within","thearly"],["thearly","open"],["locomotives","needed"],["stop","regularly"],["hence","allow"],["passengers","use"],["toilets","eat"],["eat","andrink"],["early","trains"],["buffet","car"],["car","buffet"],["dining","car"],["car","finally"],["arrive","atheir"],["atheir","destination"],["switch","trains"],["required","particularly"],["poorer","passengers"],["railway","owned"],["owned","hotels"],["expansion","lead"],["successful","relationship"],["first","concession"],["concession","stand"],["laws","developing"],["traders","operating"],["restricted","railway"],["railway","property"],["concession","based"],["based","operation"],["seen","still"],["many","countries"],["developed","stations"],["africand","southeast"],["southeast","asia"],["railways","also"],["also","brought"],["brought","another"],["another","benefit"],["plentiful","supply"],["sized","carts"],["carts","often"],["often","traders"],["traders","requiring"],["requiring","new"],["new","carts"],["carts","would"],["would","simply"],["simply","buy"],["buy","old"],["old","railway"],["railway","station"],["station","luggage"],["luggage","cart"],["serving","food"],["food","knowing"],["knowing","thathese"],["sized","scaled"],["necessary","doors"],["generally","increased"],["towed","behind"],["behind","x"],["x","vehicles"],["hand","towed"],["towed","food"],["food","carts"],["common","site"],["hungry","people"],["found","modern"],["modern","food"],["food","carts"],["st","century"],["century","innovations"],["included","modular"],["modular","designed"],["designed","carts"],["carts","made"],["developed","withe"],["withe","ability"],["food","carts"],["food","served"],["cart","food"],["restaurant","portland"],["portland","food"],["food","carts"],["carts","file"],["file","two"],["two","portland"],["portland","oregon"],["oregon","food"],["thumb","food"],["two","portland"],["portland","carts"],["fried","pie"],["pie","left"],["left","plus"],["plus","belgian"],["belgian","style"],["style","fries"],["potato","champion"],["champion","right"],["united","states"],["portland","oregon"],["number","ofood"],["ofood","carts"],["carts","trailers"],["stated","portland"],["fierce","competition"],["four","cart"],["cart","spaces"],["spaces","available"],["available","since"],["south","park"],["park","blocks"],["bidding","war"],["february","led"],["combined","price"],["price","ofor"],["often","referred"],["food","cart"],["cart","pod"],["one","food"],["food","cart"],["running","since"],["estimated","thathere"],["another","food"],["food","cart"],["cart","pod"],["pod","located"],["th","avenue"],["hawthorne","portland"],["portland","oregon"],["oregon","hawthorne"],["hawthorne","boulevard"],["southeast","portland"],["portland","one"],["portland","food"],["food","carts"],["carts","includes"],["grilled","cheese"],["cheese","grill"],["grill","see"],["see","also"],["also","food"],["food","booth"],["booth","kiosk"],["kiosk","list"],["list","ofood"],["ofood","trucks"],["trucks","list"],["street","foods"],["foods","mobile"],["mobile","catering"],["catering","taco"],["taco","stand"],["stand","references"],["references","externalinks"],["externalinks","inside"],["underground","economy"],["new","york"],["york","city"],["food","carts"],["new","york"],["york","business"],["business","june"],["june","category"],["category","fast"],["fast","food"],["food","category"],["category","types"],["restaurants","category"],["category","street"],["street","culture"],["culture","category"],["category","food"],["food","trucks"],["trucks","cart"]],"all_collocations":["street vendors","right wooden","wooden traditional","traditional food","food carts","carts lining","lining jakarta","jakarta street","street selling","selling various","various indonesian","indonesian cuisine","cuisine indonesian","indonesian street","street foods","foods file","file nyc","hot dog","dog cart","cart inew","inew york","york city","city run","hawker trade","trade street","street vendor","food cart","mobile catering","catering mobile","mobile kitchen","streeto facilitate","street food","local pedestrian","pedestrian traffic","traffic food","food carts","carts often","often found","large cities","cities throughouthe","throughouthe world","found selling","selling food","varieties food","food carts","carts come","two basic","basic styles","styles one","one allows","stand inside","serve food","window another","another uses","room inside","cooking machinery","machinery usually","cart style","determined principally","type ofood","ofood served","served athe","athe cart","cart food","food carts","food truck","food carts","another vehicle","us city","portland oregon","many food","food cart","cart pods","groups ofood","ofood carts","span entire","entire city","popular food","food cart","cart pods","pods offer","great selection","craft beer","beer file","employee sells","upright vietnam","vietnam railways","railways employee","employee sells","sells corn","first food","food carts","carts probably","probably came","athe time","thearly greek","roman civilizations","traders converting","converting old","old hand","hand cart","smaller animal","animal drawn","drawn carts","mobile trading","trading units","units carts","distinct advantage","place chosen","trade however","carts exploded","exploded withe","withe coming","firstly highly","highly mobile","mobile customers","customers required","required food","food andrink","warm within","within thearly","thearly open","locomotives needed","stop regularly","hence allow","passengers use","toilets eat","eat andrink","early trains","buffet car","car buffet","dining car","car finally","arrive atheir","atheir destination","switch trains","required particularly","poorer passengers","railway owned","owned hotels","expansion lead","successful relationship","first concession","concession stand","laws developing","traders operating","restricted railway","railway property","concession based","based operation","seen still","many countries","developed stations","africand southeast","southeast asia","railways also","also brought","brought another","another benefit","plentiful supply","sized carts","carts often","often traders","traders requiring","requiring new","new carts","carts would","would simply","simply buy","buy old","old railway","railway station","station luggage","luggage cart","serving food","food knowing","knowing thathese","sized scaled","necessary doors","generally increased","towed behind","behind x","x vehicles","hand towed","towed food","food carts","common site","hungry people","found modern","modern food","food carts","st century","century innovations","included modular","modular designed","designed carts","carts made","developed withe","withe ability","food carts","food served","cart food","restaurant portland","portland food","food carts","carts file","file two","two portland","portland oregon","oregon food","thumb food","two portland","portland carts","fried pie","pie left","left plus","plus belgian","belgian style","style fries","potato champion","champion right","united states","portland oregon","number ofood","ofood carts","carts trailers","stated portland","fierce competition","four cart","cart spaces","spaces available","available since","south park","park blocks","bidding war","february led","combined price","price ofor","often referred","food cart","cart pod","one food","food cart","running since","estimated thathere","another food","food cart","cart pod","pod located","th avenue","hawthorne portland","portland oregon","oregon hawthorne","hawthorne boulevard","southeast portland","portland one","portland food","food carts","carts includes","grilled cheese","cheese grill","grill see","see also","also food","food booth","booth kiosk","kiosk list","list ofood","ofood trucks","trucks list","street foods","foods mobile","mobile catering","catering taco","taco stand","stand references","references externalinks","externalinks inside","underground economy","new york","york city","food carts","new york","york business","business june","june category","category fast","fast food","food category","category types","restaurants category","category street","street culture","culture category","category food","food trucks","trucks cart"],"new_description":"file street_vendors thumb px right wooden traditional food_carts lining jakarta street selling various indonesian cuisine indonesian street_foods file nyc thumb upright hot_dog cart inew_york_city run hawker trade street_vendor food_cart mobile_catering mobile kitchen iset streeto facilitate sale marketing street_food people local pedestrian traffic food_carts often found large_cities throughouthe_world found selling food varieties food_carts come two basic styles one allows vendor sit stand inside serve_food window another uses room inside cart storage house cooking machinery usually type surface cart style determined principally type ofood served athe cart food_carts different food_truck power food_carts towed another vehicle alternatively pushed human animal us city portland_oregon renowned home many food_cart pods groups ofood carts options span entire city popular food_cart pods offer great selection craft beer file employee sells thumb upright vietnam railways employee sells corn first food_carts probably came athe_time thearly greek roman civilizations traders converting old hand cart smaller animal drawn carts mobile trading units carts distinct advantage able moved productive sales well storage place chosen trade however use carts exploded withe coming railway firstly highly mobile customers required food_andrink keep warm within thearly open locomotives needed stop regularly take coal water hence allow passengers use toilets eat andrink early trains form buffet car buffet dining_car finally passengers arrive atheir destination point needed switch trains modes transport refreshment required particularly poorer passengers could afford stay railway owned hotels expansion lead successful relationship first concession_stand laws developing traders operating restricted railway property form concession based operation seen still many_countries original developed stations infrastructure africand southeast_asia railways also brought another benefit plentiful supply new sized carts often traders requiring new carts would simply buy old railway_station luggage cart serving food knowing thathese sized scaled fit necessary doors today size scale carts generally increased towed behind x vehicles hand towed food_carts still common site access restricted hungry people found modern food_carts st_century innovations included modular designed carts made stainlessteel plastic aluminum developed withe ability driven food_carts associated restaurants food_served cart food_restaurant portland food_carts file two portland_oregon food thumb food two portland carts fried pie left plus belgian style fries potato champion right united_states city portland_oregon experienced boom number ofood carts trailers stands report stated portland home carts fierce competition four cart spaces available since south park blocks bidding war february led combined price ofor spaces also large often_referred food_cart pod fifth street one food_cart running since estimated thathere carts another food_cart pod located corner th avenue hawthorne portland_oregon hawthorne boulevard southeast portland one portland food_carts includes grilled_cheese grill see_also food_booth kiosk list_ofood_trucks list street_foods mobile_catering taco_stand references_externalinks inside underground economy new_york city food_carts jeff crain new_york business june_category fast_food category_types restaurants_category street culture_category food_trucks cart"},{"title":"Food court","description":"file food court edo japan la belle province bashajpg thumb px rightypical shopping center food court vendor layout at centreaton in montreal quebecanada file la feria del ccct chuao caracasjpg thumb px right patrons eat meals in a food court in caracas venezuela food court in asia pacific also called food hall or hawker centre is generally an indoor plaza or common area within a facility that is contiguous withe counters of multiple food vendors and provides a common area for self serve dinnerfood court nd the american heritage dictionary of thenglish language fourth edition retrieved may from answerscom web site food courts may be found in shopping mall s airport s and park s in various regionsuch asia the americas and africa it may be a standalone development in some places of learning such as high schools and universities food courts have also come to replace or complementraditional cafeteria sgeorge beachigh school food courts a new evolution in student dining school planning and management v n p august amy milshtein bye cafeteria hello restaurant style dining college planning and management november stamford university food courthe average cost of a meal person in an american food court in was typical usage file pirate champs cafe jpg righthumb px champ s cafe a food court at port charlotte high school file the food court at newark liberty airport june jpg thumb px righthe food court at newark liberty airport inewark new jersey aseen in food courts consist of a number of vendors at food stalls or service counters meals are ordered at one of the vendors and then carried to a common dining area the food may also be ordered as takeout for consumption at another location such as a home or workplace in this case it may be packaged in foam food container s though one common food tray used by all the stalls might also be utilitzed to allow the food to be carried to the table food courts may also have shops which sell prepared meals for consumers to take home and reheat making the food court a daily stop for some food is usually eaten with plasticutlery and spork s are sometimes used to avoid the necessity of providing both fork s and spoon s there arexceptions carrefour laval requires its food courtenants to use dinnerware solidinnerware and cutlery which it provides carrefour laval reinvents the shopping center food experience with its new dining terrace november typical north americand europe an food courts have mostly fast food chainsuch as mcdonald s and sbarro with perhaps a few smaller private vendors berkshire hathaway is also a frequent presence at food courts via their dairy queen and orange julius divisions cuisines and choices are varied with larger food courts offering more global choices asiand african food courts are mostly private vendors that offer local cuisine in singapore food courts and hawker centre s are the people s main eating choice when dining out food leisureating in singapore famousingapore food common materials used in constructing food courts are tile linoleum formica plastic formica stainlessteel and glass all of which facilitateasy cleanup the second floor food court athe paramus park shopping mall in paramus new jersey which opened in marchas been credited as the first successful shopping mall food court in america however the food court at sherway gardenshopping center in toronto canada was constructed three years earlier built by the rouse company one of the leading mall building companies of the time it followed an unsuccessful attempt athe plymouth meeting mall in which reportedly failed because it was deemed too small and insufficiently varied bloom nicholas dagen public life as consumerism american businessmen revolutionize suburban commerce in from department store to shopping mall see also food hall cafeteria hawker centrexternalinks category shopping malls category types of restaurants","main_words":["file","food_court","japan","la","belle","province","thumb","px","shopping_center","food_court","vendor","layout","montreal","file","la","del","thumb","px","right","patrons","eat","meals","food_court","venezuela","food_court","asia_pacific","also_called","food","hall","hawker_centre","generally","indoor","plaza","common","area","within","facility","contiguous","withe","counters","multiple","food_vendors","provides","common","area","self","serve","court","american","heritage","dictionary","thenglish_language","fourth_edition","retrieved_may","web_site","food_courts","may","found","shopping_mall","airport","park","various","regionsuch","asia","americas","africa","may","development","places","learning","high_schools","universities","food_courts","also","come","replace","cafeteria","school","food_courts","new","evolution","student","dining","school","planning","management","v","n","p","august","amy","cafeteria","restaurant","style","dining","college","planning","management","november","university","average","cost","meal","person","american","food_court","typical","usage","file","pirate","cafe","jpg_righthumb","px","cafe","food_court","port","charlotte","high_school","file","food_court","newark","liberty","airport","june","jpg","thumb","px","righthe","food_court","newark","liberty","airport","new_jersey","aseen","food_courts","consist","number","vendors","food","stalls","service","counters","meals","ordered","one","vendors","carried","common","dining","area","food","may_also","ordered","takeout","consumption","another","location","home","workplace","case","may","packaged","foam","food","container","though","one","common","food","tray","used","stalls","might","also","allow","food","carried","table","food_courts","may_also","shops","sell","prepared","meals","consumers","take","home","making","food_court","daily","stop","food","usually","eaten","sometimes","used","avoid","necessity","providing","fork","spoon","requires","food","use","cutlery","provides","shopping_center","food","experience","new","dining","terrace","november","typical","north_americand","europe","food_courts","mostly","fast_food","chainsuch","mcdonald","perhaps","smaller","private","vendors","berkshire","also","frequent","presence","food_courts","via","dairy","queen","orange","julius","divisions","cuisines","choices","varied","larger","food_courts","offering","global","choices","asiand","african","food_courts","mostly","private","vendors","offer","local","cuisine","singapore","food_courts","hawker_centre","people","main","eating","choice","dining","food","singapore","food","common","materials","used","constructing","food_courts","tile","formica","plastic","formica","stainlessteel","glass","cleanup","second","floor","food_court","athe","park","shopping_mall","new_jersey","opened","credited","first","successful","shopping_mall","food_court","america","however","food_court","center","toronto","canada","constructed","three_years","earlier","built","company","one","leading","mall","building","companies","time","followed","unsuccessful","attempt","athe","meeting","mall","reportedly","failed","deemed","small","varied","bloom","nicholas","public","life","consumerism","american","businessmen","suburban","commerce","department","store","shopping_mall","see_also","food","hall","cafeteria","hawker","category","shopping_malls","category_types","restaurants"],"clean_bigrams":[["file","food"],["food","court"],["japan","la"],["la","belle"],["belle","province"],["thumb","px"],["shopping","center"],["center","food"],["food","court"],["court","vendor"],["vendor","layout"],["file","la"],["thumb","px"],["px","right"],["right","patrons"],["patrons","eat"],["eat","meals"],["food","court"],["venezuela","food"],["food","court"],["asia","pacific"],["pacific","also"],["also","called"],["called","food"],["food","hall"],["hawker","centre"],["indoor","plaza"],["common","area"],["area","within"],["contiguous","withe"],["withe","counters"],["multiple","food"],["food","vendors"],["common","area"],["self","serve"],["american","heritage"],["heritage","dictionary"],["thenglish","language"],["language","fourth"],["fourth","edition"],["edition","retrieved"],["retrieved","may"],["web","site"],["site","food"],["food","courts"],["courts","may"],["shopping","mall"],["various","regionsuch"],["regionsuch","asia"],["high","schools"],["universities","food"],["food","courts"],["also","come"],["school","food"],["food","courts"],["new","evolution"],["student","dining"],["dining","school"],["school","planning"],["management","v"],["v","n"],["n","p"],["p","august"],["august","amy"],["restaurant","style"],["style","dining"],["dining","college"],["college","planning"],["management","november"],["university","food"],["food","courthe"],["courthe","average"],["average","cost"],["meal","person"],["american","food"],["food","court"],["typical","usage"],["usage","file"],["file","pirate"],["cafe","jpg"],["jpg","righthumb"],["righthumb","px"],["food","court"],["port","charlotte"],["charlotte","high"],["high","school"],["school","file"],["file","food"],["food","court"],["newark","liberty"],["liberty","airport"],["airport","june"],["june","jpg"],["jpg","thumb"],["thumb","px"],["px","righthe"],["righthe","food"],["food","court"],["newark","liberty"],["liberty","airport"],["new","jersey"],["jersey","aseen"],["food","courts"],["courts","consist"],["food","stalls"],["service","counters"],["counters","meals"],["common","dining"],["dining","area"],["food","may"],["may","also"],["another","location"],["foam","food"],["food","container"],["though","one"],["one","common"],["common","food"],["food","tray"],["tray","used"],["stalls","might"],["might","also"],["table","food"],["food","courts"],["courts","may"],["may","also"],["sell","prepared"],["prepared","meals"],["take","home"],["food","court"],["daily","stop"],["usually","eaten"],["sometimes","used"],["shopping","center"],["center","food"],["food","experience"],["new","dining"],["dining","terrace"],["terrace","november"],["november","typical"],["typical","north"],["north","americand"],["americand","europe"],["food","courts"],["mostly","fast"],["fast","food"],["food","chainsuch"],["smaller","private"],["private","vendors"],["vendors","berkshire"],["frequent","presence"],["food","courts"],["courts","via"],["dairy","queen"],["orange","julius"],["julius","divisions"],["divisions","cuisines"],["larger","food"],["food","courts"],["courts","offering"],["global","choices"],["choices","asiand"],["asiand","african"],["african","food"],["food","courts"],["mostly","private"],["private","vendors"],["offer","local"],["local","cuisine"],["singapore","food"],["food","courts"],["hawker","centre"],["main","eating"],["eating","choice"],["singapore","food"],["food","common"],["common","materials"],["materials","used"],["constructing","food"],["food","courts"],["formica","plastic"],["plastic","formica"],["formica","stainlessteel"],["second","floor"],["floor","food"],["food","court"],["court","athe"],["park","shopping"],["shopping","mall"],["new","jersey"],["first","successful"],["successful","shopping"],["shopping","mall"],["mall","food"],["food","court"],["america","however"],["food","court"],["toronto","canada"],["constructed","three"],["three","years"],["years","earlier"],["earlier","built"],["company","one"],["leading","mall"],["mall","building"],["building","companies"],["unsuccessful","attempt"],["attempt","athe"],["meeting","mall"],["reportedly","failed"],["varied","bloom"],["bloom","nicholas"],["public","life"],["consumerism","american"],["american","businessmen"],["suburban","commerce"],["department","store"],["shopping","mall"],["mall","see"],["see","also"],["also","food"],["food","hall"],["hall","cafeteria"],["cafeteria","hawker"],["category","shopping"],["shopping","malls"],["malls","category"],["category","types"]],"all_collocations":["file food","food court","japan la","la belle","belle province","shopping center","center food","food court","court vendor","vendor layout","file la","right patrons","patrons eat","eat meals","food court","venezuela food","food court","asia pacific","pacific also","also called","called food","food hall","hawker centre","indoor plaza","common area","area within","contiguous withe","withe counters","multiple food","food vendors","common area","self serve","american heritage","heritage dictionary","thenglish language","language fourth","fourth edition","edition retrieved","retrieved may","web site","site food","food courts","courts may","shopping mall","various regionsuch","regionsuch asia","high schools","universities food","food courts","also come","school food","food courts","new evolution","student dining","dining school","school planning","management v","v n","n p","p august","august amy","restaurant style","style dining","dining college","college planning","management november","university food","food courthe","courthe average","average cost","meal person","american food","food court","typical usage","usage file","file pirate","cafe jpg","jpg righthumb","righthumb px","food court","port charlotte","charlotte high","high school","school file","file food","food court","newark liberty","liberty airport","airport june","june jpg","px righthe","righthe food","food court","newark liberty","liberty airport","new jersey","jersey aseen","food courts","courts consist","food stalls","service counters","counters meals","common dining","dining area","food may","may also","another location","foam food","food container","though one","one common","common food","food tray","tray used","stalls might","might also","table food","food courts","courts may","may also","sell prepared","prepared meals","take home","food court","daily stop","usually eaten","sometimes used","shopping center","center food","food experience","new dining","dining terrace","terrace november","november typical","typical north","north americand","americand europe","food courts","mostly fast","fast food","food chainsuch","smaller private","private vendors","vendors berkshire","frequent presence","food courts","courts via","dairy queen","orange julius","julius divisions","divisions cuisines","larger food","food courts","courts offering","global choices","choices asiand","asiand african","african food","food courts","mostly private","private vendors","offer local","local cuisine","singapore food","food courts","hawker centre","main eating","eating choice","singapore food","food common","common materials","materials used","constructing food","food courts","formica plastic","plastic formica","formica stainlessteel","second floor","floor food","food court","court athe","park shopping","shopping mall","new jersey","first successful","successful shopping","shopping mall","mall food","food court","america however","food court","toronto canada","constructed three","three years","years earlier","earlier built","company one","leading mall","mall building","building companies","unsuccessful attempt","attempt athe","meeting mall","reportedly failed","varied bloom","bloom nicholas","public life","consumerism american","american businessmen","suburban commerce","department store","shopping mall","mall see","see also","also food","food hall","hall cafeteria","cafeteria hawker","category shopping","shopping malls","malls category","category types"],"new_description":"file food_court japan la belle province thumb px shopping_center food_court vendor layout montreal file la del thumb px right patrons eat meals food_court venezuela food_court asia_pacific also_called food hall hawker_centre generally indoor plaza common area within facility contiguous withe counters multiple food_vendors provides common area self serve court american heritage dictionary thenglish_language fourth_edition retrieved_may web_site food_courts may found shopping_mall airport park various regionsuch asia americas africa may development places learning high_schools universities food_courts also come replace cafeteria school food_courts new evolution student dining school planning management v n p august amy cafeteria restaurant style dining college planning management november university food_courthe average cost meal person american food_court typical usage file pirate cafe jpg_righthumb px cafe food_court port charlotte high_school file food_court newark liberty airport june jpg thumb px righthe food_court newark liberty airport new_jersey aseen food_courts consist number vendors food stalls service counters meals ordered one vendors carried common dining area food may_also ordered takeout consumption another location home workplace case may packaged foam food container though one common food tray used stalls might also allow food carried table food_courts may_also shops sell prepared meals consumers take home making food_court daily stop food usually eaten sometimes used avoid necessity providing fork spoon requires food use cutlery provides shopping_center food experience new dining terrace november typical north_americand europe food_courts mostly fast_food chainsuch mcdonald perhaps smaller private vendors berkshire also frequent presence food_courts via dairy queen orange julius divisions cuisines choices varied larger food_courts offering global choices asiand african food_courts mostly private vendors offer local cuisine singapore food_courts hawker_centre people main eating choice dining food singapore food common materials used constructing food_courts tile formica plastic formica stainlessteel glass cleanup second floor food_court athe park shopping_mall new_jersey opened credited first successful shopping_mall food_court america however food_court center toronto canada constructed three_years earlier built company one leading mall building companies time followed unsuccessful attempt athe meeting mall reportedly failed deemed small varied bloom nicholas public life consumerism american businessmen suburban commerce department store shopping_mall see_also food hall cafeteria hawker category shopping_malls category_types restaurants"},{"title":"Food truck","description":"file chinese food truck inoum a new caledonia jpg thumb a food truck inoum a new caledonia serving chinese food a food truck is a large vehiclequipped to cook and sell food some including ice cream truck sell frozen or prepackaged food others have on board kitchens and prepare food from scratch sandwiches hamburgers french fries and otheregional fast food fare is common in recent years associated withe pop up restaurant phenomenon food trucks offeringourmet cuisine and a variety of specialties and ethnic menus have become particularly popular food trucks along with portable food booth s and food cart s are on the front line of the street food industry that serves an estimated billion peoplevery day in the united states the texas chuckwagon is a precursor to the american food truck in the later s herding cattle from the southwesto markets in the north and east kept cowhands on the trail for months at a time in the father of the texas panhandle charles goodnight in the driftway article nation a texas cattle rancher fitted a sturdy old united states army wagon with interior shelving andrawers and stocked it with kitchenware food and medical supplies food consisted of dried beans coffee cornmeal greasy cloth wrapped bacon salt pork beef usually dried or salted or smoked and other easy to preserve food stuffs the wagon was also stocked with a water barrel and a sling to kindle wood to heat and cook foodsharpe p camping it up article texas monthly another early relative of the modern food truck is the lunch wagon as conceived by food vendor walter scott in scott cut windows in a small covered wagon parked it in front of a newspaper office in providence rhode island sold sandwiches pies and coffee to pressmen and journalists by the s former lunch counter boy thomas h buckley was manufacturing lunch wagons in worcester massachusetts he introduced various models like the owl and the white house cafe with features that included sinks refrigerators and cooking stoves also colored windows and other ornamentation later versions of the food truck were mobile canteen place canteens which were created in the late s these mobile canteen place canteens were authorized by the us army and operated on stateside army bases file pizza truck nyc jehjpg thumb a pizza truck inew york city mobile food trucks nicknamed roach coaches or gutrucks have been around for yearserving construction sites factories and other blue collar locations in big cities of the us the food truck traditionally provided a means for the on the go person to grab a quick bite at a low cost food trucks are not only sought out for their affordability but as well for their nostalgiand their popularity continues to rise in recent years the food truck resurgence was fueled by a combination of post recessionary factors due to an apparent combination of economic and technological factors combined with street food being hip or chic there has been an increase in the number ofood trucks in the united statesryssdal kai food truck nation american public media friday july retrieved september the construction business was drying up leading to a surplus ofood trucks and chefs from high end restaurants were being laid offor experienced cooksuddenly without work the food truck seemed a clear choicebelluz j construction guys never ate like this maclean s once more commonplace in american coastal big cities like new york and la gourmet food trucks are now to be found as well in the suburbs and in small towns across the country publishedec food trucks are also being hired for special events like weddings movie shoots and corporate gatherings and also to carry advertising promoting companies and brands file taco truck st louis mojpg a taco stand taco truck in st louis missouri file maximus minimus food truck seattle washingtonjpg the maximus minimus food truck in seattle washington file food trucks athe food trucks for haiti benefit in west los angelesjpg food trucks athe food trucks for haiti benefit in west los angeles the gourmet food truck a modern day food truck is not simply an ordinary taco truck one might find at a construction siteolivia barkerusa t nd a foodie fueled trend takes its act on the road usa today inew york magazinew york magazine noted thathe food truck had largely transcended its roach coach classification and is now a respectable venue for aspiring chefs to launch careers these gourmetrucks menus run the gamut of ethnic and fusion cuisine often focusing on limited but creative dishes at reasonable prices they offer customers a chance to experience food they otherwise may not finding a niche seems to be a path to success for mostrucks while one truck may specialize in outlandish burgers another may serve only lobsterolls food trucks are now even zagat rated tracking food trucks has been madeasy with social media like facebook and twitter where a favorite gourmetruck can be located at any moment with updates on specials new menu items and location changescaldwell a will tweet for food the impact of twitter and new york city food trucks online offline and inline appetite in fact it could be argued that social media was the biggest contributing factor to the breakthrough success of the gourmet food truckbly laura travel by twitter usa today food truck rally food truck rallies and food truck parks are also growing in popularity in the us at rallies people can find their favorite trucks all in one place and as well provide a means for a variety of diverse cultures to come together and find a common ground over a love for foodsamuelsson marcus mobile food newscom june retrieved september on augustampa hosted the world s largest food truck rally with trucks attending and food truck parks offering permanent locations are found in urband suburban areas across the us the popularity ofood trucks lead to the creation of associations that protect and supportheir business rightsuch as the philadelphia mobile food association business and economics food trucks are subjecto the same range of concerns as other foodservice businesses they generally require a fixed address to accept delivery of supplies a commercial kitchen may be needed for food prep there are a variety of permits tobtain and a health code tobserve labor and fuel costs are a significant part of the overhead legal definitions and requirements for food trucks vary widely by country and locality for example in toronto canada some of the requirements include business and liability insurance a commercial vehicle operator s registration for the truck permits for each municipality being operated in downtown variousuburbs a food handler certificate appropriate driver s licenses for drivers assistant s licenses for assistants and a health inspection as the rising number and popularity ofood trucks push them into the food mainstream region by region problems with localegislators and police reacting to new situations and brick and mortarestaurants fearing competition have to be worked through in some cases creating significant business uncertainty chicago long held the distinction of being the only city in the united states that did not allow food trucks to cook on board which required trucks to prepare food in a commercial condition then wrap and label the food and load it into a food warmer in under pressure from food truck owners and supporters including the university of chicago law school regulations were changed to allow on board cooking however controversially food trucks arequired to park feet away from any restaurant which virtually eliminates busy downtown locations in the uspecialized food truck outfitters offer comprehensive start up services that can include concept developmentraining and businessupport in addition toutfitted trucksfasman j trucking delicious articleconomist in the us food trucks are a billion industry food truck pop up street food coverage accessdate languagen us expansion from a single truck to fleets and retail outlets has proven possible los angeles based gourmet ice creamaker coolhaus grew from a single truck in to trucks and carts two storefronts and overetail partner stores by september health concerns food trucks have unique health risks compared to regular land based restaurants when it comes to food safety and the prevention ofoodborne illness most food trucks do not have access to adequate cleand hot water necessary to hand washing washands or to rinse off vegetables as required by most health codes oregulations in june of the boston globe reviewed the city health records and found food truck had been cited for violations times withalf of the violations being minor inature and the other half being serious violations when compared to fixed location restaurants the city closed nine of the licensed food trucks in and closed only twout of restaurants a majority of the serious violations werelated to the lack of water and hand washing around the world file roasted chicken leg steaks truck at cwt jpg thumb a food truck in taiwan in asia the cuisine offered by food trucks requiresimple skills basic facilities and a relatively small amount of capital they are plentiful with large potential for income and often a very large sector for employment individuals facing difficulty finding work in formal sectors will often venture into this industry as it allows entire families to involve themselves in the preparing and cooking ofoodsold to the public the appeal involved in sustaining a food truck lie not only in the low capital requirement but also in the flexibility of hours with minimal constraints to locale street foods predominantly reflect local culture and flavor food trucks appeal to consumers in thathey are often an inexpensive means of attaining quick meals location and word of mouth promotion has been credited for their widening successwinarno fg allain a street foods in developing countries lessons from asia fao retrieved september file mobile cafe in south bank parklands brisbanejpeg thumb a mobile cafe in south bank parklands brisbane food trucks are available across australiand are covered as a popular trend in the median australianational online directory where the truck at listsome food trucks french fries chip trucks have long been a staple of the belgian countryside the belgian food truck association is lobbying to legalize food trucks on the street brussels municipality brussels was the first european city to propose locations for food trucks at football matches belgium also holds the brussels food truck festival the largest of its kind in europeveryear in may original french le plus grand festival du genren europe google translation the largest festival of its kind in europe file cuisine de rue a montreal jpg thumb food trucks in montreal in canada food trucks also commonly known as cantines french for cafeteria in quebec are present across the country serving a wide variety of cuisines including anything from grilled cheese sandwiches to mexican cuisine mexican in vancouver based food truck vij s railway expresserving fresh indian cuisine won the people s choice award for canada s best new restaurant of the year inational airline air canada s enroute magazine poll facing off in the finals against conventional restaurants although food trucks are common at outdoor markets for example pizza trucks are common in marseille and southern france since the s american style truckselling restaurant quality food first appeared in paris in their owners needed tobtain permission from four separate government agencies including the prefecture of police buthe trucks offerings including tacos and hamburgers have reportedly been very popular file bulltruckjpg thumbull truck primexican meat sold out athend of the day although street food in mexico is unregulated food trucks are becoming increasingly popular as of and owners have created an association to pursue the professionalization and expansion of this commercial sector in addition to the food trucks catering on the streets there aregular bazaars organized to introduce their products to the consumers in response to this popularity the local authorities have issued a series of special regulations to incorporate them to legal schemes that would help torder this commerce form as new food truck business model emerged some local bodybuilders begin to make food trucks from new vehicles fromajor car makers united kingdom withe advent of motorised transport during world war ii food trucks came into common use field kitchen mobile canteens were used in almost all theatres of war to boost morale and provide food as a result of the successful tea lady experiment food trucks today are known asnack vans and can be found onearly all major trunk roads athe side of the road or in areas that have a large pedestrian population such as at village fetes or town centers these vans can specialise in myriadifferent food typesuch as donuts hamburgers chili and chips as well as ethnic food some people prefer to stop at snack vans when travelling due to the low price rather than stop at a motorway service area service station where prices can bextremely high snack van british museum north entrance geographorguk jpg a snack van athe british museum in london food truck in londonjpg a food truck in london that purveys hot dogs cr pes and coffee citro n hy food vanjpg a citro n hy food van inorfolk in popular culture in the united states the food truck phenomenon can be seen regularly onational food televisioncoulton a hamm l zuckerman s alexander garcia j mcneil vallancourt j food truck nation article people bothe great food truck race a reality series on the food network and eat st broadcast on the sister station cooking channel feature food trucks and mobile food carts from all over the us on canada s food network food truck face offour teams battle for the grand prize use of a customized food truck for one year alson the network an episode of kid in a candy store looks behind the scenes at a gourmet dessertruck in the food fight episode of the tv series the glades tv series the gladeseason the plot revolves around restaurants trying to eliminate food truck competition in the american comedy drama chefilm chef a high end chef has a kitchen meltdown and rediscovers his passion for cooking while driving and operating a simple food truck across america during donald trumpresidential campaign donald trump s campaign for president marco gutierrez founder of a group known as latinos for trump warned in a msnbc interview thathere would be taco trucks on every corner if mexican immigration to the us continued this triggered widespreaderision and a twitter meme tacotrucksoneverycorner list ofood trucksee also campervan concession standiner doner kebab food truck rally food trucks in tampa florida mobile catering motorhome taco stand externalinks category catering category fast food category food trucks category innovation category snack foods category street food category trucks category types of restaurants","main_words":["file","chinese","food_truck","new","jpg","thumb","food_truck","new","serving","chinese","food","food_truck","large","cook","sell","food","including","ice_cream","truck","sell","frozen","food","others","board","kitchens","prepare","food","scratch","sandwiches","hamburgers","french_fries","fast_food","fare","common","recent_years","associated_withe","pop","restaurant","phenomenon","food_trucks","cuisine","variety","specialties","ethnic","menus","become","particularly","popular","food_trucks","along","portable","food_booth","food_cart","front","line","serves","estimated","billion","day","united_states","texas","chuckwagon","precursor","american","food_truck","later","cattle","markets","north_east","kept","trail","months","time","father","texas","charles","goodnight","article","nation","texas","cattle","fitted","old","united_states","army","wagon","interior","stocked","kitchenware","food","medical","supplies","food","consisted","dried","beans","coffee","greasy","cloth","wrapped","bacon","salt","pork","beef","usually","dried","salted","smoked","easy","preserve","food","wagon","also","stocked","water","barrel","kindle","wood","heat","cook","p","camping","article","texas","monthly","another","early","relative","modern","food_truck","lunch","wagon","conceived","food","vendor","walter","scott","scott","cut","windows","small","covered","wagon","parked","front","newspaper","office","providence","rhode_island","sold","sandwiches","pies","coffee","journalists","former","lunch_counter","boy","thomas","h","manufacturing","lunch","wagons","worcester","massachusetts","introduced","various","models","like","owl","white_house","cafe","features","included","cooking","stoves","also","colored","windows","later","versions","food_truck","mobile","canteen","place","canteens","created","late","mobile","canteen","place","canteens","authorized","us_army","operated","army","bases","file","pizza","truck","nyc","jehjpg","thumb","pizza","truck","inew_york_city","nicknamed","roach","coaches","around","construction","sites","factories","blue","collar","locations","big","cities","us","food_truck","traditionally","provided","means","go","person","grab","quick","bite","low_cost","food_trucks","sought","affordability","well","popularity","continues","rise","recent_years","food_truck","resurgence","fueled","combination","post","factors","due","apparent","combination","economic","technological","factors","combined","street_food","hip","chic","increase","number","ofood_trucks","united","kai","food_truck","nation","american","public","media","friday","july_retrieved","september","construction","business","drying","leading","surplus","ofood_trucks","chefs","high_end_restaurants","laid","offor","experienced","without","work","food_truck","seemed","clear","j","construction","guys","never","ate","like","commonplace","american","coastal","big","cities","like","new_york","la","gourmet","food_trucks","found","well","suburbs","small_towns","across","country","food_trucks","also","hired","special_events","like","weddings","movie","corporate","gatherings","also","carry","advertising","promoting","companies","brands","file","taco_truck","st_louis","taco_stand","taco_truck","st_louis","missouri","file","maximus_minimus_food_truck","maximus_minimus_food_truck","seattle_washington","file","food_trucks","athe","food_trucks","haiti","benefit","west","los","food_trucks","athe","food_trucks","haiti","benefit","west","los_angeles","gourmet","food_truck","modern_day","food_truck","simply","ordinary","taco_truck","one","might","find","construction","fueled","trend","takes","act","road","usa_today","inew_york","magazinew","york","magazine","noted_thathe","food_truck","largely","roach","coach","classification","respectable","venue","aspiring","chefs","launch","careers","menus","run","ethnic","fusion","cuisine","often","focusing","limited","creative","dishes","reasonable","prices","offer","customers","chance","experience","food","otherwise","may","finding","niche","seems","path","success","one","truck","may","specialize","burgers","another","trucks","even","zagat","rated","tracking","food_trucks","madeasy","social_media","like","facebook","twitter","favorite","located","moment","updates","specials","new","menu_items","location","food","impact","twitter","new_york","city","food_trucks","online","offline","fact","could","argued","social_media","biggest","contributing","factor","breakthrough","success","gourmet","food","laura","travel","twitter","usa_today","food_truck","rally","food_truck","rallies","food_truck","parks","also","growing","popularity","us","rallies","people","find","favorite","trucks","one","place","well","provide","means","variety","diverse","cultures","come","together","find","common","ground","love","marcus","mobile_food","june_retrieved","september","hosted","world","largest","food_truck","rally","trucks","attending","food_truck","parks","offering","permanent","locations","found","urband","suburban","areas","across","us","popularity","ofood_trucks","lead","creation","associations","protect","supportheir","business","philadelphia","mobile_food","association","business","economics","food_trucks","subjecto","range","concerns","foodservice","businesses","generally","require","fixed","address","accept","delivery","supplies","commercial","kitchen","may","needed","food","variety","permits","tobtain","health","code","tobserve","labor","fuel","costs","significant","part","overhead","legal","definitions","requirements","food_trucks","vary","widely","country","locality","example","toronto","canada","requirements","include","business","liability","insurance","commercial","vehicle","operator","registration","truck","permits","municipality","operated","downtown","food","certificate","appropriate","driver","licenses","drivers","assistant","licenses","assistants","health","inspection","rising","number","popularity","ofood_trucks","push","food","mainstream","region","region","problems","police","new","situations","brick","fearing","competition","worked","cases","creating","significant","business","chicago","long","held","distinction","city_united_states","allow","food_trucks","cook","board","required","trucks","prepare","food","commercial","condition","wrap","label","food","load","food","warmer","pressure","food_truck","owners","supporters","including","university","chicago","law","school","regulations","changed","allow","board","cooking","however","food_trucks","arequired","park","feet","away","restaurant","virtually","busy","downtown","locations","food_truck","outfitters","offer","comprehensive","start","services","include","concept","addition","j","delicious","us","food_trucks","billion","industry","food_truck","pop","street_food","coverage","accessdate","languagen","us","expansion","single","truck","retail","outlets","proven","possible","los_angeles","based","gourmet","ice","coolhaus","grew","single","truck","trucks","carts","two","partner","stores","september","health","concerns","food_trucks","unique","health","risks","compared","regular","land","based","restaurants","comes","food","safety","prevention","illness","food_trucks","access","adequate","cleand","hot","water","necessary","hand","washing","vegetables","required","health","codes","june","boston_globe","reviewed","city","health","records","found","food_truck","cited","violations","times","violations","minor","inature","half","serious","violations","compared","fixed","city","closed","nine","licensed","food_trucks","closed","restaurants","majority","serious","violations","lack","water","hand","washing","around","world","file","roasted","chicken","leg","truck","jpg","thumb","food_truck","taiwan","asia","cuisine","offered","food_trucks","skills","basic","facilities","relatively","small","amount","capital","plentiful","large","potential","income","often","large","sector","employment","individuals","facing","difficulty","finding","work","formal","sectors","often","venture","industry","allows","entire","families","involve","preparing","cooking","public","appeal","involved","sustaining","food_truck","lie","low","capital","requirement","also","flexibility","hours","minimal","constraints","locale","street_foods","predominantly","reflect","local_culture","flavor","food_trucks","appeal","consumers","thathey","often","inexpensive","means","quick","meals","location","word","mouth","promotion","credited","street_foods","developing_countries","lessons","asia","fao","retrieved","september","file","mobile","cafe","south","bank","thumb","mobile","cafe","south","bank","brisbane","food_trucks","available","across","australiand","covered","popular","trend","median","australianational","online","directory","truck","food_trucks","french_fries","chip","trucks","long","staple","belgian","countryside","belgian","food_truck","association","food_trucks","street","brussels","municipality","brussels","first","european","city","propose","locations","food_trucks","football","matches","belgium","also","holds","brussels","food_truck","festival","largest","kind","may","original","french","plus","grand","festival","europe","google","translation","largest","festival","kind","europe","file","cuisine","de","rue","montreal","jpg","thumb","food_trucks","montreal","canada","food_trucks","also_commonly","known","french","cafeteria","quebec","present","across","country","serving","wide_variety","cuisines","including","anything","grilled_cheese","sandwiches","mexican","cuisine","mexican","vancouver","based","food_truck","railway","fresh","indian","cuisine","people","choice","award","canada","best_new","restaurant","year","inational","airline","air","canada","enroute","magazine","poll","facing","finals","conventional","restaurants","although","food_trucks","common","outdoor","markets","example","pizza","trucks","common","marseille","southern","france","since","american","style","restaurant","quality","food","first_appeared","paris","owners","needed","tobtain","permission","four","separate","government_agencies","including","prefecture","police","buthe","trucks","offerings","including","tacos","hamburgers","reportedly","popular","file","truck","meat","sold","athend","day","although","street_food","mexico","food_trucks","becoming_increasingly","popular","owners","created","association","pursue","expansion","commercial","sector","addition","food_trucks","catering","streets","organized","introduce","products","consumers","response","popularity","local_authorities","issued","series","special","regulations","incorporate","legal","schemes","would","help","torder","commerce","form","new","food_truck","business_model","emerged","local","begin","make","food_trucks","new","vehicles","car","makers","united_kingdom","withe_advent","transport","world_war","ii","food_trucks","came","common","use","field","kitchen","mobile","canteens","used","almost","theatres","war","boost","morale","provide","food","result","successful","tea","lady","experiment","food_trucks","today","known","vans","found","major","trunk","roads","athe","side","road","areas","large","pedestrian","population","village","town","centers","vans","specialise","food","hamburgers","chili","chips","well","ethnic","food","people","prefer","stop","snack","vans","travelling","due","low","price","rather","stop","motorway","service","area","service","station","prices","high","snack","van","british","museum","north","entrance","geographorguk_jpg","snack","van","athe","british","museum","london","food_truck","food_truck","london","hot_dogs","coffee","n","food","n","food","van","popular_culture","united_states","food_truck","phenomenon","seen","regularly","onational","food","l","alexander","j","j","food_truck","nation","article","people","bothe","great_food_truck","race","reality","series","food_network","eat","st","broadcast","sister","station","cooking","channel","feature","food_trucks","us","canada","food_network","food_truck","face","teams","battle","grand","prize","use","customized","food_truck","one_year","alson","network","episode","kid","candy","store","looks","behind","scenes","gourmet","food","fight","episode","tv_series","tv_series","plot","around","restaurants","trying","eliminate","food_truck","competition","american","comedy","drama","chef","high_end","chef","kitchen","passion","cooking","driving","operating","simple","food_truck","across","america","donald","campaign","donald","trump","campaign","president","marco","gutierrez","founder","group","known","latinos","trump","warned","msnbc","interview","thathere","would","taco_trucks","every","corner","mexican","immigration","us","continued","twitter","also","campervan","concession","doner","kebab","food_truck","rally","food_trucks","tampa_florida","mobile_catering","motorhome","taco_stand","externalinks_category","catering","category_fast_food","category_food","trucks_category","innovation","category","snack","foods","category","restaurants"],"clean_bigrams":[["file","chinese"],["chinese","food"],["food","truck"],["jpg","thumb"],["thumb","food"],["food","truck"],["serving","chinese"],["chinese","food"],["food","truck"],["sell","food"],["including","ice"],["ice","cream"],["cream","truck"],["truck","sell"],["sell","frozen"],["food","others"],["board","kitchens"],["prepare","food"],["scratch","sandwiches"],["sandwiches","hamburgers"],["hamburgers","french"],["french","fries"],["fast","food"],["food","fare"],["recent","years"],["years","associated"],["associated","withe"],["withe","pop"],["restaurant","phenomenon"],["phenomenon","food"],["food","trucks"],["ethnic","menus"],["become","particularly"],["particularly","popular"],["popular","food"],["food","trucks"],["trucks","along"],["portable","food"],["food","booth"],["food","cart"],["front","line"],["street","food"],["food","industry"],["estimated","billion"],["united","states"],["texas","chuckwagon"],["american","food"],["food","truck"],["east","kept"],["charles","goodnight"],["article","nation"],["texas","cattle"],["old","united"],["united","states"],["states","army"],["army","wagon"],["kitchenware","food"],["medical","supplies"],["supplies","food"],["food","consisted"],["dried","beans"],["beans","coffee"],["greasy","cloth"],["cloth","wrapped"],["wrapped","bacon"],["bacon","salt"],["salt","pork"],["pork","beef"],["beef","usually"],["usually","dried"],["preserve","food"],["also","stocked"],["water","barrel"],["kindle","wood"],["p","camping"],["article","texas"],["texas","monthly"],["monthly","another"],["another","early"],["early","relative"],["modern","food"],["food","truck"],["lunch","wagon"],["food","vendor"],["vendor","walter"],["walter","scott"],["scott","cut"],["cut","windows"],["small","covered"],["covered","wagon"],["wagon","parked"],["newspaper","office"],["providence","rhode"],["rhode","island"],["island","sold"],["sold","sandwiches"],["sandwiches","pies"],["former","lunch"],["lunch","counter"],["counter","boy"],["boy","thomas"],["thomas","h"],["manufacturing","lunch"],["lunch","wagons"],["worcester","massachusetts"],["introduced","various"],["various","models"],["models","like"],["white","house"],["house","cafe"],["cooking","stoves"],["stoves","also"],["also","colored"],["colored","windows"],["later","versions"],["food","truck"],["mobile","canteen"],["canteen","place"],["place","canteens"],["mobile","canteen"],["canteen","place"],["place","canteens"],["us","army"],["army","bases"],["bases","file"],["file","pizza"],["pizza","truck"],["truck","nyc"],["nyc","jehjpg"],["jehjpg","thumb"],["pizza","truck"],["truck","inew"],["inew","york"],["york","city"],["city","mobile"],["mobile","food"],["food","trucks"],["trucks","nicknamed"],["nicknamed","roach"],["roach","coaches"],["construction","sites"],["sites","factories"],["blue","collar"],["collar","locations"],["big","cities"],["us","food"],["food","truck"],["truck","traditionally"],["traditionally","provided"],["go","person"],["quick","bite"],["low","cost"],["cost","food"],["food","trucks"],["popularity","continues"],["recent","years"],["food","truck"],["truck","resurgence"],["factors","due"],["apparent","combination"],["technological","factors"],["factors","combined"],["street","food"],["number","ofood"],["ofood","trucks"],["kai","food"],["food","truck"],["truck","nation"],["nation","american"],["american","public"],["public","media"],["media","friday"],["friday","july"],["july","retrieved"],["retrieved","september"],["construction","business"],["surplus","ofood"],["ofood","trucks"],["high","end"],["end","restaurants"],["laid","offor"],["offor","experienced"],["without","work"],["food","truck"],["truck","seemed"],["j","construction"],["construction","guys"],["guys","never"],["never","ate"],["ate","like"],["american","coastal"],["coastal","big"],["big","cities"],["cities","like"],["like","new"],["new","york"],["la","gourmet"],["gourmet","food"],["food","trucks"],["small","towns"],["towns","across"],["food","trucks"],["trucks","also"],["special","events"],["events","like"],["like","weddings"],["weddings","movie"],["corporate","gatherings"],["carry","advertising"],["advertising","promoting"],["promoting","companies"],["brands","file"],["file","taco"],["taco","truck"],["truck","st"],["st","louis"],["taco","stand"],["stand","taco"],["taco","truck"],["truck","st"],["st","louis"],["louis","missouri"],["missouri","file"],["file","maximus"],["maximus","minimus"],["minimus","food"],["food","truck"],["truck","seattle"],["seattle","washingtonjpg"],["maximus","minimus"],["minimus","food"],["food","truck"],["truck","seattle"],["seattle","washington"],["washington","file"],["file","food"],["food","trucks"],["trucks","athe"],["athe","food"],["food","trucks"],["haiti","benefit"],["west","los"],["food","trucks"],["trucks","athe"],["athe","food"],["food","trucks"],["haiti","benefit"],["west","los"],["los","angeles"],["gourmet","food"],["food","truck"],["modern","day"],["day","food"],["food","truck"],["ordinary","taco"],["taco","truck"],["truck","one"],["one","might"],["might","find"],["fueled","trend"],["trend","takes"],["road","usa"],["usa","today"],["today","inew"],["inew","york"],["york","magazinew"],["magazinew","york"],["york","magazine"],["magazine","noted"],["noted","thathe"],["thathe","food"],["food","truck"],["roach","coach"],["coach","classification"],["respectable","venue"],["aspiring","chefs"],["launch","careers"],["menus","run"],["fusion","cuisine"],["cuisine","often"],["often","focusing"],["creative","dishes"],["reasonable","prices"],["offer","customers"],["experience","food"],["otherwise","may"],["niche","seems"],["one","truck"],["truck","may"],["may","specialize"],["burgers","another"],["another","may"],["may","serve"],["food","trucks"],["even","zagat"],["zagat","rated"],["rated","tracking"],["tracking","food"],["food","trucks"],["social","media"],["media","like"],["like","facebook"],["specials","new"],["new","menu"],["menu","items"],["new","york"],["york","city"],["city","food"],["food","trucks"],["trucks","online"],["online","offline"],["social","media"],["biggest","contributing"],["contributing","factor"],["breakthrough","success"],["gourmet","food"],["laura","travel"],["twitter","usa"],["usa","today"],["today","food"],["food","truck"],["truck","rally"],["rally","food"],["food","truck"],["truck","rallies"],["food","truck"],["truck","parks"],["also","growing"],["rallies","people"],["favorite","trucks"],["one","place"],["well","provide"],["diverse","cultures"],["come","together"],["common","ground"],["marcus","mobile"],["mobile","food"],["june","retrieved"],["retrieved","september"],["largest","food"],["food","truck"],["truck","rally"],["trucks","attending"],["food","truck"],["truck","parks"],["parks","offering"],["offering","permanent"],["permanent","locations"],["urband","suburban"],["suburban","areas"],["areas","across"],["popularity","ofood"],["ofood","trucks"],["trucks","lead"],["supportheir","business"],["philadelphia","mobile"],["mobile","food"],["food","association"],["association","business"],["economics","food"],["food","trucks"],["foodservice","businesses"],["generally","require"],["fixed","address"],["accept","delivery"],["commercial","kitchen"],["kitchen","may"],["permits","tobtain"],["health","code"],["code","tobserve"],["tobserve","labor"],["fuel","costs"],["significant","part"],["overhead","legal"],["legal","definitions"],["food","trucks"],["trucks","vary"],["vary","widely"],["toronto","canada"],["requirements","include"],["include","business"],["liability","insurance"],["commercial","vehicle"],["vehicle","operator"],["truck","permits"],["certificate","appropriate"],["appropriate","driver"],["drivers","assistant"],["health","inspection"],["rising","number"],["popularity","ofood"],["ofood","trucks"],["trucks","push"],["food","mainstream"],["mainstream","region"],["region","problems"],["new","situations"],["fearing","competition"],["cases","creating"],["creating","significant"],["significant","business"],["chicago","long"],["long","held"],["united","states"],["allow","food"],["food","trucks"],["required","trucks"],["prepare","food"],["commercial","condition"],["food","warmer"],["food","truck"],["truck","owners"],["supporters","including"],["chicago","law"],["law","school"],["school","regulations"],["board","cooking"],["cooking","however"],["food","trucks"],["trucks","arequired"],["park","feet"],["feet","away"],["busy","downtown"],["downtown","locations"],["food","truck"],["truck","outfitters"],["outfitters","offer"],["offer","comprehensive"],["comprehensive","start"],["include","concept"],["us","food"],["food","trucks"],["billion","industry"],["industry","food"],["food","truck"],["truck","pop"],["street","food"],["food","coverage"],["coverage","accessdate"],["accessdate","languagen"],["languagen","us"],["us","expansion"],["single","truck"],["retail","outlets"],["proven","possible"],["possible","los"],["los","angeles"],["angeles","based"],["based","gourmet"],["gourmet","ice"],["coolhaus","grew"],["single","truck"],["carts","two"],["partner","stores"],["september","health"],["health","concerns"],["concerns","food"],["food","trucks"],["unique","health"],["health","risks"],["risks","compared"],["regular","land"],["land","based"],["based","restaurants"],["food","safety"],["food","trucks"],["adequate","cleand"],["cleand","hot"],["hot","water"],["water","necessary"],["hand","washing"],["health","codes"],["boston","globe"],["globe","reviewed"],["city","health"],["health","records"],["found","food"],["food","truck"],["violations","times"],["minor","inature"],["serious","violations"],["fixed","location"],["location","restaurants"],["city","closed"],["closed","nine"],["licensed","food"],["food","trucks"],["serious","violations"],["hand","washing"],["washing","around"],["world","file"],["file","roasted"],["roasted","chicken"],["chicken","leg"],["jpg","thumb"],["thumb","food"],["food","truck"],["cuisine","offered"],["food","trucks"],["skills","basic"],["basic","facilities"],["relatively","small"],["small","amount"],["large","potential"],["large","sector"],["employment","individuals"],["individuals","facing"],["facing","difficulty"],["difficulty","finding"],["finding","work"],["formal","sectors"],["often","venture"],["allows","entire"],["entire","families"],["appeal","involved"],["food","truck"],["truck","lie"],["low","capital"],["capital","requirement"],["minimal","constraints"],["locale","street"],["street","foods"],["foods","predominantly"],["predominantly","reflect"],["reflect","local"],["local","culture"],["flavor","food"],["food","trucks"],["trucks","appeal"],["inexpensive","means"],["quick","meals"],["meals","location"],["mouth","promotion"],["street","foods"],["developing","countries"],["countries","lessons"],["asia","fao"],["fao","retrieved"],["retrieved","september"],["september","file"],["file","mobile"],["mobile","cafe"],["south","bank"],["mobile","cafe"],["south","bank"],["brisbane","food"],["food","trucks"],["available","across"],["across","australiand"],["popular","trend"],["median","australianational"],["australianational","online"],["online","directory"],["food","trucks"],["trucks","french"],["french","fries"],["fries","chip"],["chip","trucks"],["belgian","countryside"],["belgian","food"],["food","truck"],["truck","association"],["food","trucks"],["street","brussels"],["brussels","municipality"],["municipality","brussels"],["first","european"],["european","city"],["propose","locations"],["food","trucks"],["football","matches"],["matches","belgium"],["belgium","also"],["also","holds"],["brussels","food"],["food","truck"],["truck","festival"],["may","original"],["original","french"],["plus","grand"],["grand","festival"],["europe","google"],["google","translation"],["largest","festival"],["europe","file"],["file","cuisine"],["cuisine","de"],["de","rue"],["montreal","jpg"],["jpg","thumb"],["thumb","food"],["food","trucks"],["canada","food"],["food","trucks"],["trucks","also"],["also","commonly"],["commonly","known"],["present","across"],["country","serving"],["wide","variety"],["cuisines","including"],["including","anything"],["grilled","cheese"],["cheese","sandwiches"],["mexican","cuisine"],["cuisine","mexican"],["vancouver","based"],["based","food"],["food","truck"],["fresh","indian"],["indian","cuisine"],["choice","award"],["best","new"],["new","restaurant"],["year","inational"],["inational","airline"],["airline","air"],["air","canada"],["enroute","magazine"],["magazine","poll"],["poll","facing"],["conventional","restaurants"],["restaurants","although"],["although","food"],["food","trucks"],["outdoor","markets"],["example","pizza"],["pizza","trucks"],["southern","france"],["france","since"],["american","style"],["restaurant","quality"],["quality","food"],["food","first"],["first","appeared"],["owners","needed"],["needed","tobtain"],["tobtain","permission"],["four","separate"],["separate","government"],["government","agencies"],["agencies","including"],["police","buthe"],["buthe","trucks"],["trucks","offerings"],["offerings","including"],["including","tacos"],["popular","file"],["meat","sold"],["day","although"],["although","street"],["street","food"],["food","trucks"],["becoming","increasingly"],["increasingly","popular"],["commercial","sector"],["food","trucks"],["trucks","catering"],["local","authorities"],["special","regulations"],["legal","schemes"],["would","help"],["help","torder"],["commerce","form"],["new","food"],["food","truck"],["truck","business"],["business","model"],["model","emerged"],["make","food"],["food","trucks"],["new","vehicles"],["car","makers"],["makers","united"],["united","kingdom"],["kingdom","withe"],["withe","advent"],["world","war"],["war","ii"],["ii","food"],["food","trucks"],["trucks","came"],["common","use"],["use","field"],["field","kitchen"],["kitchen","mobile"],["mobile","canteens"],["boost","morale"],["provide","food"],["successful","tea"],["tea","lady"],["lady","experiment"],["experiment","food"],["food","trucks"],["trucks","today"],["major","trunk"],["trunk","roads"],["roads","athe"],["athe","side"],["large","pedestrian"],["pedestrian","population"],["town","centers"],["hamburgers","chili"],["ethnic","food"],["people","prefer"],["snack","vans"],["travelling","due"],["low","price"],["price","rather"],["motorway","service"],["service","area"],["area","service"],["service","station"],["high","snack"],["snack","van"],["van","british"],["british","museum"],["museum","north"],["north","entrance"],["entrance","geographorguk"],["geographorguk","jpg"],["snack","van"],["van","athe"],["athe","british"],["british","museum"],["london","food"],["food","truck"],["food","truck"],["hot","dogs"],["food","van"],["popular","culture"],["united","states"],["food","truck"],["truck","phenomenon"],["seen","regularly"],["regularly","onational"],["onational","food"],["j","food"],["food","truck"],["truck","nation"],["nation","article"],["article","people"],["people","bothe"],["bothe","great"],["great","food"],["food","truck"],["truck","race"],["reality","series"],["food","network"],["eat","st"],["st","broadcast"],["sister","station"],["station","cooking"],["cooking","channel"],["channel","feature"],["feature","food"],["food","trucks"],["mobile","food"],["food","carts"],["canada","food"],["food","network"],["network","food"],["food","truck"],["truck","face"],["teams","battle"],["grand","prize"],["prize","use"],["customized","food"],["food","truck"],["truck","one"],["one","year"],["year","alson"],["candy","store"],["store","looks"],["looks","behind"],["gourmet","food"],["food","fight"],["fight","episode"],["tv","series"],["tv","series"],["around","restaurants"],["restaurants","trying"],["eliminate","food"],["food","truck"],["truck","competition"],["american","comedy"],["comedy","drama"],["high","end"],["end","chef"],["simple","food"],["food","truck"],["truck","across"],["across","america"],["campaign","donald"],["donald","trump"],["president","marco"],["marco","gutierrez"],["gutierrez","founder"],["group","known"],["trump","warned"],["msnbc","interview"],["interview","thathere"],["thathere","would"],["taco","trucks"],["every","corner"],["mexican","immigration"],["us","continued"],["list","ofood"],["also","campervan"],["campervan","concession"],["doner","kebab"],["kebab","food"],["food","truck"],["truck","rally"],["rally","food"],["food","trucks"],["tampa","florida"],["florida","mobile"],["mobile","catering"],["catering","motorhome"],["motorhome","taco"],["taco","stand"],["stand","externalinks"],["externalinks","category"],["category","catering"],["catering","category"],["category","fast"],["fast","food"],["food","category"],["category","food"],["food","trucks"],["trucks","category"],["category","innovation"],["innovation","category"],["category","snack"],["snack","foods"],["foods","category"],["category","street"],["street","food"],["food","category"],["category","trucks"],["trucks","category"],["category","types"]],"all_collocations":["file chinese","chinese food","food truck","thumb food","food truck","serving chinese","chinese food","food truck","sell food","including ice","ice cream","cream truck","truck sell","sell frozen","food others","board kitchens","prepare food","scratch sandwiches","sandwiches hamburgers","hamburgers french","french fries","fast food","food fare","recent years","years associated","associated withe","withe pop","restaurant phenomenon","phenomenon food","food trucks","ethnic menus","become particularly","particularly popular","popular food","food trucks","trucks along","portable food","food booth","food cart","front line","street food","food industry","estimated billion","united states","texas chuckwagon","american food","food truck","east kept","charles goodnight","article nation","texas cattle","old united","united states","states army","army wagon","kitchenware food","medical supplies","supplies food","food consisted","dried beans","beans coffee","greasy cloth","cloth wrapped","wrapped bacon","bacon salt","salt pork","pork beef","beef usually","usually dried","preserve food","also stocked","water barrel","kindle wood","p camping","article texas","texas monthly","monthly another","another early","early relative","modern food","food truck","lunch wagon","food vendor","vendor walter","walter scott","scott cut","cut windows","small covered","covered wagon","wagon parked","newspaper office","providence rhode","rhode island","island sold","sold sandwiches","sandwiches pies","former lunch","lunch counter","counter boy","boy thomas","thomas h","manufacturing lunch","lunch wagons","worcester massachusetts","introduced various","various models","models like","white house","house cafe","cooking stoves","stoves also","also colored","colored windows","later versions","food truck","mobile canteen","canteen place","place canteens","mobile canteen","canteen place","place canteens","us army","army bases","bases file","file pizza","pizza truck","truck nyc","nyc jehjpg","jehjpg thumb","pizza truck","truck inew","inew york","york city","city mobile","mobile food","food trucks","trucks nicknamed","nicknamed roach","roach coaches","construction sites","sites factories","blue collar","collar locations","big cities","us food","food truck","truck traditionally","traditionally provided","go person","quick bite","low cost","cost food","food trucks","popularity continues","recent years","food truck","truck resurgence","factors due","apparent combination","technological factors","factors combined","street food","number ofood","ofood trucks","kai food","food truck","truck nation","nation american","american public","public media","media friday","friday july","july retrieved","retrieved september","construction business","surplus ofood","ofood trucks","high end","end restaurants","laid offor","offor experienced","without work","food truck","truck seemed","j construction","construction guys","guys never","never ate","ate like","american coastal","coastal big","big cities","cities like","like new","new york","la gourmet","gourmet food","food trucks","small towns","towns across","food trucks","trucks also","special events","events like","like weddings","weddings movie","corporate gatherings","carry advertising","advertising promoting","promoting companies","brands file","file taco","taco truck","truck st","st louis","taco stand","stand taco","taco truck","truck st","st louis","louis missouri","missouri file","file maximus","maximus minimus","minimus food","food truck","truck seattle","seattle washingtonjpg","maximus minimus","minimus food","food truck","truck seattle","seattle washington","washington file","file food","food trucks","trucks athe","athe food","food trucks","haiti benefit","west los","food trucks","trucks athe","athe food","food trucks","haiti benefit","west los","los angeles","gourmet food","food truck","modern day","day food","food truck","ordinary taco","taco truck","truck one","one might","might find","fueled trend","trend takes","road usa","usa today","today inew","inew york","york magazinew","magazinew york","york magazine","magazine noted","noted thathe","thathe food","food truck","roach coach","coach classification","respectable venue","aspiring chefs","launch careers","menus run","fusion cuisine","cuisine often","often focusing","creative dishes","reasonable prices","offer customers","experience food","otherwise may","niche seems","one truck","truck may","may specialize","burgers another","another may","may serve","food trucks","even zagat","zagat rated","rated tracking","tracking food","food trucks","social media","media like","like facebook","specials new","new menu","menu items","new york","york city","city food","food trucks","trucks online","online offline","social media","biggest contributing","contributing factor","breakthrough success","gourmet food","laura travel","twitter usa","usa today","today food","food truck","truck rally","rally food","food truck","truck rallies","food truck","truck parks","also growing","rallies people","favorite trucks","one place","well provide","diverse cultures","come together","common ground","marcus mobile","mobile food","june retrieved","retrieved september","largest food","food truck","truck rally","trucks attending","food truck","truck parks","parks offering","offering permanent","permanent locations","urband suburban","suburban areas","areas across","popularity ofood","ofood trucks","trucks lead","supportheir business","philadelphia mobile","mobile food","food association","association business","economics food","food trucks","foodservice businesses","generally require","fixed address","accept delivery","commercial kitchen","kitchen may","permits tobtain","health code","code tobserve","tobserve labor","fuel costs","significant part","overhead legal","legal definitions","food trucks","trucks vary","vary widely","toronto canada","requirements include","include business","liability insurance","commercial vehicle","vehicle operator","truck permits","certificate appropriate","appropriate driver","drivers assistant","health inspection","rising number","popularity ofood","ofood trucks","trucks push","food mainstream","mainstream region","region problems","new situations","fearing competition","cases creating","creating significant","significant business","chicago long","long held","united states","allow food","food trucks","required trucks","prepare food","commercial condition","food warmer","food truck","truck owners","supporters including","chicago law","law school","school regulations","board cooking","cooking however","food trucks","trucks arequired","park feet","feet away","busy downtown","downtown locations","food truck","truck outfitters","outfitters offer","offer comprehensive","comprehensive start","include concept","us food","food trucks","billion industry","industry food","food truck","truck pop","street food","food coverage","coverage accessdate","accessdate languagen","languagen us","us expansion","single truck","retail outlets","proven possible","possible los","los angeles","angeles based","based gourmet","gourmet ice","coolhaus grew","single truck","carts two","partner stores","september health","health concerns","concerns food","food trucks","unique health","health risks","risks compared","regular land","land based","based restaurants","food safety","food trucks","adequate cleand","cleand hot","hot water","water necessary","hand washing","health codes","boston globe","globe reviewed","city health","health records","found food","food truck","violations times","minor inature","serious violations","fixed location","location restaurants","city closed","closed nine","licensed food","food trucks","serious violations","hand washing","washing around","world file","file roasted","roasted chicken","chicken leg","thumb food","food truck","cuisine offered","food trucks","skills basic","basic facilities","relatively small","small amount","large potential","large sector","employment individuals","individuals facing","facing difficulty","difficulty finding","finding work","formal sectors","often venture","allows entire","entire families","appeal involved","food truck","truck lie","low capital","capital requirement","minimal constraints","locale street","street foods","foods predominantly","predominantly reflect","reflect local","local culture","flavor food","food trucks","trucks appeal","inexpensive means","quick meals","meals location","mouth promotion","street foods","developing countries","countries lessons","asia fao","fao retrieved","retrieved september","september file","file mobile","mobile cafe","south bank","mobile cafe","south bank","brisbane food","food trucks","available across","across australiand","popular trend","median australianational","australianational online","online directory","food trucks","trucks french","french fries","fries chip","chip trucks","belgian countryside","belgian food","food truck","truck association","food trucks","street brussels","brussels municipality","municipality brussels","first european","european city","propose locations","food trucks","football matches","matches belgium","belgium also","also holds","brussels food","food truck","truck festival","may original","original french","plus grand","grand festival","europe google","google translation","largest festival","europe file","file cuisine","cuisine de","de rue","montreal jpg","thumb food","food trucks","canada food","food trucks","trucks also","also commonly","commonly known","present across","country serving","wide variety","cuisines including","including anything","grilled cheese","cheese sandwiches","mexican cuisine","cuisine mexican","vancouver based","based food","food truck","fresh indian","indian cuisine","choice award","best new","new restaurant","year inational","inational airline","airline air","air canada","enroute magazine","magazine poll","poll facing","conventional restaurants","restaurants although","although food","food trucks","outdoor markets","example pizza","pizza trucks","southern france","france since","american style","restaurant quality","quality food","food first","first appeared","owners needed","needed tobtain","tobtain permission","four separate","separate government","government agencies","agencies including","police buthe","buthe trucks","trucks offerings","offerings including","including tacos","popular file","meat sold","day although","although street","street food","food trucks","becoming increasingly","increasingly popular","commercial sector","food trucks","trucks catering","local authorities","special regulations","legal schemes","would help","help torder","commerce form","new food","food truck","truck business","business model","model emerged","make food","food trucks","new vehicles","car makers","makers united","united kingdom","kingdom withe","withe advent","world war","war ii","ii food","food trucks","trucks came","common use","use field","field kitchen","kitchen mobile","mobile canteens","boost morale","provide food","successful tea","tea lady","lady experiment","experiment food","food trucks","trucks today","major trunk","trunk roads","roads athe","athe side","large pedestrian","pedestrian population","town centers","hamburgers chili","ethnic food","people prefer","snack vans","travelling due","low price","price rather","motorway service","service area","area service","service station","high snack","snack van","van british","british museum","museum north","north entrance","entrance geographorguk","geographorguk jpg","snack van","van athe","athe british","british museum","london food","food truck","food truck","hot dogs","food van","popular culture","united states","food truck","truck phenomenon","seen regularly","regularly onational","onational food","j food","food truck","truck nation","nation article","article people","people bothe","bothe great","great food","food truck","truck race","reality series","food network","eat st","st broadcast","sister station","station cooking","cooking channel","channel feature","feature food","food trucks","mobile food","food carts","canada food","food network","network food","food truck","truck face","teams battle","grand prize","prize use","customized food","food truck","truck one","one year","year alson","candy store","store looks","looks behind","gourmet food","food fight","fight episode","tv series","tv series","around restaurants","restaurants trying","eliminate food","food truck","truck competition","american comedy","comedy drama","high end","end chef","simple food","food truck","truck across","across america","campaign donald","donald trump","president marco","marco gutierrez","gutierrez founder","group known","trump warned","msnbc interview","interview thathere","thathere would","taco trucks","every corner","mexican immigration","us continued","list ofood","also campervan","campervan concession","doner kebab","kebab food","food truck","truck rally","rally food","food trucks","tampa florida","florida mobile","mobile catering","catering motorhome","motorhome taco","taco stand","stand externalinks","externalinks category","category catering","catering category","category fast","fast food","food category","category food","food trucks","trucks category","category innovation","innovation category","category snack","snack foods","foods category","category street","street food","food category","category trucks","trucks category","category types"],"new_description":"file chinese food_truck new jpg thumb food_truck new serving chinese food food_truck large cook sell food including ice_cream truck sell frozen food others board kitchens prepare food scratch sandwiches hamburgers french_fries fast_food fare common recent_years associated_withe pop restaurant phenomenon food_trucks cuisine variety specialties ethnic menus become particularly popular food_trucks along portable food_booth food_cart front line street_food_industry serves estimated billion day united_states texas chuckwagon precursor american food_truck later cattle markets north_east kept trail months time father texas charles goodnight article nation texas cattle fitted old united_states army wagon interior stocked kitchenware food medical supplies food consisted dried beans coffee greasy cloth wrapped bacon salt pork beef usually dried salted smoked easy preserve food wagon also stocked water barrel kindle wood heat cook p camping article texas monthly another early relative modern food_truck lunch wagon conceived food vendor walter scott scott cut windows small covered wagon parked front newspaper office providence rhode_island sold sandwiches pies coffee journalists former lunch_counter boy thomas h manufacturing lunch wagons worcester massachusetts introduced various models like owl white_house cafe features included cooking stoves also colored windows later versions food_truck mobile canteen place canteens created late mobile canteen place canteens authorized us_army operated army bases file pizza truck nyc jehjpg thumb pizza truck inew_york_city mobile_food_trucks nicknamed roach coaches around construction sites factories blue collar locations big cities us food_truck traditionally provided means go person grab quick bite low_cost food_trucks sought affordability well popularity continues rise recent_years food_truck resurgence fueled combination post factors due apparent combination economic technological factors combined street_food hip chic increase number ofood_trucks united kai food_truck nation american public media friday july_retrieved september construction business drying leading surplus ofood_trucks chefs high_end_restaurants laid offor experienced without work food_truck seemed clear j construction guys never ate like commonplace american coastal big cities like new_york la gourmet food_trucks found well suburbs small_towns across country food_trucks also hired special_events like weddings movie corporate gatherings also carry advertising promoting companies brands file taco_truck st_louis taco_stand taco_truck st_louis missouri file maximus_minimus_food_truck seattle_washingtonjpg maximus_minimus_food_truck seattle_washington file food_trucks athe food_trucks haiti benefit west los food_trucks athe food_trucks haiti benefit west los_angeles gourmet food_truck modern_day food_truck simply ordinary taco_truck one might find construction fueled trend takes act road usa_today inew_york magazinew york magazine noted_thathe food_truck largely roach coach classification respectable venue aspiring chefs launch careers menus run ethnic fusion cuisine often focusing limited creative dishes reasonable prices offer customers chance experience food otherwise may finding niche seems path success one truck may specialize burgers another may_serve_food trucks even zagat rated tracking food_trucks madeasy social_media like facebook twitter favorite located moment updates specials new menu_items location food impact twitter new_york city food_trucks online offline fact could argued social_media biggest contributing factor breakthrough success gourmet food laura travel twitter usa_today food_truck rally food_truck rallies food_truck parks also growing popularity us rallies people find favorite trucks one place well provide means variety diverse cultures come together find common ground love marcus mobile_food june_retrieved september hosted world largest food_truck rally trucks attending food_truck parks offering permanent locations found urband suburban areas across us popularity ofood_trucks lead creation associations protect supportheir business philadelphia mobile_food association business economics food_trucks subjecto range concerns foodservice businesses generally require fixed address accept delivery supplies commercial kitchen may needed food variety permits tobtain health code tobserve labor fuel costs significant part overhead legal definitions requirements food_trucks vary widely country locality example toronto canada requirements include business liability insurance commercial vehicle operator registration truck permits municipality operated downtown food certificate appropriate driver licenses drivers assistant licenses assistants health inspection rising number popularity ofood_trucks push food mainstream region region problems police new situations brick fearing competition worked cases creating significant business chicago long held distinction city_united_states allow food_trucks cook board required trucks prepare food commercial condition wrap label food load food warmer pressure food_truck owners supporters including university chicago law school regulations changed allow board cooking however food_trucks arequired park feet away restaurant virtually busy downtown locations food_truck outfitters offer comprehensive start services include concept addition j delicious us food_trucks billion industry food_truck pop street_food coverage accessdate languagen us expansion single truck retail outlets proven possible los_angeles based gourmet ice coolhaus grew single truck trucks carts two partner stores september health concerns food_trucks unique health risks compared regular land based restaurants comes food safety prevention illness food_trucks access adequate cleand hot water necessary hand washing vegetables required health codes june boston_globe reviewed city health records found food_truck cited violations times violations minor inature half serious violations compared fixed location_restaurants city closed nine licensed food_trucks closed restaurants majority serious violations lack water hand washing around world file roasted chicken leg truck jpg thumb food_truck taiwan asia cuisine offered food_trucks skills basic facilities relatively small amount capital plentiful large potential income often large sector employment individuals facing difficulty finding work formal sectors often venture industry allows entire families involve preparing cooking public appeal involved sustaining food_truck lie low capital requirement also flexibility hours minimal constraints locale street_foods predominantly reflect local_culture flavor food_trucks appeal consumers thathey often inexpensive means quick meals location word mouth promotion credited street_foods developing_countries lessons asia fao retrieved september file mobile cafe south bank thumb mobile cafe south bank brisbane food_trucks available across australiand covered popular trend median australianational online directory truck food_trucks french_fries chip trucks long staple belgian countryside belgian food_truck association food_trucks street brussels municipality brussels first european city propose locations food_trucks football matches belgium also holds brussels food_truck festival largest kind may original french plus grand festival europe google translation largest festival kind europe file cuisine de rue montreal jpg thumb food_trucks montreal canada food_trucks also_commonly known french cafeteria quebec present across country serving wide_variety cuisines including anything grilled_cheese sandwiches mexican cuisine mexican vancouver based food_truck railway fresh indian cuisine people choice award canada best_new restaurant year inational airline air canada enroute magazine poll facing finals conventional restaurants although food_trucks common outdoor markets example pizza trucks common marseille southern france since american style restaurant quality food first_appeared paris owners needed tobtain permission four separate government_agencies including prefecture police buthe trucks offerings including tacos hamburgers reportedly popular file truck meat sold athend day although street_food mexico food_trucks becoming_increasingly popular owners created association pursue expansion commercial sector addition food_trucks catering streets organized introduce products consumers response popularity local_authorities issued series special regulations incorporate legal schemes would help torder commerce form new food_truck business_model emerged local begin make food_trucks new vehicles car makers united_kingdom withe_advent transport world_war ii food_trucks came common use field kitchen mobile canteens used almost theatres war boost morale provide food result successful tea lady experiment food_trucks today known vans found major trunk roads athe side road areas large pedestrian population village town centers vans specialise food hamburgers chili chips well ethnic food people prefer stop snack vans travelling due low price rather stop motorway service area service station prices high snack van british museum north entrance geographorguk_jpg snack van athe british museum london food_truck food_truck london hot_dogs coffee n food n food van popular_culture united_states food_truck phenomenon seen regularly onational food l alexander j j food_truck nation article people bothe great_food_truck race reality series food_network eat st broadcast sister station cooking channel feature food_trucks mobile_food_carts us canada food_network food_truck face teams battle grand prize use customized food_truck one_year alson network episode kid candy store looks behind scenes gourmet food fight episode tv_series tv_series plot around restaurants trying eliminate food_truck competition american comedy drama chef high_end chef kitchen passion cooking driving operating simple food_truck across america donald campaign donald trump campaign president marco gutierrez founder group known latinos trump warned msnbc interview thathere would taco_trucks every corner mexican immigration us continued twitter list_ofood also campervan concession doner kebab food_truck rally food_trucks tampa_florida mobile_catering motorhome taco_stand externalinks_category catering category_fast_food category_food trucks_category innovation category snack foods category_street_food category trucks_category_types restaurants"},{"title":"Food truck rally","description":"filentspace food trucksjpg righthumb food trucks gather at lentspace inew york city in a food truck rally also called a food truck festival food truck rodeo june raleigh food truck rodeo corrals hungry crowd raleigh news and observer september awesomeness makes food truck rodeo a hit raleigh news and observer food truck gathering or similar names is an event where a group ofood truck s gather in one location thevents typically feature modern food trucks emphasizing food quality and variety a trend whichas grown significantly in popularity in the united statesince approximately formal gatherings ofood trucks as an event in the united states began in the first la food fest held in february appears to have been one of thearliest such eventsbuck stephanie augusthe rise of the social food truck mashable february la street food fest attracts thousands los angeles times reporting on first annuala street food fest held in february with aboutrucks august mayor menino understands bostonians want more food trucks wbureport in wake ofirst annual boston food truck festival held in august october the food truck revolution revs up with a little help the new york times reporting on the off the grid gathering in san francisco which began in june august weekly food truck invasion hits hollywood sun sentinel first miami gathering of trucks occurred in september tampa florida whichas been a food trucks in tampa florida popularea for food trucks and hosted its first food truck event in september augustampa s first food truck rally is a go sat septh creative loafing hosted a rally with food trucks in march said to be a neworld record breaking the priorecord of set in tampa in september march tampa food truck rally sets new guinness record wtsp associated presstory septemberecord tampa food truck rally creates taste for bigger one tampa tribune prior to that an april food truck parade in miami with trucks was declared the largesto date april magicity casino sets guinness world record for food truck parade miami new times references category fast food category food andrink festivals in the united states category food trucks","main_words":["food","righthumb","food_trucks","gather","inew_york_city","food_truck","rally","also_called","food_truck","festival","food_truck","rodeo","june","raleigh","food_truck","rodeo","hungry","crowd","raleigh","news","observer","september","makes","food_truck","rodeo","hit","raleigh","news","observer","food_truck","gathering","similar","names","event","group","ofood","truck","gather","one","location","thevents","typically","feature","modern","food_trucks","emphasizing","food_quality","variety","trend","whichas","grown","significantly","popularity","united","approximately","formal","gatherings","ofood_trucks","event","united_states","began","first","la","food","fest","held","february","appears","one","thearliest","stephanie","augusthe","rise","social","food_truck","february","la","street_food","fest","attracts","thousands","los_angeles","times","reporting","first","street_food","fest","held","february","august","mayor","want","food_trucks","wake","ofirst","annual","boston","food_truck","festival","held","august","october","food_truck","revolution","little","help","new_york","times","reporting","grid","gathering","san_francisco","began","june","august","weekly","food_truck","invasion","hits","hollywood","sun","sentinel","first","miami","gathering","trucks","occurred","september","tampa_florida","whichas","food_trucks","tampa_florida","food_trucks","hosted","first","food_truck","event","september","first","food_truck","rally","go","sat","creative","hosted","rally","food_trucks","march","said","record","breaking","set","tampa","september","march","tampa","food_truck","rally","sets","new","guinness","record","associated","tampa","food_truck","rally","creates","taste","bigger","one","tampa","tribune","prior","april","food_truck","parade","miami","trucks","declared","date","april","casino","sets","guinness_world_record","food_truck","parade","miami","new","times","references_category","fast_food","category_food_andrink","festivals","united_states","category_food","trucks"],"clean_bigrams":[["righthumb","food"],["food","trucks"],["trucks","gather"],["inew","york"],["york","city"],["food","truck"],["truck","rally"],["rally","also"],["also","called"],["food","truck"],["truck","festival"],["festival","food"],["food","truck"],["truck","rodeo"],["rodeo","june"],["june","raleigh"],["raleigh","food"],["food","truck"],["truck","rodeo"],["hungry","crowd"],["crowd","raleigh"],["raleigh","news"],["observer","september"],["makes","food"],["food","truck"],["truck","rodeo"],["hit","raleigh"],["raleigh","news"],["observer","food"],["food","truck"],["truck","gathering"],["similar","names"],["group","ofood"],["ofood","truck"],["one","location"],["location","thevents"],["thevents","typically"],["typically","feature"],["feature","modern"],["modern","food"],["food","trucks"],["trucks","emphasizing"],["emphasizing","food"],["food","quality"],["trend","whichas"],["whichas","grown"],["grown","significantly"],["approximately","formal"],["formal","gatherings"],["gatherings","ofood"],["ofood","trucks"],["united","states"],["states","began"],["first","la"],["la","food"],["food","fest"],["fest","held"],["february","appears"],["stephanie","augusthe"],["augusthe","rise"],["social","food"],["food","truck"],["february","la"],["la","street"],["street","food"],["food","fest"],["fest","attracts"],["attracts","thousands"],["thousands","los"],["los","angeles"],["angeles","times"],["times","reporting"],["street","food"],["food","fest"],["fest","held"],["august","mayor"],["food","trucks"],["wake","ofirst"],["ofirst","annual"],["annual","boston"],["boston","food"],["food","truck"],["truck","festival"],["festival","held"],["august","october"],["food","truck"],["truck","revolution"],["little","help"],["new","york"],["york","times"],["times","reporting"],["grid","gathering"],["san","francisco"],["june","august"],["august","weekly"],["weekly","food"],["food","truck"],["truck","invasion"],["invasion","hits"],["hits","hollywood"],["hollywood","sun"],["sun","sentinel"],["sentinel","first"],["first","miami"],["miami","gathering"],["trucks","occurred"],["september","tampa"],["tampa","florida"],["florida","whichas"],["food","trucks"],["tampa","florida"],["food","trucks"],["first","food"],["food","truck"],["truck","event"],["first","food"],["food","truck"],["truck","rally"],["go","sat"],["food","trucks"],["march","said"],["record","breaking"],["september","march"],["march","tampa"],["tampa","food"],["food","truck"],["truck","rally"],["rally","sets"],["sets","new"],["new","guinness"],["guinness","record"],["tampa","food"],["food","truck"],["truck","rally"],["rally","creates"],["creates","taste"],["bigger","one"],["one","tampa"],["tampa","tribune"],["tribune","prior"],["april","food"],["food","truck"],["truck","parade"],["parade","miami"],["date","april"],["casino","sets"],["sets","guinness"],["guinness","world"],["world","record"],["food","truck"],["truck","parade"],["parade","miami"],["miami","new"],["new","times"],["times","references"],["references","category"],["category","fast"],["fast","food"],["food","category"],["category","food"],["food","andrink"],["andrink","festivals"],["united","states"],["states","category"],["category","food"],["food","trucks"]],"all_collocations":["righthumb food","food trucks","trucks gather","inew york","york city","food truck","truck rally","rally also","also called","food truck","truck festival","festival food","food truck","truck rodeo","rodeo june","june raleigh","raleigh food","food truck","truck rodeo","hungry crowd","crowd raleigh","raleigh news","observer september","makes food","food truck","truck rodeo","hit raleigh","raleigh news","observer food","food truck","truck gathering","similar names","group ofood","ofood truck","one location","location thevents","thevents typically","typically feature","feature modern","modern food","food trucks","trucks emphasizing","emphasizing food","food quality","trend whichas","whichas grown","grown significantly","approximately formal","formal gatherings","gatherings ofood","ofood trucks","united states","states began","first la","la food","food fest","fest held","february appears","stephanie augusthe","augusthe rise","social food","food truck","february la","la street","street food","food fest","fest attracts","attracts thousands","thousands los","los angeles","angeles times","times reporting","street food","food fest","fest held","august mayor","food trucks","wake ofirst","ofirst annual","annual boston","boston food","food truck","truck festival","festival held","august october","food truck","truck revolution","little help","new york","york times","times reporting","grid gathering","san francisco","june august","august weekly","weekly food","food truck","truck invasion","invasion hits","hits hollywood","hollywood sun","sun sentinel","sentinel first","first miami","miami gathering","trucks occurred","september tampa","tampa florida","florida whichas","food trucks","tampa florida","food trucks","first food","food truck","truck event","first food","food truck","truck rally","go sat","food trucks","march said","record breaking","september march","march tampa","tampa food","food truck","truck rally","rally sets","sets new","new guinness","guinness record","tampa food","food truck","truck rally","rally creates","creates taste","bigger one","one tampa","tampa tribune","tribune prior","april food","food truck","truck parade","parade miami","date april","casino sets","sets guinness","guinness world","world record","food truck","truck parade","parade miami","miami new","new times","times references","references category","category fast","fast food","food category","category food","food andrink","andrink festivals","united states","states category","category food","food trucks"],"new_description":"food righthumb food_trucks gather inew_york_city food_truck rally also_called food_truck festival food_truck rodeo june raleigh food_truck rodeo hungry crowd raleigh news observer september makes food_truck rodeo hit raleigh news observer food_truck gathering similar names event group ofood truck gather one location thevents typically feature modern food_trucks emphasizing food_quality variety trend whichas grown significantly popularity united approximately formal gatherings ofood_trucks event united_states began first la food fest held february appears one thearliest stephanie augusthe rise social food_truck february la street_food fest attracts thousands los_angeles times reporting first street_food fest held february august mayor want food_trucks wake ofirst annual boston food_truck festival held august october food_truck revolution little help new_york times reporting grid gathering san_francisco began june august weekly food_truck invasion hits hollywood sun sentinel first miami gathering trucks occurred september tampa_florida whichas food_trucks tampa_florida food_trucks hosted first food_truck event september first food_truck rally go sat creative hosted rally food_trucks march said record breaking set tampa september march tampa food_truck rally sets new guinness record associated tampa food_truck rally creates taste bigger one tampa tribune prior april food_truck parade miami trucks declared date april casino sets guinness_world_record food_truck parade miami new times references_category fast_food category_food_andrink festivals united_states category_food trucks"},{"title":"Food Truckin'","description":"food truckin is the fifth episode of the second season of the animated comedy series bob s burgers and the overall th episode and is written by lizzie molyneux and wendy molyneux andirected by bernarderriman it aired on fox in the united states on april numerous food trucks are parking on the street in front of the restaurant stealing the customers after several failed attempts to make the trucks leave bob ends up buying a food truck of his own teddy fixes up the truck warning bob thathe grill cannot be on athe same time as the truck or it could result in a massive fireball gene proceeds to destroy the truck this way and teddy fixes it up again bob and the kids work from inside the truck and linda is forced to stay inside watching the restauranthe food truck is doing well and bob decides to take it on the go to get more money soon after linda shuts down the restauranto join them on the road bob laments to randy paul f tompkins that he istill noturning a profit and randy mentions lolla pa foods a whichas a prize for the best food truck the belchers hithe road to the festival with linda driving who quickly gets road rage athe festival tina who has reinvented herself as dina hands out free mini burgers to promote the truck and lying abouthe contents of the burgers to the festival goers louise and gene tastest other food truck fare and give bad reviews online giving bob s truck more business bob ends up winning the prize before accidentally letting the festival goers in on the various lies a riot ensues and the belchers and randy are forced to hide in their food truck after the festival goers fall asleep they manage to get away in the food truck before randy starts the grill while driving causing an explosion that forces everyone to walk back town thepisode received a rating and was watched by a total of million people this made ithe fourth most watched show on animation domination that night losing to the cleveland show family guy and the simpsons with million rowan kaiser of the av club gave thepisode a b saying so much of thepisode hinges on the bob randy relationship and their move from rivals to well more friendly rivals doesn t lead anywhere most of the rest of thepisode works though not as well as normal after the highs of thisecond season food truckin is a mildisappointment externalinks category american television episodes category bob s burgerseason episodes category food trucks","main_words":["food","fifth","episode","second","season","animated","comedy","series","bob","burgers","overall","th","episode","written","lizzie","wendy","andirected","aired","fox","united_states","april","numerous","food_trucks","parking","street","front","restaurant","customers","several","failed","attempts","make","trucks","leave","bob","ends","buying","food_truck","teddy","truck","warning","bob","thathe","grill","cannot","athe_time","truck","could","result","massive","fireball","gene","proceeds","destroy","truck","way","teddy","bob","kids","work","inside","truck","linda","forced","stay","inside","watching","restauranthe","food_truck","well","bob","decides","take","go","get","money","soon","linda","shuts","restauranto","join","road","bob","randy","paul","f","tompkins","istill","profit","randy","mentions","foods","whichas","prize","best_food_truck","hithe","road","festival","linda","driving","quickly","gets","road","athe","festival","tina","hands","free","mini","burgers","promote","truck","lying","abouthe","contents","burgers","festival","goers","louise","gene","food_truck","fare","give","bad","reviews","online","giving","bob","truck","business","bob","ends","winning","prize","accidentally","letting","festival","goers","various","lies","randy","forced","hide","food_truck","festival","goers","fall","manage","get","away","food_truck","randy","starts","grill","driving","causing","explosion","forces","everyone","walk","back","town","thepisode","received","rating","watched","total","million_people","made","ithe","fourth","watched","show","animation","domination","night","losing","cleveland","show","family","guy","simpsons","million","club","gave","thepisode","b","saying","much","thepisode","bob","randy","relationship","move","well","friendly","lead","anywhere","rest","thepisode","works","though","well","normal","season","food","externalinks_category_american","television","episodes","category","bob","episodes","category_food","trucks"],"clean_bigrams":[["fifth","episode"],["second","season"],["animated","comedy"],["comedy","series"],["series","bob"],["overall","th"],["th","episode"],["united","states"],["april","numerous"],["numerous","food"],["food","trucks"],["several","failed"],["failed","attempts"],["trucks","leave"],["leave","bob"],["bob","ends"],["food","truck"],["truck","warning"],["warning","bob"],["bob","thathe"],["thathe","grill"],["could","result"],["massive","fireball"],["fireball","gene"],["gene","proceeds"],["kids","work"],["stay","inside"],["inside","watching"],["restauranthe","food"],["food","truck"],["bob","decides"],["money","soon"],["linda","shuts"],["restauranto","join"],["road","bob"],["bob","randy"],["randy","paul"],["paul","f"],["f","tompkins"],["randy","mentions"],["best","food"],["food","truck"],["hithe","road"],["linda","driving"],["quickly","gets"],["gets","road"],["athe","festival"],["festival","tina"],["free","mini"],["mini","burgers"],["lying","abouthe"],["abouthe","contents"],["festival","goers"],["goers","louise"],["food","truck"],["truck","fare"],["give","bad"],["bad","reviews"],["reviews","online"],["online","giving"],["giving","bob"],["business","bob"],["bob","ends"],["accidentally","letting"],["festival","goers"],["various","lies"],["food","truck"],["festival","goers"],["goers","fall"],["get","away"],["food","truck"],["randy","starts"],["driving","causing"],["forces","everyone"],["walk","back"],["back","town"],["town","thepisode"],["thepisode","received"],["million","people"],["made","ithe"],["ithe","fourth"],["watched","show"],["animation","domination"],["night","losing"],["cleveland","show"],["show","family"],["family","guy"],["club","gave"],["gave","thepisode"],["b","saying"],["bob","randy"],["randy","relationship"],["lead","anywhere"],["thepisode","works"],["works","though"],["season","food"],["externalinks","category"],["category","american"],["american","television"],["television","episodes"],["episodes","category"],["category","bob"],["episodes","category"],["category","food"],["food","trucks"]],"all_collocations":["fifth episode","second season","animated comedy","comedy series","series bob","overall th","th episode","united states","april numerous","numerous food","food trucks","several failed","failed attempts","trucks leave","leave bob","bob ends","food truck","truck warning","warning bob","bob thathe","thathe grill","could result","massive fireball","fireball gene","gene proceeds","kids work","stay inside","inside watching","restauranthe food","food truck","bob decides","money soon","linda shuts","restauranto join","road bob","bob randy","randy paul","paul f","f tompkins","randy mentions","best food","food truck","hithe road","linda driving","quickly gets","gets road","athe festival","festival tina","free mini","mini burgers","lying abouthe","abouthe contents","festival goers","goers louise","food truck","truck fare","give bad","bad reviews","reviews online","online giving","giving bob","business bob","bob ends","accidentally letting","festival goers","various lies","food truck","festival goers","goers fall","get away","food truck","randy starts","driving causing","forces everyone","walk back","back town","town thepisode","thepisode received","million people","made ithe","ithe fourth","watched show","animation domination","night losing","cleveland show","show family","family guy","club gave","gave thepisode","b saying","bob randy","randy relationship","lead anywhere","thepisode works","works though","season food","externalinks category","category american","american television","television episodes","episodes category","category bob","episodes category","category food","food trucks"],"new_description":"food fifth episode second season animated comedy series bob burgers overall th episode written lizzie wendy andirected aired fox united_states april numerous food_trucks parking street front restaurant customers several failed attempts make trucks leave bob ends buying food_truck teddy truck warning bob thathe grill cannot athe_time truck could result massive fireball gene proceeds destroy truck way teddy bob kids work inside truck linda forced stay inside watching restauranthe food_truck well bob decides take go get money soon linda shuts restauranto join road bob randy paul f tompkins istill profit randy mentions foods whichas prize best_food_truck hithe road festival linda driving quickly gets road athe festival tina hands free mini burgers promote truck lying abouthe contents burgers festival goers louise gene food_truck fare give bad reviews online giving bob truck business bob ends winning prize accidentally letting festival goers various lies randy forced hide food_truck festival goers fall manage get away food_truck randy starts grill driving causing explosion forces everyone walk back town thepisode received rating watched total million_people made ithe fourth watched show animation domination night losing cleveland show family guy simpsons million club gave thepisode b saying much thepisode bob randy relationship move well friendly lead anywhere rest thepisode works though well normal season food externalinks_category_american television episodes category bob episodes category_food trucks"},{"title":"Food trucks in Tampa, Florida","description":"food trucks have become a popular phenomenon in tampand st petersburg florida laura reiley tampa food truck rally features cheap meals on wheelseptember tampa bay times food trucks have a large following in and aroundowntown tampand have been supported by tampa mayor bobuckhorn whorganized a monthly food truck rally downtownjodie tillman food trucks roll more variety into downtown tampa lunch scene november tampa bay times there is also an evening ofood trucks and short movies flicks and food trucks between downtown and the channelside district food truck rallies drawing thousands of people have taken place in seminole heights and south tampa regular food truck event is also held athe farmer s market in odessa florida with live music st petersburg followed suit athend of withe city council moving to ease restrictions on their operationmarissa lang st petersburg poised to do an about face on food trucks december tampa bay times a food truck square was established in at monstah lobstah platt street for food truck offerings days a weekmarissa lang a food truck rally every day of the week february tbtcom on augustampa hosted the world s largest food truck rally with food trucks attending world s largest food truck rally descends on tampaugusthe previous record of trucks waset in miami floridabout miami food trucks tampa broke its own record with food trucks at a rally in march food truck rally sets world record march tampa bay business journal food trucks in downtown tampa have included burger culture not your ordinary food truck nyofoodtruck michelle faedo killer samich la creperia caf maggie on the move stinky bunz o macaliciousuns organic mobile munchiez the cuppin cake taco bus fatortillas jerk hut coconut bo s nelly nel s fire monkey gone bananas and wicked witches food truck rally today in downtown tampa tbocomarch tbocom taco bus stationary restaurant on hillsborough avenue has branched out into two restaurant locations in st petersburg floridandowntown tampa food trucks are also a fixture at special events and concerts critics pointo the competition the trucks create for existing restaurantsee also food truck list ofood trucks category economy of tampa florida category culture of tampa florida category food trucks tampa florida","main_words":["food","trucks","become_popular","phenomenon","st_petersburg","florida","laura","tampa","food_truck","rally","features","cheap","meals","tampa_bay","times","food_trucks","large","following","supported","tampa","mayor","monthly","food_truck","rally","food_trucks","roll","variety","downtown","tampa","lunch","scene","november","tampa_bay","times","also","evening","ofood_trucks","short","movies","food_trucks","downtown","district","food_truck","rallies","drawing","thousands","people","taken_place","heights","south","tampa","regular","food_truck","event","also","held_athe","farmer","market","florida","live_music","st_petersburg","followed","suit","athend","withe","city_council","moving","ease","restrictions","lang","st_petersburg","face","food_trucks","december","tampa_bay","times","food_truck","square","established","offerings","days","lang","food_truck","rally","every_day","week","february","hosted","world","largest","food_truck","rally","food_trucks","attending","world","largest","food_truck","rally","previous","record","trucks","waset","miami","miami","food_trucks","tampa","broke","record","food_trucks","rally","march","food_truck","rally","sets","march","tampa_bay","business_journal","food_trucks","downtown","tampa","included","burger","culture","ordinary","food_truck","michelle","killer","la","caf","maggie","move","organic","mobile","cake","taco_bus","jerk","hut","coconut","fire","monkey","gone","bananas","food_truck","rally","today","downtown","tampa","taco_bus","stationary","restaurant","avenue","two","restaurant","locations","st_petersburg","tampa","food_trucks","also","special_events","concerts","critics","pointo","competition","trucks","create","existing","also","food_truck","economy","culture","trucks","tampa_florida"],"clean_bigrams":[["food","trucks"],["popular","phenomenon"],["st","petersburg"],["petersburg","florida"],["florida","laura"],["tampa","food"],["food","truck"],["truck","rally"],["rally","features"],["features","cheap"],["cheap","meals"],["tampa","bay"],["bay","times"],["times","food"],["food","trucks"],["large","following"],["tampa","mayor"],["monthly","food"],["food","truck"],["truck","rally"],["food","trucks"],["trucks","roll"],["downtown","tampa"],["tampa","lunch"],["lunch","scene"],["scene","november"],["november","tampa"],["tampa","bay"],["bay","times"],["evening","ofood"],["ofood","trucks"],["short","movies"],["food","trucks"],["district","food"],["food","truck"],["truck","rallies"],["rallies","drawing"],["drawing","thousands"],["taken","place"],["south","tampa"],["tampa","regular"],["regular","food"],["food","truck"],["truck","event"],["also","held"],["held","athe"],["athe","farmer"],["live","music"],["music","st"],["st","petersburg"],["petersburg","followed"],["followed","suit"],["suit","athend"],["withe","city"],["city","council"],["council","moving"],["ease","restrictions"],["lang","st"],["st","petersburg"],["food","trucks"],["trucks","december"],["december","tampa"],["tampa","bay"],["bay","times"],["times","food"],["food","truck"],["truck","square"],["food","truck"],["truck","offerings"],["offerings","days"],["food","truck"],["truck","rally"],["rally","every"],["every","day"],["week","february"],["largest","food"],["food","truck"],["truck","rally"],["food","trucks"],["trucks","attending"],["attending","world"],["largest","food"],["food","truck"],["truck","rally"],["previous","record"],["trucks","waset"],["miami","food"],["food","trucks"],["trucks","tampa"],["tampa","broke"],["food","trucks"],["march","food"],["food","truck"],["truck","rally"],["rally","sets"],["sets","world"],["world","record"],["record","march"],["march","tampa"],["tampa","bay"],["bay","business"],["business","journal"],["journal","food"],["food","trucks"],["downtown","tampa"],["included","burger"],["burger","culture"],["ordinary","food"],["food","truck"],["caf","maggie"],["organic","mobile"],["cake","taco"],["taco","bus"],["jerk","hut"],["hut","coconut"],["fire","monkey"],["monkey","gone"],["gone","bananas"],["food","truck"],["truck","rally"],["rally","today"],["downtown","tampa"],["taco","bus"],["bus","stationary"],["stationary","restaurant"],["two","restaurant"],["restaurant","locations"],["st","petersburg"],["tampa","food"],["food","trucks"],["special","events"],["concerts","critics"],["critics","pointo"],["trucks","create"],["also","food"],["food","truck"],["truck","list"],["list","ofood"],["ofood","trucks"],["trucks","category"],["category","economy"],["tampa","florida"],["florida","category"],["category","culture"],["tampa","florida"],["florida","category"],["category","food"],["food","trucks"],["trucks","tampa"],["tampa","florida"]],"all_collocations":["food trucks","popular phenomenon","st petersburg","petersburg florida","florida laura","tampa food","food truck","truck rally","rally features","features cheap","cheap meals","tampa bay","bay times","times food","food trucks","large following","tampa mayor","monthly food","food truck","truck rally","food trucks","trucks roll","downtown tampa","tampa lunch","lunch scene","scene november","november tampa","tampa bay","bay times","evening ofood","ofood trucks","short movies","food trucks","district food","food truck","truck rallies","rallies drawing","drawing thousands","taken place","south tampa","tampa regular","regular food","food truck","truck event","also held","held athe","athe farmer","live music","music st","st petersburg","petersburg followed","followed suit","suit athend","withe city","city council","council moving","ease restrictions","lang st","st petersburg","food trucks","trucks december","december tampa","tampa bay","bay times","times food","food truck","truck square","food truck","truck offerings","offerings days","food truck","truck rally","rally every","every day","week february","largest food","food truck","truck rally","food trucks","trucks attending","attending world","largest food","food truck","truck rally","previous record","trucks waset","miami food","food trucks","trucks tampa","tampa broke","food trucks","march food","food truck","truck rally","rally sets","sets world","world record","record march","march tampa","tampa bay","bay business","business journal","journal food","food trucks","downtown tampa","included burger","burger culture","ordinary food","food truck","caf maggie","organic mobile","cake taco","taco bus","jerk hut","hut coconut","fire monkey","monkey gone","gone bananas","food truck","truck rally","rally today","downtown tampa","taco bus","bus stationary","stationary restaurant","two restaurant","restaurant locations","st petersburg","tampa food","food trucks","special events","concerts critics","critics pointo","trucks create","also food","food truck","truck list","list ofood","ofood trucks","trucks category","category economy","tampa florida","florida category","category culture","tampa florida","florida category","category food","food trucks","trucks tampa","tampa florida"],"new_description":"food trucks become_popular phenomenon st_petersburg florida laura tampa food_truck rally features cheap meals tampa_bay times food_trucks large following supported tampa mayor monthly food_truck rally food_trucks roll variety downtown tampa lunch scene november tampa_bay times also evening ofood_trucks short movies food_trucks downtown district food_truck rallies drawing thousands people taken_place heights south tampa regular food_truck event also held_athe farmer market florida live_music st_petersburg followed suit athend withe city_council moving ease restrictions lang st_petersburg face food_trucks december tampa_bay times food_truck square established street_food_truck offerings days lang food_truck rally every_day week february hosted world largest food_truck rally food_trucks attending world largest food_truck rally previous record trucks waset miami miami food_trucks tampa broke record food_trucks rally march food_truck rally sets world_record march tampa_bay business_journal food_trucks downtown tampa included burger culture ordinary food_truck michelle killer la caf maggie move organic mobile cake taco_bus jerk hut coconut fire monkey gone bananas food_truck rally today downtown tampa taco_bus stationary restaurant avenue two restaurant locations st_petersburg tampa food_trucks also special_events concerts critics pointo competition trucks create existing also food_truck list_ofood_trucks_category economy tampa_florida_category culture tampa_florida_category_food trucks tampa_florida"},{"title":"Foodservice","description":"foodservice us english or catering industry british english defines those businesses institutions and companies responsible for any meal prepared outside the home this industry includes restaurant school and hospital cafeteria s catering operations and many other formats the companies that supply foodservice operators are called foodservice distributor s foodservice distributorsell goods like small wares kitchen utensils and foodsome companies manufacture products in both consumer and foodservice versions the consumer version usually comes individual sized packages with elaborate label design foretail sale the foodservice version is packaged in a much larger industry industrial size and often lacks the colorfulabel designs of the consumer version the food system including food service and food retailing supplied trillion worth ofood in the us billion of which wasupplied by food service facilities defined by the usdas any place which prepares food for immediate consumption site including locations that are not primarily engaged in dispensing mealsuch as recreational facilities and retail stores full service and fast food restaurants account for of all foodservice sales with full service restaurants accounting for just slightly more than fast food in the shifts in the market shares between fast food and full service restaurants to market demand changes the offerings of both foods and services of both types of restaurants according to the national restaurant association a growing trend among us consumers for the food service industry is global cuisine with of us consumers eating more widely in than in of consumers eating ethnicuisines at least once a month and trying a new ethnicuisine within the last year the foodservice distributor market size is as of billion in the us the national broadline market is controlled by us foods and sysco which combined have share of the market and were blocked fromerging by the ftc foreasons of market power health concerns foodservice tends to be on average higher in calories and lower in key nutrients than foods prepared at home most restaurants including fast food have added more salads and fruit offerings and either by choice or in response to localegislation provided nutrition labeling in the us the fda is moving towards establishing uniform guidelines for fast food and restaurant labeling proposed rules were published in and final regulations published on december which supersede state and local menu labeling provisions going into effect decemberesearchashown thathe new labels may influence consumer choices but primarily if it provides unexpected information and that health conscious consumers aresistanto changing behaviors based on menu labeling fast food restaurants arexpected by thers to do better under the new menu labeling than full service restaurants as full service restaurants tend toffer much more calorie dense foods with ofast food meals being between and calories and less than above calories in contrast full service restaurants of meals are above calories when consumers are aware of the calorie counts at full service restaurants choose lower calorie options and consumers also reduce their calorie intake over the rest of the day eating one meal away from homeach week translates to extra pounds each year or a daily increase of calories and a decrease in diet quality by points on thealthy eating index in addition the likelihood of contracting a food borne illnessuch as e coli hepatitis h pylori listeria salmonella norovirus and typhoid is greatly increasedue to food not being kept below degrees fahrenheit or cooked to a temperature of higher than degrees fahrenheit lack of hot water and washing hands for at least seconds for food handlers contaminated cutting boards and other kitchen tools i enrolled in got a gpa in and earned certification in a restaurant operations courseand improperly sanitized plating apparatus especially cutlery table service table service is food service served to the customer s table by waiter s and waitresses also known aservers table service is common in most restaurants while for some fast food restaurant s counter service is the common form for pub s and bar establishment bars counter service is the norm in the united kingdom with table service the customer generally pays athend of meal various methods of table service can be provided such asilver service gueridon service gueridon service is a form ofood service provided by restaurants to their customers this type of servicencompasses preparing food primarily salad s main dish esuch as beef tartare or desserts in direct view of the guests using a gueridon a gueridon typically consists of a trolley that is equipped to transport prepare cook and serve food there is a gas hob chopping board cutlery drawer cold store depending on the trolley type and general working area see also list of restauranterminology externalinks category foodservice category serving andining","main_words":["foodservice","us","english","catering","industry","british_english","defines","businesses","institutions","companies","responsible","meal","prepared","outside","home","industry","includes","restaurant","school","hospital","cafeteria","catering","operations","many","formats","companies","supply","foodservice","operators","called","foodservice","distributor","foodservice","goods","like","small","kitchen","utensils","companies","manufacture","products","consumer","foodservice","versions","consumer","version","usually","comes","individual","sized","packages","elaborate","label","design","sale","foodservice","version","packaged","much_larger","industry","industrial","size","often","lacks","designs","consumer","version","food","system","including","food_service","food","retailing","supplied","trillion","worth","ofood","us_billion","wasupplied","food_service","facilities","defined","place","prepares","food","immediate","consumption","site","including","locations","primarily","engaged","mealsuch","recreational","facilities","retail","stores","full_service","fast_food_restaurants","account","foodservice","sales","full_service","restaurants","accounting","slightly","fast_food","shifts","fast_food","full_service","restaurants","market","demand","changes","offerings","foods","services","types","restaurants","according","national","restaurant","association","growing","trend","among","us","consumers","global","cuisine","us","consumers","eating","widely","consumers","eating","least","month","trying","new","within","last","year","foodservice","distributor","market","size","billion","us_national","market","controlled","us","foods","sysco","combined","share","market","blocked","market","power","health","concerns","foodservice","tends","average","higher","calories","lower","key","foods","prepared","home","restaurants","including","fast_food","added","salads","fruit","offerings","either","choice","response","provided","nutrition","labeling","us","fda","moving","towards","establishing","uniform","guidelines","fast_food_restaurant","labeling","proposed","rules","published","final","regulations","published","december","state","labeling","provisions","going","effect","thathe","new","may","influence","consumer","choices","primarily","provides","unexpected","information","health","conscious","consumers","changing","behaviors","based","menu","labeling","fast_food_restaurants","arexpected","better","new","menu","labeling","full_service","restaurants","full_service","restaurants","tend","toffer","much","calorie","dense","foods","ofast_food","meals","calories","less","calories","contrast","full_service","restaurants","meals","calories","consumers","aware","calorie","counts","full_service","restaurants","choose","lower","calorie","options","consumers","also","reduce","calorie","intake","rest_day","eating","one","meal","away","week","translates","extra","pounds","year","daily","increase","calories","decrease","diet","quality","points","eating","index","addition","likelihood","food","borne","e","coli","hepatitis","h","salmonella","typhoid","greatly","food","kept","degrees","fahrenheit","cooked","temperature","higher","degrees","fahrenheit","lack","hot","water","washing","hands","least","seconds","food","handlers","contaminated","cutting","boards","kitchen","tools","enrolled","got","earned","certification","restaurant","operations","especially","cutlery","table_service","table_service","food_service","served","customer","table","waiter","waitresses","also_known","table_service","common","restaurants","fast_food_restaurant","counter","service","common","form","pub","bar_establishment_bars","counter","service","norm","united_kingdom","table_service","customer","generally","pays","athend","meal","various","methods","table_service","provided","service","gueridon","service","gueridon","service","form","ofood","service","provided","restaurants","customers","type","preparing","food","primarily","salad","main","dish","beef","desserts","direct","view","guests","using","gueridon","gueridon","typically","consists","trolley","equipped","transport","prepare","cook","serve_food","gas","board","cutlery","cold","store","depending","trolley","type","general","working","area","see_also","list","restauranterminology","externalinks_category","foodservice","category","serving","andining"],"clean_bigrams":[["foodservice","us"],["us","english"],["catering","industry"],["industry","british"],["british","english"],["english","defines"],["businesses","institutions"],["companies","responsible"],["meal","prepared"],["prepared","outside"],["industry","includes"],["includes","restaurant"],["restaurant","school"],["hospital","cafeteria"],["catering","operations"],["supply","foodservice"],["foodservice","operators"],["called","foodservice"],["foodservice","distributor"],["goods","like"],["like","small"],["kitchen","utensils"],["companies","manufacture"],["manufacture","products"],["foodservice","versions"],["consumer","version"],["version","usually"],["usually","comes"],["comes","individual"],["individual","sized"],["sized","packages"],["elaborate","label"],["label","design"],["foodservice","version"],["much","larger"],["larger","industry"],["industry","industrial"],["industrial","size"],["often","lacks"],["consumer","version"],["food","system"],["system","including"],["including","food"],["food","service"],["food","retailing"],["retailing","supplied"],["supplied","trillion"],["trillion","worth"],["worth","ofood"],["us","billion"],["food","service"],["service","facilities"],["facilities","defined"],["prepares","food"],["immediate","consumption"],["consumption","site"],["site","including"],["including","locations"],["primarily","engaged"],["recreational","facilities"],["retail","stores"],["stores","full"],["full","service"],["fast","food"],["food","restaurants"],["restaurants","account"],["foodservice","sales"],["full","service"],["service","restaurants"],["restaurants","accounting"],["fast","food"],["market","shares"],["fast","food"],["full","service"],["service","restaurants"],["market","demand"],["demand","changes"],["restaurants","according"],["national","restaurant"],["restaurant","association"],["growing","trend"],["trend","among"],["among","us"],["us","consumers"],["food","service"],["service","industry"],["global","cuisine"],["us","consumers"],["consumers","eating"],["consumers","eating"],["last","year"],["foodservice","distributor"],["distributor","market"],["market","size"],["us","foods"],["market","power"],["power","health"],["health","concerns"],["concerns","foodservice"],["foodservice","tends"],["average","higher"],["foods","prepared"],["restaurants","including"],["including","fast"],["fast","food"],["fruit","offerings"],["provided","nutrition"],["nutrition","labeling"],["moving","towards"],["towards","establishing"],["establishing","uniform"],["uniform","guidelines"],["fast","food"],["food","restaurant"],["restaurant","labeling"],["labeling","proposed"],["proposed","rules"],["final","regulations"],["regulations","published"],["local","menu"],["menu","labeling"],["labeling","provisions"],["provisions","going"],["thathe","new"],["may","influence"],["influence","consumer"],["consumer","choices"],["provides","unexpected"],["unexpected","information"],["health","conscious"],["conscious","consumers"],["changing","behaviors"],["behaviors","based"],["menu","labeling"],["labeling","fast"],["fast","food"],["food","restaurants"],["restaurants","arexpected"],["new","menu"],["menu","labeling"],["full","service"],["service","restaurants"],["full","service"],["service","restaurants"],["restaurants","tend"],["tend","toffer"],["toffer","much"],["calorie","dense"],["dense","foods"],["ofast","food"],["food","meals"],["contrast","full"],["full","service"],["service","restaurants"],["calorie","counts"],["full","service"],["service","restaurants"],["restaurants","choose"],["choose","lower"],["lower","calorie"],["calorie","options"],["consumers","also"],["also","reduce"],["calorie","intake"],["day","eating"],["eating","one"],["one","meal"],["meal","away"],["week","translates"],["extra","pounds"],["daily","increase"],["diet","quality"],["eating","index"],["food","borne"],["e","coli"],["coli","hepatitis"],["hepatitis","h"],["degrees","fahrenheit"],["degrees","fahrenheit"],["fahrenheit","lack"],["hot","water"],["washing","hands"],["least","seconds"],["food","handlers"],["handlers","contaminated"],["contaminated","cutting"],["cutting","boards"],["kitchen","tools"],["earned","certification"],["restaurant","operations"],["especially","cutlery"],["cutlery","table"],["table","service"],["service","table"],["table","service"],["food","service"],["service","served"],["waitresses","also"],["also","known"],["table","service"],["fast","food"],["food","restaurant"],["counter","service"],["common","form"],["bar","establishment"],["establishment","bars"],["bars","counter"],["counter","service"],["united","kingdom"],["table","service"],["customer","generally"],["generally","pays"],["pays","athend"],["meal","various"],["various","methods"],["table","service"],["service","provided"],["service","gueridon"],["gueridon","service"],["service","gueridon"],["gueridon","service"],["form","ofood"],["ofood","service"],["service","provided"],["preparing","food"],["food","primarily"],["primarily","salad"],["main","dish"],["direct","view"],["guests","using"],["gueridon","typically"],["typically","consists"],["transport","prepare"],["prepare","cook"],["serve","food"],["board","cutlery"],["cold","store"],["store","depending"],["trolley","type"],["general","working"],["working","area"],["area","see"],["see","also"],["also","list"],["restauranterminology","externalinks"],["externalinks","category"],["category","foodservice"],["foodservice","category"],["category","serving"],["serving","andining"]],"all_collocations":["foodservice us","us english","catering industry","industry british","british english","english defines","businesses institutions","companies responsible","meal prepared","prepared outside","industry includes","includes restaurant","restaurant school","hospital cafeteria","catering operations","supply foodservice","foodservice operators","called foodservice","foodservice distributor","goods like","like small","kitchen utensils","companies manufacture","manufacture products","foodservice versions","consumer version","version usually","usually comes","comes individual","individual sized","sized packages","elaborate label","label design","foodservice version","much larger","larger industry","industry industrial","industrial size","often lacks","consumer version","food system","system including","including food","food service","food retailing","retailing supplied","supplied trillion","trillion worth","worth ofood","us billion","food service","service facilities","facilities defined","prepares food","immediate consumption","consumption site","site including","including locations","primarily engaged","recreational facilities","retail stores","stores full","full service","fast food","food restaurants","restaurants account","foodservice sales","full service","service restaurants","restaurants accounting","fast food","market shares","fast food","full service","service restaurants","market demand","demand changes","restaurants according","national restaurant","restaurant association","growing trend","trend among","among us","us consumers","food service","service industry","global cuisine","us consumers","consumers eating","consumers eating","last year","foodservice distributor","distributor market","market size","us foods","market power","power health","health concerns","concerns foodservice","foodservice tends","average higher","foods prepared","restaurants including","including fast","fast food","fruit offerings","provided nutrition","nutrition labeling","moving towards","towards establishing","establishing uniform","uniform guidelines","fast food","food restaurant","restaurant labeling","labeling proposed","proposed rules","final regulations","regulations published","local menu","menu labeling","labeling provisions","provisions going","thathe new","may influence","influence consumer","consumer choices","provides unexpected","unexpected information","health conscious","conscious consumers","changing behaviors","behaviors based","menu labeling","labeling fast","fast food","food restaurants","restaurants arexpected","new menu","menu labeling","full service","service restaurants","full service","service restaurants","restaurants tend","tend toffer","toffer much","calorie dense","dense foods","ofast food","food meals","contrast full","full service","service restaurants","calorie counts","full service","service restaurants","restaurants choose","choose lower","lower calorie","calorie options","consumers also","also reduce","calorie intake","day eating","eating one","one meal","meal away","week translates","extra pounds","daily increase","diet quality","eating index","food borne","e coli","coli hepatitis","hepatitis h","degrees fahrenheit","degrees fahrenheit","fahrenheit lack","hot water","washing hands","least seconds","food handlers","handlers contaminated","contaminated cutting","cutting boards","kitchen tools","earned certification","restaurant operations","especially cutlery","cutlery table","table service","service table","table service","food service","service served","waitresses also","also known","table service","fast food","food restaurant","counter service","common form","bar establishment","establishment bars","bars counter","counter service","united kingdom","table service","customer generally","generally pays","pays athend","meal various","various methods","table service","service provided","service gueridon","gueridon service","service gueridon","gueridon service","form ofood","ofood service","service provided","preparing food","food primarily","primarily salad","main dish","direct view","guests using","gueridon typically","typically consists","transport prepare","prepare cook","serve food","board cutlery","cold store","store depending","trolley type","general working","working area","area see","see also","also list","restauranterminology externalinks","externalinks category","category foodservice","foodservice category","category serving","serving andining"],"new_description":"foodservice us english catering industry british_english defines businesses institutions companies responsible meal prepared outside home industry includes restaurant school hospital cafeteria catering operations many formats companies supply foodservice operators called foodservice distributor foodservice goods like small kitchen utensils companies manufacture products consumer foodservice versions consumer version usually comes individual sized packages elaborate label design sale foodservice version packaged much_larger industry industrial size often lacks designs consumer version food system including food_service food retailing supplied trillion worth ofood us_billion wasupplied food_service facilities defined place prepares food immediate consumption site including locations primarily engaged mealsuch recreational facilities retail stores full_service fast_food_restaurants account foodservice sales full_service restaurants accounting slightly fast_food shifts market_shares fast_food full_service restaurants market demand changes offerings foods services types restaurants according national restaurant association growing trend among us consumers food_service_industry global cuisine us consumers eating widely consumers eating least month trying new within last year foodservice distributor market size billion us_national market controlled us foods sysco combined share market blocked market power health concerns foodservice tends average higher calories lower key foods prepared home restaurants including fast_food added salads fruit offerings either choice response provided nutrition labeling us fda moving towards establishing uniform guidelines fast_food_restaurant labeling proposed rules published final regulations published december state local_menu labeling provisions going effect thathe new may influence consumer choices primarily provides unexpected information health conscious consumers changing behaviors based menu labeling fast_food_restaurants arexpected better new menu labeling full_service restaurants full_service restaurants tend toffer much calorie dense foods ofast_food meals calories less calories contrast full_service restaurants meals calories consumers aware calorie counts full_service restaurants choose lower calorie options consumers also reduce calorie intake rest_day eating one meal away week translates extra pounds year daily increase calories decrease diet quality points eating index addition likelihood food borne e coli hepatitis h salmonella typhoid greatly food kept degrees fahrenheit cooked temperature higher degrees fahrenheit lack hot water washing hands least seconds food handlers contaminated cutting boards kitchen tools enrolled got earned certification restaurant operations especially cutlery table_service table_service food_service served customer table waiter waitresses also_known table_service common restaurants fast_food_restaurant counter service common form pub bar_establishment_bars counter service norm united_kingdom table_service customer generally pays athend meal various methods table_service provided service gueridon service gueridon service form ofood service provided restaurants customers type preparing food primarily salad main dish beef desserts direct view guests using gueridon gueridon typically consists trolley equipped transport prepare cook serve_food gas board cutlery cold store depending trolley type general working area see_also list restauranterminology externalinks_category foodservice category serving andining"},{"title":"Footprint Travel Guides","description":"footprintravel guides is the imprint ofootprint handbooks ltd a publisher of guidebook s based in bath somerset bath in the united kingdom particularly noted for their coverage of latin america their south american handbook first published in is in its th edition and is updated annually the company now publish more than titles covering many destinationsince all handbook guides are published in lightweight hardback the initial focus on travel broadened to include activity and lifestyle guides on topicsuch as travel photography travelling with children mountain biking diving surfing skiing snowboarding and body and soul retreats the range currently offered by footprint includes footprint handbooks footprint focus footprint dream trip footprint with kids footprint activity and lifestyle guides and footprint full colour guides globe pequot press acquired footprint in when globe pequot wasold by parent morris communications to rowman littlefield footprint was retained the company was incorporated in december as trade and travel publications ltd companies house webcheck company number south american handbook in the company published the south american handbook a new edition of a guide for business travellers first published in by the federation of british industry and entitled the anglo south american handbook oxfordictionary of national biography koebel william henry the handbook remained the company s only guidebook for the next years over the years the handbook expanded its coverage to include all the countries of south america central america mexico and the caribbean it continued to include data for businessmen but by the s was increasingly aimed at leisure travellers particularly backpackers following the gringo trail in the th edition was almost pages long in the handbook wasplithe mexico central america handbook and the caribbean islands handbook were published aseparate volumes anduring the s the company startedeveloping a new travel guide series using the south american handbook title as the flagship footprint imprintrade and travel publications changed its name to footprint handbooks ltd in august by there were over a dozen guides in the series the series grew quickly and in footprint launched its firsthematic guide surfing europe this was followed by further thematic guidesuch as diving the world snowboarding the world body and soul escapes travel with kids and european city breaks in a brand new series footprint dream trip was launched official history the official history of the company is included in the majority ofootprint s publications the footprint story externalinks official website category book publishing companies of the united kingdom category travel guide books category companies based in bath somerset","main_words":["guides","imprint","handbooks","ltd","publisher","guidebook","based","bath_somerset","bath","united_kingdom","particularly","noted","coverage","latin_america","south_american","handbook","first_published","th_edition","updated","annually","company","publish","titles","covering","many","handbook","guides","published","lightweight","hardback","initial","focus","travel","include","activity","lifestyle","guides","topicsuch","travel","photography","travelling","children","mountain_biking","diving","surfing","skiing","snowboarding","body","soul","retreats","range","currently","offered","footprint","includes","footprint","handbooks","footprint","focus","footprint","dream","trip","footprint","kids","footprint","activity","lifestyle","guides","footprint","full","colour","guides","globe","press","acquired","footprint","globe","wasold","parent","morris","communications","footprint","retained","company","incorporated","december","trade","travel","publications","ltd","companies","house","company","number","south_american","handbook","company","published","south_american","handbook","new","edition","guide","business_travellers","first_published","federation","british","industry","entitled","anglo","south_american","handbook","oxfordictionary","national","biography","koebel","william","henry","handbook","remained","company","guidebook","next","years","years","handbook","expanded","coverage","include","countries","south_america","central_america","mexico","caribbean","continued","include","data","businessmen","increasingly","aimed","leisure","travellers","particularly","backpackers","following","trail","th_edition","almost","pages","long","handbook","mexico","central_america","handbook","caribbean","islands","handbook","published","aseparate","volumes","anduring","company","new","travel_guide","series","using","south_american","handbook","title","flagship","footprint","travel","publications","changed","name","footprint","handbooks","ltd","august","dozen","guides","series","series","grew","quickly","footprint","launched","guide","surfing","europe","followed","thematic","guidesuch","diving","world","snowboarding","world","body","soul","escapes","travel","kids","european","city","breaks","brand","new","series","footprint","dream","trip","launched","official","history","official","history","company","included","majority","publications","footprint","story","externalinks_official_website_category","book_publishing_companies","united_kingdom","category_travel_guide_books","category_companies_based","bath_somerset"],"clean_bigrams":[["handbooks","ltd"],["bath","somerset"],["somerset","bath"],["united","kingdom"],["kingdom","particularly"],["particularly","noted"],["latin","america"],["south","american"],["american","handbook"],["handbook","first"],["first","published"],["th","edition"],["updated","annually"],["titles","covering"],["covering","many"],["handbook","guides"],["lightweight","hardback"],["initial","focus"],["include","activity"],["lifestyle","guides"],["travel","photography"],["photography","travelling"],["children","mountain"],["mountain","biking"],["biking","diving"],["diving","surfing"],["surfing","skiing"],["skiing","snowboarding"],["soul","retreats"],["range","currently"],["currently","offered"],["footprint","includes"],["includes","footprint"],["footprint","handbooks"],["handbooks","footprint"],["footprint","focus"],["focus","footprint"],["footprint","dream"],["dream","trip"],["trip","footprint"],["kids","footprint"],["footprint","activity"],["lifestyle","guides"],["footprint","full"],["full","colour"],["colour","guides"],["guides","globe"],["press","acquired"],["acquired","footprint"],["parent","morris"],["morris","communications"],["travel","publications"],["publications","ltd"],["ltd","companies"],["companies","house"],["company","number"],["number","south"],["south","american"],["american","handbook"],["company","published"],["south","american"],["american","handbook"],["new","edition"],["business","travellers"],["travellers","first"],["first","published"],["british","industry"],["anglo","south"],["south","american"],["american","handbook"],["handbook","oxfordictionary"],["national","biography"],["biography","koebel"],["koebel","william"],["william","henry"],["handbook","remained"],["next","years"],["handbook","expanded"],["south","america"],["america","central"],["central","america"],["america","mexico"],["include","data"],["increasingly","aimed"],["leisure","travellers"],["travellers","particularly"],["particularly","backpackers"],["backpackers","following"],["th","edition"],["almost","pages"],["pages","long"],["mexico","central"],["central","america"],["america","handbook"],["caribbean","islands"],["islands","handbook"],["published","aseparate"],["aseparate","volumes"],["volumes","anduring"],["new","travel"],["travel","guide"],["guide","series"],["series","using"],["south","american"],["american","handbook"],["handbook","title"],["flagship","footprint"],["travel","publications"],["publications","changed"],["footprint","handbooks"],["handbooks","ltd"],["dozen","guides"],["series","grew"],["grew","quickly"],["footprint","launched"],["guide","surfing"],["surfing","europe"],["thematic","guidesuch"],["world","snowboarding"],["world","body"],["soul","escapes"],["escapes","travel"],["european","city"],["city","breaks"],["brand","new"],["new","series"],["series","footprint"],["footprint","dream"],["dream","trip"],["launched","official"],["official","history"],["official","history"],["footprint","story"],["story","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","book"],["book","publishing"],["publishing","companies"],["united","kingdom"],["kingdom","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","companies"],["companies","based"],["bath","somerset"]],"all_collocations":["handbooks ltd","bath somerset","somerset bath","united kingdom","kingdom particularly","particularly noted","latin america","south american","american handbook","handbook first","first published","th edition","updated annually","titles covering","covering many","handbook guides","lightweight hardback","initial focus","include activity","lifestyle guides","travel photography","photography travelling","children mountain","mountain biking","biking diving","diving surfing","surfing skiing","skiing snowboarding","soul retreats","range currently","currently offered","footprint includes","includes footprint","footprint handbooks","handbooks footprint","footprint focus","focus footprint","footprint dream","dream trip","trip footprint","kids footprint","footprint activity","lifestyle guides","footprint full","full colour","colour guides","guides globe","press acquired","acquired footprint","parent morris","morris communications","travel publications","publications ltd","ltd companies","companies house","company number","number south","south american","american handbook","company published","south american","american handbook","new edition","business travellers","travellers first","first published","british industry","anglo south","south american","american handbook","handbook oxfordictionary","national biography","biography koebel","koebel william","william henry","handbook remained","next years","handbook expanded","south america","america central","central america","america mexico","include data","increasingly aimed","leisure travellers","travellers particularly","particularly backpackers","backpackers following","th edition","almost pages","pages long","mexico central","central america","america handbook","caribbean islands","islands handbook","published aseparate","aseparate volumes","volumes anduring","new travel","travel guide","guide series","series using","south american","american handbook","handbook title","flagship footprint","travel publications","publications changed","footprint handbooks","handbooks ltd","dozen guides","series grew","grew quickly","footprint launched","guide surfing","surfing europe","thematic guidesuch","world snowboarding","world body","soul escapes","escapes travel","european city","city breaks","brand new","new series","series footprint","footprint dream","dream trip","launched official","official history","official history","footprint story","story externalinks","externalinks official","official website","website category","category book","book publishing","publishing companies","united kingdom","kingdom category","category travel","travel guide","guide books","books category","category companies","companies based","bath somerset"],"new_description":"guides imprint handbooks ltd publisher guidebook based bath_somerset bath united_kingdom particularly noted coverage latin_america south_american handbook first_published th_edition updated annually company publish titles covering many handbook guides published lightweight hardback initial focus travel include activity lifestyle guides topicsuch travel photography travelling children mountain_biking diving surfing skiing snowboarding body soul retreats range currently offered footprint includes footprint handbooks footprint focus footprint dream trip footprint kids footprint activity lifestyle guides footprint full colour guides globe press acquired footprint globe wasold parent morris communications footprint retained company incorporated december trade travel publications ltd companies house company number south_american handbook company published south_american handbook new edition guide business_travellers first_published federation british industry entitled anglo south_american handbook oxfordictionary national biography koebel william henry handbook remained company guidebook next years years handbook expanded coverage include countries south_america central_america mexico caribbean continued include data businessmen increasingly aimed leisure travellers particularly backpackers following trail th_edition almost pages long handbook mexico central_america handbook caribbean islands handbook published aseparate volumes anduring company new travel_guide series using south_american handbook title flagship footprint travel publications changed name footprint handbooks ltd august dozen guides series series grew quickly footprint launched guide surfing europe followed thematic guidesuch diving world snowboarding world body soul escapes travel kids european city breaks brand new series footprint dream trip launched official history official history company included majority publications footprint story externalinks_official_website_category book_publishing_companies united_kingdom category_travel_guide_books category_companies_based bath_somerset"},{"title":"Forbes Travel Guide","description":"forbes travel guide formerly known as mobil guide or mobil travel guide is a starating service and series of travel guide s for hotels restaurants and spas in forbes travel guide published its last set of guidebooks and onovember launched its new online home forbestravelguidecom which covers numerous international destinations including hong kong macau beijing singapore shanghai mexico the caribbean latin america japan thailand london forbestravelguidecombines forbes travel guide s five star travel ratingsystem with insights and perspectives from forbes travel guide s own inspectors founded by mobil in forbes travel guide is the oldestravel guide in the united states ratings are given by anonymous paid staff members in stars with no half stars or zero stars based on objective criteria forbes travel guide five starating is a considerable honor with only hotels and restaurants receiving the top honor the ratingserve as a certification mark in that mobil had registered trademarks for the phrases andesigns indicating each starating level and allowed only rated establishments to display them initially guides weregional and limited to the united states and canada the first issued in covered five states in the southwest and south central united states in this guide was revised and volumes covering the northeastern states the great lakes and californiand the west were introduced guides covering the middle atlantic states and the northwestern states were introduced in a guide for the southeastern states was introduced although only one state covered by this volume tennessee had any mobil service stations later the number of volumes was expanded as regions covered by the guide shrank for instance california was covered by two volumes one for the north and one for the south city guides also followed in forbes travel guide launched the international staratings program for hotels and spas withe release of the inaugural forbes travel guide beijing and forbes travel guide hong kong and macau published in print by exxonmobil travel publications until the guide was published online by howstuffworkscom in october exxonmobilicensed the brand to the five staratings corporation which is owned by internet entrepreneur and webmd founder jeff arnold five star travel corporation entered into a licensing agreement with forbes mediand renamed the star awards and guidebook series forbes travel guide forbes travel guide s new online home forbestravelguidecom was launched in which marked the last year of publication of the traditional printed guidebook seriestaratings the mobil travel guide staratings provided ratings and reviews of hotels restaurants and spas on a scale of one star average to good to five stars one of the best in the country starting in forbes travel guide has continued the five staratings with ratings categories ofive star four star and recommended and has a team of inspectors who anonymously evaluate properties against proprietary standards externalinks category restaurant guides category travel guide books","main_words":["forbes","travel_guide","formerly_known","mobil","guide","mobil","travel_guide","starating","service","series","travel_guide","hotels_restaurants","spas","forbes_travel_guide","published","last","set","guidebooks","onovember","launched","new","online","home","covers","numerous","international","destinations","including","hong_kong","macau","beijing","singapore","shanghai","mexico","caribbean","latin_america","japan","thailand","london","forbes_travel_guide","five","star","travel","insights","perspectives","forbes_travel_guide","inspectors","founded","mobil","forbes_travel_guide","guide","united_states","ratings","given","anonymous","paid","staff","members","stars","half","stars","zero","stars","based","objective","criteria","forbes_travel_guide","five","starating","considerable","honor","hotels_restaurants","receiving","top","honor","certification","mark","mobil","registered","phrases","indicating","starating","level","allowed","rated","establishments","display","initially","guides","limited","united_states","canada","covered","five","states","southwest","south","central","united_states","guide","revised","volumes","covering","northeastern","states","great","lakes","californiand","west","introduced","guides","covering","middle","atlantic","states","states","introduced","guide","southeastern","states","introduced","although","one","state","covered","volume","tennessee","mobil","service","stations","later","number","volumes","expanded","regions","covered","guide","instance","california","covered","two","volumes","one","north","one","south","city_guides","also","followed","forbes_travel_guide","launched","international","staratings","program","hotels","spas","withe","release","inaugural","forbes_travel_guide","beijing","forbes_travel_guide","hong_kong","macau","published","print","travel","publications","guide","published","online","october","brand","five","staratings","corporation","owned","internet","entrepreneur","founder","jeff","arnold","five","star","travel","corporation","entered","licensing","agreement","forbes","mediand","renamed","star","awards","guidebook","series","forbes_travel_guide","forbes_travel_guide","new","online","home","launched","marked","last","year","publication","traditional","printed","guidebook","mobil","travel_guide","staratings","provided","ratings","reviews","hotels_restaurants","spas","scale","one","star","average","good","five","stars","one","best","country","starting","forbes_travel_guide","continued","five","staratings","ratings","categories","ofive","star","four","star","recommended","team","inspectors","evaluate","properties","proprietary","standards","guides_category_travel_guide_books"],"clean_bigrams":[["forbes","travel"],["travel","guide"],["guide","formerly"],["formerly","known"],["mobil","guide"],["mobil","travel"],["travel","guide"],["starating","service"],["travel","guide"],["hotels","restaurants"],["forbes","travel"],["travel","guide"],["guide","published"],["last","set"],["onovember","launched"],["new","online"],["online","home"],["covers","numerous"],["numerous","international"],["international","destinations"],["destinations","including"],["including","hong"],["hong","kong"],["kong","macau"],["macau","beijing"],["beijing","singapore"],["singapore","shanghai"],["shanghai","mexico"],["caribbean","latin"],["latin","america"],["america","japan"],["japan","thailand"],["thailand","london"],["forbes","travel"],["travel","guide"],["guide","five"],["five","star"],["star","travel"],["forbes","travel"],["travel","guide"],["inspectors","founded"],["forbes","travel"],["travel","guide"],["united","states"],["states","ratings"],["anonymous","paid"],["paid","staff"],["staff","members"],["half","stars"],["zero","stars"],["stars","based"],["objective","criteria"],["criteria","forbes"],["forbes","travel"],["travel","guide"],["guide","five"],["five","starating"],["considerable","honor"],["hotels","restaurants"],["restaurants","receiving"],["top","honor"],["certification","mark"],["starating","level"],["rated","establishments"],["initially","guides"],["united","states"],["first","issued"],["covered","five"],["five","states"],["south","central"],["central","united"],["united","states"],["volumes","covering"],["northeastern","states"],["great","lakes"],["introduced","guides"],["guides","covering"],["middle","atlantic"],["atlantic","states"],["southeastern","states"],["introduced","although"],["one","state"],["state","covered"],["volume","tennessee"],["mobil","service"],["service","stations"],["stations","later"],["regions","covered"],["instance","california"],["two","volumes"],["volumes","one"],["south","city"],["city","guides"],["guides","also"],["also","followed"],["forbes","travel"],["travel","guide"],["guide","launched"],["international","staratings"],["staratings","program"],["spas","withe"],["withe","release"],["inaugural","forbes"],["forbes","travel"],["travel","guide"],["guide","beijing"],["forbes","travel"],["travel","guide"],["guide","hong"],["hong","kong"],["kong","macau"],["macau","published"],["travel","publications"],["guide","published"],["published","online"],["five","staratings"],["staratings","corporation"],["internet","entrepreneur"],["founder","jeff"],["jeff","arnold"],["arnold","five"],["five","star"],["star","travel"],["travel","corporation"],["corporation","entered"],["licensing","agreement"],["forbes","mediand"],["mediand","renamed"],["star","awards"],["guidebook","series"],["series","forbes"],["forbes","travel"],["travel","guide"],["guide","forbes"],["forbes","travel"],["travel","guide"],["new","online"],["online","home"],["last","year"],["traditional","printed"],["printed","guidebook"],["mobil","travel"],["travel","guide"],["guide","staratings"],["staratings","provided"],["provided","ratings"],["hotels","restaurants"],["one","star"],["star","average"],["five","stars"],["stars","one"],["country","starting"],["forbes","travel"],["travel","guide"],["five","staratings"],["ratings","categories"],["categories","ofive"],["ofive","star"],["star","four"],["four","star"],["evaluate","properties"],["proprietary","standards"],["standards","externalinks"],["externalinks","category"],["category","restaurant"],["restaurant","guides"],["guides","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["forbes travel","travel guide","guide formerly","formerly known","mobil guide","mobil travel","travel guide","starating service","travel guide","hotels restaurants","forbes travel","travel guide","guide published","last set","onovember launched","new online","online home","covers numerous","numerous international","international destinations","destinations including","including hong","hong kong","kong macau","macau beijing","beijing singapore","singapore shanghai","shanghai mexico","caribbean latin","latin america","america japan","japan thailand","thailand london","forbes travel","travel guide","guide five","five star","star travel","forbes travel","travel guide","inspectors founded","forbes travel","travel guide","united states","states ratings","anonymous paid","paid staff","staff members","half stars","zero stars","stars based","objective criteria","criteria forbes","forbes travel","travel guide","guide five","five starating","considerable honor","hotels restaurants","restaurants receiving","top honor","certification mark","starating level","rated establishments","initially guides","united states","first issued","covered five","five states","south central","central united","united states","volumes covering","northeastern states","great lakes","introduced guides","guides covering","middle atlantic","atlantic states","southeastern states","introduced although","one state","state covered","volume tennessee","mobil service","service stations","stations later","regions covered","instance california","two volumes","volumes one","south city","city guides","guides also","also followed","forbes travel","travel guide","guide launched","international staratings","staratings program","spas withe","withe release","inaugural forbes","forbes travel","travel guide","guide beijing","forbes travel","travel guide","guide hong","hong kong","kong macau","macau published","travel publications","guide published","published online","five staratings","staratings corporation","internet entrepreneur","founder jeff","jeff arnold","arnold five","five star","star travel","travel corporation","corporation entered","licensing agreement","forbes mediand","mediand renamed","star awards","guidebook series","series forbes","forbes travel","travel guide","guide forbes","forbes travel","travel guide","new online","online home","last year","traditional printed","printed guidebook","mobil travel","travel guide","guide staratings","staratings provided","provided ratings","hotels restaurants","one star","star average","five stars","stars one","country starting","forbes travel","travel guide","five staratings","ratings categories","categories ofive","ofive star","star four","four star","evaluate properties","proprietary standards","standards externalinks","externalinks category","category restaurant","restaurant guides","guides category","category travel","travel guide","guide books"],"new_description":"forbes travel_guide formerly_known mobil guide mobil travel_guide starating service series travel_guide hotels_restaurants spas forbes_travel_guide published last set guidebooks onovember launched new online home covers numerous international destinations including hong_kong macau beijing singapore shanghai mexico caribbean latin_america japan thailand london forbes_travel_guide five star travel insights perspectives forbes_travel_guide inspectors founded mobil forbes_travel_guide guide united_states ratings given anonymous paid staff members stars half stars zero stars based objective criteria forbes_travel_guide five starating considerable honor hotels_restaurants receiving top honor certification mark mobil registered phrases indicating starating level allowed rated establishments display initially guides limited united_states canada first_issued covered five states southwest south central united_states guide revised volumes covering northeastern states great lakes californiand west introduced guides covering middle atlantic states states introduced guide southeastern states introduced although one state covered volume tennessee mobil service stations later number volumes expanded regions covered guide instance california covered two volumes one north one south city_guides also followed forbes_travel_guide launched international staratings program hotels spas withe release inaugural forbes_travel_guide beijing forbes_travel_guide hong_kong macau published print travel publications guide published online october brand five staratings corporation owned internet entrepreneur founder jeff arnold five star travel corporation entered licensing agreement forbes mediand renamed star awards guidebook series forbes_travel_guide forbes_travel_guide new online home launched marked last year publication traditional printed guidebook mobil travel_guide staratings provided ratings reviews hotels_restaurants spas scale one star average good five stars one best country starting forbes_travel_guide continued five staratings ratings categories ofive star four star recommended team inspectors evaluate properties proprietary standards externalinks_category_restaurant guides_category_travel_guide_books"},{"title":"Free lunch","description":"a free lunch is a sales enticementhat offers a meal at no cost in order to attract customers and increase revenue s from other offerings it was a traditionce common in western saloons in many places in the united states withe phrase appearing in us literature from abouto the s thesestablishments included a free lunch varying from rudimentary to quitelaborate withe purchase of at least one drink these free lunches were typically worth far more than the price of a single drink the saloon keeperelied on thexpectation that most customers would buy more than one drink and thathe practice would build patronage for other times of day free food or drink isometimesupplied in contemporary times often by gambling establishmentsuch as casino s the saying there ain t no such thing as a free lunch refers to this customeaning thathings which appear to be free are always paid for in some way history in the new york times wrote of elaborate free lunches as a custom peculiar to the crescent city new orleans louisiana new orleansaying in every one of the drinking saloons which fill the city a meal of some sort iserved freevery day the custom appears to have prevailed long before the american civil war i am informed thathere are thousands of men in this city who liventirely on the meals obtained in this way as described by this reporter a free lunch counter is a great leveler of social class in the united states classes and when a man takes up a position before one of them he must give up all hope of appearing either dignified or consequential inew orleans all classes of the people can be seen partaking of these free meals and pushing and scrambling to be helped a second time at one saloon six men werengaged in preparing drinks for the crowd that stood in front of the counter i noticed thathe price charged for every kind of liquor was fifteen cents punch drink punches and cobblers costing no more than a glass of ale the repast included immense dishes of butter large baskets of bread a monster silver boiler filled with a most excellent oyster soup a round of beef that must have weighed at least forty pounds vessels filled with potatoestewed mutton stewed tomatoes and macaroni la fran ais the proprietor said thathe patrons included at least a dozen old fellows who come herevery day take one fifteen cent drink eat a dinner which would have costhem in a restaurant and then complain thathe beef is tough or the potatoes watery free lunch in the southe new york times feb p re value of the lunch thisource speaks of patrons who take one fifteen cent drink and eat a dinner which would have costhem in a restaurant in is roughly equivalento today in today today meaning c figures from free lunch fiend the nearly indigent free lunch fiend was a recognized social type anew york timestory about loafers and free lunch men who matthew toil not neither do they spin yethey get along visiting saloons trying to bum drinks from strangershould this inexplicable lunch fiend not happen to be called to drink he devours whatever he cand while the bartender is occupied tries to escape unnoticed the loafer and free lunch men the new york times june p in american saloon bars from the late th century until prohibition bouncer doorman bouncers had in addition to theirole of removing drunks who were too intoxicated to keep buying drinks fighters and troublemakers the unusual role of protecting the saloon s free buffeto attract business many saloons lured customers with offers of a free lunch usually well salted to inspire drinking and the saloon bouncer was generally on hand to discourage those with too hearty appetites drinking in america history search for consensus drinking and the war against pluralism lender mark edward martin james kirby the free press new york the custom was well developed in san francisco an story on the fading of the days of the california gold rush calls the free lunch fiend the only landmark of the past it asks how do all these idle people live and asserts it is the free lunch system that keeps them alive take away that peculiarly california institution and they would all starve old things passing away the new york times march p rudyard kipling writing inoted how he came upon a barroom full of bad salon pictures in which men withats on the backs of their heads were wolfing food from a counter it was the institution of the free lunch i had struck you paid for a drink and got as much as you wanted to eat for something less than a rupee a day a man can feed himself sumptuously in san francisco even thoughe be a bankrupt remember this if ever you are stranded in these parts published in book form in based on essays which appeared in periodicals in a novel compared a war zone to the free lunch experience by saying the shells and shrapnels was flyin round and over our heads thicker than hungry homelessness bum s homeless people around a free lunch counter controversies the temperance movement opposed the free lunch as promoting the consumption of alcohol an history of the movement writes in the cities there are prominent rooms on fashionable streets that hold outhe sign free lunch does it mean that some philanthropist has gone systematically to work setting outables placing abouthem a score of the most beautiful and winning young ladies hiring a band of music ah no there are men who do all this in order to hide the main feature of their peculiar institution out of sight is a well filled bar which is the centre about which all these other things are made to revolve all the gathered fascinations and attractions are aso many baits to allure men into the nethat ispread for them thus consummate art plies the work of death and virtue reputation and every good are sacrificed athese worse than moloch shrines p a number of writers however suggesthathe free lunch actually performed a social reliefunction reformer william t stead commented that in winter in the suffering of the poor ineed ofood would have been very much greater had it not been for thelp given by the labor unions to their members and for an agency which without pretending to be of much account from a charitable point of view nevertheless fed more hungry people in chicago than all the other agencies religious charitable and municipal putogether i refer to the free lunch of the saloons there are from six to seven thousand saloons in chicago in one half of these a free lunch is provided every day of the week he states that in many cases the free lunch is really a free lunch citing an example of a saloon which did not insist on a drink purchase although commenting thathisaloon was better than its neighborstead cites a newspaper s estimate thathe saloon keepers fed people a day and thathis represented a contribution of about a week toward the relief of the destitute in chicago pp in the new york state legislature passed the raines lawhich was intended to regulate liquor traffic among its many provisions one forbade the sale of liquor unless accompanied by food another outlawed the free lunch in however it was amended to allow free lunches again revolt in clubdom probability of passage of amendments to raines law causes consternation free lunch to come back the boston globe april p see also buffet happy hour national schoolunch act no free lunch organizationo free lunch in search and optimization oslo breakfasthe free breakfasthat replaced a free lunch pending meal potluck tanstaafl the free lunch is over computing western saloon category drinking culture category restauranterminology category free meals category lunch category marketing","main_words":["free","lunch","sales","offers","meal","cost","order","attract","customers","increase","revenue","offerings","common","western","saloons","many","places","united_states","withe","phrase","appearing","us","literature","abouto","thesestablishments","included","free_lunch","varying","withe","purchase","least_one","drink","free_lunches","typically","worth","far","price","single","drink","saloon","customers","would","buy","one","drink","thathe","practice","would","build","patronage","times","day","free","food","drink","contemporary","times","often","gambling","casino","saying","thing","free_lunch","refers","appear","free","always","paid","way","history","new_york","times","wrote","elaborate","free_lunches","custom","peculiar","crescent","city_new","new","every","one","drinking","saloons","fill","city","meal","sort","iserved","day","custom","appears","long","american_civil_war","informed","thathere","thousands","men","city","meals","obtained","way","described","reporter","great","social","class","united_states","classes","man","takes","position","one","must","give","hope","appearing","either","inew_orleans","classes","people","seen","free","meals","pushing","helped","second","time","one","saloon","six","men","preparing","drinks","crowd","stood","front","counter","noticed","thathe","price","charged","every","kind","liquor","fifteen","cents","punch","drink","costing","glass","ale","included","dishes","butter","large","baskets","bread","monster","silver","filled","excellent","oyster","soup","round","beef","must","weighed","least","forty","pounds","vessels","filled","mutton","stewed","tomatoes","macaroni","la","fran","proprietor","said","thathe","patrons","included","least","dozen","old","fellows","come","day","take","one","fifteen","cent","drink","eat","dinner","would","costhem","restaurant","thathe","beef","tough","potatoes","free_lunch","new_york","times","feb","p","value","lunch","speaks","patrons","take","one","fifteen","cent","drink","eat","dinner","would","costhem","restaurant","roughly","equivalento","today","today","today","meaning","c","figures","free_lunch","fiend","nearly","free_lunch","fiend","recognized","social","type","york","free_lunch","men","matthew","neither","spin","yethey","get","along","visiting","saloons","trying","drinks","lunch","fiend","happen","called","drink","whatever","cand","bartender","occupied","tries","escape","free_lunch","men","new_york","times","june","p","american","saloon","bars","late_th","century","prohibition","bouncer_doorman","bouncers","addition","removing","intoxicated","keep","buying","drinks","unusual","role","protecting","saloon","free","attract","business","many","saloons","lured","customers","offers","free_lunch","usually","well","salted","inspire","drinking","saloon","bouncer","generally","hand","discourage","drinking","america","history","search","consensus","drinking","war","mark","edward","martin","james","kirby","free","press","new_york","custom","well","developed","san_francisco","story","days","california","gold","rush","calls","free_lunch","fiend","landmark","past","idle","people","live","free_lunch","system","keeps","alive","take_away","california","institution","would","old","things","passing","away","new_york","times_march","p","writing","came","upon","full","bad","salon","pictures","men","backs","heads","food","counter","institution","free_lunch","struck","paid","drink","got","much","wanted","eat","something","less","day","man","feed","san_francisco","even","bankrupt","remember","ever","stranded","parts","published","book","form","based","essays","appeared","periodicals","novel","compared","war","zone","free_lunch","experience","saying","shells","round","heads","hungry","homelessness","homeless","people","around","temperance","movement","opposed","free_lunch","promoting","consumption","alcohol","history","movement","writes","cities","prominent","rooms","fashionable","streets","hold","outhe","sign","free_lunch","mean","gone","work","setting","placing","score","beautiful","winning","young","ladies","hiring","band","music","men","order","hide","main","feature","peculiar","institution","sight","well","filled","bar","centre","things","made","gathered","attractions","many","allure","men","thus","art","work","death","virtue","reputation","every","good","worse","shrines","p","number","writers","however","free_lunch","actually","performed","social","william","commented","winter","suffering","poor","ineed","ofood","would","much","greater","given","labor","unions","members","agency","without","much","account","charitable","point","view","nevertheless","fed","hungry","people","chicago","agencies","religious","charitable","municipal","putogether","refer","free_lunch","saloons","six","seven","thousand","saloons","chicago","one","half","free_lunch","provided","every_day","week","states","many_cases","free_lunch","really","free_lunch","citing","example","saloon","drink","purchase","although","commenting","better","cites","newspaper","estimate","thathe","saloon","keepers","fed","people","day","thathis","represented","contribution","week","toward","relief","chicago","pp","new_york","state","legislature","passed","intended","regulate","liquor","traffic","among","many","provisions","one","sale","liquor","unless","accompanied","food","another","free_lunch","however","amended","allow","free_lunches","revolt","passage","amendments","law","causes","free_lunch","come","back","boston_globe","april","p","see_also","buffet","happy_hour","national","act","free_lunch","free_lunch","search","optimization","oslo","free","replaced","free_lunch","pending","meal","free_lunch","computing","western","saloon","meals","category","lunch","category","marketing"],"clean_bigrams":[["free","lunch"],["attract","customers"],["increase","revenue"],["western","saloons"],["many","places"],["united","states"],["states","withe"],["withe","phrase"],["phrase","appearing"],["us","literature"],["thesestablishments","included"],["free","lunch"],["lunch","varying"],["withe","purchase"],["least","one"],["one","drink"],["free","lunches"],["typically","worth"],["worth","far"],["single","drink"],["customers","would"],["would","buy"],["one","drink"],["thathe","practice"],["practice","would"],["would","build"],["build","patronage"],["day","free"],["free","food"],["contemporary","times"],["times","often"],["free","lunch"],["lunch","refers"],["always","paid"],["way","history"],["new","york"],["york","times"],["times","wrote"],["elaborate","free"],["free","lunches"],["custom","peculiar"],["crescent","city"],["city","new"],["new","orleans"],["orleans","louisiana"],["louisiana","new"],["every","one"],["drinking","saloons"],["sort","iserved"],["custom","appears"],["american","civil"],["civil","war"],["informed","thathere"],["meals","obtained"],["free","lunch"],["lunch","counter"],["social","class"],["united","states"],["states","classes"],["man","takes"],["must","give"],["appearing","either"],["inew","orleans"],["free","meals"],["second","time"],["one","saloon"],["saloon","six"],["six","men"],["preparing","drinks"],["noticed","thathe"],["thathe","price"],["price","charged"],["every","kind"],["fifteen","cents"],["cents","punch"],["punch","drink"],["butter","large"],["large","baskets"],["monster","silver"],["excellent","oyster"],["oyster","soup"],["least","forty"],["forty","pounds"],["pounds","vessels"],["vessels","filled"],["mutton","stewed"],["stewed","tomatoes"],["macaroni","la"],["la","fran"],["proprietor","said"],["said","thathe"],["thathe","patrons"],["patrons","included"],["dozen","old"],["old","fellows"],["day","take"],["take","one"],["one","fifteen"],["fifteen","cent"],["cent","drink"],["drink","eat"],["thathe","beef"],["free","lunch"],["new","york"],["york","times"],["times","feb"],["feb","p"],["take","one"],["one","fifteen"],["fifteen","cent"],["cent","drink"],["drink","eat"],["roughly","equivalento"],["equivalento","today"],["today","today"],["today","today"],["today","meaning"],["meaning","c"],["c","figures"],["free","lunch"],["lunch","fiend"],["free","lunch"],["lunch","fiend"],["recognized","social"],["social","type"],["free","lunch"],["lunch","men"],["spin","yethey"],["yethey","get"],["get","along"],["along","visiting"],["visiting","saloons"],["saloons","trying"],["lunch","fiend"],["occupied","tries"],["free","lunch"],["lunch","men"],["new","york"],["york","times"],["times","june"],["june","p"],["american","saloon"],["saloon","bars"],["late","th"],["th","century"],["prohibition","bouncer"],["bouncer","doorman"],["doorman","bouncers"],["keep","buying"],["buying","drinks"],["unusual","role"],["attract","business"],["business","many"],["many","saloons"],["saloons","lured"],["lured","customers"],["free","lunch"],["lunch","usually"],["usually","well"],["well","salted"],["inspire","drinking"],["saloon","bouncer"],["america","history"],["history","search"],["consensus","drinking"],["mark","edward"],["edward","martin"],["martin","james"],["james","kirby"],["free","press"],["press","new"],["new","york"],["well","developed"],["san","francisco"],["california","gold"],["gold","rush"],["rush","calls"],["free","lunch"],["lunch","fiend"],["idle","people"],["people","live"],["free","lunch"],["lunch","system"],["alive","take"],["take","away"],["california","institution"],["old","things"],["things","passing"],["passing","away"],["new","york"],["york","times"],["times","march"],["march","p"],["came","upon"],["bad","salon"],["salon","pictures"],["free","lunch"],["something","less"],["san","francisco"],["francisco","even"],["bankrupt","remember"],["parts","published"],["book","form"],["novel","compared"],["war","zone"],["free","lunch"],["lunch","experience"],["hungry","homelessness"],["homeless","people"],["people","around"],["free","lunch"],["lunch","counter"],["temperance","movement"],["movement","opposed"],["free","lunch"],["movement","writes"],["prominent","rooms"],["fashionable","streets"],["hold","outhe"],["outhe","sign"],["sign","free"],["free","lunch"],["work","setting"],["winning","young"],["young","ladies"],["ladies","hiring"],["main","feature"],["peculiar","institution"],["well","filled"],["filled","bar"],["allure","men"],["virtue","reputation"],["every","good"],["shrines","p"],["writers","however"],["free","lunch"],["lunch","actually"],["actually","performed"],["poor","ineed"],["ineed","ofood"],["ofood","would"],["much","greater"],["labor","unions"],["much","account"],["charitable","point"],["view","nevertheless"],["nevertheless","fed"],["hungry","people"],["agencies","religious"],["religious","charitable"],["municipal","putogether"],["free","lunch"],["seven","thousand"],["thousand","saloons"],["one","half"],["free","lunch"],["provided","every"],["every","day"],["many","cases"],["free","lunch"],["free","lunch"],["lunch","citing"],["drink","purchase"],["purchase","although"],["although","commenting"],["estimate","thathe"],["thathe","saloon"],["saloon","keepers"],["keepers","fed"],["fed","people"],["thathis","represented"],["week","toward"],["chicago","pp"],["new","york"],["york","state"],["state","legislature"],["legislature","passed"],["regulate","liquor"],["liquor","traffic"],["traffic","among"],["many","provisions"],["provisions","one"],["liquor","unless"],["unless","accompanied"],["food","another"],["free","lunch"],["allow","free"],["free","lunches"],["law","causes"],["free","lunch"],["come","back"],["boston","globe"],["globe","april"],["april","p"],["p","see"],["see","also"],["also","buffet"],["buffet","happy"],["happy","hour"],["hour","national"],["free","lunch"],["free","lunch"],["optimization","oslo"],["free","lunch"],["lunch","pending"],["pending","meal"],["free","lunch"],["computing","western"],["western","saloon"],["saloon","category"],["category","drinking"],["drinking","culture"],["culture","category"],["category","restauranterminology"],["restauranterminology","category"],["category","free"],["free","meals"],["meals","category"],["category","lunch"],["lunch","category"],["category","marketing"]],"all_collocations":["free lunch","attract customers","increase revenue","western saloons","many places","united states","states withe","withe phrase","phrase appearing","us literature","thesestablishments included","free lunch","lunch varying","withe purchase","least one","one drink","free lunches","typically worth","worth far","single drink","customers would","would buy","one drink","thathe practice","practice would","would build","build patronage","day free","free food","contemporary times","times often","free lunch","lunch refers","always paid","way history","new york","york times","times wrote","elaborate free","free lunches","custom peculiar","crescent city","city new","new orleans","orleans louisiana","louisiana new","every one","drinking saloons","sort iserved","custom appears","american civil","civil war","informed thathere","meals obtained","free lunch","lunch counter","social class","united states","states classes","man takes","must give","appearing either","inew orleans","free meals","second time","one saloon","saloon six","six men","preparing drinks","noticed thathe","thathe price","price charged","every kind","fifteen cents","cents punch","punch drink","butter large","large baskets","monster silver","excellent oyster","oyster soup","least forty","forty pounds","pounds vessels","vessels filled","mutton stewed","stewed tomatoes","macaroni la","la fran","proprietor said","said thathe","thathe patrons","patrons included","dozen old","old fellows","day take","take one","one fifteen","fifteen cent","cent drink","drink eat","thathe beef","free lunch","new york","york times","times feb","feb p","take one","one fifteen","fifteen cent","cent drink","drink eat","roughly equivalento","equivalento today","today today","today today","today meaning","meaning c","c figures","free lunch","lunch fiend","free lunch","lunch fiend","recognized social","social type","free lunch","lunch men","spin yethey","yethey get","get along","along visiting","visiting saloons","saloons trying","lunch fiend","occupied tries","free lunch","lunch men","new york","york times","times june","june p","american saloon","saloon bars","late th","th century","prohibition bouncer","bouncer doorman","doorman bouncers","keep buying","buying drinks","unusual role","attract business","business many","many saloons","saloons lured","lured customers","free lunch","lunch usually","usually well","well salted","inspire drinking","saloon bouncer","america history","history search","consensus drinking","mark edward","edward martin","martin james","james kirby","free press","press new","new york","well developed","san francisco","california gold","gold rush","rush calls","free lunch","lunch fiend","idle people","people live","free lunch","lunch system","alive take","take away","california institution","old things","things passing","passing away","new york","york times","times march","march p","came upon","bad salon","salon pictures","free lunch","something less","san francisco","francisco even","bankrupt remember","parts published","book form","novel compared","war zone","free lunch","lunch experience","hungry homelessness","homeless people","people around","free lunch","lunch counter","temperance movement","movement opposed","free lunch","movement writes","prominent rooms","fashionable streets","hold outhe","outhe sign","sign free","free lunch","work setting","winning young","young ladies","ladies hiring","main feature","peculiar institution","well filled","filled bar","allure men","virtue reputation","every good","shrines p","writers however","free lunch","lunch actually","actually performed","poor ineed","ineed ofood","ofood would","much greater","labor unions","much account","charitable point","view nevertheless","nevertheless fed","hungry people","agencies religious","religious charitable","municipal putogether","free lunch","seven thousand","thousand saloons","one half","free lunch","provided every","every day","many cases","free lunch","free lunch","lunch citing","drink purchase","purchase although","although commenting","estimate thathe","thathe saloon","saloon keepers","keepers fed","fed people","thathis represented","week toward","chicago pp","new york","york state","state legislature","legislature passed","regulate liquor","liquor traffic","traffic among","many provisions","provisions one","liquor unless","unless accompanied","food another","free lunch","allow free","free lunches","law causes","free lunch","come back","boston globe","globe april","april p","p see","see also","also buffet","buffet happy","happy hour","hour national","free lunch","free lunch","optimization oslo","free lunch","lunch pending","pending meal","free lunch","computing western","western saloon","saloon category","category drinking","drinking culture","culture category","category restauranterminology","restauranterminology category","category free","free meals","meals category","category lunch","lunch category","category marketing"],"new_description":"free lunch sales offers meal cost order attract customers increase revenue offerings common western saloons many places united_states withe phrase appearing us literature abouto thesestablishments included free_lunch varying withe purchase least_one drink free_lunches typically worth far price single drink saloon customers would buy one drink thathe practice would build patronage times day free food drink contemporary times often gambling casino saying thing free_lunch refers appear free always paid way history new_york times wrote elaborate free_lunches custom peculiar crescent city_new orleans_louisiana new every one drinking saloons fill city meal sort iserved day custom appears long american_civil_war informed thathere thousands men city meals obtained way described reporter free_lunch_counter great social class united_states classes man takes position one must give hope appearing either inew_orleans classes people seen free meals pushing helped second time one saloon six men preparing drinks crowd stood front counter noticed thathe price charged every kind liquor fifteen cents punch drink costing glass ale included dishes butter large baskets bread monster silver filled excellent oyster soup round beef must weighed least forty pounds vessels filled mutton stewed tomatoes macaroni la fran proprietor said thathe patrons included least dozen old fellows come day take one fifteen cent drink eat dinner would costhem restaurant thathe beef tough potatoes free_lunch new_york times feb p value lunch speaks patrons take one fifteen cent drink eat dinner would costhem restaurant roughly equivalento today today today meaning c figures free_lunch fiend nearly free_lunch fiend recognized social type york free_lunch men matthew neither spin yethey get along visiting saloons trying drinks lunch fiend happen called drink whatever cand bartender occupied tries escape free_lunch men new_york times june p american saloon bars late_th century prohibition bouncer_doorman bouncers addition removing intoxicated keep buying drinks unusual role protecting saloon free attract business many saloons lured customers offers free_lunch usually well salted inspire drinking saloon bouncer generally hand discourage drinking america history search consensus drinking war mark edward martin james kirby free press new_york custom well developed san_francisco story days california gold rush calls free_lunch fiend landmark past idle people live free_lunch system keeps alive take_away california institution would old things passing away new_york times_march p writing came upon full bad salon pictures men backs heads food counter institution free_lunch struck paid drink got much wanted eat something less day man feed san_francisco even bankrupt remember ever stranded parts published book form based essays appeared periodicals novel compared war zone free_lunch experience saying shells round heads hungry homelessness homeless people around free_lunch_counter temperance movement opposed free_lunch promoting consumption alcohol history movement writes cities prominent rooms fashionable streets hold outhe sign free_lunch mean gone work setting placing score beautiful winning young ladies hiring band music men order hide main feature peculiar institution sight well filled bar centre things made gathered attractions many allure men thus art work death virtue reputation every good worse shrines p number writers however free_lunch actually performed social william commented winter suffering poor ineed ofood would much greater given labor unions members agency without much account charitable point view nevertheless fed hungry people chicago agencies religious charitable municipal putogether refer free_lunch saloons six seven thousand saloons chicago one half free_lunch provided every_day week states many_cases free_lunch really free_lunch citing example saloon drink purchase although commenting better cites newspaper estimate thathe saloon keepers fed people day thathis represented contribution week toward relief chicago pp new_york state legislature passed intended regulate liquor traffic among many provisions one sale liquor unless accompanied food another free_lunch however amended allow free_lunches revolt passage amendments law causes free_lunch come back boston_globe april p see_also buffet happy_hour national act free_lunch free_lunch search optimization oslo free replaced free_lunch pending meal free_lunch computing western saloon category_drinking culture_category_restauranterminology category_free meals category lunch category marketing"},{"title":"Free refill","description":"file cola jpg thumbnail a glass ofountain soft drink soda right file red coca cola freestyle soda machine at a burger kingjpg thumb a modern self service soda fountain at a fast food restaurant beverages most commonly eligible for free refills are coffee and soda fountain soft drinks although none can trace thexact roots of the free refill there are a few historical references according to the book the world of caffeine the science and culture of the world s most popular drug around the s if you were to ask a european visitor what in his opinion is the most noteworthy feature of american cafes he is most likely to say they refill your cup without charge without asking the world of caffeine the science and culture of the world s most popular drug by bennett alan weinberg bonnie k bealeroutledge new york ny this book also contains another historical reference it refers to the american roots ofree refill it states perhaps thendless refill isymbolic of america special affection for coffee and its culture of largesse and informality as well in taco bellaunched their value initiative which includedrive through windows reduced prices and free refills as a major soda company owned taco bell this wastrategically done to increase revenue and build the soda company s brand awareness free refills are now offered in most american restaurants free refills are seen as a good way to attract customers to an establishment especially one whose beverages are notheir primary source of income due to thextremely low cost ofountain soft drinks often offering a profit margin of establishments tend toffer free refills as a sales gimmick coffee produces a similar high profit margin allowing establishments to include coffee in free refill offers most of thesestablishments have fast customer turnover thus customers rarely consumenough beverage to make the offering unprofitable somestablishments who make their primary income with beverage sales only offer free refills to members of rewards programs bars in the united states often do not charge designatedrivers for soft drinks including refills united states in certain areas of the united statesuch as massachusetts and new york state new york politicians have proposed banning free refills as a move against obesity whenew york city banned sugary drinks over ounces in critics faulted free refills as one of the ban s biggest weaknesses in june cambridge massachusetts mayor henrietta davis unsuccessfully proposed banning soft drink refills france the french government is another critic ofree refills due to health concerns about obesity france created a tax on sugary drinks in september serge hercberg head ofrance s national nutrition and health programme stated that free refills of sugary drinkshould be banned in january a lawas passed banning the unlimited sale of sodas and other sugary drinks at all public eateries category restauranterminology","main_words":["file","cola","jpg","thumbnail","glass","soft_drink","soda","right","file","red","coca","cola","freestyle","soda","machine","burger","thumb","modern","self","service","soda_fountain","fast_food_restaurant","beverages","commonly","free","refills","coffee","soda_fountain","soft_drinks","although","none","trace","thexact","roots","free","refill","historical","references","according","book","world","caffeine","science","culture","world","popular","drug","around","ask","european","visitor","opinion","noteworthy","feature","american","cafes","likely","say","refill","cup","without","charge","without","asking","world","caffeine","science","culture","world","popular","drug","bennett","alan","bonnie","k","new_york","book","also","contains","another","historical","reference","refers","american","roots","ofree","refill","states","perhaps","refill","america","special","affection","coffee","culture","well","taco","value","initiative","windows","reduced","prices","free","refills","major","soda","company","owned","taco_bell","done","increase","revenue","build","soda","company","brand","awareness","free","refills","offered","american","restaurants","free","refills","seen","good","way","attract","customers","establishment","especially","one","whose","beverages","primary","source","income","due","low_cost","soft_drinks","often","offering","profit","margin","establishments","tend","toffer","free","refills","sales","coffee","produces","similar","high","profit","margin","allowing","establishments","include","coffee","free","refill","offers","thesestablishments","fast","customer","turnover","thus","customers","rarely","beverage","make","offering","somestablishments","make","primary","income","beverage","sales","offer","free","refills","members","rewards","programs","bars","united_states","often","charge","soft_drinks","including","refills","united_states","certain","areas","massachusetts","new_york","state_new_york","politicians","proposed","banning","free","refills","move","obesity","york_city","banned","sugary","drinks","critics","faulted","free","refills","one","ban","biggest","june","cambridge_massachusetts","mayor","davis","unsuccessfully","proposed","banning","soft_drink","refills","france","french","government","another","critic","ofree","refills","due","health","concerns","obesity","france","created","tax","sugary","drinks","september","head","ofrance","national","nutrition","health","programme","stated","free","refills","sugary","banned","january","lawas","passed","banning","unlimited","sale","sugary","drinks","public","eateries","category_restauranterminology"],"clean_bigrams":[["file","cola"],["cola","jpg"],["jpg","thumbnail"],["soft","drink"],["drink","soda"],["soda","right"],["right","file"],["file","red"],["red","coca"],["coca","cola"],["cola","freestyle"],["freestyle","soda"],["soda","machine"],["modern","self"],["self","service"],["service","soda"],["soda","fountain"],["fast","food"],["food","restaurant"],["restaurant","beverages"],["free","refills"],["soda","fountain"],["fountain","soft"],["soft","drinks"],["drinks","although"],["although","none"],["trace","thexact"],["thexact","roots"],["free","refill"],["historical","references"],["references","according"],["popular","drug"],["drug","around"],["european","visitor"],["noteworthy","feature"],["american","cafes"],["cup","without"],["without","charge"],["charge","without"],["without","asking"],["popular","drug"],["bennett","alan"],["bonnie","k"],["new","york"],["book","also"],["also","contains"],["contains","another"],["another","historical"],["historical","reference"],["american","roots"],["roots","ofree"],["ofree","refill"],["states","perhaps"],["america","special"],["special","affection"],["value","initiative"],["windows","reduced"],["reduced","prices"],["free","refills"],["major","soda"],["soda","company"],["company","owned"],["owned","taco"],["taco","bell"],["increase","revenue"],["soda","company"],["brand","awareness"],["awareness","free"],["free","refills"],["american","restaurants"],["restaurants","free"],["free","refills"],["good","way"],["attract","customers"],["establishment","especially"],["especially","one"],["one","whose"],["whose","beverages"],["primary","source"],["income","due"],["low","cost"],["soft","drinks"],["drinks","often"],["often","offering"],["profit","margin"],["establishments","tend"],["tend","toffer"],["toffer","free"],["free","refills"],["coffee","produces"],["similar","high"],["high","profit"],["profit","margin"],["margin","allowing"],["allowing","establishments"],["include","coffee"],["free","refill"],["refill","offers"],["fast","customer"],["customer","turnover"],["turnover","thus"],["thus","customers"],["customers","rarely"],["primary","income"],["beverage","sales"],["offer","free"],["free","refills"],["rewards","programs"],["programs","bars"],["united","states"],["states","often"],["soft","drinks"],["drinks","including"],["including","refills"],["refills","united"],["united","states"],["certain","areas"],["united","statesuch"],["new","york"],["york","state"],["state","new"],["new","york"],["york","politicians"],["proposed","banning"],["banning","free"],["free","refills"],["york","city"],["city","banned"],["banned","sugary"],["sugary","drinks"],["critics","faulted"],["faulted","free"],["free","refills"],["june","cambridge"],["cambridge","massachusetts"],["massachusetts","mayor"],["davis","unsuccessfully"],["unsuccessfully","proposed"],["proposed","banning"],["banning","soft"],["soft","drink"],["drink","refills"],["refills","france"],["french","government"],["another","critic"],["critic","ofree"],["ofree","refills"],["refills","due"],["health","concerns"],["obesity","france"],["france","created"],["sugary","drinks"],["head","ofrance"],["national","nutrition"],["health","programme"],["programme","stated"],["free","refills"],["lawas","passed"],["passed","banning"],["unlimited","sale"],["sugary","drinks"],["public","eateries"],["eateries","category"],["category","restauranterminology"]],"all_collocations":["file cola","cola jpg","soft drink","drink soda","soda right","right file","file red","red coca","coca cola","cola freestyle","freestyle soda","soda machine","modern self","self service","service soda","soda fountain","fast food","food restaurant","restaurant beverages","free refills","soda fountain","fountain soft","soft drinks","drinks although","although none","trace thexact","thexact roots","free refill","historical references","references according","popular drug","drug around","european visitor","noteworthy feature","american cafes","cup without","without charge","charge without","without asking","popular drug","bennett alan","bonnie k","new york","book also","also contains","contains another","another historical","historical reference","american roots","roots ofree","ofree refill","states perhaps","america special","special affection","value initiative","windows reduced","reduced prices","free refills","major soda","soda company","company owned","owned taco","taco bell","increase revenue","soda company","brand awareness","awareness free","free refills","american restaurants","restaurants free","free refills","good way","attract customers","establishment especially","especially one","one whose","whose beverages","primary source","income due","low cost","soft drinks","drinks often","often offering","profit margin","establishments tend","tend toffer","toffer free","free refills","coffee produces","similar high","high profit","profit margin","margin allowing","allowing establishments","include coffee","free refill","refill offers","fast customer","customer turnover","turnover thus","thus customers","customers rarely","primary income","beverage sales","offer free","free refills","rewards programs","programs bars","united states","states often","soft drinks","drinks including","including refills","refills united","united states","certain areas","united statesuch","new york","york state","state new","new york","york politicians","proposed banning","banning free","free refills","york city","city banned","banned sugary","sugary drinks","critics faulted","faulted free","free refills","june cambridge","cambridge massachusetts","massachusetts mayor","davis unsuccessfully","unsuccessfully proposed","proposed banning","banning soft","soft drink","drink refills","refills france","french government","another critic","critic ofree","ofree refills","refills due","health concerns","obesity france","france created","sugary drinks","head ofrance","national nutrition","health programme","programme stated","free refills","lawas passed","passed banning","unlimited sale","sugary drinks","public eateries","eateries category","category restauranterminology"],"new_description":"file cola jpg thumbnail glass soft_drink soda right file red coca cola freestyle soda machine burger thumb modern self service soda_fountain fast_food_restaurant beverages commonly free refills coffee soda_fountain soft_drinks although none trace thexact roots free refill historical references according book world caffeine science culture world popular drug around ask european visitor opinion noteworthy feature american cafes likely say refill cup without charge without asking world caffeine science culture world popular drug bennett alan bonnie k new_york book also contains another historical reference refers american roots ofree refill states perhaps refill america special affection coffee culture well taco value initiative windows reduced prices free refills major soda company owned taco_bell done increase revenue build soda company brand awareness free refills offered american restaurants free refills seen good way attract customers establishment especially one whose beverages primary source income due low_cost soft_drinks often offering profit margin establishments tend toffer free refills sales coffee produces similar high profit margin allowing establishments include coffee free refill offers thesestablishments fast customer turnover thus customers rarely beverage make offering somestablishments make primary income beverage sales offer free refills members rewards programs bars united_states often charge soft_drinks including refills united_states certain areas united_statesuch massachusetts new_york state_new_york politicians proposed banning free refills move obesity york_city banned sugary drinks critics faulted free refills one ban biggest june cambridge_massachusetts mayor davis unsuccessfully proposed banning soft_drink refills france french government another critic ofree refills due health concerns obesity france created tax sugary drinks september head ofrance national nutrition health programme stated free refills sugary banned january lawas passed banning unlimited sale sugary drinks public eateries category_restauranterminology"},{"title":"From the Caves and Jungles of Hindostan","description":"from the caves and jungles of hindostan letters to the homeland history of the russian language preform russian romanization of russian tr iz peshcher i debreindostana pis ma na rodinu is a literary work by the founder of theosophical society helena blavatsky she published it under the pename radda bain serial installments letters from to in moscow in the periodicals moskovskiye vedomosti moskovskiya vedomosti and the russian messengerusskiy vestnik edited by mikhail katkov the first part of these letters was published in a single volume in as an appendix to the journal russkiy vestnik the second part of the letters was published in the series obviously was never finished as it broke off rather suddenly literary expert s opinion the russian literary critic ru zinaida vengerova noted thathis blavatsky s book hasomewhat a mystical coloring due to numeroustories and the author s arguments abouthe secret wisdom of the hindus which does not detract from its literary significance the close acquaintance of the writer withe indian sights allows her to be very entertaining to talk abouthe most diverse aspects of the life in modern and ancient india simply but very artistically she describes the covering india from immemorial times magnificent buildings on which the past millenniums had no influencespecially she is being occupied a mysteriousect of r ja yoga raj yogis the holy sages who through the special exertion of their spiritual forcesomething like a long spiritual gymnastics reach the ability to perform undoubted paranormal miracleso blavatsky s personally acquaintance raj yogi gulab singhad been answering the questions which blavatsky was demanding only mentally had been disappearing and appearing completely unexpectedly for everyone had been opening to them in the mountains the mysterious entrances through which they werentering the marvelous underground temples etc nevertheless neff noted that colonel henry steel olcott wrote in the margins of his copy ofrom the caves and jungles of hindostan the words the master has beenot seen indologist s comments alexander senkevich wrote thathesessays by blavatsky had a stunning success in russia he stated that blavatsky demonstrates in this work an enviablerudition and liveliness of the mind in a sense her book is a country specific encyclopaedia which and to this day has not lost itscientific value the author s desire to disclose india from within through people with whom she was throwed by her fate gives the book in comparison withe usual travel essays a special completely new character of the psychological document reflecting many facets of the indian spiritual world the specificity of the life of traditional indian society the book gives also an objective assessment of thenglish colonial rule all the more important because it contains the condemnation of thenglishmen living india despite the truthful depressing descriptions of atrocities againsthem by the participants the sepoy uprising sepoy uprising according to senkevich blavatsky expresses her indignation athenglish colonial orders contempt for the pleasures and amusements of the british officials and the anglo indians who served them in a sarcastic and vitriolic manner and the reader empathizing wither violent emotions willy nilly takes her side she took into accounthe stereotypes of the average russian reader s thinking his phobias geopolitical views and cultural predilections here is onexample of her emotional reasoning on the subject of thenglish suspiciousness and jealousy this national characteristic of thenglish to shout help they are killing us whenobody even thinks of touching them is disgusting but if this trait is notableven in england how much more so is it india here suspicion has become a monomanianglo indiansee russian spies even in their own shoes and this drives them to madness they watch every new arrival from one province to another even should he be an englishman people have been deprived not only of every weapon but of all knives and axes the peasant can hardly chop his wood or protect himselfrom a tiger buthenglish are still afraid it is true that here there are but of them while the native populationumbers million and their system which they took over from successful animal tamers is good only until the animal senses his tamer is fearful in his turn then his hour has come at all eventsuch a manifestation of chronic fear merely admits a recognition of one s own weakness criticism vera johnston the firstranslator of the work wrote that author s manuscript was often incorrect often obscure the russian editors though they did their besto transfer faithfully the indianames and places often produced through their ignorance of oriental tongues forms which are strange and sometimes unrecognizable the proof sheets were never corrected by the author who was then indiand in consequence it has been impossible to restore all the local and personal names to their proper form a similar difficulty has arisen with reference to quotations and cited authorities all of whichave gone through a double process of refraction first into russian then into english vsevolod solovyov noted that blavatsky was in her lifetime very troubled thathenglishould not know contents of the book ashe wrote forussian readers and was not sparing of ridicule and censure againsthe anglo indian government and its representatives he claimed also thathe reader of the book must look on it as romance and fancy and must ono accountake on trusthe facts and statements given by blavatsky because most bitter disenchantment awaits the too trustful reader howard murphet wrote that blavatsky s work is a highly imaginative concoction ofact and fiction written in a style that established her literary reputation with russian editors according to senkevich in the s and s a lot of materials appeared in russian magazines and newspapers the keynote being the idea of a russian war campaign to india the writer s fame of blavatsky has been created in the wake of this propaganda hype interesting factsergei witte count witte has remembered she his cousin helena blavatsky had no doubt a literary talenthe moscow editor katkov famous in the annals of russian journalism spoke to me in the highesterms of praise about her literary gifts as evidenced in the tales entitled from the jungles of hindustan which she contributed to his magazine the russian messenger to solve problem of transcription and transliteration of some theosophical terms when working on a new translation into russian of the secret doctrine the translator bazyukin applied the method used by blavatsky in her book from the caves and jungles of hindostan the translator zaytsev used wherever possible in his translation into russian of the key to theosophy for maintaining the accuracy of the transfer of ideasome fragments of the book from the caves and jungles of hindostan see the translator s note translations and new editions file caves jpg thumb px the first english edition this work has been translated into english two times the firstranslation appeared in london but was not complete it was done by vera johnston blavatsky s niece a new translation by boris de zirkoff also blavatsky s relative is now avail able in author s collected writingseriesubsequently the book was repeatedly reprinted in english russiand spanish publications last firstitle from the caves and jungles of hindostan location london publisher theosophical publishing society date url translator last johnston translator first vera oclc access date june title from the caves and jungles of hindostan location wheaton ill publisher theosophical publishing house date url isbn translator last de zirkoff translator first b translator link boris de zirkoff series blavatsky collected writings oclc access date june in russian last firstitle trans title from the caves and jungles of hindostan part location publisher date authorlink origyear url isbn series edition language russian access date oclc in spanish see also how theosophy came to me incidents in the life of madame blavatsky the occult world notes referencesources last blavatsky first h p titletters of h p blavatsky to a p sinnett location london publisher fisher unwin ltdate url isbn authorlink helena blavatsky edition origyear series access date juneditor last barker editor first a t editor last neff editor first mary k title personal memoirs of h p blavatsky location publisher literary licensing llc date url isbn authorlink edition origyear series access date june in russian externalinks from the caves and jungles of hindostan ed from the caves and jungles of hindostan ed in russian ed category works category magazine articles category books category books category books about india category unfinished books category travel writing category helena blavatsky category theosophical texts category theosophy","main_words":["caves","jungles","hindostan","letters","homeland","history","russian","language","russian","russian","literary","work","founder","theosophical","society","helena","blavatsky","published","serial","letters","moscow","periodicals","russian","edited","first","part","letters","published","single","volume","journal","second","part","letters","published","series","obviously","never","finished","broke","rather","suddenly","literary","expert","opinion","russian","literary","critic","noted","thathis","blavatsky","book","due","author","arguments","abouthe","secret","wisdom","literary","significance","close","writer","withe","indian","sights","allows","entertaining","talk","abouthe","diverse","aspects","life","modern","ancient","india","simply","describes","covering","india","times","magnificent","buildings","past","occupied","r","yoga","raj","holy","special","spiritual","like","long","spiritual","reach","ability","perform","paranormal","blavatsky","personally","raj","questions","blavatsky","demanding","appearing","completely","unexpectedly","everyone","opening","mountains","mysterious","entrances","underground","temples","etc","nevertheless","noted","colonel","henry","steel","wrote","margins","copy","ofrom","caves","jungles","hindostan","words","master","seen","comments","alexander","wrote","blavatsky","success","russia","stated","blavatsky","work","mind","sense","book","country","specific","day","lost","value","author","desire","india","within","people","fate","gives","book","comparison","withe","usual","travel","essays","special","completely","new","character","psychological","document","reflecting","many","facets","indian","spiritual","world","life","traditional","indian","society","book","gives","also","objective","assessment","thenglish","colonial","rule","important","contains","living","india","despite","descriptions","participants","according","blavatsky","colonial","orders","pleasures","amusements","british","officials","anglo","indians","served","manner","reader","wither","violent","emotions","takes","side","took","accounthe","stereotypes","average","russian","reader","thinking","views","cultural","onexample","emotional","subject","thenglish","national","characteristic","thenglish","help","killing","us","even","touching","england","much","india","suspicion","become","russian","even","shoes","drives","madness","watch","every","new","arrival","one","province","another","even","englishman","people","deprived","every","weapon","knives","hardly","chop","wood","protect","tiger","still","true","native","million","system","took","successful","animal","good","animal","senses","turn","hour","come","eventsuch","manifestation","chronic","fear","merely","recognition","one","weakness","criticism","vera","johnston","work","wrote","author","manuscript","often","incorrect","often","obscure","russian","editors","though","besto","transfer","places","often","produced","ignorance","oriental","forms","strange","sometimes","proof","sheets","never","corrected","author","indiand","consequence","impossible","restore","local","personal","names","proper","form","similar","difficulty","arisen","reference","cited","authorities","whichave","gone","double","process","first","russian","english","noted","blavatsky","lifetime","know","contents","book","ashe","wrote","readers","againsthe","anglo","indian","government","representatives","claimed","also","thathe","reader","book","must","look","romance","fancy","must","facts","statements","given","blavatsky","bitter","reader","howard","wrote","blavatsky","work","highly","fiction","written","style","established","literary","reputation","russian","editors","according","lot","materials","appeared","russian","magazines","newspapers","keynote","idea","russian","war","campaign","india","writer","fame","blavatsky","created","wake","propaganda","interesting","count","remembered","cousin","helena","blavatsky","doubt","literary","moscow","editor","famous","annals","russian","journalism","spoke","praise","literary","gifts","tales","entitled","jungles","contributed","magazine","russian","solve","problem","theosophical","terms","working","new","translation","russian","secret","translator","applied","method","used","blavatsky","book","caves","jungles","hindostan","translator","used","wherever","possible","translation","russian","key","maintaining","accuracy","transfer","fragments","book","caves","jungles","hindostan","see","translator","note","translations","new","editions","file","caves","jpg","thumb","px","first","english","edition","work","translated","english","two","times","appeared","london","complete","done","vera","johnston","blavatsky","new","translation","boris","de","also","blavatsky","relative","able","author","collected","book","repeatedly","reprinted","english","russiand","spanish","publications","last","caves","jungles","hindostan","location","london","publisher","theosophical","publishing","society","date","url","translator","last","johnston","translator","first","vera","oclc","access_date","june","title","caves","jungles","hindostan","location","ill","publisher","theosophical","publishing_house","date","url","isbn","translator","last","de","translator","first","b","translator","link","boris","de","series","blavatsky","collected","writings","oclc","access_date","june","russian","last","trans","title","caves","jungles","hindostan","part","location","publisher","date","authorlink","url","isbn","series","edition","language","russian","access_date","oclc","spanish","see_also","came","incidents","life","blavatsky","world","notes","last","blavatsky","first","h","p","h","p","blavatsky","p","location","london","publisher","fisher","unwin","url","isbn","authorlink","helena","blavatsky","edition","series","access_date","last","barker","editor","first","editor","last","editor","first","mary","k","title","personal","memoirs","h","p","blavatsky","location","publisher","literary","licensing","llc","date","url","isbn","authorlink","edition","series","access_date","june","russian","externalinks","caves","jungles","hindostan","ed","caves","jungles","hindostan","ed","russian","ed","category_works","category","magazine","articles","category_books","category_books","category_books","category_travel","helena","blavatsky","texts","category"],"clean_bigrams":[["hindostan","letters"],["homeland","history"],["russian","language"],["language","russian"],["russian","literary"],["literary","work"],["theosophical","society"],["society","helena"],["helena","blavatsky"],["first","part"],["single","volume"],["second","part"],["series","obviously"],["never","finished"],["rather","suddenly"],["suddenly","literary"],["literary","expert"],["russian","literary"],["literary","critic"],["noted","thathis"],["thathis","blavatsky"],["arguments","abouthe"],["abouthe","secret"],["secret","wisdom"],["literary","significance"],["writer","withe"],["withe","indian"],["indian","sights"],["sights","allows"],["talk","abouthe"],["diverse","aspects"],["ancient","india"],["india","simply"],["covering","india"],["times","magnificent"],["magnificent","buildings"],["yoga","raj"],["long","spiritual"],["appearing","completely"],["completely","unexpectedly"],["mysterious","entrances"],["underground","temples"],["temples","etc"],["etc","nevertheless"],["colonel","henry"],["henry","steel"],["copy","ofrom"],["comments","alexander"],["country","specific"],["fate","gives"],["comparison","withe"],["withe","usual"],["usual","travel"],["travel","essays"],["special","completely"],["completely","new"],["new","character"],["psychological","document"],["document","reflecting"],["reflecting","many"],["many","facets"],["indian","spiritual"],["spiritual","world"],["traditional","indian"],["indian","society"],["book","gives"],["gives","also"],["objective","assessment"],["thenglish","colonial"],["colonial","rule"],["living","india"],["india","despite"],["colonial","orders"],["british","officials"],["anglo","indians"],["wither","violent"],["violent","emotions"],["accounthe","stereotypes"],["average","russian"],["russian","reader"],["national","characteristic"],["killing","us"],["watch","every"],["every","new"],["new","arrival"],["one","province"],["another","even"],["englishman","people"],["every","weapon"],["hardly","chop"],["successful","animal"],["animal","senses"],["chronic","fear"],["fear","merely"],["weakness","criticism"],["criticism","vera"],["vera","johnston"],["work","wrote"],["often","incorrect"],["incorrect","often"],["often","obscure"],["russian","editors"],["editors","though"],["besto","transfer"],["places","often"],["often","produced"],["proof","sheets"],["never","corrected"],["personal","names"],["proper","form"],["similar","difficulty"],["cited","authorities"],["whichave","gone"],["double","process"],["know","contents"],["book","ashe"],["ashe","wrote"],["againsthe","anglo"],["anglo","indian"],["indian","government"],["claimed","also"],["also","thathe"],["thathe","reader"],["book","must"],["must","look"],["statements","given"],["reader","howard"],["fiction","written"],["literary","reputation"],["russian","editors"],["editors","according"],["materials","appeared"],["russian","magazines"],["russian","war"],["war","campaign"],["cousin","helena"],["helena","blavatsky"],["moscow","editor"],["russian","journalism"],["journalism","spoke"],["literary","gifts"],["tales","entitled"],["solve","problem"],["theosophical","terms"],["new","translation"],["method","used"],["used","wherever"],["wherever","possible"],["hindostan","see"],["note","translations"],["new","editions"],["editions","file"],["file","caves"],["caves","jpg"],["jpg","thumb"],["thumb","px"],["first","english"],["english","edition"],["english","two"],["two","times"],["vera","johnston"],["johnston","blavatsky"],["new","translation"],["boris","de"],["also","blavatsky"],["repeatedly","reprinted"],["english","russiand"],["russiand","spanish"],["spanish","publications"],["publications","last"],["hindostan","location"],["location","london"],["london","publisher"],["publisher","theosophical"],["theosophical","publishing"],["publishing","society"],["society","date"],["date","url"],["url","translator"],["translator","last"],["last","johnston"],["johnston","translator"],["translator","first"],["first","vera"],["vera","oclc"],["oclc","access"],["access","date"],["date","june"],["june","title"],["hindostan","location"],["ill","publisher"],["publisher","theosophical"],["theosophical","publishing"],["publishing","house"],["house","date"],["date","url"],["url","isbn"],["isbn","translator"],["translator","last"],["last","de"],["translator","first"],["first","b"],["b","translator"],["translator","link"],["link","boris"],["boris","de"],["series","blavatsky"],["blavatsky","collected"],["collected","writings"],["writings","oclc"],["oclc","access"],["access","date"],["date","june"],["russian","last"],["trans","title"],["hindostan","part"],["part","location"],["location","publisher"],["publisher","date"],["date","authorlink"],["url","isbn"],["isbn","series"],["series","edition"],["edition","language"],["language","russian"],["russian","access"],["access","date"],["date","oclc"],["spanish","see"],["see","also"],["world","notes"],["last","blavatsky"],["blavatsky","first"],["first","h"],["h","p"],["h","p"],["p","blavatsky"],["location","london"],["london","publisher"],["publisher","fisher"],["fisher","unwin"],["url","isbn"],["isbn","authorlink"],["authorlink","helena"],["helena","blavatsky"],["blavatsky","edition"],["series","access"],["access","date"],["last","barker"],["barker","editor"],["editor","first"],["editor","last"],["editor","first"],["first","mary"],["mary","k"],["k","title"],["title","personal"],["personal","memoirs"],["h","p"],["p","blavatsky"],["blavatsky","location"],["location","publisher"],["publisher","literary"],["literary","licensing"],["licensing","llc"],["llc","date"],["date","url"],["url","isbn"],["isbn","authorlink"],["authorlink","edition"],["series","access"],["access","date"],["date","june"],["russian","externalinks"],["hindostan","ed"],["hindostan","ed"],["russian","ed"],["ed","category"],["category","works"],["works","category"],["category","magazine"],["magazine","articles"],["articles","category"],["category","books"],["books","category"],["category","books"],["books","category"],["category","books"],["india","category"],["category","books"],["books","category"],["category","travel"],["travel","writing"],["writing","category"],["category","helena"],["helena","blavatsky"],["blavatsky","category"],["category","theosophical"],["theosophical","texts"],["texts","category"]],"all_collocations":["hindostan letters","homeland history","russian language","language russian","russian literary","literary work","theosophical society","society helena","helena blavatsky","first part","single volume","second part","series obviously","never finished","rather suddenly","suddenly literary","literary expert","russian literary","literary critic","noted thathis","thathis blavatsky","arguments abouthe","abouthe secret","secret wisdom","literary significance","writer withe","withe indian","indian sights","sights allows","talk abouthe","diverse aspects","ancient india","india simply","covering india","times magnificent","magnificent buildings","yoga raj","long spiritual","appearing completely","completely unexpectedly","mysterious entrances","underground temples","temples etc","etc nevertheless","colonel henry","henry steel","copy ofrom","comments alexander","country specific","fate gives","comparison withe","withe usual","usual travel","travel essays","special completely","completely new","new character","psychological document","document reflecting","reflecting many","many facets","indian spiritual","spiritual world","traditional indian","indian society","book gives","gives also","objective assessment","thenglish colonial","colonial rule","living india","india despite","colonial orders","british officials","anglo indians","wither violent","violent emotions","accounthe stereotypes","average russian","russian reader","national characteristic","killing us","watch every","every new","new arrival","one province","another even","englishman people","every weapon","hardly chop","successful animal","animal senses","chronic fear","fear merely","weakness criticism","criticism vera","vera johnston","work wrote","often incorrect","incorrect often","often obscure","russian editors","editors though","besto transfer","places often","often produced","proof sheets","never corrected","personal names","proper form","similar difficulty","cited authorities","whichave gone","double process","know contents","book ashe","ashe wrote","againsthe anglo","anglo indian","indian government","claimed also","also thathe","thathe reader","book must","must look","statements given","reader howard","fiction written","literary reputation","russian editors","editors according","materials appeared","russian magazines","russian war","war campaign","cousin helena","helena blavatsky","moscow editor","russian journalism","journalism spoke","literary gifts","tales entitled","solve problem","theosophical terms","new translation","method used","used wherever","wherever possible","hindostan see","note translations","new editions","editions file","file caves","caves jpg","first english","english edition","english two","two times","vera johnston","johnston blavatsky","new translation","boris de","also blavatsky","repeatedly reprinted","english russiand","russiand spanish","spanish publications","publications last","hindostan location","location london","london publisher","publisher theosophical","theosophical publishing","publishing society","society date","date url","url translator","translator last","last johnston","johnston translator","translator first","first vera","vera oclc","oclc access","access date","date june","june title","hindostan location","ill publisher","publisher theosophical","theosophical publishing","publishing house","house date","date url","url isbn","isbn translator","translator last","last de","translator first","first b","b translator","translator link","link boris","boris de","series blavatsky","blavatsky collected","collected writings","writings oclc","oclc access","access date","date june","russian last","trans title","hindostan part","part location","location publisher","publisher date","date authorlink","url isbn","isbn series","series edition","edition language","language russian","russian access","access date","date oclc","spanish see","see also","world notes","last blavatsky","blavatsky first","first h","h p","h p","p blavatsky","location london","london publisher","publisher fisher","fisher unwin","url isbn","isbn authorlink","authorlink helena","helena blavatsky","blavatsky edition","series access","access date","last barker","barker editor","editor first","editor last","editor first","first mary","mary k","k title","title personal","personal memoirs","h p","p blavatsky","blavatsky location","location publisher","publisher literary","literary licensing","licensing llc","llc date","date url","url isbn","isbn authorlink","authorlink edition","series access","access date","date june","russian externalinks","hindostan ed","hindostan ed","russian ed","ed category","category works","works category","category magazine","magazine articles","articles category","category books","books category","category books","books category","category books","india category","category books","books category","category travel","travel writing","writing category","category helena","helena blavatsky","blavatsky category","category theosophical","theosophical texts","texts category"],"new_description":"caves jungles hindostan letters homeland history russian language russian russian literary work founder theosophical society helena blavatsky published serial letters moscow periodicals russian edited first part letters published single volume journal second part letters published series obviously never finished broke rather suddenly literary expert opinion russian literary critic noted thathis blavatsky book due author arguments abouthe secret wisdom literary significance close writer withe indian sights allows entertaining talk abouthe diverse aspects life modern ancient india simply describes covering india times magnificent buildings past occupied r yoga raj holy special spiritual like long spiritual reach ability perform paranormal blavatsky personally raj questions blavatsky demanding appearing completely unexpectedly everyone opening mountains mysterious entrances underground temples etc nevertheless noted colonel henry steel wrote margins copy ofrom caves jungles hindostan words master seen comments alexander wrote blavatsky success russia stated blavatsky work mind sense book country specific day lost value author desire india within people fate gives book comparison withe usual travel essays special completely new character psychological document reflecting many facets indian spiritual world life traditional indian society book gives also objective assessment thenglish colonial rule important contains living india despite descriptions participants according blavatsky colonial orders pleasures amusements british officials anglo indians served manner reader wither violent emotions takes side took accounthe stereotypes average russian reader thinking views cultural onexample emotional subject thenglish national characteristic thenglish help killing us even touching england much india suspicion become russian even shoes drives madness watch every new arrival one province another even englishman people deprived every weapon knives hardly chop wood protect tiger still true native million system took successful animal good animal senses turn hour come eventsuch manifestation chronic fear merely recognition one weakness criticism vera johnston work wrote author manuscript often incorrect often obscure russian editors though besto transfer places often produced ignorance oriental forms strange sometimes proof sheets never corrected author indiand consequence impossible restore local personal names proper form similar difficulty arisen reference cited authorities whichave gone double process first russian english noted blavatsky lifetime know contents book ashe wrote readers againsthe anglo indian government representatives claimed also thathe reader book must look romance fancy must facts statements given blavatsky bitter reader howard wrote blavatsky work highly fiction written style established literary reputation russian editors according lot materials appeared russian magazines newspapers keynote idea russian war campaign india writer fame blavatsky created wake propaganda interesting count remembered cousin helena blavatsky doubt literary moscow editor famous annals russian journalism spoke praise literary gifts tales entitled jungles contributed magazine russian solve problem theosophical terms working new translation russian secret translator applied method used blavatsky book caves jungles hindostan translator used wherever possible translation russian key maintaining accuracy transfer fragments book caves jungles hindostan see translator note translations new editions file caves jpg thumb px first english edition work translated english two times appeared london complete done vera johnston blavatsky new translation boris de also blavatsky relative able author collected book repeatedly reprinted english russiand spanish publications last caves jungles hindostan location london publisher theosophical publishing society date url translator last johnston translator first vera oclc access_date june title caves jungles hindostan location ill publisher theosophical publishing_house date url isbn translator last de translator first b translator link boris de series blavatsky collected writings oclc access_date june russian last trans title caves jungles hindostan part location publisher date authorlink url isbn series edition language russian access_date oclc spanish see_also came incidents life blavatsky world notes last blavatsky first h p h p blavatsky p location london publisher fisher unwin url isbn authorlink helena blavatsky edition series access_date last barker editor first editor last editor first mary k title personal memoirs h p blavatsky location publisher literary licensing llc date url isbn authorlink edition series access_date june russian externalinks caves jungles hindostan ed caves jungles hindostan ed russian ed category_works category magazine articles category_books category_books category_books india_category_books category_travel writing_category helena blavatsky category_theosophical texts category"},{"title":"Frommer's","description":"imprints frommer s is a travel guidebook series created by arthur frommer s has expanded to include more than guidebooks acrosseries as well as other media including the radio show frommer s travel show and the website frommerscom in frommer s celebrated its th anniversary of guidebook publishing since may arthur frommer has been blogging aboutravel on the frommerscom website history in arthur frommer a young corporal in the us army wrote a travel guide for american gis in europe and then produced a civilian version called europe on a day the book ranked popular landmarks and sights in order of importance and included suggestions on how to travel around europe on a budget it was the firstravel guide to show americans thathey could afford to travel in europe arthur frommereturned to the united states and began practicing law during thatime he continued to write and also began to self publish guidebooks to additional destinations including new york mexico hawaii japand the caribbean in frommer s trademark wasold to simon schuster inc pearson plc pearson boughthe reference division of simon schuster in and sold ito international data group idg books in john wiley sons acquired idg books renamed hungry minds in arthur s daughter pauline frommer is nowriting her own series of travel guidebooks and continuing the frommer s travelegacy jewish women international travel tips from an expert pauline frommer by laurie heifetz november on august it was announced that google will be acquiring frommer s for an undisclosed sum of money and will be merging operations with google s zagat business google to buy frommer s travel brand august on march it was reported that googlended the manufacturing ofrommer s guidebooks on april it was announced thathe frommer s brand has been reacquired by arthur frommer and his daughter pauline frommer he scheduled october that year to release the next batch of guidebooks as of july arthur frommer struck a deal with publishers group westo distribute and promote frommer s books guidebook series more than million books have been sold since frommer s inception in over titles are available in the following series frommer s complete guides frommer s with kids frommer s day by day for over travel destinations frommer s portable guides frommer s irreverent guides frommer s memorable walks frommer s phrasefinder dictionaries frommer s driving tours pauline frommer s guides the unofficial guides for dummies travel guidesuzy gershman s born to shop guides frommer s national park guides mtv travel guides in popular culture frommer s guidebooks arepresented in the comedy eurotrip when one of the main characters jamie uses ito guide a group of teenagers around europe jamie later gets a job with frommer s athend of eurotrip in the opening scene of s charlie s angels full throttle cameron diaz enters a mongolian beer shack holding a frommer s guidebook a copy can also be seenear the beginning of the film jumper film jumper complete references from the frommer s guide book for traveling around the world can be seen in the movie lastop for paul references notes externalinks frommerscom official site frommerscom podcastravel podcasts category travel guide books category introductions","main_words":["imprints","frommer","travel_guidebook","series","created","arthur_frommer","expanded","include","guidebooks","well","media","including","radio","show","frommer","travel","show","website","frommerscom","frommer","celebrated","th_anniversary","guidebook","publishing","since","may","arthur_frommer","blogging","aboutravel","frommerscom","website","history","arthur_frommer","young","us_army","wrote","travel_guide","american","europe","produced","civilian","version","called","europe","day","book","ranked","popular","landmarks","sights","order","importance","included","suggestions","travel","around","europe","budget","firstravel","guide","show","americans","thathey","could","afford","travel","europe","arthur","united_states","began","practicing","law","thatime","continued","write","also","began","self","publish","guidebooks","additional","destinations","including","new_york","mexico","hawaii","japand","caribbean","frommer","trademark","wasold","simon","schuster","inc","pearson","plc","pearson","boughthe","reference","division","simon","schuster","sold","ito","international","data","group","books","john","wiley","sons","acquired","books","renamed","hungry","minds","arthur","daughter","pauline","frommer","series","travel_guidebooks","continuing","frommer","jewish","women","international_travel","tips","expert","pauline","frommer","laurie","november","august","announced","google","acquiring","frommer","undisclosed","sum","money","merging","operations","google","zagat","business","google","buy","frommer","travel","brand","august","march","reported","manufacturing","guidebooks","april","announced_thathe","frommer","brand","arthur_frommer","daughter","pauline","frommer","scheduled","october","year","release","next","batch","guidebooks","july","arthur_frommer","struck","deal","publishers","group","westo","distribute","promote","frommer","books","guidebook","series","million","books","sold","since","frommer","inception","titles","available","following","series","frommer","complete","guides","frommer","kids","frommer","day","day","travel_destinations","frommer","portable","guides","frommer","guides","frommer","memorable","walks","frommer","frommer","driving","tours","pauline","frommer","guides","unofficial","guides","travel","born","shop","guides","frommer","national_park","guides","mtv","travel_guides","popular_culture","frommer","guidebooks","arepresented","comedy","one","main","characters","jamie","uses","ito","guide","group","teenagers","around","europe","jamie","later","gets","job","frommer","athend","opening","scene","charlie","angels","full","cameron","diaz","enters","mongolian","beer","shack","holding","frommer","guidebook","copy","also","beginning","film","film","complete","references","frommer","guide_book","traveling","around","world","seen","movie","paul","references","notes_externalinks","frommerscom","official_site","frommerscom","category_travel_guide_books","category","introductions"],"clean_bigrams":[["imprints","frommer"],["travel","guidebook"],["guidebook","series"],["series","created"],["arthur","frommer"],["media","including"],["radio","show"],["show","frommer"],["travel","show"],["website","frommerscom"],["th","anniversary"],["guidebook","publishing"],["publishing","since"],["since","may"],["may","arthur"],["arthur","frommer"],["blogging","aboutravel"],["frommerscom","website"],["website","history"],["arthur","frommer"],["us","army"],["army","wrote"],["travel","guide"],["civilian","version"],["version","called"],["called","europe"],["book","ranked"],["ranked","popular"],["popular","landmarks"],["included","suggestions"],["travel","around"],["around","europe"],["firstravel","guide"],["show","americans"],["americans","thathey"],["thathey","could"],["could","afford"],["europe","arthur"],["united","states"],["began","practicing"],["practicing","law"],["also","began"],["self","publish"],["publish","guidebooks"],["additional","destinations"],["destinations","including"],["including","new"],["new","york"],["york","mexico"],["mexico","hawaii"],["hawaii","japand"],["trademark","wasold"],["simon","schuster"],["schuster","inc"],["inc","pearson"],["pearson","plc"],["plc","pearson"],["pearson","boughthe"],["boughthe","reference"],["reference","division"],["simon","schuster"],["sold","ito"],["ito","international"],["international","data"],["data","group"],["john","wiley"],["wiley","sons"],["sons","acquired"],["books","renamed"],["renamed","hungry"],["hungry","minds"],["daughter","pauline"],["pauline","frommer"],["travel","guidebooks"],["jewish","women"],["women","international"],["international","travel"],["travel","tips"],["expert","pauline"],["pauline","frommer"],["acquiring","frommer"],["undisclosed","sum"],["merging","operations"],["zagat","business"],["business","google"],["buy","frommer"],["travel","brand"],["brand","august"],["announced","thathe"],["thathe","frommer"],["arthur","frommer"],["daughter","pauline"],["pauline","frommer"],["scheduled","october"],["next","batch"],["july","arthur"],["arthur","frommer"],["frommer","struck"],["publishers","group"],["group","westo"],["westo","distribute"],["promote","frommer"],["books","guidebook"],["guidebook","series"],["million","books"],["sold","since"],["since","frommer"],["following","series"],["series","frommer"],["complete","guides"],["guides","frommer"],["kids","frommer"],["travel","destinations"],["destinations","frommer"],["portable","guides"],["guides","frommer"],["guides","frommer"],["memorable","walks"],["walks","frommer"],["driving","tours"],["tours","pauline"],["pauline","frommer"],["unofficial","guides"],["shop","guides"],["guides","frommer"],["national","park"],["park","guides"],["guides","mtv"],["mtv","travel"],["travel","guides"],["popular","culture"],["culture","frommer"],["guidebooks","arepresented"],["main","characters"],["characters","jamie"],["jamie","uses"],["uses","ito"],["ito","guide"],["teenagers","around"],["around","europe"],["europe","jamie"],["jamie","later"],["later","gets"],["opening","scene"],["angels","full"],["cameron","diaz"],["diaz","enters"],["mongolian","beer"],["beer","shack"],["shack","holding"],["complete","references"],["guide","book"],["traveling","around"],["paul","references"],["references","notes"],["notes","externalinks"],["externalinks","frommerscom"],["frommerscom","official"],["official","site"],["site","frommerscom"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","introductions"]],"all_collocations":["imprints frommer","travel guidebook","guidebook series","series created","arthur frommer","media including","radio show","show frommer","travel show","website frommerscom","th anniversary","guidebook publishing","publishing since","since may","may arthur","arthur frommer","blogging aboutravel","frommerscom website","website history","arthur frommer","us army","army wrote","travel guide","civilian version","version called","called europe","book ranked","ranked popular","popular landmarks","included suggestions","travel around","around europe","firstravel guide","show americans","americans thathey","thathey could","could afford","europe arthur","united states","began practicing","practicing law","also began","self publish","publish guidebooks","additional destinations","destinations including","including new","new york","york mexico","mexico hawaii","hawaii japand","trademark wasold","simon schuster","schuster inc","inc pearson","pearson plc","plc pearson","pearson boughthe","boughthe reference","reference division","simon schuster","sold ito","ito international","international data","data group","john wiley","wiley sons","sons acquired","books renamed","renamed hungry","hungry minds","daughter pauline","pauline frommer","travel guidebooks","jewish women","women international","international travel","travel tips","expert pauline","pauline frommer","acquiring frommer","undisclosed sum","merging operations","zagat business","business google","buy frommer","travel brand","brand august","announced thathe","thathe frommer","arthur frommer","daughter pauline","pauline frommer","scheduled october","next batch","july arthur","arthur frommer","frommer struck","publishers group","group westo","westo distribute","promote frommer","books guidebook","guidebook series","million books","sold since","since frommer","following series","series frommer","complete guides","guides frommer","kids frommer","travel destinations","destinations frommer","portable guides","guides frommer","guides frommer","memorable walks","walks frommer","driving tours","tours pauline","pauline frommer","unofficial guides","shop guides","guides frommer","national park","park guides","guides mtv","mtv travel","travel guides","popular culture","culture frommer","guidebooks arepresented","main characters","characters jamie","jamie uses","uses ito","ito guide","teenagers around","around europe","europe jamie","jamie later","later gets","opening scene","angels full","cameron diaz","diaz enters","mongolian beer","beer shack","shack holding","complete references","guide book","traveling around","paul references","references notes","notes externalinks","externalinks frommerscom","frommerscom official","official site","site frommerscom","category travel","travel guide","guide books","books category","category introductions"],"new_description":"imprints frommer travel_guidebook series created arthur_frommer expanded include guidebooks well media including radio show frommer travel show website frommerscom frommer celebrated th_anniversary guidebook publishing since may arthur_frommer blogging aboutravel frommerscom website history arthur_frommer young us_army wrote travel_guide american europe produced civilian version called europe day book ranked popular landmarks sights order importance included suggestions travel around europe budget firstravel guide show americans thathey could afford travel europe arthur united_states began practicing law thatime continued write also began self publish guidebooks additional destinations including new_york mexico hawaii japand caribbean frommer trademark wasold simon schuster inc pearson plc pearson boughthe reference division simon schuster sold ito international data group books john wiley sons acquired books renamed hungry minds arthur daughter pauline frommer series travel_guidebooks continuing frommer jewish women international_travel tips expert pauline frommer laurie november august announced google acquiring frommer undisclosed sum money merging operations google zagat business google buy frommer travel brand august march reported manufacturing guidebooks april announced_thathe frommer brand arthur_frommer daughter pauline frommer scheduled october year release next batch guidebooks july arthur_frommer struck deal publishers group westo distribute promote frommer books guidebook series million books sold since frommer inception titles available following series frommer complete guides frommer kids frommer day day travel_destinations frommer portable guides frommer guides frommer memorable walks frommer frommer driving tours pauline frommer guides unofficial guides travel born shop guides frommer national_park guides mtv travel_guides popular_culture frommer guidebooks arepresented comedy one main characters jamie uses ito guide group teenagers around europe jamie later gets job frommer athend opening scene charlie angels full cameron diaz enters mongolian beer shack holding frommer guidebook copy also beginning film film complete references frommer guide_book traveling around world seen movie paul references notes_externalinks frommerscom official_site frommerscom category_travel_guide_books category introductions"},{"title":"Frontier Adventure Sports & Training","description":"frontier adventure sports and training fast is the most establishedneeds citation adventure racing adventure race organizer in canada in operation since frontier adventure sports has established an international reputation for solid logistics and challenging racecourses fast hosts events under several banners the frontier adventure challenge raid the north and raid the north extreme these non stop races range in length from hours to six days and require coed teams of three or four to hiking hike mountain bike paddle and negotiate fixed ropes while navigating an unmarked racecourse through the wilderness adventure racing adventure racing can be defined as a non stop multi day multi discipline team event in many ways it can be likened to an exploration expedition with a stopwatch the goal of the competition is to be the firsteam to get all members across the finish line together adventure racing requires teamwork perseveration perseverance and strong navigation and wildernessurvival skills the most common disciplines involved in an adventure race are mountain biking hiking paddling and rappelling there are many different lengths and formats of events ranging from off road triathlons to month long expeditions the course should take competitors through remote wilderness where they mustravel withoutside assistanceach teamust use strategy to determine the best routequipment food and pace to maintain to win raid the north image rtn pentictonjpg thumb team the big fish penticton bc since raid the north events have been designed to highlighthe natural elements of the host region environmenthe raid the north race series consists of a national series of houraces in various locations across canada during which teams will cover between and kilometers a raid the north team is a co ed group ofour people with a variety of sport outdoor and wilderness backgrounds unlike rtnx raid the north events are geared towards the prepared firstime adventure raceraid the north extreme raid the north extreme rtnx is a day expedition style adventure race it was held once per year from to and since then has been held every three years explore magazine april strong navigation skills and wilderness experience arequired as the course covers roughly kilometers of unmarked terrain each year the race travels to a different region in canada that provides rugged wilderness challenges for competitors explore newfoundland raid the north extreme was one of the original founding members of the adventure racing world series and a qualifierace for the ar world championship xtremesport u website story raid the north extreme nov raid the north extreme waselected as the adventure racing world championships in sleepmonsterscom rtnx was included in the world series raid the north extreme is designed for experienced adventure racers or those with significant wilderness experience as there are significantly long sections of remote wilderness wherescue is difficult mixed gender teams ofour have up to days non stop to cover kilometres by trekking mountain biking paddling and mountaineering competitors must navigate their own route through checkpoints throughouthe racecourse it is the only expedition stylevent longer than hrs in canada raid the north extreme competitors come from across canadand the united states and tend to have a broad multi sport experience and or extensive outdoor skills international race competitors have come fromexico argentina spain france finland new zealand singapore raid the north extreme has previously been hosted by elliot lake on in revelstoke british columbia revelstoke bc in revelstoke chamber of commerce in review newfoundland labrador in corner brook community profile pg high profilevents whitehorse yukon whitehorse yukon territory in atikokan on in adventure sports magazine article rd time s a charm oct newfoundland labrador in corner brook community profile pg high profilevents prince rupert british columbia prince rupert and haida gwaii bc in zimbiocom race report from team dart nuun and bc s west kootenay in rtnx websiteach race highlights the unique history untouched wilderness and culture of the host region including first nations hunting and trading routes as well as other historic sites rtnx locations top finishers file raid the north extreme teamjpg thumb righteam intrepid travel athe start line of raid the north extreme prince rupert haida gwaii bc west kootenay bc rtnx website wildernesstraversecom wild rose dart nuun sportmulti atmosphere momar gearjunkie yogaslackers prince rupert haida gwaii bc rtnx website sole dart nuun yukonwild ssspirit sleepmonstersca shinenergy playground bullies corner brook nl adventure racing world series ar world championships arwc website nike acg balance bar crossportswear merrel zanfel adventures nokia mazdatikokan on rtnx websiteadspirit fudugazi wild rose phoenix whitehorse yukon whitehorse yukon rtnx website montrail easternoutdoorscom golite spiritnt corner brook nl rtnx website salomon eco internet nokiadventuredbull playstation eastern outdoorscom glar spirit revelstoke british columbia revelstoke bc rtnx website spirit phonetcom old spice red zone shic shoc merrel olympia elliot lake on rtnx website salomon eco internet olympia timbuk nomad lycos economic impact raid the north extreme creates broad tourism promotion for each region it visits via media coverage and word of mouth corner brook economic development corporation media release feb atikokan edc annual report pg documentaries on the race have been aired on the outdoor life network the sports network tsn the global televisionetwork queen charlotte islands observer article haida gwaii basking in mediattention may and pbs rtnx also has a significant economic impact on the host region creating an estimated local boost of million camp frontier adventure sports hosts an extensive adventure racing training curriculum focusing on the skills and knowledge required to compete in adventure racing in partnership with esprit lodgesprit rafting frontier adventure sports offers the jalcomulco ar training week as well as the pico playa expedition training week in veracruz veracruz mexico esprit rafting website the pico playa expedition week consists of a staged expedition from pico de orizaba to the gulf of mexico history in eco challenge competitor dave zietsma wanted to bring expedition racing to canadand introduced the houraid the north racevent originally known as frontier adventure racing the company grew to include the day expedition race raid the north extreme and an hour series the salomon adventure challenge in frontier was purchased by geoff langford who introduced hour adventure challengevents restructured the company as frontier adventure sports training and created the camp frontier brand offering week long training camps in mexico and costa rica since its inception frontier has hosted overacevents in canada frontier adventure sports archives frontier is most recognized for its raid the north extremevent held in haida gwaii and prince rupert british columbia bc broadcast nationally on the global televisionetwork in canadand on pbs in the us category adventure racing category adventure travel category sport in canada","main_words":["frontier","adventure_sports","training","fast","citation","adventure_racing","adventure","race","organizer","canada","operation","since","frontier","adventure_sports","established","international","reputation","solid","logistics","challenging","fast","hosts","events","several","frontier","adventure","challenge","raid","north","raid","north_extreme","non","stop","races","range","length","hours","six","days","require","coed","teams","three","four","hiking","hike","mountain_bike","negotiate","fixed","ropes","unmarked","racecourse","wilderness","adventure_racing","adventure_racing","defined","non","stop","multi","day","multi","discipline","team","event","many","ways","likened","exploration","expedition","goal","competition","firsteam","get","members","across","finish","line","together","adventure_racing","requires","perseverance","strong","navigation","skills","common","disciplines","involved","adventure","race","mountain_biking","hiking","many_different","lengths","formats","events","ranging","road","month","long","expeditions","course","take","competitors","remote","wilderness","use","strategy","determine","best_food","pace","maintain","win","raid","north","image","thumb","team","big","fish","since","raid","north","events","designed","natural","elements","host","region","raid","north","race","series","consists","national","series","various_locations","across","canada","teams","cover","kilometers","raid","north","team","ed","group","ofour","people","variety","sport","outdoor","wilderness","backgrounds","unlike","rtnx","raid","north","events","geared_towards","prepared","firstime","adventure","north_extreme","raid","north_extreme","rtnx","day","expedition","style","adventure","race","held","per_year","since","held","every","three_years","explore","magazine","april","strong","navigation","skills","wilderness","experience","arequired","course","covers","roughly","kilometers","unmarked","terrain","year","race","travels","different","region","canada","provides","rugged","wilderness","challenges","competitors","explore","newfoundland","raid","north_extreme","one","original","founding","members","adventure_racing","world","series","world_championship","website","story","raid","north_extreme","nov","raid","north_extreme","waselected","adventure_racing","rtnx","included","world","series","raid","north_extreme","designed","experienced","adventure","racers","significant","wilderness","experience","significantly","long","sections","remote","wilderness","difficult","mixed","gender","teams","ofour","days","non","stop","cover","kilometres","trekking","mountain_biking","mountaineering","competitors","must","navigate","route","throughouthe","racecourse","expedition","longer","canada","raid","north_extreme","competitors","come","across","canadand","united_states","tend","broad","multi","sport","experience","extensive","outdoor","skills","international","race","competitors","come","argentina","spain","france","finland","new_zealand","singapore","raid","north_extreme","previously","hosted","elliot","lake","revelstoke","british_columbia","revelstoke","revelstoke","chamber","commerce","review","newfoundland_labrador","corner","brook","community","profile","high","whitehorse","yukon","whitehorse","yukon","territory","adventure_sports","magazine","article","time","charm","oct","newfoundland_labrador","corner","brook","community","profile","high","prince","rupert","british_columbia","prince","rupert","haida","gwaii","race","report","team","dart","west","rtnx","race","highlights","unique","history","untouched","wilderness","culture","host","region","including","first","nations","hunting","trading","routes","well","historic_sites","rtnx","locations","top","file","raid","north_extreme","thumb","intrepid","travel","athe_start","line","raid","north_extreme","prince","rupert","haida","gwaii","west","rtnx","website","wild","rose","dart","atmosphere","prince","rupert","haida","gwaii","rtnx","website","sole","dart","playground","corner","brook","adventure_racing","world","series","website","balance","bar","adventures","rtnx","wild","rose","phoenix","whitehorse","yukon","whitehorse","yukon","rtnx","website","corner","brook","rtnx","website","eco","internet","eastern","spirit","revelstoke","british_columbia","revelstoke","rtnx","website","spirit","old","spice","red","zone","olympia","elliot","lake","rtnx","website","eco","internet","olympia","nomad","economic_impact","raid","north_extreme","creates","broad","tourism_promotion","region","visits","via","media","coverage","word","mouth","corner","brook","economic_development","corporation","media","release","feb","edc","annual","report","documentaries","race","aired","outdoor","life","network","sports","network","global","queen","charlotte","islands","observer","article","haida","gwaii","mediattention","may","pbs","rtnx","also","significant","economic_impact","host","region","creating","estimated","local","boost","million","camp","frontier","adventure_sports","hosts","extensive","adventure_racing","training","curriculum","focusing","skills","knowledge","required","compete","adventure_racing","partnership","rafting","frontier","adventure_sports","offers","training","week","well","pico","playa","expedition","training","week","mexico","rafting","website","pico","playa","expedition","week","consists","staged","expedition","pico","de","gulf","mexico","history","eco","challenge","competitor","dave","wanted","bring","expedition","racing","canadand","introduced","north","originally","known","frontier","adventure_racing","company","grew","include","day","expedition","race","raid","north_extreme","hour","series","adventure","challenge","frontier","purchased","geoff","introduced","hour","adventure","restructured","company","frontier","adventure_sports","training","created","camp","frontier","brand","offering","week_long","training","camps","mexico","costa_rica","since","inception","frontier","hosted","canada","frontier","adventure_sports","archives","frontier","recognized","raid","north","held","haida","gwaii","prince","rupert","british_columbia","broadcast","nationally","global","canadand","pbs","us","racing","category_adventure_travel_category","sport","canada"],"clean_bigrams":[["frontier","adventure"],["adventure","sports"],["sports","training"],["training","fast"],["citation","adventure"],["adventure","racing"],["racing","adventure"],["adventure","race"],["race","organizer"],["operation","since"],["since","frontier"],["frontier","adventure"],["adventure","sports"],["international","reputation"],["solid","logistics"],["fast","hosts"],["hosts","events"],["frontier","adventure"],["adventure","challenge"],["challenge","raid"],["north","extreme"],["non","stop"],["stop","races"],["races","range"],["six","days"],["require","coed"],["coed","teams"],["hiking","hike"],["hike","mountain"],["mountain","bike"],["negotiate","fixed"],["fixed","ropes"],["unmarked","racecourse"],["wilderness","adventure"],["adventure","racing"],["racing","adventure"],["adventure","racing"],["non","stop"],["stop","multi"],["multi","day"],["day","multi"],["multi","discipline"],["discipline","team"],["team","event"],["many","ways"],["exploration","expedition"],["members","across"],["finish","line"],["line","together"],["together","adventure"],["adventure","racing"],["racing","requires"],["strong","navigation"],["navigation","skills"],["common","disciplines"],["disciplines","involved"],["adventure","race"],["mountain","biking"],["biking","hiking"],["many","different"],["different","lengths"],["events","ranging"],["month","long"],["long","expeditions"],["take","competitors"],["remote","wilderness"],["use","strategy"],["win","raid"],["north","image"],["thumb","team"],["big","fish"],["since","raid"],["north","events"],["natural","elements"],["host","region"],["north","race"],["race","series"],["series","consists"],["national","series"],["various","locations"],["locations","across"],["across","canada"],["north","team"],["ed","group"],["group","ofour"],["ofour","people"],["sport","outdoor"],["wilderness","backgrounds"],["backgrounds","unlike"],["unlike","rtnx"],["rtnx","raid"],["north","events"],["geared","towards"],["prepared","firstime"],["firstime","adventure"],["north","extreme"],["extreme","raid"],["north","extreme"],["extreme","rtnx"],["day","expedition"],["expedition","style"],["style","adventure"],["adventure","race"],["per","year"],["held","every"],["every","three"],["three","years"],["years","explore"],["explore","magazine"],["magazine","april"],["april","strong"],["strong","navigation"],["navigation","skills"],["wilderness","experience"],["experience","arequired"],["course","covers"],["covers","roughly"],["roughly","kilometers"],["unmarked","terrain"],["race","travels"],["different","region"],["provides","rugged"],["rugged","wilderness"],["wilderness","challenges"],["competitors","explore"],["explore","newfoundland"],["newfoundland","raid"],["north","extreme"],["original","founding"],["founding","members"],["adventure","racing"],["racing","world"],["world","series"],["world","championship"],["website","story"],["story","raid"],["north","extreme"],["extreme","nov"],["nov","raid"],["north","extreme"],["extreme","waselected"],["adventure","racing"],["racing","world"],["world","championships"],["world","series"],["series","raid"],["north","extreme"],["experienced","adventure"],["adventure","racers"],["significant","wilderness"],["wilderness","experience"],["significantly","long"],["long","sections"],["remote","wilderness"],["difficult","mixed"],["mixed","gender"],["gender","teams"],["teams","ofour"],["days","non"],["non","stop"],["cover","kilometres"],["trekking","mountain"],["mountain","biking"],["mountaineering","competitors"],["competitors","must"],["must","navigate"],["throughouthe","racecourse"],["canada","raid"],["north","extreme"],["extreme","competitors"],["competitors","come"],["across","canadand"],["united","states"],["broad","multi"],["multi","sport"],["sport","experience"],["extensive","outdoor"],["outdoor","skills"],["skills","international"],["international","race"],["race","competitors"],["competitors","come"],["argentina","spain"],["spain","france"],["france","finland"],["finland","new"],["new","zealand"],["zealand","singapore"],["singapore","raid"],["north","extreme"],["elliot","lake"],["revelstoke","british"],["british","columbia"],["columbia","revelstoke"],["revelstoke","chamber"],["review","newfoundland"],["newfoundland","labrador"],["corner","brook"],["brook","community"],["community","profile"],["whitehorse","yukon"],["yukon","whitehorse"],["whitehorse","yukon"],["yukon","territory"],["adventure","sports"],["sports","magazine"],["magazine","article"],["charm","oct"],["oct","newfoundland"],["newfoundland","labrador"],["corner","brook"],["brook","community"],["community","profile"],["prince","rupert"],["rupert","british"],["british","columbia"],["columbia","prince"],["prince","rupert"],["rupert","haida"],["haida","gwaii"],["race","report"],["team","dart"],["race","highlights"],["unique","history"],["history","untouched"],["untouched","wilderness"],["host","region"],["region","including"],["including","first"],["first","nations"],["nations","hunting"],["trading","routes"],["historic","sites"],["sites","rtnx"],["rtnx","locations"],["locations","top"],["file","raid"],["north","extreme"],["intrepid","travel"],["travel","athe"],["athe","start"],["start","line"],["north","extreme"],["extreme","prince"],["prince","rupert"],["rupert","haida"],["haida","gwaii"],["rtnx","website"],["wild","rose"],["rose","dart"],["prince","rupert"],["rupert","haida"],["haida","gwaii"],["rtnx","website"],["website","sole"],["sole","dart"],["corner","brook"],["adventure","racing"],["racing","world"],["world","series"],["world","championships"],["balance","bar"],["wild","rose"],["rose","phoenix"],["phoenix","whitehorse"],["whitehorse","yukon"],["yukon","whitehorse"],["whitehorse","yukon"],["yukon","rtnx"],["rtnx","website"],["corner","brook"],["rtnx","website"],["eco","internet"],["spirit","revelstoke"],["revelstoke","british"],["british","columbia"],["columbia","revelstoke"],["rtnx","website"],["website","spirit"],["old","spice"],["spice","red"],["red","zone"],["olympia","elliot"],["elliot","lake"],["rtnx","website"],["eco","internet"],["internet","olympia"],["economic","impact"],["impact","raid"],["north","extreme"],["extreme","creates"],["creates","broad"],["broad","tourism"],["tourism","promotion"],["visits","via"],["via","media"],["media","coverage"],["mouth","corner"],["corner","brook"],["brook","economic"],["economic","development"],["development","corporation"],["corporation","media"],["media","release"],["release","feb"],["edc","annual"],["annual","report"],["outdoor","life"],["life","network"],["sports","network"],["queen","charlotte"],["charlotte","islands"],["islands","observer"],["observer","article"],["article","haida"],["haida","gwaii"],["mediattention","may"],["pbs","rtnx"],["rtnx","also"],["significant","economic"],["economic","impact"],["host","region"],["region","creating"],["estimated","local"],["local","boost"],["million","camp"],["camp","frontier"],["frontier","adventure"],["adventure","sports"],["sports","hosts"],["extensive","adventure"],["adventure","racing"],["racing","training"],["training","curriculum"],["curriculum","focusing"],["knowledge","required"],["adventure","racing"],["rafting","frontier"],["frontier","adventure"],["adventure","sports"],["sports","offers"],["training","week"],["pico","playa"],["playa","expedition"],["expedition","training"],["training","week"],["rafting","website"],["pico","playa"],["playa","expedition"],["expedition","week"],["week","consists"],["staged","expedition"],["pico","de"],["mexico","history"],["eco","challenge"],["challenge","competitor"],["competitor","dave"],["bring","expedition"],["expedition","racing"],["canadand","introduced"],["originally","known"],["frontier","adventure"],["adventure","racing"],["company","grew"],["day","expedition"],["expedition","race"],["race","raid"],["north","extreme"],["hour","series"],["adventure","challenge"],["introduced","hour"],["hour","adventure"],["frontier","adventure"],["adventure","sports"],["sports","training"],["camp","frontier"],["frontier","brand"],["brand","offering"],["offering","week"],["week","long"],["long","training"],["training","camps"],["costa","rica"],["rica","since"],["inception","frontier"],["canada","frontier"],["frontier","adventure"],["adventure","sports"],["sports","archives"],["archives","frontier"],["haida","gwaii"],["prince","rupert"],["rupert","british"],["british","columbia"],["broadcast","nationally"],["us","category"],["category","adventure"],["adventure","racing"],["racing","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","sport"]],"all_collocations":["frontier adventure","adventure sports","sports training","training fast","citation adventure","adventure racing","racing adventure","adventure race","race organizer","operation since","since frontier","frontier adventure","adventure sports","international reputation","solid logistics","fast hosts","hosts events","frontier adventure","adventure challenge","challenge raid","north extreme","non stop","stop races","races range","six days","require coed","coed teams","hiking hike","hike mountain","mountain bike","negotiate fixed","fixed ropes","unmarked racecourse","wilderness adventure","adventure racing","racing adventure","adventure racing","non stop","stop multi","multi day","day multi","multi discipline","discipline team","team event","many ways","exploration expedition","members across","finish line","line together","together adventure","adventure racing","racing requires","strong navigation","navigation skills","common disciplines","disciplines involved","adventure race","mountain biking","biking hiking","many different","different lengths","events ranging","month long","long expeditions","take competitors","remote wilderness","use strategy","win raid","north image","thumb team","big fish","since raid","north events","natural elements","host region","north race","race series","series consists","national series","various locations","locations across","across canada","north team","ed group","group ofour","ofour people","sport outdoor","wilderness backgrounds","backgrounds unlike","unlike rtnx","rtnx raid","north events","geared towards","prepared firstime","firstime adventure","north extreme","extreme raid","north extreme","extreme rtnx","day expedition","expedition style","style adventure","adventure race","per year","held every","every three","three years","years explore","explore magazine","magazine april","april strong","strong navigation","navigation skills","wilderness experience","experience arequired","course covers","covers roughly","roughly kilometers","unmarked terrain","race travels","different region","provides rugged","rugged wilderness","wilderness challenges","competitors explore","explore newfoundland","newfoundland raid","north extreme","original founding","founding members","adventure racing","racing world","world series","world championship","website story","story raid","north extreme","extreme nov","nov raid","north extreme","extreme waselected","adventure racing","racing world","world championships","world series","series raid","north extreme","experienced adventure","adventure racers","significant wilderness","wilderness experience","significantly long","long sections","remote wilderness","difficult mixed","mixed gender","gender teams","teams ofour","days non","non stop","cover kilometres","trekking mountain","mountain biking","mountaineering competitors","competitors must","must navigate","throughouthe racecourse","canada raid","north extreme","extreme competitors","competitors come","across canadand","united states","broad multi","multi sport","sport experience","extensive outdoor","outdoor skills","skills international","international race","race competitors","competitors come","argentina spain","spain france","france finland","finland new","new zealand","zealand singapore","singapore raid","north extreme","elliot lake","revelstoke british","british columbia","columbia revelstoke","revelstoke chamber","review newfoundland","newfoundland labrador","corner brook","brook community","community profile","whitehorse yukon","yukon whitehorse","whitehorse yukon","yukon territory","adventure sports","sports magazine","magazine article","charm oct","oct newfoundland","newfoundland labrador","corner brook","brook community","community profile","prince rupert","rupert british","british columbia","columbia prince","prince rupert","rupert haida","haida gwaii","race report","team dart","race highlights","unique history","history untouched","untouched wilderness","host region","region including","including first","first nations","nations hunting","trading routes","historic sites","sites rtnx","rtnx locations","locations top","file raid","north extreme","intrepid travel","travel athe","athe start","start line","north extreme","extreme prince","prince rupert","rupert haida","haida gwaii","rtnx website","wild rose","rose dart","prince rupert","rupert haida","haida gwaii","rtnx website","website sole","sole dart","corner brook","adventure racing","racing world","world series","world championships","balance bar","wild rose","rose phoenix","phoenix whitehorse","whitehorse yukon","yukon whitehorse","whitehorse yukon","yukon rtnx","rtnx website","corner brook","rtnx website","eco internet","spirit revelstoke","revelstoke british","british columbia","columbia revelstoke","rtnx website","website spirit","old spice","spice red","red zone","olympia elliot","elliot lake","rtnx website","eco internet","internet olympia","economic impact","impact raid","north extreme","extreme creates","creates broad","broad tourism","tourism promotion","visits via","via media","media coverage","mouth corner","corner brook","brook economic","economic development","development corporation","corporation media","media release","release feb","edc annual","annual report","outdoor life","life network","sports network","queen charlotte","charlotte islands","islands observer","observer article","article haida","haida gwaii","mediattention may","pbs rtnx","rtnx also","significant economic","economic impact","host region","region creating","estimated local","local boost","million camp","camp frontier","frontier adventure","adventure sports","sports hosts","extensive adventure","adventure racing","racing training","training curriculum","curriculum focusing","knowledge required","adventure racing","rafting frontier","frontier adventure","adventure sports","sports offers","training week","pico playa","playa expedition","expedition training","training week","rafting website","pico playa","playa expedition","expedition week","week consists","staged expedition","pico de","mexico history","eco challenge","challenge competitor","competitor dave","bring expedition","expedition racing","canadand introduced","originally known","frontier adventure","adventure racing","company grew","day expedition","expedition race","race raid","north extreme","hour series","adventure challenge","introduced hour","hour adventure","frontier adventure","adventure sports","sports training","camp frontier","frontier brand","brand offering","offering week","week long","long training","training camps","costa rica","rica since","inception frontier","canada frontier","frontier adventure","adventure sports","sports archives","archives frontier","haida gwaii","prince rupert","rupert british","british columbia","broadcast nationally","us category","category adventure","adventure racing","racing category","category adventure","adventure travel","travel category","category sport"],"new_description":"frontier adventure_sports training fast citation adventure_racing adventure race organizer canada operation since frontier adventure_sports established international reputation solid logistics challenging fast hosts events several frontier adventure challenge raid north raid north_extreme non stop races range length hours six days require coed teams three four hiking hike mountain_bike negotiate fixed ropes unmarked racecourse wilderness adventure_racing adventure_racing defined non stop multi day multi discipline team event many ways likened exploration expedition goal competition firsteam get members across finish line together adventure_racing requires perseverance strong navigation skills common disciplines involved adventure race mountain_biking hiking many_different lengths formats events ranging road month long expeditions course take competitors remote wilderness use strategy determine best_food pace maintain win raid north image thumb team big fish since raid north events designed natural elements host region raid north race series consists national series various_locations across canada teams cover kilometers raid north team ed group ofour people variety sport outdoor wilderness backgrounds unlike rtnx raid north events geared_towards prepared firstime adventure north_extreme raid north_extreme rtnx day expedition style adventure race held per_year since held every three_years explore magazine april strong navigation skills wilderness experience arequired course covers roughly kilometers unmarked terrain year race travels different region canada provides rugged wilderness challenges competitors explore newfoundland raid north_extreme one original founding members adventure_racing world series world_championship website story raid north_extreme nov raid north_extreme waselected adventure_racing world_championships rtnx included world series raid north_extreme designed experienced adventure racers significant wilderness experience significantly long sections remote wilderness difficult mixed gender teams ofour days non stop cover kilometres trekking mountain_biking mountaineering competitors must navigate route throughouthe racecourse expedition longer canada raid north_extreme competitors come across canadand united_states tend broad multi sport experience extensive outdoor skills international race competitors come argentina spain france finland new_zealand singapore raid north_extreme previously hosted elliot lake revelstoke british_columbia revelstoke revelstoke chamber commerce review newfoundland_labrador corner brook community profile high whitehorse yukon whitehorse yukon territory adventure_sports magazine article time charm oct newfoundland_labrador corner brook community profile high prince rupert british_columbia prince rupert haida gwaii race report team dart west rtnx race highlights unique history untouched wilderness culture host region including first nations hunting trading routes well historic_sites rtnx locations top file raid north_extreme thumb intrepid travel athe_start line raid north_extreme prince rupert haida gwaii west rtnx website wild rose dart atmosphere prince rupert haida gwaii rtnx website sole dart playground corner brook adventure_racing world series world_championships website balance bar adventures rtnx wild rose phoenix whitehorse yukon whitehorse yukon rtnx website corner brook rtnx website eco internet eastern spirit revelstoke british_columbia revelstoke rtnx website spirit old spice red zone olympia elliot lake rtnx website eco internet olympia nomad economic_impact raid north_extreme creates broad tourism_promotion region visits via media coverage word mouth corner brook economic_development corporation media release feb edc annual report documentaries race aired outdoor life network sports network global queen charlotte islands observer article haida gwaii mediattention may pbs rtnx also significant economic_impact host region creating estimated local boost million camp frontier adventure_sports hosts extensive adventure_racing training curriculum focusing skills knowledge required compete adventure_racing partnership rafting frontier adventure_sports offers training week well pico playa expedition training week mexico rafting website pico playa expedition week consists staged expedition pico de gulf mexico history eco challenge competitor dave wanted bring expedition racing canadand introduced north originally known frontier adventure_racing company grew include day expedition race raid north_extreme hour series adventure challenge frontier purchased geoff introduced hour adventure restructured company frontier adventure_sports training created camp frontier brand offering week_long training camps mexico costa_rica since inception frontier hosted canada frontier adventure_sports archives frontier recognized raid north held haida gwaii prince rupert british_columbia broadcast nationally global canadand pbs us category_adventure racing category_adventure_travel_category sport canada"},{"title":"G Adventures","description":"g adventures formerly gap adventures is a travel company and offersocially and eco tourism the company is based in toronto ontario canadaccording tourradar g adventures offer differentours in countries history bruce poon tip founded gap adventures in aftereturning from a backpacking tour of asia the company was originally named gap adventures gap being an acronym for great adventure people gap s firstour visited ecuador in february with six clients in gap adventures wasued by american clothing company gap inc over the name g adventures was required to change its name by the us district courthat deemed the brand was an infringement on gap inclothing the ruling stated thathe name and brand gap adventures caused legitimate confusion andilution of the brand for the clothing company and their khakis therefore g adventures was required to change its name by october partnerships in g adventures entered into a million partnership withe multilateral investment fund a member of the inter american development bank idb mif idb mif is the leading source of development funding for latin americand the caribbean g adventures will be built five new long term sustainable tourism projects over the next years in latin america in on world tourism day g adventures announced a partnership withe jane goodall institute the jane goodall collection by g adventures is a program of itineraries aimed at raising the awareness of animal welfare and wildlife friendly tourism endorsed by primatologist dr jane goodall see also ecotourism intrepid travel references externalinks category adventure travel category companies based in toronto category travel and holiday companies of canada category travel websites","main_words":["g","adventures","formerly","gap","adventures","travel_company","toronto","ontario","tourradar","g","adventures","offer","countries","history","bruce","tip","founded","gap","adventures","backpacking","tour","asia","company","originally","named","gap","adventures","gap","acronym","great_adventure","people","gap","visited","ecuador","february","six","clients","gap","adventures","american","clothing","company","gap","inc","name","g","adventures","required","change","name","us","district","deemed","brand","gap","ruling","stated_thathe","name","brand","gap","adventures","caused","legitimate","confusion","brand","clothing","company","therefore","g","adventures","required","change","name","october","partnerships","g","adventures","entered","million","partnership","withe","investment","fund","member","inter","american","development","bank","leading","source","development","funding","latin_americand","caribbean","g","adventures","built","five","new","long_term","sustainable_tourism","projects","next","years","latin_america","world_tourism","day","g","adventures","announced","partnership","withe","jane","institute","jane","collection","g","adventures","program","itineraries","aimed","raising","awareness","animal_welfare","wildlife","friendly","tourism","endorsed","jane","see_also","ecotourism","intrepid","travel","references_externalinks","category_adventure_travel_category","companies_based","toronto","category_travel","holiday_companies","websites"],"clean_bigrams":[["g","adventures"],["adventures","formerly"],["formerly","gap"],["gap","adventures"],["travel","company"],["eco","tourism"],["toronto","ontario"],["tourradar","g"],["g","adventures"],["adventures","offer"],["countries","history"],["history","bruce"],["tip","founded"],["founded","gap"],["gap","adventures"],["backpacking","tour"],["originally","named"],["named","gap"],["gap","adventures"],["adventures","gap"],["great","adventure"],["adventure","people"],["people","gap"],["visited","ecuador"],["six","clients"],["gap","adventures"],["american","clothing"],["clothing","company"],["company","gap"],["gap","inc"],["name","g"],["g","adventures"],["us","district"],["brand","gap"],["ruling","stated"],["stated","thathe"],["thathe","name"],["brand","gap"],["gap","adventures"],["adventures","caused"],["caused","legitimate"],["legitimate","confusion"],["clothing","company"],["therefore","g"],["g","adventures"],["october","partnerships"],["g","adventures"],["adventures","entered"],["million","partnership"],["partnership","withe"],["investment","fund"],["inter","american"],["american","development"],["development","bank"],["leading","source"],["development","funding"],["latin","americand"],["caribbean","g"],["g","adventures"],["built","five"],["five","new"],["new","long"],["long","term"],["term","sustainable"],["sustainable","tourism"],["tourism","projects"],["next","years"],["latin","america"],["world","tourism"],["tourism","day"],["day","g"],["g","adventures"],["adventures","announced"],["partnership","withe"],["withe","jane"],["g","adventures"],["itineraries","aimed"],["animal","welfare"],["wildlife","friendly"],["friendly","tourism"],["tourism","endorsed"],["see","also"],["also","ecotourism"],["ecotourism","intrepid"],["intrepid","travel"],["travel","references"],["references","externalinks"],["externalinks","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","companies"],["companies","based"],["toronto","category"],["category","travel"],["holiday","companies"],["canada","category"],["category","travel"],["travel","websites"]],"all_collocations":["g adventures","adventures formerly","formerly gap","gap adventures","travel company","eco tourism","toronto ontario","tourradar g","g adventures","adventures offer","countries history","history bruce","tip founded","founded gap","gap adventures","backpacking tour","originally named","named gap","gap adventures","adventures gap","great adventure","adventure people","people gap","visited ecuador","six clients","gap adventures","american clothing","clothing company","company gap","gap inc","name g","g adventures","us district","brand gap","ruling stated","stated thathe","thathe name","brand gap","gap adventures","adventures caused","caused legitimate","legitimate confusion","clothing company","therefore g","g adventures","october partnerships","g adventures","adventures entered","million partnership","partnership withe","investment fund","inter american","american development","development bank","leading source","development funding","latin americand","caribbean g","g adventures","built five","five new","new long","long term","term sustainable","sustainable tourism","tourism projects","next years","latin america","world tourism","tourism day","day g","g adventures","adventures announced","partnership withe","withe jane","g adventures","itineraries aimed","animal welfare","wildlife friendly","friendly tourism","tourism endorsed","see also","also ecotourism","ecotourism intrepid","intrepid travel","travel references","references externalinks","externalinks category","category adventure","adventure travel","travel category","category companies","companies based","toronto category","category travel","holiday companies","canada category","category travel","travel websites"],"new_description":"g adventures formerly gap adventures travel_company eco_tourism_company_based toronto ontario tourradar g adventures offer countries history bruce tip founded gap adventures backpacking tour asia company originally named gap adventures gap acronym great_adventure people gap visited ecuador february six clients gap adventures american clothing company gap inc name g adventures required change name us district deemed brand gap ruling stated_thathe name brand gap adventures caused legitimate confusion brand clothing company therefore g adventures required change name october partnerships g adventures entered million partnership withe investment fund member inter american development bank leading source development funding latin_americand caribbean g adventures built five new long_term sustainable_tourism projects next years latin_america world_tourism day g adventures announced partnership withe jane institute jane collection g adventures program itineraries aimed raising awareness animal_welfare wildlife friendly tourism endorsed jane see_also ecotourism intrepid travel references_externalinks category_adventure_travel_category companies_based toronto category_travel holiday_companies canada_category_travel websites"},{"title":"Galactic Suite Design","description":"galactic suite design is an aerospace design company based in barcelona spain the company develops concepts design and interiors of habitats and vehicles the projecthat first broughthe company into the public eye was the galactic suite space resort which intends to develop a private small space station at leo the orbital segment of a space tourism experience which will also include intensive training on a tropical island galactic suite design is also the lead company in the consortium of companies fielding the barcelona moon team a competitor for the google lunar x prize with a moon launch scheduled for galactic suite space resorthe galactic suite space resort was a concept proposal for an orbit al space station history the galactic suite space resort space station began as a hobby for xavier claramunt architect andirector of galactic suite design the station reportedly enteredevelopment after an unnamed spacenthusiast invested to build it an unnamed united states american company withe goal of colonising mars assisted in some of thearly stages of the project andiscussions with additional private investors from japan the united states and the united arab emirates have taken place image galactic suitejpg thumb right illustration of an early design for the galactic suite space resort alongside a space shuttlearly design concepts called for a central hub with a dozen modules radiating outwards providing an indefinite number of bedrooms for several customers at a time claramunt said that while it would be a challenge to design a bathroom that works in microgravity showers might be taken in a spa room with bubbles ofloating water the issue of moving around in space would be solved by havinguests wear suits of velcro for sticking to the module wallsimilar to its use in the film a space odyssey film a space odyssey the station was to conceivably orbithearth oncevery minutes providing day and night cycles every hours the company stated in that a three day stay was projected to cost per customer company studies found that people worldwide were capable of affording such a stay this complete space tourism experience would also notionally include the design of a james bond style astronautraining center and spaceport which will be based in the caribbean the spaceport would also house a new launch system built with safety and thenvironment in mind in claramunt stated that construction of the station would begin october of that year and that european company eads astrium would be the contractor in charge of building the modules and other equipment however astrium denied any involvement in the project inovember the company announced that a first phase would bring intorbit a single modified atv module for a cost of while a second phase would increase the total number of modules up to four in a cross configuration criticism somexperts including thomas bouvet international astronautical federation mark homnick frontiers corporation frontiers and juan de dalmau centro tecnol gico para la industriaeron utica y del espacio expressed skepticism abouthe project raising concerns that galactic suite would be unable to meethe goal because no hardware had been built and tested and that no rocket system was available to transport guests to the station the stated investmento the company is an issue since the identity of the investor has not been revealed the investment might fall short of covering all the project s needs for example the suborbital shuttle proposed by eads astrium would cost and the conversion of european space agency esa s automated transfer vehicle into a human rated transport system would cost around barcelona moon team galactic suite design is the lead company in a consortium of companies fielding the barcelona moon team in the google lunar x prize competition gsdoeso through a filial company galactic suite moon race bmt is the official candidate to the glxp the team is a multidisciplinary joint venture bringing together spanish entrepreneurial industrial and academicapabilities the team also includes the centre of aerospace technology in barcelona centre de technologiaerospacial ctae the polytechnic university of catalonia upc or the international engineering advisory firm altran bmt wants to promote a widening involvement of private initiative in the development of space technology and industry also including sectorsuch as exploration and tourism the barcelona moon team gxlp mission ischeduled to launch aboard a china chinese long march c in june references externalinks galactic suite design official site galactic suite space resort official site google lunar x prize official site category proposed space stations category space tourism category companies based in barcelona category private spaceflight companies category spanish companiestablished in","main_words":["galactic","suite","design","aerospace","design","company_based","barcelona","spain","company","develops","concepts","design","interiors","habitats","vehicles","first","broughthe","company","public","eye","galactic_suite","space","resort","intends","develop","private","small","space_station","leo","orbital","segment","space_tourism","experience","also_include","intensive","training","tropical","island","galactic_suite","design","also","lead","company","consortium","companies","fielding","barcelona","moon","team","competitor","google","lunar","x_prize","moon","launch","scheduled","galactic_suite","space","resorthe","galactic_suite","space","resort","concept","proposal","orbit","space_station","history","galactic_suite","space","resort","space_station","began","hobby","xavier","architect","galactic_suite","design","station","reportedly","unnamed","invested","build","unnamed","united_states","american","company","withe_goal","mars","assisted","thearly","stages","project","additional","private","investors","japan","united_states","united_arab_emirates","taken_place","image","galactic","thumb","right","illustration","early","design","galactic_suite","space","resort","alongside","space","design","concepts","called","central","hub","dozen","modules","providing","indefinite","number","bedrooms","several","customers","time","said","would","challenge","design","bathroom","works","microgravity","might","taken","spa","room","water","issue","moving","around","space","would","wear","suits","module","use","film","space","odyssey","film","space","odyssey","station","oncevery","minutes","providing","day","night","cycles","every","hours","company","stated","three_day","stay","projected","cost","per","customer","company","studies","found","people","worldwide","capable","stay","complete","space_tourism","experience","design","james","bond","style","center","spaceport","based","caribbean","spaceport","would_also","house","new","launch_system","built","safety","thenvironment","mind","stated","construction","station","would","begin","october","year","european","company","eads_astrium","would","contractor","charge","building","modules","equipment","however","astrium","denied","involvement","project","inovember","company_announced","first","phase","would","bring","intorbit","single","modified","module","cost","second","phase","would","increase","total","number","modules","four","cross","configuration","criticism","including","thomas","international","astronautical","federation","mark","frontiers","corporation","frontiers","juan","de","centro","gico","para","la","del","expressed","abouthe","project","raising","concerns","galactic_suite","would","unable","meethe","goal","hardware","built","tested","rocket","system","available","transport","guests","station","stated","investmento","company","issue","since","identity","investor","revealed","investment","might","fall","short","covering","project","needs","example","suborbital","shuttle","proposed","eads_astrium","would","cost","conversion","european","space_agency","automated","transfer","vehicle","human","rated","would","cost","around","barcelona","moon","team","galactic_suite","design","lead","company","consortium","companies","fielding","barcelona","moon","team","google","lunar","x_prize","competition","company","galactic_suite","moon","race","official","candidate","team","joint_venture","bringing","together","spanish","industrial","team","also_includes","centre","aerospace","technology","barcelona","centre","de","polytechnic","university","catalonia","international","engineering","advisory","firm","wants","promote","involvement","private","initiative","development","space","technology","industry","also","including","exploration","tourism","barcelona","moon","team","mission","ischeduled","launch","aboard","china","chinese","long","march","c","june","references_externalinks","galactic_suite","design","official_site","galactic_suite","space","resort","official_site","google","lunar","x_prize","official_site_category","proposed","space_stations","category_space_tourism","category_companies_based","barcelona","category_private_spaceflight","companies_category","spanish","companiestablished"],"clean_bigrams":[["galactic","suite"],["suite","design"],["aerospace","design"],["design","company"],["company","based"],["barcelona","spain"],["company","develops"],["develops","concepts"],["concepts","design"],["first","broughthe"],["broughthe","company"],["public","eye"],["galactic","suite"],["suite","space"],["space","resort"],["private","small"],["small","space"],["space","station"],["orbital","segment"],["space","tourism"],["tourism","experience"],["also","include"],["include","intensive"],["intensive","training"],["tropical","island"],["island","galactic"],["galactic","suite"],["suite","design"],["lead","company"],["companies","fielding"],["barcelona","moon"],["moon","team"],["google","lunar"],["lunar","x"],["x","prize"],["moon","launch"],["launch","scheduled"],["galactic","suite"],["suite","space"],["space","resorthe"],["resorthe","galactic"],["galactic","suite"],["suite","space"],["space","resort"],["concept","proposal"],["space","station"],["station","history"],["galactic","suite"],["suite","space"],["space","resort"],["resort","space"],["space","station"],["station","began"],["galactic","suite"],["suite","design"],["station","reportedly"],["unnamed","united"],["united","states"],["states","american"],["american","company"],["company","withe"],["withe","goal"],["mars","assisted"],["thearly","stages"],["additional","private"],["private","investors"],["united","states"],["united","arab"],["arab","emirates"],["taken","place"],["place","image"],["image","galactic"],["thumb","right"],["right","illustration"],["early","design"],["galactic","suite"],["suite","space"],["space","resort"],["resort","alongside"],["design","concepts"],["concepts","called"],["central","hub"],["dozen","modules"],["indefinite","number"],["several","customers"],["spa","room"],["moving","around"],["space","would"],["wear","suits"],["space","odyssey"],["odyssey","film"],["space","odyssey"],["oncevery","minutes"],["minutes","providing"],["providing","day"],["night","cycles"],["cycles","every"],["every","hours"],["company","stated"],["three","day"],["day","stay"],["cost","per"],["per","customer"],["customer","company"],["company","studies"],["studies","found"],["people","worldwide"],["complete","space"],["space","tourism"],["tourism","experience"],["experience","would"],["would","also"],["also","include"],["james","bond"],["bond","style"],["spaceport","would"],["would","also"],["also","house"],["new","launch"],["launch","system"],["system","built"],["station","would"],["would","begin"],["begin","october"],["european","company"],["company","eads"],["eads","astrium"],["astrium","would"],["equipment","however"],["however","astrium"],["astrium","denied"],["project","inovember"],["company","announced"],["first","phase"],["phase","would"],["would","bring"],["bring","intorbit"],["single","modified"],["second","phase"],["phase","would"],["would","increase"],["total","number"],["cross","configuration"],["configuration","criticism"],["including","thomas"],["international","astronautical"],["astronautical","federation"],["federation","mark"],["frontiers","corporation"],["corporation","frontiers"],["juan","de"],["gico","para"],["para","la"],["abouthe","project"],["project","raising"],["raising","concerns"],["galactic","suite"],["suite","would"],["meethe","goal"],["rocket","system"],["transport","guests"],["stated","investmento"],["issue","since"],["investment","might"],["might","fall"],["fall","short"],["suborbital","shuttle"],["shuttle","proposed"],["eads","astrium"],["astrium","would"],["would","cost"],["european","space"],["space","agency"],["automated","transfer"],["transfer","vehicle"],["human","rated"],["rated","transport"],["transport","system"],["system","would"],["would","cost"],["cost","around"],["around","barcelona"],["barcelona","moon"],["moon","team"],["team","galactic"],["galactic","suite"],["suite","design"],["lead","company"],["companies","fielding"],["barcelona","moon"],["moon","team"],["google","lunar"],["lunar","x"],["x","prize"],["prize","competition"],["company","galactic"],["galactic","suite"],["suite","moon"],["moon","race"],["official","candidate"],["joint","venture"],["venture","bringing"],["bringing","together"],["together","spanish"],["team","also"],["also","includes"],["aerospace","technology"],["barcelona","centre"],["centre","de"],["polytechnic","university"],["international","engineering"],["engineering","advisory"],["advisory","firm"],["private","initiative"],["space","technology"],["industry","also"],["also","including"],["barcelona","moon"],["moon","team"],["mission","ischeduled"],["launch","aboard"],["china","chinese"],["chinese","long"],["long","march"],["march","c"],["june","references"],["references","externalinks"],["externalinks","galactic"],["galactic","suite"],["suite","design"],["design","official"],["official","site"],["site","galactic"],["galactic","suite"],["suite","space"],["space","resort"],["resort","official"],["official","site"],["site","google"],["google","lunar"],["lunar","x"],["x","prize"],["prize","official"],["official","site"],["site","category"],["category","proposed"],["proposed","space"],["space","stations"],["stations","category"],["category","space"],["space","tourism"],["tourism","category"],["category","companies"],["companies","based"],["barcelona","category"],["category","private"],["private","spaceflight"],["spaceflight","companies"],["companies","category"],["category","spanish"],["spanish","companiestablished"]],"all_collocations":["galactic suite","suite design","aerospace design","design company","company based","barcelona spain","company develops","develops concepts","concepts design","first broughthe","broughthe company","public eye","galactic suite","suite space","space resort","private small","small space","space station","orbital segment","space tourism","tourism experience","also include","include intensive","intensive training","tropical island","island galactic","galactic suite","suite design","lead company","companies fielding","barcelona moon","moon team","google lunar","lunar x","x prize","moon launch","launch scheduled","galactic suite","suite space","space resorthe","resorthe galactic","galactic suite","suite space","space resort","concept proposal","space station","station history","galactic suite","suite space","space resort","resort space","space station","station began","galactic suite","suite design","station reportedly","unnamed united","united states","states american","american company","company withe","withe goal","mars assisted","thearly stages","additional private","private investors","united states","united arab","arab emirates","taken place","place image","image galactic","right illustration","early design","galactic suite","suite space","space resort","resort alongside","design concepts","concepts called","central hub","dozen modules","indefinite number","several customers","spa room","moving around","space would","wear suits","space odyssey","odyssey film","space odyssey","oncevery minutes","minutes providing","providing day","night cycles","cycles every","every hours","company stated","three day","day stay","cost per","per customer","customer company","company studies","studies found","people worldwide","complete space","space tourism","tourism experience","experience would","would also","also include","james bond","bond style","spaceport would","would also","also house","new launch","launch system","system built","station would","would begin","begin october","european company","company eads","eads astrium","astrium would","equipment however","however astrium","astrium denied","project inovember","company announced","first phase","phase would","would bring","bring intorbit","single modified","second phase","phase would","would increase","total number","cross configuration","configuration criticism","including thomas","international astronautical","astronautical federation","federation mark","frontiers corporation","corporation frontiers","juan de","gico para","para la","abouthe project","project raising","raising concerns","galactic suite","suite would","meethe goal","rocket system","transport guests","stated investmento","issue since","investment might","might fall","fall short","suborbital shuttle","shuttle proposed","eads astrium","astrium would","would cost","european space","space agency","automated transfer","transfer vehicle","human rated","rated transport","transport system","system would","would cost","cost around","around barcelona","barcelona moon","moon team","team galactic","galactic suite","suite design","lead company","companies fielding","barcelona moon","moon team","google lunar","lunar x","x prize","prize competition","company galactic","galactic suite","suite moon","moon race","official candidate","joint venture","venture bringing","bringing together","together spanish","team also","also includes","aerospace technology","barcelona centre","centre de","polytechnic university","international engineering","engineering advisory","advisory firm","private initiative","space technology","industry also","also including","barcelona moon","moon team","mission ischeduled","launch aboard","china chinese","chinese long","long march","march c","june references","references externalinks","externalinks galactic","galactic suite","suite design","design official","official site","site galactic","galactic suite","suite space","space resort","resort official","official site","site google","google lunar","lunar x","x prize","prize official","official site","site category","category proposed","proposed space","space stations","stations category","category space","space tourism","tourism category","category companies","companies based","barcelona category","category private","private spaceflight","spaceflight companies","companies category","category spanish","spanish companiestablished"],"new_description":"galactic suite design aerospace design company_based barcelona spain company develops concepts design interiors habitats vehicles first broughthe company public eye galactic_suite space resort intends develop private small space_station leo orbital segment space_tourism experience also_include intensive training tropical island galactic_suite design also lead company consortium companies fielding barcelona moon team competitor google lunar x_prize moon launch scheduled galactic_suite space resorthe galactic_suite space resort concept proposal orbit space_station history galactic_suite space resort space_station began hobby xavier architect galactic_suite design station reportedly unnamed invested build unnamed united_states american company withe_goal mars assisted thearly stages project additional private investors japan united_states united_arab_emirates taken_place image galactic thumb right illustration early design galactic_suite space resort alongside space design concepts called central hub dozen modules providing indefinite number bedrooms several customers time said would challenge design bathroom works microgravity might taken spa room water issue moving around space would wear suits module use film space odyssey film space odyssey station oncevery minutes providing day night cycles every hours company stated three_day stay projected cost per customer company studies found people worldwide capable stay complete space_tourism experience would_also_include design james bond style center spaceport based caribbean spaceport would_also house new launch_system built safety thenvironment mind stated construction station would begin october year european company eads_astrium would contractor charge building modules equipment however astrium denied involvement project inovember company_announced first phase would bring intorbit single modified module cost second phase would increase total number modules four cross configuration criticism including thomas international astronautical federation mark frontiers corporation frontiers juan de centro gico para la del expressed abouthe project raising concerns galactic_suite would unable meethe goal hardware built tested rocket system available transport guests station stated investmento company issue since identity investor revealed investment might fall short covering project needs example suborbital shuttle proposed eads_astrium would cost conversion european space_agency automated transfer vehicle human rated transport_system would cost around barcelona moon team galactic_suite design lead company consortium companies fielding barcelona moon team google lunar x_prize competition company galactic_suite moon race official candidate team joint_venture bringing together spanish industrial team also_includes centre aerospace technology barcelona centre de polytechnic university catalonia international engineering advisory firm wants promote involvement private initiative development space technology industry also including exploration tourism barcelona moon team mission ischeduled launch aboard china chinese long march c june references_externalinks galactic_suite design official_site galactic_suite space resort official_site google lunar x_prize official_site_category proposed space_stations category_space_tourism category_companies_based barcelona category_private_spaceflight companies_category spanish companiestablished"},{"title":"Galignani's guides","description":"redirect john anthony galignani category travel guide books category series of books category tourism in europe","main_words":["redirect","john","anthony","category_travel_guide_books","category_series","books_category_tourism","europe"],"clean_bigrams":[["redirect","john"],["john","anthony"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","tourism"]],"all_collocations":["redirect john","john anthony","category travel","travel guide","guide books","books category","category series","books category","category tourism"],"new_description":"redirect john anthony category_travel_guide_books category_series books_category_tourism europe"},{"title":"Garde manger","description":"file modern charcuterie displayjpg thumb upright a contemporary terrine food terrine and galantine platter a garde manger french language french for keeper of the food is a cool well ventilated area where coldishesuch asalad s hors d uvre s appetizers canap s p t s and terrine food terrines are prepared and other foods are stored underefrigeration the person in charge of this area is known as the chef garde manger or pantry chef larger hotels and restaurants may have garde manger staff to perform additional dutiesuch as creating decorativelements of buffet presentation like ice carving and edible centerpiece s made fromaterialsuch as cheese thai fruit and vegetable carvings butter salt dough or tallow file pollardjpg thumb a chaud froidisplay piece the term garde manger originated in pre french revolution ary france athatime maintaining a large supply ofood and beverage was an outward symbol of power wealth and status it is because of this duty of supervising the preserving ofood and managing its utilization that many interprethe term garde manger as keeping to eathe term garde manger is also related to the cold rooms inside castles and manor house s where the food wastored these food storage areas were usually located in the lower levelsince the cool basement likenvironment was ideal for storing food these cold storage areas developed over time into the modern cold kitchen most merchants who worked outside noble manors athis time were associated with a guild an association of persons of the same trade formed for their mutual aid and protection guilds wouldevelop training programs for their members thereby preserving their knowledge and skills charcuterie was the name of a guild that prepared and sold cooked items made from pigs through this organization the preparation of hams bacon sausages pates and terrines were preserved when the guild system was abolished in following the french revolution of garde mangers took on the responsibility for tasks that had formerly been performed by charcutieres who hadifficulty competing withe versatile garde mangers due to the limited range of skills involved the position of butcher first developed as a specialty within the garde manger kitchen as bothe cost of andemand for animal meats increased more space was required for the task ofabricating and portioning the raw meats this increased need for space was due not only to an upswing in the volume of meat sales but also to the need for separating raw meats from processed foods to avoid cross contamination and the resulting possibility ofoodborne illness modern garde manger modern garde manger can refer to differenthings in the professional kitchen in many restaurants it is a station which is generally an entry level cooking position within a restaurant as it often involves preparing salads or other smaller plates which can be heated and quickly plated without significant experience in other high profile classically influenced restaurants and hotels the position pertains to the classical preparations which often include p t s terrine food terrines and elaborate aspic see also brigade cuisine garnish food presentation list of restauranterminology pantry food production operation and management aman publisher india culinary institute of america garde manger the art and craft of the cold kitchen externalinks gardemangercom category french words and phrases category garde manger category charcuterie category food services occupations category restauranterminology category cooking category food storage category culinary terminology","main_words":["file","modern","charcuterie","thumb","upright","contemporary","terrine","food","terrine","galantine","platter","garde_manger","french_language","french","keeper","food","cool","well","ventilated","area","hors","appetizers","p","terrine","food","terrines","prepared","foods","stored","person","charge","area","known","chef","garde_manger","pantry","chef","larger","hotels_restaurants","may","garde_manger","staff","perform","additional","creating","buffet","presentation","like","ice","carving","centerpiece","made","cheese","thai","fruit","vegetable","butter","salt","dough","file","thumb","piece","term","garde_manger","originated","pre","french","revolution","france","athatime","maintaining","large","supply","ofood","beverage","outward","symbol","power","wealth","status","duty","preserving","ofood","managing","utilization","many","term","garde_manger","keeping","eathe","term","garde_manger","also","related","cold","rooms","inside","castles","manor","house","food","food","storage","areas","usually_located","lower","cool","basement","ideal","storing","food","cold","storage","areas","developed","time","modern","cold","kitchen","merchants","worked","outside","noble","athis","time","associated","guild","association","persons","trade","formed","mutual","aid","protection","guilds","training","programs","members","thereby","preserving","knowledge","skills","charcuterie","name","guild","prepared","sold","cooked","items","made","pigs","organization","preparation","bacon","sausages","terrines","preserved","guild","system","abolished","following","french","revolution","garde","took","responsibility","tasks","formerly","performed","competing","withe","garde","due","limited","range","skills","involved","position","butcher","first","developed","specialty","within","garde_manger","kitchen","bothe","cost","andemand","animal","meats","increased","space","required","task","raw","meats","increased","need","space","due","volume","meat","sales","also","need","separating","raw","meats","processed","foods","avoid","cross","contamination","resulting","possibility","illness","modern","garde_manger","modern","garde_manger","refer","professional","kitchen","many_restaurants","station","generally","entry","level","cooking","position","within","restaurant","often","involves","preparing","salads","smaller","plates","heated","quickly","plated","without","significant","experience","high_profile","influenced","restaurants_hotels","position","classical","preparations","often","include","p","terrine","food","terrines","elaborate","see_also","brigade_cuisine","garnish","food","presentation","list","restauranterminology","pantry","food","production","operation","management","publisher","india","culinary_institute","america","garde_manger","art","craft","cold","kitchen","words","phrases","category","garde_manger","category","charcuterie","category_food_services","occupations_category_restauranterminology","category","cooking","category_food","storage","category","culinary","terminology"],"clean_bigrams":[["file","modern"],["modern","charcuterie"],["thumb","upright"],["contemporary","terrine"],["terrine","food"],["food","terrine"],["galantine","platter"],["garde","manger"],["manger","french"],["french","language"],["language","french"],["cool","well"],["well","ventilated"],["ventilated","area"],["terrine","food"],["food","terrines"],["chef","garde"],["garde","manger"],["pantry","chef"],["chef","larger"],["larger","hotels"],["restaurants","may"],["garde","manger"],["manger","staff"],["perform","additional"],["buffet","presentation"],["presentation","like"],["like","ice"],["ice","carving"],["cheese","thai"],["thai","fruit"],["butter","salt"],["salt","dough"],["term","garde"],["garde","manger"],["manger","originated"],["pre","french"],["french","revolution"],["france","athatime"],["athatime","maintaining"],["large","supply"],["supply","ofood"],["outward","symbol"],["power","wealth"],["preserving","ofood"],["term","garde"],["garde","manger"],["eathe","term"],["term","garde"],["garde","manger"],["also","related"],["cold","rooms"],["rooms","inside"],["inside","castles"],["manor","house"],["food","storage"],["storage","areas"],["usually","located"],["cool","basement"],["storing","food"],["cold","storage"],["storage","areas"],["areas","developed"],["modern","cold"],["cold","kitchen"],["worked","outside"],["outside","noble"],["athis","time"],["trade","formed"],["mutual","aid"],["protection","guilds"],["training","programs"],["members","thereby"],["thereby","preserving"],["skills","charcuterie"],["sold","cooked"],["cooked","items"],["items","made"],["bacon","sausages"],["guild","system"],["french","revolution"],["competing","withe"],["limited","range"],["skills","involved"],["butcher","first"],["first","developed"],["specialty","within"],["garde","manger"],["manger","kitchen"],["bothe","cost"],["animal","meats"],["meats","increased"],["raw","meats"],["meats","increased"],["increased","need"],["meat","sales"],["separating","raw"],["raw","meats"],["processed","foods"],["avoid","cross"],["cross","contamination"],["resulting","possibility"],["illness","modern"],["modern","garde"],["garde","manger"],["manger","modern"],["modern","garde"],["garde","manger"],["professional","kitchen"],["many","restaurants"],["entry","level"],["level","cooking"],["cooking","position"],["position","within"],["often","involves"],["involves","preparing"],["preparing","salads"],["smaller","plates"],["quickly","plated"],["plated","without"],["without","significant"],["significant","experience"],["high","profile"],["influenced","restaurants"],["classical","preparations"],["often","include"],["include","p"],["terrine","food"],["food","terrines"],["see","also"],["also","brigade"],["brigade","cuisine"],["cuisine","garnish"],["garnish","food"],["food","presentation"],["presentation","list"],["restauranterminology","pantry"],["pantry","food"],["food","production"],["production","operation"],["publisher","india"],["india","culinary"],["culinary","institute"],["america","garde"],["garde","manger"],["cold","kitchen"],["kitchen","externalinks"],["category","french"],["french","words"],["phrases","category"],["category","garde"],["garde","manger"],["manger","category"],["category","charcuterie"],["charcuterie","category"],["category","food"],["food","services"],["services","occupations"],["occupations","category"],["category","restauranterminology"],["restauranterminology","category"],["category","cooking"],["cooking","category"],["category","food"],["food","storage"],["storage","category"],["category","culinary"],["culinary","terminology"]],"all_collocations":["file modern","modern charcuterie","contemporary terrine","terrine food","food terrine","galantine platter","garde manger","manger french","french language","language french","cool well","well ventilated","ventilated area","terrine food","food terrines","chef garde","garde manger","pantry chef","chef larger","larger hotels","restaurants may","garde manger","manger staff","perform additional","buffet presentation","presentation like","like ice","ice carving","cheese thai","thai fruit","butter salt","salt dough","term garde","garde manger","manger originated","pre french","french revolution","france athatime","athatime maintaining","large supply","supply ofood","outward symbol","power wealth","preserving ofood","term garde","garde manger","eathe term","term garde","garde manger","also related","cold rooms","rooms inside","inside castles","manor house","food storage","storage areas","usually located","cool basement","storing food","cold storage","storage areas","areas developed","modern cold","cold kitchen","worked outside","outside noble","athis time","trade formed","mutual aid","protection guilds","training programs","members thereby","thereby preserving","skills charcuterie","sold cooked","cooked items","items made","bacon sausages","guild system","french revolution","competing withe","limited range","skills involved","butcher first","first developed","specialty within","garde manger","manger kitchen","bothe cost","animal meats","meats increased","raw meats","meats increased","increased need","meat sales","separating raw","raw meats","processed foods","avoid cross","cross contamination","resulting possibility","illness modern","modern garde","garde manger","manger modern","modern garde","garde manger","professional kitchen","many restaurants","entry level","level cooking","cooking position","position within","often involves","involves preparing","preparing salads","smaller plates","quickly plated","plated without","without significant","significant experience","high profile","influenced restaurants","classical preparations","often include","include p","terrine food","food terrines","see also","also brigade","brigade cuisine","cuisine garnish","garnish food","food presentation","presentation list","restauranterminology pantry","pantry food","food production","production operation","publisher india","india culinary","culinary institute","america garde","garde manger","cold kitchen","kitchen externalinks","category french","french words","phrases category","category garde","garde manger","manger category","category charcuterie","charcuterie category","category food","food services","services occupations","occupations category","category restauranterminology","restauranterminology category","category cooking","cooking category","category food","food storage","storage category","category culinary","culinary terminology"],"new_description":"file modern charcuterie thumb upright contemporary terrine food terrine galantine platter garde_manger french_language french keeper food cool well ventilated area hors appetizers p terrine food terrines prepared foods stored person charge area known chef garde_manger pantry chef larger hotels_restaurants may garde_manger staff perform additional creating buffet presentation like ice carving centerpiece made cheese thai fruit vegetable butter salt dough file thumb piece term garde_manger originated pre french revolution france athatime maintaining large supply ofood beverage outward symbol power wealth status duty preserving ofood managing utilization many term garde_manger keeping eathe term garde_manger also related cold rooms inside castles manor house food food storage areas usually_located lower cool basement ideal storing food cold storage areas developed time modern cold kitchen merchants worked outside noble athis time associated guild association persons trade formed mutual aid protection guilds training programs members thereby preserving knowledge skills charcuterie name guild prepared sold cooked items made pigs organization preparation bacon sausages terrines preserved guild system abolished following french revolution garde took responsibility tasks formerly performed competing withe garde due limited range skills involved position butcher first developed specialty within garde_manger kitchen bothe cost andemand animal meats increased space required task raw meats increased need space due volume meat sales also need separating raw meats processed foods avoid cross contamination resulting possibility illness modern garde_manger modern garde_manger refer professional kitchen many_restaurants station generally entry level cooking position within restaurant often involves preparing salads smaller plates heated quickly plated without significant experience high_profile influenced restaurants_hotels position classical preparations often include p terrine food terrines elaborate see_also brigade_cuisine garnish food presentation list restauranterminology pantry food production operation management publisher india culinary_institute america garde_manger art craft cold kitchen externalinks_category_french words phrases category garde_manger category charcuterie category_food_services occupations_category_restauranterminology category cooking category_food storage category culinary terminology"},{"title":"Garden tourism","description":"garden tourism is a type of niche tourism involving visits or travel to botanical garden s and places which are significant in the history of gardeningarden tourists often travel individually in countries with which they are familiar but often prefer to join organized garden tours in countries where they might experience difficulties with language travel or finding accommodation in the vicinity of the garden in the year the alhambrand the taj mahal both received over million visitors this poses problems for the landscape manager image keukenhof szmurlojpg thumb px tourists athe keukenhof gardens the list ofamous gardens which attract garden tourists from afar includesissinghurst castle garden and stourhead in england palace of versailles giverny ch teau de villandry ch teau du rivau in france keukenhof in the netherlands villa d este and villante in italy alhambra in spain longwood gardens and filolin the usa taj mahal india ry an jin japan despite its popularity garden tourism remains a niche commercial enterprise throughouthe world there are a limited number of boutique tour operators offeringuided tours to the public historical background file miss elsie waggjpg thumb miss elsie wagg john singer sargent c initially the garden tour in the uk involves private gardens and gardens that does not accept visitors regularly under the national gardenscheme when gardens of england wales open for charity the yellow book served as a guide book for thoseeking to visit gardens in england wales the first issue of the yellow book was published as a supplemento a british magazine country life in after elsie wagg of an institution serving for district nursing came up withe basic idea of national gardenscheme in which a charity and garden tour was combined when gardening was quite popular in the uk the movementopen gardens for charity spread to private gardens when it was announced in and owners of such gardens agreed to collect shiring fee from each visitors thathey donated to the charity such gardens raised and in the institution renames to the queen s institute of district nursing the queen s nursing institute of later day withe publication of the first yellow book there were gardens to participate in the scheme and in they have donated million since those owners of private gardensometimes donated to those charities they choose amounting to as the garden tour expanded since when the national gardenscheme involved the national trust while national trust offered important gardens for garden tours which they have restored and conserved and number of visitors increased the queen s institute of district nursing offered them funds which in tern encouraged the trusto work on additional garden projects referred to highbeam research for subscribers only it was in when the yellow page was officially renamed as gardens to visit garden tours and literature michel de montaigne was one of thearliest garden tourists to record his impressions of gardens c thedition is available in pdformat liv p with portrait of the author john evelyn also recorded his visits to gardens in france and italy as did fynes moryson maggie campbell culver wrote a biography of john evelyn ashe sourced from woods and gardens evelyn took steps in andescribed trees from oak as an evelyn symbol to evergreens he favored the most athe start of the st century with a history of over years of garden tours britain had the largest number of gardens open to the public for tourist visits in gardens are listed in gardens of england wales open for charity when the yellow gardens are listed in gardens of england wales open for charity see also garden category types of tourism","main_words":["garden","tourism","type","niche","tourism_involving","visits","travel","botanical_garden","places","significant","history","tourists","often","travel","individually","countries","familiar","often","prefer","join","organized","garden","tours","countries","might","experience","difficulties","language","travel","finding","accommodation","vicinity","garden","year","taj","mahal","received","million_visitors","poses","problems","landscape","manager","image","thumb","px","tourists","athe","gardens","list","ofamous","gardens","attract","garden","tourists","afar","castle","garden","england","palace","versailles","teau","de","teau","france","netherlands","villa","italy","alhambra","spain","gardens","usa","taj","mahal","india","jin","japan","despite","popularity","garden","tourism","remains","niche","commercial","enterprise","throughouthe_world","limited","number","boutique","tour_operators","tours","public","historical","background","file","miss","elsie","thumb","miss","elsie","john","singer","c","initially","garden","tour","uk","involves","private","gardens","gardens","accept","visitors","regularly","national","gardens","england_wales","open","charity","yellow","book","served","guide_book","visit","gardens","england_wales","first_issue","yellow","book","published","supplemento","british","magazine","country","life","elsie","institution","serving","district","nursing","came","withe","basic","idea","national","charity","garden","tour","combined","gardening","quite","popular","uk","gardens","charity","spread","private","gardens","announced","owners","gardens","agreed","collect","fee","visitors","thathey","donated","charity","gardens","raised","institution","queen","institute","district","nursing","queen","nursing","institute","later","day","withe","publication","first","yellow","book","gardens","participate","scheme","donated","million","since","owners","private","donated","charities","choose","garden","tour","expanded","since","national","involved","national_trust","national_trust","offered","important","gardens","garden","tours","restored","conserved","number","visitors","increased","queen","institute","district","nursing","offered","funds","encouraged","work","additional","garden","projects","referred","research","subscribers","yellow","page","officially","renamed","gardens","visit","garden","tours","literature","michel","de","one","thearliest","garden","tourists","record","impressions","gardens","c","thedition","available","p","portrait","author","john","evelyn","also","recorded","visits","gardens","france","italy","maggie","campbell","wrote","biography","john","evelyn","ashe","sourced","woods","gardens","evelyn","took","steps","andescribed","trees","oak","evelyn","symbol","favored","athe_start","st_century","history","years","garden","tours","britain","largest","number","gardens","open","public","tourist","visits","gardens","listed","gardens","england_wales","open","charity","yellow","gardens","listed","gardens","england_wales","open","charity","see_also","tourism"],"clean_bigrams":[["garden","tourism"],["niche","tourism"],["tourism","involving"],["involving","visits"],["botanical","garden"],["tourists","often"],["often","travel"],["travel","individually"],["often","prefer"],["join","organized"],["organized","garden"],["garden","tours"],["might","experience"],["experience","difficulties"],["language","travel"],["finding","accommodation"],["taj","mahal"],["million","visitors"],["poses","problems"],["landscape","manager"],["manager","image"],["thumb","px"],["px","tourists"],["tourists","athe"],["list","ofamous"],["ofamous","gardens"],["attract","garden"],["garden","tourists"],["castle","garden"],["england","palace"],["teau","de"],["netherlands","villa"],["italy","alhambra"],["usa","taj"],["taj","mahal"],["mahal","india"],["jin","japan"],["japan","despite"],["popularity","garden"],["garden","tourism"],["tourism","remains"],["niche","commercial"],["commercial","enterprise"],["enterprise","throughouthe"],["throughouthe","world"],["limited","number"],["boutique","tour"],["tour","operators"],["public","historical"],["historical","background"],["background","file"],["file","miss"],["miss","elsie"],["thumb","miss"],["miss","elsie"],["john","singer"],["c","initially"],["garden","tour"],["uk","involves"],["involves","private"],["private","gardens"],["accept","visitors"],["visitors","regularly"],["england","wales"],["wales","open"],["yellow","book"],["book","served"],["guide","book"],["visit","gardens"],["england","wales"],["first","issue"],["yellow","book"],["british","magazine"],["magazine","country"],["country","life"],["institution","serving"],["district","nursing"],["nursing","came"],["withe","basic"],["basic","idea"],["garden","tour"],["quite","popular"],["charity","spread"],["private","gardens"],["gardens","agreed"],["visitors","thathey"],["thathey","donated"],["gardens","raised"],["district","nursing"],["nursing","institute"],["later","day"],["day","withe"],["withe","publication"],["first","yellow"],["yellow","book"],["donated","million"],["million","since"],["garden","tour"],["tour","expanded"],["expanded","since"],["national","trust"],["national","trust"],["trust","offered"],["offered","important"],["important","gardens"],["garden","tours"],["visitors","increased"],["district","nursing"],["nursing","offered"],["additional","garden"],["garden","projects"],["projects","referred"],["yellow","page"],["officially","renamed"],["visit","garden"],["garden","tours"],["literature","michel"],["michel","de"],["thearliest","garden"],["garden","tourists"],["gardens","c"],["c","thedition"],["author","john"],["john","evelyn"],["evelyn","also"],["also","recorded"],["maggie","campbell"],["john","evelyn"],["evelyn","ashe"],["ashe","sourced"],["gardens","evelyn"],["evelyn","took"],["took","steps"],["andescribed","trees"],["evelyn","symbol"],["athe","start"],["st","century"],["garden","tours"],["tours","britain"],["largest","number"],["gardens","open"],["tourist","visits"],["england","wales"],["wales","open"],["yellow","gardens"],["england","wales"],["wales","open"],["charity","see"],["see","also"],["also","garden"],["garden","category"],["category","types"]],"all_collocations":["garden tourism","niche tourism","tourism involving","involving visits","botanical garden","tourists often","often travel","travel individually","often prefer","join organized","organized garden","garden tours","might experience","experience difficulties","language travel","finding accommodation","taj mahal","million visitors","poses problems","landscape manager","manager image","px tourists","tourists athe","list ofamous","ofamous gardens","attract garden","garden tourists","castle garden","england palace","teau de","netherlands villa","italy alhambra","usa taj","taj mahal","mahal india","jin japan","japan despite","popularity garden","garden tourism","tourism remains","niche commercial","commercial enterprise","enterprise throughouthe","throughouthe world","limited number","boutique tour","tour operators","public historical","historical background","background file","file miss","miss elsie","thumb miss","miss elsie","john singer","c initially","garden tour","uk involves","involves private","private gardens","accept visitors","visitors regularly","england wales","wales open","yellow book","book served","guide book","visit gardens","england wales","first issue","yellow book","british magazine","magazine country","country life","institution serving","district nursing","nursing came","withe basic","basic idea","garden tour","quite popular","charity spread","private gardens","gardens agreed","visitors thathey","thathey donated","gardens raised","district nursing","nursing institute","later day","day withe","withe publication","first yellow","yellow book","donated million","million since","garden tour","tour expanded","expanded since","national trust","national trust","trust offered","offered important","important gardens","garden tours","visitors increased","district nursing","nursing offered","additional garden","garden projects","projects referred","yellow page","officially renamed","visit garden","garden tours","literature michel","michel de","thearliest garden","garden tourists","gardens c","c thedition","author john","john evelyn","evelyn also","also recorded","maggie campbell","john evelyn","evelyn ashe","ashe sourced","gardens evelyn","evelyn took","took steps","andescribed trees","evelyn symbol","athe start","st century","garden tours","tours britain","largest number","gardens open","tourist visits","england wales","wales open","yellow gardens","england wales","wales open","charity see","see also","also garden","garden category","category types"],"new_description":"garden tourism type niche tourism_involving visits travel botanical_garden places significant history tourists often travel individually countries familiar often prefer join organized garden tours countries might experience difficulties language travel finding accommodation vicinity garden year taj mahal received million_visitors poses problems landscape manager image thumb px tourists athe gardens list ofamous gardens attract garden tourists afar castle garden england palace versailles teau de teau france netherlands villa italy alhambra spain gardens usa taj mahal india jin japan despite popularity garden tourism remains niche commercial enterprise throughouthe_world limited number boutique tour_operators tours public historical background file miss elsie thumb miss elsie john singer c initially garden tour uk involves private gardens gardens accept visitors regularly national gardens england_wales open charity yellow book served guide_book visit gardens england_wales first_issue yellow book published supplemento british magazine country life elsie institution serving district nursing came withe basic idea national charity garden tour combined gardening quite popular uk gardens charity spread private gardens announced owners gardens agreed collect fee visitors thathey donated charity gardens raised institution queen institute district nursing queen nursing institute later day withe publication first yellow book gardens participate scheme donated million since owners private donated charities choose garden tour expanded since national involved national_trust national_trust offered important gardens garden tours restored conserved number visitors increased queen institute district nursing offered funds encouraged work additional garden projects referred research subscribers yellow page officially renamed gardens visit garden tours literature michel de one thearliest garden tourists record impressions gardens c thedition available p portrait author john evelyn also recorded visits gardens france italy maggie campbell wrote biography john evelyn ashe sourced woods gardens evelyn took steps andescribed trees oak evelyn symbol favored athe_start st_century history years garden tours britain largest number gardens open public tourist visits gardens listed gardens england_wales open charity yellow gardens listed gardens england_wales open charity see_also garden_category_types tourism"},{"title":"Gastronomy","description":"image produits r gionaux photo cpprjpg thumb px fine food the principal study of gastronomy is the study of the relationship between food and culture art of preparing and serving rich or delicate and appetizing food a style of cooking of particularegion and the science of good eating oxfordictionary one who is well versed in gastronomy is called a gastronome while a gastronomist is one who unites theory and practice in the study of gastronomy practical gastronomy is associated withe practice and study of the preparation production and service of the various foods and beverages from countries around the world theoretical gastronomy supports practical gastronomy it is related with a system and process approach focused on recipes and cookery books food gastronomy is connected with food and beverages and their genesis technical gastronomy underpins practical gastronomy introducing a rigorous approach to evaluation of gastronomic topics etymologically the word gastronomy is derived from ancient greek gast r stomach and n mos laws that govern and therefore literally means the art or law of regulating the stomach the term is purposely all encompassing it subsumes all of cooking technique nutrition al facts food science and everything that has to do with palatability plus applications of taste and olfaction smell as human ingestion ofoodstuffs goes history gastronomy involves discovering tasting experiencing researching understanding and writing about food preparation and the sensory qualities of humanutrition as a whole it also studies how nutrition interfaces withe broader culture later on the application of biological and chemical knowledge to cooking has become known as molecular gastronomyet gastronomy covers a much broader interdisciplinary ground file jean fran ois tourcaty carte gastronomique de la france cornell cul pjm jpg thumbnail this the first example of a carte gastronomique a map that summarizes a country by its products athe outset of the cours gastronomique by charles louis cadet de gassicourthe culinary term appears for the firstime in a title in a poem by joseph berchoux in entitled gastronomie pascal ory a frenchistorian defines gastronomy as thestablishment of rules of eating andrinking an art of the table andistinguishes it from good cooking bonne cuisine or fine cooking haute cuisine ory traces the origins of gastronomy back to the french reign of louis xiv when people took interest in developing rules to discriminate between good and bad style and extended their thinking to define good culinary taste the lavish and sophisticated cuisine and practices of the french court became the culinary model for the french alexandre grimode la reyniere wrote the first gastronomic work almanach des gourmands elevating the status ofoodiscourse to a disciplined level based on his views ofrench tradition and morals grimod aimed to reestablish order lost after the revolution and institute gastronomy as a seriousubject in france grimod expanded gastronomic literature to the three forms of the genre the guidebook the gastronomic treatise and the gourmet periodical the invention of gastronomic literature coincided with important cultural transformations in france that increased the relevance of the subjecthend of nobility in france changed how people consumed food fewer wealthy households employed cooks and the new bourgeoisie class wanted to assertheir status by consuming elitist food themergence of the restaurant satisfied these social needs and provided good food available for popular consumption the center of culinary excellence in france shifted from versailles to paris a city with a competitive and innovative culinary culture the culinary commentary of grimod and other gastronomes influenced the tastes and expectations of consumers in an unprecedented manner as a third party to the consumer chef interaction the french origins of gastronomy explain the widespread use ofrench terminology in gastronomic literature gastronomic literature pascal ory criticizes is conceptually vague relying heavily on anecdotal evidence and using confusing poorly defined terminology despite ory s criticism gastronomy has grown from a marginalized subject in france to a serious and popular interest worldwide the derivative gourmet has come into use since the publication of the book by brillat savarin the physiology of taste according to brillat savarin gastronomy is the knowledge and understanding of all that relates to man as heats its purpose is to ensure the conservation of men using the best food possible montagn prosper larousse gastronomique the new american edition of the world s greatest culinary encyclopedia edited by jennifer harvey lang new york crown second english edition gastronomic meal of the french unesco inscribed in com on the representative list of the intangible cultural heritage of humanity works on gastronomy there have been many writings on gastronomy throughouthe world that capture the thoughts and esthetics of a culture s cuisine during a period in their history in some cases these works continue to define or influence the contemporary gastronomic thought and cuisine of theirespective cultures apicius a th century collection of ancient rome roman recipes by the gourmet marcus gavius apicius containstructions for preparing dishes enjoyed by thelite of the time suiyuan shidan th century manual on qing dynasty chinese cuisine by the poet yuan mei which contains recipes from different social classes athe time along with two chapters on chinese gastronomic and culinary theory the physiology of taste a th century book by chef jeanthelme brillat savarin that defined classic french cuisine the work contains a large collection oflamboyant recipes from the time but goes into theory on preparation ofrench dishes and hospitality see also inline citations general references addison lilholt entomological gastronomy google books lulucom nd web mar avi schlosburg what is gastronomy at bu gastronomy at bu june web mar brillat savarin the physiology of taste by brillat savarin parthe university of adelaid nd web mar crystal cun whathell is gastronomy anyway crystal cun wordpress may web mar kilien stengel kilien stengel trait de la gastronomie patrimoinet culture sang de la terre publishing montagn prosper larousse gastronomique the new american edition of the world s greatest culinary encyclopedia edited by jennifer harvey lang new york crown second english edition leanna garfield these molecular gastronomy dishes look weirdly delicious and they are selling out in dc tech insider np feb web mar molecular gastronomy the food science splice np sept web mar michael symon gastronomy meals matter np mar web mar what is gastronomy at bu np june web mar externalinks apicius english translation suiyuan shidan english translation the physiology of taste la physiologie du go t english translation category food andrink culture category gastronomy","main_words":["image","r","photo","thumb","px","fine","food","principal","study","gastronomy","study","relationship","food_culture","art","preparing","serving","rich","delicate","food","style","cooking","particularegion","science","good","eating","oxfordictionary","one","well","gastronomy","called","one","theory","practice","study","gastronomy","practical","gastronomy","associated_withe","practice","study","preparation","production","service","various","foods","beverages","countries","around","world","theoretical","gastronomy","supports","practical","gastronomy","related","system","process","approach","focused","recipes","cookery","books","food","gastronomy","connected","food","beverages","genesis","technical","gastronomy","practical","gastronomy","introducing","rigorous","approach","evaluation","gastronomic","topics","word","gastronomy","derived","ancient_greek","r","n","laws","therefore","literally","means","art","law","regulating","term","purposely","encompassing","cooking","technique","nutrition","facts","food","science","everything","plus","applications","taste","smell","human","goes","history","gastronomy","involves","discovering","tasting","experiencing","researching","understanding","writing","food_preparation","sensory","qualities","whole","also","studies","nutrition","withe","broader","culture","later","application","biological","chemical","knowledge","cooking","become","known","molecular","gastronomy","covers","much","broader","interdisciplinary","ground","file","jean","fran_ois","carte","gastronomique","de_la","france","cornell","jpg","thumbnail","first","example","carte","gastronomique","map","country","products","athe","outset","gastronomique","charles","louis","de","culinary","term","appears","firstime","title","poem","joseph","entitled","gastronomie","pascal","ory","defines","gastronomy","thestablishment","rules","eating","andrinking","art","table","good","cooking","cuisine","fine","cooking","haute_cuisine","ory","traces","origins","gastronomy","back","french","reign","louis","xiv","people","took","interest","developing","rules","discriminate","good","bad","style","extended","thinking","define","good","culinary","taste","lavish","sophisticated","cuisine","practices","french","court","became","culinary","model","french","la","wrote","first","gastronomic","work","des","status","level","based","views","ofrench","tradition","aimed","order","lost","revolution","institute","gastronomy","france","expanded","gastronomic","literature","three","forms","genre","guidebook","gastronomic","gourmet","periodical","invention","gastronomic","literature","coincided","important","cultural","transformations","france","increased","relevance","nobility","france","changed","people","consumed","food","fewer","wealthy","households","employed","cooks","new","class","wanted","status","consuming","food","themergence","restaurant","satisfied","social","needs","provided","good_food","available","popular","consumption","center","culinary","excellence","france","shifted","versailles","paris","city","competitive","innovative","culinary","culture","culinary","commentary","influenced","tastes","expectations","consumers","manner","third_party","consumer","chef","interaction","french","origins","gastronomy","explain","widespread","use","ofrench","terminology","gastronomic","literature","gastronomic","literature","pascal","ory","conceptually","vague","relying","heavily","evidence","using","poorly","defined","terminology","despite","ory","criticism","gastronomy","grown","marginalized","subject","france","serious","popular","interest","worldwide","gourmet","come","use","since","publication","book","brillat","savarin","physiology","taste","according","brillat","savarin","gastronomy","knowledge","understanding","relates","man","heats","purpose","ensure","conservation","men","using","best_food","possible","gastronomique","new","american","edition","world","greatest","culinary","encyclopedia","edited","jennifer","harvey","lang","new_york","crown","second","english","edition","gastronomic","meal","french","unesco","representative","list","cultural_heritage","humanity","works","gastronomy","many","writings","gastronomy","throughouthe_world","capture","thoughts","culture","cuisine","period","history","cases","works","continue","define","influence","contemporary","gastronomic","thought","cuisine","theirespective","cultures","th_century","collection","ancient_rome","roman","recipes","gourmet","marcus","preparing","dishes","enjoyed","thelite","time","th_century","manual","dynasty","chinese","cuisine","poet","yuan","mei","contains","recipes","different","social","classes","athe_time","along","two","chapters","chinese","gastronomic","culinary","theory","physiology","taste","th_century","book","chef","brillat","savarin","defined","classic","french_cuisine","work","contains","large","collection","recipes","time","goes","theory","preparation","ofrench","dishes","hospitality","see_also","citations","general","references","addison","gastronomy","google_books","web","mar","gastronomy","gastronomy","june","web","mar","brillat","savarin","physiology","taste","brillat","savarin","parthe","university","web","mar","crystal","gastronomy","crystal","may","web","mar","stengel","stengel","de_la","gastronomie","culture","sang","de_la","terre","publishing","gastronomique","new","american","edition","world","greatest","culinary","encyclopedia","edited","jennifer","harvey","lang","new_york","crown","second","english","edition","molecular","gastronomy","dishes","look","delicious","selling","tech","insider","feb","web","mar","molecular","gastronomy","food","science","sept","web","mar","michael","gastronomy","meals","matter","mar","web","mar","gastronomy","june","web","mar","externalinks","english","translation","english","translation","physiology","taste","la","go","english","translation","category_food_andrink","culture_category","gastronomy"],"clean_bigrams":[["thumb","px"],["px","fine"],["fine","food"],["principal","study"],["culture","art"],["serving","rich"],["good","eating"],["eating","oxfordictionary"],["oxfordictionary","one"],["gastronomy","practical"],["practical","gastronomy"],["associated","withe"],["withe","practice"],["preparation","production"],["various","foods"],["countries","around"],["world","theoretical"],["theoretical","gastronomy"],["gastronomy","supports"],["supports","practical"],["practical","gastronomy"],["process","approach"],["approach","focused"],["cookery","books"],["books","food"],["food","gastronomy"],["genesis","technical"],["technical","gastronomy"],["gastronomy","practical"],["practical","gastronomy"],["gastronomy","introducing"],["rigorous","approach"],["gastronomic","topics"],["word","gastronomy"],["ancient","greek"],["therefore","literally"],["literally","means"],["cooking","technique"],["technique","nutrition"],["facts","food"],["food","science"],["plus","applications"],["goes","history"],["history","gastronomy"],["gastronomy","involves"],["involves","discovering"],["discovering","tasting"],["tasting","experiencing"],["experiencing","researching"],["researching","understanding"],["food","preparation"],["sensory","qualities"],["also","studies"],["withe","broader"],["broader","culture"],["culture","later"],["chemical","knowledge"],["become","known"],["molecular","gastronomy"],["gastronomy","covers"],["much","broader"],["broader","interdisciplinary"],["interdisciplinary","ground"],["ground","file"],["file","jean"],["jean","fran"],["fran","ois"],["carte","gastronomique"],["gastronomique","de"],["de","la"],["la","france"],["france","cornell"],["jpg","thumbnail"],["first","example"],["carte","gastronomique"],["products","athe"],["athe","outset"],["charles","louis"],["culinary","term"],["term","appears"],["entitled","gastronomie"],["gastronomie","pascal"],["pascal","ory"],["defines","gastronomy"],["eating","andrinking"],["good","cooking"],["fine","cooking"],["cooking","haute"],["haute","cuisine"],["cuisine","ory"],["ory","traces"],["gastronomy","back"],["french","reign"],["louis","xiv"],["people","took"],["took","interest"],["developing","rules"],["bad","style"],["define","good"],["good","culinary"],["culinary","taste"],["sophisticated","cuisine"],["french","court"],["court","became"],["culinary","model"],["first","gastronomic"],["gastronomic","work"],["level","based"],["views","ofrench"],["ofrench","tradition"],["order","lost"],["institute","gastronomy"],["expanded","gastronomic"],["gastronomic","literature"],["three","forms"],["gourmet","periodical"],["gastronomic","literature"],["literature","coincided"],["important","cultural"],["cultural","transformations"],["france","changed"],["people","consumed"],["consumed","food"],["food","fewer"],["fewer","wealthy"],["wealthy","households"],["households","employed"],["employed","cooks"],["class","wanted"],["food","themergence"],["restaurant","satisfied"],["social","needs"],["provided","good"],["good","food"],["food","available"],["popular","consumption"],["culinary","excellence"],["france","shifted"],["innovative","culinary"],["culinary","culture"],["culinary","commentary"],["third","party"],["consumer","chef"],["chef","interaction"],["french","origins"],["gastronomy","explain"],["widespread","use"],["use","ofrench"],["ofrench","terminology"],["gastronomic","literature"],["literature","gastronomic"],["gastronomic","literature"],["literature","pascal"],["pascal","ory"],["conceptually","vague"],["vague","relying"],["relying","heavily"],["poorly","defined"],["defined","terminology"],["terminology","despite"],["despite","ory"],["criticism","gastronomy"],["marginalized","subject"],["popular","interest"],["interest","worldwide"],["use","since"],["brillat","savarin"],["taste","according"],["brillat","savarin"],["savarin","gastronomy"],["men","using"],["best","food"],["food","possible"],["new","american"],["american","edition"],["greatest","culinary"],["culinary","encyclopedia"],["encyclopedia","edited"],["jennifer","harvey"],["harvey","lang"],["lang","new"],["new","york"],["york","crown"],["crown","second"],["second","english"],["english","edition"],["edition","gastronomic"],["gastronomic","meal"],["french","unesco"],["representative","list"],["cultural","heritage"],["humanity","works"],["many","writings"],["gastronomy","throughouthe"],["throughouthe","world"],["works","continue"],["contemporary","gastronomic"],["gastronomic","thought"],["theirespective","cultures"],["th","century"],["century","collection"],["ancient","rome"],["rome","roman"],["roman","recipes"],["gourmet","marcus"],["preparing","dishes"],["dishes","enjoyed"],["th","century"],["century","manual"],["dynasty","chinese"],["chinese","cuisine"],["poet","yuan"],["yuan","mei"],["contains","recipes"],["different","social"],["social","classes"],["classes","athe"],["athe","time"],["time","along"],["two","chapters"],["chinese","gastronomic"],["culinary","theory"],["th","century"],["century","book"],["brillat","savarin"],["defined","classic"],["classic","french"],["french","cuisine"],["work","contains"],["large","collection"],["preparation","ofrench"],["ofrench","dishes"],["hospitality","see"],["see","also"],["citations","general"],["general","references"],["references","addison"],["gastronomy","google"],["google","books"],["web","mar"],["june","web"],["web","mar"],["mar","brillat"],["brillat","savarin"],["brillat","savarin"],["savarin","parthe"],["parthe","university"],["web","mar"],["mar","crystal"],["may","web"],["web","mar"],["de","la"],["la","gastronomie"],["culture","sang"],["sang","de"],["de","la"],["la","terre"],["terre","publishing"],["new","american"],["american","edition"],["greatest","culinary"],["culinary","encyclopedia"],["encyclopedia","edited"],["jennifer","harvey"],["harvey","lang"],["lang","new"],["new","york"],["york","crown"],["crown","second"],["second","english"],["english","edition"],["molecular","gastronomy"],["gastronomy","dishes"],["dishes","look"],["tech","insider"],["feb","web"],["web","mar"],["mar","molecular"],["molecular","gastronomy"],["food","science"],["sept","web"],["web","mar"],["mar","michael"],["gastronomy","meals"],["meals","matter"],["mar","web"],["web","mar"],["june","web"],["web","mar"],["mar","externalinks"],["english","translation"],["english","translation"],["taste","la"],["english","translation"],["translation","category"],["category","food"],["food","andrink"],["andrink","culture"],["culture","category"],["category","gastronomy"]],"all_collocations":["px fine","fine food","principal study","culture art","serving rich","good eating","eating oxfordictionary","oxfordictionary one","gastronomy practical","practical gastronomy","associated withe","withe practice","preparation production","various foods","countries around","world theoretical","theoretical gastronomy","gastronomy supports","supports practical","practical gastronomy","process approach","approach focused","cookery books","books food","food gastronomy","genesis technical","technical gastronomy","gastronomy practical","practical gastronomy","gastronomy introducing","rigorous approach","gastronomic topics","word gastronomy","ancient greek","therefore literally","literally means","cooking technique","technique nutrition","facts food","food science","plus applications","goes history","history gastronomy","gastronomy involves","involves discovering","discovering tasting","tasting experiencing","experiencing researching","researching understanding","food preparation","sensory qualities","also studies","withe broader","broader culture","culture later","chemical knowledge","become known","molecular gastronomy","gastronomy covers","much broader","broader interdisciplinary","interdisciplinary ground","ground file","file jean","jean fran","fran ois","carte gastronomique","gastronomique de","de la","la france","france cornell","first example","carte gastronomique","products athe","athe outset","charles louis","culinary term","term appears","entitled gastronomie","gastronomie pascal","pascal ory","defines gastronomy","eating andrinking","good cooking","fine cooking","cooking haute","haute cuisine","cuisine ory","ory traces","gastronomy back","french reign","louis xiv","people took","took interest","developing rules","bad style","define good","good culinary","culinary taste","sophisticated cuisine","french court","court became","culinary model","first gastronomic","gastronomic work","level based","views ofrench","ofrench tradition","order lost","institute gastronomy","expanded gastronomic","gastronomic literature","three forms","gourmet periodical","gastronomic literature","literature coincided","important cultural","cultural transformations","france changed","people consumed","consumed food","food fewer","fewer wealthy","wealthy households","households employed","employed cooks","class wanted","food themergence","restaurant satisfied","social needs","provided good","good food","food available","popular consumption","culinary excellence","france shifted","innovative culinary","culinary culture","culinary commentary","third party","consumer chef","chef interaction","french origins","gastronomy explain","widespread use","use ofrench","ofrench terminology","gastronomic literature","literature gastronomic","gastronomic literature","literature pascal","pascal ory","conceptually vague","vague relying","relying heavily","poorly defined","defined terminology","terminology despite","despite ory","criticism gastronomy","marginalized subject","popular interest","interest worldwide","use since","brillat savarin","taste according","brillat savarin","savarin gastronomy","men using","best food","food possible","new american","american edition","greatest culinary","culinary encyclopedia","encyclopedia edited","jennifer harvey","harvey lang","lang new","new york","york crown","crown second","second english","english edition","edition gastronomic","gastronomic meal","french unesco","representative list","cultural heritage","humanity works","many writings","gastronomy throughouthe","throughouthe world","works continue","contemporary gastronomic","gastronomic thought","theirespective cultures","th century","century collection","ancient rome","rome roman","roman recipes","gourmet marcus","preparing dishes","dishes enjoyed","th century","century manual","dynasty chinese","chinese cuisine","poet yuan","yuan mei","contains recipes","different social","social classes","classes athe","athe time","time along","two chapters","chinese gastronomic","culinary theory","th century","century book","brillat savarin","defined classic","classic french","french cuisine","work contains","large collection","preparation ofrench","ofrench dishes","hospitality see","see also","citations general","general references","references addison","gastronomy google","google books","web mar","june web","web mar","mar brillat","brillat savarin","brillat savarin","savarin parthe","parthe university","web mar","mar crystal","may web","web mar","de la","la gastronomie","culture sang","sang de","de la","la terre","terre publishing","new american","american edition","greatest culinary","culinary encyclopedia","encyclopedia edited","jennifer harvey","harvey lang","lang new","new york","york crown","crown second","second english","english edition","molecular gastronomy","gastronomy dishes","dishes look","tech insider","feb web","web mar","mar molecular","molecular gastronomy","food science","sept web","web mar","mar michael","gastronomy meals","meals matter","mar web","web mar","june web","web mar","mar externalinks","english translation","english translation","taste la","english translation","translation category","category food","food andrink","andrink culture","culture category","category gastronomy"],"new_description":"image r photo thumb px fine food principal study gastronomy study relationship food_culture art preparing serving rich delicate food style cooking particularegion science good eating oxfordictionary one well gastronomy called one theory practice study gastronomy practical gastronomy associated_withe practice study preparation production service various foods beverages countries around world theoretical gastronomy supports practical gastronomy related system process approach focused recipes cookery books food gastronomy connected food beverages genesis technical gastronomy practical gastronomy introducing rigorous approach evaluation gastronomic topics word gastronomy derived ancient_greek r n laws therefore literally means art law regulating term purposely encompassing cooking technique nutrition facts food science everything plus applications taste smell human goes history gastronomy involves discovering tasting experiencing researching understanding writing food_preparation sensory qualities whole also studies nutrition withe broader culture later application biological chemical knowledge cooking become known molecular gastronomy covers much broader interdisciplinary ground file jean fran_ois carte gastronomique de_la france cornell jpg thumbnail first example carte gastronomique map country products athe outset gastronomique charles louis de culinary term appears firstime title poem joseph entitled gastronomie pascal ory defines gastronomy thestablishment rules eating andrinking art table good cooking cuisine fine cooking haute_cuisine ory traces origins gastronomy back french reign louis xiv people took interest developing rules discriminate good bad style extended thinking define good culinary taste lavish sophisticated cuisine practices french court became culinary model french la wrote first gastronomic work des status level based views ofrench tradition aimed order lost revolution institute gastronomy france expanded gastronomic literature three forms genre guidebook gastronomic gourmet periodical invention gastronomic literature coincided important cultural transformations france increased relevance nobility france changed people consumed food fewer wealthy households employed cooks new class wanted status consuming food themergence restaurant satisfied social needs provided good_food available popular consumption center culinary excellence france shifted versailles paris city competitive innovative culinary culture culinary commentary influenced tastes expectations consumers manner third_party consumer chef interaction french origins gastronomy explain widespread use ofrench terminology gastronomic literature gastronomic literature pascal ory conceptually vague relying heavily evidence using poorly defined terminology despite ory criticism gastronomy grown marginalized subject france serious popular interest worldwide gourmet come use since publication book brillat savarin physiology taste according brillat savarin gastronomy knowledge understanding relates man heats purpose ensure conservation men using best_food possible gastronomique new american edition world greatest culinary encyclopedia edited jennifer harvey lang new_york crown second english edition gastronomic meal french unesco representative list cultural_heritage humanity works gastronomy many writings gastronomy throughouthe_world capture thoughts culture cuisine period history cases works continue define influence contemporary gastronomic thought cuisine theirespective cultures th_century collection ancient_rome roman recipes gourmet marcus preparing dishes enjoyed thelite time th_century manual dynasty chinese cuisine poet yuan mei contains recipes different social classes athe_time along two chapters chinese gastronomic culinary theory physiology taste th_century book chef brillat savarin defined classic french_cuisine work contains large collection recipes time goes theory preparation ofrench dishes hospitality see_also citations general references addison gastronomy google_books web mar gastronomy gastronomy june web mar brillat savarin physiology taste brillat savarin parthe university web mar crystal gastronomy crystal may web mar stengel stengel de_la gastronomie culture sang de_la terre publishing gastronomique new american edition world greatest culinary encyclopedia edited jennifer harvey lang new_york crown second english edition molecular gastronomy dishes look delicious selling tech insider feb web mar molecular gastronomy food science sept web mar michael gastronomy meals matter mar web mar gastronomy june web mar externalinks english translation english translation physiology taste la go english translation category_food_andrink culture_category gastronomy"},{"title":"Gastrophysics","description":"gastrophysics gastronomical physics is an emerging interdisciplinary science that employs principles from physics and chemistry to attain a fundamental understanding of the worlds of gastronomy and cookingastrophysical topics of interest includes investigations of the raw materials ofood theffects ofood preparation and quantitative aspects of the physical basis for food quality flavour appreciation and absorption in the human body definition and aim gastrophysics is a scientific discipline that focuses on investigations of aspects of gastronomy and cooking that relates to phenomena which can be described and explained in a frame of physics physical chemistry and associated sciences the source of inspiration for gastrophysics is gastronomy and cookingastrophysical studies has a gastronomic observation as itstarting point and aims at unravelling the scientific nature of the observations on many different length scales including explaining physical and chemical aspects of the raw materials of their transformations during the preparation ofood as well as of the sensory perception sensory response whileating the chemical and physical composition and properties of raw food materials are important for the transformations that occur in the fooduring preparation heating cooling mixing beating fermenting salting food salting drying smoking cooking smoking souring etc flavour taste and olfaction smell mouthfeel chemesthesis astringency are all determinants for the sensory evaluation ofood and these characteristics are also related to the chemical properties and the physical texture of the food and to how the food is transformed in the mouth gastrophysics deals with each of these components and aims at uncovering their mutual relations ie how the sensory input relates to the material composition and properties ofood and the absorption in the human body gastrophysics is a scientifically inspired approach to gastronomy but it is a science in its own right and not a discipline to service chefs in creating new dishes gastrophysics focuses on gaining fundamental scientific insighto gastronomy and understanding universal phenomena without removing any of the craft creativity and art characteristics of cooking the relation between gastrophysics and gastronomy can be seen analogous to the relation between astrophysics and astronomy astronomers observe planets and stars andescribe where they are and how they move astrophysicists explain why the planets and stars are where they are and how they gothere in the same way gastrophysics aims at explaining the universal scientific nature of gastronomy methodology whereas gastrophysics is a relatively new discipline within the physical sciences the foundation for exploring the kind of soft matter that food is already well established in other areas of modern physics the methodology of gastrophysics greatly overlaps with eg molecular biophysicsoft matter physics material physics physical chemistry analytical chemistry etc this holds for both experimental theoretical and phenomenological approaches gastrophysics leans on state of artechnologies both experimentally and computationally history it is unknown when the term gastrophysics was first coined but it appears to have been independently proposed as a physics approach to gastronomy in the labs of the physicist nicholas kurti peter barham and ole g mouritsen in order to conceptualise the term gastrophysics the first international symposium on the topic themerging science of gastrophysics was held in copenhagen in bringing together key actors one conclusion of the symposium was that gastrophysics could significantly impact gastronomy and tomorrow s food sciences and how both develop in the st century references category gastronomy","main_words":["gastrophysics","physics","emerging","interdisciplinary","science","employs","principles","physics","chemistry","attain","fundamental","understanding","worlds","gastronomy","topics","interest","includes","investigations","raw","materials","ofood","theffects","ofood","preparation","aspects","physical","basis","food_quality","flavour","appreciation","human","body","definition","aim","gastrophysics","scientific","discipline","focuses","investigations","aspects","gastronomy","cooking","relates","phenomena","described","explained","frame","physics","physical","chemistry","associated","sciences","source","inspiration","gastrophysics","gastronomy","studies","gastronomic","observation","point","aims","scientific","nature","observations","many_different","length","including","explaining","physical","chemical","aspects","raw","materials","transformations","preparation","ofood","well","sensory","perception","sensory","response","chemical","physical","composition","properties","raw","food","materials","important","transformations","occur","preparation","heating","cooling","mixing","beating","salting","food","salting","drying","smoking","cooking","smoking","etc","flavour","taste","smell","sensory","evaluation","ofood","characteristics","also","related","chemical","properties","physical","texture","food","food","transformed","mouth","gastrophysics","deals","components","aims","uncovering","mutual","relations","sensory","input","relates","material","composition","properties","ofood","human","body","gastrophysics","inspired","approach","gastronomy","science","right","discipline","service","chefs","creating","new","dishes","gastrophysics","focuses","gaining","fundamental","scientific","gastronomy","understanding","universal","phenomena","without","removing","craft","creativity","art","characteristics","cooking","relation","gastrophysics","gastronomy","seen","analogous","relation","astronomy","stars","move","explain","stars","way","gastrophysics","aims","explaining","universal","scientific","nature","gastronomy","methodology","whereas","gastrophysics","relatively","new","discipline","within","physical","sciences","foundation","exploring","kind","soft","matter","food","already","well_established","areas","modern","physics","methodology","gastrophysics","greatly","molecular","matter","physics","material","physics","physical","chemistry","analytical","chemistry","etc","holds","experimental","theoretical","approaches","gastrophysics","state","history","unknown","term","gastrophysics","first","coined","appears","independently","proposed","physics","approach","gastronomy","labs","physicist","nicholas","peter","g","order","term","gastrophysics","first_international","symposium","topic","themerging","science","gastrophysics","held","copenhagen","bringing","together","key","actors","one","conclusion","symposium","gastrophysics","could","significantly","impact","gastronomy","food","sciences","develop","st_century","references_category","gastronomy"],"clean_bigrams":[["emerging","interdisciplinary"],["interdisciplinary","science"],["employs","principles"],["fundamental","understanding"],["interest","includes"],["includes","investigations"],["raw","materials"],["materials","ofood"],["ofood","theffects"],["theffects","ofood"],["ofood","preparation"],["physical","basis"],["food","quality"],["quality","flavour"],["flavour","appreciation"],["human","body"],["body","definition"],["aim","gastrophysics"],["scientific","discipline"],["physics","physical"],["physical","chemistry"],["associated","sciences"],["gastronomic","observation"],["scientific","nature"],["many","different"],["different","length"],["including","explaining"],["explaining","physical"],["chemical","aspects"],["raw","materials"],["preparation","ofood"],["sensory","perception"],["perception","sensory"],["sensory","response"],["physical","composition"],["raw","food"],["food","materials"],["preparation","heating"],["heating","cooling"],["cooling","mixing"],["mixing","beating"],["salting","food"],["food","salting"],["salting","drying"],["drying","smoking"],["smoking","cooking"],["cooking","smoking"],["etc","flavour"],["flavour","taste"],["sensory","evaluation"],["evaluation","ofood"],["also","related"],["chemical","properties"],["physical","texture"],["mouth","gastrophysics"],["gastrophysics","deals"],["mutual","relations"],["sensory","input"],["input","relates"],["material","composition"],["properties","ofood"],["human","body"],["body","gastrophysics"],["inspired","approach"],["service","chefs"],["creating","new"],["new","dishes"],["dishes","gastrophysics"],["gastrophysics","focuses"],["gaining","fundamental"],["fundamental","scientific"],["understanding","universal"],["universal","phenomena"],["phenomena","without"],["without","removing"],["craft","creativity"],["art","characteristics"],["seen","analogous"],["way","gastrophysics"],["gastrophysics","aims"],["universal","scientific"],["scientific","nature"],["gastronomy","methodology"],["methodology","whereas"],["whereas","gastrophysics"],["relatively","new"],["new","discipline"],["discipline","within"],["physical","sciences"],["soft","matter"],["already","well"],["well","established"],["modern","physics"],["gastrophysics","greatly"],["matter","physics"],["physics","material"],["material","physics"],["physics","physical"],["physical","chemistry"],["chemistry","analytical"],["analytical","chemistry"],["chemistry","etc"],["experimental","theoretical"],["approaches","gastrophysics"],["term","gastrophysics"],["first","coined"],["independently","proposed"],["physics","approach"],["physicist","nicholas"],["term","gastrophysics"],["first","international"],["international","symposium"],["topic","themerging"],["themerging","science"],["bringing","together"],["together","key"],["key","actors"],["actors","one"],["one","conclusion"],["gastrophysics","could"],["could","significantly"],["significantly","impact"],["impact","gastronomy"],["food","sciences"],["st","century"],["century","references"],["references","category"],["category","gastronomy"]],"all_collocations":["emerging interdisciplinary","interdisciplinary science","employs principles","fundamental understanding","interest includes","includes investigations","raw materials","materials ofood","ofood theffects","theffects ofood","ofood preparation","physical basis","food quality","quality flavour","flavour appreciation","human body","body definition","aim gastrophysics","scientific discipline","physics physical","physical chemistry","associated sciences","gastronomic observation","scientific nature","many different","different length","including explaining","explaining physical","chemical aspects","raw materials","preparation ofood","sensory perception","perception sensory","sensory response","physical composition","raw food","food materials","preparation heating","heating cooling","cooling mixing","mixing beating","salting food","food salting","salting drying","drying smoking","smoking cooking","cooking smoking","etc flavour","flavour taste","sensory evaluation","evaluation ofood","also related","chemical properties","physical texture","mouth gastrophysics","gastrophysics deals","mutual relations","sensory input","input relates","material composition","properties ofood","human body","body gastrophysics","inspired approach","service chefs","creating new","new dishes","dishes gastrophysics","gastrophysics focuses","gaining fundamental","fundamental scientific","understanding universal","universal phenomena","phenomena without","without removing","craft creativity","art characteristics","seen analogous","way gastrophysics","gastrophysics aims","universal scientific","scientific nature","gastronomy methodology","methodology whereas","whereas gastrophysics","relatively new","new discipline","discipline within","physical sciences","soft matter","already well","well established","modern physics","gastrophysics greatly","matter physics","physics material","material physics","physics physical","physical chemistry","chemistry analytical","analytical chemistry","chemistry etc","experimental theoretical","approaches gastrophysics","term gastrophysics","first coined","independently proposed","physics approach","physicist nicholas","term gastrophysics","first international","international symposium","topic themerging","themerging science","bringing together","together key","key actors","actors one","one conclusion","gastrophysics could","could significantly","significantly impact","impact gastronomy","food sciences","st century","century references","references category","category gastronomy"],"new_description":"gastrophysics physics emerging interdisciplinary science employs principles physics chemistry attain fundamental understanding worlds gastronomy topics interest includes investigations raw materials ofood theffects ofood preparation aspects physical basis food_quality flavour appreciation human body definition aim gastrophysics scientific discipline focuses investigations aspects gastronomy cooking relates phenomena described explained frame physics physical chemistry associated sciences source inspiration gastrophysics gastronomy studies gastronomic observation point aims scientific nature observations many_different length including explaining physical chemical aspects raw materials transformations preparation ofood well sensory perception sensory response chemical physical composition properties raw food materials important transformations occur preparation heating cooling mixing beating salting food salting drying smoking cooking smoking etc flavour taste smell sensory evaluation ofood characteristics also related chemical properties physical texture food food transformed mouth gastrophysics deals components aims uncovering mutual relations sensory input relates material composition properties ofood human body gastrophysics inspired approach gastronomy science right discipline service chefs creating new dishes gastrophysics focuses gaining fundamental scientific gastronomy understanding universal phenomena without removing craft creativity art characteristics cooking relation gastrophysics gastronomy seen analogous relation astronomy stars move explain stars way gastrophysics aims explaining universal scientific nature gastronomy methodology whereas gastrophysics relatively new discipline within physical sciences foundation exploring kind soft matter food already well_established areas modern physics methodology gastrophysics greatly molecular matter physics material physics physical chemistry analytical chemistry etc holds experimental theoretical approaches gastrophysics state history unknown term gastrophysics first coined appears independently proposed physics approach gastronomy labs physicist nicholas peter g order term gastrophysics first_international symposium topic themerging science gastrophysics held copenhagen bringing together key actors one conclusion symposium gastrophysics could significantly impact gastronomy food sciences develop st_century references_category gastronomy"},{"title":"Gastropub","description":"imageagle gastropub clerkenwell jpg uprighthumb rightheagle the first pub to which the term gastropub was applied a gastropub or gastrolounge is a bar and restauranthat serves high end beer and food the term was coined in the s but similar brewpub s existeduring the s the term gastropub was coined in when david eyre and mike belben took over theagle pub in clerkenwellondon traditionally british pubs were drinking establishments and littlemphasis was placed on the serving ofood if pubserved meals they were usually basicoldishesuch as a ploughman s lunch the concept of a restaurant in a pub reinvigorated both pub culture and british dining though it has occasionally attracted criticism for potentially removing the character of traditional pubs pub grub expanded to include british food itemsuch as meat pie steak and ale pie shepherd s pie fish and chips bangers and mash sunday roast ploughman s lunch and pasty pasties in addition dishesuch as hamburger s french fries united kingdom chips lasagne and chili con carne are now often served better pub grub mirrorcouk in august gastropub was added to merriam webster s collegiate dictionary in spinnakers brew pub opened in victoria british columbia canada it was the first ever custom built brewpub in canadand was part of a newave of brewpubs and craft breweries in british columbia that followed a major deregulation of the brewing industry in that province spinnakers also included inventive cuisine and is claimed as world s oldest gastropuby joseph blake of eat magazineblake joseph victoria s pub revolution eat vol noctober pp the gastropub phenomenon took off in the united states in thearly s at gastropubsuch as dhillons by chef matt dhillon in las vegas later there were such places as dev dugal s the redwood bar in downtown los angeles red table in huntington beach californiand restaurateur and chef sang yoon sang yoon s father s office la weekly time out whichad what esquire magazinesquire magazine called one of the best burgers in the world other gastropubs include ford s filling station in culver city a gastropub run by actor harrison ford harrison ford son ben ford the los angeles times brickyard the new york times the village voice the spotted pig in manhattanew york times the wobbly olive in long island new york the wobbly olive serena sicilian influenced gastropub in durham north carolinand the monk s kettle in san francisco there are also several gastropubs inorway kick malt mat kickcafeno the crossroad club oslos f rste gastropub in oslo gr nerl kka brygghus gr nerl kka brygghus in oslo montys gastropub in st catharines and the chain heim with open pubs in lillehammer and oslo and a third location in gj vik in planning see also the hand flowers the only gastropub with two michelin star s as of list of bars list of public house topics externalinks category types of restaurants category gastropubs","main_words":["gastropub","clerkenwell","jpg","uprighthumb","first","pub","term","gastropub","applied","gastropub","bar","restauranthat","serves","high_end","beer","food","term","coined","similar","brewpub","term","gastropub","coined","david","mike","took","theagle","pub","traditionally","british","pubs","drinking_establishments","placed","serving","ofood","meals","usually","ploughman","lunch","concept","restaurant","pub","pub","culture","british","dining","though","occasionally","attracted","criticism","potentially","removing","character","traditional","pubs","pub","grub","expanded","include","british","meat","pie","steak","ale","pie","shepherd","pie","fish","chips","mash","sunday","roast","ploughman","lunch","addition","dishesuch","hamburger","french_fries","united_kingdom","chips","chili","con","carne","often_served","better","pub","grub","august","gastropub","added","merriam_webster","dictionary","brew","pub","opened","victoria","british_columbia","canada","first_ever","custom","built","brewpub","canadand","part","craft","breweries","british_columbia","followed","major","brewing","industry","province","also_included","cuisine","claimed","world","oldest","joseph","blake","eat","joseph","victoria","pub","revolution","eat","vol","pp","gastropub","phenomenon","took","united_states","thearly","chef","matt","las_vegas","later","places","dev","bar","downtown","los_angeles","red","table","huntington","restaurateur","chef","sang","sang","father","office","la","weekly","time","whichad","magazine","called","one","best","burgers","world","gastropubs","include","ford","filling","station","city","gastropub","run","actor","harrison","ford","harrison","ford","son","ben","ford","los_angeles","times","new_york","times","village","voice","spotted","pig","manhattanew","york_times","olive","long","island","new_york","olive","serena","influenced","gastropub","durham","north_carolinand","monk","kettle","san_francisco","also","several","gastropubs","inorway","malt","club","f","gastropub","oslo","oslo","gastropub","st","chain","open","pubs","oslo","third","location","planning","see_also","hand","flowers","gastropub","two","michelin_star","list","bars","list","public_house_topics","externalinks_category_types","restaurants_category","gastropubs"],"clean_bigrams":[["gastropub","clerkenwell"],["clerkenwell","jpg"],["jpg","uprighthumb"],["first","pub"],["term","gastropub"],["restauranthat","serves"],["serves","high"],["high","end"],["end","beer"],["similar","brewpub"],["term","gastropub"],["theagle","pub"],["traditionally","british"],["british","pubs"],["drinking","establishments"],["serving","ofood"],["pub","culture"],["british","dining"],["dining","though"],["occasionally","attracted"],["attracted","criticism"],["potentially","removing"],["traditional","pubs"],["pubs","pub"],["pub","grub"],["grub","expanded"],["include","british"],["british","food"],["food","itemsuch"],["meat","pie"],["pie","steak"],["ale","pie"],["pie","shepherd"],["pie","fish"],["mash","sunday"],["sunday","roast"],["roast","ploughman"],["addition","dishesuch"],["french","fries"],["fries","united"],["united","kingdom"],["kingdom","chips"],["chili","con"],["con","carne"],["often","served"],["served","better"],["better","pub"],["pub","grub"],["august","gastropub"],["merriam","webster"],["brew","pub"],["pub","opened"],["victoria","british"],["british","columbia"],["columbia","canada"],["first","ever"],["ever","custom"],["custom","built"],["built","brewpub"],["craft","breweries"],["british","columbia"],["brewing","industry"],["also","included"],["joseph","blake"],["joseph","victoria"],["pub","revolution"],["revolution","eat"],["eat","vol"],["gastropub","phenomenon"],["phenomenon","took"],["united","states"],["chef","matt"],["las","vegas"],["vegas","later"],["downtown","los"],["los","angeles"],["angeles","red"],["red","table"],["huntington","beach"],["beach","californiand"],["californiand","restaurateur"],["chef","sang"],["office","la"],["la","weekly"],["weekly","time"],["magazine","called"],["called","one"],["best","burgers"],["gastropubs","include"],["include","ford"],["filling","station"],["gastropub","run"],["actor","harrison"],["harrison","ford"],["ford","harrison"],["harrison","ford"],["ford","son"],["son","ben"],["ben","ford"],["los","angeles"],["angeles","times"],["new","york"],["york","times"],["village","voice"],["spotted","pig"],["manhattanew","york"],["york","times"],["long","island"],["island","new"],["new","york"],["olive","serena"],["influenced","gastropub"],["durham","north"],["north","carolinand"],["san","francisco"],["also","several"],["several","gastropubs"],["gastropubs","inorway"],["open","pubs"],["third","location"],["planning","see"],["see","also"],["hand","flowers"],["two","michelin"],["michelin","star"],["bars","list"],["public","house"],["house","topics"],["topics","externalinks"],["externalinks","category"],["category","types"],["restaurants","category"],["category","gastropubs"]],"all_collocations":["gastropub clerkenwell","clerkenwell jpg","jpg uprighthumb","first pub","term gastropub","restauranthat serves","serves high","high end","end beer","similar brewpub","term gastropub","theagle pub","traditionally british","british pubs","drinking establishments","serving ofood","pub culture","british dining","dining though","occasionally attracted","attracted criticism","potentially removing","traditional pubs","pubs pub","pub grub","grub expanded","include british","british food","food itemsuch","meat pie","pie steak","ale pie","pie shepherd","pie fish","mash sunday","sunday roast","roast ploughman","addition dishesuch","french fries","fries united","united kingdom","kingdom chips","chili con","con carne","often served","served better","better pub","pub grub","august gastropub","merriam webster","brew pub","pub opened","victoria british","british columbia","columbia canada","first ever","ever custom","custom built","built brewpub","craft breweries","british columbia","brewing industry","also included","joseph blake","joseph victoria","pub revolution","revolution eat","eat vol","gastropub phenomenon","phenomenon took","united states","chef matt","las vegas","vegas later","downtown los","los angeles","angeles red","red table","huntington beach","beach californiand","californiand restaurateur","chef sang","office la","la weekly","weekly time","magazine called","called one","best burgers","gastropubs include","include ford","filling station","gastropub run","actor harrison","harrison ford","ford harrison","harrison ford","ford son","son ben","ben ford","los angeles","angeles times","new york","york times","village voice","spotted pig","manhattanew york","york times","long island","island new","new york","olive serena","influenced gastropub","durham north","north carolinand","san francisco","also several","several gastropubs","gastropubs inorway","open pubs","third location","planning see","see also","hand flowers","two michelin","michelin star","bars list","public house","house topics","topics externalinks","externalinks category","category types","restaurants category","category gastropubs"],"new_description":"gastropub clerkenwell jpg uprighthumb first pub term gastropub applied gastropub bar restauranthat serves high_end beer food term coined similar brewpub term gastropub coined david mike took theagle pub traditionally british pubs drinking_establishments placed serving ofood meals usually ploughman lunch concept restaurant pub pub culture british dining though occasionally attracted criticism potentially removing character traditional pubs pub grub expanded include british food_itemsuch meat pie steak ale pie shepherd pie fish chips mash sunday roast ploughman lunch addition dishesuch hamburger french_fries united_kingdom chips chili con carne often_served better pub grub august gastropub added merriam_webster dictionary brew pub opened victoria british_columbia canada first_ever custom built brewpub canadand part craft breweries british_columbia followed major brewing industry province also_included cuisine claimed world oldest joseph blake eat joseph victoria pub revolution eat vol pp gastropub phenomenon took united_states thearly chef matt las_vegas later places dev bar downtown los_angeles red table huntington beach_californiand restaurateur chef sang sang father office la weekly time whichad magazine called one best burgers world gastropubs include ford filling station city gastropub run actor harrison ford harrison ford son ben ford los_angeles times new_york times village voice spotted pig manhattanew york_times olive long island new_york olive serena influenced gastropub durham north_carolinand monk kettle san_francisco also several gastropubs inorway malt club f gastropub oslo oslo gastropub st chain open pubs oslo third location planning see_also hand flowers gastropub two michelin_star list bars list public_house_topics externalinks_category_types restaurants_category gastropubs"},{"title":"Genealogy tourism","description":"genealogy tourism sometimes called roots tourism is a segment of the tourismarket consisting of tourists who have ancestral connections to their holiday destination these genealogy tourists travel to the land of their ancestors to reconnect witheir past and walk in the footsteps of their forefathers feng k page s an exploratory study of tourismigration immigrationexus travel experience of chinese residence inew zealand current issues of tourism genealogy tourism is a worldwide industry although it is more prominent in countries that havexperienced mass migration mass emigration at some time in history and thus have a large worldwide diaspora community genealogy tourism has been prominent in ireland recorded genealogy tourism peaked in the year as genealogical visitors traveled to the islandbord f ilte genealogy facts dublin bord f ilte market research planning the f ilte ireland irish tourist board ceased recordingenealogy visitors numbers from and its present levels are now unknown scotland staged a homecoming festival in to appeal to genealogy tourists genealogy tourism is very common to countries of central europe where the world war ii caused mass migrations of population particularly jewish genealogy tourism is very popular and on the rise many african americans and other diasporafricans were motivated to travel to the african homelands by alex haley alex haley s roots the saga of an american family best selling book and television mini series roots miniseries roots clarke k mapping transnationality roots tourism and the institutionalization of ethnic heritage in k m clarke da thomas eds globalization and race transformations in the cultural production of blackness duke university press durham pp de santana pinho p african american roots tourism in brazilatin american perspectives vol no pp mensah i the roots tourism experience of diasporafricans a focus on the cape coast and elmina castles journal of heritage tourism doi x areas frequently visited include cape coast and elmina castlelmina in ghana goree island in senegal jufureh juffureh in gambiand bahia in brazil african governments recognized this opportunity for development in tourism successive governments in ghana for example have madefforts through the ministry of tourism to attract diasporafricans to ghana including the african american summit in the biannual pan african historical theatre festival emancipation day celebrations and juneteenth genealogy tourists often participate in tracing their ancestralineages digital access to historical records as well as dna studies in recent years have allowed an increasing number of people to identify the homelands of their ancestorshigginbotham g seeking roots and tracing lineages constructing a framework of reference foroots and genealogical tourism journal of heritage tourism see also diaspora tourism birthright armenia birthright israel category genealogy tourism category types of tourism category diasporas","main_words":["genealogy","tourism","sometimes_called","roots","tourism","segment","tourismarket","consisting","tourists","connections","holiday","destination","genealogy","tourists","travel","land","ancestors","witheir","past","walk","footsteps","k","page","exploratory","study","travel","experience","chinese","residence","inew_zealand","current","issues","tourism","genealogy","tourism","worldwide","industry","although","prominent","countries","havexperienced","mass","migration","mass","emigration","time","history","thus","large","worldwide","diaspora","community","genealogy","tourism","prominent","ireland","recorded","genealogy","tourism","year","visitors","traveled","f_ilte","genealogy","facts","dublin","bord","f_ilte","market","research","planning","f_ilte","ireland","irish","tourist_board","ceased","visitors","numbers","present","levels","unknown","scotland","staged","festival","appeal","genealogy","tourists","genealogy","tourism","common","countries","central_europe","world_war","ii","caused","mass","population","particularly","jewish","genealogy","tourism","popular","rise","many","african_americans","motivated","travel","african","homelands","alex","alex","roots","saga","american","family","best","selling","book","television","mini","series","roots","miniseries","roots","clarke","k","mapping","roots","tourism","ethnic","heritage","k","clarke","thomas","eds","globalization","race","transformations","cultural","production","blackness","duke","university_press","durham","pp","de","p","african_american","roots","tourism","american","perspectives","vol","pp","roots","tourism","experience","focus","cape","coast","castles","journal","heritage_tourism","x","areas","frequently","visited","include","cape","coast","ghana","island","senegal","bahia","brazil","african","governments","recognized","opportunity","development","tourism","governments","ghana","example","ministry","tourism","attract","ghana","including","african_american","summit","biannual","pan","african","historical","theatre","festival","day","celebrations","genealogy","tourists","often","participate","tracing","digital","access","historical","records","well","dna","studies","recent_years","allowed","increasing_number","people","identify","homelands","g","seeking","roots","tracing","constructing","framework","reference","tourism","journal","heritage_tourism","see_also","diaspora","tourism","armenia","israel_category","genealogy","tourism_category_types","tourism_category"],"clean_bigrams":[["genealogy","tourism"],["tourism","sometimes"],["sometimes","called"],["called","roots"],["roots","tourism"],["tourismarket","consisting"],["holiday","destination"],["genealogy","tourists"],["tourists","travel"],["witheir","past"],["k","page"],["exploratory","study"],["travel","experience"],["chinese","residence"],["residence","inew"],["inew","zealand"],["zealand","current"],["current","issues"],["tourism","genealogy"],["genealogy","tourism"],["worldwide","industry"],["industry","although"],["havexperienced","mass"],["mass","migration"],["migration","mass"],["mass","emigration"],["large","worldwide"],["worldwide","diaspora"],["diaspora","community"],["community","genealogy"],["genealogy","tourism"],["ireland","recorded"],["recorded","genealogy"],["genealogy","tourism"],["visitors","traveled"],["f","ilte"],["ilte","genealogy"],["genealogy","facts"],["facts","dublin"],["dublin","bord"],["bord","f"],["f","ilte"],["ilte","market"],["market","research"],["research","planning"],["f","ilte"],["ilte","ireland"],["ireland","irish"],["irish","tourist"],["tourist","board"],["board","ceased"],["visitors","numbers"],["present","levels"],["unknown","scotland"],["scotland","staged"],["genealogy","tourists"],["tourists","genealogy"],["genealogy","tourism"],["central","europe"],["world","war"],["war","ii"],["ii","caused"],["caused","mass"],["population","particularly"],["particularly","jewish"],["jewish","genealogy"],["genealogy","tourism"],["rise","many"],["many","african"],["african","americans"],["african","homelands"],["american","family"],["family","best"],["best","selling"],["selling","book"],["television","mini"],["mini","series"],["series","roots"],["roots","miniseries"],["miniseries","roots"],["roots","clarke"],["clarke","k"],["k","mapping"],["roots","tourism"],["ethnic","heritage"],["thomas","eds"],["eds","globalization"],["race","transformations"],["cultural","production"],["blackness","duke"],["duke","university"],["university","press"],["press","durham"],["durham","pp"],["pp","de"],["p","african"],["african","american"],["american","roots"],["roots","tourism"],["american","perspectives"],["perspectives","vol"],["roots","tourism"],["tourism","experience"],["cape","coast"],["castles","journal"],["heritage","tourism"],["x","areas"],["areas","frequently"],["frequently","visited"],["visited","include"],["include","cape"],["cape","coast"],["brazil","african"],["african","governments"],["governments","recognized"],["ghana","including"],["african","american"],["american","summit"],["biannual","pan"],["pan","african"],["african","historical"],["historical","theatre"],["theatre","festival"],["day","celebrations"],["genealogy","tourists"],["tourists","often"],["often","participate"],["digital","access"],["historical","records"],["dna","studies"],["recent","years"],["increasing","number"],["g","seeking"],["seeking","roots"],["tourism","journal"],["heritage","tourism"],["tourism","see"],["see","also"],["also","diaspora"],["diaspora","tourism"],["tourism","birthright"],["birthright","armenia"],["armenia","birthright"],["birthright","israel"],["israel","category"],["category","genealogy"],["genealogy","tourism"],["tourism","category"],["category","types"],["tourism","category"]],"all_collocations":["genealogy tourism","tourism sometimes","sometimes called","called roots","roots tourism","tourismarket consisting","holiday destination","genealogy tourists","tourists travel","witheir past","k page","exploratory study","travel experience","chinese residence","residence inew","inew zealand","zealand current","current issues","tourism genealogy","genealogy tourism","worldwide industry","industry although","havexperienced mass","mass migration","migration mass","mass emigration","large worldwide","worldwide diaspora","diaspora community","community genealogy","genealogy tourism","ireland recorded","recorded genealogy","genealogy tourism","visitors traveled","f ilte","ilte genealogy","genealogy facts","facts dublin","dublin bord","bord f","f ilte","ilte market","market research","research planning","f ilte","ilte ireland","ireland irish","irish tourist","tourist board","board ceased","visitors numbers","present levels","unknown scotland","scotland staged","genealogy tourists","tourists genealogy","genealogy tourism","central europe","world war","war ii","ii caused","caused mass","population particularly","particularly jewish","jewish genealogy","genealogy tourism","rise many","many african","african americans","african homelands","american family","family best","best selling","selling book","television mini","mini series","series roots","roots miniseries","miniseries roots","roots clarke","clarke k","k mapping","roots tourism","ethnic heritage","thomas eds","eds globalization","race transformations","cultural production","blackness duke","duke university","university press","press durham","durham pp","pp de","p african","african american","american roots","roots tourism","american perspectives","perspectives vol","roots tourism","tourism experience","cape coast","castles journal","heritage tourism","x areas","areas frequently","frequently visited","visited include","include cape","cape coast","brazil african","african governments","governments recognized","ghana including","african american","american summit","biannual pan","pan african","african historical","historical theatre","theatre festival","day celebrations","genealogy tourists","tourists often","often participate","digital access","historical records","dna studies","recent years","increasing number","g seeking","seeking roots","tourism journal","heritage tourism","tourism see","see also","also diaspora","diaspora tourism","tourism birthright","birthright armenia","armenia birthright","birthright israel","israel category","category genealogy","genealogy tourism","tourism category","category types","tourism category"],"new_description":"genealogy tourism sometimes_called roots tourism segment tourismarket consisting tourists connections holiday destination genealogy tourists travel land ancestors witheir past walk footsteps k page exploratory study travel experience chinese residence inew_zealand current issues tourism genealogy tourism worldwide industry although prominent countries havexperienced mass migration mass emigration time history thus large worldwide diaspora community genealogy tourism prominent ireland recorded genealogy tourism year visitors traveled f_ilte genealogy facts dublin bord f_ilte market research planning f_ilte ireland irish tourist_board ceased visitors numbers present levels unknown scotland staged festival appeal genealogy tourists genealogy tourism common countries central_europe world_war ii caused mass population particularly jewish genealogy tourism popular rise many african_americans motivated travel african homelands alex alex roots saga american family best selling book television mini series roots miniseries roots clarke k mapping roots tourism ethnic heritage k clarke thomas eds globalization race transformations cultural production blackness duke university_press durham pp de p african_american roots tourism american perspectives vol pp roots tourism experience focus cape coast castles journal heritage_tourism x areas frequently visited include cape coast ghana island senegal bahia brazil african governments recognized opportunity development tourism governments ghana example ministry tourism attract ghana including african_american summit biannual pan african historical theatre festival day celebrations genealogy tourists often participate tracing digital access historical records well dna studies recent_years allowed increasing_number people identify homelands g seeking roots tracing constructing framework reference tourism journal heritage_tourism see_also diaspora tourism birthright armenia birthright israel_category genealogy tourism_category_types tourism_category"},{"title":"General manager","description":"a general manager is an executive who has overall responsibility for managing bothe revenue and cost elements of a company s income statement known as profit loss p l responsibility a general manager usually oversees most or all of the firm s marketing and sales functions as well as the day to day business operations of the business frequently the general manager is responsible for effective planning delegating coordinating staffing organizing andecision making to attain desirable profit making results for an organization sayles in many cases the general manager of a business is given a different formal title or titles most corporate managers holding the titles of chief executive officer ceor president corporate title president for example are the general managers of theirespective businesses more rarely the chiefinancial officer cfo chief operating officer coor chief marketing officer cmo will act as the general manager of the business buthere is level of post between them therefore gm and ceo are different depending on the company individuals withe title managing directoregional vice president country manager product manager branch manager or segment manager may also have general management responsibilities in large companies many vice presidents will have the title of general manager when they have the full set of responsibility for the function in that particularea of the business and are often titled vice president and general manager in technology companies general managers are often given to the product manager in consumer products companies general managers are often given the title brand manager or category manager in professional services firms the general manager may hold titlesuch as managing partner senior partner or managing director industry specific usages in the hotel industry the general manager is thead executive responsible for the overall operation of an individual hotel establishment including financial profitability the general manager holds ultimate managerial authority over the hotel operation and usually reports directly to a regional vice president corporate office and or hotel ownership investors common duties of a general manager include but are not limited to recruitment hiring and management of an executive team consisting of individual department heads that oversee various hotel departments and functions budgeting and financial management creating and enforcing hotel business objectives and goalsales management marketing management revenue management project management contract management handling of emergencies and other major issues involvinguests employees or the facility public relations laborelations local government relations maintaining business partnerships and many additional duties thextent of duties of an individual hotel general manager vary significantly depending on the size of the hotel and company organization for example general managers of smaller boutique type hotels may be directly responsible for additional administrative dutiesuch as accounting human resources payroll purchasing and other duties that would normally be handled by other subordinate managers or entire departments andivisions in a larger hotel operation sports teams in most professional sports the general manager is the team executive responsible for acquiring the rights to player personnel negotiating their contracts and reassigning or dismissing players no longer desired on the team the general manager may also have responsibility for hiring thead coach of the team for manyears in us professional sports coach sport coaches often served as general managers for their teams as well deciding which players would be kept on the team and which ones dismissed and evenegotiating the terms of their contracts in cooperation withe ownership of the team in fact many sports teams in thearlyears of us professional sports were coached by the owner of the team so in some cases the same individual served as owner general manager and head coach as the amount of money involved in professional sports increased many prominent players began to hire sports agent s to negotiate contracts on their behalf this intensified contract negotiations that resulted as well to ensure all player contracts are in accordance withese caps as well as consistent withe desires of the ownership and its ability to pay general managers are usually responsible for the selection of players in player sports drafts and work withe coaching staff and scout sport scouts to build a strong team in sports with developmental or minor league s the general manager is usually the team executive withe overall responsibility for sending down and calling uplayers to and from these leagues although thead coach may also have significant input into these decisionsome of the most successful sports general managers have been former players and coaches while others have backgrounds in ownership and business managementhe term is not commonly used in europespecially in association football soccer where the position of manager association football manager or coach is used instead to refer to the managing coaching position the position of director ofootball might be the most similar position many uefa european football clubsee also business manager hotel management hospitality management studies general managerestaurant general managing director list of all decade sports illustrated awards and honors top gms executives of the decade sports illustrated top gms executives of the decade in all sports the sporting news executive of the year award sporting news executive of the year mlb nba executive of the year award nhl general manager of the year award nationalacrosse league gm of the year award category management occupations category hospitality occupations","main_words":["general","manager","executive","overall","responsibility","managing","bothe","revenue","cost","elements","company","income","statement","known","profit","loss","p","l","responsibility","general_manager","usually","oversees","firm","marketing","sales","functions","well","day","day","business","operations","business","frequently","general_manager","responsible","effective","planning","coordinating","organizing","making","attain","desirable","profit","making","results","organization","many_cases","general_manager","business","given","different","formal","title","titles","corporate","managers","holding","titles","chief_executive_officer","president","corporate","title","president","example","general_managers","theirespective","businesses","rarely","officer","cfo","chief","operating","officer","chief","marketing","officer","act","general_manager","business","buthere","level","post","therefore","ceo","different","depending","company","individuals","withe","title","managing","vice_president","country","manager","product","manager","branch","manager","segment","manager","may_also","general","management","responsibilities","large","companies","many","vice_presidents","title","general_manager","full","set","responsibility","function","particularea","business","often","titled","vice_president","general_manager","technology","companies","general_managers","often","given","product","manager","consumer","products","companies","general_managers","often","given","title","brand","manager","category","manager","professional","services","firms","general_manager","may","hold","managing","partner","senior","partner","managing_director","industry","specific","hotel_industry","general_manager","thead","executive","responsible","overall","operation","individual","hotel","establishment","including","financial","profitability","general_manager","holds","ultimate","managerial","authority","hotel","operation","usually","reports","directly","regional","vice_president","corporate","office","hotel","ownership","investors","common","duties","general_manager","include","limited","recruitment","hiring","management","executive","team","consisting","individual","department","heads","oversee","various","hotel","departments","functions","financial","management","creating","enforcing","hotel","business","objectives","management","marketing","management","revenue_management","project","management","contract","management","handling","emergencies","major","issues","employees","facility","public_relations","local_government","relations","maintaining","business","partnerships","many","additional","duties","thextent","duties","individual","hotel","general_manager","vary","significantly","depending","size","hotel","company","organization","example","general_managers","smaller","boutique","type","hotels","may","directly","responsible","additional","administrative","accounting","human_resources","payroll","purchasing","duties","would","normally","handled","managers","entire","departments","larger","hotel","operation","sports","teams","professional","sports","general_manager","team","executive","responsible","acquiring","rights","player","personnel","negotiating","contracts","players","longer","desired","team","general_manager","may_also","responsibility","hiring","thead","coach","team","manyears","us","professional","sports","coach","sport","coaches","often_served","general_managers","teams","well","players","would","kept","team","ones","dismissed","terms","contracts","cooperation","withe","ownership","team","fact","many","sports","teams","thearlyears","us","professional","sports","owner","team","cases","individual","served","owner","general_manager","head","coach","amount","money","involved","professional","sports","increased","many","prominent","players","began","hire","sports","agent","negotiate","contracts","behalf","intensified","contract","negotiations","resulted","well","ensure","player","contracts","accordance","withese","caps","well","consistent","withe","desires","ownership","ability","pay","general_managers","usually","responsible","selection","players","player","sports","work","withe","coaching","staff","scout","sport","build","strong","team","sports","developmental","minor","league","general_manager","usually","team","executive","withe","overall","responsibility","sending","calling","leagues","although","thead","coach","may_also","significant","input","successful","sports","general_managers","former","players","coaches","others","backgrounds","ownership","business","managementhe","term","commonly_used","europespecially","association","football","soccer","position","manager","association","football","manager","coach","used","instead","refer","managing","coaching","position","position","director","might","similar","position","many","european","football","also","business","manager","hotel_management","hospitality_management_studies","general","general","managing_director","list","decade","sports","illustrated","awards","honors","top","executives","decade","sports","illustrated","top","executives","decade","sports","sporting","news","executive","year_award","sporting","news","executive","year","executive","year_award","general_manager","year_award","league","year_award","category","management","occupations_category"],"clean_bigrams":[["general","manager"],["overall","responsibility"],["managing","bothe"],["bothe","revenue"],["cost","elements"],["income","statement"],["statement","known"],["profit","loss"],["loss","p"],["p","l"],["l","responsibility"],["general","manager"],["manager","usually"],["usually","oversees"],["sales","functions"],["day","business"],["business","operations"],["business","frequently"],["general","manager"],["effective","planning"],["attain","desirable"],["desirable","profit"],["profit","making"],["making","results"],["many","cases"],["general","manager"],["different","formal"],["formal","title"],["corporate","managers"],["managers","holding"],["chief","executive"],["executive","officer"],["president","corporate"],["corporate","title"],["title","president"],["example","general"],["general","managers"],["theirespective","businesses"],["officer","cfo"],["cfo","chief"],["chief","operating"],["operating","officer"],["chief","marketing"],["marketing","officer"],["general","manager"],["business","buthere"],["different","depending"],["company","individuals"],["individuals","withe"],["withe","title"],["title","managing"],["vice","president"],["president","country"],["country","manager"],["manager","product"],["product","manager"],["manager","branch"],["branch","manager"],["segment","manager"],["manager","may"],["may","also"],["general","management"],["management","responsibilities"],["large","companies"],["companies","many"],["many","vice"],["vice","presidents"],["general","manager"],["full","set"],["often","titled"],["titled","vice"],["vice","president"],["general","manager"],["technology","companies"],["companies","general"],["general","managers"],["often","given"],["product","manager"],["consumer","products"],["products","companies"],["companies","general"],["general","managers"],["often","given"],["title","brand"],["brand","manager"],["category","manager"],["professional","services"],["services","firms"],["general","manager"],["manager","may"],["may","hold"],["managing","partner"],["partner","senior"],["senior","partner"],["managing","director"],["director","industry"],["industry","specific"],["hotel","industry"],["general","manager"],["thead","executive"],["executive","responsible"],["overall","operation"],["individual","hotel"],["hotel","establishment"],["establishment","including"],["including","financial"],["financial","profitability"],["general","manager"],["manager","holds"],["holds","ultimate"],["ultimate","managerial"],["managerial","authority"],["hotel","operation"],["usually","reports"],["reports","directly"],["regional","vice"],["vice","president"],["president","corporate"],["corporate","office"],["hotel","ownership"],["ownership","investors"],["investors","common"],["common","duties"],["general","manager"],["manager","include"],["recruitment","hiring"],["executive","team"],["team","consisting"],["individual","department"],["department","heads"],["oversee","various"],["various","hotel"],["hotel","departments"],["financial","management"],["management","creating"],["enforcing","hotel"],["hotel","business"],["business","objectives"],["management","marketing"],["marketing","management"],["management","revenue"],["revenue","management"],["management","project"],["project","management"],["management","contract"],["contract","management"],["management","handling"],["major","issues"],["facility","public"],["public","relations"],["local","government"],["government","relations"],["relations","maintaining"],["maintaining","business"],["business","partnerships"],["many","additional"],["additional","duties"],["duties","thextent"],["individual","hotel"],["hotel","general"],["general","manager"],["manager","vary"],["vary","significantly"],["significantly","depending"],["company","organization"],["example","general"],["general","managers"],["smaller","boutique"],["boutique","type"],["type","hotels"],["hotels","may"],["directly","responsible"],["additional","administrative"],["accounting","human"],["human","resources"],["resources","payroll"],["payroll","purchasing"],["would","normally"],["entire","departments"],["larger","hotel"],["hotel","operation"],["operation","sports"],["sports","teams"],["professional","sports"],["sports","general"],["general","manager"],["team","executive"],["executive","responsible"],["player","personnel"],["personnel","negotiating"],["longer","desired"],["general","manager"],["manager","may"],["may","also"],["hiring","thead"],["thead","coach"],["us","professional"],["professional","sports"],["sports","coach"],["coach","sport"],["sport","coaches"],["coaches","often"],["often","served"],["general","managers"],["players","would"],["ones","dismissed"],["cooperation","withe"],["withe","ownership"],["fact","many"],["many","sports"],["sports","teams"],["us","professional"],["professional","sports"],["individual","served"],["owner","general"],["general","manager"],["head","coach"],["money","involved"],["professional","sports"],["sports","increased"],["increased","many"],["many","prominent"],["prominent","players"],["players","began"],["hire","sports"],["sports","agent"],["negotiate","contracts"],["intensified","contract"],["contract","negotiations"],["player","contracts"],["accordance","withese"],["withese","caps"],["consistent","withe"],["withe","desires"],["pay","general"],["general","managers"],["usually","responsible"],["player","sports"],["work","withe"],["withe","coaching"],["coaching","staff"],["scout","sport"],["strong","team"],["minor","league"],["general","manager"],["manager","usually"],["team","executive"],["executive","withe"],["withe","overall"],["overall","responsibility"],["leagues","although"],["although","thead"],["thead","coach"],["coach","may"],["may","also"],["significant","input"],["successful","sports"],["sports","general"],["general","managers"],["former","players"],["business","managementhe"],["managementhe","term"],["commonly","used"],["association","football"],["football","soccer"],["manager","association"],["association","football"],["football","manager"],["used","instead"],["managing","coaching"],["coaching","position"],["similar","position"],["position","many"],["european","football"],["also","business"],["business","manager"],["manager","hotel"],["hotel","management"],["management","hospitality"],["hospitality","management"],["management","studies"],["studies","general"],["general","managing"],["managing","director"],["director","list"],["decade","sports"],["sports","illustrated"],["illustrated","awards"],["honors","top"],["decade","sports"],["sports","illustrated"],["illustrated","top"],["decade","sports"],["sporting","news"],["news","executive"],["year","award"],["award","sporting"],["sporting","news"],["news","executive"],["year","award"],["general","manager"],["year","award"],["year","award"],["award","category"],["category","management"],["management","occupations"],["occupations","category"],["category","hospitality"],["hospitality","occupations"]],"all_collocations":["general manager","overall responsibility","managing bothe","bothe revenue","cost elements","income statement","statement known","profit loss","loss p","p l","l responsibility","general manager","manager usually","usually oversees","sales functions","day business","business operations","business frequently","general manager","effective planning","attain desirable","desirable profit","profit making","making results","many cases","general manager","different formal","formal title","corporate managers","managers holding","chief executive","executive officer","president corporate","corporate title","title president","example general","general managers","theirespective businesses","officer cfo","cfo chief","chief operating","operating officer","chief marketing","marketing officer","general manager","business buthere","different depending","company individuals","individuals withe","withe title","title managing","vice president","president country","country manager","manager product","product manager","manager branch","branch manager","segment manager","manager may","may also","general management","management responsibilities","large companies","companies many","many vice","vice presidents","general manager","full set","often titled","titled vice","vice president","general manager","technology companies","companies general","general managers","often given","product manager","consumer products","products companies","companies general","general managers","often given","title brand","brand manager","category manager","professional services","services firms","general manager","manager may","may hold","managing partner","partner senior","senior partner","managing director","director industry","industry specific","hotel industry","general manager","thead executive","executive responsible","overall operation","individual hotel","hotel establishment","establishment including","including financial","financial profitability","general manager","manager holds","holds ultimate","ultimate managerial","managerial authority","hotel operation","usually reports","reports directly","regional vice","vice president","president corporate","corporate office","hotel ownership","ownership investors","investors common","common duties","general manager","manager include","recruitment hiring","executive team","team consisting","individual department","department heads","oversee various","various hotel","hotel departments","financial management","management creating","enforcing hotel","hotel business","business objectives","management marketing","marketing management","management revenue","revenue management","management project","project management","management contract","contract management","management handling","major issues","facility public","public relations","local government","government relations","relations maintaining","maintaining business","business partnerships","many additional","additional duties","duties thextent","individual hotel","hotel general","general manager","manager vary","vary significantly","significantly depending","company organization","example general","general managers","smaller boutique","boutique type","type hotels","hotels may","directly responsible","additional administrative","accounting human","human resources","resources payroll","payroll purchasing","would normally","entire departments","larger hotel","hotel operation","operation sports","sports teams","professional sports","sports general","general manager","team executive","executive responsible","player personnel","personnel negotiating","longer desired","general manager","manager may","may also","hiring thead","thead coach","us professional","professional sports","sports coach","coach sport","sport coaches","coaches often","often served","general managers","players would","ones dismissed","cooperation withe","withe ownership","fact many","many sports","sports teams","us professional","professional sports","individual served","owner general","general manager","head coach","money involved","professional sports","sports increased","increased many","many prominent","prominent players","players began","hire sports","sports agent","negotiate contracts","intensified contract","contract negotiations","player contracts","accordance withese","withese caps","consistent withe","withe desires","pay general","general managers","usually responsible","player sports","work withe","withe coaching","coaching staff","scout sport","strong team","minor league","general manager","manager usually","team executive","executive withe","withe overall","overall responsibility","leagues although","although thead","thead coach","coach may","may also","significant input","successful sports","sports general","general managers","former players","business managementhe","managementhe term","commonly used","association football","football soccer","manager association","association football","football manager","used instead","managing coaching","coaching position","similar position","position many","european football","also business","business manager","manager hotel","hotel management","management hospitality","hospitality management","management studies","studies general","general managing","managing director","director list","decade sports","sports illustrated","illustrated awards","honors top","decade sports","sports illustrated","illustrated top","decade sports","sporting news","news executive","year award","award sporting","sporting news","news executive","year award","general manager","year award","year award","award category","category management","management occupations","occupations category","category hospitality","hospitality occupations"],"new_description":"general manager executive overall responsibility managing bothe revenue cost elements company income statement known profit loss p l responsibility general_manager usually oversees firm marketing sales functions well day day business operations business frequently general_manager responsible effective planning coordinating organizing making attain desirable profit making results organization many_cases general_manager business given different formal title titles corporate managers holding titles chief_executive_officer president corporate title president example general_managers theirespective businesses rarely officer cfo chief operating officer chief marketing officer act general_manager business buthere level post therefore ceo different depending company individuals withe title managing vice_president country manager product manager branch manager segment manager may_also general management responsibilities large companies many vice_presidents title general_manager full set responsibility function particularea business often titled vice_president general_manager technology companies general_managers often given product manager consumer products companies general_managers often given title brand manager category manager professional services firms general_manager may hold managing partner senior partner managing_director industry specific hotel_industry general_manager thead executive responsible overall operation individual hotel establishment including financial profitability general_manager holds ultimate managerial authority hotel operation usually reports directly regional vice_president corporate office hotel ownership investors common duties general_manager include limited recruitment hiring management executive team consisting individual department heads oversee various hotel departments functions financial management creating enforcing hotel business objectives management marketing management revenue_management project management contract management handling emergencies major issues employees facility public_relations local_government relations maintaining business partnerships many additional duties thextent duties individual hotel general_manager vary significantly depending size hotel company organization example general_managers smaller boutique type hotels may directly responsible additional administrative accounting human_resources payroll purchasing duties would normally handled managers entire departments larger hotel operation sports teams professional sports general_manager team executive responsible acquiring rights player personnel negotiating contracts players longer desired team general_manager may_also responsibility hiring thead coach team manyears us professional sports coach sport coaches often_served general_managers teams well players would kept team ones dismissed terms contracts cooperation withe ownership team fact many sports teams thearlyears us professional sports owner team cases individual served owner general_manager head coach amount money involved professional sports increased many prominent players began hire sports agent negotiate contracts behalf intensified contract negotiations resulted well ensure player contracts accordance withese caps well consistent withe desires ownership ability pay general_managers usually responsible selection players player sports work withe coaching staff scout sport build strong team sports developmental minor league general_manager usually team executive withe overall responsibility sending calling leagues although thead coach may_also significant input successful sports general_managers former players coaches others backgrounds ownership business managementhe term commonly_used europespecially association football soccer position manager association football manager coach used instead refer managing coaching position position director might similar position many european football also business manager hotel_management hospitality_management_studies general general managing_director list decade sports illustrated awards honors top executives decade sports illustrated top executives decade sports sporting news executive year_award sporting news executive year executive year_award general_manager year_award league year_award category management occupations_category hospitality_occupations"},{"title":"George Bradshaw","description":"birth place windsor bridge pendleton greater manchester pendleton lancashirenglandeath date death place oslo norway death cause cholera known for bradshaw s guides and timetables children religion society ofriends george bradshaw july september was an english cartographer printer publisher printer and publisher he developed bradshaw s guide a widely sold series of combined railway guides and public transportimetable timetables bradshawas born at windsor bridge pendleton greater manchester pendleton in salford greater manchester salford lancashire on leaving school he was apprenticed to an engraver named beale in manchester and in he set up his own engraving business in belfast returning to manchester in to set up as an engraver and printer principally of map s he was a religious man althoughis parents were not exceptionally wealthy when he was young they enabled him to take lesson s from a minister devoted to the teachings of emanuel swedenborg he joined the society ofriends the quakers and gave a considerable part of his time to philanthropy philanthropic work he worked a great deal with radical reformersuch as richard cobden in organising peace conferences and in setting up schools and soup kitchen s for the poor of manchester it is his belief as a quaker that is quoted as causing thearly editions of bradshaw s guides to have avoided using the names of months based upon list of roman deities roman deities which waseen as pagan usage quaker usage was and sometimestill is first month for january second month for february and son days of the week were first day for sunday and son in he founded a high quality weekly magazinedited by george falkner called bradshaw s manchester journal described as a page miscellany of art science and literature to sell athe cheaprice of a penny halfpenny a week after the first six months it was renamed bradshaw s journal a miscellany of literature science and art and the place of publication moved to london where the title was taken on by william strange buthe journal survived only until thomas trefor george bradshaw and bradshaw s manchester journal manchesteregion history review maidment ii vol qxd july p he married on may while touring norway in he contracted cholerandied in september of that year without being able to return to england he is interred in the old town oslo gamlebyen cemetery about a mile from the oslo cathedral in oslo his gravestone is on the left by the gate near oslo hospital the railway magazine january bradshaw s railway guides early history bradshaw s name was already known as the publisher of bradshaw s maps of inland navigation which detailed the canal s of lancashire and yorkshire when on october soon after the introduction of railways his manchester company published the world s first compilation of railway timetables the cloth bound book was entitled bradshaw s railway time tables and assistanto railway travelling and cost sd sixpence p in the title was changed to bradshaw s railway companion and the price raised to shilling british coin one shilling a new volume was issued at occasional intervals and from time to time a supplement kepthis up to date the original bradshaw publications were published before the limited introduction of standardised railway time inovember and itsubsequent development into standard time great britain standard time the accompanying map of allines in operation and some in progress in england wales is cited as being the world s first national railway mapage in december acting on a suggestion made by his london agent william jones adams bradshaw reduced the price to the original sixpence and began to issue the guides monthly under the title bradshaw s monthly railway guide many railway companies were unhappy with bradshaw s timetable but bradshawas able to circumventhis by becoming a railway shareholder and by putting his case at company agmsoon the book in the familiar yellowrapper became synonymous with its publisher for victorians and edwardians alike a railway timetable was a bradshaw no matter by which railway company it had been issued or whether bradshaw had been responsible for its production or not file bradshawhitbyjpg thumb px altimetable for york scarborough pickering whitby timetable shows times for both weekdays and sundays distances in miles and fares timetable from the bradshaw theight pagedition of had grown to pages by and to pages by and now included maps illustrations andescriptions of the main features and historic buildings of the townserved by the railways in april the issue number jumped from to the publisher claimed this was an innocent mistake although it has been speculated as a commercial ploy where more advertising revenue could be generated by making it look longer established than it really was whatever the reason for the change the numbering continued from when in punch magazine punch praised bradshaw s publications it stated that seldom has the gigantic intellect of man been employed upon a work of greater utility at last some order had been imposed on the chaos that had been created by some rail companies whose tracks criss crossed the country and whose largely uncoordinated network was rapidly expanding bradshaw minutely recorded all changes and became the standard manual forail travel well into the th century by bradshaw s guide had risen in price to two shillings p and by to half a crown p althoughistoric money values are difficulto calculate this would have been equivalento perhaps at values later history bradshaw s timetables became less necessary from when more than surviving companies were grouped into the big four british railway companies big four this change reducedramatically the range and number of individual timetables produced by the companies themselves they now published a much smaller number of substantial compilations which between them covered the country between and three of the big four transferred their timetable production to bradshaw s publisher henry blacklock co and most of the official company timetables therefore became reprints of the relevant pages from bradshaw only the great western railway retained its own format between the tworld war s the verb to bradshawas a derogatory term used in the royal air force to refer to pilots who could not navigate well perhaps related to a perceived lack of ability shown by those who navigated by following track rail transport railway lines when the railways were nationalised in five of the six british railways regions followed the companies example by using blacklock to produce their timetable books but production was eventually moved tother publishers this change must have reduced blacklock s revenue substantially parts of bradshaw s guide began to be reset in the newer british railwaystyle from but modernisation of the whole volume was never completed by bradshaw cost s d p and a complete set of bregional timetables could be bought for s p the conclusion was inevitable and the last editiono was dated may the railway magazine of that month printed a valedictory article by charles e lee reprints of various bradshaw s guides have been produced references in literature th century and early th century novelists make frequent references to a character s bradshaw dickens refers it in hishort story the portrait painter story in around the world in days phileas fogg carries a bradshaw crime writer s were fascinated with trains and timetablespecially as a new source of alibi s examples are ronald knox s the footsteps athe lock and novels by freeman wills crofts one mention is by sir arthur conan doyle in the sherlock holmestory the valley ofear the vocabulary of bradshaw is nervous and terse but limited othereferences include another sherlock holmestory the adventure of the copper beeches lewis carroll s long poem phantasmagoriand bram stoker s dracula which makes note of count dracula reading an english bradshaw s guide as part of his planning for his voyage to england in the comic opera cox and box the following exchange takes place box have you read this month s bradshaw sir cox no sir my wife wouldn t let meburnand f cox and box reprinted athe gilbert and sullivan archive accessed augusthere is also a reference in death in the clouds by agatha christie mr clancy writer of detective stories extracted a continental bradshaw from his raincoat pocketo work out a complicated alibi bradshaw is also mentioned in her the secret adversary in daphne du maurier s rebecca novel rebecca the second mrs de winter observes that some people have a vice of reading bradshaws they plan innumerable journeys across country for the fun of linking up impossible connections chapter anothereference is in an aside in riddle of the sands by robert erskine childerskine childers an extraordinary book bradshaw turned to from habit even when least wanted as men fondle guns and rods in the closeason in g k chesterton s the man who was thursday the protagonist gabriel syme praises bradshaw as a poet of order no take your books of mere poetry and prose let me read a time table with tears of pride take your byron who commemorates the defeats of man give me bradshawho commemorates his victories give me bradshaw i say in max beerbohm s zuleika dobson a satirical fantasy of oxford undergraduates a bradshaw is listed as one of the two books in the library of the irresistible zuleika bradshaw is mentioned in modernovels with a period setting and in philipullman s the shadow in the north sally lockhart quartet in jerome k jerome s novel diary of a pilgrimage an aside called a faithful bradshaw is contained thisection describes a comical incident where the author gets always misled by referring toutdated guides bradshaw s continental railway guide in june the first number of bradshaw s continental railway guide was issued giving the timetables of the continental railways it grew tover pages including timetables guidebook and hotel directory it was discontinued in athe outbreak of the first world war briefly resurrected in the interwar years it saw its final edition in thedition was republished in september bradshaw s and other printed timetables today in december the middleton press bradshaw mitchell s rail times took advantage of network rail s willingness to granthird party publishers the righto print paper versions of the national rail timetable network rail hadiscontinued official hard copies in favour of pdf editions which could be downloaded without charge as a tribute to bradshaw middleton press named its timetables the bradshaw mitchell s rail times a competing edition reproduced from network rail s artwork is published by tso online bookshop this a same size reproduction of the network rail artwork although the size is only about in the middleton press versions to reduce the page count a third publisher uk rail timetables uk rail timetables ltd the main timetable for indian railways istill known as the newman indian bradshaw great british railway journeys great continental railway journeys former british politician michael portillo used a copy of what was described as a bradshaw s guide thedition of bradshaw s descriptive railway hand book of great britain and ireland for great british railway journeys a bbc two television series in whiche travelled across britain visiting recommended points of interest noted in bradshaw s guide book and where possible staying in recommended hotels the first series was broadcast in early a second in early a third in early and a fourth in early series was broadcast in january and february the success of the seriesparked a new interest in the guides and facsimile copies of thedition became an unexpected best seller in the uk in athend of a new series great continental railway journeys was broadcast with portillo using thedition of bradshaw s continental railway guide to make journeys through various european countries and territories prompting two publishers to produce facsimiles of the handbook a second series was broadcast in see also bradshaw s guide list george samuel measom publisher of railway guides bradshaw s guide to victoriaustralia edward h milligan british quakers in commerce industry william sessions of york pagendnotes manchester guardian sept p minutes of proceedings of institution of civil engineers xiii athen um dec p jan p jan p notes and queries th ser viii xi place of publication is london unless otherwise specified fellows canon r bradshaw railway magazine vol fitzgerald percy the story of bradshaw s guide the leadenhall press p ill guilcher g la restructuration du temps par les chemins de fer le railway time cahiers victoriens et douardiens montpellier france n april p guilcher g les guides bradshaw londres et manchester notes bibliographiques in lettre du march du livre paris n p lee charles e the centenary of bradshaw railway gazette p illomax e s bradshaw the timetable man the antiquarian book monthly review vol ii n and sept oct p and ill extremely well researched contains the fullest list of brashaw publications reach angus b the comic bradshaw or bubbles from the boiler illustrated by h g hine d bogue p an extremely funny period piece rudolph k h fun on bradshaw railway magazine vol pp simmons jack thexpress train and otherailway studies nairn david st john thomas chapter bradshaw pp an authoritative study by the dean of railway historiansmith g royde the history of bradshaw a centenary review of the origin and growth of the most famous guide in the world london manchester h blacklock p many illustrations facsimile the official history sponsored by bradshaw the importance of advertisements in the bradshaw guideshould be stressed they are an invaluable source of information all trades of the time not unlike john murray s handbooks but on a much larger scale hundreds of pages in a single volumexternalinks a digitalised version of thedition of bradshaw s handbook for tourists in great britain ireland a single comprehensive site introducing bradshaw and the company named after him and the various facsimileditions currently available of bradshaw publications category births category deaths category people from pendleton greater manchester category british people in rail transport category converts to quakerism category english printers category english quakers category british publishers people category deaths from cholera category infectious disease deaths inorway category travel guide books","main_words":["birth","place","windsor","bridge","pendleton","greater_manchester","pendleton","oslo","norway","death","cause","known","bradshaw","guides","timetables","children","religion","society","ofriends","july","september","english","cartographer","printer","publisher","printer","publisher","developed","bradshaw","guide","widely","sold","series","combined","railway","guides","public","timetables","born","windsor","bridge","pendleton","greater_manchester","pendleton","salford","greater_manchester","salford","lancashire","leaving","school","named","beale","manchester","set","engraving","business","belfast","returning","manchester","set","printer","principally","map","religious","man","parents","exceptionally","wealthy","young","enabled","take","minister","devoted","joined","society","ofriends","quakers","gave","considerable","part","time","philanthropic","work","worked","great_deal","radical","richard","peace","conferences","setting","schools","soup_kitchen","poor","manchester","belief","quaker","quoted","causing","thearly","editions","bradshaw","guides","avoided","using","names","months","based_upon","list","roman","roman","waseen","pagan","usage","quaker","usage","first","month","january","second","month","february","son","days","week","first_day","sunday","son","founded","high_quality","weekly","george","called","bradshaw","manchester","journal","described","page","art","science","literature","sell","athe","penny","week","first","six","months","renamed","bradshaw","journal","literature","science","art","place","publication","moved","london","title","taken","william","strange","buthe","journal","survived","thomas","bradshaw","manchester","journal","history","review","ii","vol","july","p","married","may","touring","norway","contracted","september","year","without","able","return","england","old","town","oslo","cemetery","mile","oslo","cathedral","oslo","left","gate","near","oslo","hospital","railway","magazine","january","bradshaw","railway","guides","early","history","bradshaw","name","already","known","publisher","bradshaw","maps","inland","navigation","detailed","canal","lancashire","yorkshire","october","soon","introduction","railways","manchester","company","published","world","first","compilation","railway","timetables","cloth","bound","book","entitled","bradshaw","railway","time","tables","assistanto","railway","travelling","cost","sixpence","p","title","changed","bradshaw","railway","companion","price","raised","british","coin","one","new","occasional","time","time","supplement","date","original","bradshaw","publications","published","limited","introduction","railway","time","inovember","development","standard","time","great_britain","standard","time","accompanying","map","operation","progress","england_wales","cited","world","first","national","railway","december","acting","suggestion","made","london","agent","william","jones","adams","bradshaw","reduced","price","original","sixpence","began","issue","guides","monthly","title","bradshaw","monthly","railway","guide","many","railway","companies","bradshaw","timetable","able","becoming","railway","shareholder","putting","case","company","book","familiar","became","synonymous","publisher","alike","railway","timetable","bradshaw","matter","railway","company","issued","whether","bradshaw","responsible","production","file","thumb","px","york","scarborough","whitby","timetable","shows","times","weekdays","sundays","distances","miles","fares","timetable","bradshaw","theight","grown","pages","pages","included","maps","illustrations","main","features","historic","buildings","railways","april","issue","number","publisher","claimed","innocent","mistake","although","speculated","commercial","advertising","revenue","could","generated","making","look","longer","established","really","whatever","reason","change","numbering","continued","punch","magazine","punch","praised","bradshaw","publications","stated","man","employed","upon","work","greater","utility","last","order","imposed","created","rail","companies","whose","tracks","crossed","country","whose","largely","network","rapidly","expanding","bradshaw","recorded","changes","became","standard","manual","travel","well","th_century","bradshaw","guide","risen","price","two","shillings","p","half","crown","p","money","values","difficulto","calculate","would","equivalento","perhaps","values","later","history","bradshaw","timetables","became","less","necessary","surviving","companies","grouped","big","four","british","railway","companies","big","four","change","range","number","individual","timetables","produced","companies","published","much_smaller","number","substantial","covered","country","three","big","four","transferred","timetable","production","bradshaw","publisher","henry","blacklock","official","company","timetables","therefore","became","relevant","pages","bradshaw","great","western","railway","retained","format","war","verb","derogatory","term_used","royal","air_force","refer","pilots","could","navigate","well","perhaps","related","perceived","lack","ability","shown","following","track","rail_transport","railway","lines","railways","five","six","british","railways","regions","followed","companies","example","using","blacklock","produce","timetable","eventually","moved","tother","publishers","change","must","reduced","blacklock","revenue","substantially","parts","bradshaw","guide","began","newer","british","whole","volume","never","completed","bradshaw","cost","p","complete","set","timetables","could","bought","p","conclusion","last","dated","may","railway","magazine","month","printed","article","charles","e","lee","various","bradshaw","guides","produced","references","literature","th_century","early_th","century","novelists","make","frequent","references","character","bradshaw","refers","story","portrait","painter","story","around","world","days","carries","bradshaw","crime","writer","trains","new","source","alibi","examples","ronald","footsteps","athe","lock","novels","one","mention","sir","arthur","conan","doyle","valley","ofear","bradshaw","limited","include","another","adventure","copper","lewis","carroll","long","poem","dracula","makes","note","count","dracula","reading","english","bradshaw","guide","part","planning","voyage","england","comic","opera","cox","box","following","exchange","takes_place","box","read","month","bradshaw","sir","cox","sir","wife","let","f","cox","box","reprinted","athe","gilbert","sullivan","archive","accessed","also","reference","death","clouds","christie","writer","detective","stories","extracted","continental","bradshaw","work","complicated","alibi","bradshaw","also","mentioned","secret","rebecca","novel","rebecca","second","mrs","de","winter","observes","people","vice","reading","bradshaws","plan","journeys","across","country","fun","linking","impossible","connections","chapter","aside","sands","robert","erskine","extraordinary","book","bradshaw","turned","habit","even","least","wanted","men","guns","rods","g","k","man","thursday","protagonist","gabriel","praises","bradshaw","poet","order","take","books","mere","poetry","prose","let","read","time","table","pride","take","byron","man","give","give","bradshaw","say","max","fantasy","oxford","bradshaw","listed","one","two","books","library","bradshaw","mentioned","period","setting","shadow","north","sally","jerome","k","jerome","novel","diary","pilgrimage","aside","called","faithful","bradshaw","contained","thisection","describes","incident","author","gets","always","referring","guides","bradshaw","continental","railway","guide","june","first","number","bradshaw","continental","railway","guide","issued","giving","timetables","continental","railways","grew","tover","pages","including","timetables","guidebook","hotel","directory","discontinued","athe","outbreak","first_world_war","briefly","interwar","years","saw","final","edition","thedition","september","bradshaw","printed","timetables","today","december","middleton","press","bradshaw","mitchell","rail","times","took","advantage","network","rail","willingness","party","publishers","righto","print","paper","versions","national","rail_timetable","network","rail","official","hard","copies","favour","pdf","editions","could","downloaded","without","charge","tribute","bradshaw","middleton","press","named","timetables","bradshaw","mitchell","rail","times","competing","edition","network","rail","artwork","published","online","size","reproduction","network","rail","artwork","although","size","middleton","press","versions","reduce","page","count","third","publisher","uk","uk","ltd","main","timetable","indian","railways","istill","known","newman","indian","bradshaw","great","british","railway","journeys","great","continental","railway","journeys","former","british","politician","michael","used","copy","described","bradshaw","guide","thedition","bradshaw","descriptive","railway","hand_book","great_britain","ireland","great","british","railway","journeys","bbc","two","television_series","whiche","travelled","across","britain","visiting","recommended","points","interest","noted","bradshaw","guide_book","possible","staying","recommended","hotels","first","series","broadcast","early","second","early","fourth","early","series","broadcast","january","february","success","new","interest","guides","facsimile","copies","thedition","became","unexpected","best","seller","uk","athend","new","series","great","continental","railway","journeys","broadcast","using","thedition","bradshaw","continental","railway","guide","make","journeys","various","european_countries","territories","two","publishers","produce","handbook","second","series","broadcast","see_also","bradshaw","guide","list","george","samuel","publisher","railway","guides","bradshaw","guide","victoriaustralia","edward","h","british","quakers","commerce","industry","william","sessions","york","manchester","guardian","sept","p","minutes","proceedings","institution","xiii","dec","p","jan","p","jan","p","notes","th","viii","place","publication","london","unless","otherwise","specified","fellows","canon","r","bradshaw","railway","magazine","vol","fitzgerald","story","bradshaw","guide","press_p","ill","g","la","temps","par","les","de","fer","railway","time","france","n","april","p","g","les","guides","bradshaw","londres","manchester","notes","march","paris","n","p","lee","charles","e","centenary","bradshaw","railway","gazette","p","e","bradshaw","timetable","man","book","monthly","review","vol","ii","n","sept","oct","p","ill","extremely","well","researched","contains","list","publications","reach","angus","b","comic","bradshaw","illustrated","h","g","p","extremely","funny","period","piece","k","h","fun","bradshaw","railway","magazine","vol","pp","simmons","jack","train","studies","david","st_john","thomas","chapter","bradshaw","pp","authoritative","study","dean","railway","g","history","bradshaw","centenary","review","origin","growth","famous","guide","world","london","manchester","h","blacklock","p","many","illustrations","facsimile","official","history","sponsored","bradshaw","importance","advertisements","bradshaw","source","information","trades","time","unlike","john_murray","handbooks","much_larger","scale","hundreds","pages","single","version","thedition","bradshaw","handbook","tourists","great_britain","ireland","single","comprehensive","site","introducing","bradshaw","company","named","various","currently","available","bradshaw","publications","category_births_category","deaths_category_people","pendleton","greater_manchester","category_british","people","rail_transport","category","converts","category_english","printers","category_english","quakers","category_british","publishers","people_category","deaths_category","infectious","disease","deaths","inorway","category_travel_guide_books"],"clean_bigrams":[["birth","place"],["place","windsor"],["windsor","bridge"],["bridge","pendleton"],["pendleton","greater"],["greater","manchester"],["manchester","pendleton"],["date","death"],["death","place"],["place","oslo"],["oslo","norway"],["norway","death"],["death","cause"],["timetables","children"],["children","religion"],["religion","society"],["society","ofriends"],["ofriends","george"],["george","bradshaw"],["bradshaw","july"],["july","september"],["english","cartographer"],["cartographer","printer"],["printer","publisher"],["publisher","printer"],["printer","publisher"],["developed","bradshaw"],["widely","sold"],["sold","series"],["combined","railway"],["railway","guides"],["windsor","bridge"],["bridge","pendleton"],["pendleton","greater"],["greater","manchester"],["manchester","pendleton"],["salford","greater"],["greater","manchester"],["manchester","salford"],["salford","lancashire"],["leaving","school"],["named","beale"],["engraving","business"],["belfast","returning"],["printer","principally"],["religious","man"],["exceptionally","wealthy"],["minister","devoted"],["society","ofriends"],["considerable","part"],["philanthropic","work"],["great","deal"],["peace","conferences"],["soup","kitchen"],["causing","thearly"],["thearly","editions"],["avoided","using"],["months","based"],["based","upon"],["upon","list"],["pagan","usage"],["usage","quaker"],["quaker","usage"],["first","month"],["january","second"],["second","month"],["son","days"],["first","day"],["high","quality"],["quality","weekly"],["called","bradshaw"],["manchester","journal"],["journal","described"],["art","science"],["sell","athe"],["first","six"],["six","months"],["renamed","bradshaw"],["literature","science"],["publication","moved"],["william","strange"],["strange","buthe"],["buthe","journal"],["journal","survived"],["george","bradshaw"],["manchester","journal"],["history","review"],["ii","vol"],["july","p"],["touring","norway"],["year","without"],["old","town"],["town","oslo"],["oslo","cathedral"],["gate","near"],["near","oslo"],["oslo","hospital"],["railway","magazine"],["magazine","january"],["january","bradshaw"],["bradshaw","railway"],["railway","guides"],["guides","early"],["early","history"],["history","bradshaw"],["already","known"],["inland","navigation"],["october","soon"],["manchester","company"],["company","published"],["first","compilation"],["railway","timetables"],["cloth","bound"],["bound","book"],["entitled","bradshaw"],["bradshaw","railway"],["railway","time"],["time","tables"],["assistanto","railway"],["railway","travelling"],["sixpence","p"],["bradshaw","railway"],["railway","companion"],["price","raised"],["british","coin"],["coin","one"],["new","volume"],["original","bradshaw"],["bradshaw","publications"],["limited","introduction"],["railway","time"],["time","inovember"],["standard","time"],["time","great"],["great","britain"],["britain","standard"],["standard","time"],["accompanying","map"],["england","wales"],["first","national"],["national","railway"],["december","acting"],["suggestion","made"],["london","agent"],["agent","william"],["william","jones"],["jones","adams"],["adams","bradshaw"],["bradshaw","reduced"],["original","sixpence"],["guides","monthly"],["title","bradshaw"],["monthly","railway"],["railway","guide"],["guide","many"],["many","railway"],["railway","companies"],["railway","shareholder"],["became","synonymous"],["railway","timetable"],["railway","company"],["whether","bradshaw"],["thumb","px"],["york","scarborough"],["whitby","timetable"],["timetable","shows"],["shows","times"],["sundays","distances"],["fares","timetable"],["bradshaw","theight"],["included","maps"],["maps","illustrations"],["main","features"],["historic","buildings"],["issue","number"],["publisher","claimed"],["innocent","mistake"],["mistake","although"],["advertising","revenue"],["revenue","could"],["look","longer"],["longer","established"],["numbering","continued"],["punch","magazine"],["magazine","punch"],["punch","praised"],["praised","bradshaw"],["bradshaw","publications"],["employed","upon"],["greater","utility"],["rail","companies"],["companies","whose"],["whose","tracks"],["whose","largely"],["rapidly","expanding"],["expanding","bradshaw"],["standard","manual"],["travel","well"],["th","century"],["two","shillings"],["shillings","p"],["crown","p"],["money","values"],["difficulto","calculate"],["equivalento","perhaps"],["values","later"],["later","history"],["history","bradshaw"],["timetables","became"],["became","less"],["less","necessary"],["surviving","companies"],["big","four"],["four","british"],["british","railway"],["railway","companies"],["companies","big"],["big","four"],["individual","timetables"],["timetables","produced"],["much","smaller"],["smaller","number"],["big","four"],["four","transferred"],["timetable","production"],["publisher","henry"],["henry","blacklock"],["official","company"],["company","timetables"],["timetables","therefore"],["therefore","became"],["relevant","pages"],["bradshaw","great"],["great","western"],["western","railway"],["railway","retained"],["derogatory","term"],["term","used"],["royal","air"],["air","force"],["navigate","well"],["well","perhaps"],["perhaps","related"],["perceived","lack"],["ability","shown"],["following","track"],["track","rail"],["rail","transport"],["transport","railway"],["railway","lines"],["six","british"],["british","railways"],["railways","regions"],["regions","followed"],["companies","example"],["using","blacklock"],["timetable","books"],["eventually","moved"],["moved","tother"],["tother","publishers"],["change","must"],["reduced","blacklock"],["revenue","substantially"],["substantially","parts"],["guide","began"],["newer","british"],["whole","volume"],["never","completed"],["bradshaw","cost"],["complete","set"],["timetables","could"],["dated","may"],["railway","magazine"],["month","printed"],["charles","e"],["e","lee"],["various","bradshaw"],["produced","references"],["literature","th"],["th","century"],["early","th"],["th","century"],["century","novelists"],["novelists","make"],["make","frequent"],["frequent","references"],["bradshaw","dickens"],["dickens","refers"],["portrait","painter"],["painter","story"],["bradshaw","crime"],["crime","writer"],["new","source"],["footsteps","athe"],["athe","lock"],["one","mention"],["sir","arthur"],["arthur","conan"],["conan","doyle"],["valley","ofear"],["include","another"],["lewis","carroll"],["long","poem"],["makes","note"],["count","dracula"],["dracula","reading"],["english","bradshaw"],["comic","opera"],["opera","cox"],["following","exchange"],["exchange","takes"],["takes","place"],["place","box"],["bradshaw","sir"],["sir","cox"],["f","cox"],["box","reprinted"],["reprinted","athe"],["athe","gilbert"],["sullivan","archive"],["archive","accessed"],["detective","stories"],["stories","extracted"],["continental","bradshaw"],["complicated","alibi"],["alibi","bradshaw"],["also","mentioned"],["rebecca","novel"],["novel","rebecca"],["second","mrs"],["mrs","de"],["de","winter"],["winter","observes"],["reading","bradshaws"],["journeys","across"],["across","country"],["impossible","connections"],["connections","chapter"],["robert","erskine"],["extraordinary","book"],["book","bradshaw"],["bradshaw","turned"],["habit","even"],["least","wanted"],["g","k"],["protagonist","gabriel"],["praises","bradshaw"],["mere","poetry"],["prose","let"],["time","table"],["pride","take"],["man","give"],["two","books"],["period","setting"],["north","sally"],["jerome","k"],["k","jerome"],["novel","diary"],["aside","called"],["faithful","bradshaw"],["contained","thisection"],["thisection","describes"],["author","gets"],["gets","always"],["guides","bradshaw"],["continental","railway"],["railway","guide"],["first","number"],["continental","railway"],["railway","guide"],["issued","giving"],["continental","railways"],["grew","tover"],["tover","pages"],["pages","including"],["including","timetables"],["timetables","guidebook"],["hotel","directory"],["athe","outbreak"],["first","world"],["world","war"],["war","briefly"],["interwar","years"],["final","edition"],["september","bradshaw"],["printed","timetables"],["timetables","today"],["middleton","press"],["press","bradshaw"],["bradshaw","mitchell"],["rail","times"],["times","took"],["took","advantage"],["network","rail"],["party","publishers"],["righto","print"],["print","paper"],["paper","versions"],["national","rail"],["rail","timetable"],["timetable","network"],["network","rail"],["official","hard"],["hard","copies"],["pdf","editions"],["downloaded","without"],["without","charge"],["bradshaw","middleton"],["middleton","press"],["press","named"],["bradshaw","mitchell"],["rail","times"],["competing","edition"],["network","rail"],["rail","artwork"],["size","reproduction"],["network","rail"],["rail","artwork"],["artwork","although"],["middleton","press"],["press","versions"],["page","count"],["third","publisher"],["publisher","uk"],["uk","rail"],["rail","timetables"],["timetables","uk"],["uk","rail"],["rail","timetables"],["timetables","ltd"],["main","timetable"],["indian","railways"],["railways","istill"],["istill","known"],["newman","indian"],["indian","bradshaw"],["bradshaw","great"],["great","british"],["british","railway"],["railway","journeys"],["journeys","great"],["great","continental"],["continental","railway"],["railway","journeys"],["journeys","former"],["former","british"],["british","politician"],["politician","michael"],["guide","thedition"],["descriptive","railway"],["railway","hand"],["hand","book"],["great","britain"],["britain","ireland"],["great","british"],["british","railway"],["railway","journeys"],["bbc","two"],["two","television"],["television","series"],["whiche","travelled"],["travelled","across"],["across","britain"],["britain","visiting"],["visiting","recommended"],["recommended","points"],["interest","noted"],["guide","book"],["possible","staying"],["recommended","hotels"],["first","series"],["early","series"],["new","interest"],["facsimile","copies"],["thedition","became"],["unexpected","best"],["best","seller"],["new","series"],["series","great"],["great","continental"],["continental","railway"],["railway","journeys"],["using","thedition"],["continental","railway"],["railway","guide"],["make","journeys"],["various","european"],["european","countries"],["two","publishers"],["second","series"],["see","also"],["also","bradshaw"],["guide","list"],["list","george"],["george","samuel"],["railway","guides"],["guides","bradshaw"],["victoriaustralia","edward"],["edward","h"],["british","quakers"],["commerce","industry"],["industry","william"],["william","sessions"],["manchester","guardian"],["guardian","sept"],["sept","p"],["p","minutes"],["civil","engineers"],["engineers","xiii"],["dec","p"],["p","jan"],["jan","p"],["p","jan"],["jan","p"],["p","notes"],["london","unless"],["unless","otherwise"],["otherwise","specified"],["specified","fellows"],["fellows","canon"],["canon","r"],["r","bradshaw"],["bradshaw","railway"],["railway","magazine"],["magazine","vol"],["vol","fitzgerald"],["press","p"],["p","ill"],["g","la"],["temps","par"],["par","les"],["de","fer"],["railway","time"],["france","n"],["n","april"],["april","p"],["g","les"],["les","guides"],["guides","bradshaw"],["bradshaw","londres"],["manchester","notes"],["paris","n"],["n","p"],["p","lee"],["lee","charles"],["charles","e"],["bradshaw","railway"],["railway","gazette"],["gazette","p"],["timetable","man"],["book","monthly"],["monthly","review"],["review","vol"],["vol","ii"],["ii","n"],["sept","oct"],["oct","p"],["p","ill"],["ill","extremely"],["extremely","well"],["well","researched"],["researched","contains"],["publications","reach"],["reach","angus"],["angus","b"],["comic","bradshaw"],["h","g"],["extremely","funny"],["funny","period"],["period","piece"],["k","h"],["h","fun"],["bradshaw","railway"],["railway","magazine"],["magazine","vol"],["vol","pp"],["pp","simmons"],["simmons","jack"],["david","st"],["st","john"],["john","thomas"],["thomas","chapter"],["chapter","bradshaw"],["bradshaw","pp"],["authoritative","study"],["history","bradshaw"],["centenary","review"],["famous","guide"],["world","london"],["london","manchester"],["manchester","h"],["h","blacklock"],["blacklock","p"],["p","many"],["many","illustrations"],["illustrations","facsimile"],["official","history"],["history","sponsored"],["unlike","john"],["john","murray"],["much","larger"],["larger","scale"],["scale","hundreds"],["great","britain"],["britain","ireland"],["single","comprehensive"],["comprehensive","site"],["site","introducing"],["introducing","bradshaw"],["company","named"],["currently","available"],["bradshaw","publications"],["publications","category"],["category","births"],["births","category"],["category","deaths"],["deaths","category"],["category","people"],["pendleton","greater"],["greater","manchester"],["manchester","category"],["category","british"],["british","people"],["rail","transport"],["transport","category"],["category","converts"],["category","english"],["english","printers"],["printers","category"],["category","english"],["english","quakers"],["quakers","category"],["category","british"],["british","publishers"],["publishers","people"],["people","category"],["category","deaths"],["deaths","category"],["category","infectious"],["infectious","disease"],["disease","deaths"],["deaths","inorway"],["inorway","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["birth place","place windsor","windsor bridge","bridge pendleton","pendleton greater","greater manchester","manchester pendleton","date death","death place","place oslo","oslo norway","norway death","death cause","timetables children","children religion","religion society","society ofriends","ofriends george","george bradshaw","bradshaw july","july september","english cartographer","cartographer printer","printer publisher","publisher printer","printer publisher","developed bradshaw","widely sold","sold series","combined railway","railway guides","windsor bridge","bridge pendleton","pendleton greater","greater manchester","manchester pendleton","salford greater","greater manchester","manchester salford","salford lancashire","leaving school","named beale","engraving business","belfast returning","printer principally","religious man","exceptionally wealthy","minister devoted","society ofriends","considerable part","philanthropic work","great deal","peace conferences","soup kitchen","causing thearly","thearly editions","avoided using","months based","based upon","upon list","pagan usage","usage quaker","quaker usage","first month","january second","second month","son days","first day","high quality","quality weekly","called bradshaw","manchester journal","journal described","art science","sell athe","first six","six months","renamed bradshaw","literature science","publication moved","william strange","strange buthe","buthe journal","journal survived","george bradshaw","manchester journal","history review","ii vol","july p","touring norway","year without","old town","town oslo","oslo cathedral","gate near","near oslo","oslo hospital","railway magazine","magazine january","january bradshaw","bradshaw railway","railway guides","guides early","early history","history bradshaw","already known","inland navigation","october soon","manchester company","company published","first compilation","railway timetables","cloth bound","bound book","entitled bradshaw","bradshaw railway","railway time","time tables","assistanto railway","railway travelling","sixpence p","bradshaw railway","railway companion","price raised","british coin","coin one","new volume","original bradshaw","bradshaw publications","limited introduction","railway time","time inovember","standard time","time great","great britain","britain standard","standard time","accompanying map","england wales","first national","national railway","december acting","suggestion made","london agent","agent william","william jones","jones adams","adams bradshaw","bradshaw reduced","original sixpence","guides monthly","title bradshaw","monthly railway","railway guide","guide many","many railway","railway companies","railway shareholder","became synonymous","railway timetable","railway company","whether bradshaw","york scarborough","whitby timetable","timetable shows","shows times","sundays distances","fares timetable","bradshaw theight","included maps","maps illustrations","main features","historic buildings","issue number","publisher claimed","innocent mistake","mistake although","advertising revenue","revenue could","look longer","longer established","numbering continued","punch magazine","magazine punch","punch praised","praised bradshaw","bradshaw publications","employed upon","greater utility","rail companies","companies whose","whose tracks","whose largely","rapidly expanding","expanding bradshaw","standard manual","travel well","th century","two shillings","shillings p","crown p","money values","difficulto calculate","equivalento perhaps","values later","later history","history bradshaw","timetables became","became less","less necessary","surviving companies","big four","four british","british railway","railway companies","companies big","big four","individual timetables","timetables produced","much smaller","smaller number","big four","four transferred","timetable production","publisher henry","henry blacklock","official company","company timetables","timetables therefore","therefore became","relevant pages","bradshaw great","great western","western railway","railway retained","derogatory term","term used","royal air","air force","navigate well","well perhaps","perhaps related","perceived lack","ability shown","following track","track rail","rail transport","transport railway","railway lines","six british","british railways","railways regions","regions followed","companies example","using blacklock","timetable books","eventually moved","moved tother","tother publishers","change must","reduced blacklock","revenue substantially","substantially parts","guide began","newer british","whole volume","never completed","bradshaw cost","complete set","timetables could","dated may","railway magazine","month printed","charles e","e lee","various bradshaw","produced references","literature th","th century","early th","th century","century novelists","novelists make","make frequent","frequent references","bradshaw dickens","dickens refers","portrait painter","painter story","bradshaw crime","crime writer","new source","footsteps athe","athe lock","one mention","sir arthur","arthur conan","conan doyle","valley ofear","include another","lewis carroll","long poem","makes note","count dracula","dracula reading","english bradshaw","comic opera","opera cox","following exchange","exchange takes","takes place","place box","bradshaw sir","sir cox","f cox","box reprinted","reprinted athe","athe gilbert","sullivan archive","archive accessed","detective stories","stories extracted","continental bradshaw","complicated alibi","alibi bradshaw","also mentioned","rebecca novel","novel rebecca","second mrs","mrs de","de winter","winter observes","reading bradshaws","journeys across","across country","impossible connections","connections chapter","robert erskine","extraordinary book","book bradshaw","bradshaw turned","habit even","least wanted","g k","protagonist gabriel","praises bradshaw","mere poetry","prose let","time table","pride take","man give","two books","period setting","north sally","jerome k","k jerome","novel diary","aside called","faithful bradshaw","contained thisection","thisection describes","author gets","gets always","guides bradshaw","continental railway","railway guide","first number","continental railway","railway guide","issued giving","continental railways","grew tover","tover pages","pages including","including timetables","timetables guidebook","hotel directory","athe outbreak","first world","world war","war briefly","interwar years","final edition","september bradshaw","printed timetables","timetables today","middleton press","press bradshaw","bradshaw mitchell","rail times","times took","took advantage","network rail","party publishers","righto print","print paper","paper versions","national rail","rail timetable","timetable network","network rail","official hard","hard copies","pdf editions","downloaded without","without charge","bradshaw middleton","middleton press","press named","bradshaw mitchell","rail times","competing edition","network rail","rail artwork","size reproduction","network rail","rail artwork","artwork although","middleton press","press versions","page count","third publisher","publisher uk","uk rail","rail timetables","timetables uk","uk rail","rail timetables","timetables ltd","main timetable","indian railways","railways istill","istill known","newman indian","indian bradshaw","bradshaw great","great british","british railway","railway journeys","journeys great","great continental","continental railway","railway journeys","journeys former","former british","british politician","politician michael","guide thedition","descriptive railway","railway hand","hand book","great britain","britain ireland","great british","british railway","railway journeys","bbc two","two television","television series","whiche travelled","travelled across","across britain","britain visiting","visiting recommended","recommended points","interest noted","guide book","possible staying","recommended hotels","first series","early series","new interest","facsimile copies","thedition became","unexpected best","best seller","new series","series great","great continental","continental railway","railway journeys","using thedition","continental railway","railway guide","make journeys","various european","european countries","two publishers","second series","see also","also bradshaw","guide list","list george","george samuel","railway guides","guides bradshaw","victoriaustralia edward","edward h","british quakers","commerce industry","industry william","william sessions","manchester guardian","guardian sept","sept p","p minutes","civil engineers","engineers xiii","dec p","p jan","jan p","p jan","jan p","p notes","london unless","unless otherwise","otherwise specified","specified fellows","fellows canon","canon r","r bradshaw","bradshaw railway","railway magazine","magazine vol","vol fitzgerald","press p","p ill","g la","temps par","par les","de fer","railway time","france n","n april","april p","g les","les guides","guides bradshaw","bradshaw londres","manchester notes","paris n","n p","p lee","lee charles","charles e","bradshaw railway","railway gazette","gazette p","timetable man","book monthly","monthly review","review vol","vol ii","ii n","sept oct","oct p","p ill","ill extremely","extremely well","well researched","researched contains","publications reach","reach angus","angus b","comic bradshaw","h g","extremely funny","funny period","period piece","k h","h fun","bradshaw railway","railway magazine","magazine vol","vol pp","pp simmons","simmons jack","david st","st john","john thomas","thomas chapter","chapter bradshaw","bradshaw pp","authoritative study","history bradshaw","centenary review","famous guide","world london","london manchester","manchester h","h blacklock","blacklock p","p many","many illustrations","illustrations facsimile","official history","history sponsored","unlike john","john murray","much larger","larger scale","scale hundreds","great britain","britain ireland","single comprehensive","comprehensive site","site introducing","introducing bradshaw","company named","currently available","bradshaw publications","publications category","category births","births category","category deaths","deaths category","category people","pendleton greater","greater manchester","manchester category","category british","british people","rail transport","transport category","category converts","category english","english printers","printers category","category english","english quakers","quakers category","category british","british publishers","publishers people","people category","category deaths","deaths category","category infectious","infectious disease","disease deaths","deaths inorway","inorway category","category travel","travel guide","guide books"],"new_description":"birth place windsor bridge pendleton greater_manchester pendleton date_death_place oslo norway death cause known bradshaw guides timetables children religion society ofriends george_bradshaw july september english cartographer printer publisher printer publisher developed bradshaw guide widely sold series combined railway guides public timetables born windsor bridge pendleton greater_manchester pendleton salford greater_manchester salford lancashire leaving school named beale manchester set engraving business belfast returning manchester set printer principally map religious man parents exceptionally wealthy young enabled take minister devoted joined society ofriends quakers gave considerable part time philanthropic work worked great_deal radical richard peace conferences setting schools soup_kitchen poor manchester belief quaker quoted causing thearly editions bradshaw guides avoided using names months based_upon list roman roman waseen pagan usage quaker usage first month january second month february son days week first_day sunday son founded high_quality weekly george called bradshaw manchester journal described page art science literature sell athe penny week first six months renamed bradshaw journal literature science art place publication moved london title taken william strange buthe journal survived thomas george_bradshaw bradshaw manchester journal history review ii vol july p married may touring norway contracted september year without able return england old town oslo cemetery mile oslo cathedral oslo left gate near oslo hospital railway magazine january bradshaw railway guides early history bradshaw name already known publisher bradshaw maps inland navigation detailed canal lancashire yorkshire october soon introduction railways manchester company published world first compilation railway timetables cloth bound book entitled bradshaw railway time tables assistanto railway travelling cost sixpence p title changed bradshaw railway companion price raised british coin one new volume_issued occasional time time supplement date original bradshaw publications published limited introduction railway time inovember development standard time great_britain standard time accompanying map operation progress england_wales cited world first national railway december acting suggestion made london agent william jones adams bradshaw reduced price original sixpence began issue guides monthly title bradshaw monthly railway guide many railway companies bradshaw timetable able becoming railway shareholder putting case company book familiar became synonymous publisher alike railway timetable bradshaw matter railway company issued whether bradshaw responsible production file thumb px york scarborough whitby timetable shows times weekdays sundays distances miles fares timetable bradshaw theight grown pages pages included maps illustrations main features historic buildings railways april issue number publisher claimed innocent mistake although speculated commercial advertising revenue could generated making look longer established really whatever reason change numbering continued punch magazine punch praised bradshaw publications stated man employed upon work greater utility last order imposed created rail companies whose tracks crossed country whose largely network rapidly expanding bradshaw recorded changes became standard manual travel well th_century bradshaw guide risen price two shillings p half crown p money values difficulto calculate would equivalento perhaps values later history bradshaw timetables became less necessary surviving companies grouped big four british railway companies big four change range number individual timetables produced companies published much_smaller number substantial covered country three big four transferred timetable production bradshaw publisher henry blacklock official company timetables therefore became relevant pages bradshaw great western railway retained format war verb derogatory term_used royal air_force refer pilots could navigate well perhaps related perceived lack ability shown following track rail_transport railway lines railways five six british railways regions followed companies example using blacklock produce timetable books_production eventually moved tother publishers change must reduced blacklock revenue substantially parts bradshaw guide began newer british whole volume never completed bradshaw cost p complete set timetables could bought p conclusion last dated may railway magazine month printed article charles e lee various bradshaw guides produced references literature th_century early_th century novelists make frequent references character bradshaw dickens refers story portrait painter story around world days carries bradshaw crime writer trains new source alibi examples ronald footsteps athe lock novels one mention sir arthur conan doyle valley ofear bradshaw limited include another adventure copper lewis carroll long poem dracula makes note count dracula reading english bradshaw guide part planning voyage england comic opera cox box following exchange takes_place box read month bradshaw sir cox sir wife let f cox box reprinted athe gilbert sullivan archive accessed also reference death clouds christie writer detective stories extracted continental bradshaw work complicated alibi bradshaw also mentioned secret rebecca novel rebecca second mrs de winter observes people vice reading bradshaws plan journeys across country fun linking impossible connections chapter aside sands robert erskine extraordinary book bradshaw turned habit even least wanted men guns rods g k man thursday protagonist gabriel praises bradshaw poet order take books mere poetry prose let read time table pride take byron man give give bradshaw say max fantasy oxford bradshaw listed one two books library bradshaw mentioned period setting shadow north sally jerome k jerome novel diary pilgrimage aside called faithful bradshaw contained thisection describes incident author gets always referring guides bradshaw continental railway guide june first number bradshaw continental railway guide issued giving timetables continental railways grew tover pages including timetables guidebook hotel directory discontinued athe outbreak first_world_war briefly interwar years saw final edition thedition september bradshaw printed timetables today december middleton press bradshaw mitchell rail times took advantage network rail willingness party publishers righto print paper versions national rail_timetable network rail official hard copies favour pdf editions could downloaded without charge tribute bradshaw middleton press named timetables bradshaw mitchell rail times competing edition network rail artwork published online size reproduction network rail artwork although size middleton press versions reduce page count third publisher uk rail_timetables uk rail_timetables ltd main timetable indian railways istill known newman indian bradshaw great british railway journeys great continental railway journeys former british politician michael used copy described bradshaw guide thedition bradshaw descriptive railway hand_book great_britain ireland great british railway journeys bbc two television_series whiche travelled across britain visiting recommended points interest noted bradshaw guide_book possible staying recommended hotels first series broadcast early second early_third early fourth early series broadcast january february success new interest guides facsimile copies thedition became unexpected best seller uk athend new series great continental railway journeys broadcast using thedition bradshaw continental railway guide make journeys various european_countries territories two publishers produce handbook second series broadcast see_also bradshaw guide list george samuel publisher railway guides bradshaw guide victoriaustralia edward h british quakers commerce industry william sessions york manchester guardian sept p minutes proceedings institution civil_engineers xiii dec p jan p jan p notes th viii place publication london unless otherwise specified fellows canon r bradshaw railway magazine vol fitzgerald story bradshaw guide press_p ill g la temps par les de fer railway time france n april p g les guides bradshaw londres manchester notes march paris n p lee charles e centenary bradshaw railway gazette p e bradshaw timetable man book monthly review vol ii n sept oct p ill extremely well researched contains list publications reach angus b comic bradshaw illustrated h g p extremely funny period piece k h fun bradshaw railway magazine vol pp simmons jack train studies david st_john thomas chapter bradshaw pp authoritative study dean railway g history bradshaw centenary review origin growth famous guide world london manchester h blacklock p many illustrations facsimile official history sponsored bradshaw importance advertisements bradshaw source information trades time unlike john_murray handbooks much_larger scale hundreds pages single version thedition bradshaw handbook tourists great_britain ireland single comprehensive site introducing bradshaw company named various currently available bradshaw publications category_births_category deaths_category_people pendleton greater_manchester category_british people rail_transport category converts category_english printers category_english quakers category_british publishers people_category deaths_category infectious disease deaths inorway category_travel_guide_books"},{"title":"Geotourism","description":"image foz de igua u panorama nov jpg righthumb geological sustainable tourism aims to conserve and promote a place as a geosite such as the iguazu falls in south america geotourism deals withe natural and built environment built environmentsnekouie sadry b fundamentals of geotourism with special emphasis on iran third editionsamt organization publishers tehran p english summary available online at geotourism was first defined hose in englandhose t a g s for modern geotourism geoheritage journal there are two viewpoints of geotourism purely geological and geomorphologically focused sustainable tourism as abiotic nature based tourism this the definition followed in most of the world geographically sustainable tourism the most common definition in the usa this emphasises preservation of the geographical sense of a place in general beyond simple geological and geomorphological features as a new charter concept in the sustainable tourism definitions of modern geotourism image karamuru museu xjpg righthumb geopark of paleorrota in brazil key definitions in the geological sense abiotic nature based tourism include part of the tourist s activity in which they have the geological patrimony as their main attraction their objective is to search for the protected patrimony through the conservation of theiresources and of the tourist s environmental awareness for thathe use of the interpretation of the patrimony makes it accessible to the lay public promoting its popularization and the development of thearth sciences ruchkys u de a patrim nio geol gico e geoconserva o no quadril tero ferr fero minas gerais potencial para cria o de um geoparque da unesco tese de doutorado instituto de geoci ncias universidade federal de minas gerais minas gerais brazil geotourism is a knowledge based tourism an interdisciplinary integration of the tourism industry with conservation and interpretation of abiotic nature attributes besides considering related cultural issues within the geosites for the general public a form of natural area tourism that specifically focuses on landscape and geology it promotes tourism to geosites and the conservation of geo diversity and an understanding of earth sciences through appreciation and learning this achieved through independent visits to geological features use of geo trails and view points guided tours geo activities and patronage of geosite visitor centers the provision of interpretative and service facilities for geosites and geomorphosites and their encompassing topography together witheir associated in situ and ex situ artefacts to constituency build for their conservation by generating appreciation learning and research by and for current and future generations geotourism abiotic nature based tourism a new approach geotourism adds to ecotourism s principal focus on plants florand animals fauna by adding a thirdimension of the abiotic environmenthus it is growing around the world through the growth of geoparks as well as independently in many natural and urban areas where tourism s focus in on the geological environment most of the worldefines geotourism as purely the study of geological and geomorphological features looking athenvironment in a simplistic manner we see that it is made up of abiotic and cultural abc attributestarting withe c or cultural component first we note that of three features it is this one which is generally the most known and interpreted that is through information abouthe built or cultural environment either in the past historical accounts or present community customs and culture the b or biotic features ofaunanimals and flora plants haseen a large focus of interpretation and understanding through ecotourism but it is the first attribute of the a or abiotic features including rocks landforms and processes that has received the least attention in tourism and consequently is the least known and understoodthis then is the real power of geotourism in that it puts the tourist spotlight firmly on geology and brings ito the forefront of our understanding through tourism newsome d andowling rk geotourism the tourism of geology and landscape oxford goodfellow publishers what is a geosite a geosite is a location that has a particular geological or geomorphological significance as well as its inherent geological characteristics it may also have cultural or heritage significance national geographical tourism program the geographical character definition of gst geographical sustainable tourism was heavily influenced by the national geographic society which defines gst as tourism that sustains or enhances the geographical character of a place its environment culture aesthetics heritage and the well being of its residents the concept of geographical sustainable tourism with coining of the word geotourism was introduced publicly in the usa in a report by the travel industry association of americas of this organization adapted name to us travel association and national geographic traveler magazine national geographic senior editor jonathan b tourtellot and his wife sally bensusen coined the term in response to requests for a term and concept morencompassing than ecotourism and sustainable tourism so national geographic s geographical sustainable tourism gst program is best practice tourism that sustains or evenhances the geographical character of a place such as its culture social environment natural heritage and the well being of its residents national geographic s geotourism program incorporatesustainability principles but in addition to the do no harm ethic focuses on the place as a whole the idea of enhancement allows for development based on character of place rather than standardized international branding and generic architecture food and sonational geographic gst geographical sustainable tourism charter national geographic society has also drawn up a gst charter based on principles national geographic society geographical sustainable tourism charter integrity of placenhance geographical character by developing and improving it in ways distinctive to the local reflective of its natural and cultural heritage so as to encourage market differentiation and cultural pride international codes adhere to the principles embodied in the world tourism organization s global code of ethics for tourism and the principles of the cultural tourism charter established by the international council on monuments and sites icomos market selectivity encourage growth in tourismarket segments most likely to appreciate respect andisseminate information abouthe distinctive assets of the locale market diversity encourage a full range of appropriate food and lodging facilitieso as to appeal to thentire demographic spectrum of the geotourismarket and so maximizeconomic resiliency over bothe short and long term tourist satisfaction ensure that satisfied excited geotourists bring new vacation stories home and encourage friends to experience the same thing thus providing continuing demand for the destination community involvement base tourism on community resources to thextent possiblencouraging local small businesses and civic groups to build partnerships to promote and provide a distinctive honest visitor experience and marketheir locales effectively help businesses develop approaches tourism that build on the area s nature history and culture including food andrink artisan ry performance arts etcommunity benefit encourage micro to medium sizenterprises and tourism businesstrategies that emphasizeconomic and social benefits to involved communitiespecially poverty alleviation with clear communication of the destination stewardshipolicies required to maintain those benefits protection and enhancement of destination appeal encourage businesses to sustainatural habitats heritage sites aesthetic appeal and local culture prevent degradation by keeping volumes of tourists within maximum acceptable limitseek business models that can operate profitably within those limits use persuasion incentives and legal enforcement as needed land use anticipate development pressures and apply techniques to prevent undesired overdevelopment andegradation contain resort and vacation home sprawl especially on coasts and islandso as to retain a diversity of natural and scenic environments and ensure continued resident access to waterfronts encourage major self contained tourism attractionsuch as large scale theme park s and convention center s unrelated to character of place to be sited ineedier locations with no significant ecological scenic or cultural assets conservation of resources encourage businesses to minimize water pollution solid wastenergy consumption water usage landscaping chemicals and overly bright nighttime lighting advertise these measures in a way thattracts the largenvironmentally sympathetic tourist market planning recognize and respect immediateconomic needs without sacrificing long term character and the geotourism potential of the destination where tourism attracts in migration of workers develop new communities thathemselves constitute a destination enhancement strive to diversify theconomy and limit population influx to sustainablevels adopt public strategies for mitigating practices that are incompatible with geotourism andamaging to the image of the destination interactive interpretation engage both visitors and hosts in learning abouthe placencourage residents to promote the natural and cultural heritage of their communitieso tourists gain a richer experience and residents developride in their locales evaluation establish an evaluation process to be conducted on a regular basis by an independent panel representing all stakeholder interests and publicizevaluation resultsuccess and efforts in service to achievingeographical sustainbale tourism statusuccess models northeast kingdom in vermont crown of the continent in canadand montanand appalachian range were the first us destinations to actively enroll the program with measured success in process lake tahoe s tourism brand presents a daunting challenge to becoming a gst destination sustainable tahoe is the one organization to provide a tangible demonstration of how geographical sustainable tourism can create long term economic regional prosperity that includes feet of lake water clarity sierra nevada college incline village nv north lake tahoe was the first west coast college toffer a geographical sustainable tourism class as part of their interdisciplinary studies geographical sustainable tourism gst as a science missouri state university s bachelor of science in geography features a concentration in geographical tourism the first degree of its kind in the western hemisphere and is one of only three such degrees offered worldwide missouri state s geographically sustainable tourism degree gst bachelor s degree is the firsto be associated with a department of geography see also geopark global geoparks network geosite geopark of paleorrota sustainable tourism externalinks fundamentals of geotourism about geological tourism true geotourism s global growth about geological tourism true geotourism ngg tourism program national geographic society precious geographical sustainable tourism charter mount elephant derrinallum victoriaustralia revisited missouri state university s geographical sustainable tourism program of study geographical sustainable tourism brochure fromissouri state university department of geography geology and planning category types of tourism category geotourism","main_words":["image","de","panorama","nov","jpg_righthumb","geological","sustainable_tourism","aims","conserve","promote","place","geosite","falls","south_america","geotourism","deals","withe","natural","built_environment","built","b","geotourism","special","emphasis","iran","third","organization","publishers","tehran","p","english","summary","available_online","geotourism","first","defined","g","modern","geotourism","journal","two","viewpoints","geotourism","purely","geological","focused","sustainable_tourism","abiotic","nature","based_tourism","definition","followed","world","geographically","sustainable_tourism","common","definition","usa","preservation","geographical","sense","place","general","beyond","simple","geological","geomorphological","features","new","charter","concept","sustainable_tourism","definitions","modern","geotourism","image","righthumb","geopark","brazil","key","definitions","geological","sense","abiotic","nature","based_tourism","include","part","tourist","activity","geological","patrimony","main","attraction","objective","search","protected","patrimony","conservation","tourist","environmental","awareness","thathe","use","interpretation","patrimony","makes","accessible","lay","public","promoting","development","thearth","sciences","de","gico","e","minas","para","de","unesco","de","instituto","de","universidade","federal","de","minas","minas","brazil","geotourism","knowledge","based_tourism","interdisciplinary","integration","tourism_industry","conservation","interpretation","abiotic","nature","attributes","besides","considering","related","cultural","issues","within","general_public","form","natural","area","tourism","specifically","focuses","landscape","geology","promotes","tourism","conservation","geo","diversity","understanding","earth","sciences","appreciation","learning","achieved","independent","visits","geological","features","use","geo","trails","view","points","guided_tours","geo","activities","patronage","geosite","visitor_centers","provision","service","facilities","encompassing","topography","together","witheir","associated","situ","situ","constituency","build","conservation","generating","appreciation","learning","research","current","future","generations","geotourism","abiotic","nature","approach","geotourism","adds","ecotourism","principal","focus","plants","florand","animals","fauna","adding","abiotic","growing","around","world","growth","geoparks","well","independently","many","natural","urban_areas","tourism","focus","geological","environment","geotourism","purely","study","geological","geomorphological","features","looking","manner","see","made","abiotic","cultural","abc","withe","c","cultural","component","first","note","three","features","one","generally","known","interpreted","information_abouthe","built","cultural","environment","either","past","historical","accounts","present","community","customs","culture","b","features","flora","plants","haseen","large","focus","interpretation","understanding","ecotourism","first","abiotic","features","including","rocks","landforms","processes","received","least","attention","tourism","consequently","least","known","real","power","geotourism","puts","tourist","spotlight","geology","brings","ito","forefront","understanding","tourism","geotourism","tourism","geology","landscape","oxford","publishers","geosite","geosite","location","particular","geological","geomorphological","significance","well","inherent","geological","characteristics","may_also","cultural_heritage","significance","tourism","program","geographical","character","definition","gst","geographical_sustainable_tourism","heavily","influenced","national_geographic","society","defines","gst","tourism","sustains","enhances","geographical","character","place","environment","culture","aesthetics","heritage","well","residents","concept","geographical_sustainable_tourism","coining","word","geotourism","introduced","publicly","usa","report","travel_industry_association","americas","organization","adapted","name","us","travel_association","national_geographic","traveler","magazine","national_geographic","senior","editor","jonathan","b","wife","sally","coined","term","response","requests","term","concept","ecotourism","sustainable_tourism","national_geographic","geographical_sustainable_tourism","gst","program","best","practice","tourism","sustains","geographical","character","place","culture","social","environment","natural","heritage","well","residents","national_geographic","geotourism","program","principles","addition","harm","ethic","focuses","place","whole","idea","enhancement","allows","development","based","character","place","rather","standardized","international","branding","generic","architecture","food","geographic","gst","geographical_sustainable_tourism","charter","national_geographic","society","also","drawn","gst","charter","based","principles","national_geographic","society","geographical_sustainable_tourism","charter","integrity","geographical","character","developing","improving","ways","distinctive","local","reflective","natural","cultural_heritage","encourage","market","cultural","pride","international","codes","adhere","principles","world_tourism","organization","global","code","ethics","tourism","principles","cultural_tourism","charter","established","international","council","monuments","sites","market","encourage","growth","tourismarket","segments","likely","appreciate","respect","information_abouthe","distinctive","assets","locale","market","diversity","encourage","full","range","appropriate","food","lodging","appeal","thentire","demographic","spectrum","bothe","short","long_term","tourist","satisfaction","ensure","satisfied","bring","new","vacation","stories","home","encourage","friends","experience","thing","thus","providing","continuing","demand","destination","community","involvement","base","tourism","community","resources","thextent","local","small","businesses","civic","groups","build","partnerships","promote","provide","distinctive","honest","visitor","experience","locales","effectively","help","businesses","develop","approaches","tourism","build","area","nature","history","culture","including","food_andrink","artisan","performance","arts","benefit","encourage","micro","medium","tourism_social","benefits","involved","poverty","clear","communication","destination","required","maintain","benefits","protection","enhancement","destination","appeal","encourage","businesses","habitats","heritage_sites","aesthetic","appeal","local_culture","prevent","degradation","keeping","volumes","tourists","within","maximum","acceptable","business_models","operate","within","limits","use","incentives","legal","enforcement","needed","land","use","development","pressures","apply","techniques","prevent","contain","resort","vacation","home","especially","coasts","retain","diversity","natural","scenic","environments","ensure","continued","resident","access","encourage","major","self","contained","tourism","attractionsuch","large_scale","theme_park","convention_center","unrelated","character","place","locations","significant","ecological","scenic","cultural","assets","conservation","resources","encourage","businesses","minimize","water","pollution","solid","consumption","water","usage","landscaping","chemicals","bright","lighting","advertise","measures","way","thattracts","tourist","market","planning","recognize","respect","needs","without","long_term","character","geotourism","potential","destination","tourism","attracts","migration","workers","develop","new","communities","constitute","destination","enhancement","strive","diversify","theconomy","limit","population","influx","adopt","public","strategies","practices","geotourism","image","destination","interactive","interpretation","engage","visitors","hosts","learning","abouthe","residents","promote","natural","cultural_heritage","tourists","gain","richer","experience","residents","locales","evaluation","establish","evaluation","process","conducted","regular","basis","independent","panel","representing","stakeholder","interests","efforts","service","tourism","models","northeast","kingdom","vermont","crown","continent","canadand","appalachian","range","first","us","destinations","actively","program","measured","success","process","lake","tahoe","tourism","brand","presents","challenge","becoming","gst","destination","sustainable","tahoe","one","organization","provide","demonstration","geographical_sustainable_tourism","create","long_term","economic","regional","prosperity","includes","feet","lake","water","sierra_nevada","college","incline","village","north","lake","tahoe","first","west_coast","college","toffer","geographical_sustainable_tourism","class","part","interdisciplinary","studies","geographical_sustainable_tourism","gst","science","missouri","state_university","bachelor","science","geography","features","concentration","geographical","tourism","first","degree","kind","western","hemisphere","one","three","degrees","offered","worldwide","missouri","state","geographically","sustainable_tourism","degree","gst","bachelor","degree","firsto","associated","department","geography","see_also","geopark","global","geoparks","network","geosite","geopark","sustainable_tourism","externalinks","geotourism","geological","tourism","true","geotourism","global","growth","geological","tourism","true","geotourism","tourism","program","national_geographic","society","precious","geographical_sustainable_tourism","charter","mount","elephant","victoriaustralia","revisited","missouri","state_university","geographical_sustainable_tourism","program","study","geographical_sustainable_tourism","brochure","state_university","department","geography","geology","planning","category_types","tourism_category","geotourism"],"clean_bigrams":[["panorama","nov"],["nov","jpg"],["jpg","righthumb"],["righthumb","geological"],["geological","sustainable"],["sustainable","tourism"],["tourism","aims"],["south","america"],["america","geotourism"],["geotourism","deals"],["deals","withe"],["withe","natural"],["built","environment"],["environment","built"],["special","emphasis"],["iran","third"],["organization","publishers"],["publishers","tehran"],["tehran","p"],["p","english"],["english","summary"],["summary","available"],["available","online"],["first","defined"],["modern","geotourism"],["two","viewpoints"],["geotourism","purely"],["purely","geological"],["focused","sustainable"],["sustainable","tourism"],["abiotic","nature"],["nature","based"],["based","tourism"],["definition","followed"],["world","geographically"],["geographically","sustainable"],["sustainable","tourism"],["common","definition"],["geographical","sense"],["general","beyond"],["beyond","simple"],["simple","geological"],["geomorphological","features"],["new","charter"],["charter","concept"],["sustainable","tourism"],["tourism","definitions"],["modern","geotourism"],["geotourism","image"],["righthumb","geopark"],["brazil","key"],["key","definitions"],["geological","sense"],["sense","abiotic"],["abiotic","nature"],["nature","based"],["based","tourism"],["tourism","include"],["include","part"],["geological","patrimony"],["main","attraction"],["protected","patrimony"],["environmental","awareness"],["thathe","use"],["patrimony","makes"],["lay","public"],["public","promoting"],["thearth","sciences"],["gico","e"],["instituto","de"],["universidade","federal"],["federal","de"],["de","minas"],["brazil","geotourism"],["knowledge","based"],["based","tourism"],["interdisciplinary","integration"],["tourism","industry"],["abiotic","nature"],["nature","attributes"],["attributes","besides"],["besides","considering"],["considering","related"],["related","cultural"],["cultural","issues"],["issues","within"],["general","public"],["natural","area"],["area","tourism"],["specifically","focuses"],["promotes","tourism"],["geo","diversity"],["earth","sciences"],["appreciation","learning"],["independent","visits"],["geological","features"],["features","use"],["geo","trails"],["view","points"],["points","guided"],["guided","tours"],["tours","geo"],["geo","activities"],["geosite","visitor"],["visitor","centers"],["service","facilities"],["encompassing","topography"],["topography","together"],["together","witheir"],["witheir","associated"],["constituency","build"],["generating","appreciation"],["appreciation","learning"],["future","generations"],["generations","geotourism"],["geotourism","abiotic"],["abiotic","nature"],["nature","based"],["based","tourism"],["new","approach"],["approach","geotourism"],["geotourism","adds"],["principal","focus"],["plants","florand"],["florand","animals"],["animals","fauna"],["growing","around"],["many","natural"],["urban","areas"],["geological","environment"],["geotourism","purely"],["geomorphological","features"],["features","looking"],["cultural","abc"],["withe","c"],["cultural","component"],["component","first"],["three","features"],["information","abouthe"],["abouthe","built"],["cultural","environment"],["environment","either"],["past","historical"],["historical","accounts"],["present","community"],["community","customs"],["flora","plants"],["plants","haseen"],["large","focus"],["abiotic","features"],["features","including"],["including","rocks"],["rocks","landforms"],["least","attention"],["least","known"],["real","power"],["tourist","spotlight"],["brings","ito"],["landscape","oxford"],["particular","geological"],["geomorphological","significance"],["inherent","geological"],["geological","characteristics"],["may","also"],["cultural","heritage"],["heritage","significance"],["significance","national"],["national","geographical"],["geographical","tourism"],["tourism","program"],["geographical","character"],["character","definition"],["gst","geographical"],["geographical","sustainable"],["sustainable","tourism"],["heavily","influenced"],["national","geographic"],["geographic","society"],["defines","gst"],["geographical","character"],["environment","culture"],["culture","aesthetics"],["aesthetics","heritage"],["geographical","sustainable"],["sustainable","tourism"],["word","geotourism"],["introduced","publicly"],["travel","industry"],["industry","association"],["organization","adapted"],["adapted","name"],["us","travel"],["travel","association"],["national","geographic"],["geographic","traveler"],["traveler","magazine"],["magazine","national"],["national","geographic"],["geographic","senior"],["senior","editor"],["editor","jonathan"],["jonathan","b"],["wife","sally"],["sustainable","tourism"],["national","geographic"],["geographical","sustainable"],["sustainable","tourism"],["tourism","gst"],["gst","program"],["best","practice"],["practice","tourism"],["geographical","character"],["culture","social"],["social","environment"],["environment","natural"],["natural","heritage"],["residents","national"],["national","geographic"],["geotourism","program"],["harm","ethic"],["ethic","focuses"],["enhancement","allows"],["development","based"],["place","rather"],["standardized","international"],["international","branding"],["generic","architecture"],["architecture","food"],["geographic","gst"],["gst","geographical"],["geographical","sustainable"],["sustainable","tourism"],["tourism","charter"],["charter","national"],["national","geographic"],["geographic","society"],["also","drawn"],["gst","charter"],["charter","based"],["principles","national"],["national","geographic"],["geographic","society"],["society","geographical"],["geographical","sustainable"],["sustainable","tourism"],["tourism","charter"],["charter","integrity"],["geographical","character"],["ways","distinctive"],["local","reflective"],["cultural","heritage"],["encourage","market"],["cultural","pride"],["pride","international"],["international","codes"],["codes","adhere"],["world","tourism"],["tourism","organization"],["global","code"],["cultural","tourism"],["tourism","charter"],["charter","established"],["international","council"],["encourage","growth"],["tourismarket","segments"],["appreciate","respect"],["information","abouthe"],["abouthe","distinctive"],["distinctive","assets"],["locale","market"],["market","diversity"],["diversity","encourage"],["full","range"],["appropriate","food"],["thentire","demographic"],["demographic","spectrum"],["bothe","short"],["long","term"],["term","tourist"],["tourist","satisfaction"],["satisfaction","ensure"],["bring","new"],["new","vacation"],["vacation","stories"],["stories","home"],["encourage","friends"],["thing","thus"],["thus","providing"],["providing","continuing"],["continuing","demand"],["destination","community"],["community","involvement"],["involvement","base"],["base","tourism"],["community","resources"],["local","small"],["small","businesses"],["civic","groups"],["build","partnerships"],["distinctive","honest"],["honest","visitor"],["visitor","experience"],["locales","effectively"],["effectively","help"],["help","businesses"],["businesses","develop"],["develop","approaches"],["approaches","tourism"],["nature","history"],["culture","including"],["including","food"],["food","andrink"],["andrink","artisan"],["performance","arts"],["benefit","encourage"],["encourage","micro"],["social","benefits"],["clear","communication"],["benefits","protection"],["destination","appeal"],["appeal","encourage"],["encourage","businesses"],["habitats","heritage"],["heritage","sites"],["sites","aesthetic"],["aesthetic","appeal"],["local","culture"],["culture","prevent"],["prevent","degradation"],["keeping","volumes"],["tourists","within"],["within","maximum"],["maximum","acceptable"],["business","models"],["limits","use"],["legal","enforcement"],["needed","land"],["land","use"],["development","pressures"],["apply","techniques"],["contain","resort"],["vacation","home"],["scenic","environments"],["ensure","continued"],["continued","resident"],["resident","access"],["encourage","major"],["major","self"],["self","contained"],["contained","tourism"],["tourism","attractionsuch"],["large","scale"],["scale","theme"],["theme","park"],["convention","center"],["significant","ecological"],["ecological","scenic"],["cultural","assets"],["assets","conservation"],["resources","encourage"],["encourage","businesses"],["minimize","water"],["water","pollution"],["pollution","solid"],["consumption","water"],["water","usage"],["usage","landscaping"],["landscaping","chemicals"],["lighting","advertise"],["way","thattracts"],["tourist","market"],["market","planning"],["planning","recognize"],["needs","without"],["long","term"],["term","character"],["geotourism","potential"],["tourism","attracts"],["workers","develop"],["develop","new"],["new","communities"],["destination","enhancement"],["enhancement","strive"],["diversify","theconomy"],["limit","population"],["population","influx"],["adopt","public"],["public","strategies"],["geotourism","image"],["destination","interactive"],["interactive","interpretation"],["interpretation","engage"],["learning","abouthe"],["cultural","heritage"],["tourists","gain"],["richer","experience"],["locales","evaluation"],["evaluation","establish"],["evaluation","process"],["regular","basis"],["independent","panel"],["panel","representing"],["stakeholder","interests"],["models","northeast"],["northeast","kingdom"],["vermont","crown"],["appalachian","range"],["first","us"],["us","destinations"],["measured","success"],["process","lake"],["lake","tahoe"],["tourism","brand"],["brand","presents"],["gst","destination"],["destination","sustainable"],["sustainable","tahoe"],["one","organization"],["geographical","sustainable"],["sustainable","tourism"],["create","long"],["long","term"],["term","economic"],["economic","regional"],["regional","prosperity"],["includes","feet"],["lake","water"],["sierra","nevada"],["nevada","college"],["college","incline"],["incline","village"],["north","lake"],["lake","tahoe"],["first","west"],["west","coast"],["coast","college"],["college","toffer"],["geographical","sustainable"],["sustainable","tourism"],["tourism","class"],["interdisciplinary","studies"],["studies","geographical"],["geographical","sustainable"],["sustainable","tourism"],["tourism","gst"],["science","missouri"],["missouri","state"],["state","university"],["geography","features"],["geographical","tourism"],["first","degree"],["western","hemisphere"],["degrees","offered"],["offered","worldwide"],["worldwide","missouri"],["missouri","state"],["geographically","sustainable"],["sustainable","tourism"],["tourism","degree"],["degree","gst"],["gst","bachelor"],["geography","see"],["see","also"],["also","geopark"],["geopark","global"],["global","geoparks"],["geoparks","network"],["network","geosite"],["geosite","geopark"],["sustainable","tourism"],["tourism","externalinks"],["geological","tourism"],["tourism","true"],["true","geotourism"],["global","growth"],["geological","tourism"],["tourism","true"],["true","geotourism"],["tourism","program"],["program","national"],["national","geographic"],["geographic","society"],["society","precious"],["precious","geographical"],["geographical","sustainable"],["sustainable","tourism"],["tourism","charter"],["charter","mount"],["mount","elephant"],["victoriaustralia","revisited"],["revisited","missouri"],["missouri","state"],["state","university"],["geographical","sustainable"],["sustainable","tourism"],["tourism","program"],["study","geographical"],["geographical","sustainable"],["sustainable","tourism"],["tourism","brochure"],["state","university"],["university","department"],["geography","geology"],["planning","category"],["category","types"],["tourism","category"],["category","geotourism"]],"all_collocations":["panorama nov","nov jpg","jpg righthumb","righthumb geological","geological sustainable","sustainable tourism","tourism aims","south america","america geotourism","geotourism deals","deals withe","withe natural","built environment","environment built","special emphasis","iran third","organization publishers","publishers tehran","tehran p","p english","english summary","summary available","available online","first defined","modern geotourism","two viewpoints","geotourism purely","purely geological","focused sustainable","sustainable tourism","abiotic nature","nature based","based tourism","definition followed","world geographically","geographically sustainable","sustainable tourism","common definition","geographical sense","general beyond","beyond simple","simple geological","geomorphological features","new charter","charter concept","sustainable tourism","tourism definitions","modern geotourism","geotourism image","righthumb geopark","brazil key","key definitions","geological sense","sense abiotic","abiotic nature","nature based","based tourism","tourism include","include part","geological patrimony","main attraction","protected patrimony","environmental awareness","thathe use","patrimony makes","lay public","public promoting","thearth sciences","gico e","instituto de","universidade federal","federal de","de minas","brazil geotourism","knowledge based","based tourism","interdisciplinary integration","tourism industry","abiotic nature","nature attributes","attributes besides","besides considering","considering related","related cultural","cultural issues","issues within","general public","natural area","area tourism","specifically focuses","promotes tourism","geo diversity","earth sciences","appreciation learning","independent visits","geological features","features use","geo trails","view points","points guided","guided tours","tours geo","geo activities","geosite visitor","visitor centers","service facilities","encompassing topography","topography together","together witheir","witheir associated","constituency build","generating appreciation","appreciation learning","future generations","generations geotourism","geotourism abiotic","abiotic nature","nature based","based tourism","new approach","approach geotourism","geotourism adds","principal focus","plants florand","florand animals","animals fauna","growing around","many natural","urban areas","geological environment","geotourism purely","geomorphological features","features looking","cultural abc","withe c","cultural component","component first","three features","information abouthe","abouthe built","cultural environment","environment either","past historical","historical accounts","present community","community customs","flora plants","plants haseen","large focus","abiotic features","features including","including rocks","rocks landforms","least attention","least known","real power","tourist spotlight","brings ito","landscape oxford","particular geological","geomorphological significance","inherent geological","geological characteristics","may also","cultural heritage","heritage significance","significance national","national geographical","geographical tourism","tourism program","geographical character","character definition","gst geographical","geographical sustainable","sustainable tourism","heavily influenced","national geographic","geographic society","defines gst","geographical character","environment culture","culture aesthetics","aesthetics heritage","geographical sustainable","sustainable tourism","word geotourism","introduced publicly","travel industry","industry association","organization adapted","adapted name","us travel","travel association","national geographic","geographic traveler","traveler magazine","magazine national","national geographic","geographic senior","senior editor","editor jonathan","jonathan b","wife sally","sustainable tourism","national geographic","geographical sustainable","sustainable tourism","tourism gst","gst program","best practice","practice tourism","geographical character","culture social","social environment","environment natural","natural heritage","residents national","national geographic","geotourism program","harm ethic","ethic focuses","enhancement allows","development based","place rather","standardized international","international branding","generic architecture","architecture food","geographic gst","gst geographical","geographical sustainable","sustainable tourism","tourism charter","charter national","national geographic","geographic society","also drawn","gst charter","charter based","principles national","national geographic","geographic society","society geographical","geographical sustainable","sustainable tourism","tourism charter","charter integrity","geographical character","ways distinctive","local reflective","cultural heritage","encourage market","cultural pride","pride international","international codes","codes adhere","world tourism","tourism organization","global code","cultural tourism","tourism charter","charter established","international council","encourage growth","tourismarket segments","appreciate respect","information abouthe","abouthe distinctive","distinctive assets","locale market","market diversity","diversity encourage","full range","appropriate food","thentire demographic","demographic spectrum","bothe short","long term","term tourist","tourist satisfaction","satisfaction ensure","bring new","new vacation","vacation stories","stories home","encourage friends","thing thus","thus providing","providing continuing","continuing demand","destination community","community involvement","involvement base","base tourism","community resources","local small","small businesses","civic groups","build partnerships","distinctive honest","honest visitor","visitor experience","locales effectively","effectively help","help businesses","businesses develop","develop approaches","approaches tourism","nature history","culture including","including food","food andrink","andrink artisan","performance arts","benefit encourage","encourage micro","social benefits","clear communication","benefits protection","destination appeal","appeal encourage","encourage businesses","habitats heritage","heritage sites","sites aesthetic","aesthetic appeal","local culture","culture prevent","prevent degradation","keeping volumes","tourists within","within maximum","maximum acceptable","business models","limits use","legal enforcement","needed land","land use","development pressures","apply techniques","contain resort","vacation home","scenic environments","ensure continued","continued resident","resident access","encourage major","major self","self contained","contained tourism","tourism attractionsuch","large scale","scale theme","theme park","convention center","significant ecological","ecological scenic","cultural assets","assets conservation","resources encourage","encourage businesses","minimize water","water pollution","pollution solid","consumption water","water usage","usage landscaping","landscaping chemicals","lighting advertise","way thattracts","tourist market","market planning","planning recognize","needs without","long term","term character","geotourism potential","tourism attracts","workers develop","develop new","new communities","destination enhancement","enhancement strive","diversify theconomy","limit population","population influx","adopt public","public strategies","geotourism image","destination interactive","interactive interpretation","interpretation engage","learning abouthe","cultural heritage","tourists gain","richer experience","locales evaluation","evaluation establish","evaluation process","regular basis","independent panel","panel representing","stakeholder interests","models northeast","northeast kingdom","vermont crown","appalachian range","first us","us destinations","measured success","process lake","lake tahoe","tourism brand","brand presents","gst destination","destination sustainable","sustainable tahoe","one organization","geographical sustainable","sustainable tourism","create long","long term","term economic","economic regional","regional prosperity","includes feet","lake water","sierra nevada","nevada college","college incline","incline village","north lake","lake tahoe","first west","west coast","coast college","college toffer","geographical sustainable","sustainable tourism","tourism class","interdisciplinary studies","studies geographical","geographical sustainable","sustainable tourism","tourism gst","science missouri","missouri state","state university","geography features","geographical tourism","first degree","western hemisphere","degrees offered","offered worldwide","worldwide missouri","missouri state","geographically sustainable","sustainable tourism","tourism degree","degree gst","gst bachelor","geography see","see also","also geopark","geopark global","global geoparks","geoparks network","network geosite","geosite geopark","sustainable tourism","tourism externalinks","geological tourism","tourism true","true geotourism","global growth","geological tourism","tourism true","true geotourism","tourism program","program national","national geographic","geographic society","society precious","precious geographical","geographical sustainable","sustainable tourism","tourism charter","charter mount","mount elephant","victoriaustralia revisited","revisited missouri","missouri state","state university","geographical sustainable","sustainable tourism","tourism program","study geographical","geographical sustainable","sustainable tourism","tourism brochure","state university","university department","geography geology","planning category","category types","tourism category","category geotourism"],"new_description":"image de panorama nov jpg_righthumb geological sustainable_tourism aims conserve promote place geosite falls south_america geotourism deals withe natural built_environment built b geotourism special emphasis iran third organization publishers tehran p english summary available_online geotourism first defined g modern geotourism journal two viewpoints geotourism purely geological focused sustainable_tourism abiotic nature based_tourism definition followed world geographically sustainable_tourism common definition usa preservation geographical sense place general beyond simple geological geomorphological features new charter concept sustainable_tourism definitions modern geotourism image righthumb geopark brazil key definitions geological sense abiotic nature based_tourism include part tourist activity geological patrimony main attraction objective search protected patrimony conservation tourist environmental awareness thathe use interpretation patrimony makes accessible lay public promoting development thearth sciences de gico e minas para de unesco de instituto de universidade federal de minas minas brazil geotourism knowledge based_tourism interdisciplinary integration tourism_industry conservation interpretation abiotic nature attributes besides considering related cultural issues within general_public form natural area tourism specifically focuses landscape geology promotes tourism conservation geo diversity understanding earth sciences appreciation learning achieved independent visits geological features use geo trails view points guided_tours geo activities patronage geosite visitor_centers provision service facilities encompassing topography together witheir associated situ situ constituency build conservation generating appreciation learning research current future generations geotourism abiotic nature based_tourism_new approach geotourism adds ecotourism principal focus plants florand animals fauna adding abiotic growing around world growth geoparks well independently many natural urban_areas tourism focus geological environment geotourism purely study geological geomorphological features looking manner see made abiotic cultural abc withe c cultural component first note three features one generally known interpreted information_abouthe built cultural environment either past historical accounts present community customs culture b features flora plants haseen large focus interpretation understanding ecotourism first abiotic features including rocks landforms processes received least attention tourism consequently least known real power geotourism puts tourist spotlight geology brings ito forefront understanding tourism geotourism tourism geology landscape oxford publishers geosite geosite location particular geological geomorphological significance well inherent geological characteristics may_also cultural_heritage significance national_geographical tourism program geographical character definition gst geographical_sustainable_tourism heavily influenced national_geographic society defines gst tourism sustains enhances geographical character place environment culture aesthetics heritage well residents concept geographical_sustainable_tourism coining word geotourism introduced publicly usa report travel_industry_association americas organization adapted name us travel_association national_geographic traveler magazine national_geographic senior editor jonathan b wife sally coined term response requests term concept ecotourism sustainable_tourism national_geographic geographical_sustainable_tourism gst program best practice tourism sustains geographical character place culture social environment natural heritage well residents national_geographic geotourism program principles addition harm ethic focuses place whole idea enhancement allows development based character place rather standardized international branding generic architecture food geographic gst geographical_sustainable_tourism charter national_geographic society also drawn gst charter based principles national_geographic society geographical_sustainable_tourism charter integrity geographical character developing improving ways distinctive local reflective natural cultural_heritage encourage market cultural pride international codes adhere principles world_tourism organization global code ethics tourism principles cultural_tourism charter established international council monuments sites market encourage growth tourismarket segments likely appreciate respect information_abouthe distinctive assets locale market diversity encourage full range appropriate food lodging appeal thentire demographic spectrum bothe short long_term tourist satisfaction ensure satisfied bring new vacation stories home encourage friends experience thing thus providing continuing demand destination community involvement base tourism community resources thextent local small businesses civic groups build partnerships promote provide distinctive honest visitor experience locales effectively help businesses develop approaches tourism build area nature history culture including food_andrink artisan performance arts benefit encourage micro medium tourism_social benefits involved poverty clear communication destination required maintain benefits protection enhancement destination appeal encourage businesses habitats heritage_sites aesthetic appeal local_culture prevent degradation keeping volumes tourists within maximum acceptable business_models operate within limits use incentives legal enforcement needed land use development pressures apply techniques prevent contain resort vacation home especially coasts retain diversity natural scenic environments ensure continued resident access encourage major self contained tourism attractionsuch large_scale theme_park convention_center unrelated character place locations significant ecological scenic cultural assets conservation resources encourage businesses minimize water pollution solid consumption water usage landscaping chemicals bright lighting advertise measures way thattracts tourist market planning recognize respect needs without long_term character geotourism potential destination tourism attracts migration workers develop new communities constitute destination enhancement strive diversify theconomy limit population influx adopt public strategies practices geotourism image destination interactive interpretation engage visitors hosts learning abouthe residents promote natural cultural_heritage tourists gain richer experience residents locales evaluation establish evaluation process conducted regular basis independent panel representing stakeholder interests efforts service tourism models northeast kingdom vermont crown continent canadand appalachian range first us destinations actively program measured success process lake tahoe tourism brand presents challenge becoming gst destination sustainable tahoe one organization provide demonstration geographical_sustainable_tourism create long_term economic regional prosperity includes feet lake water sierra_nevada college incline village north lake tahoe first west_coast college toffer geographical_sustainable_tourism class part interdisciplinary studies geographical_sustainable_tourism gst science missouri state_university bachelor science geography features concentration geographical tourism first degree kind western hemisphere one three degrees offered worldwide missouri state geographically sustainable_tourism degree gst bachelor degree firsto associated department geography see_also geopark global geoparks network geosite geopark sustainable_tourism externalinks geotourism geological tourism true geotourism global growth geological tourism true geotourism tourism program national_geographic society precious geographical_sustainable_tourism charter mount elephant victoriaustralia revisited missouri state_university geographical_sustainable_tourism program study geographical_sustainable_tourism brochure state_university department geography geology planning category_types tourism_category geotourism"},{"title":"German National Tourist Board","description":"the germanational tourist board abbreviation gntb dzt is a national marketing organisation and has worked withe german federal government federal government of germany to promote tourism in and to germany it represents germany throughouthe world as a destination for holidays business travel and visits to friends and family the gntb is an eingetragener verein which was founded in thead office isituated in frankfurt amain germany the marketing organisation is mainly financed by the germanational ministry of economy technology since the germanational tourist board has also been responsible for the marketing of domestic tourism from one region to another itstrategic goal is the responsible marketing of interegional vacation themes in germany the gntb works in close cooperation and economic partnership with allevels of the tourism industry in germany offices agencies marketing isplit into six regional management areas north west europe south west europe north east europe south east europe america israel asiaustralia each with its own foreign representative offices and sales and marketing agencies countries withoutheir own representation are covered by the appropriate regional managementeam the gntb is present around the world with foreign representative offices and sales agencies apart from the gntb s own representative offices the sales network abroad also encompasses marketing agencies with partnersuch as deutsche lufthansag and the federation of german chambers of industry and commerce dihk marketing themes rigorous analysis and assessment of the markets form the basis of the gntb sales and marketing activities in line withe international culture and health mega trends the gntb developed its two major product lines city tours events and hearth fitness holidays which it uses to derive key campaigns long term product segments and basic information and to devise themes for its international marketing activities annual theme for palaces parks and gardens romanticism in germany annual theme for active lifestyle holidays walking and cycling in germany annual theme for european capital of culture the ruhregion towns and cities of culture in germany annual theme for health fitness holidays in germany annual theme for germany open for business externalinks website for englishspeakingermany travelers from all over the world website for germany travelers from the uk website for germany travelers form ireland website for germany travelers from the usa canada picture database of the gntb category non profit organisations based in germany category organizations established in category tourism in germany category tourism agencies deutsche zentrale f r tourismus","main_words":["germanational","tourist_board","abbreviation","gntb","national","marketing","organisation","worked","withe","german","federal_government","federal_government","germany","promote_tourism","germany","represents","germany","throughouthe_world","destination","holidays","business_travel","visits","friends","family","gntb","founded","thead","office","isituated","frankfurt_amain","germany","marketing","organisation","mainly","financed","germanational","ministry","economy","technology","since","germanational","tourist_board","also","responsible","marketing","domestic","tourism","one","region","another","goal","responsible","marketing","vacation","themes","germany","gntb","works","close","cooperation","economic","partnership","allevels","tourism_industry","germany","offices","agencies","marketing","six","regional","management","areas","north_west","europe","south_west","europe","north_east","europe","south_east","europe","america","israel","foreign","representative","offices","sales","marketing","agencies","countries","representation","covered","appropriate","regional","managementeam","gntb","present","around","world","foreign","representative","offices","sales","agencies","apart","gntb","representative","offices","sales","network","abroad","also","encompasses","marketing","agencies","deutsche","federation","german","chambers","industry","commerce","marketing","themes","rigorous","analysis","assessment","markets","form","basis","gntb","sales","marketing","activities","line","withe","international","culture","health","trends","gntb","developed","two_major","product","lines","city","tours","events","fitness","holidays","uses","derive","key","campaigns","long_term","product","segments","basic","information","themes","international","marketing","activities","annual","theme_parks","gardens","romanticism","germany","annual","theme","active","lifestyle","holidays","walking","cycling","germany","annual","theme","european","capital","culture","towns","cities","culture","germany","annual","theme","health","fitness","holidays","germany","annual","theme","germany","open","business","externalinks","world","website","germany","travelers","uk","website","germany","travelers","form","ireland","website","germany","travelers","usa","canada","picture","database","gntb","category_non_profit","organisations_based","germany_category","organizations_established","category_tourism","germany_category","tourism_agencies","deutsche","f","r","tourismus"],"clean_bigrams":[["germanational","tourist"],["tourist","board"],["board","abbreviation"],["abbreviation","gntb"],["national","marketing"],["marketing","organisation"],["worked","withe"],["withe","german"],["german","federal"],["federal","government"],["government","federal"],["federal","government"],["promote","tourism"],["represents","germany"],["germany","throughouthe"],["throughouthe","world"],["holidays","business"],["business","travel"],["thead","office"],["office","isituated"],["frankfurt","amain"],["amain","germany"],["marketing","organisation"],["mainly","financed"],["germanational","ministry"],["economy","technology"],["technology","since"],["germanational","tourist"],["tourist","board"],["responsible","marketing"],["domestic","tourism"],["one","region"],["responsible","marketing"],["vacation","themes"],["gntb","works"],["close","cooperation"],["economic","partnership"],["tourism","industry"],["germany","offices"],["offices","agencies"],["agencies","marketing"],["six","regional"],["regional","management"],["management","areas"],["areas","north"],["north","west"],["west","europe"],["europe","south"],["south","west"],["west","europe"],["europe","north"],["north","east"],["east","europe"],["europe","south"],["south","east"],["east","europe"],["europe","america"],["america","israel"],["foreign","representative"],["representative","offices"],["marketing","agencies"],["agencies","countries"],["appropriate","regional"],["regional","managementeam"],["present","around"],["foreign","representative"],["representative","offices"],["sales","agencies"],["agencies","apart"],["representative","offices"],["sales","network"],["network","abroad"],["abroad","also"],["also","encompasses"],["encompasses","marketing"],["marketing","agencies"],["agencies","deutsche"],["german","chambers"],["marketing","themes"],["themes","rigorous"],["rigorous","analysis"],["markets","form"],["gntb","sales"],["marketing","activities"],["line","withe"],["withe","international"],["international","culture"],["gntb","developed"],["two","major"],["major","product"],["product","lines"],["lines","city"],["city","tours"],["tours","events"],["fitness","holidays"],["derive","key"],["key","campaigns"],["campaigns","long"],["long","term"],["term","product"],["product","segments"],["basic","information"],["international","marketing"],["marketing","activities"],["activities","annual"],["annual","theme"],["gardens","romanticism"],["germany","annual"],["annual","theme"],["active","lifestyle"],["lifestyle","holidays"],["holidays","walking"],["germany","annual"],["annual","theme"],["european","capital"],["germany","annual"],["annual","theme"],["health","fitness"],["fitness","holidays"],["germany","annual"],["annual","theme"],["germany","open"],["business","externalinks"],["externalinks","website"],["world","website"],["germany","travelers"],["uk","website"],["germany","travelers"],["travelers","form"],["form","ireland"],["ireland","website"],["germany","travelers"],["usa","canada"],["canada","picture"],["picture","database"],["gntb","category"],["category","non"],["non","profit"],["profit","organisations"],["organisations","based"],["germany","category"],["category","organizations"],["organizations","established"],["category","tourism"],["germany","category"],["category","tourism"],["tourism","agencies"],["agencies","deutsche"],["f","r"],["r","tourismus"]],"all_collocations":["germanational tourist","tourist board","board abbreviation","abbreviation gntb","national marketing","marketing organisation","worked withe","withe german","german federal","federal government","government federal","federal government","promote tourism","represents germany","germany throughouthe","throughouthe world","holidays business","business travel","thead office","office isituated","frankfurt amain","amain germany","marketing organisation","mainly financed","germanational ministry","economy technology","technology since","germanational tourist","tourist board","responsible marketing","domestic tourism","one region","responsible marketing","vacation themes","gntb works","close cooperation","economic partnership","tourism industry","germany offices","offices agencies","agencies marketing","six regional","regional management","management areas","areas north","north west","west europe","europe south","south west","west europe","europe north","north east","east europe","europe south","south east","east europe","europe america","america israel","foreign representative","representative offices","marketing agencies","agencies countries","appropriate regional","regional managementeam","present around","foreign representative","representative offices","sales agencies","agencies apart","representative offices","sales network","network abroad","abroad also","also encompasses","encompasses marketing","marketing agencies","agencies deutsche","german chambers","marketing themes","themes rigorous","rigorous analysis","markets form","gntb sales","marketing activities","line withe","withe international","international culture","gntb developed","two major","major product","product lines","lines city","city tours","tours events","fitness holidays","derive key","key campaigns","campaigns long","long term","term product","product segments","basic information","international marketing","marketing activities","activities annual","annual theme","gardens romanticism","germany annual","annual theme","active lifestyle","lifestyle holidays","holidays walking","germany annual","annual theme","european capital","germany annual","annual theme","health fitness","fitness holidays","germany annual","annual theme","germany open","business externalinks","externalinks website","world website","germany travelers","uk website","germany travelers","travelers form","form ireland","ireland website","germany travelers","usa canada","canada picture","picture database","gntb category","category non","non profit","profit organisations","organisations based","germany category","category organizations","organizations established","category tourism","germany category","category tourism","tourism agencies","agencies deutsche","f r","r tourismus"],"new_description":"germanational tourist_board abbreviation gntb national marketing organisation worked withe german federal_government federal_government germany promote_tourism germany represents germany throughouthe_world destination holidays business_travel visits friends family gntb founded thead office isituated frankfurt_amain germany marketing organisation mainly financed germanational ministry economy technology since germanational tourist_board also responsible marketing domestic tourism one region another goal responsible marketing vacation themes germany gntb works close cooperation economic partnership allevels tourism_industry germany offices agencies marketing six regional management areas north_west europe south_west europe north_east europe south_east europe america israel foreign representative offices sales marketing agencies countries representation covered appropriate regional managementeam gntb present around world foreign representative offices sales agencies apart gntb representative offices sales network abroad also encompasses marketing agencies deutsche federation german chambers industry commerce marketing themes rigorous analysis assessment markets form basis gntb sales marketing activities line withe international culture health trends gntb developed two_major product lines city tours events fitness holidays uses derive key campaigns long_term product segments basic information themes international marketing activities annual theme_parks gardens romanticism germany annual theme active lifestyle holidays walking cycling germany annual theme european capital culture towns cities culture germany annual theme health fitness holidays germany annual theme germany open business externalinks website_travelers world website germany travelers uk website germany travelers form ireland website germany travelers usa canada picture database gntb category_non_profit organisations_based germany_category organizations_established category_tourism germany_category tourism_agencies deutsche f r tourismus"},{"title":"German Youth Hostel Association","description":"dissolved footnotes file richard schirrmannjpg thumb statue of richard schirrmann pioneer of the djh in altena file bundesarchiv bild berlin lustgarten aufmarsch der hjjpg thumb hitler youth in berlin s lustgarten on augusthe german youthostel association legal notice with english name of the association the official website accessed on jun or djh is a not for profit registered association eingetragener verein through the state bundesland associations it is the representative of the youthostel s in germany as at and thus the largest member of the international youth association hostelling international hi theadquarters has itseat in detmold and is divided into state associations and local and county volunteer associations it has more than million members association structure of the djh membership of the german youthostel association is a prerequisite for an overnight stay in a hostel in germany abroadjh members can stay in hostels that are associated withostelling international and may bentitled to discounts there djh membership is obtained through the state association responsible for each residence in addition organizationsuch as clubs or schools may apply for corporate membership the djh was merged into the hitler youth in until thend of the second world war in it was re founded at altena castle inorth rhine westphalia the german youthostel association is a member of theuropean movement germany references literature j rgen reulecke barbara stambolis jahre jugendherbergen anf nge wandlungen r ck und ausblicke klartext verlag essen externalinks english website of the djh category backpacking categoryouthostelling categoryouth organizations established in category organisations based inorth rhine westphalia category charities based in germany category detmold","main_words":["dissolved","footnotes","file","richard","thumb","statue","richard_schirrmann","pioneer","djh","altena","file","bild","berlin","der","thumb","hitler","youth","berlin","augusthe","german","youthostel_association","legal","notice","english","name","association","official_website","accessed","jun","djh","profit","registered","association","state","associations","representative","youthostel","germany","thus","largest","member","international","youth","association","hostelling_international","theadquarters","divided","state","associations","local","county","volunteer","associations","million_members","association","structure","djh","membership","german","youthostel_association","overnight","stay","hostel","germany","members","stay","hostels","associated","international","may","discounts","djh","membership","obtained","state","association","responsible","residence","addition","organizationsuch","clubs","schools","may","apply","corporate","membership","djh","merged","hitler","youth","thend","second_world_war","founded","altena","castle","inorth","rhine","westphalia","german","youthostel_association","member","theuropean","movement","germany","references","literature","j","rgen","barbara","r","und","verlag","externalinks","english","website","djh","organizations_established","category_organisations_based","inorth","rhine","westphalia","category","charities","based","germany_category"],"clean_bigrams":[["dissolved","footnotes"],["footnotes","file"],["file","richard"],["thumb","statue"],["richard","schirrmann"],["schirrmann","pioneer"],["altena","file"],["bild","berlin"],["thumb","hitler"],["hitler","youth"],["augusthe","german"],["german","youthostel"],["youthostel","association"],["association","legal"],["legal","notice"],["english","name"],["official","website"],["website","accessed"],["profit","registered"],["registered","association"],["state","associations"],["largest","member"],["international","youth"],["youth","association"],["association","hostelling"],["hostelling","international"],["state","associations"],["county","volunteer"],["volunteer","associations"],["million","members"],["members","association"],["association","structure"],["djh","membership"],["german","youthostel"],["youthostel","association"],["overnight","stay"],["djh","membership"],["state","association"],["association","responsible"],["addition","organizationsuch"],["schools","may"],["may","apply"],["corporate","membership"],["hitler","youth"],["second","world"],["world","war"],["altena","castle"],["castle","inorth"],["inorth","rhine"],["rhine","westphalia"],["german","youthostel"],["youthostel","association"],["theuropean","movement"],["movement","germany"],["germany","references"],["references","literature"],["literature","j"],["j","rgen"],["externalinks","english"],["english","website"],["djh","category"],["category","backpacking"],["backpacking","categoryouthostelling"],["categoryouthostelling","categoryouth"],["categoryouth","organizations"],["organizations","established"],["category","organisations"],["organisations","based"],["based","inorth"],["inorth","rhine"],["rhine","westphalia"],["westphalia","category"],["category","charities"],["charities","based"],["germany","category"]],"all_collocations":["dissolved footnotes","footnotes file","file richard","thumb statue","richard schirrmann","schirrmann pioneer","altena file","bild berlin","thumb hitler","hitler youth","augusthe german","german youthostel","youthostel association","association legal","legal notice","english name","official website","website accessed","profit registered","registered association","state associations","largest member","international youth","youth association","association hostelling","hostelling international","state associations","county volunteer","volunteer associations","million members","members association","association structure","djh membership","german youthostel","youthostel association","overnight stay","djh membership","state association","association responsible","addition organizationsuch","schools may","may apply","corporate membership","hitler youth","second world","world war","altena castle","castle inorth","inorth rhine","rhine westphalia","german youthostel","youthostel association","theuropean movement","movement germany","germany references","references literature","literature j","j rgen","externalinks english","english website","djh category","category backpacking","backpacking categoryouthostelling","categoryouthostelling categoryouth","categoryouth organizations","organizations established","category organisations","organisations based","based inorth","inorth rhine","rhine westphalia","westphalia category","category charities","charities based","germany category"],"new_description":"dissolved footnotes file richard thumb statue richard_schirrmann pioneer djh altena file bild berlin der thumb hitler youth berlin augusthe german youthostel_association legal notice english name association official_website accessed jun djh profit registered association state associations representative youthostel germany thus largest member international youth association hostelling_international theadquarters divided state associations local county volunteer associations million_members association structure djh membership german youthostel_association overnight stay hostel germany members stay hostels associated international may discounts djh membership obtained state association responsible residence addition organizationsuch clubs schools may apply corporate membership djh merged hitler youth thend second_world_war founded altena castle inorth rhine westphalia german youthostel_association member theuropean movement germany references literature j rgen barbara r und verlag externalinks english website djh category_backpacking categoryouthostelling_categoryouth organizations_established category_organisations_based inorth rhine westphalia category charities based germany_category"},{"title":"Get Lost Magazine","description":"get lost magazine is an independent adventure travel magazine based in the melbourne suburb ofitzroy victoria fitzroy in victoriaustralia the magazine which comes out quarterly is published by grin creative and was founded in by publisher justin jamieson the magazine is internationally circulated via print and also digitally through the get lostravel magazine app available through itunes and amazon the magazine seeks out unique travel experiences around the globe for travellers wishing to explore and take holidays that are not found in brochures it covers places to stay bars food festivals travel gadgets eco travel ideas and a range of activities from all continentso people can experience local cultures away from hoards of other travellers get lost magazineditor is carrie hutchinson a widely published travel writer in october g et lost magazine celebrated its th issue see also ecotourism references externalinks official website ninemsn travel blog by justin jamieson interview on australia s abc radio richard gloveradio presenterichard glover talks to justin jamieson abouthe parisyndrome category articles created via the article wizard category establishments in australia category adventure travel category magazinestablished in category media in melbourne category australian quarterly magazines category tourismagazines","main_words":["get","lost","magazine","independent","adventure_travel","magazine","based","melbourne","suburb","victoria","fitzroy","victoriaustralia","magazine","comes","quarterly","published","creative","founded","publisher","justin","magazine","internationally","circulated","via","print","also","get","magazine","app","available","amazon","magazine","seeks","unique","travel","experiences","around","globe","travellers","wishing","explore","take","holidays","found","covers","places","stay","bars","food","festivals","travel","eco","travel","ideas","range","activities","people","experience","local_cultures","away","travellers","get","lost","hutchinson","widely","published","travel_writer","october","g","lost","magazine","celebrated","th","issue","see_also","ecotourism","travel","blog","justin","interview","australia","abc","radio","richard","talks","justin","abouthe","category_articles_created_via","australia_category","category_media","melbourne","category_australian","quarterly","magazines_category","tourismagazines"],"clean_bigrams":[["get","lost"],["lost","magazine"],["independent","adventure"],["adventure","travel"],["travel","magazine"],["magazine","based"],["melbourne","suburb"],["victoria","fitzroy"],["publisher","justin"],["internationally","circulated"],["circulated","via"],["via","print"],["magazine","app"],["app","available"],["magazine","seeks"],["unique","travel"],["travel","experiences"],["experiences","around"],["travellers","wishing"],["take","holidays"],["covers","places"],["stay","bars"],["bars","food"],["food","festivals"],["festivals","travel"],["eco","travel"],["travel","ideas"],["experience","local"],["local","cultures"],["cultures","away"],["travellers","get"],["get","lost"],["widely","published"],["published","travel"],["travel","writer"],["october","g"],["lost","magazine"],["magazine","celebrated"],["th","issue"],["issue","see"],["see","also"],["also","ecotourism"],["ecotourism","references"],["references","externalinks"],["externalinks","official"],["official","website"],["travel","blog"],["abc","radio"],["radio","richard"],["category","articles"],["articles","created"],["created","via"],["article","wizard"],["wizard","category"],["category","establishments"],["australia","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","magazinestablished"],["category","media"],["melbourne","category"],["category","australian"],["australian","quarterly"],["quarterly","magazines"],["magazines","category"],["category","tourismagazines"]],"all_collocations":["get lost","lost magazine","independent adventure","adventure travel","travel magazine","magazine based","melbourne suburb","victoria fitzroy","publisher justin","internationally circulated","circulated via","via print","magazine app","app available","magazine seeks","unique travel","travel experiences","experiences around","travellers wishing","take holidays","covers places","stay bars","bars food","food festivals","festivals travel","eco travel","travel ideas","experience local","local cultures","cultures away","travellers get","get lost","widely published","published travel","travel writer","october g","lost magazine","magazine celebrated","th issue","issue see","see also","also ecotourism","ecotourism references","references externalinks","externalinks official","official website","travel blog","abc radio","radio richard","category articles","articles created","created via","article wizard","wizard category","category establishments","australia category","category adventure","adventure travel","travel category","category magazinestablished","category media","melbourne category","category australian","australian quarterly","quarterly magazines","magazines category","category tourismagazines"],"new_description":"get lost magazine independent adventure_travel magazine based melbourne suburb victoria fitzroy victoriaustralia magazine comes quarterly published creative founded publisher justin magazine internationally circulated via print also get magazine app available amazon magazine seeks unique travel experiences around globe travellers wishing explore take holidays found covers places stay bars food festivals travel eco travel ideas range activities people experience local_cultures away travellers get lost hutchinson widely published travel_writer october g lost magazine celebrated th issue see_also ecotourism references_externalinks_official_website travel blog justin interview australia abc radio richard talks justin abouthe category_articles_created_via article_wizard_category_establishments australia_category adventure_travel_category_magazinestablished category_media melbourne category_australian quarterly magazines_category tourismagazines"},{"title":"GetYourGuide","description":"slogan commercial yes type registration languagenglish german spanish french italian dutch num users undisclosed web mobile app content license programming language owner getyourguide ag author editor launch date revenue alexa global ip current status footnotes getyourguide is a website where tourism tourists can book activitiesuch as tour guide tours and excursions and buy tickets to numerous other tourist attraction tourist attractions it currently offers more than products in destinations around the worlddill kathryn up and comers travel guides forbes retrieved march getyourguide acts as an online platform for third party companies to listheir products for users to easily find businesses offering sightseeing tours adventure activities multiple day tours attractions passes and other products can upload and manage their products under their own brand customers can book these products directly on the website as well as through ios android operating system android apps or through its distributionetwork company history founded in the website is owned by the switzerland based startup company getyourguide aktiengesellschaft ag the company currently employs around people in the main office in berlin germany and also have two more offices one in las vegas and the other in z rich in april getyourguide acquired competing website gidsy getyourguide has partnered with websitesuch as expedia websitexpedia the company has three major competitors in this market viator acquired by tripadvisor musement a milan based startup and peekcom a us based startup references externalinks official website category tourism agencies category online travel agencies category travel websites category travel and holiday companies of germany category travel and holiday companies of the united states category service companies of switzerland category privately held companies of switzerland category companies based in z rich category companies based in berlin category companiestablished in category internet companies of germany","main_words":["slogan","commercial","yes","type","registration","languagenglish","german","spanish","french","italian","dutch","num","users","undisclosed","web","mobile_app","content","license","programming","language","owner","getyourguide","author","editor","launch","date","revenue","alexa","global","current_status","footnotes","getyourguide","website","tourism","tourists","book","activitiesuch","tour_guide","tours","excursions","buy","tickets","numerous","tourist_attraction","tourist_attractions","currently","offers","products","destinations","around","kathryn","travel_guides","forbes","retrieved_march","getyourguide","acts","online","platform","third_party","companies","products","users","easily","find","businesses","offering","sightseeing","tours","adventure","activities","multiple","day","tours","attractions","passes","products","upload","manage","products","brand","customers","book","products","directly","website","well","ios","android_operating_system","android","apps","company","history","founded","website","owned","switzerland","based","startup","company","getyourguide","company","currently","employs","around","people","main","office","berlin_germany","also","two","offices","one","las_vegas","rich","april","getyourguide","acquired","competing","website","getyourguide","partnered","websitesuch","expedia","company","three_major","competitors","market","acquired","tripadvisor","milan","based","startup","us","based","startup","references_externalinks_official_website_category","tourism_agencies","category_travel","websites_category_travel","holiday_companies","germany_category","travel","holiday_companies","united_states","category","service","companies","held","companies","rich","category_companies_based","berlin","category_companiestablished","category_internet","companies","germany"],"clean_bigrams":[["slogan","commercial"],["commercial","yes"],["yes","type"],["type","registration"],["registration","languagenglish"],["languagenglish","german"],["german","spanish"],["spanish","french"],["french","italian"],["italian","dutch"],["dutch","num"],["num","users"],["users","undisclosed"],["undisclosed","web"],["web","mobile"],["mobile","app"],["app","content"],["content","license"],["license","programming"],["programming","language"],["language","owner"],["owner","getyourguide"],["author","editor"],["editor","launch"],["launch","date"],["date","revenue"],["revenue","alexa"],["alexa","global"],["current","status"],["status","footnotes"],["footnotes","getyourguide"],["tourism","tourists"],["book","activitiesuch"],["tour","guide"],["guide","tours"],["buy","tickets"],["tourist","attraction"],["attraction","tourist"],["tourist","attractions"],["currently","offers"],["destinations","around"],["travel","guides"],["guides","forbes"],["forbes","retrieved"],["retrieved","march"],["march","getyourguide"],["getyourguide","acts"],["online","platform"],["third","party"],["party","companies"],["easily","find"],["find","businesses"],["businesses","offering"],["offering","sightseeing"],["sightseeing","tours"],["tours","adventure"],["adventure","activities"],["activities","multiple"],["multiple","day"],["day","tours"],["tours","attractions"],["attractions","passes"],["brand","customers"],["products","directly"],["ios","android"],["android","operating"],["operating","system"],["system","android"],["android","apps"],["company","history"],["history","founded"],["switzerland","based"],["based","startup"],["startup","company"],["company","getyourguide"],["company","currently"],["currently","employs"],["employs","around"],["around","people"],["main","office"],["berlin","germany"],["offices","one"],["las","vegas"],["april","getyourguide"],["getyourguide","acquired"],["acquired","competing"],["competing","website"],["three","major"],["major","competitors"],["milan","based"],["based","startup"],["us","based"],["based","startup"],["startup","references"],["references","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","online"],["online","travel"],["travel","agencies"],["agencies","category"],["category","travel"],["travel","websites"],["websites","category"],["category","travel"],["holiday","companies"],["germany","category"],["category","travel"],["holiday","companies"],["united","states"],["states","category"],["category","service"],["service","companies"],["switzerland","category"],["category","privately"],["privately","held"],["held","companies"],["switzerland","category"],["category","companies"],["companies","based"],["rich","category"],["category","companies"],["companies","based"],["berlin","category"],["category","companiestablished"],["category","internet"],["internet","companies"]],"all_collocations":["slogan commercial","commercial yes","yes type","type registration","registration languagenglish","languagenglish german","german spanish","spanish french","french italian","italian dutch","dutch num","num users","users undisclosed","undisclosed web","web mobile","mobile app","app content","content license","license programming","programming language","language owner","owner getyourguide","author editor","editor launch","launch date","date revenue","revenue alexa","alexa global","current status","status footnotes","footnotes getyourguide","tourism tourists","book activitiesuch","tour guide","guide tours","buy tickets","tourist attraction","attraction tourist","tourist attractions","currently offers","destinations around","travel guides","guides forbes","forbes retrieved","retrieved march","march getyourguide","getyourguide acts","online platform","third party","party companies","easily find","find businesses","businesses offering","offering sightseeing","sightseeing tours","tours adventure","adventure activities","activities multiple","multiple day","day tours","tours attractions","attractions passes","brand customers","products directly","ios android","android operating","operating system","system android","android apps","company history","history founded","switzerland based","based startup","startup company","company getyourguide","company currently","currently employs","employs around","around people","main office","berlin germany","offices one","las vegas","april getyourguide","getyourguide acquired","acquired competing","competing website","three major","major competitors","milan based","based startup","us based","based startup","startup references","references externalinks","externalinks official","official website","website category","category tourism","tourism agencies","agencies category","category online","online travel","travel agencies","agencies category","category travel","travel websites","websites category","category travel","holiday companies","germany category","category travel","holiday companies","united states","states category","category service","service companies","switzerland category","category privately","privately held","held companies","switzerland category","category companies","companies based","rich category","category companies","companies based","berlin category","category companiestablished","category internet","internet companies"],"new_description":"slogan commercial yes type registration languagenglish german spanish french italian dutch num users undisclosed web mobile_app content license programming language owner getyourguide author editor launch date revenue alexa global current_status footnotes getyourguide website tourism tourists book activitiesuch tour_guide tours excursions buy tickets numerous tourist_attraction tourist_attractions currently offers products destinations around kathryn travel_guides forbes retrieved_march getyourguide acts online platform third_party companies products users easily find businesses offering sightseeing tours adventure activities multiple day tours attractions passes products upload manage products brand customers book products directly website well ios android_operating_system android apps company history founded website owned switzerland based startup company getyourguide company currently employs around people main office berlin_germany also two offices one las_vegas rich april getyourguide acquired competing website getyourguide partnered websitesuch expedia company three_major competitors market acquired tripadvisor milan based startup us based startup references_externalinks_official_website_category tourism_agencies category_online_travel_agencies category_travel websites_category_travel holiday_companies germany_category travel holiday_companies united_states category service companies switzerland_category_privately held companies switzerland_category_companies_based rich category_companies_based berlin category_companiestablished category_internet companies germany"},{"title":"Ghost restaurant","description":"a ghost restaurant also known as a delivery only restaurant or online only restaurant is a food service business that serves customers exclusively through online foodelivery withouthe need to interact with customers directly on the premises ghost restaurants can offsethe high cost of a delivery system with cheapereal estate and operations although restaurants typically earn more from customers who dine athe restaurant due to thexpense of operating a delivery service or the fees charged by third party delivery companies like grubhub and caviar ghost restaurants have significantly lower overhead operating a dining room withe real estate it requirestaff amenities insurance and other expenses is a significant cost even restaurants with considerable to go business traditionally dedicate the majority of their space to seating as visibility curb appeal footraffic and accessibility are not concerns the kitchen can be housed in an inexpensive location that would notypically be consideredesirable for a restaurant a single company may operate several ghost restaurants and a single location s kitchen and staff can function as multiple branded restaurants without a brick and mortar location to renovate companies can also try out new brands and cuisines with littlefforto appeal to changing tastes and trends most of the restaurants utilizexisting delivery services for example green summit which ownseveral ghost restaurants inew york city and partners with grubhub some companies incorporate their own delivery system into the business modelike the new york based company maple which is backed by restaurateur david chang is able torient its business around productivity in terms of meals per hour per kitchen a metric more typical ofast food restaurants category types of restaurants category ecommerce","main_words":["ghost","restaurant","also_known","delivery","restaurant","online","restaurant","food_service","business","serves","customers","exclusively","online_foodelivery","withouthe","need","interact","customers","directly","premises","ghost","restaurants","high","cost","delivery","system","estate","operations","although","restaurants","typically","earn","customers","dine","athe","restaurant","due","thexpense","operating","delivery","service","fees","charged","third_party","delivery","companies","like","grubhub","caviar","ghost","restaurants","significantly","lower","overhead","operating","dining_room","withe","real_estate","amenities","insurance","expenses","significant","cost","even","restaurants","considerable","go","business","traditionally","majority","space","seating","visibility","appeal","accessibility","concerns","kitchen","housed","inexpensive","location","would","notypically","restaurant","single","company","may","operate","several","ghost","restaurants","single","location","kitchen","staff","function","multiple","branded","restaurants","without","brick","mortar","location","companies","also","try","new","brands","cuisines","appeal","changing","tastes","trends","restaurants","delivery","services","example","green","summit","ghost","restaurants","inew_york_city","partners","grubhub","companies","incorporate","delivery","system","business","new_york","based","company","maple","backed","restaurateur","david","chang","able","business","around","productivity","terms","meals","per_hour","per","kitchen","metric","typical","restaurants_category","ecommerce"],"clean_bigrams":[["ghost","restaurant"],["restaurant","also"],["also","known"],["food","service"],["service","business"],["serves","customers"],["customers","exclusively"],["online","foodelivery"],["foodelivery","withouthe"],["withouthe","need"],["customers","directly"],["premises","ghost"],["ghost","restaurants"],["high","cost"],["delivery","system"],["operations","although"],["although","restaurants"],["restaurants","typically"],["typically","earn"],["dine","athe"],["athe","restaurant"],["restaurant","due"],["delivery","service"],["fees","charged"],["third","party"],["party","delivery"],["delivery","companies"],["companies","like"],["like","grubhub"],["caviar","ghost"],["ghost","restaurants"],["significantly","lower"],["lower","overhead"],["overhead","operating"],["dining","room"],["room","withe"],["withe","real"],["real","estate"],["amenities","insurance"],["significant","cost"],["cost","even"],["even","restaurants"],["go","business"],["business","traditionally"],["inexpensive","location"],["would","notypically"],["single","company"],["company","may"],["may","operate"],["operate","several"],["several","ghost"],["ghost","restaurants"],["single","location"],["multiple","branded"],["branded","restaurants"],["restaurants","without"],["mortar","location"],["also","try"],["new","brands"],["changing","tastes"],["delivery","services"],["example","green"],["green","summit"],["ghost","restaurants"],["restaurants","inew"],["inew","york"],["york","city"],["companies","incorporate"],["delivery","system"],["new","york"],["york","based"],["based","company"],["company","maple"],["restaurateur","david"],["david","chang"],["business","around"],["around","productivity"],["meals","per"],["per","hour"],["hour","per"],["per","kitchen"],["typical","ofast"],["ofast","food"],["food","restaurants"],["restaurants","category"],["category","types"],["restaurants","category"],["category","ecommerce"]],"all_collocations":["ghost restaurant","restaurant also","also known","food service","service business","serves customers","customers exclusively","online foodelivery","foodelivery withouthe","withouthe need","customers directly","premises ghost","ghost restaurants","high cost","delivery system","operations although","although restaurants","restaurants typically","typically earn","dine athe","athe restaurant","restaurant due","delivery service","fees charged","third party","party delivery","delivery companies","companies like","like grubhub","caviar ghost","ghost restaurants","significantly lower","lower overhead","overhead operating","dining room","room withe","withe real","real estate","amenities insurance","significant cost","cost even","even restaurants","go business","business traditionally","inexpensive location","would notypically","single company","company may","may operate","operate several","several ghost","ghost restaurants","single location","multiple branded","branded restaurants","restaurants without","mortar location","also try","new brands","changing tastes","delivery services","example green","green summit","ghost restaurants","restaurants inew","inew york","york city","companies incorporate","delivery system","new york","york based","based company","company maple","restaurateur david","david chang","business around","around productivity","meals per","per hour","hour per","per kitchen","typical ofast","ofast food","food restaurants","restaurants category","category types","restaurants category","category ecommerce"],"new_description":"ghost restaurant also_known delivery restaurant online restaurant food_service business serves customers exclusively online_foodelivery withouthe need interact customers directly premises ghost restaurants high cost delivery system estate operations although restaurants typically earn customers dine athe restaurant due thexpense operating delivery service fees charged third_party delivery companies like grubhub caviar ghost restaurants significantly lower overhead operating dining_room withe real_estate amenities insurance expenses significant cost even restaurants considerable go business traditionally majority space seating visibility appeal accessibility concerns kitchen housed inexpensive location would notypically restaurant single company may operate several ghost restaurants single location kitchen staff function multiple branded restaurants without brick mortar location companies also try new brands cuisines appeal changing tastes trends restaurants delivery services example green summit ghost restaurants inew_york_city partners grubhub companies incorporate delivery system business new_york based company maple backed restaurateur david chang able business around productivity terms meals per_hour per kitchen metric typical ofast_food_restaurants_category_types restaurants_category ecommerce"},{"title":"Gilchrist & Soames","description":"gilchrist soames is a plainfield indiana based marketer of english themed in room toiletry hotel amenity hotel amenities history and corporate ownership founded in london in by anthony karger and michael karger gilchrist soames early product line focused on home fragrance and candles in gilchrist soames was purchased by potter moore a uk based toiletries company the united states based portion of the company was purchased by anthony gilas and michael gilas in they launched itspa bath and body collection indianapolis based e a industries an indiana conglomerate owned by allan b hubbard an indianapolis businessman acquired the company and moved north american operations to indianapolis e a in sold gilchrist soames for million to swander pace capital a san francisco privatequity firm in september gilchrist soames was acquired by sysco guest supply a subsidiary of sysco gilchrist soamesquare foot manufacturing research development andistribution facility is headquartered in plainfield indiana in august gilchrist soames conducted a voluntary worldwide recall in cooperation withe fda of its toothpaste withe company name on it gilchrist soames recalled its toothpaste made by ming fai enterprises international co ltd after the fda issued its warning thatestshowed the toothpaste containediethylene glycol a chemical used to thicken antifreeze that can cause liver damage on december in cooperation with an enforcement action of the fda gilchrist soames initiated a worldwide recall of numerous lots of several different products in its lines including certain conditioning shampoos mineral bathshower gels and body washes according to the fdall the products may be contaminated with pseudomonas aeruginosand enterobacter gergoviae potentially dangerous bacteria gilchrist soamesaid that all recipients were notified of the recall of the dangerous products and they were able to recall up to percent of the products distributed on december in cooperation with another enforcement action of the fda gilchrist soames initiated a worldwide voluntary class ii recall of a wide range of different products due to microbial contaminations the forty four different products included shampoos body washes body lotions mineral baths and numerous other types of products amounting to more than two million items they included gilchrist soames pseudo brandsuch aspa therapy verde and beekind and they also included custom products produced for suchospitality properties as gaylord hotels and hyatthe affected products were produced from june through september the contaminated products were distributed in the united states and worldwide including in canadand australia on march the united states food andrug administration responding to recalls of contaminated productsold by gilchrist and after inspecting its plant issued a warning letter to the company noting violations of the federal foodrug and cosmetic act and mandating extensive corrective actions resulting in a temporary shutdown of parts of gilchrist s manufacturing plant fda inspections warning letter and partial plant shutdown on march the fda issued a warning letter to the company based upon an on site inspection from september toctober the fda noted extensive contamination with pseudomonas aeruginosand concluded that such gilchrist products were adulterated within the meaning of section a of the foodrug and cosmetic act in addition the fda criticized gilchrist for not properly maintaining the cleanliness and safety of their mechanisms and raw materials the fda did not mandate further immediate recalls but recommended that gilchrist develop a remediation plan to correct and prevent future product contamination a spokesman for sysco the owners of gilchrist advised thathe company had temporarily closed parts of their indiana facility for cleaning and claimed that gilchrist has introduced new procedures including increased testing of product enhanced sanitation and new associate training category hotels category companiestablished in category companies based indiana category companies based in london","main_words":["gilchrist","indiana","based","english","themed","room","hotel","amenity","hotel","amenities","history","corporate","ownership","founded","london","anthony","michael","gilchrist_soames","early","product","line","focused","home","candles","gilchrist_soames","purchased","potter","moore","uk","based","company","portion","company","purchased","anthony","michael","launched","bath","body","collection","indianapolis","based","e","industries","indiana","owned","allan","b","indianapolis","businessman","acquired","company","moved","north_american","operations","indianapolis","e","sold","gilchrist_soames","million","pace","capital","san_francisco","privatequity","firm","september","gilchrist_soames","acquired","sysco","guest","supply","subsidiary","sysco","gilchrist","foot","manufacturing","research","development","andistribution","facility","headquartered","indiana","august","gilchrist_soames","conducted","voluntary","worldwide","recall","cooperation","withe","fda","toothpaste","withe","company","name","gilchrist_soames","recalled","toothpaste","made","ming","fai","enterprises","international","ltd","fda","issued","warning","toothpaste","chemical","used","cause","liver","damage","december","cooperation","enforcement","action","fda","gilchrist_soames","initiated","worldwide","recall","numerous","lots","several","different","products","lines","including","certain","mineral","body","according","products","may","contaminated","potentially","dangerous","bacteria","gilchrist","recipients","notified","recall","dangerous","products","able","recall","percent","products","distributed","december","cooperation","another","enforcement","action","fda","gilchrist_soames","initiated","worldwide","voluntary","class","ii","recall","wide_range","different","products","due","forty","four","different","products","included","body","body","mineral","baths","numerous","types","products","two","million","items","included","gilchrist_soames","pseudo","therapy","verde","also_included","custom","products","produced","properties","hotels","affected","products","produced","june","september","contaminated","products","distributed","united_states","worldwide","including","canadand","australia","march","united_states","food","andrug","administration","responding","recalls","contaminated","gilchrist","plant","issued","warning","letter","company","noting","violations","federal","cosmetic","act","extensive","corrective","actions","resulting","temporary","shutdown","parts","gilchrist","manufacturing","plant","fda","inspections","warning","letter","partial","plant","shutdown","march","fda","issued","warning","letter","site","inspection","september","toctober","fda","noted","extensive","contamination","concluded","gilchrist","products","adulterated","within","meaning","section","cosmetic","act","addition","fda","criticized","gilchrist","properly","maintaining","cleanliness","safety","mechanisms","raw","materials","fda","mandate","immediate","recalls","recommended","gilchrist","develop","remediation","plan","correct","prevent","future","product","contamination","spokesman","sysco","owners","gilchrist","advised","thathe_company","temporarily","closed","parts","indiana","facility","cleaning","claimed","gilchrist","introduced","new","procedures","including","increased","testing","product","enhanced","sanitation","new","associate","training","category_hotels","category_companiestablished","category_companies_based","indiana","category_companies_based","london"],"clean_bigrams":[["gilchrist","soames"],["indiana","based"],["english","themed"],["hotel","amenity"],["amenity","hotel"],["hotel","amenities"],["amenities","history"],["corporate","ownership"],["ownership","founded"],["gilchrist","soames"],["soames","early"],["early","product"],["product","line"],["line","focused"],["gilchrist","soames"],["potter","moore"],["uk","based"],["united","states"],["states","based"],["based","portion"],["body","collection"],["collection","indianapolis"],["indianapolis","based"],["based","e"],["allan","b"],["indianapolis","businessman"],["businessman","acquired"],["moved","north"],["north","american"],["american","operations"],["indianapolis","e"],["sold","gilchrist"],["gilchrist","soames"],["pace","capital"],["san","francisco"],["francisco","privatequity"],["privatequity","firm"],["september","gilchrist"],["gilchrist","soames"],["sysco","guest"],["guest","supply"],["sysco","gilchrist"],["foot","manufacturing"],["manufacturing","research"],["research","development"],["development","andistribution"],["andistribution","facility"],["august","gilchrist"],["gilchrist","soames"],["soames","conducted"],["voluntary","worldwide"],["worldwide","recall"],["cooperation","withe"],["withe","fda"],["toothpaste","withe"],["withe","company"],["company","name"],["gilchrist","soames"],["soames","recalled"],["toothpaste","made"],["ming","fai"],["fai","enterprises"],["enterprises","international"],["fda","issued"],["chemical","used"],["cause","liver"],["liver","damage"],["enforcement","action"],["fda","gilchrist"],["gilchrist","soames"],["soames","initiated"],["worldwide","recall"],["numerous","lots"],["several","different"],["different","products"],["lines","including"],["including","certain"],["certain","conditioning"],["products","may"],["potentially","dangerous"],["dangerous","bacteria"],["bacteria","gilchrist"],["dangerous","products"],["products","distributed"],["another","enforcement"],["enforcement","action"],["fda","gilchrist"],["gilchrist","soames"],["soames","initiated"],["worldwide","voluntary"],["voluntary","class"],["class","ii"],["ii","recall"],["wide","range"],["different","products"],["products","due"],["forty","four"],["four","different"],["different","products"],["products","included"],["mineral","baths"],["two","million"],["million","items"],["included","gilchrist"],["gilchrist","soames"],["soames","pseudo"],["therapy","verde"],["also","included"],["included","custom"],["custom","products"],["products","produced"],["affected","products"],["products","produced"],["contaminated","products"],["products","distributed"],["united","states"],["worldwide","including"],["canadand","australia"],["united","states"],["states","food"],["food","andrug"],["andrug","administration"],["administration","responding"],["plant","issued"],["warning","letter"],["company","noting"],["noting","violations"],["cosmetic","act"],["extensive","corrective"],["corrective","actions"],["actions","resulting"],["temporary","shutdown"],["manufacturing","plant"],["plant","fda"],["fda","inspections"],["inspections","warning"],["warning","letter"],["partial","plant"],["plant","shutdown"],["fda","issued"],["warning","letter"],["company","based"],["based","upon"],["site","inspection"],["september","toctober"],["fda","noted"],["noted","extensive"],["extensive","contamination"],["gilchrist","products"],["adulterated","within"],["cosmetic","act"],["fda","criticized"],["criticized","gilchrist"],["properly","maintaining"],["raw","materials"],["immediate","recalls"],["gilchrist","develop"],["remediation","plan"],["prevent","future"],["future","product"],["product","contamination"],["gilchrist","advised"],["advised","thathe"],["thathe","company"],["temporarily","closed"],["closed","parts"],["indiana","facility"],["introduced","new"],["new","procedures"],["procedures","including"],["including","increased"],["increased","testing"],["product","enhanced"],["enhanced","sanitation"],["new","associate"],["associate","training"],["training","category"],["category","hotels"],["hotels","category"],["category","companiestablished"],["category","companies"],["companies","based"],["based","indiana"],["indiana","category"],["category","companies"],["companies","based"]],"all_collocations":["gilchrist soames","indiana based","english themed","hotel amenity","amenity hotel","hotel amenities","amenities history","corporate ownership","ownership founded","gilchrist soames","soames early","early product","product line","line focused","gilchrist soames","potter moore","uk based","united states","states based","based portion","body collection","collection indianapolis","indianapolis based","based e","allan b","indianapolis businessman","businessman acquired","moved north","north american","american operations","indianapolis e","sold gilchrist","gilchrist soames","pace capital","san francisco","francisco privatequity","privatequity firm","september gilchrist","gilchrist soames","sysco guest","guest supply","sysco gilchrist","foot manufacturing","manufacturing research","research development","development andistribution","andistribution facility","august gilchrist","gilchrist soames","soames conducted","voluntary worldwide","worldwide recall","cooperation withe","withe fda","toothpaste withe","withe company","company name","gilchrist soames","soames recalled","toothpaste made","ming fai","fai enterprises","enterprises international","fda issued","chemical used","cause liver","liver damage","enforcement action","fda gilchrist","gilchrist soames","soames initiated","worldwide recall","numerous lots","several different","different products","lines including","including certain","certain conditioning","products may","potentially dangerous","dangerous bacteria","bacteria gilchrist","dangerous products","products distributed","another enforcement","enforcement action","fda gilchrist","gilchrist soames","soames initiated","worldwide voluntary","voluntary class","class ii","ii recall","wide range","different products","products due","forty four","four different","different products","products included","mineral baths","two million","million items","included gilchrist","gilchrist soames","soames pseudo","therapy verde","also included","included custom","custom products","products produced","affected products","products produced","contaminated products","products distributed","united states","worldwide including","canadand australia","united states","states food","food andrug","andrug administration","administration responding","plant issued","warning letter","company noting","noting violations","cosmetic act","extensive corrective","corrective actions","actions resulting","temporary shutdown","manufacturing plant","plant fda","fda inspections","inspections warning","warning letter","partial plant","plant shutdown","fda issued","warning letter","company based","based upon","site inspection","september toctober","fda noted","noted extensive","extensive contamination","gilchrist products","adulterated within","cosmetic act","fda criticized","criticized gilchrist","properly maintaining","raw materials","immediate recalls","gilchrist develop","remediation plan","prevent future","future product","product contamination","gilchrist advised","advised thathe","thathe company","temporarily closed","closed parts","indiana facility","introduced new","new procedures","procedures including","including increased","increased testing","product enhanced","enhanced sanitation","new associate","associate training","training category","category hotels","hotels category","category companiestablished","category companies","companies based","based indiana","indiana category","category companies","companies based"],"new_description":"gilchrist soames indiana based english themed room hotel amenity hotel amenities history corporate ownership founded london anthony michael gilchrist_soames early product line focused home candles gilchrist_soames purchased potter moore uk based company united_states_based portion company purchased anthony michael launched bath body collection indianapolis based e industries indiana owned allan b indianapolis businessman acquired company moved north_american operations indianapolis e sold gilchrist_soames million pace capital san_francisco privatequity firm september gilchrist_soames acquired sysco guest supply subsidiary sysco gilchrist foot manufacturing research development andistribution facility headquartered indiana august gilchrist_soames conducted voluntary worldwide recall cooperation withe fda toothpaste withe company name gilchrist_soames recalled toothpaste made ming fai enterprises international ltd fda issued warning toothpaste chemical used cause liver damage december cooperation enforcement action fda gilchrist_soames initiated worldwide recall numerous lots several different products lines including certain conditioning mineral body according products may contaminated potentially dangerous bacteria gilchrist recipients notified recall dangerous products able recall percent products distributed december cooperation another enforcement action fda gilchrist_soames initiated worldwide voluntary class ii recall wide_range different products due forty four different products included body body mineral baths numerous types products two million items included gilchrist_soames pseudo therapy verde also_included custom products produced properties hotels affected products produced june september contaminated products distributed united_states worldwide including canadand australia march united_states food andrug administration responding recalls contaminated gilchrist plant issued warning letter company noting violations federal cosmetic act extensive corrective actions resulting temporary shutdown parts gilchrist manufacturing plant fda inspections warning letter partial plant shutdown march fda issued warning letter company_based_upon site inspection september toctober fda noted extensive contamination concluded gilchrist products adulterated within meaning section cosmetic act addition fda criticized gilchrist properly maintaining cleanliness safety mechanisms raw materials fda mandate immediate recalls recommended gilchrist develop remediation plan correct prevent future product contamination spokesman sysco owners gilchrist advised thathe_company temporarily closed parts indiana facility cleaning claimed gilchrist introduced new procedures including increased testing product enhanced sanitation new associate training category_hotels category_companiestablished category_companies_based indiana category_companies_based london"},{"title":"Glamping","description":"file florence springs yurt camping villagejpg thumb px a glamping village with semi permanent yurt s gravel paths and a hotub glamping is a portmanteau of glamour presentation glamour and camping andescribes a style of camping with amenities and in some cases resort style services not usually associated with traditional campinglamping has become particularly popular with st century touristseeking the luxuries of hotel accommodation alongside thescapism and adventurecreation of camping file zc grasnapolsky jpg thumb glamping athe music festival zwarte cross in the netherlands the word glamping first appeared in the united kingdom in while the word itself is new the concepthat glamping connotes that of luxurious tent living is not in the th century the scottish john stewart rd earl of atholl earl of atholl prepared a marvellous glamping experience in the highlands for the visiting king james v of scotland king james v and his mothere the duke pitched lavish tents and filled them with all the provisions of his own home palace see robert lindsey sixteenth century glamping the atholl hunt probably the most extravagant example of glamping in history was the field of the cloth of gold a diplomatic summit meeting summit inorthern france in between henry viii of england francis i ofrance some tents and marquees werected and fountains ran with red winedward hall s chronicles at around thisame time the ottomans had ostentatious palatial tents transported from one military mission to the next entire teams of artisans travelled withe army to erect and maintain these imperial tents as described by professor nurhan atasoy thexquisite ornamentation both inside and out of the tents used by the ottoman sultans made them imposing dwellings fit for a ruler on ceremonial occasions tentserved to create a splendid theatrical setting as we see vividly portrayed in miniature paintings depicting banquets audiences and celebrations which took place in the imperial tent complex over the centuries the imperial tents were richly decorated as if they were pavilions and often hadesigns resembling tiled panels usually in floral patterns either in appli s work using cloth of different colours or embroidered in varioustitches using silk and metal thread professor nurhan atasoy the ottoman tents turkish cultural foundation some years later in the s an african safari became the thing to do among wealthy brits and americans but wealthy travellers even those in search of adventure were not willing to sacrifice comfort or luxury from electric generators to folding baths and cases of champagne travelers were afforded every domestic luxury while on adventure glamping is its modern equivalent combining both yesterday s amenities and today s technology also called boutique camping luxury camping posh camping or comfy camping today s glamping featuresuch structures as yurt s tipi s pods bell tents vintage caravans vintage trailersafari tents tent cabins and tree houses glampsites range in price from as little as per nighto thousands of pounds per night depending on amenities which can include fresh bed linens en suite washrooms food service and private verandas glamping has also become a popular term amongst women vintage caravanners who deck outheir caravans and vintage trailers with feminine touchesuch as fine linen lace floral curtains bunting andecorate them with retro items and fine china to combine their love of adventure withe desire to create a peaceful home like retreatoday s concept of glamping has its roots in thesearlier forms of luxury camping in a positive twist on these old forms of tent living however glamping today is not just for the rich some form of glamping is accessible to mostravellers there is a wide price range several major festivals now offer those attending various glamping options which can range from a simple tent ready pitched for the customer to more luxurious units with double beds tvs and sofas the number of international glamping options has risen rapidly since the word first appeared in buthe main philosophy has remained the same sustainable quasi outdoor lodging that offers travelers comfortablexperiences inature history of glamping dorset country holidays modern glamping sites generally fall into five distinct categories glamping articles country glamping holidays franchising franchises where the proprietor has land buys intone of thexisting brands bed and breakfast b style where the proprietor has one or two units on their land to provide additional income diversified campsites family owned sites which also provide glamping large corporate holiday parks that also provide glamping dedicated glamping sites as it has grown the market for glamping in the united kingdom has become increasingly competitive in the automobile association aa established a formal ratingstandard for glamping sites across the uk sites are now generally expected to provide a certain level of comfort for their guests including electricity which can be provided both on and off grid shower and flushing toilet facilities warden service and other hospitality industry staples in order to receive a good rating since the united kingdom european union membership referendum in july the weakness of the pound sterling has led many uk holidaymakers noto holiday abroad but instead to choose luxurious camping perhaps in quaint countryside locations the glamping market in the uk has grown rapidly for several years and a wide range of sites is now available the market continues to grow though according to at least one industry experthe growth rate haslowed somewhat some guests particularly from cities now choose more rural woodland off grid sites away from their bustling home cities and towns for which the term digital detox has been applied the concept is that one turns one s mobile phone and other non stop notification devices offor a few days in order to get back to nature and enjoy an experience outside the world of social media woodland escape off grid glamping holidays in somerset see also ecotourism yurt bell tent category camping category tourism","main_words":["file","florence","springs","yurt","camping","thumb","px","glamping","village","semi","permanent","yurt","gravel","paths","glamping","portmanteau","presentation","camping","style","camping","amenities","cases","resort","style","services","usually","associated","traditional","become","particularly","popular","st_century","hotel","accommodation","alongside","camping","file_jpg","thumb","glamping","athe","music_festival","cross","netherlands","word","glamping","first_appeared","united_kingdom","word","new","glamping","connotes","luxurious","tent","living","th_century","scottish","john","stewart","earl","atholl","earl","atholl","prepared","glamping","experience","highlands","visiting","king","james","v","scotland","king","james","v","duke","pitched","lavish","tents","filled","provisions","home","palace","see","robert","sixteenth","century","glamping","atholl","hunt","probably","example","glamping","history","field","cloth","gold","diplomatic","summit","meeting","summit","inorthern","france","henry","viii","england","francis","ofrance","tents","fountains","ran","red","hall","chronicles","around","time","ottomans","tents","transported","one","military","mission","next","entire","teams","artisans","travelled","withe","army","maintain","imperial","tents","described","professor","inside","tents","used","ottoman","made","imposing","dwellings","fit","ceremonial","occasions","create","splendid","theatrical","setting","see","portrayed","miniature","paintings","depicting","audiences","celebrations","took_place","imperial","tent","complex","centuries","imperial","tents","decorated","pavilions","often","resembling","tiled","panels","usually","floral","patterns","either","work","using","cloth","different","colours","using","silk","metal","professor","ottoman","tents","turkish","cultural","foundation","years_later","african","safari","became","thing","among","wealthy","americans","wealthy","travellers","even","search","adventure","willing","comfort","luxury","electric","generators","folding","baths","cases","travelers","afforded","every","domestic","luxury","adventure","glamping","modern","equivalent","combining","amenities","today","technology","also_called","boutique","camping","luxury","camping","camping","camping","today","glamping","featuresuch","structures","yurt","pods","bell","tents","vintage","caravans","vintage","tents","tent","cabins","tree","houses","range","price","little","per","nighto","thousands","pounds","per","night","depending","amenities","include","fresh","bed","suite","food_service","private","glamping","also","become_popular","term","amongst","women","vintage","caravanners","deck","outheir","caravans","vintage","trailers","fine","lace","floral","retro","items","fine","china","combine","love","adventure","withe","desire","create","peaceful","home","like","concept","glamping","roots","forms","luxury","camping","positive","twist","old","forms","tent","living","however","glamping","today","rich","form","glamping","accessible","wide","price","range","several","major","festivals","offer","attending","various","glamping","options","range","simple","tent","ready","pitched","customer","luxurious","units","double","beds","number","international","glamping","options","risen","rapidly","since","word","first_appeared","buthe","main","philosophy","remained","sustainable","quasi","outdoor","lodging","offers","travelers","inature","history","glamping","dorset","country","holidays","modern","glamping","sites","generally","fall","five","distinct","categories","glamping","articles","country","glamping","holidays","franchising","franchises","proprietor","land","buys","intone","thexisting","brands","bed","breakfast","b","style","proprietor","one","two","units","land","provide","additional","income","diversified","campsites","family","owned","sites","also_provide","glamping","large","corporate","also_provide","glamping","dedicated","glamping","sites","grown","market","glamping","united_kingdom","become","increasingly","competitive","automobile_association","established","formal","glamping","sites","across","uk","sites","generally","expected","provide","certain","level","comfort","guests","including","electricity","provided","grid","shower","toilet","facilities","service","hospitality_industry","staples","order","receive","good","rating","since","united_kingdom","european","union","membership","july","weakness","pound","sterling","led","many","uk","holidaymakers","noto","holiday","abroad","instead","choose","luxurious","camping","perhaps","quaint","countryside","locations","glamping","market","uk","grown","rapidly","several_years","wide_range","sites","available","market","continues","grow","though","according","least_one","industry","growth","rate","somewhat","guests","particularly","cities","choose","rural","woodland","grid","sites","away","bustling","home","cities","towns","term","digital","applied","concept","one","turns","one","mobile","phone","non","stop","notification","devices","offor","days","order","get","back","nature","enjoy","experience","outside","world","social_media","woodland","escape","grid","glamping","holidays","somerset","see_also","ecotourism","yurt","bell","tent","category","camping","category_tourism"],"clean_bigrams":[["file","florence"],["florence","springs"],["springs","yurt"],["yurt","camping"],["thumb","px"],["glamping","village"],["semi","permanent"],["permanent","yurt"],["gravel","paths"],["cases","resort"],["resort","style"],["style","services"],["usually","associated"],["become","particularly"],["particularly","popular"],["st","century"],["hotel","accommodation"],["accommodation","alongside"],["camping","file"],["jpg","thumb"],["thumb","glamping"],["glamping","athe"],["athe","music"],["music","festival"],["word","glamping"],["glamping","first"],["first","appeared"],["united","kingdom"],["glamping","connotes"],["luxurious","tent"],["tent","living"],["th","century"],["scottish","john"],["john","stewart"],["atholl","earl"],["atholl","prepared"],["glamping","experience"],["visiting","king"],["king","james"],["james","v"],["scotland","king"],["king","james"],["james","v"],["duke","pitched"],["pitched","lavish"],["lavish","tents"],["home","palace"],["palace","see"],["see","robert"],["sixteenth","century"],["century","glamping"],["atholl","hunt"],["hunt","probably"],["diplomatic","summit"],["summit","meeting"],["meeting","summit"],["summit","inorthern"],["inorthern","france"],["henry","viii"],["england","francis"],["fountains","ran"],["tents","transported"],["one","military"],["military","mission"],["next","entire"],["entire","teams"],["artisans","travelled"],["travelled","withe"],["withe","army"],["imperial","tents"],["tents","used"],["imposing","dwellings"],["dwellings","fit"],["ceremonial","occasions"],["splendid","theatrical"],["theatrical","setting"],["miniature","paintings"],["paintings","depicting"],["took","place"],["imperial","tent"],["tent","complex"],["imperial","tents"],["resembling","tiled"],["tiled","panels"],["panels","usually"],["floral","patterns"],["patterns","either"],["work","using"],["using","cloth"],["different","colours"],["using","silk"],["ottoman","tents"],["tents","turkish"],["turkish","cultural"],["cultural","foundation"],["years","later"],["african","safari"],["safari","became"],["among","wealthy"],["wealthy","travellers"],["travellers","even"],["electric","generators"],["folding","baths"],["afforded","every"],["every","domestic"],["domestic","luxury"],["adventure","glamping"],["modern","equivalent"],["equivalent","combining"],["technology","also"],["also","called"],["called","boutique"],["boutique","camping"],["camping","luxury"],["luxury","camping"],["camping","today"],["glamping","featuresuch"],["featuresuch","structures"],["pods","bell"],["bell","tents"],["tents","vintage"],["vintage","caravans"],["caravans","vintage"],["tents","tent"],["tent","cabins"],["tree","houses"],["per","nighto"],["nighto","thousands"],["pounds","per"],["per","night"],["night","depending"],["include","fresh"],["fresh","bed"],["food","service"],["also","become"],["popular","term"],["term","amongst"],["amongst","women"],["women","vintage"],["vintage","caravanners"],["deck","outheir"],["outheir","caravans"],["caravans","vintage"],["vintage","trailers"],["lace","floral"],["retro","items"],["fine","china"],["adventure","withe"],["withe","desire"],["peaceful","home"],["home","like"],["luxury","camping"],["positive","twist"],["old","forms"],["tent","living"],["living","however"],["however","glamping"],["glamping","today"],["wide","price"],["price","range"],["range","several"],["several","major"],["major","festivals"],["attending","various"],["various","glamping"],["glamping","options"],["simple","tent"],["tent","ready"],["ready","pitched"],["luxurious","units"],["double","beds"],["international","glamping"],["glamping","options"],["risen","rapidly"],["rapidly","since"],["word","first"],["first","appeared"],["buthe","main"],["main","philosophy"],["sustainable","quasi"],["quasi","outdoor"],["outdoor","lodging"],["offers","travelers"],["inature","history"],["glamping","dorset"],["dorset","country"],["country","holidays"],["holidays","modern"],["modern","glamping"],["glamping","sites"],["sites","generally"],["generally","fall"],["five","distinct"],["distinct","categories"],["categories","glamping"],["glamping","articles"],["articles","country"],["country","glamping"],["glamping","holidays"],["holidays","franchising"],["franchising","franchises"],["land","buys"],["buys","intone"],["thexisting","brands"],["brands","bed"],["breakfast","b"],["b","style"],["two","units"],["provide","additional"],["additional","income"],["income","diversified"],["diversified","campsites"],["campsites","family"],["family","owned"],["owned","sites"],["also","provide"],["provide","glamping"],["glamping","large"],["large","corporate"],["corporate","holiday"],["holiday","parks"],["also","provide"],["provide","glamping"],["glamping","dedicated"],["dedicated","glamping"],["glamping","sites"],["united","kingdom"],["become","increasingly"],["increasingly","competitive"],["automobile","association"],["glamping","sites"],["sites","across"],["uk","sites"],["sites","generally"],["generally","expected"],["certain","level"],["guests","including"],["including","electricity"],["grid","shower"],["toilet","facilities"],["hospitality","industry"],["industry","staples"],["good","rating"],["rating","since"],["united","kingdom"],["kingdom","european"],["european","union"],["union","membership"],["pound","sterling"],["led","many"],["many","uk"],["uk","holidaymakers"],["holidaymakers","noto"],["noto","holiday"],["holiday","abroad"],["choose","luxurious"],["luxurious","camping"],["camping","perhaps"],["quaint","countryside"],["countryside","locations"],["glamping","market"],["grown","rapidly"],["several","years"],["wide","range"],["market","continues"],["grow","though"],["though","according"],["least","one"],["one","industry"],["growth","rate"],["guests","particularly"],["rural","woodland"],["grid","sites"],["sites","away"],["bustling","home"],["home","cities"],["term","digital"],["one","turns"],["turns","one"],["mobile","phone"],["non","stop"],["stop","notification"],["notification","devices"],["devices","offor"],["get","back"],["experience","outside"],["social","media"],["media","woodland"],["woodland","escape"],["grid","glamping"],["glamping","holidays"],["somerset","see"],["see","also"],["also","ecotourism"],["ecotourism","yurt"],["yurt","bell"],["bell","tent"],["tent","category"],["category","camping"],["camping","category"],["category","tourism"]],"all_collocations":["file florence","florence springs","springs yurt","yurt camping","glamping village","semi permanent","permanent yurt","gravel paths","cases resort","resort style","style services","usually associated","become particularly","particularly popular","st century","hotel accommodation","accommodation alongside","camping file","thumb glamping","glamping athe","athe music","music festival","word glamping","glamping first","first appeared","united kingdom","glamping connotes","luxurious tent","tent living","th century","scottish john","john stewart","atholl earl","atholl prepared","glamping experience","visiting king","king james","james v","scotland king","king james","james v","duke pitched","pitched lavish","lavish tents","home palace","palace see","see robert","sixteenth century","century glamping","atholl hunt","hunt probably","diplomatic summit","summit meeting","meeting summit","summit inorthern","inorthern france","henry viii","england francis","fountains ran","tents transported","one military","military mission","next entire","entire teams","artisans travelled","travelled withe","withe army","imperial tents","tents used","imposing dwellings","dwellings fit","ceremonial occasions","splendid theatrical","theatrical setting","miniature paintings","paintings depicting","took place","imperial tent","tent complex","imperial tents","resembling tiled","tiled panels","panels usually","floral patterns","patterns either","work using","using cloth","different colours","using silk","ottoman tents","tents turkish","turkish cultural","cultural foundation","years later","african safari","safari became","among wealthy","wealthy travellers","travellers even","electric generators","folding baths","afforded every","every domestic","domestic luxury","adventure glamping","modern equivalent","equivalent combining","technology also","also called","called boutique","boutique camping","camping luxury","luxury camping","camping today","glamping featuresuch","featuresuch structures","pods bell","bell tents","tents vintage","vintage caravans","caravans vintage","tents tent","tent cabins","tree houses","per nighto","nighto thousands","pounds per","per night","night depending","include fresh","fresh bed","food service","also become","popular term","term amongst","amongst women","women vintage","vintage caravanners","deck outheir","outheir caravans","caravans vintage","vintage trailers","lace floral","retro items","fine china","adventure withe","withe desire","peaceful home","home like","luxury camping","positive twist","old forms","tent living","living however","however glamping","glamping today","wide price","price range","range several","several major","major festivals","attending various","various glamping","glamping options","simple tent","tent ready","ready pitched","luxurious units","double beds","international glamping","glamping options","risen rapidly","rapidly since","word first","first appeared","buthe main","main philosophy","sustainable quasi","quasi outdoor","outdoor lodging","offers travelers","inature history","glamping dorset","dorset country","country holidays","holidays modern","modern glamping","glamping sites","sites generally","generally fall","five distinct","distinct categories","categories glamping","glamping articles","articles country","country glamping","glamping holidays","holidays franchising","franchising franchises","land buys","buys intone","thexisting brands","brands bed","breakfast b","b style","two units","provide additional","additional income","income diversified","diversified campsites","campsites family","family owned","owned sites","also provide","provide glamping","glamping large","large corporate","corporate holiday","holiday parks","also provide","provide glamping","glamping dedicated","dedicated glamping","glamping sites","united kingdom","become increasingly","increasingly competitive","automobile association","glamping sites","sites across","uk sites","sites generally","generally expected","certain level","guests including","including electricity","grid shower","toilet facilities","hospitality industry","industry staples","good rating","rating since","united kingdom","kingdom european","european union","union membership","pound sterling","led many","many uk","uk holidaymakers","holidaymakers noto","noto holiday","holiday abroad","choose luxurious","luxurious camping","camping perhaps","quaint countryside","countryside locations","glamping market","grown rapidly","several years","wide range","market continues","grow though","though according","least one","one industry","growth rate","guests particularly","rural woodland","grid sites","sites away","bustling home","home cities","term digital","one turns","turns one","mobile phone","non stop","stop notification","notification devices","devices offor","get back","experience outside","social media","media woodland","woodland escape","grid glamping","glamping holidays","somerset see","see also","also ecotourism","ecotourism yurt","yurt bell","bell tent","tent category","category camping","camping category","category tourism"],"new_description":"file florence springs yurt camping thumb px glamping village semi permanent yurt gravel paths glamping portmanteau presentation camping style camping amenities cases resort style services usually associated traditional become particularly popular st_century hotel accommodation alongside camping file_jpg thumb glamping athe music_festival cross netherlands word glamping first_appeared united_kingdom word new glamping connotes luxurious tent living th_century scottish john stewart earl atholl earl atholl prepared glamping experience highlands visiting king james v scotland king james v duke pitched lavish tents filled provisions home palace see robert sixteenth century glamping atholl hunt probably example glamping history field cloth gold diplomatic summit meeting summit inorthern france henry viii england francis ofrance tents fountains ran red hall chronicles around time ottomans tents transported one military mission next entire teams artisans travelled withe army maintain imperial tents described professor inside tents used ottoman made imposing dwellings fit ceremonial occasions create splendid theatrical setting see portrayed miniature paintings depicting audiences celebrations took_place imperial tent complex centuries imperial tents decorated pavilions often resembling tiled panels usually floral patterns either work using cloth different colours using silk metal professor ottoman tents turkish cultural foundation years_later african safari became thing among wealthy americans wealthy travellers even search adventure willing comfort luxury electric generators folding baths cases travelers afforded every domestic luxury adventure glamping modern equivalent combining amenities today technology also_called boutique camping luxury camping camping camping today glamping featuresuch structures yurt pods bell tents vintage caravans vintage tents tent cabins tree houses range price little per nighto thousands pounds per night depending amenities include fresh bed suite food_service private glamping also become_popular term amongst women vintage caravanners deck outheir caravans vintage trailers fine lace floral retro items fine china combine love adventure withe desire create peaceful home like concept glamping roots forms luxury camping positive twist old forms tent living however glamping today rich form glamping accessible wide price range several major festivals offer attending various glamping options range simple tent ready pitched customer luxurious units double beds number international glamping options risen rapidly since word first_appeared buthe main philosophy remained sustainable quasi outdoor lodging offers travelers inature history glamping dorset country holidays modern glamping sites generally fall five distinct categories glamping articles country glamping holidays franchising franchises proprietor land buys intone thexisting brands bed breakfast b style proprietor one two units land provide additional income diversified campsites family owned sites also_provide glamping large corporate holiday_parks also_provide glamping dedicated glamping sites grown market glamping united_kingdom become increasingly competitive automobile_association established formal glamping sites across uk sites generally expected provide certain level comfort guests including electricity provided grid shower toilet facilities service hospitality_industry staples order receive good rating since united_kingdom european union membership july weakness pound sterling led many uk holidaymakers noto holiday abroad instead choose luxurious camping perhaps quaint countryside locations glamping market uk grown rapidly several_years wide_range sites available market continues grow though according least_one industry growth rate somewhat guests particularly cities choose rural woodland grid sites away bustling home cities towns term digital applied concept one turns one mobile phone non stop notification devices offor days order get back nature enjoy experience outside world social_media woodland escape grid glamping holidays somerset see_also ecotourism yurt bell tent category camping category_tourism"},{"title":"Globe Trekker","description":"globe trekker sometimes called pilot guides in australiand thailand originally broadcast as lonely planet is an adventure travel adventure tourism television series produced by pilot productions the united kingdom british series was inspired by the lonely planetravelbooks and began airing in globe trekker is broadcast in over countries acrossix continents the program won over international awards including six american cable ace awards program synopsis each episode features a host called a traveller who travels with a camera crew to a country often a relatively exotic locale and experiences the sightsounds and culture thathe location has toffer special episodes feature in depth city beach ape scuba diving dive volcano shopping travel journey history festival and food guides the show often goes far beyond popular tourist destinations in order to give viewers a more authentic look at local culture presenters usually participate in different aspects of regionalife such as attending a traditional wedding or visiting a mining community they address the viewer directly acting as tourists turned tour guides but are also filmed interacting with locals andiscovering interesting locations in mostly unrehearsed sequences globe trekker alsometimes includes brief interviews with backpacking travel backpackers who share tips on independentravel in that particular country production details it usually takes to weeks to complete an episode of the show from starto finish including at least four weeks of research three weeks of planning and preparation speaking tourist boards making travel arrangements two to three weeks of actual filming and three weeks ofilm editing and post production the presenter is often accompanied by five or six members ofilm crew camerand production crewho almost never appear on camera specifically the crew consists of a camera operator and a utility sound technician sound technician plus a television producer and a television director who scout locations two weeks before filming a driving driver aviator pilot or other type ofacilitator is often hired locally a presenter and crew almost never spend more than three nights in one particularea theme music the series is known for its distinctive theme and background music which consists largely of instrumental downtempo electronic dance compositions containinglobal folk music elements most of the music is written for the show by ian ritchie producer ian ritchie michael conn colin winston fletcher makoto sakamoto jesper mattsson musician jesper mattsson stephen luscombe and pandit dinesh pilot productions employseveral presenters for its variety of programs which include planet food bazaar world cafe and treks in a wild world this list of presenters is limited to those appearing in globe trekker hosts pilotguidescom jonathan atherton danielle baker brianna barnestelle bingham christina chang bobby chinn kt comer bradley cooper mark crowdy zoe d amato andrew daddo tyler florence neil gibsonikki grosse zay harding katy haswell judith jones padma lakshmi megan mccormick shilpa mehta holly morris author holly morris eils nevitt zoe palmerrilees parker alex riley comedian alex riley sami sabiti justine shapiro lavinia tan adela ucar lucille witney ian wrightraveller ian wright matt young episodeseason class wikitable title presented by indonesia theastern islands mark crowdy pacific islands fiji vanuatu the solomon islands ian wright africa zimbabwe botswanamibiandrew daddo moroco ian wright south east australian wright ecuador the galapagos islands justine shapiro vietnam justine shapiro japan tokyo to taiwan ian wright la ruta maya justine shapiro alaska ian wright north east brazil ian wright north india varanasi to the himalayas andrew daddo jamaica ian wright season class wikitable title presented by israel the sinai desert justine shapiro east africa tanzania zanzibar ian wright central asian wrighthe american rockies ian wright south west china justine shapiro chileaster island ian wright south india justine shapiro baja californian wright west africa benin burkina faso mali justine shapiro trekking in ugandand congo nikki grosse turkey justine shapiro corsica sardinia sicily ian wright iceland greenland ian wright season class wikitable title presented by new york city guide ian wright syria jordan lebanon ian wright argentina justine shapiro ethiopian wright south africa lesotho justine shapiro cuba haitian wright philippineshilpa mehta outback australian wright pakistaneil gibson peru neil gibsonorthern spain shilpa mehta south west usa justine shapiro hungary romanian wright season class wikitable title presented by northailand laos ian wright central america costa rica nicaragua neil gibson indonesia bali sulawesi shilpa mehta iran ian wright norway ian wright london city guide jonathan atherton mongolian wright czech republic southern poland justine shapiro papua new guinea jonathan atherton paris city guide justine shapiro nepal ian wright southern italy justine shapiro amsterdam city guide jonathan atherton season class wikitable title presented by hawaii megan mccormick finland the baltic states neil gibson west india megan mccormick san francisco city guide justine shapiro new zealand ian wright mexico city guide justine shapiro malaysia southern thailand justine shapiro rio de janeiro city guide ian wright sydney city guide justine shapiro egypt megan mccormick west africa ghana the ivory coast megan mccormick arcticanada ian wright new orleans city guide justine shapiro season class wikitable title presented by greece christina chang micronesia megan mccormick ireland ian wright cambodian wright deep south usa ian wright eastern caribbean justine shapiro sri lanka maldive islands megan mccormick moscow st petersburg and murmansk ian wright bolivian wright world history england justine shapiro madagascar ian wright southern spain christina chang world food vietnamegan mccormick season class wikitable title presented by queensland the great barriereef megan mccormick venezuela ian wright georgiarmenian wright northern italy megan mccormick greek islands megan mccormick tunisia libya ian wright california justine shapiro tahiti samoa ian wright scotland megan mccormick south west australia estelle bingham germany justine shapiro portugal and the azores megan mccormick central china megan mccormick season class wikitable title presented by istanbul city guidestelle bingham beijing city guide megan mccormick south ofrance christina chang javand sumatra megan mccormickenya estelle bingham vienna city guide ian wright new england usa megan mccormick ultimate indo china multiple travelers rome city guidestelle bingham south korea ian wright ultimate australia multiple travelers asian cities calcutta shanghai bangkok multiple travelersouthern mexico ian wright season class wikitable title presented by arab gulf states megan mccormick northern france justine shapiro tuscany ian wright london jonathan atherton megan mccormick morocco ian wright megan mccormick washington dcity guide justine shapiro great festivals multiple travelers ultimate france multiple travelers ultimate italy multiple travelers marrakech andubai city guides megan mccormick hong kong taiwan megan mccormick world history middleast multiple travelers new york ian wright megan mccormick season class wikitable title presented by tokyo city guide ian wright mozambique ian wright cameroon zay harding south east china zay harding ultimate caribbean multiple travelersouth africa justine shapiro sami sabiti belgium and luxembourg katy haswell ultimate mexico multiple travelers pacific north west usami sabiti floridand the bahamas lavinia tan ultimate china multiple travelers ultimate india multiple travelers western canada zay harding season class wikitable title presented by england wales ian wright mid west usa justine shapiro venice city guide justine shapiro south east usa megan mccormick civil war special megan mccormick justine shapiro malaysia penang malacca borneo ian wright indian ocean islands ian wright new zealand ian wright zay harding chinatown special multiple travelers beirut city guide multiple travelers ultimate uk multiple travelers great festivals multiple travelers the good and bad food guide multiple travelerseason class wikitable title presented by sweden andenmark megan mccormick spanish islands alex riley las vegas city guide ian wright galleons pirates and treasure special megan mccormick colombiand panama megan mccormick trekking the turks and caicos islands and walking the milford track ian wright zay harding ice trekking the alps zay harding paris city guide adela ucar justine shapiro cyprus and crete kt comer adela ucar great journeys road warriors multiple travelers globe shopper multiple travelers great journeys planes trains and automobiles multiple travelers eco trekker special great natural wonders multiple travelerseason class wikitable title presented by los angeles megan mccormick zambia malawi holly morris honduras el salvador brianna barnesenegal cape verde zoe palmer utah colorado holly morris the caribbean islands zoe palmer world war iin europe multiple travelers germany megan mccormick justine shapiro the balkans zay harding volcanoes rings ofire multiple travelers transatlantic slave trade multiple travelers planet of the apespecial multiple travelers trekking the pacific kokoda trail zoe palmer matt young papua new guinea the cook islands unknown season class wikitable title presented by holy lands jerusalem the west bank zay harding holy lands israel zay harding barcelona city guide megan mccormick madrid city guide adela ucar turkey adela ucar syria holly morris antarctica zay harding the south atlantic zay harding nigeriadela ucar ukraine holly morris the netherlands brianna barnes amsterdam brianna barnes endangered places multiple travelerseason class wikitable title presented by puerto rico zay harding papua new guinea islands zay harding bangladesholly morris great historic sites the age of empire multiple travelers great historic sites the modern world multiple travelers world war ii the pacific multiple travelers eastexas zay harding westexas zay harding mid atlantic states usa brianna barnes eastern canada zoe d amato isolated islands marshall islands dutch antilles zay harding london brianna barnes uruguay paraguay holly morriseason class wikitable title presented by buenos aires city guide judith jones colonial australia zay harding artrails of the french riviera kate comer great australian hikes zay harding myanmar megan mccormick world war i the western front zay hardingood and bad food andrink guide multiple travelers northeast england judith joneswitzerland brianna barnes building england before there were architects judith jones delhi and rajasthan holly morris central japan megan mccormick mumbai city guide zay harding round the world class wikitable title presented by across america route beyond justine shapiro pan americana conquistadors aztecs revolutions judith jones pan americana conquistadors incas inquisitions brianna barnes pacific journeysantiago to pitcairn zay harding pacific journeys tonga to new caledonia zay harding the silk road xi an to kashgar megan mccormick the silk road kashgar to istanbul holly morris easto west istanbul to vienna ian wright season class wikitable title presented by building england the age of architects judith jones road trip ruta patagonia zay harding road trip ruta the andes zay harding top ten south american adventures multiple travelers isolated islandsaint helena zay harding poland megan mccormick delhi and agra ian wrightop ten african adventuresacred placespecial great mosques multiple travelers the rise and fall of the british raj zay harding voice over involving multiple travellers ian wright mostly bobby chin holly morris the wild west usa multiple travelers hawaii zoe d amato rust belt highway usa megan mccormick externalinks official website category adventureality television series category british travel television series category american travel television series category american adventure television series category american television series debuts category s american television series category s american television series category s american television series category british television programme debuts category s british television series category s british television series category s british television series category british adventure television series category english language television programming category channel television programmes category pbs kidshows category adventure travel","main_words":["globe","trekker","sometimes_called","pilot","guides","australiand","thailand","originally","broadcast","lonely_planet","adventure_travel","adventure_tourism","television_series","produced","pilot","productions","united_kingdom","british","series","inspired","lonely","began","airing","globe","trekker","broadcast","countries","continents","program","including","six","american","cable","ace","awards","program","synopsis","episode","features","host","called","traveller","travels","camera","crew","country","often","relatively","exotic","locale","experiences","culture","thathe","location","toffer","special","episodes","feature","depth","city","beach","scuba","diving","dive","volcano","shopping","travel","journey","history","festival","show","often","goes","far","beyond","order","give","viewers","authentic","look","local_culture","presenters","usually","participate","different","aspects","attending","traditional","wedding","visiting","mining","community","address","viewer","directly","acting","tourists","turned","tour_guides","also","filmed","interacting","locals","interesting","locations","mostly","globe","trekker","alsometimes","includes","brief","interviews","backpacking_travel","backpackers","share","tips","independentravel","particular","country","production","details","usually","takes","weeks","complete","episode","show","starto","finish","including","least","four","weeks","research","three","weeks","planning","preparation","speaking","tourist_boards","making","travel","arrangements","two","three","weeks","actual","filming","three","weeks","ofilm","editing","post","production","presenter","often","accompanied","five","six","members","ofilm","crew","camerand","production","almost","never","appear","camera","specifically","crew","consists","camera","operator","utility","sound","technician","sound","technician","plus","television","producer","television","director","scout","locations","two_weeks","filming","driving","driver","pilot","type","often","hired","locally","presenter","crew","almost","never","spend","three","nights","one","particularea","theme","music","series","known","distinctive","theme","background","music","consists","largely","instrumental","electronic_dance","folk","music","elements","music","written","show","ian","producer","ian","michael","colin","winston","musician","stephen","pilot","productions","presenters","variety","programs","include","planet","food","bazaar","world","cafe","treks","wild","world","list","presenters","limited","appearing","globe","trekker","hosts","jonathan","atherton","baker","brianna","bingham","christina","chang","bobby","comer","bradley","cooper","mark","zoe","andrew","daddo","tyler","florence","neil","zay_harding","katy","judith","jones","megan_mccormick","shilpa","mehta","holly","morris","author","holly","morris","zoe","parker","alex","riley","comedian","alex","riley","sami","justine_shapiro","tan","adela","ucar","ian","ian_wright","matt","young","class","wikitable_title_presented","indonesia","theastern","islands","mark","pacific","islands","fiji","solomon","islands","ian_wright","africa","zimbabwe","daddo","ian_wright","south_east","australian","wright","ecuador","galapagos_islands","justine_shapiro","vietnam","justine_shapiro","japan","tokyo","taiwan","ian_wright","la","ruta","maya","justine_shapiro","alaska","ian_wright","north_east","brazil","ian_wright","north","india","himalayas","andrew","daddo","jamaica","ian_wright","season_class","wikitable_title_presented","israel","sinai","desert","justine_shapiro","east","africa","tanzania","zanzibar","ian_wright","central","asian","american","rockies","ian_wright","south_west","china","justine_shapiro","island","ian_wright","south","india","justine_shapiro","baja","wright","west","africa","benin","justine_shapiro","trekking","ugandand","congo","turkey","justine_shapiro","corsica","sardinia","sicily","ian_wright","iceland","ian_wright","season_class","wikitable_title_presented","new_york","city_guide","ian_wright","syria","jordan","lebanon","ian_wright","argentina","justine_shapiro","ethiopian","wright","south_africa","justine_shapiro","cuba","haitian","wright","mehta","outback","australian","wright","gibson","peru","neil","spain","shilpa","mehta","south_west","usa","justine_shapiro","hungary","romanian","wright","season_class","wikitable_title_presented","laos","ian_wright","central_america","costa_rica","nicaragua","neil","gibson","indonesia","bali","shilpa","mehta","iran","ian_wright","norway","ian_wright","london","city_guide","jonathan","atherton","mongolian","wright","czech_republic","southern","poland","justine_shapiro","papua_new_guinea","jonathan","atherton","paris","city_guide","justine_shapiro","nepal","ian_wright","southern","italy","justine_shapiro","amsterdam","city_guide","jonathan","atherton","season_class","wikitable_title_presented","hawaii","megan_mccormick","finland","baltic","states","neil","gibson","west","india","megan_mccormick","san_francisco","city_guide","justine_shapiro","new_zealand","ian_wright","justine_shapiro","malaysia","southern","thailand","justine_shapiro","rio_de","janeiro","city_guide","ian_wright","sydney","city_guide","justine_shapiro","egypt","megan_mccormick","west","africa","ghana","coast","megan_mccormick","ian_wright","new_orleans","city_guide","justine_shapiro","season_class","wikitable_title_presented","greece","christina","chang","megan_mccormick","ireland","ian_wright","cambodian","wright","deep","south","usa","ian_wright","eastern","caribbean","justine_shapiro","sri_lanka","islands","megan_mccormick","moscow","st_petersburg","ian_wright","wright","world","history","england","justine_shapiro","madagascar","ian_wright","southern","spain","christina","chang","world","food","mccormick","season_class","wikitable_title_presented","queensland","great","barriereef","megan_mccormick","venezuela","ian_wright","wright","northern_italy","megan_mccormick","greek","islands","megan_mccormick","tunisia","libya","ian_wright","california","justine_shapiro","samoa","ian_wright","scotland","megan_mccormick","south_west","australia","bingham","germany","justine_shapiro","portugal","azores","megan_mccormick","central","china","megan_mccormick","season_class","wikitable_title_presented","istanbul","city","bingham","beijing","city_guide","megan_mccormick","south","ofrance","christina","chang","megan","bingham","vienna","city_guide","ian_wright","new_england","usa","megan_mccormick","ultimate","indo","china","multiple_travelers","rome","city","bingham","south_korea","ian_wright","ultimate","australia","multiple_travelers","asian","cities","calcutta","shanghai","bangkok","multiple","mexico","ian_wright","season_class","wikitable_title_presented","arab","gulf","states","megan_mccormick","northern","france","justine_shapiro","tuscany","ian_wright","london","jonathan","atherton","megan_mccormick","morocco","ian_wright","megan_mccormick","washington","guide","justine_shapiro","great","festivals","multiple_travelers","ultimate","france","multiple_travelers","ultimate","italy","multiple_travelers","marrakech","city_guides","megan_mccormick","hong_kong","taiwan","megan_mccormick","world","history","middleast","multiple_travelers","new_york","ian_wright","megan_mccormick","season_class","wikitable_title_presented","tokyo","city_guide","ian_wright","ian_wright","cameroon","zay_harding","south_east","china","zay_harding","ultimate","caribbean","multiple","africa","justine_shapiro","sami","belgium","luxembourg","katy","ultimate","mexico","multiple_travelers","pacific","north_west","floridand","bahamas","tan","ultimate","china","multiple_travelers","ultimate","india","multiple_travelers","western","canada","zay_harding","season_class","wikitable_title_presented","england_wales","ian_wright","mid","west","usa","justine_shapiro","venice","city_guide","justine_shapiro","south_east","usa","megan_mccormick","civil_war","special","megan_mccormick","justine_shapiro","malaysia","penang","malacca","ian_wright","indian","ocean","islands","ian_wright","new_zealand","ian_wright","zay_harding","chinatown","special","multiple_travelers","beirut","city_guide","multiple_travelers","ultimate","uk","multiple_travelers","great","festivals","multiple_travelers","good","bad","multiple","class","wikitable_title_presented","sweden","andenmark","megan_mccormick","spanish","islands","alex","riley","las_vegas","city_guide","ian_wright","pirates","treasure","special","megan_mccormick","colombiand","panama","megan_mccormick","trekking","islands","walking","milford","track","ian_wright","zay_harding","ice","trekking","alps","zay_harding","paris","city_guide","adela","ucar","justine_shapiro","cyprus","comer","adela","ucar","great","journeys","road","warriors","multiple_travelers","globe","shopper","multiple_travelers","great","journeys","planes","trains","automobiles","multiple_travelers","eco","trekker","special","great","natural","wonders","multiple","class","wikitable_title_presented","los_angeles","megan_mccormick","zambia","malawi","holly","morris","honduras","el_salvador","brianna","cape","verde","zoe","palmer","utah","colorado","holly","morris","caribbean","islands","zoe","palmer","world_war","iin","europe","multiple_travelers","germany","megan_mccormick","justine_shapiro","zay_harding","rings","ofire","multiple_travelers","slave","trade","multiple_travelers","planet","multiple_travelers","trekking","pacific","trail","zoe","palmer","matt","young","papua_new_guinea","cook","islands","unknown","season_class","wikitable_title_presented","jerusalem","west","bank","zay_harding","israel","zay_harding","barcelona","city_guide","megan_mccormick","madrid","city_guide","adela","ucar","turkey","adela","ucar","syria","holly","morris","antarctica","zay_harding","south","atlantic","zay_harding","ucar","ukraine","holly","morris","netherlands","brianna","barnes","amsterdam","brianna","barnes","endangered","places","multiple","class","wikitable_title_presented","puerto_rico","zay_harding","papua_new_guinea","islands","zay_harding","morris","great","historic_sites","age","empire","multiple_travelers","great","historic_sites","modern","world","multiple_travelers","world_war","ii","pacific","multiple_travelers","zay_harding","westexas","zay_harding","mid","atlantic","brianna","barnes","eastern","canada","zoe","isolated","islands","marshall","islands","dutch","zay_harding","london","brianna","barnes","uruguay","holly","class","wikitable_title_presented","buenos_aires","city_guide","judith","jones","colonial","australia","zay_harding","french","riviera","kate","comer","great","australian","zay_harding","myanmar","megan_mccormick","world_war","western","front","bad","food_andrink","guide","multiple_travelers","northeast","england","judith","brianna","barnes","building","england","architects","judith","jones","delhi","holly","morris","central","japan","megan_mccormick","mumbai","city_guide","zay_harding","round","world","class","wikitable_title_presented","across","america","route","beyond","justine_shapiro","pan","americana","conquistadors","judith","jones","pan","americana","conquistadors","brianna","barnes","pacific","pitcairn","zay_harding","pacific","journeys","tonga","new","zay_harding","silk","road","megan_mccormick","silk","road","istanbul","holly","morris","easto","west","istanbul","vienna","ian_wright","season_class","wikitable_title_presented","building","england","age","architects","judith","jones","road_trip","ruta","patagonia","zay_harding","road_trip","ruta","andes","zay_harding","top","ten","south_american","adventures","multiple_travelers","isolated","helena","zay_harding","poland","megan_mccormick","delhi","ian","ten","african","great","multiple_travelers","rise","fall","british","raj","zay_harding","voice","involving","multiple","travellers","ian_wright","mostly","bobby","holly","morris","wild","west","usa","multiple_travelers","hawaii","zoe","rust","belt","highway","usa","megan_mccormick","externalinks_official_website_category","television_series_category_british","adventure","television_series_category_american","television_series","debuts_category_american","television_series_category_american","television_series_category_american","television_series_category_british","television","programme","television_series_category_british","television_series_category_british","television_series_category_british","adventure","television_series_category_english_language","television","programming","category","channel","television","programmes","category","pbs","category_adventure_travel"],"clean_bigrams":[["globe","trekker"],["trekker","sometimes"],["sometimes","called"],["called","pilot"],["pilot","guides"],["australiand","thailand"],["thailand","originally"],["originally","broadcast"],["lonely","planet"],["adventure","travel"],["travel","adventure"],["adventure","tourism"],["tourism","television"],["television","series"],["series","produced"],["pilot","productions"],["united","kingdom"],["kingdom","british"],["british","series"],["began","airing"],["globe","trekker"],["international","awards"],["awards","including"],["including","six"],["six","american"],["american","cable"],["cable","ace"],["ace","awards"],["awards","program"],["program","synopsis"],["episode","features"],["host","called"],["camera","crew"],["country","often"],["relatively","exotic"],["exotic","locale"],["culture","thathe"],["thathe","location"],["toffer","special"],["special","episodes"],["episodes","feature"],["depth","city"],["city","beach"],["scuba","diving"],["diving","dive"],["dive","volcano"],["volcano","shopping"],["shopping","travel"],["travel","journey"],["journey","history"],["history","festival"],["food","guides"],["show","often"],["often","goes"],["goes","far"],["far","beyond"],["beyond","popular"],["popular","tourist"],["tourist","destinations"],["give","viewers"],["authentic","look"],["local","culture"],["culture","presenters"],["presenters","usually"],["usually","participate"],["different","aspects"],["traditional","wedding"],["mining","community"],["viewer","directly"],["directly","acting"],["tourists","turned"],["turned","tour"],["tour","guides"],["also","filmed"],["filmed","interacting"],["interesting","locations"],["globe","trekker"],["trekker","alsometimes"],["alsometimes","includes"],["includes","brief"],["brief","interviews"],["backpacking","travel"],["travel","backpackers"],["share","tips"],["particular","country"],["country","production"],["production","details"],["usually","takes"],["starto","finish"],["finish","including"],["least","four"],["four","weeks"],["research","three"],["three","weeks"],["preparation","speaking"],["speaking","tourist"],["tourist","boards"],["boards","making"],["making","travel"],["travel","arrangements"],["arrangements","two"],["three","weeks"],["actual","filming"],["three","weeks"],["weeks","ofilm"],["ofilm","editing"],["post","production"],["often","accompanied"],["six","members"],["members","ofilm"],["ofilm","crew"],["crew","camerand"],["camerand","production"],["almost","never"],["never","appear"],["camera","specifically"],["crew","consists"],["camera","operator"],["utility","sound"],["sound","technician"],["technician","sound"],["sound","technician"],["technician","plus"],["television","producer"],["television","director"],["scout","locations"],["locations","two"],["two","weeks"],["driving","driver"],["often","hired"],["hired","locally"],["crew","almost"],["almost","never"],["never","spend"],["three","nights"],["one","particularea"],["particularea","theme"],["theme","music"],["distinctive","theme"],["background","music"],["consists","largely"],["electronic","dance"],["folk","music"],["music","elements"],["producer","ian"],["colin","winston"],["pilot","productions"],["include","planet"],["planet","food"],["food","bazaar"],["bazaar","world"],["world","cafe"],["wild","world"],["globe","trekker"],["trekker","hosts"],["jonathan","atherton"],["baker","brianna"],["bingham","christina"],["christina","chang"],["chang","bobby"],["comer","bradley"],["bradley","cooper"],["cooper","mark"],["andrew","daddo"],["daddo","tyler"],["tyler","florence"],["florence","neil"],["zay","harding"],["harding","katy"],["judith","jones"],["megan","mccormick"],["mccormick","shilpa"],["shilpa","mehta"],["mehta","holly"],["holly","morris"],["morris","author"],["author","holly"],["holly","morris"],["parker","alex"],["alex","riley"],["riley","comedian"],["comedian","alex"],["alex","riley"],["riley","sami"],["justine","shapiro"],["tan","adela"],["adela","ucar"],["ian","wright"],["wright","matt"],["matt","young"],["class","wikitable"],["wikitable","title"],["title","presented"],["indonesia","theastern"],["theastern","islands"],["islands","mark"],["pacific","islands"],["islands","fiji"],["solomon","islands"],["islands","ian"],["ian","wright"],["wright","africa"],["africa","zimbabwe"],["ian","wright"],["wright","south"],["south","east"],["east","australian"],["australian","wright"],["wright","ecuador"],["galapagos","islands"],["islands","justine"],["justine","shapiro"],["shapiro","vietnam"],["vietnam","justine"],["justine","shapiro"],["shapiro","japan"],["japan","tokyo"],["taiwan","ian"],["ian","wright"],["wright","la"],["la","ruta"],["ruta","maya"],["maya","justine"],["justine","shapiro"],["shapiro","alaska"],["alaska","ian"],["ian","wright"],["wright","north"],["north","east"],["east","brazil"],["brazil","ian"],["ian","wright"],["wright","north"],["north","india"],["himalayas","andrew"],["andrew","daddo"],["daddo","jamaica"],["jamaica","ian"],["ian","wright"],["wright","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["sinai","desert"],["desert","justine"],["justine","shapiro"],["shapiro","east"],["east","africa"],["africa","tanzania"],["tanzania","zanzibar"],["zanzibar","ian"],["ian","wright"],["wright","central"],["central","asian"],["american","rockies"],["rockies","ian"],["ian","wright"],["wright","south"],["south","west"],["west","china"],["china","justine"],["justine","shapiro"],["island","ian"],["ian","wright"],["wright","south"],["south","india"],["india","justine"],["justine","shapiro"],["shapiro","baja"],["wright","west"],["west","africa"],["africa","benin"],["justine","shapiro"],["shapiro","trekking"],["ugandand","congo"],["turkey","justine"],["justine","shapiro"],["shapiro","corsica"],["corsica","sardinia"],["sardinia","sicily"],["sicily","ian"],["ian","wright"],["wright","iceland"],["ian","wright"],["wright","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["new","york"],["york","city"],["city","guide"],["guide","ian"],["ian","wright"],["wright","syria"],["syria","jordan"],["jordan","lebanon"],["lebanon","ian"],["ian","wright"],["wright","argentina"],["argentina","justine"],["justine","shapiro"],["shapiro","ethiopian"],["ethiopian","wright"],["wright","south"],["south","africa"],["africa","justine"],["justine","shapiro"],["shapiro","cuba"],["cuba","haitian"],["haitian","wright"],["mehta","outback"],["outback","australian"],["australian","wright"],["gibson","peru"],["peru","neil"],["spain","shilpa"],["shilpa","mehta"],["mehta","south"],["south","west"],["west","usa"],["usa","justine"],["justine","shapiro"],["shapiro","hungary"],["hungary","romanian"],["romanian","wright"],["wright","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["laos","ian"],["ian","wright"],["wright","central"],["central","america"],["america","costa"],["costa","rica"],["rica","nicaragua"],["nicaragua","neil"],["neil","gibson"],["gibson","indonesia"],["indonesia","bali"],["shilpa","mehta"],["mehta","iran"],["iran","ian"],["ian","wright"],["wright","norway"],["norway","ian"],["ian","wright"],["wright","london"],["london","city"],["city","guide"],["guide","jonathan"],["jonathan","atherton"],["atherton","mongolian"],["mongolian","wright"],["wright","czech"],["czech","republic"],["republic","southern"],["southern","poland"],["poland","justine"],["justine","shapiro"],["shapiro","papua"],["papua","new"],["new","guinea"],["guinea","jonathan"],["jonathan","atherton"],["atherton","paris"],["paris","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","nepal"],["nepal","ian"],["ian","wright"],["wright","southern"],["southern","italy"],["italy","justine"],["justine","shapiro"],["shapiro","amsterdam"],["amsterdam","city"],["city","guide"],["guide","jonathan"],["jonathan","atherton"],["atherton","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["hawaii","megan"],["megan","mccormick"],["mccormick","finland"],["baltic","states"],["states","neil"],["neil","gibson"],["gibson","west"],["west","india"],["india","megan"],["megan","mccormick"],["mccormick","san"],["san","francisco"],["francisco","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","new"],["new","zealand"],["zealand","ian"],["ian","wright"],["wright","mexico"],["mexico","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","malaysia"],["malaysia","southern"],["southern","thailand"],["thailand","justine"],["justine","shapiro"],["shapiro","rio"],["rio","de"],["de","janeiro"],["janeiro","city"],["city","guide"],["guide","ian"],["ian","wright"],["wright","sydney"],["sydney","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","egypt"],["egypt","megan"],["megan","mccormick"],["mccormick","west"],["west","africa"],["africa","ghana"],["coast","megan"],["megan","mccormick"],["ian","wright"],["wright","new"],["new","orleans"],["orleans","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["greece","christina"],["christina","chang"],["megan","mccormick"],["mccormick","ireland"],["ireland","ian"],["ian","wright"],["wright","cambodian"],["cambodian","wright"],["wright","deep"],["deep","south"],["south","usa"],["usa","ian"],["ian","wright"],["wright","eastern"],["eastern","caribbean"],["caribbean","justine"],["justine","shapiro"],["shapiro","sri"],["sri","lanka"],["islands","megan"],["megan","mccormick"],["mccormick","moscow"],["moscow","st"],["st","petersburg"],["ian","wright"],["wright","world"],["world","history"],["history","england"],["england","justine"],["justine","shapiro"],["shapiro","madagascar"],["madagascar","ian"],["ian","wright"],["wright","southern"],["southern","spain"],["spain","christina"],["christina","chang"],["chang","world"],["world","food"],["mccormick","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["great","barriereef"],["barriereef","megan"],["megan","mccormick"],["mccormick","venezuela"],["venezuela","ian"],["ian","wright"],["wright","northern"],["northern","italy"],["italy","megan"],["megan","mccormick"],["mccormick","greek"],["greek","islands"],["islands","megan"],["megan","mccormick"],["mccormick","tunisia"],["tunisia","libya"],["libya","ian"],["ian","wright"],["wright","california"],["california","justine"],["justine","shapiro"],["samoa","ian"],["ian","wright"],["wright","scotland"],["scotland","megan"],["megan","mccormick"],["mccormick","south"],["south","west"],["west","australia"],["bingham","germany"],["germany","justine"],["justine","shapiro"],["shapiro","portugal"],["azores","megan"],["megan","mccormick"],["mccormick","central"],["central","china"],["china","megan"],["megan","mccormick"],["mccormick","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["istanbul","city"],["bingham","beijing"],["beijing","city"],["city","guide"],["guide","megan"],["megan","mccormick"],["mccormick","south"],["south","ofrance"],["ofrance","christina"],["christina","chang"],["bingham","vienna"],["vienna","city"],["city","guide"],["guide","ian"],["ian","wright"],["wright","new"],["new","england"],["england","usa"],["usa","megan"],["megan","mccormick"],["mccormick","ultimate"],["ultimate","indo"],["indo","china"],["china","multiple"],["multiple","travelers"],["travelers","rome"],["rome","city"],["bingham","south"],["south","korea"],["korea","ian"],["ian","wright"],["wright","ultimate"],["ultimate","australia"],["australia","multiple"],["multiple","travelers"],["travelers","asian"],["asian","cities"],["cities","calcutta"],["calcutta","shanghai"],["shanghai","bangkok"],["bangkok","multiple"],["mexico","ian"],["ian","wright"],["wright","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["arab","gulf"],["gulf","states"],["states","megan"],["megan","mccormick"],["mccormick","northern"],["northern","france"],["france","justine"],["justine","shapiro"],["shapiro","tuscany"],["tuscany","ian"],["ian","wright"],["wright","london"],["london","jonathan"],["jonathan","atherton"],["atherton","megan"],["megan","mccormick"],["mccormick","morocco"],["morocco","ian"],["ian","wright"],["wright","megan"],["megan","mccormick"],["mccormick","washington"],["guide","justine"],["justine","shapiro"],["shapiro","great"],["great","festivals"],["festivals","multiple"],["multiple","travelers"],["travelers","ultimate"],["ultimate","france"],["france","multiple"],["multiple","travelers"],["travelers","ultimate"],["ultimate","italy"],["italy","multiple"],["multiple","travelers"],["travelers","marrakech"],["city","guides"],["guides","megan"],["megan","mccormick"],["mccormick","hong"],["hong","kong"],["kong","taiwan"],["taiwan","megan"],["megan","mccormick"],["mccormick","world"],["world","history"],["history","middleast"],["middleast","multiple"],["multiple","travelers"],["travelers","new"],["new","york"],["york","ian"],["ian","wright"],["wright","megan"],["megan","mccormick"],["mccormick","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["tokyo","city"],["city","guide"],["guide","ian"],["ian","wright"],["ian","wright"],["wright","cameroon"],["cameroon","zay"],["zay","harding"],["harding","south"],["south","east"],["east","china"],["china","zay"],["zay","harding"],["harding","ultimate"],["ultimate","caribbean"],["caribbean","multiple"],["africa","justine"],["justine","shapiro"],["shapiro","sami"],["luxembourg","katy"],["ultimate","mexico"],["mexico","multiple"],["multiple","travelers"],["travelers","pacific"],["pacific","north"],["north","west"],["tan","ultimate"],["ultimate","china"],["china","multiple"],["multiple","travelers"],["travelers","ultimate"],["ultimate","india"],["india","multiple"],["multiple","travelers"],["travelers","western"],["western","canada"],["canada","zay"],["zay","harding"],["harding","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["england","wales"],["wales","ian"],["ian","wright"],["wright","mid"],["mid","west"],["west","usa"],["usa","justine"],["justine","shapiro"],["shapiro","venice"],["venice","city"],["city","guide"],["guide","justine"],["justine","shapiro"],["shapiro","south"],["south","east"],["east","usa"],["usa","megan"],["megan","mccormick"],["mccormick","civil"],["civil","war"],["war","special"],["special","megan"],["megan","mccormick"],["mccormick","justine"],["justine","shapiro"],["shapiro","malaysia"],["malaysia","penang"],["penang","malacca"],["ian","wright"],["wright","indian"],["indian","ocean"],["ocean","islands"],["islands","ian"],["ian","wright"],["wright","new"],["new","zealand"],["zealand","ian"],["ian","wright"],["wright","zay"],["zay","harding"],["harding","chinatown"],["chinatown","special"],["special","multiple"],["multiple","travelers"],["travelers","beirut"],["beirut","city"],["city","guide"],["guide","multiple"],["multiple","travelers"],["travelers","ultimate"],["ultimate","uk"],["uk","multiple"],["multiple","travelers"],["travelers","great"],["great","festivals"],["festivals","multiple"],["multiple","travelers"],["bad","food"],["food","guide"],["guide","multiple"],["class","wikitable"],["wikitable","title"],["title","presented"],["sweden","andenmark"],["andenmark","megan"],["megan","mccormick"],["mccormick","spanish"],["spanish","islands"],["islands","alex"],["alex","riley"],["riley","las"],["las","vegas"],["vegas","city"],["city","guide"],["guide","ian"],["ian","wright"],["treasure","special"],["special","megan"],["megan","mccormick"],["mccormick","colombiand"],["colombiand","panama"],["panama","megan"],["megan","mccormick"],["mccormick","trekking"],["milford","track"],["track","ian"],["ian","wright"],["wright","zay"],["zay","harding"],["harding","ice"],["ice","trekking"],["alps","zay"],["zay","harding"],["harding","paris"],["paris","city"],["city","guide"],["guide","adela"],["adela","ucar"],["ucar","justine"],["justine","shapiro"],["shapiro","cyprus"],["comer","adela"],["adela","ucar"],["ucar","great"],["great","journeys"],["journeys","road"],["road","warriors"],["warriors","multiple"],["multiple","travelers"],["travelers","globe"],["globe","shopper"],["shopper","multiple"],["multiple","travelers"],["travelers","great"],["great","journeys"],["journeys","planes"],["planes","trains"],["automobiles","multiple"],["multiple","travelers"],["travelers","eco"],["eco","trekker"],["trekker","special"],["special","great"],["great","natural"],["natural","wonders"],["wonders","multiple"],["class","wikitable"],["wikitable","title"],["title","presented"],["los","angeles"],["angeles","megan"],["megan","mccormick"],["mccormick","zambia"],["zambia","malawi"],["malawi","holly"],["holly","morris"],["morris","honduras"],["honduras","el"],["el","salvador"],["salvador","brianna"],["cape","verde"],["verde","zoe"],["zoe","palmer"],["palmer","utah"],["utah","colorado"],["colorado","holly"],["holly","morris"],["caribbean","islands"],["islands","zoe"],["zoe","palmer"],["palmer","world"],["world","war"],["war","iin"],["iin","europe"],["europe","multiple"],["multiple","travelers"],["travelers","germany"],["germany","megan"],["megan","mccormick"],["mccormick","justine"],["justine","shapiro"],["zay","harding"],["rings","ofire"],["ofire","multiple"],["multiple","travelers"],["slave","trade"],["trade","multiple"],["multiple","travelers"],["travelers","planet"],["multiple","travelers"],["travelers","trekking"],["trail","zoe"],["zoe","palmer"],["palmer","matt"],["matt","young"],["young","papua"],["papua","new"],["new","guinea"],["cook","islands"],["islands","unknown"],["unknown","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["holy","lands"],["lands","jerusalem"],["west","bank"],["bank","zay"],["zay","harding"],["harding","holy"],["holy","lands"],["lands","israel"],["israel","zay"],["zay","harding"],["harding","barcelona"],["barcelona","city"],["city","guide"],["guide","megan"],["megan","mccormick"],["mccormick","madrid"],["madrid","city"],["city","guide"],["guide","adela"],["adela","ucar"],["ucar","turkey"],["turkey","adela"],["adela","ucar"],["ucar","syria"],["syria","holly"],["holly","morris"],["morris","antarctica"],["antarctica","zay"],["zay","harding"],["harding","south"],["south","atlantic"],["atlantic","zay"],["zay","harding"],["ucar","ukraine"],["ukraine","holly"],["holly","morris"],["netherlands","brianna"],["brianna","barnes"],["barnes","amsterdam"],["amsterdam","brianna"],["brianna","barnes"],["barnes","endangered"],["endangered","places"],["places","multiple"],["class","wikitable"],["wikitable","title"],["title","presented"],["puerto","rico"],["rico","zay"],["zay","harding"],["harding","papua"],["papua","new"],["new","guinea"],["guinea","islands"],["islands","zay"],["zay","harding"],["morris","great"],["great","historic"],["historic","sites"],["empire","multiple"],["multiple","travelers"],["travelers","great"],["great","historic"],["historic","sites"],["modern","world"],["world","multiple"],["multiple","travelers"],["travelers","world"],["world","war"],["war","ii"],["pacific","multiple"],["multiple","travelers"],["zay","harding"],["harding","westexas"],["westexas","zay"],["zay","harding"],["harding","mid"],["mid","atlantic"],["atlantic","states"],["states","usa"],["usa","brianna"],["brianna","barnes"],["barnes","eastern"],["eastern","canada"],["canada","zoe"],["isolated","islands"],["islands","marshall"],["marshall","islands"],["islands","dutch"],["zay","harding"],["harding","london"],["london","brianna"],["brianna","barnes"],["barnes","uruguay"],["class","wikitable"],["wikitable","title"],["title","presented"],["buenos","aires"],["aires","city"],["city","guide"],["guide","judith"],["judith","jones"],["jones","colonial"],["colonial","australia"],["australia","zay"],["zay","harding"],["french","riviera"],["riviera","kate"],["kate","comer"],["comer","great"],["great","australian"],["zay","harding"],["harding","myanmar"],["myanmar","megan"],["megan","mccormick"],["mccormick","world"],["world","war"],["western","front"],["front","zay"],["bad","food"],["food","andrink"],["andrink","guide"],["guide","multiple"],["multiple","travelers"],["travelers","northeast"],["northeast","england"],["england","judith"],["brianna","barnes"],["barnes","building"],["building","england"],["architects","judith"],["judith","jones"],["jones","delhi"],["holly","morris"],["morris","central"],["central","japan"],["japan","megan"],["megan","mccormick"],["mccormick","mumbai"],["mumbai","city"],["city","guide"],["guide","zay"],["zay","harding"],["harding","round"],["world","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["across","america"],["america","route"],["route","beyond"],["beyond","justine"],["justine","shapiro"],["shapiro","pan"],["pan","americana"],["americana","conquistadors"],["judith","jones"],["jones","pan"],["pan","americana"],["americana","conquistadors"],["brianna","barnes"],["barnes","pacific"],["pitcairn","zay"],["zay","harding"],["harding","pacific"],["pacific","journeys"],["journeys","tonga"],["zay","harding"],["silk","road"],["megan","mccormick"],["silk","road"],["istanbul","holly"],["holly","morris"],["morris","easto"],["easto","west"],["west","istanbul"],["vienna","ian"],["ian","wright"],["wright","season"],["season","class"],["class","wikitable"],["wikitable","title"],["title","presented"],["building","england"],["architects","judith"],["judith","jones"],["jones","road"],["road","trip"],["trip","ruta"],["ruta","patagonia"],["patagonia","zay"],["zay","harding"],["harding","road"],["road","trip"],["trip","ruta"],["andes","zay"],["zay","harding"],["harding","top"],["top","ten"],["ten","south"],["south","american"],["american","adventures"],["adventures","multiple"],["multiple","travelers"],["travelers","isolated"],["helena","zay"],["zay","harding"],["harding","poland"],["poland","megan"],["megan","mccormick"],["mccormick","delhi"],["ten","african"],["multiple","travelers"],["british","raj"],["raj","zay"],["zay","harding"],["harding","voice"],["involving","multiple"],["multiple","travellers"],["travellers","ian"],["ian","wright"],["wright","mostly"],["mostly","bobby"],["holly","morris"],["wild","west"],["west","usa"],["usa","multiple"],["multiple","travelers"],["travelers","hawaii"],["hawaii","zoe"],["rust","belt"],["belt","highway"],["highway","usa"],["usa","megan"],["megan","mccormick"],["mccormick","externalinks"],["externalinks","official"],["official","website"],["website","category"],["television","series"],["series","category"],["category","british"],["british","travel"],["travel","television"],["television","series"],["series","category"],["category","american"],["american","travel"],["travel","television"],["television","series"],["series","category"],["category","american"],["american","adventure"],["adventure","television"],["television","series"],["series","category"],["category","american"],["american","television"],["television","series"],["series","debuts"],["debuts","category"],["category","american"],["american","television"],["television","series"],["series","category"],["category","american"],["american","television"],["television","series"],["series","category"],["category","american"],["american","television"],["television","series"],["series","category"],["category","british"],["british","television"],["television","programme"],["programme","debuts"],["debuts","category"],["category","british"],["british","television"],["television","series"],["series","category"],["category","british"],["british","television"],["television","series"],["series","category"],["category","british"],["british","television"],["television","series"],["series","category"],["category","british"],["british","adventure"],["adventure","television"],["television","series"],["series","category"],["category","english"],["english","language"],["language","television"],["television","programming"],["programming","category"],["category","channel"],["channel","television"],["television","programmes"],["programmes","category"],["category","pbs"],["category","adventure"],["adventure","travel"]],"all_collocations":["globe trekker","trekker sometimes","sometimes called","called pilot","pilot guides","australiand thailand","thailand originally","originally broadcast","lonely planet","adventure travel","travel adventure","adventure tourism","tourism television","television series","series produced","pilot productions","united kingdom","kingdom british","british series","began airing","globe trekker","international awards","awards including","including six","six american","american cable","cable ace","ace awards","awards program","program synopsis","episode features","host called","camera crew","country often","relatively exotic","exotic locale","culture thathe","thathe location","toffer special","special episodes","episodes feature","depth city","city beach","scuba diving","diving dive","dive volcano","volcano shopping","shopping travel","travel journey","journey history","history festival","food guides","show often","often goes","goes far","far beyond","beyond popular","popular tourist","tourist destinations","give viewers","authentic look","local culture","culture presenters","presenters usually","usually participate","different aspects","traditional wedding","mining community","viewer directly","directly acting","tourists turned","turned tour","tour guides","also filmed","filmed interacting","interesting locations","globe trekker","trekker alsometimes","alsometimes includes","includes brief","brief interviews","backpacking travel","travel backpackers","share tips","particular country","country production","production details","usually takes","starto finish","finish including","least four","four weeks","research three","three weeks","preparation speaking","speaking tourist","tourist boards","boards making","making travel","travel arrangements","arrangements two","three weeks","actual filming","three weeks","weeks ofilm","ofilm editing","post production","often accompanied","six members","members ofilm","ofilm crew","crew camerand","camerand production","almost never","never appear","camera specifically","crew consists","camera operator","utility sound","sound technician","technician sound","sound technician","technician plus","television producer","television director","scout locations","locations two","two weeks","driving driver","often hired","hired locally","crew almost","almost never","never spend","three nights","one particularea","particularea theme","theme music","distinctive theme","background music","consists largely","electronic dance","folk music","music elements","producer ian","colin winston","pilot productions","include planet","planet food","food bazaar","bazaar world","world cafe","wild world","globe trekker","trekker hosts","jonathan atherton","baker brianna","bingham christina","christina chang","chang bobby","comer bradley","bradley cooper","cooper mark","andrew daddo","daddo tyler","tyler florence","florence neil","zay harding","harding katy","judith jones","megan mccormick","mccormick shilpa","shilpa mehta","mehta holly","holly morris","morris author","author holly","holly morris","parker alex","alex riley","riley comedian","comedian alex","alex riley","riley sami","justine shapiro","tan adela","adela ucar","ian wright","wright matt","matt young","wikitable title","title presented","indonesia theastern","theastern islands","islands mark","pacific islands","islands fiji","solomon islands","islands ian","ian wright","wright africa","africa zimbabwe","ian wright","wright south","south east","east australian","australian wright","wright ecuador","galapagos islands","islands justine","justine shapiro","shapiro vietnam","vietnam justine","justine shapiro","shapiro japan","japan tokyo","taiwan ian","ian wright","wright la","la ruta","ruta maya","maya justine","justine shapiro","shapiro alaska","alaska ian","ian wright","wright north","north east","east brazil","brazil ian","ian wright","wright north","north india","himalayas andrew","andrew daddo","daddo jamaica","jamaica ian","ian wright","wright season","season class","wikitable title","title presented","sinai desert","desert justine","justine shapiro","shapiro east","east africa","africa tanzania","tanzania zanzibar","zanzibar ian","ian wright","wright central","central asian","american rockies","rockies ian","ian wright","wright south","south west","west china","china justine","justine shapiro","island ian","ian wright","wright south","south india","india justine","justine shapiro","shapiro baja","wright west","west africa","africa benin","justine shapiro","shapiro trekking","ugandand congo","turkey justine","justine shapiro","shapiro corsica","corsica sardinia","sardinia sicily","sicily ian","ian wright","wright iceland","ian wright","wright season","season class","wikitable title","title presented","new york","york city","city guide","guide ian","ian wright","wright syria","syria jordan","jordan lebanon","lebanon ian","ian wright","wright argentina","argentina justine","justine shapiro","shapiro ethiopian","ethiopian wright","wright south","south africa","africa justine","justine shapiro","shapiro cuba","cuba haitian","haitian wright","mehta outback","outback australian","australian wright","gibson peru","peru neil","spain shilpa","shilpa mehta","mehta south","south west","west usa","usa justine","justine shapiro","shapiro hungary","hungary romanian","romanian wright","wright season","season class","wikitable title","title presented","laos ian","ian wright","wright central","central america","america costa","costa rica","rica nicaragua","nicaragua neil","neil gibson","gibson indonesia","indonesia bali","shilpa mehta","mehta iran","iran ian","ian wright","wright norway","norway ian","ian wright","wright london","london city","city guide","guide jonathan","jonathan atherton","atherton mongolian","mongolian wright","wright czech","czech republic","republic southern","southern poland","poland justine","justine shapiro","shapiro papua","papua new","new guinea","guinea jonathan","jonathan atherton","atherton paris","paris city","city guide","guide justine","justine shapiro","shapiro nepal","nepal ian","ian wright","wright southern","southern italy","italy justine","justine shapiro","shapiro amsterdam","amsterdam city","city guide","guide jonathan","jonathan atherton","atherton season","season class","wikitable title","title presented","hawaii megan","megan mccormick","mccormick finland","baltic states","states neil","neil gibson","gibson west","west india","india megan","megan mccormick","mccormick san","san francisco","francisco city","city guide","guide justine","justine shapiro","shapiro new","new zealand","zealand ian","ian wright","wright mexico","mexico city","city guide","guide justine","justine shapiro","shapiro malaysia","malaysia southern","southern thailand","thailand justine","justine shapiro","shapiro rio","rio de","de janeiro","janeiro city","city guide","guide ian","ian wright","wright sydney","sydney city","city guide","guide justine","justine shapiro","shapiro egypt","egypt megan","megan mccormick","mccormick west","west africa","africa ghana","coast megan","megan mccormick","ian wright","wright new","new orleans","orleans city","city guide","guide justine","justine shapiro","shapiro season","season class","wikitable title","title presented","greece christina","christina chang","megan mccormick","mccormick ireland","ireland ian","ian wright","wright cambodian","cambodian wright","wright deep","deep south","south usa","usa ian","ian wright","wright eastern","eastern caribbean","caribbean justine","justine shapiro","shapiro sri","sri lanka","islands megan","megan mccormick","mccormick moscow","moscow st","st petersburg","ian wright","wright world","world history","history england","england justine","justine shapiro","shapiro madagascar","madagascar ian","ian wright","wright southern","southern spain","spain christina","christina chang","chang world","world food","mccormick season","season class","wikitable title","title presented","great barriereef","barriereef megan","megan mccormick","mccormick venezuela","venezuela ian","ian wright","wright northern","northern italy","italy megan","megan mccormick","mccormick greek","greek islands","islands megan","megan mccormick","mccormick tunisia","tunisia libya","libya ian","ian wright","wright california","california justine","justine shapiro","samoa ian","ian wright","wright scotland","scotland megan","megan mccormick","mccormick south","south west","west australia","bingham germany","germany justine","justine shapiro","shapiro portugal","azores megan","megan mccormick","mccormick central","central china","china megan","megan mccormick","mccormick season","season class","wikitable title","title presented","istanbul city","bingham beijing","beijing city","city guide","guide megan","megan mccormick","mccormick south","south ofrance","ofrance christina","christina chang","bingham vienna","vienna city","city guide","guide ian","ian wright","wright new","new england","england usa","usa megan","megan mccormick","mccormick ultimate","ultimate indo","indo china","china multiple","multiple travelers","travelers rome","rome city","bingham south","south korea","korea ian","ian wright","wright ultimate","ultimate australia","australia multiple","multiple travelers","travelers asian","asian cities","cities calcutta","calcutta shanghai","shanghai bangkok","bangkok multiple","mexico ian","ian wright","wright season","season class","wikitable title","title presented","arab gulf","gulf states","states megan","megan mccormick","mccormick northern","northern france","france justine","justine shapiro","shapiro tuscany","tuscany ian","ian wright","wright london","london jonathan","jonathan atherton","atherton megan","megan mccormick","mccormick morocco","morocco ian","ian wright","wright megan","megan mccormick","mccormick washington","guide justine","justine shapiro","shapiro great","great festivals","festivals multiple","multiple travelers","travelers ultimate","ultimate france","france multiple","multiple travelers","travelers ultimate","ultimate italy","italy multiple","multiple travelers","travelers marrakech","city guides","guides megan","megan mccormick","mccormick hong","hong kong","kong taiwan","taiwan megan","megan mccormick","mccormick world","world history","history middleast","middleast multiple","multiple travelers","travelers new","new york","york ian","ian wright","wright megan","megan mccormick","mccormick season","season class","wikitable title","title presented","tokyo city","city guide","guide ian","ian wright","ian wright","wright cameroon","cameroon zay","zay harding","harding south","south east","east china","china zay","zay harding","harding ultimate","ultimate caribbean","caribbean multiple","africa justine","justine shapiro","shapiro sami","luxembourg katy","ultimate mexico","mexico multiple","multiple travelers","travelers pacific","pacific north","north west","tan ultimate","ultimate china","china multiple","multiple travelers","travelers ultimate","ultimate india","india multiple","multiple travelers","travelers western","western canada","canada zay","zay harding","harding season","season class","wikitable title","title presented","england wales","wales ian","ian wright","wright mid","mid west","west usa","usa justine","justine shapiro","shapiro venice","venice city","city guide","guide justine","justine shapiro","shapiro south","south east","east usa","usa megan","megan mccormick","mccormick civil","civil war","war special","special megan","megan mccormick","mccormick justine","justine shapiro","shapiro malaysia","malaysia penang","penang malacca","ian wright","wright indian","indian ocean","ocean islands","islands ian","ian wright","wright new","new zealand","zealand ian","ian wright","wright zay","zay harding","harding chinatown","chinatown special","special multiple","multiple travelers","travelers beirut","beirut city","city guide","guide multiple","multiple travelers","travelers ultimate","ultimate uk","uk multiple","multiple travelers","travelers great","great festivals","festivals multiple","multiple travelers","bad food","food guide","guide multiple","wikitable title","title presented","sweden andenmark","andenmark megan","megan mccormick","mccormick spanish","spanish islands","islands alex","alex riley","riley las","las vegas","vegas city","city guide","guide ian","ian wright","treasure special","special megan","megan mccormick","mccormick colombiand","colombiand panama","panama megan","megan mccormick","mccormick trekking","milford track","track ian","ian wright","wright zay","zay harding","harding ice","ice trekking","alps zay","zay harding","harding paris","paris city","city guide","guide adela","adela ucar","ucar justine","justine shapiro","shapiro cyprus","comer adela","adela ucar","ucar great","great journeys","journeys road","road warriors","warriors multiple","multiple travelers","travelers globe","globe shopper","shopper multiple","multiple travelers","travelers great","great journeys","journeys planes","planes trains","automobiles multiple","multiple travelers","travelers eco","eco trekker","trekker special","special great","great natural","natural wonders","wonders multiple","wikitable title","title presented","los angeles","angeles megan","megan mccormick","mccormick zambia","zambia malawi","malawi holly","holly morris","morris honduras","honduras el","el salvador","salvador brianna","cape verde","verde zoe","zoe palmer","palmer utah","utah colorado","colorado holly","holly morris","caribbean islands","islands zoe","zoe palmer","palmer world","world war","war iin","iin europe","europe multiple","multiple travelers","travelers germany","germany megan","megan mccormick","mccormick justine","justine shapiro","zay harding","rings ofire","ofire multiple","multiple travelers","slave trade","trade multiple","multiple travelers","travelers planet","multiple travelers","travelers trekking","trail zoe","zoe palmer","palmer matt","matt young","young papua","papua new","new guinea","cook islands","islands unknown","unknown season","season class","wikitable title","title presented","holy lands","lands jerusalem","west bank","bank zay","zay harding","harding holy","holy lands","lands israel","israel zay","zay harding","harding barcelona","barcelona city","city guide","guide megan","megan mccormick","mccormick madrid","madrid city","city guide","guide adela","adela ucar","ucar turkey","turkey adela","adela ucar","ucar syria","syria holly","holly morris","morris antarctica","antarctica zay","zay harding","harding south","south atlantic","atlantic zay","zay harding","ucar ukraine","ukraine holly","holly morris","netherlands brianna","brianna barnes","barnes amsterdam","amsterdam brianna","brianna barnes","barnes endangered","endangered places","places multiple","wikitable title","title presented","puerto rico","rico zay","zay harding","harding papua","papua new","new guinea","guinea islands","islands zay","zay harding","morris great","great historic","historic sites","empire multiple","multiple travelers","travelers great","great historic","historic sites","modern world","world multiple","multiple travelers","travelers world","world war","war ii","pacific multiple","multiple travelers","zay harding","harding westexas","westexas zay","zay harding","harding mid","mid atlantic","atlantic states","states usa","usa brianna","brianna barnes","barnes eastern","eastern canada","canada zoe","isolated islands","islands marshall","marshall islands","islands dutch","zay harding","harding london","london brianna","brianna barnes","barnes uruguay","wikitable title","title presented","buenos aires","aires city","city guide","guide judith","judith jones","jones colonial","colonial australia","australia zay","zay harding","french riviera","riviera kate","kate comer","comer great","great australian","zay harding","harding myanmar","myanmar megan","megan mccormick","mccormick world","world war","western front","front zay","bad food","food andrink","andrink guide","guide multiple","multiple travelers","travelers northeast","northeast england","england judith","brianna barnes","barnes building","building england","architects judith","judith jones","jones delhi","holly morris","morris central","central japan","japan megan","megan mccormick","mccormick mumbai","mumbai city","city guide","guide zay","zay harding","harding round","world class","wikitable title","title presented","across america","america route","route beyond","beyond justine","justine shapiro","shapiro pan","pan americana","americana conquistadors","judith jones","jones pan","pan americana","americana conquistadors","brianna barnes","barnes pacific","pitcairn zay","zay harding","harding pacific","pacific journeys","journeys tonga","zay harding","silk road","megan mccormick","silk road","istanbul holly","holly morris","morris easto","easto west","west istanbul","vienna ian","ian wright","wright season","season class","wikitable title","title presented","building england","architects judith","judith jones","jones road","road trip","trip ruta","ruta patagonia","patagonia zay","zay harding","harding road","road trip","trip ruta","andes zay","zay harding","harding top","top ten","ten south","south american","american adventures","adventures multiple","multiple travelers","travelers isolated","helena zay","zay harding","harding poland","poland megan","megan mccormick","mccormick delhi","ten african","multiple travelers","british raj","raj zay","zay harding","harding voice","involving multiple","multiple travellers","travellers ian","ian wright","wright mostly","mostly bobby","holly morris","wild west","west usa","usa multiple","multiple travelers","travelers hawaii","hawaii zoe","rust belt","belt highway","highway usa","usa megan","megan mccormick","mccormick externalinks","externalinks official","official website","website category","television series","series category","category british","british travel","travel television","television series","series category","category american","american travel","travel television","television series","series category","category american","american adventure","adventure television","television series","series category","category american","american television","television series","series debuts","debuts category","category american","american television","television series","series category","category american","american television","television series","series category","category american","american television","television series","series category","category british","british television","television programme","programme debuts","debuts category","category british","british television","television series","series category","category british","british television","television series","series category","category british","british television","television series","series category","category british","british adventure","adventure television","television series","series category","category english","english language","language television","television programming","programming category","category channel","channel television","television programmes","programmes category","category pbs","category adventure","adventure travel"],"new_description":"globe trekker sometimes_called pilot guides australiand thailand originally broadcast lonely_planet adventure_travel adventure_tourism television_series produced pilot productions united_kingdom british series inspired lonely began airing globe trekker broadcast countries continents program international_awards including six american cable ace awards program synopsis episode features host called traveller travels camera crew country often relatively exotic locale experiences culture thathe location toffer special episodes feature depth city beach scuba diving dive volcano shopping travel journey history festival food_guides show often goes far beyond popular_tourist_destinations order give viewers authentic look local_culture presenters usually participate different aspects attending traditional wedding visiting mining community address viewer directly acting tourists turned tour_guides also filmed interacting locals interesting locations mostly globe trekker alsometimes includes brief interviews backpacking_travel backpackers share tips independentravel particular country production details usually takes weeks complete episode show starto finish including least four weeks research three weeks planning preparation speaking tourist_boards making travel arrangements two three weeks actual filming three weeks ofilm editing post production presenter often accompanied five six members ofilm crew camerand production almost never appear camera specifically crew consists camera operator utility sound technician sound technician plus television producer television director scout locations two_weeks filming driving driver pilot type often hired locally presenter crew almost never spend three nights one particularea theme music series known distinctive theme background music consists largely instrumental electronic_dance folk music elements music written show ian producer ian michael colin winston musician stephen pilot productions presenters variety programs include planet food bazaar world cafe treks wild world list presenters limited appearing globe trekker hosts jonathan atherton baker brianna bingham christina chang bobby comer bradley cooper mark zoe andrew daddo tyler florence neil zay_harding katy judith jones megan_mccormick shilpa mehta holly morris author holly morris zoe parker alex riley comedian alex riley sami justine_shapiro tan adela ucar ian ian_wright matt young class wikitable_title_presented indonesia theastern islands mark pacific islands fiji solomon islands ian_wright africa zimbabwe daddo ian_wright south_east australian wright ecuador galapagos_islands justine_shapiro vietnam justine_shapiro japan tokyo taiwan ian_wright la ruta maya justine_shapiro alaska ian_wright north_east brazil ian_wright north india himalayas andrew daddo jamaica ian_wright season_class wikitable_title_presented israel sinai desert justine_shapiro east africa tanzania zanzibar ian_wright central asian american rockies ian_wright south_west china justine_shapiro island ian_wright south india justine_shapiro baja wright west africa benin justine_shapiro trekking ugandand congo turkey justine_shapiro corsica sardinia sicily ian_wright iceland ian_wright season_class wikitable_title_presented new_york city_guide ian_wright syria jordan lebanon ian_wright argentina justine_shapiro ethiopian wright south_africa justine_shapiro cuba haitian wright mehta outback australian wright gibson peru neil spain shilpa mehta south_west usa justine_shapiro hungary romanian wright season_class wikitable_title_presented laos ian_wright central_america costa_rica nicaragua neil gibson indonesia bali shilpa mehta iran ian_wright norway ian_wright london city_guide jonathan atherton mongolian wright czech_republic southern poland justine_shapiro papua_new_guinea jonathan atherton paris city_guide justine_shapiro nepal ian_wright southern italy justine_shapiro amsterdam city_guide jonathan atherton season_class wikitable_title_presented hawaii megan_mccormick finland baltic states neil gibson west india megan_mccormick san_francisco city_guide justine_shapiro new_zealand ian_wright mexico_city_guide justine_shapiro malaysia southern thailand justine_shapiro rio_de janeiro city_guide ian_wright sydney city_guide justine_shapiro egypt megan_mccormick west africa ghana coast megan_mccormick ian_wright new_orleans city_guide justine_shapiro season_class wikitable_title_presented greece christina chang megan_mccormick ireland ian_wright cambodian wright deep south usa ian_wright eastern caribbean justine_shapiro sri_lanka islands megan_mccormick moscow st_petersburg ian_wright wright world history england justine_shapiro madagascar ian_wright southern spain christina chang world food mccormick season_class wikitable_title_presented queensland great barriereef megan_mccormick venezuela ian_wright wright northern_italy megan_mccormick greek islands megan_mccormick tunisia libya ian_wright california justine_shapiro samoa ian_wright scotland megan_mccormick south_west australia bingham germany justine_shapiro portugal azores megan_mccormick central china megan_mccormick season_class wikitable_title_presented istanbul city bingham beijing city_guide megan_mccormick south ofrance christina chang megan bingham vienna city_guide ian_wright new_england usa megan_mccormick ultimate indo china multiple_travelers rome city bingham south_korea ian_wright ultimate australia multiple_travelers asian cities calcutta shanghai bangkok multiple mexico ian_wright season_class wikitable_title_presented arab gulf states megan_mccormick northern france justine_shapiro tuscany ian_wright london jonathan atherton megan_mccormick morocco ian_wright megan_mccormick washington guide justine_shapiro great festivals multiple_travelers ultimate france multiple_travelers ultimate italy multiple_travelers marrakech city_guides megan_mccormick hong_kong taiwan megan_mccormick world history middleast multiple_travelers new_york ian_wright megan_mccormick season_class wikitable_title_presented tokyo city_guide ian_wright ian_wright cameroon zay_harding south_east china zay_harding ultimate caribbean multiple africa justine_shapiro sami belgium luxembourg katy ultimate mexico multiple_travelers pacific north_west floridand bahamas tan ultimate china multiple_travelers ultimate india multiple_travelers western canada zay_harding season_class wikitable_title_presented england_wales ian_wright mid west usa justine_shapiro venice city_guide justine_shapiro south_east usa megan_mccormick civil_war special megan_mccormick justine_shapiro malaysia penang malacca ian_wright indian ocean islands ian_wright new_zealand ian_wright zay_harding chinatown special multiple_travelers beirut city_guide multiple_travelers ultimate uk multiple_travelers great festivals multiple_travelers good bad food_guide multiple class wikitable_title_presented sweden andenmark megan_mccormick spanish islands alex riley las_vegas city_guide ian_wright pirates treasure special megan_mccormick colombiand panama megan_mccormick trekking islands walking milford track ian_wright zay_harding ice trekking alps zay_harding paris city_guide adela ucar justine_shapiro cyprus comer adela ucar great journeys road warriors multiple_travelers globe shopper multiple_travelers great journeys planes trains automobiles multiple_travelers eco trekker special great natural wonders multiple class wikitable_title_presented los_angeles megan_mccormick zambia malawi holly morris honduras el_salvador brianna cape verde zoe palmer utah colorado holly morris caribbean islands zoe palmer world_war iin europe multiple_travelers germany megan_mccormick justine_shapiro zay_harding rings ofire multiple_travelers slave trade multiple_travelers planet multiple_travelers trekking pacific trail zoe palmer matt young papua_new_guinea cook islands unknown season_class wikitable_title_presented holy_lands jerusalem west bank zay_harding holy_lands israel zay_harding barcelona city_guide megan_mccormick madrid city_guide adela ucar turkey adela ucar syria holly morris antarctica zay_harding south atlantic zay_harding ucar ukraine holly morris netherlands brianna barnes amsterdam brianna barnes endangered places multiple class wikitable_title_presented puerto_rico zay_harding papua_new_guinea islands zay_harding morris great historic_sites age empire multiple_travelers great historic_sites modern world multiple_travelers world_war ii pacific multiple_travelers zay_harding westexas zay_harding mid atlantic states_usa brianna barnes eastern canada zoe isolated islands marshall islands dutch zay_harding london brianna barnes uruguay holly class wikitable_title_presented buenos_aires city_guide judith jones colonial australia zay_harding french riviera kate comer great australian zay_harding myanmar megan_mccormick world_war western front zay bad food_andrink guide multiple_travelers northeast england judith brianna barnes building england architects judith jones delhi holly morris central japan megan_mccormick mumbai city_guide zay_harding round world class wikitable_title_presented across america route beyond justine_shapiro pan americana conquistadors judith jones pan americana conquistadors brianna barnes pacific pitcairn zay_harding pacific journeys tonga new zay_harding silk road megan_mccormick silk road istanbul holly morris easto west istanbul vienna ian_wright season_class wikitable_title_presented building england age architects judith jones road_trip ruta patagonia zay_harding road_trip ruta andes zay_harding top ten south_american adventures multiple_travelers isolated helena zay_harding poland megan_mccormick delhi ian ten african great multiple_travelers rise fall british raj zay_harding voice involving multiple travellers ian_wright mostly bobby holly morris wild west usa multiple_travelers hawaii zoe rust belt highway usa megan_mccormick externalinks_official_website_category television_series_category_british travel_television_series_category_american travel_television_series_category_american adventure television_series_category_american television_series debuts_category_american television_series_category_american television_series_category_american television_series_category_british television programme debuts_category_british television_series_category_british television_series_category_british television_series_category_british adventure television_series_category_english_language television programming category channel television programmes category pbs category_adventure_travel"},{"title":"GoHereHouseton","description":"go here do that houston is a guidebook to houston texas created by olivia djibo and katie o malley it contains recommended hot spots and locations in houston texas it also features contributions and personal tips from several chefs and artists in houston djibo a mechanical engineer in oil and gas and o malley a freelance designer discovered thathey both loved houston and they were proud to share hidden spots to visiting family and friends in they started compiling recommendations from family and friends andiscovered thatheir compilation could serve visitors to houston o malley created all the artistic illustrations while djibo drove round to vet all recommendations the guidebook was launched on january nd category travel book stubs category travel guide books category books about houston","main_words":["go","houston","guidebook","houston_texas","created","malley","contains","recommended","hot","spots","locations","houston_texas","also","features","contributions","personal","tips","several","chefs","artists","houston","mechanical","engineer","oil","gas","malley","freelance","designer","discovered","thathey","loved","houston","proud","share","hidden","spots","visiting","family","friends","started","recommendations","family","friends","thatheir","compilation","could","serve","visitors","houston","malley","created","artistic","illustrations","drove","round","recommendations","guidebook","launched","january","category_travel_guide_books","category_books","houston"],"clean_bigrams":[["houston","texas"],["texas","created"],["contains","recommended"],["recommended","hot"],["hot","spots"],["houston","texas"],["also","features"],["features","contributions"],["personal","tips"],["several","chefs"],["mechanical","engineer"],["freelance","designer"],["designer","discovered"],["discovered","thathey"],["loved","houston"],["share","hidden"],["hidden","spots"],["visiting","family"],["thatheir","compilation"],["compilation","could"],["could","serve"],["serve","visitors"],["malley","created"],["artistic","illustrations"],["drove","round"],["category","travel"],["travel","book"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","books"]],"all_collocations":["houston texas","texas created","contains recommended","recommended hot","hot spots","houston texas","also features","features contributions","personal tips","several chefs","mechanical engineer","freelance designer","designer discovered","discovered thathey","loved houston","share hidden","hidden spots","visiting family","thatheir compilation","compilation could","could serve","serve visitors","malley created","artistic illustrations","drove round","category travel","travel book","category travel","travel guide","guide books","books category","category books"],"new_description":"go houston guidebook houston_texas created malley contains recommended hot spots locations houston_texas also features contributions personal tips several chefs artists houston mechanical engineer oil gas malley freelance designer discovered thathey loved houston proud share hidden spots visiting family friends started recommendations family friends thatheir compilation could serve visitors houston malley created artistic illustrations drove round recommendations guidebook launched january category_travel_book category_travel_guide_books category_books houston"},{"title":"Golden Gate Ballroom","description":"the golden gate ballroom originally named the state palace ballroom was a luxurious ballroom located athe intersection of lenox avenue and in harlem it was allegedly the largest public auditorium in harlem with square feet and a capacity of about five thousand people on the dance floor in addition to several thousand spectators the serial entrepreneur jay faggen led the projectopen the golden gate ballrom which took place in october the site had formerly been the douglas theater by mid it was taken over by the same owner and manager of the savoy ballroom it was one of many harlem jazz club s located on lenox avenue and competed intensely withe savoy ballroom the golden gate closed around notable performers athe golden gate included les hite harlan leonard claude hopkins milt herth jimmie lunceford count basie hot lips page josh white artatum billie holiday hazel scott and coleman hawkins the teddy wilson orchestra was the house attraction the ballroom was the first site used by pastor alvin a childs ministry in harlem the golden gate ballroom also hosted community eventsuch as political rallies and the miss fine brown frame beauty pageant and served as a roller skating rink furthereading image of charlie christian playinguitar athe golden gate ballroom notes references category harlem category jazz clubs inew york category jazz clubs category nightclubs category african american history inew york city category african american musicategory african american culture","main_words":["golden","gate","ballroom","originally","named","state","palace","ballroom","luxurious","ballroom","located_athe","intersection","avenue","harlem","allegedly","largest","public","auditorium","harlem","square","feet","capacity","five","thousand","people","dance_floor","addition","several","thousand","spectators","serial","entrepreneur","jay","led","golden_gate","took_place","october","site","formerly","douglas","theater","mid","taken","owner","manager","savoy","ballroom","one","many","harlem","jazz_club","located","avenue","competed","withe","savoy","ballroom","golden_gate","closed","around","notable","performers","athe","golden_gate","included","les","harlan","leonard","claude","hopkins","count","hot","page","josh","white","holiday","scott","coleman","hawkins","teddy","wilson","orchestra","house","attraction","ballroom","first","site","used","pastor","alvin","childs","ministry","harlem","golden_gate","ballroom","also","hosted","community","eventsuch","political","rallies","miss","fine","brown","frame","beauty","pageant","served","roller","skating","furthereading","image","charlie","christian","athe","golden_gate","ballroom","notes","references_category","harlem","category","jazz_clubs","inew_york","category","jazz_clubs","category_nightclubs_category","african_american","history","inew_york_city","category","african_american","musicategory","african_american","culture"],"clean_bigrams":[["golden","gate"],["gate","ballroom"],["ballroom","originally"],["originally","named"],["state","palace"],["palace","ballroom"],["luxurious","ballroom"],["ballroom","located"],["located","athe"],["athe","intersection"],["largest","public"],["public","auditorium"],["square","feet"],["five","thousand"],["thousand","people"],["dance","floor"],["several","thousand"],["thousand","spectators"],["serial","entrepreneur"],["entrepreneur","jay"],["golden","gate"],["took","place"],["douglas","theater"],["savoy","ballroom"],["many","harlem"],["harlem","jazz"],["jazz","club"],["withe","savoy"],["savoy","ballroom"],["golden","gate"],["gate","closed"],["closed","around"],["around","notable"],["notable","performers"],["performers","athe"],["athe","golden"],["golden","gate"],["gate","included"],["included","les"],["harlan","leonard"],["leonard","claude"],["claude","hopkins"],["page","josh"],["josh","white"],["coleman","hawkins"],["teddy","wilson"],["wilson","orchestra"],["house","attraction"],["first","site"],["site","used"],["pastor","alvin"],["childs","ministry"],["golden","gate"],["gate","ballroom"],["ballroom","also"],["also","hosted"],["hosted","community"],["community","eventsuch"],["political","rallies"],["miss","fine"],["fine","brown"],["brown","frame"],["frame","beauty"],["beauty","pageant"],["roller","skating"],["furthereading","image"],["charlie","christian"],["athe","golden"],["golden","gate"],["gate","ballroom"],["ballroom","notes"],["notes","references"],["references","category"],["category","harlem"],["harlem","category"],["category","jazz"],["jazz","clubs"],["clubs","inew"],["inew","york"],["york","category"],["category","jazz"],["jazz","clubs"],["clubs","category"],["category","nightclubs"],["nightclubs","category"],["category","african"],["african","american"],["american","history"],["history","inew"],["inew","york"],["york","city"],["city","category"],["category","african"],["african","american"],["american","musicategory"],["musicategory","african"],["african","american"],["american","culture"]],"all_collocations":["golden gate","gate ballroom","ballroom originally","originally named","state palace","palace ballroom","luxurious ballroom","ballroom located","located athe","athe intersection","largest public","public auditorium","square feet","five thousand","thousand people","dance floor","several thousand","thousand spectators","serial entrepreneur","entrepreneur jay","golden gate","took place","douglas theater","savoy ballroom","many harlem","harlem jazz","jazz club","withe savoy","savoy ballroom","golden gate","gate closed","closed around","around notable","notable performers","performers athe","athe golden","golden gate","gate included","included les","harlan leonard","leonard claude","claude hopkins","page josh","josh white","coleman hawkins","teddy wilson","wilson orchestra","house attraction","first site","site used","pastor alvin","childs ministry","golden gate","gate ballroom","ballroom also","also hosted","hosted community","community eventsuch","political rallies","miss fine","fine brown","brown frame","frame beauty","beauty pageant","roller skating","furthereading image","charlie christian","athe golden","golden gate","gate ballroom","ballroom notes","notes references","references category","category harlem","harlem category","category jazz","jazz clubs","clubs inew","inew york","york category","category jazz","jazz clubs","clubs category","category nightclubs","nightclubs category","category african","african american","american history","history inew","inew york","york city","city category","category african","african american","american musicategory","musicategory african","african american","american culture"],"new_description":"golden gate ballroom originally named state palace ballroom luxurious ballroom located_athe intersection avenue harlem allegedly largest public auditorium harlem square feet capacity five thousand people dance_floor addition several thousand spectators serial entrepreneur jay led golden_gate took_place october site formerly douglas theater mid taken owner manager savoy ballroom one many harlem jazz_club located avenue competed withe savoy ballroom golden_gate closed around notable performers athe golden_gate included les harlan leonard claude hopkins count hot page josh white holiday scott coleman hawkins teddy wilson orchestra house attraction ballroom first site used pastor alvin childs ministry harlem golden_gate ballroom also hosted community eventsuch political rallies miss fine brown frame beauty pageant served roller skating furthereading image charlie christian athe golden_gate ballroom notes references_category harlem category jazz_clubs inew_york category jazz_clubs category_nightclubs_category african_american history inew_york_city category african_american musicategory african_american culture"},{"title":"Graham Hughes","description":"graham david hughes is a british adventurer filmmaker television presenter and guinness world record holder hughes was the first person to visit all united nations member states and several other territories across the world without flying he did sover a period of nearly four years and completed the task inovember while on his journey he presented the television program graham s world on the national geographic adventure tv channel national geographic adventure channel a weekly look into his ongoing questo break multiple world records by visiting every country on earth without flying in may he stood to be a member of parliament in the constituency of liverpool west derby receiving of votes early life graham hughes was born in liverpool in he attended blackmoor park school and the liverpool blue coat school studying english general studies history and politics at a level he read politics and modern history athe university of manchester and graduated with a ba honours degree in he moved torrell park and set up a video production company firstly in dale street and then in the baltic triangle the odyssey expedition the odyssey expedition was a questo drop in on every one of the list of members of the united nations un member states for the united kingdom of great britain and northern ireland united kingdom hughes visited all of the four countries of the united kingdom constituent countries that make up the kingdom and counted the un member state as four separate countries hughes also visited the non member state of vatican city as well as the list of states with limited recognition partially recognized non member states of state of palestine sahrawi arab democratic republic western sahara republic of kosovo and republic of china taiwan for a total of countries without flying he says people tend to wonder how he got into the further out countries like north korea iraq and afghanistan but he says they were theasy ones beforembarking on the journey hughes contacted guinness world records to agree in advance the rules of his unique journey they were no flying as part of the journey no private taxis over long distanceshared bush taxis were okay no hitchiking hughes could not drive a vehicle oride a motorbike as part of the journey guinness world records does not permit people to race on public roads in private vehicles in order to set or break records he must set foot on dry land sailing into territorial waters did not count and no travelling to far flung territories and counting them as a visito the motherland private transport was permitted over short distancesuch as taking a private taxi across town private transport was also permitted over water and he was allowed to take a break from the journey for personal reasonso long as he did not fly as part of the journey and he returned to thexact spot from whiche left something he did twice on his landmark journey it was agreed thathe clock would not stop hughes completed his expedition monday november after entering south sudan he travelled overland back to his hometown of liverpool to keep the spirit of the odyssey guinness world records wereportedly unhappy withis entry into russias it was the only country hentered without passing an official border post in january hughes returned to russia this time with an official visa while on the odyssey expedition hughes helped raise funds and awareness for the charity wateraid sos island on december hughes was declared the winner of sos island a survivor us tv seriesurvivor like show featuring lestroud which relied on social media to promote samsung products on a desert island setting the prize was towards a future island adventure of his choice world records hugheset a new guinness world record by visiting countries in one year by scheduled ground transport during the first year of his four year journey in february it was announced that guinness world records had confirmed hughes odyssey expedition was the fastestime to visit all countries by public surface transport years andays after an extraordinarily long verification process marco frigatti head of records at guinness world records was quoted asaying i cannot remember a more absorbing record to verify in recent years television programs hughes personal video log of his trip has been converted into a television series called graham s world on the national geographic adventure tv channel national geographic adventure channel it is an eight part series covering hughes first year traveling to every country in the americas europe and most of africa from january december highlights of the trip included imprisonment in the republic of the congo getting caught sneaking into russiand running the blockade into cuba he was arrested in estoniand cameroon and spent jail time in republic of congo and cape verde film and music videos withis company hydra studios he has written andirected a number of short films and won the inauguraliverpool hour film challenge in hughes has worked for world challengexpeditions producing several travel videos he has also been heavily involved in the liverpool music scene shooting or producing videos for hot club de paris hot club de paris the dead s the basement we are performance peter and the wolf lyons and tigers china crisis the coral the real kicks the sonic hearts metro manilaide white rose movement and filming for the release of the arctic monkeysecond album favourite worst nightmare in the summer of hughes one second every countryoutube video went viral amassing almost one million views in just a feweeks which led to appearances on bbc news and cbs this morning as well as articles about his travels on buzzfeed and esquirexternalinks the odyssey expedition website graham hughes personal blog category adventure travel category british television presenters category living people category writers from liverpool category travel writers category music video directors","main_words":["graham","david","hughes","british","adventurer","filmmaker","television","presenter","guinness_world_record","holder","hughes","first_person","visit","united_nations","member_states","several","territories","across","world","without","flying","period","nearly","four_years","completed","task","inovember","journey","presented","television","program","graham","world","national_geographic","adventure","tv_channel","national_geographic","adventure","channel","weekly","look","ongoing","break","multiple","world_records","visiting","every_country","earth","without","flying","may","stood","member","parliament","constituency","liverpool","west","derby","receiving","votes","early_life","graham","hughes","born","liverpool","attended","park","school","liverpool","blue","coat","school","studying","english","general","studies","history","politics","level","read","politics","modern","history","athe_university","manchester","graduated","honours","degree","moved","park","set","video","production_company","firstly","dale","street","baltic","triangle","odyssey","expedition","odyssey","expedition","drop","every","one","list","members","united_nations","member_states","united_kingdom","great_britain","northern_ireland","united_kingdom","hughes","visited","four","countries","united_kingdom","countries","make","kingdom","counted","member","state","four","separate","countries","hughes","also","visited","non","member","state","vatican_city","well","list","states","limited","recognition","partially","recognized","non","member_states","state","palestine","arab","democratic","republic","western","sahara","republic","kosovo","republic","china","taiwan","total","countries","without","flying","says","people","tend","wonder","got","countries","like","north_korea","iraq","afghanistan","says","ones","journey","hughes","contacted","guinness_world_records","agree","advance","rules","unique","journey","flying","part","journey","private","taxis","long","bush","taxis","hughes","could","drive","vehicle","oride","motorbike","part","journey","guinness_world_records","permit","people","race","public","roads","private","vehicles","order","set","break","records","must","set","foot","dry","land","sailing","territorial","waters","count","travelling","far","territories","counting","visito","private","transport","permitted","short","taking","private","taxi","across","town","private","transport","also","permitted","water","allowed","take","break","journey","personal","long","fly","part","journey","returned","thexact","spot","whiche","left","something","twice","landmark","journey","agreed","thathe","clock","would","stop","hughes","completed","expedition","monday","november","entering","south_sudan","travelled","overland","back","hometown","liverpool","keep","spirit","odyssey","guinness_world_records","withis","entry","country","without","passing","official","border","post","january","hughes","returned","russia","time","official","visa","odyssey","expedition","hughes","helped","raise","funds","awareness","charity","island","december","hughes","declared","winner","island","like","show","featuring","relied","social_media","promote","products","desert","island","setting","prize","towards","future","island","adventure","choice","world_records","new","guinness_world_record","visiting","countries","one_year","scheduled","ground","transport","first_year","four","year","journey","february","announced","guinness_world_records","confirmed","hughes","odyssey","expedition","visit","countries","public","surface","transport","years","extraordinarily","long","verification","process","marco","head","records","guinness_world_records","quoted","cannot","remember","absorbing","record","verify","recent_years","television","programs","hughes","personal","video","log","trip","converted","television_series","called","graham","world","national_geographic","adventure","tv_channel","national_geographic","adventure","channel","eight","part","series","covering","hughes","first_year","traveling","every_country","americas","europe","africa","january","december","highlights","trip","included","imprisonment","republic","congo","getting","caught","russiand","running","blockade","cuba","arrested","cameroon","spent","jail","time","republic","congo","cape","verde","film","music","videos","withis","company","studios","written","andirected","number","short","films","hour","film","challenge","hughes","worked","world","producing","several","travel","videos","also","heavily","involved","liverpool","music","scene","shooting","producing","videos","hot","club","de","paris","hot","club","de","paris","dead","basement","performance","peter","wolf","lyons","tigers","china","crisis","coral","real","sonic","hearts","metro","white","rose","movement","filming","release","arctic","album","favourite","worst","summer","hughes","one","second","every","video","went","viral","almost","one_million","views","feweeks","led","appearances","bbc_news","cbs","morning","well","articles","travels","odyssey","expedition","website","graham","hughes","personal","blog","category_adventure_travel_category","presenters","category_living_people_category","writers","liverpool","category_travel","video","directors"],"clean_bigrams":[["graham","david"],["david","hughes"],["british","adventurer"],["adventurer","filmmaker"],["filmmaker","television"],["television","presenter"],["guinness","world"],["world","record"],["record","holder"],["holder","hughes"],["hughes","first"],["first","person"],["united","nations"],["nations","member"],["member","states"],["territories","across"],["world","without"],["without","flying"],["nearly","four"],["four","years"],["task","inovember"],["television","program"],["program","graham"],["national","geographic"],["geographic","adventure"],["adventure","tv"],["tv","channel"],["channel","national"],["national","geographic"],["geographic","adventure"],["adventure","channel"],["weekly","look"],["break","multiple"],["multiple","world"],["world","records"],["visiting","every"],["every","country"],["earth","without"],["without","flying"],["liverpool","west"],["west","derby"],["derby","receiving"],["votes","early"],["early","life"],["life","graham"],["graham","hughes"],["park","school"],["liverpool","blue"],["blue","coat"],["coat","school"],["school","studying"],["studying","english"],["english","general"],["general","studies"],["studies","history"],["read","politics"],["modern","history"],["history","athe"],["athe","university"],["honours","degree"],["video","production"],["production","company"],["company","firstly"],["dale","street"],["baltic","triangle"],["odyssey","expedition"],["odyssey","expedition"],["every","one"],["united","nations"],["nations","member"],["member","states"],["united","kingdom"],["great","britain"],["northern","ireland"],["ireland","united"],["united","kingdom"],["kingdom","hughes"],["hughes","visited"],["four","countries"],["united","kingdom"],["member","state"],["four","separate"],["separate","countries"],["countries","hughes"],["hughes","also"],["also","visited"],["non","member"],["member","state"],["vatican","city"],["limited","recognition"],["recognition","partially"],["partially","recognized"],["recognized","non"],["non","member"],["member","states"],["arab","democratic"],["democratic","republic"],["republic","western"],["western","sahara"],["sahara","republic"],["china","taiwan"],["countries","without"],["without","flying"],["says","people"],["people","tend"],["countries","like"],["like","north"],["north","korea"],["korea","iraq"],["journey","hughes"],["hughes","contacted"],["contacted","guinness"],["guinness","world"],["world","records"],["unique","journey"],["private","taxis"],["bush","taxis"],["hughes","could"],["vehicle","oride"],["journey","guinness"],["guinness","world"],["world","records"],["permit","people"],["public","roads"],["private","vehicles"],["break","records"],["must","set"],["set","foot"],["dry","land"],["land","sailing"],["territorial","waters"],["private","transport"],["private","taxi"],["taxi","across"],["across","town"],["town","private"],["private","transport"],["also","permitted"],["thexact","spot"],["whiche","left"],["left","something"],["landmark","journey"],["agreed","thathe"],["thathe","clock"],["clock","would"],["stop","hughes"],["hughes","completed"],["expedition","monday"],["monday","november"],["entering","south"],["south","sudan"],["travelled","overland"],["overland","back"],["odyssey","guinness"],["guinness","world"],["world","records"],["withis","entry"],["without","passing"],["official","border"],["border","post"],["january","hughes"],["hughes","returned"],["official","visa"],["odyssey","expedition"],["expedition","hughes"],["hughes","helped"],["helped","raise"],["raise","funds"],["december","hughes"],["us","tv"],["like","show"],["show","featuring"],["social","media"],["desert","island"],["island","setting"],["future","island"],["island","adventure"],["choice","world"],["world","records"],["new","guinness"],["guinness","world"],["world","record"],["visiting","countries"],["one","year"],["scheduled","ground"],["ground","transport"],["first","year"],["four","year"],["year","journey"],["guinness","world"],["world","records"],["confirmed","hughes"],["hughes","odyssey"],["odyssey","expedition"],["public","surface"],["surface","transport"],["transport","years"],["extraordinarily","long"],["long","verification"],["verification","process"],["process","marco"],["guinness","world"],["world","records"],["absorbing","record"],["recent","years"],["years","television"],["television","programs"],["programs","hughes"],["hughes","personal"],["personal","video"],["video","log"],["television","series"],["series","called"],["called","graham"],["national","geographic"],["geographic","adventure"],["adventure","tv"],["tv","channel"],["channel","national"],["national","geographic"],["geographic","adventure"],["adventure","channel"],["eight","part"],["part","series"],["series","covering"],["covering","hughes"],["hughes","first"],["first","year"],["year","traveling"],["every","country"],["americas","europe"],["january","december"],["december","highlights"],["trip","included"],["included","imprisonment"],["congo","getting"],["getting","caught"],["russiand","running"],["spent","jail"],["jail","time"],["cape","verde"],["verde","film"],["music","videos"],["videos","withis"],["withis","company"],["written","andirected"],["short","films"],["hour","film"],["film","challenge"],["producing","several"],["several","travel"],["travel","videos"],["heavily","involved"],["liverpool","music"],["music","scene"],["scene","shooting"],["producing","videos"],["hot","club"],["club","de"],["de","paris"],["paris","hot"],["hot","club"],["club","de"],["de","paris"],["performance","peter"],["wolf","lyons"],["tigers","china"],["china","crisis"],["sonic","hearts"],["hearts","metro"],["white","rose"],["rose","movement"],["album","favourite"],["favourite","worst"],["hughes","one"],["one","second"],["second","every"],["video","went"],["went","viral"],["almost","one"],["one","million"],["million","views"],["bbc","news"],["odyssey","expedition"],["expedition","website"],["website","graham"],["graham","hughes"],["hughes","personal"],["personal","blog"],["blog","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","british"],["british","television"],["television","presenters"],["presenters","category"],["category","living"],["living","people"],["people","category"],["category","writers"],["liverpool","category"],["category","travel"],["travel","writers"],["writers","category"],["category","music"],["music","video"],["video","directors"]],"all_collocations":["graham david","david hughes","british adventurer","adventurer filmmaker","filmmaker television","television presenter","guinness world","world record","record holder","holder hughes","hughes first","first person","united nations","nations member","member states","territories across","world without","without flying","nearly four","four years","task inovember","television program","program graham","national geographic","geographic adventure","adventure tv","tv channel","channel national","national geographic","geographic adventure","adventure channel","weekly look","break multiple","multiple world","world records","visiting every","every country","earth without","without flying","liverpool west","west derby","derby receiving","votes early","early life","life graham","graham hughes","park school","liverpool blue","blue coat","coat school","school studying","studying english","english general","general studies","studies history","read politics","modern history","history athe","athe university","honours degree","video production","production company","company firstly","dale street","baltic triangle","odyssey expedition","odyssey expedition","every one","united nations","nations member","member states","united kingdom","great britain","northern ireland","ireland united","united kingdom","kingdom hughes","hughes visited","four countries","united kingdom","member state","four separate","separate countries","countries hughes","hughes also","also visited","non member","member state","vatican city","limited recognition","recognition partially","partially recognized","recognized non","non member","member states","arab democratic","democratic republic","republic western","western sahara","sahara republic","china taiwan","countries without","without flying","says people","people tend","countries like","like north","north korea","korea iraq","journey hughes","hughes contacted","contacted guinness","guinness world","world records","unique journey","private taxis","bush taxis","hughes could","vehicle oride","journey guinness","guinness world","world records","permit people","public roads","private vehicles","break records","must set","set foot","dry land","land sailing","territorial waters","private transport","private taxi","taxi across","across town","town private","private transport","also permitted","thexact spot","whiche left","left something","landmark journey","agreed thathe","thathe clock","clock would","stop hughes","hughes completed","expedition monday","monday november","entering south","south sudan","travelled overland","overland back","odyssey guinness","guinness world","world records","withis entry","without passing","official border","border post","january hughes","hughes returned","official visa","odyssey expedition","expedition hughes","hughes helped","helped raise","raise funds","december hughes","us tv","like show","show featuring","social media","desert island","island setting","future island","island adventure","choice world","world records","new guinness","guinness world","world record","visiting countries","one year","scheduled ground","ground transport","first year","four year","year journey","guinness world","world records","confirmed hughes","hughes odyssey","odyssey expedition","public surface","surface transport","transport years","extraordinarily long","long verification","verification process","process marco","guinness world","world records","absorbing record","recent years","years television","television programs","programs hughes","hughes personal","personal video","video log","television series","series called","called graham","national geographic","geographic adventure","adventure tv","tv channel","channel national","national geographic","geographic adventure","adventure channel","eight part","part series","series covering","covering hughes","hughes first","first year","year traveling","every country","americas europe","january december","december highlights","trip included","included imprisonment","congo getting","getting caught","russiand running","spent jail","jail time","cape verde","verde film","music videos","videos withis","withis company","written andirected","short films","hour film","film challenge","producing several","several travel","travel videos","heavily involved","liverpool music","music scene","scene shooting","producing videos","hot club","club de","de paris","paris hot","hot club","club de","de paris","performance peter","wolf lyons","tigers china","china crisis","sonic hearts","hearts metro","white rose","rose movement","album favourite","favourite worst","hughes one","one second","second every","video went","went viral","almost one","one million","million views","bbc news","odyssey expedition","expedition website","website graham","graham hughes","hughes personal","personal blog","blog category","category adventure","adventure travel","travel category","category british","british television","television presenters","presenters category","category living","living people","people category","category writers","liverpool category","category travel","travel writers","writers category","category music","music video","video directors"],"new_description":"graham david hughes british adventurer filmmaker television presenter guinness_world_record holder hughes first_person visit united_nations member_states several territories across world without flying period nearly four_years completed task inovember journey presented television program graham world national_geographic adventure tv_channel national_geographic adventure channel weekly look ongoing break multiple world_records visiting every_country earth without flying may stood member parliament constituency liverpool west derby receiving votes early_life graham hughes born liverpool attended park school liverpool blue coat school studying english general studies history politics level read politics modern history athe_university manchester graduated honours degree moved park set video production_company firstly dale street baltic triangle odyssey expedition odyssey expedition drop every one list members united_nations member_states united_kingdom great_britain northern_ireland united_kingdom hughes visited four countries united_kingdom countries make kingdom counted member state four separate countries hughes also visited non member state vatican_city well list states limited recognition partially recognized non member_states state palestine arab democratic republic western sahara republic kosovo republic china taiwan total countries without flying says people tend wonder got countries like north_korea iraq afghanistan says ones journey hughes contacted guinness_world_records agree advance rules unique journey flying part journey private taxis long bush taxis hughes could drive vehicle oride motorbike part journey guinness_world_records permit people race public roads private vehicles order set break records must set foot dry land sailing territorial waters count travelling far territories counting visito private transport permitted short taking private taxi across town private transport also permitted water allowed take break journey personal long fly part journey returned thexact spot whiche left something twice landmark journey agreed thathe clock would stop hughes completed expedition monday november entering south_sudan travelled overland back hometown liverpool keep spirit odyssey guinness_world_records withis entry country without passing official border post january hughes returned russia time official visa odyssey expedition hughes helped raise funds awareness charity island december hughes declared winner island us_tv like show featuring relied social_media promote products desert island setting prize towards future island adventure choice world_records new guinness_world_record visiting countries one_year scheduled ground transport first_year four year journey february announced guinness_world_records confirmed hughes odyssey expedition visit countries public surface transport years extraordinarily long verification process marco head records guinness_world_records quoted cannot remember absorbing record verify recent_years television programs hughes personal video log trip converted television_series called graham world national_geographic adventure tv_channel national_geographic adventure channel eight part series covering hughes first_year traveling every_country americas europe africa january december highlights trip included imprisonment republic congo getting caught russiand running blockade cuba arrested cameroon spent jail time republic congo cape verde film music videos withis company studios written andirected number short films hour film challenge hughes worked world producing several travel videos also heavily involved liverpool music scene shooting producing videos hot club de paris hot club de paris dead basement performance peter wolf lyons tigers china crisis coral real sonic hearts metro white rose movement filming release arctic album favourite worst summer hughes one second every video went viral almost one_million views feweeks led appearances bbc_news cbs morning well articles travels odyssey expedition website graham hughes personal blog category_adventure_travel_category british_television presenters category_living_people_category writers liverpool category_travel writers_category_music video directors"},{"title":"Grand Tour","description":"file pantheon paninijpg thumb the interior of the pantheon rome pantheon in the th century painted by giovanni paolo panini file batoni francis basset st baron de dunstanvillejpg thumb uprighthe grand tourist like francis basset st baron de dunstanville and basset francis basset would become familiar with antiquities though this altar is the invention of the painter pompeo batoni the grand tour was the traditional trip of europe undertaken by mainly upper class european young men of sufficient means and rank or those of more humble origin who could find a sponsor as well as debutante young women if they were alsof sufficient means and accompanied by a chaperone social chaperon such as other family members when they had coming of age come of age abouthe age of years old the norm sociology custom flourished from about until the advent of large scale rail transport in the s and wassociated with a standard travel itinerary it served as an educational rite of passage though primarily associated withe british nobility and wealthy landed gentry similar trips were made by wealthyoung men of protestantism protestant northern europeanations and from the second half of the th century by some south and north americans the tradition declined withe lapse of neo classical enthusiasm and afterail and steamship travel made the journeys much easier when thomas cook made the cook s tour of early mass tourism a byword the new york times in described the grand tour in this way the primary value of the grand tour it was believed lay in thexposure both to the culturalegacy of classical antiquity and the renaissance and to the aristocratic and fashionably polite society of theuropean continent in addition it provided the only opportunity to view specific works of art and possibly the only chance to hear certain music a grand tour could last from several months to several years it was commonly undertaken in the company of a cicerone a knowledgeable guide or tutor the grand tour had more than superficial cultural importance as e p thompson stated ruling class control in the th century was located primarily in a cultural hegemony and only secondarily in an expression of economic or physical military power thompson the making of thenglish working class the legacy of the grand tour lives on to the modern day and istill evident in works of travel and literature from its aristocratic origins and the permutations of sentimental and romantic travel to the age of tourism and globalization the grand tour still influences the destinations tourists choose and shapes the ideas of culture and sophistication that surround the act of travel in essence the grand tour was neither a scholar s pilgrimage nor a religious one though a pleasurable stay in venice and a cautious residence in rome weressential catholic grand tourists followed the same routes as protestant whigsince the th century a tour to such places was also considered essential for budding young artists to understand proper painting and sculpture techniques though the trappings of the grand tour valets and coachmen perhaps a cook certainly a bear leader guide bear leader or scholarly guide were beyond theireach the advent of popular guidesuch as the richardsons did much to popularise such trips and following the artists themselves thelite considered travel to such centres as necessary rites of passage for gentlemen some works of art weressential to demonstrate the breadth and polish they had received from their tour in rome antiquaries like thomas jenkins antiquary thomas jenkins provided access to private collections of antiquities among which enough proved to be for sale thathenglish market raised the price of such things and for numismatics coins and medals which formed more portable souvenirs and a respected gentleman s guide to ancient history pompeo batoni made a career of painting thenglish milord posed with graceful ease among romantiquities many continued on to naples where they viewed herculaneum and pompeii but few ventured far into southern italy or maltand fewer still to greece still under ottoman greece turkish rule rome for many centuries had been the goal of pilgrims especially during jubilee christianity jubilee when they visited the seven pilgrim churches of rome in britain thomas coryat s travel book coryat s crudities publisheduring the twelve years truce was an early influence on the grand tour but it was the far morextensive tour through italy as far as naples undertaken by thomas howard st earl of arundel the collector earl of arundel withis wife and children in that established the most significant precedenthis partly because he asked inigo jones not yet established as an architect but already known as a greatraveller and masque designer to act as his cicerone guide chaney thevolution of the grand tour nd ed and idem inigo jones roman sketchbook vols larger numbers of tourists began their tours after the peace of m nster in according to the oxford english dictionary the first recorded use of the term perhaps its introduction to english was by richard lassels c an expatriate roman catholichurch roman catholic priesthood catholichurch priest in his book the voyage of italy which was published posthumously in paris in and then in london lassels introduction listed four areas in which travel furnished an accomplished consummate traveller the intellectualism intellectual the society social thethics ethical by the opportunity of drawing moral instruction from all the traveller saw and the politics political file jean preudhommejpg thumb upright portrait of douglas hamilton th duke of hamilton douglas th duke of hamilton his grand tour withis physician john moore scottish physician dr john moore and the latter son john moore british army officer john a view of geneva is in the distance where they stayed for two years painted by jean preudhomme in the idea of travelling for the sake of curiosity and learning was a developing idea in the th century with john locke s an essay concerning human understanding essay concerning human understanding it was argued and widely accepted that knowledge comes entirely from thexternal senses that what one knows comes from the physical stimuli to which one has been exposed thus one could use up thenvironmentaking from it all it offers requiring a change of place travel therefore was necessary for one to develop the mind and expand knowledge of the world as a young man athe outset of his account of a repeat grand tour the historian edward gibbon remarked that according to the law of custom and perhaps of reason foreign travel completes theducation of an english gentleman consciously adapted for intellectual self improvement gibbon was revisiting the continent on a larger and more liberal plan most grand tourists did not pause more than briefly in libraries on theve of the romanticism romantic era he played a significant part introducing william thomas beckford william beckford wrote a vivid account of his grand tour that made gibbon s unadventurous italian tour look distinctly conventionale chaney gibbon beckford and the interpretation of dreams waking thoughts and incidents the beckford society annualectures london pp the typical th century sentiment was that of the studious observer travelling through foreign lands reporting his findings on humanature for those unfortunatenough to have stayed home recounting one s observations to society at large to increase its welfare was considered an obligation the grand tour flourished in this mindsetpaul fussell p the grand tour offered a liberal education and the opportunity to acquire things otherwise unavailable at home lending an air of accomplishment and prestige to the traveller grand tourists would return with crates full of books works of art scientific instruments and cultural artifacts from snuff boxes and paperweights to altars fountains and statuary to be displayed in libraries cabinet room cabinets gardens drawing rooms and galleries built for that purpose the trappings of the grand tour especially portraits of the traveller painted in iconicontinental settings became the obligatory emblems of worldliness gravitas and influence artists who especially thrived on grand tourists included carlo maratti who was first patronized by john evelyn as early as e chaney thevolution of english collecting pompeo batoni the portrait ist and the vedutisti such as canaletto giovanni paolo pannini and francesco guardi the less well off could return with an album of giovanni battista piranesi etchings the perhaps in gibbon s opening remark cast an ironic shadow over his resounding statementnoted by redford preface critics of the grand tour derided its lack of adventure the tour of europe is a paltry thing said one th century critic a tame uniform unvaried prospect bohls duncan the grand tour wasaid to reinforce the old preconceptions and prejudices about national characteristics as jean gailhard s compleat gentleman observes french courteouspanish lordly italian amorous german clownish the deep suspicion with which tour was viewed at home in england where it was feared thathe very experiences that completed the british gentleman might well undo him werepitomised in the sarcastic nativist view of the ostentatiously well travelled maccaroni of the s and s file shepherds beside roman ruinsjpg thumb northerners found the contrast between roman ruins and modern peasants of the roman campagnan educationalesson in vanity vanities painting by nicolaes pietersz berchemauritshuis also worth noticing is thathe grand tour not only inspired stereotypes among the countries themselves but also led to a dynamic between the northern and southern europe by constantly depicting italy as a picturesque place the travellers also unconsciously degrade italy as a place of backwardnessnelson moe italy as europe south in the view from vesuvius italian culture and the souther question university of california press this unconscious degradation is best reflected in the famous verses of lamartine in which italy is depicted as a land of the past whereverything sleeps johann wolfgang von goethe italy journey after the arrival of steam powered transportation around the grand tour custom continued but it was of a qualitative difference cheaper to undertake safer easier open to anyone during much of the th century most educated young men of privilege undertook the grand tour germany and switzerland came to be included in a more broadly defined circuit later it became fashionable for young women as well a trip to italy with a spinster aunt as chaperone social chaperone was part of the upper class woman s education as in e m forster s novel a room with a view typical itinerary the most common itinerary of the grand toursee fussell buzard bohls anduncan shifted across generations in the cities it embraced buthe british tourist usually began in dover england crossed thenglish channel tostend in the netherlands belgium or to calais or le havre in france from there the tourist usually accompanied by a tutor known colloquially as a bear leader guide bear leader and if wealthy enough a troop of servants could rent or acquire a coach carriage coach which could be resold in any city or disassembled and packed across the alps as in giacomo casanova s travels who resold it on completion or opto make the trip by boat as far as the alps either travelling up the seine to paris or up the rhine to basel upon hiring a french speakinguide as french was the dominant language of thelite in europe during the th and th centuries the tourist and his entourage would travel to paris there the traveller might undertake lessons in french dancing fencing and equestrianism riding the appeal of paris lay in the sophisticated language and manners ofrenchigh society including courtly behavior and fashion thiserved the purpose of preparing the young man for a leadershiposition at home often in government or diplomacy file robertspencer jpg thumb upright robert spencer nd earl of sunderland painted in classical dress in rome by carlo maratti from paris he would typically go to urban switzerland for a while often to geneva the cradle of the protestant reformation or lausanne alpinism or mountaineering developed in the th century from there the traveller would endure a difficult crossing over the alps into northern italy such as athe great st bernard pass which includedismantling the carriage and luggage if wealthy enoughe might be carried over the hard terrain by servants once in italy the tourist would visiturin and less often milan then might spend a few months in florence where there was a considerable anglo italian society accessible to travelling englishmen of quality and where the tribuna of the uffizi tribuna of the uffizi gallery broughtogether in one space the monuments of high renaissance paintings and roman sculpture s that would inspire picture galleries adorned with antiquities at home with side trips to pisa then move on to padua the registro dei viaggiatoringlesin italia consists of autograph signatures of english and scottish visitorsome of them scholars to be sure j isaacs thearl of rochester s grand tour the review of english studies january bolognand venice the british idea of venice as the locus of decadent italianate architecture italianate allure made it an epitome and cultural setpiece of the grand tourredford bruce venice and the grand tour yale university press eglin john venice transfigured the myth of venice in british culture macmillan publishers macmillan from venice the traveller wento rome to study the ruins of ancient rome and the masterpieces of painting sculpture and architecture of rome s early christian renaissance and baroque periodsome travellers also visited naples to study music and after the mid th century to appreciate the recently discovered archaeological site s of herculaneum and pompeii and perhaps for the adventurous an ascent of mount vesuvius later in the period the more adventurous especially if provided with a yacht might attempt sicily the site of magna graecia greek ruins malta or even greece itself but naples or later paestum further south was the usual terminus from here the traveller traversed the alps heading northrough to the german languagerman speaking parts of europe the traveller might stop first innsbruck before visiting vienna dresden berlin and potsdam with perhapsome study time athe universities in munich or heidelberg from there travellers visited holland flanders with more gallery going and art appreciation beforeturning across the channel to england published accounts file grand tour william thomas beckfordjpg thumb william beckford s grand tour through europe shown in red published and often polished personal accounts of the grand tour provide illuminating detail and a first hand perspective of thexperiencexamining some accounts offered by authors in their own lifetimes jeremy blackblack fragments from the grand tour the huntington library quarterly autumn p detects thelement of literary artifice in these and cautions thathey should be approached as traveliterature rather than unvarnished accounts he lists as examples joseph addison john andrews a comparative view of the french and english nations in their manners politics and literature london william thomas beckford whose dreams waking thoughts and incidents was a published account of his letters back home in embellished with stream of consciousness associations william coxe historian william coxe sketches of the natural political and civil state of switzerland london travels into poland russia sweden andenmark london travels in switzerland london coxe s travels range far from the grand tour pattern elizabeth craven a journey through the crimea to constantinople london john moore scottish physician john moore tutor to successive dukes of hamilton moore a view of society and manners in italy with anecdotes relating to someminent characters london samuel jackson prattobiasmollett philip thicknesse a year s journey through france and part of spain london and arthur young writer arthur young although italy was written as the sink of iniquity many travelers were not kept from recording the activities they participated in or the people they met especially the women they encountered to the grand tourists italy was an unconventional country for the shameless women of venice made it unusual in its own way iain gordon brown water windows and women the significance of venice for scots in the age of the grand tour eighteenth century life november sir james hall confided in his written diary to comment on seeing more handsome women this day than i ever saw in my life also noting how flattering venetian dress was or perhaps the lack of it iain gordon brown water windows and women the significance of venice for scots in the age of the grand tour eighteenth century life november eighteenth and nineteenth century italian women witheir unfamiliar methods and routines were opposites to the western dress expected of european women in theighteenth and nineteenth century their foreign ways led to the documentation of encounters withem providing published accounts of the grand tour boswell courted noble ladies and recorded his progress withis relationships mentioning that madame micheli talked of religion philosophy kissed hand often the promiscuity of boswell s encounters with italian elite are shared in his diary and provide further detail on events that occurreduring the grand tour boswell notes yesterday morning wither pulled upetticoat and showed whole knees touched wither goodness all other liberties exquisite iain gordon brown water windows and women the significance of venice for scots in the age of the grand tour eighteenth century life november he describes his time withe italian women hencounters and shares a part of history in his written accounts lord byron s letters to his mother withe accounts of his travels have also been published byron spoke of his first enduring venetian love his landlord s wife mentioning that he has fallen in love with a very pretty venetian of two and twenty with great black eyeshe is married and so am i we have found sworn an eternal attachment i amore in love than ever and i verily believe we are one of the happiest unlawful couples on thiside of the alps george gordon byron and leslie a marchand byron s letters and journals the complete and unexpurgated text of alletters available in manuscript and the full printed version of all others newark university of delaware press many tourists enjoyed sexual relations while abroad buto a great extent were well behaved such as thomas pelham and scholarsuch as richard pococke who wrote lengthy letters of their grand tour experiences jeremy black italy and the grand tour new haven yale university press inventor sir francis ronalds journals and sketches of his tour to europe and the near east have been published on the web the letters written by sisters mary and ida saxton mckinley ida saxton of canton ohio in while on a six month tour offer insight into the grand tour tradition from an american perspective belden grand tour of ida saxton mckinley and sister mary saxton barber canton ohion television in the grand tour featured prominently in a bbc pbs miniseries based on little dorrit by charles dickenset mainly in venice it portrayed the grand tour as a rite of passage kevin mccloud presented kevin mccloud s grand tour on channel in with mccloud retracing the tours of united kingdom british architects in british art historian brian sewell followed in the footsteps of the grand tourists for a partelevision series brian sewell s grand tour produced by uk s channel five sewell travelled by car and confined his attention solely to italy stopping in rome florence naples pompeii turin milan cremona siena bologna vicenza paestum urbino tivoli and concluding at a venetian masked ball in the bbc produced an art history seriesister wendy s grand tour presented by carmelite nun sister wendy ostensibly an art history series the journey takes her fromadrid to saint petersburg with stop offs to see the great masterpieces the amazon motoring programme the grand tour tv series the grand tour is named after the traditional grand tour and refers to the show being set in a different location worldwideach week see also gap year hiking history hiking history hippie trail walking tour overseas experience field trip general references elizabeth bohls and ian duncan ed travel writing anthology oxford university press james buzard the grand tour and after in the cambridge companion to travel writing paul fussell theighteenth century and the grand tour in the norton book of travel edward chaney the grand tour and the great rebellion richard lassels and the voyage of italy in the seventeenth century cirvi geneva turin edward chaney richard lassels entry in the oxfordictionary of national biography edward chaney thevolution of the grand tour anglo italian cultural relationsince the renaissance frank cass london and portland orevisedition routledgedward chaney ed thevolution of english collecting yale university press new haven and london edward chaney and timothy wilks the jacobean grand tour early stuartravellers in europe ib tauris london lisa colletta ed the legacy of the grand tour new essays on traveliterature and culture fairleigh dickinson university press london s nchez j uregui alpa s maria dolores and scott wilcox thenglish prize the capture of the westmorland ship westmorland an episode of the grand tour new haven ct yale university presstephens richard a catalogue raisonn ofrancis towne london paul mellon centre geoffrey trease the grand tour yale university press andrewiton and ilaria bignamini grand tour the lure of italy in theighteenth century tate gallery exhibition catalogue clare hornsby ed the impact of italy the grand tour and beyond british school at rome ilaria bignamini and clare hornsby digging andealing in eighteenth century rome yale university press new haven and london roma britannicart patronage and cultural exchange in eighteenth century romeds d marshall k wolfe and s russell british school at rome pp henry s belden iii grand tour of ida saxton mckinley and sister mary saxton barber canton ohio korstanje m examining the norse mythology and the archetype of odin the inception of grand tour turizam znanstveno stru ni asopis externalinks the grand tour page for english course taught athe university of michigan grand tour online athe getty museum in our time the grand tour jeremy black edward chaney and chloe chard grand tour an exhibition project of the swedish artist matts leiderstam voyagers and voyeurs travellers in th century france anthology contemporary grand tour in italy pictures and quotes wanderings in the land of ham by a daughter of japhet london longman brown green longmans roberts a description of an oriental grand tour athe internet archive digitalibrary category types of tourism category types of travel category cultural tourism category rites of passage","main_words":["file","pantheon","thumb_interior","pantheon","rome","pantheon","th_century","painted","giovanni","paolo","file","batoni","francis","basset","st","baron","de","thumb_uprighthe","like","francis","basset","st","baron","de","basset","francis","basset","would_become","familiar","antiquities","though","invention","painter","batoni","grand_tour","traditional","trip","europe","undertaken","mainly","upper_class","european","young","men","sufficient","means","rank","humble","origin","could","find","sponsor","well","young","women","sufficient","means","accompanied","social","family","members","coming","age","come","age","abouthe","age","years_old","norm","sociology","custom","flourished","advent","large_scale","rail_transport","standard","travel","itinerary","served","educational","rite","passage","though","primarily","associated_withe","british","nobility","wealthy","landed","gentry","similar","trips","made","wealthyoung","men","protestantism","protestant","northern","second_half","th_century","south","tradition","declined","withe","neo","classical","enthusiasm","steamship","travel","made","journeys","much","easier","thomas_cook","made","cook","tour","early","mass_tourism","new_york","times","described","grand_tour","way","primary","value","grand_tour","believed","lay","classical","antiquity","renaissance","aristocratic","polite","society","theuropean","continent","addition","provided","opportunity","view","specific","works","art","possibly","chance","hear","certain","music","grand_tour","could","last","several","months","several_years","commonly","undertaken","company","cicerone","knowledgeable","guide","tutor","grand_tour","cultural","importance","e","p","thompson","stated","ruling","class","control","th_century","located","primarily","cultural","expression","economic","physical","military","power","thompson","making","thenglish","working_class","legacy","grand_tour","lives","modern_day","istill","evident","works","travel","literature","aristocratic","origins","romantic","travel","age","tourism","globalization","grand_tour","still","influences","destinations","tourists","choose","shapes","ideas","culture","sophistication","act","travel","grand_tour","neither","scholar","pilgrimage","religious","one","though","stay","venice","residence","rome","catholic","grand_tourists","followed","routes","protestant","th_century","tour","places","also_considered","essential","young","artists","understand","proper","painting","sculpture","techniques","though","grand_tour","valets","perhaps","cook","certainly","bear","leader","guide","bear","leader","scholarly","guide","beyond","advent","popular","guidesuch","much","trips","following","artists","thelite","considered","travel","centres","necessary","rites","passage","gentlemen","works","art","demonstrate","breadth","polish","received","tour","rome","like","thomas","jenkins","thomas","jenkins","provided","access","private","collections","antiquities","among","enough","proved","sale","market","raised","price","things","coins","formed","portable","souvenirs","respected","gentleman","guide","ancient","history","batoni","made","career","painting","thenglish","posed","ease","among","many","continued","naples","viewed","herculaneum","pompeii","ventured","far","southern","italy","fewer","still","greece","still","ottoman","greece","turkish","rule","rome","many","centuries","goal","pilgrims","especially","jubilee","christianity","jubilee","visited","seven","pilgrim","churches","rome","britain","thomas","travel_book","twelve","years","early","influence","grand_tour","far","tour","italy","far","naples","undertaken","thomas","howard","st","earl","arundel","earl","arundel","withis","wife","children","established","significant","partly","asked","inigo","jones","yet","established","architect","already","known","designer","act","cicerone","guide","chaney","thevolution","grand_tour","ed","inigo","jones","roman","larger","numbers","tourists","began","tours","peace","nster","according","oxford_english_dictionary","first","recorded","use","term","perhaps","introduction","english","richard","lassels","c","expatriate","roman","catholichurch","roman","catholic","catholichurch","priest","book","voyage","italy","published","paris","london","lassels","introduction","listed","four","areas","travel","furnished","accomplished","traveller","intellectual","society","social","thethics","ethical","opportunity","drawing","moral","instruction","traveller","saw","politics","political","file","jean","thumb","upright","portrait","douglas","hamilton","th","duke","hamilton","douglas","th","duke","hamilton","grand_tour","withis","physician","john","moore","scottish","physician","john","moore","latter","son","john","moore","british","army","officer","john","view","geneva","distance","stayed","two_years","painted","jean","idea","travelling","sake","curiosity","learning","developing","idea","th_century","john","essay","concerning","human","understanding","essay","concerning","human","understanding","argued","widely","accepted","knowledge","comes","entirely","thexternal","senses","one","knows","comes","physical","stimuli","one","exposed","thus","one","could","use","offers","requiring","change","place","travel","therefore","necessary","one","develop","mind","expand","knowledge","world","young","man","athe","outset","account","repeat","grand_tour","historian","edward","gibbon","remarked","according","law","custom","perhaps","reason","foreign","travel","completes","theducation","english","gentleman","consciously","adapted","intellectual","self","improvement","gibbon","continent","larger","liberal","plan","grand_tourists","briefly","libraries","romanticism","romantic","era","played","significant","part","introducing","william","thomas","beckford","william","beckford","wrote","account","grand_tour","made","gibbon","italian","tour","look","distinctly","chaney","gibbon","beckford","interpretation","dreams","thoughts","incidents","beckford","society","london","pp","typical","th_century","sentiment","observer","travelling","foreign","lands","reporting","findings","stayed","home","recounting","one","observations","society","large","increase","welfare","considered","obligation","grand_tour","flourished","fussell","p","grand_tour","offered","liberal","education","opportunity","acquire","things","otherwise","unavailable","home","lending","air","prestige","traveller","grand_tourists","would","return","full","books","works","art","scientific","instruments","cultural","artifacts","boxes","fountains","displayed","libraries","cabinet","room","cabinets","gardens","drawing","rooms","galleries","built","purpose","grand_tour","especially","portraits","traveller","painted","settings","became","obligatory","influence","artists","especially","thrived","grand_tourists","included","carlo","first","patronized","john","evelyn","early","e","chaney","thevolution","english","collecting","batoni","portrait","ist","giovanni","paolo","francesco","less","well","could","return","album","giovanni","perhaps","gibbon","opening","cast","ironic","shadow","preface","critics","grand_tour","lack","adventure","tour","europe","thing","said","one","th_century","critic","uniform","prospect","duncan","grand_tour","wasaid","reinforce","old","national","characteristics","jean","gentleman","observes","french","italian","german","deep","suspicion","tour","viewed","home","england","feared","thathe","experiences","completed","british","gentleman","might","well","view","well","travelled","file","shepherds","beside","roman","thumb","found","contrast","roman","ruins","modern","peasants","roman","painting","also","worth","thathe","grand_tour","inspired","stereotypes","among","countries","also","led","dynamic","northern","southern","europe","constantly","depicting","italy","picturesque","place","travellers","also","italy","place","italy","europe","south","view","italian","culture","question","university","california_press","degradation","best","reflected","famous","italy","depicted","land","past","johann","wolfgang","von","goethe","italy","journey","arrival","steam","powered","transportation","around","grand_tour","custom","continued","qualitative","difference","cheaper","undertake","safer","easier","open","anyone","much","th_century","educated","young","men","privilege","undertook","grand_tour","germany","switzerland","came","included","broadly","defined","circuit","later_became","fashionable","young","women","well","trip","italy","aunt","social","part","upper_class","woman","education","e","novel","room","view","typical","itinerary","common","itinerary","grand","fussell","shifted","across","generations","cities","embraced","buthe","british","tourist","usually","began","dover","england","crossed","thenglish","channel","netherlands","belgium","calais","france","tourist","usually","accompanied","tutor","known","colloquially","bear","leader","guide","bear","leader","wealthy","enough","troop","servants","could","rent","acquire","coach","carriage","coach","could","city","packed","across","alps","travels","completion","make","trip","boat","far","alps","either","travelling","paris","rhine","basel","upon","hiring","french","french","dominant","language","thelite","europe","th","th_centuries","tourist","would","travel","paris","traveller","might","undertake","lessons","french","dancing","riding","appeal","paris","lay","sophisticated","language","manners","society","including","behavior","fashion","purpose","preparing","young","man","home","often","government","file_jpg","thumb","upright","robert","spencer","earl","painted","classical","dress","rome","carlo","paris","would","typically","go","urban","switzerland","often","geneva","protestant","lausanne","mountaineering","developed","th_century","traveller","would","endure","difficult","crossing","alps","northern_italy","athe","great","st","bernard","pass","carriage","luggage","wealthy","might","carried","hard","terrain","servants","italy","tourist","would","less","often","milan","might","spend","months","florence","considerable","anglo","italian","society","accessible","travelling","quality","gallery","broughtogether","one","space","monuments","high","renaissance","paintings","roman","sculpture","would","inspire","picture","galleries","antiquities","home","side","trips","move","padua","dei","italia","consists","english","scottish","scholars","sure","j","thearl","rochester","grand_tour","review","english","studies","january","venice","british","idea","venice","italianate","architecture","italianate","allure","made","cultural","grand","bruce","venice","grand_tour","yale_university_press","john","venice","myth","venice","british","culture","macmillan","publishers","macmillan","venice","traveller","wento","rome","study","ruins","ancient_rome","painting","sculpture","architecture","rome","early","christian","renaissance","baroque","travellers","also","visited","naples","study","music","mid_th","century","appreciate","recently","discovered","archaeological","site","herculaneum","pompeii","perhaps","adventurous","ascent","mount","later","period","adventurous","especially","provided","yacht","might","attempt","sicily","site","greek","ruins","malta","even","greece","naples","later","south","usual","terminus","traveller","alps","heading","german_languagerman","speaking","parts","europe","traveller","might","stop","first","visiting","vienna","dresden","berlin","potsdam","study","time","athe","universities","munich","travellers","visited","holland","gallery","going","art","appreciation","beforeturning","across","channel","england","published","accounts","file","grand_tour","william","thomas","thumb","william","beckford","grand_tour","europe","shown","red","published","often","personal","accounts","grand_tour","provide","detail","first","hand","perspective","accounts","offered","authors","jeremy","fragments","grand_tour","huntington","library","quarterly","autumn","p","literary","thathey","approached","traveliterature","rather","accounts","lists","examples","joseph","addison","john","andrews","comparative","view","french","english","nations","manners","politics","literature","thomas","beckford","whose","dreams","thoughts","incidents","published","account","letters","back","home","stream","consciousness","associations","william","coxe","historian","william","coxe","sketches","natural","political","civil","state","switzerland","london","travels","poland","russia","sweden","andenmark","london","travels","switzerland","london","coxe","travels","range","far","grand_tour","pattern","elizabeth","journey","crimea","constantinople","london","john","moore","scottish","physician","john","moore","tutor","hamilton","moore","view","society","manners","italy","anecdotes","relating","characters","london","samuel","jackson","philip","year","journey","france","part","spain","london","arthur","young","writer","arthur","young","although","italy","written","sink","many","travelers","kept","recording","activities","participated","people","met","especially","women","encountered","grand_tourists","italy","unconventional","country","women","venice","made","unusual","way","iain","gordon","brown","water","windows","women","significance","venice","scots","age","grand_tour","eighteenth_century","life","november","sir","james","hall","written","diary","comment","seeing","women","day","ever","saw","life","also","noting","venetian","dress","perhaps","lack","iain","gordon","brown","water","windows","women","significance","venice","scots","age","grand_tour","eighteenth_century","life","november","eighteenth","nineteenth_century","italian","women","witheir","unfamiliar","methods","western","dress","expected","european","women","theighteenth","nineteenth_century","foreign","ways","led","documentation","encounters","withem","providing","published","accounts","grand_tour","boswell","noble","ladies","recorded","progress","withis","relationships","talked","religion","philosophy","hand","often","boswell","encounters","italian","elite","shared","diary","provide","detail","events","occurreduring","grand_tour","boswell","notes","morning","wither","pulled","showed","whole","knees","wither","iain","gordon","brown","water","windows","women","significance","venice","scots","age","grand_tour","eighteenth_century","life","november","describes","time","withe","italian","women","shares","part","history","written","accounts","lord","byron","letters","mother","withe","accounts","travels","also_published","byron","spoke","first","enduring","venetian","love","landlord","wife","fallen","love","pretty","venetian","two","twenty","great","black","married","found","eternal","love","ever","believe","one","unlawful","couples","alps","george","gordon","byron","leslie","byron","letters","journals","complete","text","available","manuscript","full","printed","version","others","newark","university","delaware","press","many","tourists","enjoyed","sexual","relations","abroad","buto","great","extent","well","thomas","richard","wrote","lengthy","letters","grand_tour","experiences","jeremy","black","italy","grand_tour","new","yale_university_press","inventor","sir","francis","journals","sketches","tour","europe","near","east","published","web","letters","written","sisters","mary","ida","saxton","mckinley","ida","saxton","canton","ohio","six","month","tour","offer","insight","grand_tour","tradition","american","perspective","grand_tour","ida","saxton","mckinley","sister","mary","saxton","barber","canton","television","grand_tour","featured","prominently","bbc","pbs","miniseries","based","little","charles","mainly","venice","portrayed","grand_tour","rite","passage","kevin","mccloud","presented","kevin","mccloud","grand_tour","channel","mccloud","tours","united_kingdom","british","architects","british","art","historian","brian","sewell","followed","footsteps","grand_tourists","series","brian","sewell","grand_tour","produced","uk","channel","five","sewell","travelled","car","confined","attention","solely","italy","stopping","rome","florence","naples","pompeii","turin","milan","bologna","venetian","ball","bbc","produced","art","history","wendy","grand_tour","presented","sister","wendy","ostensibly","art","history","series","journey","takes","saint","petersburg","stop","offs","see","great","amazon","motoring","programme","grand_tour","tv_series","grand_tour","named","traditional","grand_tour","refers","show","set","different","location","week","see_also","gap","year","hiking","history","hiking","history","hippie_trail","walking_tour","overseas","experience","field","trip","general","references","elizabeth","ian","duncan","ed","travel_writing","anthology","oxford_university_press","james","grand_tour","cambridge","companion","travel_writing","paul","fussell","theighteenth","century","grand_tour","norton","book","travel","edward","chaney","grand_tour","great","rebellion","richard","lassels","voyage","italy","seventeenth_century","geneva","turin","edward","chaney","richard","lassels","entry","oxfordictionary","national","biography","edward","chaney","thevolution","grand_tour","anglo","italian","cultural","renaissance","frank","london","portland","chaney","ed","thevolution","english","collecting","yale_university_press","new","chaney","timothy","grand_tour","early","europe","london","lisa","ed","legacy","grand_tour","new","essays","traveliterature","culture","university_press","london","j","maria","scott","thenglish","prize","capture","westmorland","ship","westmorland","episode","grand_tour","new","yale_university","richard","catalogue","london","paul","centre","geoffrey","grand_tour","yale_university_press","grand_tour","lure","italy","theighteenth","century","tate","gallery","exhibition","catalogue","clare","ed","impact","italy","grand_tour","beyond","british","school","rome","clare","eighteenth_century","rome","yale_university_press","new","london","patronage","cultural_exchange","eighteenth_century","marshall","k","wolfe","russell","british","school","rome","pp","henry","iii","grand_tour","ida","saxton","mckinley","sister","mary","saxton","barber","canton","ohio","korstanje","examining","norse","mythology","archetype","inception","grand_tour","externalinks","grand_tour","page","english","course","taught","athe_university","michigan","grand_tour","online","athe","getty","museum","time","grand_tour","jeremy","black","edward","chaney","grand_tour","exhibition","project","swedish","artist","travellers","th_century","france","anthology","contemporary","grand_tour","italy","pictures","quotes","land","ham","daughter","london","longman","brown","green","roberts","description","oriental","grand_tour","athe","internet_archive","category_types","tourism_category_types","travel_category","cultural_tourism","category","rites","passage"],"clean_bigrams":[["file","pantheon"],["pantheon","rome"],["rome","pantheon"],["th","century"],["century","painted"],["giovanni","paolo"],["file","batoni"],["batoni","francis"],["francis","basset"],["basset","st"],["st","baron"],["baron","de"],["thumb","uprighthe"],["uprighthe","grand"],["grand","tourist"],["tourist","like"],["like","francis"],["francis","basset"],["basset","st"],["st","baron"],["baron","de"],["basset","francis"],["francis","basset"],["basset","would"],["would","become"],["become","familiar"],["antiquities","though"],["grand","tour"],["traditional","trip"],["europe","undertaken"],["mainly","upper"],["upper","class"],["class","european"],["european","young"],["young","men"],["sufficient","means"],["humble","origin"],["could","find"],["young","women"],["sufficient","means"],["family","members"],["age","come"],["age","abouthe"],["abouthe","age"],["years","old"],["norm","sociology"],["sociology","custom"],["custom","flourished"],["large","scale"],["scale","rail"],["rail","transport"],["standard","travel"],["travel","itinerary"],["educational","rite"],["passage","though"],["though","primarily"],["primarily","associated"],["associated","withe"],["withe","british"],["british","nobility"],["wealthy","landed"],["landed","gentry"],["gentry","similar"],["similar","trips"],["wealthyoung","men"],["protestantism","protestant"],["protestant","northern"],["second","half"],["th","century"],["north","americans"],["tradition","declined"],["declined","withe"],["neo","classical"],["classical","enthusiasm"],["steamship","travel"],["travel","made"],["journeys","much"],["much","easier"],["thomas","cook"],["cook","made"],["tour","early"],["early","mass"],["mass","tourism"],["new","york"],["york","times"],["grand","tour"],["primary","value"],["grand","tour"],["believed","lay"],["classical","antiquity"],["polite","society"],["theuropean","continent"],["view","specific"],["specific","works"],["hear","certain"],["certain","music"],["grand","tour"],["tour","could"],["could","last"],["several","months"],["several","years"],["commonly","undertaken"],["knowledgeable","guide"],["grand","tour"],["cultural","importance"],["e","p"],["p","thompson"],["thompson","stated"],["stated","ruling"],["ruling","class"],["class","control"],["th","century"],["located","primarily"],["physical","military"],["military","power"],["power","thompson"],["thenglish","working"],["working","class"],["grand","tour"],["tour","lives"],["modern","day"],["istill","evident"],["aristocratic","origins"],["romantic","travel"],["grand","tour"],["tour","still"],["still","influences"],["destinations","tourists"],["tourists","choose"],["grand","tour"],["religious","one"],["one","though"],["catholic","grand"],["grand","tourists"],["tourists","followed"],["th","century"],["also","considered"],["considered","essential"],["young","artists"],["understand","proper"],["proper","painting"],["painting","sculpture"],["sculpture","techniques"],["techniques","though"],["grand","tour"],["tour","valets"],["cook","certainly"],["bear","leader"],["leader","guide"],["guide","bear"],["bear","leader"],["scholarly","guide"],["popular","guidesuch"],["thelite","considered"],["considered","travel"],["necessary","rites"],["like","thomas"],["thomas","jenkins"],["thomas","jenkins"],["jenkins","provided"],["provided","access"],["private","collections"],["antiquities","among"],["enough","proved"],["market","raised"],["portable","souvenirs"],["respected","gentleman"],["ancient","history"],["batoni","made"],["painting","thenglish"],["ease","among"],["many","continued"],["viewed","herculaneum"],["ventured","far"],["southern","italy"],["fewer","still"],["greece","still"],["ottoman","greece"],["greece","turkish"],["turkish","rule"],["rule","rome"],["many","centuries"],["pilgrims","especially"],["jubilee","christianity"],["christianity","jubilee"],["seven","pilgrim"],["pilgrim","churches"],["britain","thomas"],["travel","book"],["twelve","years"],["early","influence"],["grand","tour"],["naples","undertaken"],["thomas","howard"],["howard","st"],["st","earl"],["arundel","withis"],["withis","wife"],["asked","inigo"],["inigo","jones"],["yet","established"],["already","known"],["cicerone","guide"],["guide","chaney"],["chaney","thevolution"],["grand","tour"],["inigo","jones"],["jones","roman"],["larger","numbers"],["tourists","began"],["oxford","english"],["english","dictionary"],["first","recorded"],["recorded","use"],["term","perhaps"],["richard","lassels"],["lassels","c"],["expatriate","roman"],["roman","catholichurch"],["catholichurch","roman"],["roman","catholic"],["catholichurch","priest"],["london","lassels"],["lassels","introduction"],["introduction","listed"],["listed","four"],["four","areas"],["travel","furnished"],["society","social"],["social","thethics"],["thethics","ethical"],["drawing","moral"],["moral","instruction"],["traveller","saw"],["politics","political"],["political","file"],["file","jean"],["thumb","upright"],["upright","portrait"],["douglas","hamilton"],["hamilton","th"],["th","duke"],["hamilton","douglas"],["douglas","th"],["th","duke"],["grand","tour"],["tour","withis"],["withis","physician"],["physician","john"],["john","moore"],["moore","scottish"],["scottish","physician"],["physician","john"],["john","moore"],["latter","son"],["son","john"],["john","moore"],["moore","british"],["british","army"],["army","officer"],["officer","john"],["two","years"],["years","painted"],["developing","idea"],["th","century"],["essay","concerning"],["concerning","human"],["human","understanding"],["understanding","essay"],["essay","concerning"],["concerning","human"],["human","understanding"],["widely","accepted"],["knowledge","comes"],["comes","entirely"],["thexternal","senses"],["one","knows"],["knows","comes"],["physical","stimuli"],["exposed","thus"],["thus","one"],["one","could"],["could","use"],["offers","requiring"],["place","travel"],["travel","therefore"],["expand","knowledge"],["young","man"],["man","athe"],["athe","outset"],["repeat","grand"],["grand","tour"],["historian","edward"],["edward","gibbon"],["gibbon","remarked"],["reason","foreign"],["foreign","travel"],["travel","completes"],["completes","theducation"],["english","gentleman"],["gentleman","consciously"],["consciously","adapted"],["intellectual","self"],["self","improvement"],["improvement","gibbon"],["liberal","plan"],["grand","tourists"],["romanticism","romantic"],["romantic","era"],["significant","part"],["part","introducing"],["introducing","william"],["william","thomas"],["thomas","beckford"],["beckford","william"],["william","beckford"],["beckford","wrote"],["grand","tour"],["made","gibbon"],["italian","tour"],["tour","look"],["look","distinctly"],["chaney","gibbon"],["gibbon","beckford"],["beckford","society"],["london","pp"],["typical","th"],["th","century"],["century","sentiment"],["observer","travelling"],["foreign","lands"],["lands","reporting"],["stayed","home"],["home","recounting"],["recounting","one"],["grand","tour"],["tour","flourished"],["fussell","p"],["grand","tour"],["tour","offered"],["liberal","education"],["acquire","things"],["things","otherwise"],["otherwise","unavailable"],["home","lending"],["traveller","grand"],["grand","tourists"],["tourists","would"],["would","return"],["books","works"],["art","scientific"],["scientific","instruments"],["cultural","artifacts"],["libraries","cabinet"],["cabinet","room"],["room","cabinets"],["cabinets","gardens"],["gardens","drawing"],["drawing","rooms"],["galleries","built"],["grand","tour"],["tour","especially"],["especially","portraits"],["traveller","painted"],["settings","became"],["influence","artists"],["especially","thrived"],["grand","tourists"],["tourists","included"],["included","carlo"],["first","patronized"],["john","evelyn"],["e","chaney"],["chaney","thevolution"],["english","collecting"],["portrait","ist"],["giovanni","paolo"],["less","well"],["could","return"],["ironic","shadow"],["preface","critics"],["grand","tour"],["thing","said"],["said","one"],["one","th"],["th","century"],["century","critic"],["grand","tour"],["tour","wasaid"],["national","characteristics"],["gentleman","observes"],["observes","french"],["deep","suspicion"],["feared","thathe"],["british","gentleman"],["gentleman","might"],["might","well"],["well","travelled"],["file","shepherds"],["shepherds","beside"],["beside","roman"],["roman","ruins"],["modern","peasants"],["also","worth"],["thathe","grand"],["grand","tour"],["inspired","stereotypes"],["stereotypes","among"],["also","led"],["southern","europe"],["constantly","depicting"],["depicting","italy"],["picturesque","place"],["travellers","also"],["europe","south"],["italian","culture"],["question","university"],["california","press"],["best","reflected"],["johann","wolfgang"],["wolfgang","von"],["von","goethe"],["goethe","italy"],["italy","journey"],["steam","powered"],["powered","transportation"],["transportation","around"],["grand","tour"],["tour","custom"],["custom","continued"],["qualitative","difference"],["difference","cheaper"],["undertake","safer"],["safer","easier"],["easier","open"],["th","century"],["educated","young"],["young","men"],["privilege","undertook"],["grand","tour"],["tour","germany"],["switzerland","came"],["broadly","defined"],["defined","circuit"],["circuit","later"],["became","fashionable"],["young","women"],["upper","class"],["class","woman"],["view","typical"],["typical","itinerary"],["common","itinerary"],["shifted","across"],["across","generations"],["embraced","buthe"],["buthe","british"],["british","tourist"],["tourist","usually"],["usually","began"],["dover","england"],["england","crossed"],["crossed","thenglish"],["thenglish","channel"],["netherlands","belgium"],["tourist","usually"],["usually","accompanied"],["tutor","known"],["known","colloquially"],["bear","leader"],["leader","guide"],["guide","bear"],["bear","leader"],["wealthy","enough"],["servants","could"],["could","rent"],["coach","carriage"],["carriage","coach"],["packed","across"],["alps","either"],["either","travelling"],["basel","upon"],["upon","hiring"],["dominant","language"],["th","centuries"],["tourist","would"],["would","travel"],["traveller","might"],["might","undertake"],["undertake","lessons"],["french","dancing"],["paris","lay"],["sophisticated","language"],["society","including"],["young","man"],["home","often"],["jpg","thumb"],["thumb","upright"],["upright","robert"],["robert","spencer"],["classical","dress"],["would","typically"],["typically","go"],["urban","switzerland"],["mountaineering","developed"],["th","century"],["traveller","would"],["would","endure"],["difficult","crossing"],["northern","italy"],["athe","great"],["great","st"],["st","bernard"],["bernard","pass"],["hard","terrain"],["tourist","would"],["less","often"],["often","milan"],["might","spend"],["considerable","anglo"],["anglo","italian"],["italian","society"],["society","accessible"],["gallery","broughtogether"],["one","space"],["high","renaissance"],["renaissance","paintings"],["roman","sculpture"],["would","inspire"],["inspire","picture"],["picture","galleries"],["side","trips"],["italia","consists"],["sure","j"],["grand","tour"],["english","studies"],["studies","january"],["british","idea"],["italianate","architecture"],["architecture","italianate"],["italianate","allure"],["allure","made"],["bruce","venice"],["grand","tour"],["tour","yale"],["yale","university"],["university","press"],["john","venice"],["british","culture"],["culture","macmillan"],["macmillan","publishers"],["publishers","macmillan"],["traveller","wento"],["wento","rome"],["ancient","rome"],["painting","sculpture"],["early","christian"],["christian","renaissance"],["travellers","also"],["also","visited"],["visited","naples"],["study","music"],["mid","th"],["th","century"],["recently","discovered"],["discovered","archaeological"],["archaeological","site"],["adventurous","especially"],["yacht","might"],["might","attempt"],["attempt","sicily"],["greek","ruins"],["ruins","malta"],["even","greece"],["usual","terminus"],["alps","heading"],["german","languagerman"],["languagerman","speaking"],["speaking","parts"],["traveller","might"],["might","stop"],["stop","first"],["visiting","vienna"],["vienna","dresden"],["dresden","berlin"],["study","time"],["time","athe"],["athe","universities"],["travellers","visited"],["visited","holland"],["gallery","going"],["art","appreciation"],["appreciation","beforeturning"],["beforeturning","across"],["england","published"],["published","accounts"],["accounts","file"],["file","grand"],["grand","tour"],["tour","william"],["william","thomas"],["thumb","william"],["william","beckford"],["grand","tour"],["europe","shown"],["red","published"],["personal","accounts"],["grand","tour"],["tour","provide"],["first","hand"],["hand","perspective"],["accounts","offered"],["grand","tour"],["huntington","library"],["library","quarterly"],["quarterly","autumn"],["autumn","p"],["traveliterature","rather"],["examples","joseph"],["joseph","addison"],["addison","john"],["john","andrews"],["comparative","view"],["english","nations"],["manners","politics"],["literature","london"],["london","william"],["william","thomas"],["thomas","beckford"],["beckford","whose"],["whose","dreams"],["published","account"],["letters","back"],["back","home"],["consciousness","associations"],["associations","william"],["william","coxe"],["coxe","historian"],["historian","william"],["william","coxe"],["coxe","sketches"],["natural","political"],["civil","state"],["switzerland","london"],["london","travels"],["poland","russia"],["russia","sweden"],["sweden","andenmark"],["andenmark","london"],["london","travels"],["switzerland","london"],["london","coxe"],["travels","range"],["range","far"],["grand","tour"],["tour","pattern"],["pattern","elizabeth"],["constantinople","london"],["london","john"],["john","moore"],["moore","scottish"],["scottish","physician"],["physician","john"],["john","moore"],["moore","tutor"],["hamilton","moore"],["anecdotes","relating"],["characters","london"],["london","samuel"],["samuel","jackson"],["spain","london"],["arthur","young"],["young","writer"],["writer","arthur"],["arthur","young"],["young","although"],["although","italy"],["many","travelers"],["met","especially"],["grand","tourists"],["tourists","italy"],["unconventional","country"],["venice","made"],["way","iain"],["iain","gordon"],["gordon","brown"],["brown","water"],["water","windows"],["grand","tour"],["tour","eighteenth"],["eighteenth","century"],["century","life"],["life","november"],["november","sir"],["sir","james"],["james","hall"],["written","diary"],["ever","saw"],["life","also"],["also","noting"],["venetian","dress"],["iain","gordon"],["gordon","brown"],["brown","water"],["water","windows"],["grand","tour"],["tour","eighteenth"],["eighteenth","century"],["century","life"],["life","november"],["november","eighteenth"],["nineteenth","century"],["century","italian"],["italian","women"],["women","witheir"],["witheir","unfamiliar"],["unfamiliar","methods"],["western","dress"],["dress","expected"],["european","women"],["nineteenth","century"],["foreign","ways"],["ways","led"],["encounters","withem"],["withem","providing"],["providing","published"],["published","accounts"],["grand","tour"],["tour","boswell"],["noble","ladies"],["progress","withis"],["withis","relationships"],["religion","philosophy"],["hand","often"],["italian","elite"],["grand","tour"],["tour","boswell"],["boswell","notes"],["morning","wither"],["wither","pulled"],["showed","whole"],["whole","knees"],["iain","gordon"],["gordon","brown"],["brown","water"],["water","windows"],["grand","tour"],["tour","eighteenth"],["eighteenth","century"],["century","life"],["life","november"],["time","withe"],["withe","italian"],["italian","women"],["written","accounts"],["accounts","lord"],["lord","byron"],["mother","withe"],["withe","accounts"],["published","byron"],["byron","spoke"],["first","enduring"],["enduring","venetian"],["venetian","love"],["pretty","venetian"],["great","black"],["unlawful","couples"],["alps","george"],["george","gordon"],["gordon","byron"],["full","printed"],["printed","version"],["others","newark"],["newark","university"],["delaware","press"],["press","many"],["many","tourists"],["tourists","enjoyed"],["enjoyed","sexual"],["sexual","relations"],["abroad","buto"],["great","extent"],["wrote","lengthy"],["lengthy","letters"],["grand","tour"],["tour","experiences"],["experiences","jeremy"],["jeremy","black"],["black","italy"],["grand","tour"],["tour","new"],["yale","university"],["university","press"],["press","inventor"],["inventor","sir"],["sir","francis"],["near","east"],["letters","written"],["sisters","mary"],["ida","saxton"],["saxton","mckinley"],["mckinley","ida"],["ida","saxton"],["canton","ohio"],["six","month"],["month","tour"],["tour","offer"],["offer","insight"],["grand","tour"],["tour","tradition"],["american","perspective"],["grand","tour"],["ida","saxton"],["saxton","mckinley"],["sister","mary"],["mary","saxton"],["saxton","barber"],["barber","canton"],["grand","tour"],["tour","featured"],["featured","prominently"],["bbc","pbs"],["pbs","miniseries"],["miniseries","based"],["grand","tour"],["passage","kevin"],["kevin","mccloud"],["mccloud","presented"],["presented","kevin"],["kevin","mccloud"],["grand","tour"],["united","kingdom"],["kingdom","british"],["british","architects"],["british","art"],["art","historian"],["historian","brian"],["brian","sewell"],["sewell","followed"],["grand","tourists"],["series","brian"],["brian","sewell"],["grand","tour"],["tour","produced"],["channel","five"],["five","sewell"],["sewell","travelled"],["attention","solely"],["italy","stopping"],["rome","florence"],["florence","naples"],["naples","pompeii"],["pompeii","turin"],["turin","milan"],["bbc","produced"],["art","history"],["grand","tour"],["tour","presented"],["sister","wendy"],["wendy","ostensibly"],["art","history"],["history","series"],["journey","takes"],["saint","petersburg"],["stop","offs"],["amazon","motoring"],["motoring","programme"],["grand","tour"],["tour","tv"],["tv","series"],["grand","tour"],["traditional","grand"],["grand","tour"],["different","location"],["week","see"],["see","also"],["also","gap"],["gap","year"],["year","hiking"],["hiking","history"],["history","hiking"],["hiking","history"],["history","hippie"],["hippie","trail"],["trail","walking"],["walking","tour"],["tour","overseas"],["overseas","experience"],["experience","field"],["field","trip"],["trip","general"],["general","references"],["references","elizabeth"],["ian","duncan"],["duncan","ed"],["ed","travel"],["travel","writing"],["writing","anthology"],["anthology","oxford"],["oxford","university"],["university","press"],["press","james"],["grand","tour"],["cambridge","companion"],["travel","writing"],["writing","paul"],["paul","fussell"],["fussell","theighteenth"],["theighteenth","century"],["grand","tour"],["norton","book"],["travel","edward"],["edward","chaney"],["grand","tour"],["great","rebellion"],["rebellion","richard"],["richard","lassels"],["seventeenth","century"],["geneva","turin"],["turin","edward"],["edward","chaney"],["chaney","richard"],["richard","lassels"],["lassels","entry"],["national","biography"],["biography","edward"],["edward","chaney"],["chaney","thevolution"],["grand","tour"],["tour","anglo"],["anglo","italian"],["italian","cultural"],["renaissance","frank"],["chaney","ed"],["ed","thevolution"],["english","collecting"],["collecting","yale"],["yale","university"],["university","press"],["press","new"],["london","edward"],["edward","chaney"],["grand","tour"],["tour","early"],["london","lisa"],["grand","tour"],["tour","new"],["new","essays"],["university","press"],["press","london"],["thenglish","prize"],["westmorland","ship"],["ship","westmorland"],["grand","tour"],["tour","new"],["yale","university"],["london","paul"],["centre","geoffrey"],["grand","tour"],["tour","yale"],["yale","university"],["university","press"],["grand","tour"],["theighteenth","century"],["century","tate"],["tate","gallery"],["gallery","exhibition"],["exhibition","catalogue"],["catalogue","clare"],["grand","tour"],["beyond","british"],["british","school"],["eighteenth","century"],["century","rome"],["rome","yale"],["yale","university"],["university","press"],["press","new"],["cultural","exchange"],["eighteenth","century"],["marshall","k"],["k","wolfe"],["russell","british"],["british","school"],["rome","pp"],["pp","henry"],["iii","grand"],["grand","tour"],["ida","saxton"],["saxton","mckinley"],["sister","mary"],["mary","saxton"],["saxton","barber"],["barber","canton"],["canton","ohio"],["ohio","korstanje"],["norse","mythology"],["grand","tour"],["grand","tour"],["tour","page"],["english","course"],["course","taught"],["taught","athe"],["athe","university"],["michigan","grand"],["grand","tour"],["tour","online"],["online","athe"],["athe","getty"],["getty","museum"],["grand","tour"],["tour","jeremy"],["jeremy","black"],["black","edward"],["edward","chaney"],["grand","tour"],["exhibition","project"],["swedish","artist"],["th","century"],["century","france"],["france","anthology"],["anthology","contemporary"],["contemporary","grand"],["grand","tour"],["italy","pictures"],["london","longman"],["longman","brown"],["brown","green"],["oriental","grand"],["grand","tour"],["tour","athe"],["athe","internet"],["internet","archive"],["category","types"],["tourism","category"],["category","types"],["travel","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","rites"]],"all_collocations":["file pantheon","pantheon rome","rome pantheon","th century","century painted","giovanni paolo","file batoni","batoni francis","francis basset","basset st","st baron","baron de","thumb uprighthe","uprighthe grand","grand tourist","tourist like","like francis","francis basset","basset st","st baron","baron de","basset francis","francis basset","basset would","would become","become familiar","antiquities though","grand tour","traditional trip","europe undertaken","mainly upper","upper class","class european","european young","young men","sufficient means","humble origin","could find","young women","sufficient means","family members","age come","age abouthe","abouthe age","years old","norm sociology","sociology custom","custom flourished","large scale","scale rail","rail transport","standard travel","travel itinerary","educational rite","passage though","though primarily","primarily associated","associated withe","withe british","british nobility","wealthy landed","landed gentry","gentry similar","similar trips","wealthyoung men","protestantism protestant","protestant northern","second half","th century","north americans","tradition declined","declined withe","neo classical","classical enthusiasm","steamship travel","travel made","journeys much","much easier","thomas cook","cook made","tour early","early mass","mass tourism","new york","york times","grand tour","primary value","grand tour","believed lay","classical antiquity","polite society","theuropean continent","view specific","specific works","hear certain","certain music","grand tour","tour could","could last","several months","several years","commonly undertaken","knowledgeable guide","grand tour","cultural importance","e p","p thompson","thompson stated","stated ruling","ruling class","class control","th century","located primarily","physical military","military power","power thompson","thenglish working","working class","grand tour","tour lives","modern day","istill evident","aristocratic origins","romantic travel","grand tour","tour still","still influences","destinations tourists","tourists choose","grand tour","religious one","one though","catholic grand","grand tourists","tourists followed","th century","also considered","considered essential","young artists","understand proper","proper painting","painting sculpture","sculpture techniques","techniques though","grand tour","tour valets","cook certainly","bear leader","leader guide","guide bear","bear leader","scholarly guide","popular guidesuch","thelite considered","considered travel","necessary rites","like thomas","thomas jenkins","thomas jenkins","jenkins provided","provided access","private collections","antiquities among","enough proved","market raised","portable souvenirs","respected gentleman","ancient history","batoni made","painting thenglish","ease among","many continued","viewed herculaneum","ventured far","southern italy","fewer still","greece still","ottoman greece","greece turkish","turkish rule","rule rome","many centuries","pilgrims especially","jubilee christianity","christianity jubilee","seven pilgrim","pilgrim churches","britain thomas","travel book","twelve years","early influence","grand tour","naples undertaken","thomas howard","howard st","st earl","arundel withis","withis wife","asked inigo","inigo jones","yet established","already known","cicerone guide","guide chaney","chaney thevolution","grand tour","inigo jones","jones roman","larger numbers","tourists began","oxford english","english dictionary","first recorded","recorded use","term perhaps","richard lassels","lassels c","expatriate roman","roman catholichurch","catholichurch roman","roman catholic","catholichurch priest","london lassels","lassels introduction","introduction listed","listed four","four areas","travel furnished","society social","social thethics","thethics ethical","drawing moral","moral instruction","traveller saw","politics political","political file","file jean","upright portrait","douglas hamilton","hamilton th","th duke","hamilton douglas","douglas th","th duke","grand tour","tour withis","withis physician","physician john","john moore","moore scottish","scottish physician","physician john","john moore","latter son","son john","john moore","moore british","british army","army officer","officer john","two years","years painted","developing idea","th century","essay concerning","concerning human","human understanding","understanding essay","essay concerning","concerning human","human understanding","widely accepted","knowledge comes","comes entirely","thexternal senses","one knows","knows comes","physical stimuli","exposed thus","thus one","one could","could use","offers requiring","place travel","travel therefore","expand knowledge","young man","man athe","athe outset","repeat grand","grand tour","historian edward","edward gibbon","gibbon remarked","reason foreign","foreign travel","travel completes","completes theducation","english gentleman","gentleman consciously","consciously adapted","intellectual self","self improvement","improvement gibbon","liberal plan","grand tourists","romanticism romantic","romantic era","significant part","part introducing","introducing william","william thomas","thomas beckford","beckford william","william beckford","beckford wrote","grand tour","made gibbon","italian tour","tour look","look distinctly","chaney gibbon","gibbon beckford","beckford society","london pp","typical th","th century","century sentiment","observer travelling","foreign lands","lands reporting","stayed home","home recounting","recounting one","grand tour","tour flourished","fussell p","grand tour","tour offered","liberal education","acquire things","things otherwise","otherwise unavailable","home lending","traveller grand","grand tourists","tourists would","would return","books works","art scientific","scientific instruments","cultural artifacts","libraries cabinet","cabinet room","room cabinets","cabinets gardens","gardens drawing","drawing rooms","galleries built","grand tour","tour especially","especially portraits","traveller painted","settings became","influence artists","especially thrived","grand tourists","tourists included","included carlo","first patronized","john evelyn","e chaney","chaney thevolution","english collecting","portrait ist","giovanni paolo","less well","could return","ironic shadow","preface critics","grand tour","thing said","said one","one th","th century","century critic","grand tour","tour wasaid","national characteristics","gentleman observes","observes french","deep suspicion","feared thathe","british gentleman","gentleman might","might well","well travelled","file shepherds","shepherds beside","beside roman","roman ruins","modern peasants","also worth","thathe grand","grand tour","inspired stereotypes","stereotypes among","also led","southern europe","constantly depicting","depicting italy","picturesque place","travellers also","europe south","italian culture","question university","california press","best reflected","johann wolfgang","wolfgang von","von goethe","goethe italy","italy journey","steam powered","powered transportation","transportation around","grand tour","tour custom","custom continued","qualitative difference","difference cheaper","undertake safer","safer easier","easier open","th century","educated young","young men","privilege undertook","grand tour","tour germany","switzerland came","broadly defined","defined circuit","circuit later","became fashionable","young women","upper class","class woman","view typical","typical itinerary","common itinerary","shifted across","across generations","embraced buthe","buthe british","british tourist","tourist usually","usually began","dover england","england crossed","crossed thenglish","thenglish channel","netherlands belgium","tourist usually","usually accompanied","tutor known","known colloquially","bear leader","leader guide","guide bear","bear leader","wealthy enough","servants could","could rent","coach carriage","carriage coach","packed across","alps either","either travelling","basel upon","upon hiring","dominant language","th centuries","tourist would","would travel","traveller might","might undertake","undertake lessons","french dancing","paris lay","sophisticated language","society including","young man","home often","upright robert","robert spencer","classical dress","would typically","typically go","urban switzerland","mountaineering developed","th century","traveller would","would endure","difficult crossing","northern italy","athe great","great st","st bernard","bernard pass","hard terrain","tourist would","less often","often milan","might spend","considerable anglo","anglo italian","italian society","society accessible","gallery broughtogether","one space","high renaissance","renaissance paintings","roman sculpture","would inspire","inspire picture","picture galleries","side trips","italia consists","sure j","grand tour","english studies","studies january","british idea","italianate architecture","architecture italianate","italianate allure","allure made","bruce venice","grand tour","tour yale","yale university","university press","john venice","british culture","culture macmillan","macmillan publishers","publishers macmillan","traveller wento","wento rome","ancient rome","painting sculpture","early christian","christian renaissance","travellers also","also visited","visited naples","study music","mid th","th century","recently discovered","discovered archaeological","archaeological site","adventurous especially","yacht might","might attempt","attempt sicily","greek ruins","ruins malta","even greece","usual terminus","alps heading","german languagerman","languagerman speaking","speaking parts","traveller might","might stop","stop first","visiting vienna","vienna dresden","dresden berlin","study time","time athe","athe universities","travellers visited","visited holland","gallery going","art appreciation","appreciation beforeturning","beforeturning across","england published","published accounts","accounts file","file grand","grand tour","tour william","william thomas","thumb william","william beckford","grand tour","europe shown","red published","personal accounts","grand tour","tour provide","first hand","hand perspective","accounts offered","grand tour","huntington library","library quarterly","quarterly autumn","autumn p","traveliterature rather","examples joseph","joseph addison","addison john","john andrews","comparative view","english nations","manners politics","literature london","london william","william thomas","thomas beckford","beckford whose","whose dreams","published account","letters back","back home","consciousness associations","associations william","william coxe","coxe historian","historian william","william coxe","coxe sketches","natural political","civil state","switzerland london","london travels","poland russia","russia sweden","sweden andenmark","andenmark london","london travels","switzerland london","london coxe","travels range","range far","grand tour","tour pattern","pattern elizabeth","constantinople london","london john","john moore","moore scottish","scottish physician","physician john","john moore","moore tutor","hamilton moore","anecdotes relating","characters london","london samuel","samuel jackson","spain london","arthur young","young writer","writer arthur","arthur young","young although","although italy","many travelers","met especially","grand tourists","tourists italy","unconventional country","venice made","way iain","iain gordon","gordon brown","brown water","water windows","grand tour","tour eighteenth","eighteenth century","century life","life november","november sir","sir james","james hall","written diary","ever saw","life also","also noting","venetian dress","iain gordon","gordon brown","brown water","water windows","grand tour","tour eighteenth","eighteenth century","century life","life november","november eighteenth","nineteenth century","century italian","italian women","women witheir","witheir unfamiliar","unfamiliar methods","western dress","dress expected","european women","nineteenth century","foreign ways","ways led","encounters withem","withem providing","providing published","published accounts","grand tour","tour boswell","noble ladies","progress withis","withis relationships","religion philosophy","hand often","italian elite","grand tour","tour boswell","boswell notes","morning wither","wither pulled","showed whole","whole knees","iain gordon","gordon brown","brown water","water windows","grand tour","tour eighteenth","eighteenth century","century life","life november","time withe","withe italian","italian women","written accounts","accounts lord","lord byron","mother withe","withe accounts","published byron","byron spoke","first enduring","enduring venetian","venetian love","pretty venetian","great black","unlawful couples","alps george","george gordon","gordon byron","full printed","printed version","others newark","newark university","delaware press","press many","many tourists","tourists enjoyed","enjoyed sexual","sexual relations","abroad buto","great extent","wrote lengthy","lengthy letters","grand tour","tour experiences","experiences jeremy","jeremy black","black italy","grand tour","tour new","yale university","university press","press inventor","inventor sir","sir francis","near east","letters written","sisters mary","ida saxton","saxton mckinley","mckinley ida","ida saxton","canton ohio","six month","month tour","tour offer","offer insight","grand tour","tour tradition","american perspective","grand tour","ida saxton","saxton mckinley","sister mary","mary saxton","saxton barber","barber canton","grand tour","tour featured","featured prominently","bbc pbs","pbs miniseries","miniseries based","grand tour","passage kevin","kevin mccloud","mccloud presented","presented kevin","kevin mccloud","grand tour","united kingdom","kingdom british","british architects","british art","art historian","historian brian","brian sewell","sewell followed","grand tourists","series brian","brian sewell","grand tour","tour produced","channel five","five sewell","sewell travelled","attention solely","italy stopping","rome florence","florence naples","naples pompeii","pompeii turin","turin milan","bbc produced","art history","grand tour","tour presented","sister wendy","wendy ostensibly","art history","history series","journey takes","saint petersburg","stop offs","amazon motoring","motoring programme","grand tour","tour tv","tv series","grand tour","traditional grand","grand tour","different location","week see","see also","also gap","gap year","year hiking","hiking history","history hiking","hiking history","history hippie","hippie trail","trail walking","walking tour","tour overseas","overseas experience","experience field","field trip","trip general","general references","references elizabeth","ian duncan","duncan ed","ed travel","travel writing","writing anthology","anthology oxford","oxford university","university press","press james","grand tour","cambridge companion","travel writing","writing paul","paul fussell","fussell theighteenth","theighteenth century","grand tour","norton book","travel edward","edward chaney","grand tour","great rebellion","rebellion richard","richard lassels","seventeenth century","geneva turin","turin edward","edward chaney","chaney richard","richard lassels","lassels entry","national biography","biography edward","edward chaney","chaney thevolution","grand tour","tour anglo","anglo italian","italian cultural","renaissance frank","chaney ed","ed thevolution","english collecting","collecting yale","yale university","university press","press new","london edward","edward chaney","grand tour","tour early","london lisa","grand tour","tour new","new essays","university press","press london","thenglish prize","westmorland ship","ship westmorland","grand tour","tour new","yale university","london paul","centre geoffrey","grand tour","tour yale","yale university","university press","grand tour","theighteenth century","century tate","tate gallery","gallery exhibition","exhibition catalogue","catalogue clare","grand tour","beyond british","british school","eighteenth century","century rome","rome yale","yale university","university press","press new","cultural exchange","eighteenth century","marshall k","k wolfe","russell british","british school","rome pp","pp henry","iii grand","grand tour","ida saxton","saxton mckinley","sister mary","mary saxton","saxton barber","barber canton","canton ohio","ohio korstanje","norse mythology","grand tour","grand tour","tour page","english course","course taught","taught athe","athe university","michigan grand","grand tour","tour online","online athe","athe getty","getty museum","grand tour","tour jeremy","jeremy black","black edward","edward chaney","grand tour","exhibition project","swedish artist","th century","century france","france anthology","anthology contemporary","contemporary grand","grand tour","italy pictures","london longman","longman brown","brown green","oriental grand","grand tour","tour athe","athe internet","internet archive","category types","tourism category","category types","travel category","category cultural","cultural tourism","tourism category","category rites"],"new_description":"file pantheon thumb_interior pantheon rome pantheon th_century painted giovanni paolo file batoni francis basset st baron de thumb_uprighthe grand_tourist like francis basset st baron de basset francis basset would_become familiar antiquities though invention painter batoni grand_tour traditional trip europe undertaken mainly upper_class european young men sufficient means rank humble origin could find sponsor well young women sufficient means accompanied social family members coming age come age abouthe age years_old norm sociology custom flourished advent large_scale rail_transport standard travel itinerary served educational rite passage though primarily associated_withe british nobility wealthy landed gentry similar trips made wealthyoung men protestantism protestant northern second_half th_century south north_americans tradition declined withe neo classical enthusiasm steamship travel made journeys much easier thomas_cook made cook tour early mass_tourism new_york times described grand_tour way primary value grand_tour believed lay classical antiquity renaissance aristocratic polite society theuropean continent addition provided opportunity view specific works art possibly chance hear certain music grand_tour could last several months several_years commonly undertaken company cicerone knowledgeable guide tutor grand_tour cultural importance e p thompson stated ruling class control th_century located primarily cultural expression economic physical military power thompson making thenglish working_class legacy grand_tour lives modern_day istill evident works travel literature aristocratic origins romantic travel age tourism globalization grand_tour still influences destinations tourists choose shapes ideas culture sophistication act travel grand_tour neither scholar pilgrimage religious one though stay venice residence rome catholic grand_tourists followed routes protestant th_century tour places also_considered essential young artists understand proper painting sculpture techniques though grand_tour valets perhaps cook certainly bear leader guide bear leader scholarly guide beyond advent popular guidesuch much trips following artists thelite considered travel centres necessary rites passage gentlemen works art demonstrate breadth polish received tour rome like thomas jenkins thomas jenkins provided access private collections antiquities among enough proved sale market raised price things coins formed portable souvenirs respected gentleman guide ancient history batoni made career painting thenglish posed ease among many continued naples viewed herculaneum pompeii ventured far southern italy fewer still greece still ottoman greece turkish rule rome many centuries goal pilgrims especially jubilee christianity jubilee visited seven pilgrim churches rome britain thomas travel_book twelve years early influence grand_tour far tour italy far naples undertaken thomas howard st earl arundel earl arundel withis wife children established significant partly asked inigo jones yet established architect already known designer act cicerone guide chaney thevolution grand_tour ed inigo jones roman larger numbers tourists began tours peace nster according oxford_english_dictionary first recorded use term perhaps introduction english richard lassels c expatriate roman catholichurch roman catholic catholichurch priest book voyage italy published paris london lassels introduction listed four areas travel furnished accomplished traveller intellectual society social thethics ethical opportunity drawing moral instruction traveller saw politics political file jean thumb upright portrait douglas hamilton th duke hamilton douglas th duke hamilton grand_tour withis physician john moore scottish physician john moore latter son john moore british army officer john view geneva distance stayed two_years painted jean idea travelling sake curiosity learning developing idea th_century john essay concerning human understanding essay concerning human understanding argued widely accepted knowledge comes entirely thexternal senses one knows comes physical stimuli one exposed thus one could use offers requiring change place travel therefore necessary one develop mind expand knowledge world young man athe outset account repeat grand_tour historian edward gibbon remarked according law custom perhaps reason foreign travel completes theducation english gentleman consciously adapted intellectual self improvement gibbon continent larger liberal plan grand_tourists briefly libraries romanticism romantic era played significant part introducing william thomas beckford william beckford wrote account grand_tour made gibbon italian tour look distinctly chaney gibbon beckford interpretation dreams thoughts incidents beckford society london pp typical th_century sentiment observer travelling foreign lands reporting findings stayed home recounting one observations society large increase welfare considered obligation grand_tour flourished fussell p grand_tour offered liberal education opportunity acquire things otherwise unavailable home lending air prestige traveller grand_tourists would return full books works art scientific instruments cultural artifacts boxes fountains displayed libraries cabinet room cabinets gardens drawing rooms galleries built purpose grand_tour especially portraits traveller painted settings became obligatory influence artists especially thrived grand_tourists included carlo first patronized john evelyn early e chaney thevolution english collecting batoni portrait ist giovanni paolo francesco less well could return album giovanni perhaps gibbon opening cast ironic shadow preface critics grand_tour lack adventure tour europe thing said one th_century critic uniform prospect duncan grand_tour wasaid reinforce old national characteristics jean gentleman observes french italian german deep suspicion tour viewed home england feared thathe experiences completed british gentleman might well view well travelled file shepherds beside roman thumb found contrast roman ruins modern peasants roman painting also worth thathe grand_tour inspired stereotypes among countries also led dynamic northern southern europe constantly depicting italy picturesque place travellers also italy place italy europe south view italian culture question university california_press degradation best reflected famous italy depicted land past johann wolfgang von goethe italy journey arrival steam powered transportation around grand_tour custom continued qualitative difference cheaper undertake safer easier open anyone much th_century educated young men privilege undertook grand_tour germany switzerland came included broadly defined circuit later_became fashionable young women well trip italy aunt social part upper_class woman education e novel room view typical itinerary common itinerary grand fussell shifted across generations cities embraced buthe british tourist usually began dover england crossed thenglish channel netherlands belgium calais france tourist usually accompanied tutor known colloquially bear leader guide bear leader wealthy enough troop servants could rent acquire coach carriage coach could city packed across alps travels completion make trip boat far alps either travelling paris rhine basel upon hiring french french dominant language thelite europe th th_centuries tourist would travel paris traveller might undertake lessons french dancing riding appeal paris lay sophisticated language manners society including behavior fashion purpose preparing young man home often government file_jpg thumb upright robert spencer earl painted classical dress rome carlo paris would typically go urban switzerland often geneva protestant lausanne mountaineering developed th_century traveller would endure difficult crossing alps northern_italy athe great st bernard pass carriage luggage wealthy might carried hard terrain servants italy tourist would less often milan might spend months florence considerable anglo italian society accessible travelling quality gallery broughtogether one space monuments high renaissance paintings roman sculpture would inspire picture galleries antiquities home side trips move padua dei italia consists english scottish scholars sure j thearl rochester grand_tour review english studies january venice british idea venice italianate architecture italianate allure made cultural grand bruce venice grand_tour yale_university_press john venice myth venice british culture macmillan publishers macmillan venice traveller wento rome study ruins ancient_rome painting sculpture architecture rome early christian renaissance baroque travellers also visited naples study music mid_th century appreciate recently discovered archaeological site herculaneum pompeii perhaps adventurous ascent mount later period adventurous especially provided yacht might attempt sicily site greek ruins malta even greece naples later south usual terminus traveller alps heading german_languagerman speaking parts europe traveller might stop first visiting vienna dresden berlin potsdam study time athe universities munich travellers visited holland gallery going art appreciation beforeturning across channel england published accounts file grand_tour william thomas thumb william beckford grand_tour europe shown red published often personal accounts grand_tour provide detail first hand perspective accounts offered authors jeremy fragments grand_tour huntington library quarterly autumn p literary thathey approached traveliterature rather accounts lists examples joseph addison john andrews comparative view french english nations manners politics literature london_william thomas beckford whose dreams thoughts incidents published account letters back home stream consciousness associations william coxe historian william coxe sketches natural political civil state switzerland london travels poland russia sweden andenmark london travels switzerland london coxe travels range far grand_tour pattern elizabeth journey crimea constantinople london john moore scottish physician john moore tutor hamilton moore view society manners italy anecdotes relating characters london samuel jackson philip year journey france part spain london arthur young writer arthur young although italy written sink many travelers kept recording activities participated people met especially women encountered grand_tourists italy unconventional country women venice made unusual way iain gordon brown water windows women significance venice scots age grand_tour eighteenth_century life november sir james hall written diary comment seeing women day ever saw life also noting venetian dress perhaps lack iain gordon brown water windows women significance venice scots age grand_tour eighteenth_century life november eighteenth nineteenth_century italian women witheir unfamiliar methods western dress expected european women theighteenth nineteenth_century foreign ways led documentation encounters withem providing published accounts grand_tour boswell noble ladies recorded progress withis relationships talked religion philosophy hand often boswell encounters italian elite shared diary provide detail events occurreduring grand_tour boswell notes morning wither pulled showed whole knees wither iain gordon brown water windows women significance venice scots age grand_tour eighteenth_century life november describes time withe italian women shares part history written accounts lord byron letters mother withe accounts travels also_published byron spoke first enduring venetian love landlord wife fallen love pretty venetian two twenty great black married found eternal love ever believe one unlawful couples alps george gordon byron leslie byron letters journals complete text available manuscript full printed version others newark university delaware press many tourists enjoyed sexual relations abroad buto great extent well thomas richard wrote lengthy letters grand_tour experiences jeremy black italy grand_tour new yale_university_press inventor sir francis journals sketches tour europe near east published web letters written sisters mary ida saxton mckinley ida saxton canton ohio six month tour offer insight grand_tour tradition american perspective grand_tour ida saxton mckinley sister mary saxton barber canton television grand_tour featured prominently bbc pbs miniseries based little charles mainly venice portrayed grand_tour rite passage kevin mccloud presented kevin mccloud grand_tour channel mccloud tours united_kingdom british architects british art historian brian sewell followed footsteps grand_tourists series brian sewell grand_tour produced uk channel five sewell travelled car confined attention solely italy stopping rome florence naples pompeii turin milan bologna venetian ball bbc produced art history wendy grand_tour presented sister wendy ostensibly art history series journey takes saint petersburg stop offs see great amazon motoring programme grand_tour tv_series grand_tour named traditional grand_tour refers show set different location week see_also gap year hiking history hiking history hippie_trail walking_tour overseas experience field trip general references elizabeth ian duncan ed travel_writing anthology oxford_university_press james grand_tour cambridge companion travel_writing paul fussell theighteenth century grand_tour norton book travel edward chaney grand_tour great rebellion richard lassels voyage italy seventeenth_century geneva turin edward chaney richard lassels entry oxfordictionary national biography edward chaney thevolution grand_tour anglo italian cultural renaissance frank london portland chaney ed thevolution english collecting yale_university_press new london_edward chaney timothy grand_tour early europe london lisa ed legacy grand_tour new essays traveliterature culture university_press london j maria scott thenglish prize capture westmorland ship westmorland episode grand_tour new yale_university richard catalogue london paul centre geoffrey grand_tour yale_university_press grand_tour lure italy theighteenth century tate gallery exhibition catalogue clare ed impact italy grand_tour beyond british school rome clare eighteenth_century rome yale_university_press new london patronage cultural_exchange eighteenth_century marshall k wolfe russell british school rome pp henry iii grand_tour ida saxton mckinley sister mary saxton barber canton ohio korstanje examining norse mythology archetype inception grand_tour externalinks grand_tour page english course taught athe_university michigan grand_tour online athe getty museum time grand_tour jeremy black edward chaney grand_tour exhibition project swedish artist travellers th_century france anthology contemporary grand_tour italy pictures quotes land ham daughter london longman brown green roberts description oriental grand_tour athe internet_archive category_types tourism_category_types travel_category cultural_tourism category rites passage"},{"title":"Gratuity","description":"image usd gratuityjpg thumb px leaving some money on a restaurantable is a common way of giving a tip to the serving staff a gratuity also called a tip is a sum of money customarily given by a client or customer to a service worker in addition to the basic price tipping is commonly given to certain service sector workers for a service performed or anticipatedepending on the country or location it may be customary to tip waiting staff server s in bars and restaurants taxi driver s hair stylist s and son tips and their amount are a matter of social conventionorm custom and etiquette and the custom varies between countries and settings in some locations tipping is discouraged and considered insulting while in some other locations tipping is expected from customers the customary amount of a tip can be a specific range of monetary amounts or a certain percentage of the bill based on the perceived quality of the service given in some circumstancesuch as with us government workers and more widely with police officer s receivingratuities or even offering them is illegal they may be regarded as bribery a fixed percentage mandatory tipping service charge isometimes added to bills in restaurants and similar establishments tipping may not bexpected when a fee is explicitly charged for the service from a theoretical economic point of view gratuities may solve the principal agentheory principal agent problem the situation in which an agent such as a server is working for a principal such as a restaurant owner or manager and many managers believe thatips provide incentive for greater worker effort however studies of the real world practice show thatipping is often discriminatory or arbitrary workers receive different levels of gratuity based on factorsuch as age sex race hair color and even breast size and the size of the gratuity is found to be only very weakly related to the quality of servicetymology and history file waitersjpg thumb right px the first usage of the term tip in the sense of giving a gratuity dates back to pictured here areuropean waiters from thearly s according to the oxford english dictionary the word tip originated as a slang term and its etymology is unclear according to the onlinetymology dictionary the meaningive a small present of money began around and the meaningive a gratuity to is first attested in the noun in thisense is from the term in the sense of to give a gratuity first appeared in the th century it derived from an earlier sense of tip meaning to give to hand pass which originated in the rogues cant in the th century thisense may have derived from the th century tip meaning to strike or hit smartly but lightly which may have derived from the low german tippen to tap buthis derivation is very uncertain tip v oxford english dictionary nd ed oxford university press the word tip was first used as a verb in george farquhar s play the beaux stratagem farquhar used the term after it had been used in criminal circles as a word meanto imply the unnecessary and gratuitous gifting of something somewhataboo like a joke or a sure bet or illicit money exchanges hendel john the case againstipping in the atlantic october accessed on augusthe practice of tipping began in tudor england the food issue why tip by paul wachter the new york times published october accessed on june by the th century it was expected that overnight guests to private homes would provide sums of money known as vails to the host servantsoon afterwards customers began tipping in london coffee house coffeehouses and other commercial establishments thetymology for the synonym for tippingratuity dates back either to the s from graciousness from the french gratuith century or directly fromedievalatin gratuitas free gift probably from earlier latin gratuitus freely given the meaning money given for favor services is first attested in the s in some languages the term translates to drink money or similar for example pourboire in french trinkgeld in german drikkepenge in danish and napiwek in polish this comes from a custom of inviting a servanto drink a glass in honour of the guest and paying for it in order for the guests to show generosity among each other the term bibalia in latin was recorded in a tronc is an arrangement for the pooling andistribution to employees of tips gratuities and or service charges in the hotel and catering trade the person who distributes monies from the tronc is known as the troncmaster when a tronc exists in the uk responsibility for deducting pay as you earn tax es from the distribution may lie withe troncmasterather than themployer the word tronc has its origins in the french for collecting box in june themployment appeals tribunal ruled in a uk test case revenue and customs commissioners v annabel s berkeley square ltd that income from a troncannot be counted when assessing whether a wage or salary meets the national minimum wage by region inigeria tipping is not so common at upscale hotels and restaurants becauservice charge is usually included in the bill though themployee seldom gethis as part of their wages in recentimes however the service provider usually coerce the customer for tips in a subtle manner there have been reported cases of security guards asking bank customers for tips in china traditionally there is no tipping however hotels that routinely serve foreign tourists allow tipping an example would be tour guides and associatedrivers in hong kong tipping is notypically expected at hotels orestaurant establishments where a service charge of is added to a bill instead of expecting a gratuity taxi drivers in hong kong may also charge the difference between a fare and a round sum as a courtesy fee to avoid making change for larger bills onexception where tipping is accepted is in macau previously a colony of portugal file nonomiyarickshaw jpg thumb px a rickshaw operator pulls two guests near kyoto in japan tipping is not a part of the culture it is not expected and can cause confusion like many other countries in east asia japanese people see tipping as insulting india tipping is popular in whole market as well in recent year it is making trending day by day indonesia tipping is common in large tourist areasuch as bali or lombok is expected at full service restaurants bar tipping is discretional andepends on the style of a bar in bali most bars are owned by expatriates and normally expat s country of origin reflects the style of a bar pubs do not expectips restaurants to high end bars accepts over the counter cash tips in any amount massage parlous which are located practically on every corner in bali expectaxi drivers expect bellboys at high end hotels expect around per bag south korea tipping is not customary in korea n culture and tipping is not expected in general service industry some peopleven regard tipping as an inappropriate behavior high end hotels and restaurants often include service charge between to but it is always included in the bill and customers are not expected to leave separate gratuity for servers beyond what is included in the bill in singapore tipping is insulting people may mistake it as a bribe which is a chargeable offence that could result in jail time bars and restaurants typically add a service charge which is compounded by the goods and services tax singapore goodservices tax although it is not given to the wait staff this already makes an additional to the restaurant bill tips are generally not given anywhere taxi drivers given tip will mistaken it for excess cash and return exact change in taiwan tipping is not customary but all mid and high end restaurants include a mandatory service charge which is not given to the service staff but rather considered by taiwanese law as general revenue as reported by the taipei times in false gratuity on july file buskersjpg thumb px buskers often punctuate their performances with requests for tips tipping bakshish in albania is very much expected almost everywhere in recentimes it has become more common as many foreigners and albanians living abroad visit albania leaving a tip of around of the bill is customary in restaurants even porters guides and chauffeurs expectips duty free alcohol is often used as a type of tip for porters bellhops and the like however some people such as muslims can find it offensive tips napojnica man a tip are sometimes expected mostly in restaurants buthey are not mandatory restaurantips are around mojposaonet and slobodna dalmacija napojnice u hrvatskim restoranima i lokalima in croatian or more in clubs or caf bars on the other hand it is common to round up the bill it is not common to tip taxi drivers or hairdressers tips drikkepenge lit drinking money are not required in denmark since service charges must always be included in the bill by law tipping for outstanding service is a matter of choice but is not expected geographicaorg travel tips for denmark in finland tipping is not customary and never expected caf s and restaurants include a service charge in the bill as required by french law for tax assessment service compris indicates thathe tip has been added to the bill but sometimes the wait staff do not receive any of itipping is bettereceived in venues accustomed tourists but can be treated with disdain smaller food establishments and those in more rural areas the amount of the tip is also critical a tip will do nicely for good service for superior service in higher end eating establishments a more generous tip would not be out of place however the rare waiter waitress accustomed to more generous foreign customers have no problem receiving a tip of up tor more austriand germany file c by taw cloakroom jpg thumb px coat check staff are usually tipped for their service and this photo shows a coat check areathe berliner congress centrum bcc in alexanderplatz berlin germany tipping trinkgeld is not seen as obligatory in the case of waiting staff and in the context of a debate about a minimum wage some people disapprove of tipping and say that it should not substitute for employers paying a good basic wage but most people in germany consider tipping to be good manners as well as a way to express gratitude for good service it is illegal and rare to charge a service fee withouthe customer s consent but a tip of about depending on the type of service is customary for example germans usually tip their waiters but almost never the cashiers at big supermarkets as a rule of thumb the more personal the service the more common it is to tipayments by card can include the tip too buthe tip is usually paid in cash when the card is handed over atimes rather than tipping individually a tipping box iset up rounding up the bill in germany is commonplace sometimes withe comment stimmt so keep the change restaurantipping in germany usa today rather than asking for all the change and leaving the tip afterwards or the customer says how muche will pay in total including the tip thus if the basic price is the customer might rather generously but not unusually say zw lf twelve pay with a note and get in change when paying a small amount it is common to round up to the nearest euro eg to sometimes a sign reading aufrunden bitte round uplease is found in places where tipping is not common like supermarkets clothing retailers etc this requests thathe bill be rounded up to the nearesthis noto tip the staff but a charity donation fighting children poverty and completely voluntary in germany tips are considered as income buthey are tax free according to nr of the german income tax law the hungarian word for tip is literally money for wine a loose calque from or colloquially from bakhshesh often written in english as backsheesh tipping is widespread in hungary the degree of expectation and thexpected amount varies with price type and quality of service also influenced by the satisfaction of the customer like in germany rounding up the price to provide a tip is commonplace depending on the situation tipping might be unusual optional or expected almost all bills include service charge similarly somemployers calculate wages on the basis thathemployee would also receive tips while others prohibit accepting them in some cases a tip is only given if the customer isatisfied in others it is customary to give a given percentage regardless of the quality of the service and there are situations when it is hard to tell the difference from a bribe widespread tipping based on loosely defined customs and its almost imperceptible transition into bribery is considered a main factor contributing to corruption a particular hungarian case of gratuity is gratitude money or which is the very much expected almost obligatory though illegal tipping of statemployed physicians healthcare in hungary s healthcare system is almost completely state run and there is an obligatory social insurance system in iceland tipping j rf lit serving money is not customary but exists and is appreciated especially in guided private tours it is uncommon for irish people to tip taxi drivers or cleaning staff at hotels in restaurants and bars it is more common but not expected tips are often given to reward high quality service or as a kind gesture tipping is most often done by leaving small change athe table orounding up the bill although it has been cited thatipping taxi drivers is typical it is not common in practice tips la manciare not customary in italy and are given only for a special service or as thanks for high quality service however it is really uncommon almost all restaurants withe notablexception of those in rome regionalaw november article paragraphave a service charge called coperto waiters do not expect a tip since they are already fairly paid but will not refuse it especially from foreign customers in caf s bars and pubs it is not uncommon paying the bill to leave the change saying to the waiter or to the cashier tenga il resto keep the change recently tip jar s near the cash register are becoming widespread however in public restrooms they are often forbidden leaving the change is also quite common with taxi drivers when using a credit card it is not possible to add manually an amounto the bill instead one can leave some coins as a tip service charge is included in the bill it is uncommon for norwegians to tip taxi drivers or cleaning staff at hotels in restaurants and bars it is more common but not expected tips are often given to reward high quality service or as a kind gesture tipping is most often done by leaving small change athe table orounding up the bill oslo servit rforbund and hotell og restaurantarbeiderforbundethe labor union for hotel and restaurant employees hasaid many times thathey discourage tipping except for extraordinary service because it makesalaries decrease over time makes it harder to negotiate salaries andoes not countowards pensions unemployment insurance loans and other benefits the netherlands tipping fooin the netherlands is not obligatory and it is illegal and rare to charge a service fee withouthe customer s consent however it is made to believe thatipping is required in restaurants bars taxis and hotels barestaurant maids and bellboys if service was normal or poor it is normal noto tip while guests who receive good to excellent service can tip in a range with an average of and exceptionally if service was unparalleled around regulations were adopted that all indicated prices must include a service charge as a result all prices were raised by abouthis was called service compris also wages were adjusted that employees were not dependent on tips the amount of the tip bac i and method of calculating it will vary withe venue and can vary from ron tof the bill the tips do not appear on bills and are notaxed if paying by card the tip is left in cash alongside the bill while tipping is nothe norm servers cabbies hairdressers hotel maids parking valets tour guidespa therapists et al are used to receiving tips regularly and are likely to consider it an expression of appreciation for the quality of the service or lack of it if offering a tip of the bill is customary or small amounts of oron for services which are not directly billed for other types of services it depends on circumstances it will not usually be refused but will be considered a sign of appreciation for instance counter clerks in drugstores or supermarkets are notipped butheir counterparts in clothing stores can be tipping can be used proactively to engender favor such as getting reservations or obtaining better seats however care should be taken for it noto be seen as a bribe depending on circumstances while tipping is overlooked in romania bribery is a larger issue which may have legal consequences there is an ongoing aversion about both giving and receiving tips in coins due to the low value of the denominations it is besto stick to paper money offering coins can be considered a rude gesture and may prompt sarcastic or even angry remarks on the other hand the coin handling aversion has resulted in the widespread practice of rounding payments this notechnically a tip and asuch is not aimed primarily athe individual athe counter but rather athe business nevertheless if done with a smile it can be seen as a form of appreciation from the customer towards the clerk etiquette demands that one of the parties offers the change buthe other can choose to tell them to keep all or part of it small businesses may sometimes force the issue by just claiming they are out of change or offering small value products instead such asticks of gum this considered rude and it is up to the customer to accept or call them out for ithe reverse can also happen where the clerk does not have small change to make for the customer s paper money but chooses to return a smaller paper denomination and roundown in favor of the customer in exchange for getting them through faster the latter usually happens only in the larger store chains in russian language a gratuity is called chayeviye which literally means for the tea tipping small amounts of money in russia for people such as waiters cab drivers and hotel bellboys was quite common before the communist revolution of during the soviet erand especially withe stalinist reforms of the s tipping was discouraged and was considered an offensive capitalistradition aimed at belittling and lowering the status of the working classo from then until thearly s tipping waseen as rude and offensive withe fall of the soviet union and the dismantling of the iron curtain and the subsequent influx oforeign tourists and businessmen into the country tipping started a slow but steady comeback since thearly s tipping has become somewhat of a norm again however still a lot of confusion persists around tipping russians do not have a widespread consensus on how much to tip for what services where and how in larger urban areas like moscow and st petersburg tips of arexpected in high end restaurants coffee shops bars and hotels and are normally left in cash on the table after the bill is paid by credit card or as part of cash payment if a credit card is not used tipping at a buffet or any other budget restaurant where there are no servers to take your order athe table called stolovaya is not expected and not appropriate fast food chainsuch as mcdonalds chaynaya lozhkartozhkand son do not allow tipping either tipping bartenders in a pub is not common but it is expected in an up market bar metered taxi drivers also count on a tip of but non meteredrivers who pre negotiate the fare do not expect one it should also be noted thathe olderussians who grew up and lived most of their lives during the soviet era still consider tipping an offensive practice andetest it in smallerural areas tipping is rarely expected and may even cause confusion tipping is not common in sloveniand most locals do notip other than to round up to the nearest euro recently areas visited by many tourists have begun to acceptips of around inside slovenia tipping etiquette tripadvisoretrieved slovenia travel information fact sheet conciergecom retrieved tipping propina is not generally considered mandatory in spain andepends on the quality of the service received in restaurants the amount of the tip if any depends mainly on the kind of locale higher percentages being expected in upscale restaurants in bars and small restaurantspaniardsometimes leave as a tip the small change left on their plate after paying a bill el economista minutos outside the restaurant businessome service providersuch as taxi drivers hairdressers and hotel personnel may expect a tip in an upscale setting in the minister of economy pedro solbes blamed excessive tipping for the increase of the inflation solbes achaca la inflaci n a que no interiorizamos lo que significa un euro el mundo december tipping dricks is commonly not expected but is practiced to reward high quality service or as a kind gesture tipping is most often done by leaving small change on the table orounding up the bill this mostly done at restaurants less often if payment is made athe desk and in taxisome taxis are very expensive as there is no fixed tariff so they might not be tipped less often hairdressers are tipped tipping in sweden how much tip should you leave in sweden tips are taxed in sweden but cash tips are not much declared to the tax authority cards are heavily used in sweden as of the s and tips paid by cards in restaurants aregularly checked by the tax authority there areports that restaurant owners keep card tips and that waitresses do notice generous card tips in turkey tipping or bah i lit gift from the persian language persian word often rendered in english as baksheesh is usually optional and not customary in many places though not necessary a tip of is appreciated in restaurants and is usually paid by leaving the change cab drivers usually do not expecto be tipped though passengers may round up the fare a tip of small change may be given to a hotel porter tipping in turkey united kingdom file chrisriley and caddyjpg thumb px golfers often tip the caddies who carry their golf clubs tips of are common in restaurants but not compulsory sometimes more often in london and other large cities than in other areas a service charge may be levied often of since it is a legal requiremento include all taxes and other obligatory charges in the prices displayed a service charge is compulsory only if it is displayed or the trader makes their presence clear verbally before the meal even so if the level of service is unacceptable and in particular it fallshort of the requirements of the supply of goods and services acthe customer can refuse to pay some or all of a service charge the service charge may be included in the bill or added separately is reported as a common amountipping for other servicesuch as taxis and hairdressers is not expected butips are often given to reward good service in some large cities tips are given to both taxi drivers and hairdressers barbers but again this not expected cash tipping bartenders in a pub is not recommended and not expected instead a practice of a drink for yourself is considered to be polite and traditional in this instance a patron would notip the barman barmaid for the first or secondrink however he might offer to buy them a drink after having a thirdrink himself they would have the option either to actually pour themselves a drink and have it behind the bar legal and common in uk or to keep the price of one drink of his choosing in cash this practice is athe discretion of patron and could bexercised after one or two drinks instead of three if preferred leaving cash tips on the counter at a pub is considered rude and inappropriate north americand the caribbean tipping is practiced in canada in a similar manner to the united states quebec provides alternate minimum wage schedule for all tipped employeesome other provinces allow alternate minimum wage schedule for liquor servers according to wendy leung from the globe and mail it is a common practice in restaurants to have servershare their tips with otherestaurant employees a process called tipping out should restaurants be barred from taking a share of a server s tip wendy leung the globe and mail published tuesday jun accessed on may another newspaperefers to this as a tipool tipping outhe house the restaurant is occasionally explained as a fee for covering breakage or monetary error s a member of the ontario provincial parliament michael prue has introduced a bill in the ontario legislaturegarding tippingrestaurantipping ontario ndp wants ban on restaurantskimming tips by keith leslie the canadian press posted accessed on june on december it was reported that ontario is banning employers from taking a cut of tips that are meant for servers and other hospitality staff the protecting employees tips act makes it illegal for employers to withhold their employees tips exceptemporarily if they are pooling all of the gratuities to redistribute them among all employees canadian federal tax law considers tips as income workers who receive tips are legally required to reporthe income to the canada revenue agency and pay income tax on it in july the stareported that cra is concerned with tax evasion an auditing of servers in fourestaurants by cra mentioned in the report uncovered that among staff audited cdn million was unreported in the cra was quoted that it will closely check the tax returns of individuals who would reasonably bexpected to be receiving tips to ensure thathe tips areported realisticallymccracken dl revenue canada to tax wait staff s tips halifaxlivecom tipping in the caribbean varies from island to island in the dominican republic restaurants add a gratuity and it is customary to tip an extra in st barths it is expected that a tip be to if gratuity is not already included file coco taxi driver havana cubajpg thumb px a taxi driver waiting for customers workers in small economy restaurants usually do not expect a significantip however tipping in mexico is common in larger medium and higher end restaurants it is customary in thesestablishments to tip not less than but not more than of the bill as a voluntary offering for good service based on the total bill before value added tax iva in english vat value added tax is already included in menu or other service industry pricing since mexican consumer law requires thexhibition ofinal costs for the customer thus the standard tip in mexico is of the pre tax bill which equates to after tax in most of the mexican territory except in specialower tax stimulus economic zones a gratuity may be added to the bill withouthe customer s consent contrary to the law either explicitly printed on the bill or by more surreptitious means alleging local custom in some restaurants bars and night clubs however in officials began a campaign to eradicate this increasingly rampant and abusive practice not only due to it violating mexican consumer law but also because frequently it was retained by owners or management if a service charge for tipropina orestaurant service charge is added it is a violation of article of the mexican federalaw of the consumer and mexican authorities recommend patrons require managemento refund or deducthis from their bill additionally in this federal initiative to eliminate the illegal add ons the government clarified that contrary even to the belief of many mexicans thathe mexican legal definition of tips propinas require it be discretionary to pay so that an unsatisfied client is under nobligation to pay anything to insure the legal definition of a tip is consistent withe traditional cultural definition and going as far to encourage all victimsubjecto the increasing illicit practice reporthestablishments to the profeco the office of the federal prosecutor for the consumer for prosecution united states file luzmilla s waiterjpg thumb px a server at luzmilla s restaurantipping is a practiced social custom in the united states tipping by definition is voluntary athe discretion of the customer in restaurants offering traditional table service a gratuity of the amount of a customer s check or more inew york city is customary when adequate service is provided buffet style restaurants where the server brings only beverages is customary higher tips may be given for excellent service and lower tips for mediocre service in the case of bad orude service no tip may be given and the restaurant manager may be notified of the problem tips are also generally given for services provided in golf courses casino hotels concierge foodelivery taxispand salons this etiquette applies to bar service at weddings and any other event where one is a guest as well the host should provide appropriate tips to workers athend of an eventhe amount may be negotiated in the contractipping is not required for any service as it is voluntary the fair labor standards act defines tippablemployees as individuals who customarily and regularly receive tips of or more per month federalaw permits employers to include tips towardsatisfying the difference between employees hourly wage and minimum wage although some states and territories provide more generous provisions for tipped employees for example laws in alaska california minnesota montana nevada oregon washington and guam specify that employees must be paid the full minimum wage of that staterritory which is equal or higher than the federal minimum wage in these instances before tips are considered a tipool cannot be allocated to employers or to employees who do not customarily and regularly receive tips these non eligiblemployees include dishwashers cooks chefs and janitors flsa us dol file king david hotel waitersjpg thumb px waiters athe king david hotel there is only limited information available on levels of tipping a study at iowa state university providedata for a suburban restaurant surveyed in thearly s the mean tip was on a mean bill of asuch the mean tip rate was and the median tip rate was about in a research study at brigham young university the sample restaurants had an average tipercentage ranging from to between and according to the national restaurant associationly a handful of restaurants in the united states have adopted a no tipping model and some restaurants who have adopted this model returned to tipping due to loss of employees to competitorservice chargeservice charges are mandatory payments typically added by caterers and banqueters a service charge is noto be confused with a tip or gratuity which is optional and athe discretion of the customerestaurants commonly add ito checks for large partiesome bars have decided to include service charge as well for example in manhattanew york disclosure of service charge is required by law in some placesuch as in state ofloridaflorida statute a standard predetermined percent often isometimes labeled as a service charge until thearly th century americans viewed tipping as inconsistent withe values of an egalitarian democratic society also proprietors regarded tips as equivalento bribing an employee to do something that was otherwise forbidden such as tipping a waiter to get an extra large portion ofood the introduction of prohibition in had an enormous impact on hotels and restaurants who losthe revenue of selling alcoholic beverages the resulting financial pressure caused proprietors to welcome tips as a way of supplementing employee wages contrary to popular belief tipping did not arise because of servers lowages because the occupation of waiter server was fairly well paid in thera when tipping became institutionalized in spite of the trend toward tipping as obligatory behavior six states mainly in the south passed laws that made tipping illegal enforcement of antipping laws was problematic thearliest of these laws was passed in washington and the last of these laws was repealed in mississippi some have argued thathe original workers that were not paid anything by their employers were newly freed slaves and thathis whole concept of not paying them anything and letting them live on tips carried over from slavery file usmc m ha jpg thumb px hair stylists are among the service workers who are often tipped for their service in the united states tips are considered income thentire tip amount is treated as earned wages withexception of months in which tip income was under unlike wages where payroll tax social security and medicare tax are split between employee and employer themployee pays of payroll tax on tip income and tips arexcluded from worker s compensation premiums in mostates this discourages no tipolicies becausemployers would pay additional payroll taxes and up to worker s compensation premiums on higher wages in lieu of tips research finds that consistentax evasion by waitstaff due to fraudulent declaration is a concern in the us according to the internal revenue service irs between and of tips to waiters are not reported for taxationirs bulletino november presentsomexamples of tipping discrepancies that led to some investigations employers aresponsible for federal unemployment insurance premiums on tips paidirectly from customers to employees and this encourages employers to collaborate in underreporting tips us federal employees the us government recognizes tips as allowablexpenses for federal employee travel gsa however us law prohibits federal employees from receiving tips under standards of ethical conduct asking for accepting or agreeing to take anything of value that influences the performance of an official act is not allowed south america service charges are included withe bill a tip of around or so isometimes given and is considered polite dhl express dhl cultural tips how to ship internationally service charges are included withe bill and tipping is uncommon file jacknicklausandson masterspar jpg thumb px a young man in white caddies the golf clubs of an older golfer tipping is not expected orequired in australia this because the federal government protects the rights of workers by providing them with a minimum wage in australia this reviewed yearly and as of it waset at a per hour a for casual employees and this fairly standard across all types of venues tipping at caf s and restaurants especially for a large party and tipping of taxi drivers and home foodeliverers is againot required or expected however many people tend to round up the amount owed while indicating thathey are happy to lethe worker keep the change there is no tradition of tipping somebody who is just providing a serviceg a hotel porter casino s in australiand some other places generally prohibitipping of gaming staff as it is considered bribery for example in the state of tasmania the gaming control act states in section it is a condition of every special employee s licence thathe special employee must not solicit or accept any gratuity consideration or other benefit from a patron in a gaming area there is concern thatipping might become more common in australia cnbc is australiat a tipping point literally by katie holliday nov new zealand tipping is not a traditional practice inew zealand thoughas become less uncommon in recent years especially in finer establishments tipping inew zealand is likely the result of tourists visiting from tipping culturesuch as the united states of america who may follow their own tipping customs where tipping does occur among new zealanders it is usually to reward a level of service that is in excess of the customer s expectations or as an unsolicited reward for a voluntary act of service a number of websites published by the new zealand government advise tourists thatipping inew zealand is not obligatory even in restaurants and bars however tipping for good service or kindness is athe discretion of the visitor a sunday star times reader poll indicated of theireaders did not wantipping for good service to become the norm inew zealand inconsistency of percentage based gratuities file william powell frithe crossing sweeper jpg thumb px crossing sweeper s cleared the way forich people to cross the road without dirtying their clothes and they were normally tipped for thiservice london while the modern version of thiservice are squeegee kids who clean windshields during the time vehicles are stopped for traffic lights in countries where tipping is the norm such as in the us canadand in a few countries in western europe somemployers pay workers withexpectation thatheir wages will be supplemented by tipsome have criticized the inherent social awkwardness in transactions that involve tipping the inconsistency of tipping for some services but not similar ones and the irrationality of basing tips on price rather than the amount and quality of service a customer pays a larger tip to a server bringing him a lobsterather than a hamburger for example in the freakonomics blog entitled should tipping be banned stephen dubner and steven levitt discussed the issue of gratuities the authors pointed outhat research by michaelynn found thattractive waitresses get better tips than less attractive waitresses men s appearance not so important lynn s research also found that blondes get better tips than brunetteslender women get better tips than heavier women large breasted women get better tips than smaller breasted women a woman server interviewed for the blog stated that she lost my jobecause my manager said that i didn t fithe look of the company or the restaurant so i don t know if it was because i m a lot more curvier than the other girls or because my skin is darker i don t know lynn states of tipping it s discrimination discriminatoryes and the supreme court has ruled that eveneutral business practices that are not intended to discriminate if they have theffect of adversely impacting a protected class are illegal and so it s not inconceivable to me thathere will be a class action lawsuit on the part of ethnic minority waiters and waitresses claiming discrimination in terms of employment and it s conceivable thatipping might be declared illegal on that basishould tipping be banned full transcript poor tippersome categories of people have been shown statistically to be poor tippers cases where no gratuity is expected tipping may not bexpected when a fee is explicitly charged for the service in countriesuch as australiand japan where no tipping is provided the service is found to be as good as in america the new yorker check please by jamesurowiecki mandatory tipping a service charge isometimes added to bills in restaurants and similar establishments attempts to hide service charge by obstructing the line on the receipt have been reported in the united states criminal charges were dropped in two separate cases over non payment of mandatory gratuities courts ruled that automatic does not mean mandatory some cruise lines charge their patrons day in mandatory tipping this does not includextra gratuities for alcoholic beverages bribery and corruption bribe ry and political corruption are sometimes disguised as tipping in some developing countries police officers border guards and other civil servants openly solicitips gifts andubious fees using a variety of local euphemisms economic theory academic paper by steven holland calls tipping an effective mechanism forisk sharing and welfare improvement which reduces the risk faced by a service customer because the customer can decide whether or noto tipsteven j holland tipping as risk sharing the journal of socio economics volume issue august pages tipping isometimes given as an example of the principal agentheory principal agent problem in economics onexample is a restaurant owner who engageservers to act as agents on his or her behalfsteen videbeck theconomics etiquette of tipping available online at accessed on june in some cases c ompensation agreements can increase worker effort if compensation is tied to the firm success and onexample of such a compensation agreement is waiters and waitresses who are paid tipsrobert j grahamanagerial economics for dummies john wiley sons feb studieshowever that in the real world the size of the tip is only weakly correlated withe quality of the service and other effects dominate see also mandatory tipping externalinks the trouble with tipping in spain ask yahoo how did the practice of tipping beginew york times article about san diego restaurant which stopped accepting tips category hospitality industry category service industries category household income category customer service","main_words":["image","usd","thumb","px","leaving","money","common","way","giving","tip","serving","staff","gratuity","also_called","tip","sum","money","customarily","given","client","customer_service","worker","addition","basic","price","tipping","commonly","given","certain","service","sector","workers","service","performed","country","location","may","customary","tip","waiting_staff","server","bars","restaurants","taxi","driver","hair","son","tips","amount","matter","social","custom","etiquette","custom","varies","countries","settings","locations","tipping","discouraged","considered","insulting","locations","tipping","expected","customers","customary","amount","tip","specific","range","monetary","amounts","certain","percentage","bill","based","perceived","quality_service","given","us_government","workers","widely","police","officer","even","offering","illegal","may","regarded","bribery","fixed","percentage","mandatory_tipping","service_charge","isometimes","added","bills","restaurants","similar","establishments","tipping","may","bexpected","fee","explicitly","charged","service","theoretical","economic","point","view","gratuities","may","solve","principal","principal","agent","problem","situation","agent","server","working","principal","restaurant","owner","manager","many","managers","believe","provide","incentive","greater","worker","effort","however","studies","real_world","practice","show","thatipping","often","discriminatory","arbitrary","workers","receive","different","levels","gratuity","based","factorsuch","age","sex","race","hair","color","even","breast","size","size","gratuity","found","related","quality","history_file","thumb","right","px","first","usage","term","tip","sense","giving","gratuity","dates_back","pictured","waiters","thearly","according","oxford_english_dictionary","word","tip","originated","slang_term","etymology","unclear","according","dictionary","small","present","money","began","around","gratuity","first","thisense","term","sense","give","gratuity","first_appeared","th_century","derived","earlier","sense","tip","meaning","give","hand","pass","originated","rogues","th_century","thisense","may","derived","th_century","tip","meaning","strike","hit","may","derived","low","german","tap","buthis","uncertain","tip","v","oxford_english_dictionary","ed","oxford_university_press","word","tip","first_used","verb","george","play","used","term_used","criminal","circles","word","meanto","imply","something","like","joke","sure","illicit","money","exchanges","atlantic","october","accessed","augusthe","practice","tipping","began","england","food","issue","tip","paul","new_york","times","published","october","accessed","june","th_century","expected","overnight","guests","private","homes","would","provide","sums","money","known","host","afterwards","customers","began","tipping","london","coffee_house","coffeehouses","commercial","establishments","dates_back","either","french","century","directly","free","gift","probably","earlier","latin","freely","given","meaning","money","given","favor","services","first","languages","term","translates","drink","money","similar","example","french","german","danish","polish","comes","custom","inviting","drink","glass","honour","guest","paying","order","guests","show","among","term","latin","recorded","tronc","arrangement","andistribution","employees","tips","gratuities","service_charges","hotel","catering","trade","person","distributes","tronc","known","tronc","exists","uk","responsibility","pay","earn","tax","distribution","may","lie","withe","themployer","word","tronc","origins","french","collecting","box","june","themployment","appeals","ruled","uk","test","case","revenue","customs","v","berkeley","square","ltd","income","counted","assessing","whether","wage","salary","meets","national","minimum_wage","region","inigeria","tipping","common","upscale","hotels_restaurants","charge","usually","included","bill","though","themployee","gethis","part","wages","recentimes","however","service","provider","usually","customer","tips","manner","reported","cases","security","guards","asking","bank","customers","tips","china","traditionally","tipping","however","hotels","routinely","serve","foreign","tourists","allow","tipping","example","would","tour_guides","hong_kong","tipping","notypically","expected","hotels","orestaurant","establishments","service_charge","added","bill","instead","expecting","gratuity","taxi_drivers","hong_kong","may_also","charge","difference","fare","round","sum","fee","avoid","making","change","larger","bills","tipping","accepted","macau","previously","colony","portugal","file_jpg","thumb","px","operator","pulls","two","guests","near","kyoto","japan","tipping","part","culture","expected","cause","confusion","like","many_countries","east_asia","japanese","people","see","tipping","insulting","india","tipping","popular","whole","market","well","recent","year","making","day","day","indonesia","tipping","common","large","tourist","areasuch","bali","expected","full_service","restaurants","bar","tipping","style","bar","bali","bars","owned","expatriates","normally","expat","country","origin","reflects","style","bar","pubs","restaurants","high_end","bars","accepts","counter","cash","tips","amount","massage","located","practically","every","corner","bali","drivers","expect","bellboys","high_end","hotels","expect","around","per","bag","south_korea","tipping","customary","korea","n","culture","tipping","expected","general","service_industry","regard","tipping","inappropriate","behavior","high_end","hotels_restaurants","often","include","service_charge","always","included","bill","customers","expected","leave","separate","gratuity","servers","beyond","included","bill","singapore","tipping","insulting","people","may","mistake","bribe","offence","could","result","jail","time","bars","restaurants","typically","add","service_charge","goods","services","tax","singapore","tax","although","given","wait_staff","already","makes","additional","restaurant","bill","tips","generally","given","anywhere","taxi_drivers","given","tip","excess","cash","return","exact","change","taiwan","tipping","customary","mid","high_end_restaurants","include","mandatory","service_charge","given","service","staff","rather","considered","taiwanese","law","general","revenue","reported","taipei","times","false","gratuity","july","file","thumb","px","often","performances","requests","tips","tipping","albania","much","expected","almost","everywhere","recentimes","become","common","many","foreigners","living","abroad","visit","albania","leaving","tip","around","bill","customary","restaurants","even","porters","guides","duty","free","alcohol","often_used","type","tip","porters","bellhops","like","however","people","muslims","find","offensive","tips","man","tip","sometimes","expected","mostly","restaurants","buthey","mandatory","around","croatian","clubs","caf","bars","hand","common","round","bill","common","tip","taxi_drivers","hairdressers","tips","lit","drinking","money","required","denmark","since","service_charges","must","always","included","bill","law","tipping","outstanding","service","matter","choice","expected","travel","tips","denmark","finland","tipping","customary","never","expected","caf","restaurants","include","service_charge","bill","required","french","law","tax","assessment","service","indicates","thathe","tip","added","bill","sometimes","wait_staff","receive","venues","accustomed","tourists","treated","smaller","food","establishments","rural_areas","amount","tip","also","critical","tip","good","service","superior","service","higher","end","eating","establishments","generous","tip","would","place","however","rare","waiter","waitress","accustomed","generous","foreign","customers","problem","receiving","tip","tor","austriand","germany","file","c","jpg","thumb","px","coat","check","staff","usually","tipped","service","photo","shows","coat","check","congress","berlin_germany","tipping","seen","obligatory","case","waiting_staff","context","debate","minimum_wage","people","tipping","say","employers","paying","good","basic","wage","people","germany","consider","tipping","good","manners","well","way","express","good","service","illegal","rare","charge","service","fee","withouthe","customer","consent","tip","depending","type","service","customary","example","germans","usually","tip","waiters","almost","never","big","supermarkets","rule","thumb","personal","service","common","card","include","tip","buthe","tip","usually","paid","cash","card","handed","atimes","rather","tipping","individually","tipping","box","iset","bill","germany","commonplace","sometimes","withe","comment","keep","change","germany","usa_today","rather","asking","change","leaving","tip","afterwards","customer","says","pay","total","including","tip","thus","basic","price","customer","might","rather","unusually","say","twelve","pay","note","get","change","paying","small","amount","common","round","nearest","euro","sometimes","sign","reading","round","found","places","tipping","common","like","supermarkets","clothing","retailers","etc","requests","thathe","bill","rounded","noto","tip","staff","charity","donation","fighting","children","poverty","completely","voluntary","germany","tips","considered","income","buthey","tax","free","according","german","income","tax","law","hungarian","word","tip","literally","money","wine","loose","colloquially","often","written","english","tipping","widespread","hungary","degree","expectation","amount","varies","price","type","quality_service","also","influenced","satisfaction","customer","like","germany","price","provide","tip","commonplace","depending","situation","tipping","might","unusual","optional","expected","almost","bills","include","service_charge","similarly","calculate","wages","basis","would_also","receive","tips","others","prohibit","accepting","cases","tip","given","customer","others","customary","give","given","percentage","regardless","quality_service","situations","hard","tell","difference","bribe","widespread","tipping","based","loosely","defined","customs","almost","transition","bribery","considered","main","factor","contributing","corruption","particular","hungarian","case","gratuity","money","much","expected","almost","obligatory","though","illegal","tipping","physicians","healthcare","hungary","healthcare","system","almost","completely","state","run","obligatory","social","insurance","system","iceland","tipping","j","lit","serving","money","customary","exists","appreciated","especially","guided","private","tours","uncommon","irish","people","tip","taxi_drivers","cleaning","staff","hotels_restaurants","bars","common","expected","tips","often","given","reward","high_quality_service","kind","gesture","tipping","often","done","leaving","small","change","athe_table","bill","although","cited","thatipping","taxi_drivers","typical","common_practice","tips","la","customary","italy","given","special","service","thanks","high_quality_service","however","really","uncommon","almost","restaurants","withe","rome","november","article","service_charge","called","coperto","waiters","expect","tip","since","already","fairly","paid","refuse","especially","foreign","customers","caf","bars","pubs","uncommon","paying","bill","leave","change","saying","waiter","keep","change","recently","tip","jar","near","cash","register","becoming","widespread","however","public","often","forbidden","leaving","change","also","quite","common","taxi_drivers","using","credit_card","possible","add","manually","bill","instead","one","leave","coins","tip","service_charge","included","bill","uncommon","tip","taxi_drivers","cleaning","staff","hotels_restaurants","bars","common","expected","tips","often","given","reward","high_quality_service","kind","gesture","tipping","often","done","leaving","small","change","athe_table","bill","oslo","labor","union","hotel","restaurant","employees","hasaid","many_times","thathey","discourage","tipping","except","extraordinary","service","decrease","time","makes","harder","negotiate","andoes","unemployment","insurance","benefits","netherlands","tipping","netherlands","obligatory","illegal","rare","charge","service","fee","withouthe","customer","consent","however","made","believe","thatipping","required","restaurants","bars","taxis","hotels","barestaurant","maids","bellboys","service","normal","poor","normal","noto","tip","guests","receive","good","excellent","service","tip","range","average","exceptionally","service","around","regulations","adopted","indicated","prices","must","include","service_charge","result","prices","raised","abouthis","called","service","also","wages","adjusted","employees","dependent","tips","amount","tip","method","vary","withe","venue","vary","ron","tof","bill","tips","appear","bills","paying","card","tip","left","cash","alongside","bill","tipping","nothe","norm","servers","hairdressers","hotel","maids","parking","valets","tour","used","receiving","tips","regularly","likely","consider","expression","appreciation","quality_service","lack","offering","tip","bill","customary","small","amounts","services","directly","billed","types","services","depends","circumstances","usually","refused","considered","sign","appreciation","instance","counter","supermarkets","butheir","counterparts","clothing","stores","tipping","used","favor","getting","reservations","obtaining","better","seats","however","care","taken","noto","seen","bribe","depending","circumstances","tipping","overlooked","romania","bribery","larger","issue","may","legal","consequences","ongoing","giving","receiving","tips","coins","due","low","value","besto","stick","paper","money","offering","coins","considered","rude","gesture","may","prompt","even","angry","remarks","hand","coin","handling","resulted","widespread","practice","payments","tip","asuch","aimed","primarily","athe","individual","athe","counter","rather","athe","business","nevertheless","done","seen","form","appreciation","customer","towards","clerk","etiquette","demands","one","parties","offers","change","buthe","choose","tell","keep","part","small","businesses","may","sometimes","force","issue","claiming","change","offering","small","value","products","instead","considered","rude","customer","accept","call","ithe","reverse","also","happen","clerk","small","change","make","customer","paper","money","return","smaller","paper","denomination","favor","customer","exchange","getting","faster","latter","usually","happens","larger","store","chains","russian","language","gratuity","called","literally","means","tea","tipping","small","amounts","money","russia","people","waiters","cab","drivers","hotel","bellboys","quite","common","communist","revolution","soviet","especially","withe","reforms","tipping","discouraged","considered","offensive","aimed","lowering","status","working","thearly","tipping","waseen","rude","offensive","withe","fall","soviet_union","iron","curtain","subsequent","influx","oforeign","tourists","businessmen","country","tipping","started","slow","steady","comeback","since_thearly","tipping","become","somewhat","norm","however","still","lot","confusion","around","tipping","russians","widespread","consensus","much","tip","services","larger","urban_areas","like","moscow","st_petersburg","tips","arexpected","high_end_restaurants","coffee_shops","bars","hotels","normally","left","cash","table","bill","paid","credit_card","part","cash","payment","credit_card","used","tipping","buffet","budget","restaurant","servers","take","order","athe_table","called","expected","appropriate","fast_food","chainsuch","mcdonalds","son","allow","tipping","either","tipping","bartenders","pub","common","expected","market","bar","taxi_drivers","also","count","tip","non","pre","negotiate","fare","expect","one","also","noted_thathe","grew","lived","lives","soviet","era","still","consider","tipping","offensive","practice","areas","tipping","rarely","expected","may","even","cause","confusion","tipping","common","locals","round","nearest","euro","recently","areas","visited","many","tourists","begun","around","inside","slovenia","tipping","etiquette","slovenia","travel_information","fact","sheet","retrieved","tipping","generally","considered","mandatory","spain","quality_service","received","restaurants","amount","tip","depends","mainly","kind","locale","higher","expected","upscale","restaurants","bars","small","leave","tip","small","change","left","plate","paying","bill","el","outside","restaurant","hairdressers","hotel","personnel","may","expect","tip","upscale","setting","minister","economy","pedro","blamed","excessive","tipping","increase","inflation","la","n","que","que","euro","el","mundo","december","tipping","commonly","expected","practiced","reward","high_quality_service","kind","gesture","tipping","often","done","leaving","small","change","table","bill","mostly","done","restaurants","less","often","payment","made","athe","desk","taxis","expensive","fixed","might","tipped","less","often","hairdressers","tipped","tipping","sweden","much","tip","leave","sweden","tips","sweden","cash","tips","much","declared","tax","authority","cards","heavily","used","sweden","tips","paid","cards","restaurants","aregularly","checked","tax","authority","restaurant","owners","keep","card","tips","waitresses","notice","generous","card","tips","turkey","tipping","bah","lit","gift","persian","language","persian","word","often","rendered","english","usually","optional","customary","many","places","though","necessary","tip","appreciated","restaurants","usually","paid","leaving","change","cab","drivers","usually","expecto","tipped","though","passengers","may","round","fare","tip","small","change","may","given","hotel","porter","tipping","turkey","united_kingdom","file","thumb","px","often","tip","carry","golf","clubs","tips","common","restaurants","compulsory","sometimes","often","london","large_cities","areas","service_charge","may","often","since","legal","requiremento","include","taxes","obligatory","charges","prices","displayed","service_charge","compulsory","displayed","trader","makes","presence","clear","meal","even","level","service","unacceptable","particular","requirements","supply","goods","services","acthe","customer","refuse","pay","service_charge","service_charge","bill","added","separately","reported","common","servicesuch","taxis","hairdressers","expected","often","given","reward","good","service","large_cities","tips","given","taxi_drivers","hairdressers","expected","cash","tipping","bartenders","pub","recommended","expected","instead","practice","drink","considered","polite","traditional","instance","patron","would","first","however","might","offer","buy","drink","would","option","either","actually","pour","drink","behind","bar","legal","common","uk","keep","price","one","drink","choosing","cash","practice","athe","discretion","patron","could","one","two","drinks","instead","three","preferred","leaving","cash","tips","counter","pub","considered","rude","inappropriate","north_americand","caribbean","tipping","practiced","canada","similar","manner","united_states","quebec","provides","alternate","minimum_wage","schedule","tipped","provinces","allow","alternate","minimum_wage","schedule","liquor","servers","according","wendy","leung","globe","mail","common_practice","restaurants","tips","employees","process","called","tipping","restaurants","barred","taking","share","server","tip","wendy","leung","globe","mail","published","tuesday","jun","accessed_may","another","tipping","outhe","house","restaurant","occasionally","explained","fee","covering","monetary","error","member","ontario","provincial","parliament","michael","introduced","bill","ontario","ontario","wants","ban","tips","keith","leslie","canadian","accessed","june","december","reported","ontario","banning","employers","taking","cut","tips","meant","servers","hospitality","staff","protecting","employees","tips","act","makes","illegal","employers","employees","tips","gratuities","among","employees","canadian","federal","tax","law","considers","tips","income","workers","receive","tips","legally","required","reporthe","income","canada","revenue","agency","pay","income","tax","july","cra","concerned","tax","evasion","servers","cra","mentioned","report","uncovered","among","staff","audited","million","cra","quoted","closely","check","tax","returns","individuals","would","reasonably","bexpected","receiving","tips","ensure_thathe","tips","revenue","canada","tax","wait_staff","tips","tipping","caribbean","varies","island","island","dominican","republic","restaurants","add","gratuity","customary","tip","extra","st","expected","tip","gratuity","already","included","file","taxi","driver","havana","thumb","px","taxi","driver","waiting","customers","workers","small","economy","restaurants","usually","expect","however","tipping","mexico","common","larger","medium","higher","customary","thesestablishments","tip","less","bill","voluntary","offering","good","service","based","total","bill","value","added","tax","english","value","added","tax","already","included","menu","service_industry","pricing","since","mexican","consumer","law","requires","costs","customer","thus","standard","tip","mexico","pre","tax","bill","tax","mexican","territory","except","tax","stimulus","economic","zones","gratuity","may","added","bill","withouthe","customer","consent","contrary","law","either","explicitly","printed","bill","means","alleging","local","custom","restaurants","bars","night_clubs","however","officials","began","campaign","increasingly","rampant","practice","due","violating","mexican","consumer","law","also","frequently","retained","owners","management","service_charge","orestaurant","service_charge","added","article","mexican","consumer","mexican","authorities","recommend","patrons","require","bill","additionally","federal","initiative","eliminate","illegal","add","ons","government","contrary","even","belief","many","mexicans","thathe","mexican","legal","definition","tips","require","pay","client","pay","anything","legal","definition","tip","consistent","withe","traditional","cultural","definition","going","far","encourage","increasing","illicit","practice","office","federal","consumer","prosecution","united_states","file","thumb","px","server","practiced","social","custom","united_states","tipping","definition","voluntary","athe","discretion","customer","restaurants_offering","traditional","table_service","gratuity","amount","customer","check","inew_york_city","customary","adequate","service","provided","buffet","style_restaurants","server","brings","beverages","customary","higher","tips","may","given","excellent","service","lower","tips","service","case","bad","service","tip","may","given","restaurant","manager","may","notified","problem","tips","also","generally","given","services","provided","golf","courses","casino","hotels","concierge","foodelivery","etiquette","applies","bar","service","weddings","event","one","guest","well","host","provide","appropriate","tips","workers","athend","eventhe","amount","may","negotiated","required","service","voluntary","fair","labor","standards","act","defines","individuals","customarily","regularly","receive","tips","per","month","permits","employers","include","tips","difference","employees","hourly","wage","minimum_wage","although","states","territories","provide","generous","provisions","tipped","employees","example","laws","alaska","california","minnesota","montana","nevada","oregon","washington","employees","must","paid","full","minimum_wage","equal","higher","federal","minimum_wage","instances","tips","considered","cannot","allocated","employers","employees","customarily","regularly","receive","tips","non","include","cooks","chefs","us","file","king","david","hotel","thumb","px","waiters","athe","king","david","hotel","limited","information","available","levels","tipping","study","iowa","state_university","suburban","restaurant","surveyed","thearly","mean","tip","mean","bill","asuch","mean","tip","rate","median","tip","rate","research","study","young","university","sample","restaurants","average","ranging","according","national","restaurant","handful","restaurants","united_states","adopted","tipping","model","restaurants","adopted","model","returned","tipping","due","loss","employees","charges","mandatory","payments","typically","added","caterers","service_charge","noto","confused","tip","gratuity","optional","athe","discretion","commonly","add","ito","checks","large","bars","decided","include","service_charge","well","example","manhattanew","york","service_charge","required","law","placesuch","state","standard","predetermined","percent","often","isometimes","labeled","service_charge","thearly_th","century","americans","viewed","tipping","withe","values","democratic","society","also","proprietors","regarded","tips","equivalento","employee","something","otherwise","forbidden","tipping","waiter","get","extra","large","portion","ofood","introduction","prohibition","enormous","impact","hotels_restaurants","losthe","revenue","selling","alcoholic_beverages","resulting","financial","pressure","caused","proprietors","welcome","tips","way","employee","wages","contrary","popular","belief","tipping","arise","servers","lowages","occupation","waiter","server","fairly","well","paid","thera","tipping","became","spite","trend","toward","tipping","obligatory","behavior","six","states","mainly","south","passed","laws","made","tipping","illegal","enforcement","laws","problematic","thearliest","laws","passed","washington","last","laws","repealed","mississippi","argued","thathe","original","workers","paid","anything","employers","newly","freed","slaves","thathis","whole","concept","paying","anything","letting","live","tips","carried","slavery","file_jpg","thumb","px","hair","among","service","workers","often","tipped","service","united_states","tips","considered","income","thentire","tip","amount","treated","earned","wages","withexception","months","tip","income","unlike","wages","payroll","tax","social","security","tax","split","employee","employer","themployee","pays","payroll","tax","tip","income","tips","worker","compensation","would","pay","additional","payroll","taxes","worker","compensation","higher","wages","tips","research","finds","evasion","due","declaration","concern","us","according","internal","revenue","service","tips","waiters","reported","november","tipping","led","investigations","employers","aresponsible","federal","unemployment","insurance","tips","customers","employees","encourages","employers","tips","us","federal","employees","us_government","recognizes","tips","federal","employee","travel","however","us","law","prohibits","federal","employees","receiving","tips","standards","ethical","conduct","asking","accepting","take","anything","value","influences","performance","official","act","allowed","south_america","service_charges","included","withe","bill","tip","around","isometimes","given","considered","polite","express","cultural","tips","ship","internationally","service_charges","included","withe","bill","tipping","uncommon","file_jpg","thumb","px","young","man","white","golf","clubs","older","tipping","expected","australia","federal_government","rights","workers","providing","minimum_wage","australia","reviewed","yearly","waset","per_hour","casual","employees","fairly","standard","across","types","venues","tipping","caf","restaurants","especially","large","party","tipping","taxi_drivers","home","required","expected","tend","round","amount","indicating","thathey","happy","lethe","worker","keep","change","tradition","tipping","providing","hotel","porter","casino","australiand","places","generally","gaming","staff","considered","bribery","example","state","tasmania","gaming","control","act","states","section","condition","every","special","employee","licence","thathe","special","employee","must","accept","gratuity","consideration","benefit","patron","gaming","area","concern","thatipping","might","become","common","australia","tipping","point","literally","nov","new_zealand","tipping","traditional","practice","inew_zealand","become","less","uncommon","recent_years","especially","finer","establishments","tipping","inew_zealand","likely","result","tourists","visiting","tipping","united_states","america","may","follow","tipping","customs","tipping","occur","among","new_zealanders","usually","reward","level","service","excess","customer","expectations","reward","voluntary","act","service","number","websites","published","new_zealand","government","advise","tourists","thatipping","inew_zealand","obligatory","even","restaurants","bars","however","tipping","good","service","kindness","athe","discretion","visitor","sunday","star","times","reader","poll","indicated","good","service","become","norm","inew_zealand","percentage","based","gratuities","file","william","powell","crossing","jpg","thumb","px","crossing","cleared","way","people","cross","road","without","clothes","normally","tipped","thiservice","london","modern","version","thiservice","kids","clean","time","vehicles","stopped","traffic","lights","countries","tipping","norm","us","canadand","countries","western_europe","pay","workers","thatheir","wages","supplemented","criticized","inherent","social","transactions","involve","tipping","tipping","services","similar","ones","tips","price","rather","amount","quality_service","customer","pays","larger","tip","server","bringing","hamburger","example","blog","entitled","tipping","banned","stephen","steven","levitt","discussed","issue","gratuities","authors","pointed","outhat","research","found","waitresses","get","better","tips","less","attractive","waitresses","men","appearance","important","lynn","research","also_found","get","better","tips","women","get","better","tips","heavier","women","large","breasted","women","get","better","tips","smaller","breasted","women","woman","server","interviewed","blog","stated","lost","manager","said","fithe","look","company","restaurant","know","lot","girls","skin","darker","know","lynn","states","tipping","discrimination","supreme_court","ruled","business","practices","intended","discriminate","theffect","protected","class","illegal","thathere","class","action","lawsuit","part","ethnic","minority","waiters","waitresses","claiming","discrimination","terms","employment","thatipping","might","declared","illegal","tipping","banned","full","poor","categories","people","shown","poor","cases","gratuity","expected","tipping","may","bexpected","fee","explicitly","charged","service","countriesuch","australiand","japan","tipping","provided","service","found","good","america","new_yorker","check","please","mandatory_tipping","service_charge","isometimes","added","bills","restaurants","similar","establishments","attempts","hide","service_charge","line","receipt","reported","united_states","criminal","charges","dropped","two","separate","cases","non","payment","mandatory","gratuities","courts","ruled","automatic","mean","mandatory","cruise_lines","charge","patrons","day","mandatory_tipping","gratuities","alcoholic_beverages","bribery","corruption","bribe","political","corruption","sometimes","disguised","tipping","developing_countries","police","officers","border","guards","civil","servants","openly","gifts","fees","using","variety","local","economic","theory","academic","paper","steven","holland","calls","tipping","effective","mechanism","sharing","welfare","improvement","reduces","risk","faced","service","customer","customer","decide","whether","noto","j","holland","tipping","risk","sharing","journal","socio","economics","volume_issue","august","pages","tipping","isometimes","given","example","principal","principal","agent","problem","economics","onexample","restaurant","owner","act","agents","theconomics","etiquette","tipping","available_online","accessed","june","cases","c","agreements","increase","worker","effort","compensation","tied","firm","success","onexample","compensation","agreement","waiters","waitresses","paid","j","economics","john","wiley","sons","feb","real_world","size","tip","withe","quality_service","effects","dominate","see_also","mandatory_tipping","externalinks","trouble","tipping","spain","ask","yahoo","practice","tipping","york_times","article","san_diego","restaurant","stopped","accepting","tips","category_hospitality_industry","category","service","industries","category","household","income","category","customer_service"],"clean_bigrams":[["image","usd"],["thumb","px"],["px","leaving"],["common","way"],["serving","staff"],["gratuity","also"],["also","called"],["money","customarily"],["customarily","given"],["customer","service"],["service","worker"],["basic","price"],["price","tipping"],["commonly","given"],["certain","service"],["service","sector"],["sector","workers"],["service","performed"],["tip","waiting"],["waiting","staff"],["staff","server"],["restaurants","taxi"],["taxi","driver"],["son","tips"],["social","custom"],["custom","varies"],["locations","tipping"],["considered","insulting"],["locations","tipping"],["customary","amount"],["specific","range"],["monetary","amounts"],["certain","percentage"],["bill","based"],["perceived","quality"],["quality","service"],["service","given"],["us","government"],["government","workers"],["police","officer"],["even","offering"],["fixed","percentage"],["percentage","mandatory"],["mandatory","tipping"],["tipping","service"],["service","charge"],["charge","isometimes"],["isometimes","added"],["similar","establishments"],["establishments","tipping"],["tipping","may"],["explicitly","charged"],["theoretical","economic"],["economic","point"],["view","gratuities"],["gratuities","may"],["may","solve"],["principal","agent"],["agent","problem"],["restaurant","owner"],["many","managers"],["managers","believe"],["provide","incentive"],["greater","worker"],["worker","effort"],["effort","however"],["however","studies"],["real","world"],["world","practice"],["practice","show"],["show","thatipping"],["often","discriminatory"],["arbitrary","workers"],["workers","receive"],["receive","different"],["different","levels"],["gratuity","based"],["age","sex"],["sex","race"],["race","hair"],["hair","color"],["even","breast"],["breast","size"],["history","file"],["thumb","right"],["right","px"],["first","usage"],["term","tip"],["gratuity","dates"],["dates","back"],["oxford","english"],["english","dictionary"],["word","tip"],["tip","originated"],["slang","term"],["unclear","according"],["small","present"],["money","began"],["began","around"],["gratuity","first"],["gratuity","first"],["first","appeared"],["th","century"],["earlier","sense"],["tip","meaning"],["hand","pass"],["th","century"],["century","thisense"],["thisense","may"],["th","century"],["century","tip"],["tip","meaning"],["low","german"],["tap","buthis"],["uncertain","tip"],["tip","v"],["v","oxford"],["oxford","english"],["english","dictionary"],["ed","oxford"],["oxford","university"],["university","press"],["word","tip"],["first","used"],["criminal","circles"],["word","meanto"],["meanto","imply"],["illicit","money"],["money","exchanges"],["atlantic","october"],["october","accessed"],["augusthe","practice"],["tipping","began"],["food","issue"],["new","york"],["york","times"],["times","published"],["published","october"],["october","accessed"],["th","century"],["overnight","guests"],["private","homes"],["homes","would"],["would","provide"],["provide","sums"],["money","known"],["afterwards","customers"],["customers","began"],["began","tipping"],["london","coffee"],["coffee","house"],["house","coffeehouses"],["commercial","establishments"],["dates","back"],["back","either"],["free","gift"],["gift","probably"],["earlier","latin"],["freely","given"],["meaning","money"],["money","given"],["favor","services"],["term","translates"],["drink","money"],["employees","tips"],["tips","gratuities"],["service","charges"],["catering","trade"],["tronc","exists"],["uk","responsibility"],["earn","tax"],["distribution","may"],["may","lie"],["lie","withe"],["word","tronc"],["collecting","box"],["june","themployment"],["themployment","appeals"],["uk","test"],["test","case"],["case","revenue"],["berkeley","square"],["square","ltd"],["assessing","whether"],["salary","meets"],["national","minimum"],["minimum","wage"],["region","inigeria"],["inigeria","tipping"],["upscale","hotels"],["usually","included"],["bill","though"],["though","themployee"],["recentimes","however"],["service","provider"],["provider","usually"],["reported","cases"],["security","guards"],["guards","asking"],["asking","bank"],["bank","customers"],["china","traditionally"],["tipping","however"],["however","hotels"],["routinely","serve"],["serve","foreign"],["foreign","tourists"],["tourists","allow"],["allow","tipping"],["example","would"],["tour","guides"],["hong","kong"],["kong","tipping"],["notypically","expected"],["hotels","orestaurant"],["orestaurant","establishments"],["service","charge"],["bill","instead"],["gratuity","taxi"],["taxi","drivers"],["hong","kong"],["kong","may"],["may","also"],["also","charge"],["round","sum"],["avoid","making"],["making","change"],["larger","bills"],["macau","previously"],["portugal","file"],["jpg","thumb"],["thumb","px"],["operator","pulls"],["pulls","two"],["two","guests"],["guests","near"],["near","kyoto"],["japan","tipping"],["cause","confusion"],["confusion","like"],["like","many"],["east","asia"],["asia","japanese"],["japanese","people"],["people","see"],["see","tipping"],["insulting","india"],["india","tipping"],["whole","market"],["recent","year"],["day","indonesia"],["indonesia","tipping"],["large","tourist"],["tourist","areasuch"],["full","service"],["service","restaurants"],["restaurants","bar"],["bar","tipping"],["normally","expat"],["origin","reflects"],["bar","pubs"],["high","end"],["end","bars"],["bars","accepts"],["counter","cash"],["cash","tips"],["amount","massage"],["located","practically"],["every","corner"],["drivers","expect"],["expect","bellboys"],["high","end"],["end","hotels"],["hotels","expect"],["expect","around"],["around","per"],["per","bag"],["bag","south"],["south","korea"],["korea","tipping"],["korea","n"],["n","culture"],["general","service"],["service","industry"],["regard","tipping"],["inappropriate","behavior"],["behavior","high"],["high","end"],["end","hotels"],["restaurants","often"],["often","include"],["include","service"],["service","charge"],["always","included"],["leave","separate"],["separate","gratuity"],["servers","beyond"],["singapore","tipping"],["insulting","people"],["people","may"],["may","mistake"],["could","result"],["jail","time"],["time","bars"],["restaurants","typically"],["typically","add"],["service","charge"],["services","tax"],["tax","singapore"],["tax","although"],["wait","staff"],["already","makes"],["restaurant","bill"],["bill","tips"],["generally","given"],["given","anywhere"],["anywhere","taxi"],["taxi","drivers"],["drivers","given"],["given","tip"],["excess","cash"],["return","exact"],["exact","change"],["taiwan","tipping"],["high","end"],["end","restaurants"],["restaurants","include"],["mandatory","service"],["service","charge"],["service","staff"],["rather","considered"],["taiwanese","law"],["general","revenue"],["taipei","times"],["false","gratuity"],["july","file"],["thumb","px"],["tips","tipping"],["much","expected"],["expected","almost"],["almost","everywhere"],["many","foreigners"],["living","abroad"],["abroad","visit"],["visit","albania"],["albania","leaving"],["restaurants","even"],["even","porters"],["porters","guides"],["duty","free"],["free","alcohol"],["often","used"],["porters","bellhops"],["like","however"],["offensive","tips"],["sometimes","expected"],["expected","mostly"],["restaurants","buthey"],["caf","bars"],["tip","taxi"],["taxi","drivers"],["drivers","hairdressers"],["hairdressers","tips"],["lit","drinking"],["drinking","money"],["denmark","since"],["since","service"],["service","charges"],["charges","must"],["must","always"],["always","included"],["law","tipping"],["outstanding","service"],["travel","tips"],["finland","tipping"],["never","expected"],["expected","caf"],["restaurants","include"],["include","service"],["service","charge"],["french","law"],["tax","assessment"],["assessment","service"],["indicates","thathe"],["thathe","tip"],["wait","staff"],["venues","accustomed"],["accustomed","tourists"],["smaller","food"],["food","establishments"],["rural","areas"],["also","critical"],["good","service"],["superior","service"],["higher","end"],["end","eating"],["eating","establishments"],["generous","tip"],["tip","would"],["place","however"],["rare","waiter"],["waiter","waitress"],["waitress","accustomed"],["generous","foreign"],["foreign","customers"],["problem","receiving"],["austriand","germany"],["germany","file"],["file","c"],["jpg","thumb"],["thumb","px"],["px","coat"],["coat","check"],["check","staff"],["usually","tipped"],["photo","shows"],["coat","check"],["berlin","germany"],["germany","tipping"],["waiting","staff"],["minimum","wage"],["employers","paying"],["good","basic"],["basic","wage"],["germany","consider"],["consider","tipping"],["good","manners"],["good","service"],["service","fee"],["fee","withouthe"],["withouthe","customer"],["example","germans"],["germans","usually"],["usually","tip"],["almost","never"],["big","supermarkets"],["buthe","tip"],["usually","paid"],["atimes","rather"],["tipping","individually"],["tipping","box"],["box","iset"],["commonplace","sometimes"],["sometimes","withe"],["withe","comment"],["germany","usa"],["usa","today"],["today","rather"],["tip","afterwards"],["customer","says"],["total","including"],["tip","thus"],["basic","price"],["customer","might"],["might","rather"],["unusually","say"],["twelve","pay"],["small","amount"],["nearest","euro"],["sign","reading"],["common","like"],["like","supermarkets"],["supermarkets","clothing"],["clothing","retailers"],["retailers","etc"],["requests","thathe"],["thathe","bill"],["noto","tip"],["charity","donation"],["donation","fighting"],["fighting","children"],["children","poverty"],["completely","voluntary"],["germany","tips"],["considered","income"],["income","buthey"],["tax","free"],["free","according"],["german","income"],["income","tax"],["tax","law"],["hungarian","word"],["word","tip"],["literally","money"],["often","written"],["amount","varies"],["price","type"],["quality","service"],["service","also"],["also","influenced"],["customer","like"],["commonplace","depending"],["situation","tipping"],["tipping","might"],["unusual","optional"],["expected","almost"],["bills","include"],["include","service"],["service","charge"],["charge","similarly"],["calculate","wages"],["would","also"],["also","receive"],["receive","tips"],["others","prohibit"],["prohibit","accepting"],["given","percentage"],["percentage","regardless"],["quality","service"],["bribe","widespread"],["widespread","tipping"],["tipping","based"],["loosely","defined"],["defined","customs"],["main","factor"],["factor","contributing"],["particular","hungarian"],["hungarian","case"],["much","expected"],["expected","almost"],["almost","obligatory"],["obligatory","though"],["though","illegal"],["illegal","tipping"],["physicians","healthcare"],["healthcare","system"],["almost","completely"],["completely","state"],["state","run"],["obligatory","social"],["social","insurance"],["insurance","system"],["iceland","tipping"],["tipping","j"],["lit","serving"],["serving","money"],["appreciated","especially"],["guided","private"],["private","tours"],["irish","people"],["tip","taxi"],["taxi","drivers"],["cleaning","staff"],["restaurants","bars"],["expected","tips"],["often","given"],["reward","high"],["high","quality"],["quality","service"],["kind","gesture"],["gesture","tipping"],["often","done"],["leaving","small"],["small","change"],["change","athe"],["athe","table"],["bill","although"],["cited","thatipping"],["thatipping","taxi"],["taxi","drivers"],["common","practice"],["practice","tips"],["tips","la"],["special","service"],["high","quality"],["quality","service"],["service","however"],["really","uncommon"],["uncommon","almost"],["restaurants","withe"],["november","article"],["service","charge"],["charge","called"],["called","coperto"],["coperto","waiters"],["tip","since"],["already","fairly"],["fairly","paid"],["foreign","customers"],["caf","bars"],["uncommon","paying"],["change","saying"],["change","recently"],["recently","tip"],["tip","jar"],["cash","register"],["becoming","widespread"],["widespread","however"],["often","forbidden"],["forbidden","leaving"],["also","quite"],["quite","common"],["taxi","drivers"],["credit","card"],["add","manually"],["bill","instead"],["instead","one"],["tip","service"],["service","charge"],["tip","taxi"],["taxi","drivers"],["cleaning","staff"],["restaurants","bars"],["expected","tips"],["often","given"],["reward","high"],["high","quality"],["quality","service"],["kind","gesture"],["gesture","tipping"],["often","done"],["leaving","small"],["small","change"],["change","athe"],["athe","table"],["bill","oslo"],["labor","union"],["restaurant","employees"],["employees","hasaid"],["hasaid","many"],["many","times"],["times","thathey"],["thathey","discourage"],["discourage","tipping"],["tipping","except"],["extraordinary","service"],["time","makes"],["unemployment","insurance"],["netherlands","tipping"],["service","fee"],["fee","withouthe"],["withouthe","customer"],["consent","however"],["believe","thatipping"],["restaurants","bars"],["bars","taxis"],["hotels","barestaurant"],["barestaurant","maids"],["normal","noto"],["noto","tip"],["receive","good"],["excellent","service"],["around","regulations"],["indicated","prices"],["prices","must"],["must","include"],["include","service"],["service","charge"],["called","service"],["service","also"],["also","wages"],["vary","withe"],["withe","venue"],["ron","tof"],["bill","tips"],["cash","alongside"],["nothe","norm"],["norm","servers"],["hairdressers","hotel"],["hotel","maids"],["maids","parking"],["parking","valets"],["valets","tour"],["receiving","tips"],["tips","regularly"],["quality","service"],["small","amounts"],["directly","billed"],["instance","counter"],["butheir","counterparts"],["clothing","stores"],["getting","reservations"],["obtaining","better"],["better","seats"],["seats","however"],["however","care"],["bribe","depending"],["romania","bribery"],["larger","issue"],["legal","consequences"],["receiving","tips"],["coins","due"],["low","value"],["besto","stick"],["paper","money"],["money","offering"],["offering","coins"],["considered","rude"],["rude","gesture"],["may","prompt"],["even","angry"],["angry","remarks"],["coin","handling"],["widespread","practice"],["aimed","primarily"],["primarily","athe"],["athe","individual"],["individual","athe"],["athe","counter"],["rather","athe"],["athe","business"],["business","nevertheless"],["customer","towards"],["clerk","etiquette"],["etiquette","demands"],["parties","offers"],["change","buthe"],["small","businesses"],["businesses","may"],["may","sometimes"],["sometimes","force"],["offering","small"],["small","value"],["value","products"],["products","instead"],["considered","rude"],["ithe","reverse"],["also","happen"],["small","change"],["paper","money"],["smaller","paper"],["paper","denomination"],["latter","usually"],["usually","happens"],["larger","store"],["store","chains"],["russian","language"],["literally","means"],["tea","tipping"],["tipping","small"],["small","amounts"],["waiters","cab"],["cab","drivers"],["hotel","bellboys"],["quite","common"],["communist","revolution"],["especially","withe"],["tipping","waseen"],["offensive","withe"],["withe","fall"],["soviet","union"],["iron","curtain"],["subsequent","influx"],["influx","oforeign"],["oforeign","tourists"],["country","tipping"],["tipping","started"],["steady","comeback"],["comeback","since"],["since","thearly"],["become","somewhat"],["however","still"],["around","tipping"],["tipping","russians"],["widespread","consensus"],["much","tip"],["larger","urban"],["urban","areas"],["areas","like"],["like","moscow"],["st","petersburg"],["petersburg","tips"],["high","end"],["end","restaurants"],["restaurants","coffee"],["coffee","shops"],["shops","bars"],["normally","left"],["credit","card"],["cash","payment"],["credit","card"],["used","tipping"],["budget","restaurant"],["order","athe"],["athe","table"],["table","called"],["appropriate","fast"],["fast","food"],["food","chainsuch"],["allow","tipping"],["tipping","either"],["either","tipping"],["tipping","bartenders"],["market","bar"],["taxi","drivers"],["drivers","also"],["also","count"],["pre","negotiate"],["expect","one"],["noted","thathe"],["soviet","era"],["era","still"],["still","consider"],["consider","tipping"],["offensive","practice"],["areas","tipping"],["rarely","expected"],["may","even"],["even","cause"],["cause","confusion"],["confusion","tipping"],["nearest","euro"],["euro","recently"],["recently","areas"],["areas","visited"],["many","tourists"],["around","inside"],["inside","slovenia"],["slovenia","tipping"],["tipping","etiquette"],["slovenia","travel"],["travel","information"],["information","fact"],["fact","sheet"],["retrieved","tipping"],["generally","considered"],["considered","mandatory"],["quality","service"],["service","received"],["depends","mainly"],["locale","higher"],["upscale","restaurants"],["restaurants","bars"],["small","change"],["change","left"],["bill","el"],["taxi","drivers"],["drivers","hairdressers"],["hairdressers","hotel"],["hotel","personnel"],["personnel","may"],["may","expect"],["upscale","setting"],["economy","pedro"],["blamed","excessive"],["excessive","tipping"],["euro","el"],["el","mundo"],["mundo","december"],["december","tipping"],["reward","high"],["high","quality"],["quality","service"],["kind","gesture"],["gesture","tipping"],["often","done"],["leaving","small"],["small","change"],["mostly","done"],["restaurants","less"],["less","often"],["made","athe"],["athe","desk"],["tipped","less"],["less","often"],["often","hairdressers"],["tipped","tipping"],["much","tip"],["sweden","tips"],["cash","tips"],["much","declared"],["tax","authority"],["authority","cards"],["heavily","used"],["sweden","tips"],["tips","paid"],["restaurants","aregularly"],["aregularly","checked"],["tax","authority"],["restaurant","owners"],["owners","keep"],["keep","card"],["card","tips"],["notice","generous"],["generous","card"],["card","tips"],["turkey","tipping"],["lit","gift"],["persian","language"],["language","persian"],["persian","word"],["word","often"],["often","rendered"],["usually","optional"],["many","places"],["places","though"],["restaurants","usually"],["usually","paid"],["change","cab"],["cab","drivers"],["drivers","usually"],["tipped","though"],["though","passengers"],["passengers","may"],["may","round"],["small","change"],["change","may"],["hotel","porter"],["porter","tipping"],["turkey","united"],["united","kingdom"],["kingdom","file"],["thumb","px"],["often","tip"],["golf","clubs"],["clubs","tips"],["compulsory","sometimes"],["large","cities"],["service","charge"],["charge","may"],["legal","requiremento"],["requiremento","include"],["obligatory","charges"],["prices","displayed"],["service","charge"],["trader","makes"],["presence","clear"],["meal","even"],["services","acthe"],["acthe","customer"],["service","charge"],["service","charge"],["charge","may"],["added","separately"],["often","given"],["reward","good"],["good","service"],["large","cities"],["cities","tips"],["taxi","drivers"],["drivers","hairdressers"],["expected","cash"],["cash","tipping"],["tipping","bartenders"],["expected","instead"],["considered","polite"],["patron","would"],["might","offer"],["option","either"],["actually","pour"],["bar","legal"],["one","drink"],["athe","discretion"],["two","drinks"],["drinks","instead"],["preferred","leaving"],["leaving","cash"],["cash","tips"],["considered","rude"],["inappropriate","north"],["north","americand"],["caribbean","tipping"],["similar","manner"],["united","states"],["states","quebec"],["quebec","provides"],["provides","alternate"],["alternate","minimum"],["minimum","wage"],["wage","schedule"],["provinces","allow"],["allow","alternate"],["alternate","minimum"],["minimum","wage"],["wage","schedule"],["liquor","servers"],["servers","according"],["wendy","leung"],["common","practice"],["process","called"],["called","tipping"],["tip","wendy"],["wendy","leung"],["mail","published"],["published","tuesday"],["tuesday","jun"],["jun","accessed"],["may","another"],["tipping","outhe"],["outhe","house"],["occasionally","explained"],["monetary","error"],["ontario","provincial"],["provincial","parliament"],["parliament","michael"],["wants","ban"],["keith","leslie"],["canadian","press"],["press","posted"],["posted","accessed"],["banning","employers"],["hospitality","staff"],["protecting","employees"],["employees","tips"],["tips","act"],["act","makes"],["employees","tips"],["tips","gratuities"],["employees","canadian"],["canadian","federal"],["federal","tax"],["tax","law"],["law","considers"],["considers","tips"],["income","workers"],["workers","receive"],["receive","tips"],["legally","required"],["reporthe","income"],["canada","revenue"],["revenue","agency"],["pay","income"],["income","tax"],["tax","evasion"],["cra","mentioned"],["report","uncovered"],["among","staff"],["staff","audited"],["closely","check"],["tax","returns"],["would","reasonably"],["reasonably","bexpected"],["receiving","tips"],["ensure","thathe"],["thathe","tips"],["revenue","canada"],["tax","wait"],["wait","staff"],["tips","tipping"],["caribbean","varies"],["dominican","republic"],["republic","restaurants"],["restaurants","add"],["already","included"],["included","file"],["taxi","driver"],["driver","havana"],["thumb","px"],["taxi","driver"],["driver","waiting"],["customers","workers"],["small","economy"],["economy","restaurants"],["restaurants","usually"],["however","tipping"],["larger","medium"],["higher","end"],["end","restaurants"],["voluntary","offering"],["good","service"],["service","based"],["total","bill"],["value","added"],["added","tax"],["value","added"],["added","tax"],["already","included"],["service","industry"],["industry","pricing"],["pricing","since"],["since","mexican"],["mexican","consumer"],["consumer","law"],["law","requires"],["customer","thus"],["standard","tip"],["pre","tax"],["tax","bill"],["mexican","territory"],["territory","except"],["tax","stimulus"],["stimulus","economic"],["economic","zones"],["gratuity","may"],["bill","withouthe"],["withouthe","customer"],["consent","contrary"],["law","either"],["either","explicitly"],["explicitly","printed"],["means","alleging"],["alleging","local"],["local","custom"],["restaurants","bars"],["night","clubs"],["clubs","however"],["officials","began"],["increasingly","rampant"],["violating","mexican"],["mexican","consumer"],["consumer","law"],["service","charge"],["orestaurant","service"],["service","charge"],["mexican","consumer"],["mexican","authorities"],["authorities","recommend"],["recommend","patrons"],["patrons","require"],["bill","additionally"],["federal","initiative"],["illegal","add"],["add","ons"],["contrary","even"],["many","mexicans"],["mexicans","thathe"],["thathe","mexican"],["mexican","legal"],["legal","definition"],["pay","anything"],["legal","definition"],["consistent","withe"],["withe","traditional"],["traditional","cultural"],["cultural","definition"],["increasing","illicit"],["illicit","practice"],["prosecution","united"],["united","states"],["states","file"],["thumb","px"],["practiced","social"],["social","custom"],["united","states"],["states","tipping"],["voluntary","athe"],["athe","discretion"],["restaurants","offering"],["offering","traditional"],["traditional","table"],["table","service"],["inew","york"],["york","city"],["adequate","service"],["provided","buffet"],["buffet","style"],["style","restaurants"],["server","brings"],["customary","higher"],["higher","tips"],["tips","may"],["excellent","service"],["lower","tips"],["tip","may"],["restaurant","manager"],["manager","may"],["problem","tips"],["also","generally"],["generally","given"],["services","provided"],["golf","courses"],["courses","casino"],["casino","hotels"],["hotels","concierge"],["concierge","foodelivery"],["etiquette","applies"],["bar","service"],["provide","appropriate"],["appropriate","tips"],["workers","athend"],["eventhe","amount"],["amount","may"],["fair","labor"],["labor","standards"],["standards","act"],["act","defines"],["regularly","receive"],["receive","tips"],["per","month"],["permits","employers"],["include","tips"],["employees","hourly"],["hourly","wage"],["minimum","wage"],["wage","although"],["territories","provide"],["generous","provisions"],["tipped","employees"],["example","laws"],["alaska","california"],["california","minnesota"],["minnesota","montana"],["montana","nevada"],["nevada","oregon"],["oregon","washington"],["employees","must"],["full","minimum"],["minimum","wage"],["federal","minimum"],["minimum","wage"],["regularly","receive"],["receive","tips"],["cooks","chefs"],["file","king"],["king","david"],["david","hotel"],["thumb","px"],["px","waiters"],["waiters","athe"],["athe","king"],["king","david"],["david","hotel"],["limited","information"],["information","available"],["iowa","state"],["state","university"],["suburban","restaurant"],["restaurant","surveyed"],["mean","tip"],["mean","bill"],["mean","tip"],["tip","rate"],["median","tip"],["tip","rate"],["research","study"],["young","university"],["sample","restaurants"],["national","restaurant"],["united","states"],["tipping","model"],["model","returned"],["tipping","due"],["mandatory","payments"],["payments","typically"],["typically","added"],["service","charge"],["athe","discretion"],["commonly","add"],["add","ito"],["ito","checks"],["include","service"],["service","charge"],["manhattanew","york"],["service","charge"],["standard","predetermined"],["predetermined","percent"],["percent","often"],["often","isometimes"],["isometimes","labeled"],["service","charge"],["thearly","th"],["th","century"],["century","americans"],["americans","viewed"],["viewed","tipping"],["withe","values"],["democratic","society"],["society","also"],["also","proprietors"],["proprietors","regarded"],["regarded","tips"],["otherwise","forbidden"],["extra","large"],["large","portion"],["portion","ofood"],["enormous","impact"],["losthe","revenue"],["selling","alcoholic"],["alcoholic","beverages"],["resulting","financial"],["financial","pressure"],["pressure","caused"],["caused","proprietors"],["welcome","tips"],["employee","wages"],["wages","contrary"],["popular","belief"],["belief","tipping"],["servers","lowages"],["waiter","server"],["fairly","well"],["well","paid"],["tipping","became"],["trend","toward"],["toward","tipping"],["obligatory","behavior"],["behavior","six"],["six","states"],["states","mainly"],["south","passed"],["passed","laws"],["made","tipping"],["tipping","illegal"],["illegal","enforcement"],["problematic","thearliest"],["argued","thathe"],["thathe","original"],["original","workers"],["paid","anything"],["newly","freed"],["freed","slaves"],["thathis","whole"],["whole","concept"],["tips","carried"],["slavery","file"],["jpg","thumb"],["thumb","px"],["px","hair"],["service","workers"],["often","tipped"],["united","states"],["states","tips"],["considered","income"],["income","thentire"],["thentire","tip"],["tip","amount"],["earned","wages"],["wages","withexception"],["tip","income"],["unlike","wages"],["payroll","tax"],["tax","social"],["social","security"],["employer","themployee"],["themployee","pays"],["payroll","tax"],["tip","income"],["would","pay"],["pay","additional"],["additional","payroll"],["payroll","taxes"],["higher","wages"],["tips","research"],["research","finds"],["us","according"],["internal","revenue"],["revenue","service"],["investigations","employers"],["employers","aresponsible"],["federal","unemployment"],["unemployment","insurance"],["encourages","employers"],["tips","us"],["us","federal"],["federal","employees"],["us","government"],["government","recognizes"],["recognizes","tips"],["federal","employee"],["employee","travel"],["however","us"],["us","law"],["law","prohibits"],["prohibits","federal"],["federal","employees"],["receiving","tips"],["ethical","conduct"],["conduct","asking"],["take","anything"],["official","act"],["allowed","south"],["south","america"],["america","service"],["service","charges"],["included","withe"],["withe","bill"],["isometimes","given"],["considered","polite"],["cultural","tips"],["ship","internationally"],["internationally","service"],["service","charges"],["included","withe"],["withe","bill"],["uncommon","file"],["jpg","thumb"],["thumb","px"],["young","man"],["golf","clubs"],["federal","government"],["minimum","wage"],["reviewed","yearly"],["per","hour"],["casual","employees"],["fairly","standard"],["standard","across"],["venues","tipping"],["restaurants","especially"],["large","party"],["taxi","drivers"],["expected","however"],["however","many"],["many","people"],["people","tend"],["indicating","thathey"],["lethe","worker"],["worker","keep"],["hotel","porter"],["porter","casino"],["places","generally"],["gaming","staff"],["considered","bribery"],["gaming","control"],["control","act"],["act","states"],["every","special"],["special","employee"],["licence","thathe"],["thathe","special"],["special","employee"],["employee","must"],["gratuity","consideration"],["gaming","area"],["concern","thatipping"],["thatipping","might"],["might","become"],["tipping","point"],["point","literally"],["nov","new"],["new","zealand"],["zealand","tipping"],["traditional","practice"],["practice","inew"],["inew","zealand"],["become","less"],["less","uncommon"],["recent","years"],["years","especially"],["finer","establishments"],["establishments","tipping"],["tipping","inew"],["inew","zealand"],["tourists","visiting"],["united","states"],["may","follow"],["tipping","customs"],["occur","among"],["among","new"],["new","zealanders"],["voluntary","act"],["websites","published"],["new","zealand"],["zealand","government"],["government","advise"],["advise","tourists"],["tourists","thatipping"],["thatipping","inew"],["inew","zealand"],["obligatory","even"],["restaurants","bars"],["bars","however"],["however","tipping"],["good","service"],["athe","discretion"],["sunday","star"],["star","times"],["times","reader"],["reader","poll"],["poll","indicated"],["good","service"],["norm","inew"],["inew","zealand"],["percentage","based"],["based","gratuities"],["gratuities","file"],["file","william"],["william","powell"],["jpg","thumb"],["thumb","px"],["px","crossing"],["road","without"],["normally","tipped"],["thiservice","london"],["modern","version"],["time","vehicles"],["traffic","lights"],["us","canadand"],["western","europe"],["pay","workers"],["thatheir","wages"],["inherent","social"],["involve","tipping"],["similar","ones"],["price","rather"],["quality","service"],["service","customer"],["customer","pays"],["larger","tip"],["server","bringing"],["blog","entitled"],["banned","stephen"],["steven","levitt"],["levitt","discussed"],["authors","pointed"],["pointed","outhat"],["outhat","research"],["waitresses","get"],["get","better"],["better","tips"],["less","attractive"],["attractive","waitresses"],["waitresses","men"],["important","lynn"],["research","also"],["also","found"],["get","better"],["better","tips"],["women","get"],["get","better"],["better","tips"],["heavier","women"],["women","large"],["large","breasted"],["breasted","women"],["women","get"],["get","better"],["better","tips"],["smaller","breasted"],["breasted","women"],["woman","server"],["server","interviewed"],["blog","stated"],["manager","said"],["fithe","look"],["know","lynn"],["lynn","states"],["states","tipping"],["supreme","court"],["business","practices"],["protected","class"],["class","action"],["action","lawsuit"],["ethnic","minority"],["minority","waiters"],["waitresses","claiming"],["claiming","discrimination"],["thatipping","might"],["declared","illegal"],["illegal","tipping"],["banned","full"],["expected","tipping"],["tipping","may"],["explicitly","charged"],["australiand","japan"],["japan","tipping"],["new","yorker"],["yorker","check"],["check","please"],["mandatory","tipping"],["tipping","service"],["service","charge"],["charge","isometimes"],["isometimes","added"],["similar","establishments"],["establishments","attempts"],["hide","service"],["service","charge"],["united","states"],["states","criminal"],["criminal","charges"],["two","separate"],["separate","cases"],["non","payment"],["mandatory","gratuities"],["gratuities","courts"],["courts","ruled"],["mean","mandatory"],["cruise","lines"],["lines","charge"],["patrons","day"],["mandatory","tipping"],["alcoholic","beverages"],["beverages","bribery"],["corruption","bribe"],["political","corruption"],["sometimes","disguised"],["developing","countries"],["countries","police"],["police","officers"],["officers","border"],["border","guards"],["civil","servants"],["servants","openly"],["fees","using"],["economic","theory"],["theory","academic"],["academic","paper"],["steven","holland"],["holland","calls"],["calls","tipping"],["effective","mechanism"],["welfare","improvement"],["risk","faced"],["service","customer"],["decide","whether"],["j","holland"],["holland","tipping"],["risk","sharing"],["socio","economics"],["economics","volume"],["volume","issue"],["issue","august"],["august","pages"],["pages","tipping"],["tipping","isometimes"],["isometimes","given"],["principal","agent"],["agent","problem"],["economics","onexample"],["restaurant","owner"],["theconomics","etiquette"],["tipping","available"],["available","online"],["cases","c"],["increase","worker"],["worker","effort"],["firm","success"],["compensation","agreement"],["john","wiley"],["wiley","sons"],["sons","feb"],["real","world"],["withe","quality"],["quality","service"],["effects","dominate"],["dominate","see"],["see","also"],["also","mandatory"],["mandatory","tipping"],["tipping","externalinks"],["spain","ask"],["ask","yahoo"],["york","times"],["times","article"],["san","diego"],["diego","restaurant"],["stopped","accepting"],["accepting","tips"],["tips","category"],["category","hospitality"],["hospitality","industry"],["industry","category"],["category","service"],["service","industries"],["industries","category"],["category","household"],["household","income"],["income","category"],["category","customer"],["customer","service"]],"all_collocations":["image usd","px leaving","common way","serving staff","gratuity also","also called","money customarily","customarily given","customer service","service worker","basic price","price tipping","commonly given","certain service","service sector","sector workers","service performed","tip waiting","waiting staff","staff server","restaurants taxi","taxi driver","son tips","social custom","custom varies","locations tipping","considered insulting","locations tipping","customary amount","specific range","monetary amounts","certain percentage","bill based","perceived quality","quality service","service given","us government","government workers","police officer","even offering","fixed percentage","percentage mandatory","mandatory tipping","tipping service","service charge","charge isometimes","isometimes added","similar establishments","establishments tipping","tipping may","explicitly charged","theoretical economic","economic point","view gratuities","gratuities may","may solve","principal agent","agent problem","restaurant owner","many managers","managers believe","provide incentive","greater worker","worker effort","effort however","however studies","real world","world practice","practice show","show thatipping","often discriminatory","arbitrary workers","workers receive","receive different","different levels","gratuity based","age sex","sex race","race hair","hair color","even breast","breast size","history file","first usage","term tip","gratuity dates","dates back","oxford english","english dictionary","word tip","tip originated","slang term","unclear according","small present","money began","began around","gratuity first","gratuity first","first appeared","th century","earlier sense","tip meaning","hand pass","th century","century thisense","thisense may","th century","century tip","tip meaning","low german","tap buthis","uncertain tip","tip v","v oxford","oxford english","english dictionary","ed oxford","oxford university","university press","word tip","first used","criminal circles","word meanto","meanto imply","illicit money","money exchanges","atlantic october","october accessed","augusthe practice","tipping began","food issue","new york","york times","times published","published october","october accessed","th century","overnight guests","private homes","homes would","would provide","provide sums","money known","afterwards customers","customers began","began tipping","london coffee","coffee house","house coffeehouses","commercial establishments","dates back","back either","free gift","gift probably","earlier latin","freely given","meaning money","money given","favor services","term translates","drink money","employees tips","tips gratuities","service charges","catering trade","tronc exists","uk responsibility","earn tax","distribution may","may lie","lie withe","word tronc","collecting box","june themployment","themployment appeals","uk test","test case","case revenue","berkeley square","square ltd","assessing whether","salary meets","national minimum","minimum wage","region inigeria","inigeria tipping","upscale hotels","usually included","bill though","though themployee","recentimes however","service provider","provider usually","reported cases","security guards","guards asking","asking bank","bank customers","china traditionally","tipping however","however hotels","routinely serve","serve foreign","foreign tourists","tourists allow","allow tipping","example would","tour guides","hong kong","kong tipping","notypically expected","hotels orestaurant","orestaurant establishments","service charge","bill instead","gratuity taxi","taxi drivers","hong kong","kong may","may also","also charge","round sum","avoid making","making change","larger bills","macau previously","portugal file","operator pulls","pulls two","two guests","guests near","near kyoto","japan tipping","cause confusion","confusion like","like many","east asia","asia japanese","japanese people","people see","see tipping","insulting india","india tipping","whole market","recent year","day indonesia","indonesia tipping","large tourist","tourist areasuch","full service","service restaurants","restaurants bar","bar tipping","normally expat","origin reflects","bar pubs","high end","end bars","bars accepts","counter cash","cash tips","amount massage","located practically","every corner","drivers expect","expect bellboys","high end","end hotels","hotels expect","expect around","around per","per bag","bag south","south korea","korea tipping","korea n","n culture","general service","service industry","regard tipping","inappropriate behavior","behavior high","high end","end hotels","restaurants often","often include","include service","service charge","always included","leave separate","separate gratuity","servers beyond","singapore tipping","insulting people","people may","may mistake","could result","jail time","time bars","restaurants typically","typically add","service charge","services tax","tax singapore","tax although","wait staff","already makes","restaurant bill","bill tips","generally given","given anywhere","anywhere taxi","taxi drivers","drivers given","given tip","excess cash","return exact","exact change","taiwan tipping","high end","end restaurants","restaurants include","mandatory service","service charge","service staff","rather considered","taiwanese law","general revenue","taipei times","false gratuity","july file","tips tipping","much expected","expected almost","almost everywhere","many foreigners","living abroad","abroad visit","visit albania","albania leaving","restaurants even","even porters","porters guides","duty free","free alcohol","often used","porters bellhops","like however","offensive tips","sometimes expected","expected mostly","restaurants buthey","caf bars","tip taxi","taxi drivers","drivers hairdressers","hairdressers tips","lit drinking","drinking money","denmark since","since service","service charges","charges must","must always","always included","law tipping","outstanding service","travel tips","finland tipping","never expected","expected caf","restaurants include","include service","service charge","french law","tax assessment","assessment service","indicates thathe","thathe tip","wait staff","venues accustomed","accustomed tourists","smaller food","food establishments","rural areas","also critical","good service","superior service","higher end","end eating","eating establishments","generous tip","tip would","place however","rare waiter","waiter waitress","waitress accustomed","generous foreign","foreign customers","problem receiving","austriand germany","germany file","file c","px coat","coat check","check staff","usually tipped","photo shows","coat check","berlin germany","germany tipping","waiting staff","minimum wage","employers paying","good basic","basic wage","germany consider","consider tipping","good manners","good service","service fee","fee withouthe","withouthe customer","example germans","germans usually","usually tip","almost never","big supermarkets","buthe tip","usually paid","atimes rather","tipping individually","tipping box","box iset","commonplace sometimes","sometimes withe","withe comment","germany usa","usa today","today rather","tip afterwards","customer says","total including","tip thus","basic price","customer might","might rather","unusually say","twelve pay","small amount","nearest euro","sign reading","common like","like supermarkets","supermarkets clothing","clothing retailers","retailers etc","requests thathe","thathe bill","noto tip","charity donation","donation fighting","fighting children","children poverty","completely voluntary","germany tips","considered income","income buthey","tax free","free according","german income","income tax","tax law","hungarian word","word tip","literally money","often written","amount varies","price type","quality service","service also","also influenced","customer like","commonplace depending","situation tipping","tipping might","unusual optional","expected almost","bills include","include service","service charge","charge similarly","calculate wages","would also","also receive","receive tips","others prohibit","prohibit accepting","given percentage","percentage regardless","quality service","bribe widespread","widespread tipping","tipping based","loosely defined","defined customs","main factor","factor contributing","particular hungarian","hungarian case","much expected","expected almost","almost obligatory","obligatory though","though illegal","illegal tipping","physicians healthcare","healthcare system","almost completely","completely state","state run","obligatory social","social insurance","insurance system","iceland tipping","tipping j","lit serving","serving money","appreciated especially","guided private","private tours","irish people","tip taxi","taxi drivers","cleaning staff","restaurants bars","expected tips","often given","reward high","high quality","quality service","kind gesture","gesture tipping","often done","leaving small","small change","change athe","athe table","bill although","cited thatipping","thatipping taxi","taxi drivers","common practice","practice tips","tips la","special service","high quality","quality service","service however","really uncommon","uncommon almost","restaurants withe","november article","service charge","charge called","called coperto","coperto waiters","tip since","already fairly","fairly paid","foreign customers","caf bars","uncommon paying","change saying","change recently","recently tip","tip jar","cash register","becoming widespread","widespread however","often forbidden","forbidden leaving","also quite","quite common","taxi drivers","credit card","add manually","bill instead","instead one","tip service","service charge","tip taxi","taxi drivers","cleaning staff","restaurants bars","expected tips","often given","reward high","high quality","quality service","kind gesture","gesture tipping","often done","leaving small","small change","change athe","athe table","bill oslo","labor union","restaurant employees","employees hasaid","hasaid many","many times","times thathey","thathey discourage","discourage tipping","tipping except","extraordinary service","time makes","unemployment insurance","netherlands tipping","service fee","fee withouthe","withouthe customer","consent however","believe thatipping","restaurants bars","bars taxis","hotels barestaurant","barestaurant maids","normal noto","noto tip","receive good","excellent service","around regulations","indicated prices","prices must","must include","include service","service charge","called service","service also","also wages","vary withe","withe venue","ron tof","bill tips","cash alongside","nothe norm","norm servers","hairdressers hotel","hotel maids","maids parking","parking valets","valets tour","receiving tips","tips regularly","quality service","small amounts","directly billed","instance counter","butheir counterparts","clothing stores","getting reservations","obtaining better","better seats","seats however","however care","bribe depending","romania bribery","larger issue","legal consequences","receiving tips","coins due","low value","besto stick","paper money","money offering","offering coins","considered rude","rude gesture","may prompt","even angry","angry remarks","coin handling","widespread practice","aimed primarily","primarily athe","athe individual","individual athe","athe counter","rather athe","athe business","business nevertheless","customer towards","clerk etiquette","etiquette demands","parties offers","change buthe","small businesses","businesses may","may sometimes","sometimes force","offering small","small value","value products","products instead","considered rude","ithe reverse","also happen","small change","paper money","smaller paper","paper denomination","latter usually","usually happens","larger store","store chains","russian language","literally means","tea tipping","tipping small","small amounts","waiters cab","cab drivers","hotel bellboys","quite common","communist revolution","especially withe","tipping waseen","offensive withe","withe fall","soviet union","iron curtain","subsequent influx","influx oforeign","oforeign tourists","country tipping","tipping started","steady comeback","comeback since","since thearly","become somewhat","however still","around tipping","tipping russians","widespread consensus","much tip","larger urban","urban areas","areas like","like moscow","st petersburg","petersburg tips","high end","end restaurants","restaurants coffee","coffee shops","shops bars","normally left","credit card","cash payment","credit card","used tipping","budget restaurant","order athe","athe table","table called","appropriate fast","fast food","food chainsuch","allow tipping","tipping either","either tipping","tipping bartenders","market bar","taxi drivers","drivers also","also count","pre negotiate","expect one","noted thathe","soviet era","era still","still consider","consider tipping","offensive practice","areas tipping","rarely expected","may even","even cause","cause confusion","confusion tipping","nearest euro","euro recently","recently areas","areas visited","many tourists","around inside","inside slovenia","slovenia tipping","tipping etiquette","slovenia travel","travel information","information fact","fact sheet","retrieved tipping","generally considered","considered mandatory","quality service","service received","depends mainly","locale higher","upscale restaurants","restaurants bars","small change","change left","bill el","taxi drivers","drivers hairdressers","hairdressers hotel","hotel personnel","personnel may","may expect","upscale setting","economy pedro","blamed excessive","excessive tipping","euro el","el mundo","mundo december","december tipping","reward high","high quality","quality service","kind gesture","gesture tipping","often done","leaving small","small change","mostly done","restaurants less","less often","made athe","athe desk","tipped less","less often","often hairdressers","tipped tipping","much tip","sweden tips","cash tips","much declared","tax authority","authority cards","heavily used","sweden tips","tips paid","restaurants aregularly","aregularly checked","tax authority","restaurant owners","owners keep","keep card","card tips","notice generous","generous card","card tips","turkey tipping","lit gift","persian language","language persian","persian word","word often","often rendered","usually optional","many places","places though","restaurants usually","usually paid","change cab","cab drivers","drivers usually","tipped though","though passengers","passengers may","may round","small change","change may","hotel porter","porter tipping","turkey united","united kingdom","kingdom file","often tip","golf clubs","clubs tips","compulsory sometimes","large cities","service charge","charge may","legal requiremento","requiremento include","obligatory charges","prices displayed","service charge","trader makes","presence clear","meal even","services acthe","acthe customer","service charge","service charge","charge may","added separately","often given","reward good","good service","large cities","cities tips","taxi drivers","drivers hairdressers","expected cash","cash tipping","tipping bartenders","expected instead","considered polite","patron would","might offer","option either","actually pour","bar legal","one drink","athe discretion","two drinks","drinks instead","preferred leaving","leaving cash","cash tips","considered rude","inappropriate north","north americand","caribbean tipping","similar manner","united states","states quebec","quebec provides","provides alternate","alternate minimum","minimum wage","wage schedule","provinces allow","allow alternate","alternate minimum","minimum wage","wage schedule","liquor servers","servers according","wendy leung","common practice","process called","called tipping","tip wendy","wendy leung","mail published","published tuesday","tuesday jun","jun accessed","may another","tipping outhe","outhe house","occasionally explained","monetary error","ontario provincial","provincial parliament","parliament michael","wants ban","keith leslie","canadian press","press posted","posted accessed","banning employers","hospitality staff","protecting employees","employees tips","tips act","act makes","employees tips","tips gratuities","employees canadian","canadian federal","federal tax","tax law","law considers","considers tips","income workers","workers receive","receive tips","legally required","reporthe income","canada revenue","revenue agency","pay income","income tax","tax evasion","cra mentioned","report uncovered","among staff","staff audited","closely check","tax returns","would reasonably","reasonably bexpected","receiving tips","ensure thathe","thathe tips","revenue canada","tax wait","wait staff","tips tipping","caribbean varies","dominican republic","republic restaurants","restaurants add","already included","included file","taxi driver","driver havana","taxi driver","driver waiting","customers workers","small economy","economy restaurants","restaurants usually","however tipping","larger medium","higher end","end restaurants","voluntary offering","good service","service based","total bill","value added","added tax","value added","added tax","already included","service industry","industry pricing","pricing since","since mexican","mexican consumer","consumer law","law requires","customer thus","standard tip","pre tax","tax bill","mexican territory","territory except","tax stimulus","stimulus economic","economic zones","gratuity may","bill withouthe","withouthe customer","consent contrary","law either","either explicitly","explicitly printed","means alleging","alleging local","local custom","restaurants bars","night clubs","clubs however","officials began","increasingly rampant","violating mexican","mexican consumer","consumer law","service charge","orestaurant service","service charge","mexican consumer","mexican authorities","authorities recommend","recommend patrons","patrons require","bill additionally","federal initiative","illegal add","add ons","contrary even","many mexicans","mexicans thathe","thathe mexican","mexican legal","legal definition","pay anything","legal definition","consistent withe","withe traditional","traditional cultural","cultural definition","increasing illicit","illicit practice","prosecution united","united states","states file","practiced social","social custom","united states","states tipping","voluntary athe","athe discretion","restaurants offering","offering traditional","traditional table","table service","inew york","york city","adequate service","provided buffet","buffet style","style restaurants","server brings","customary higher","higher tips","tips may","excellent service","lower tips","tip may","restaurant manager","manager may","problem tips","also generally","generally given","services provided","golf courses","courses casino","casino hotels","hotels concierge","concierge foodelivery","etiquette applies","bar service","provide appropriate","appropriate tips","workers athend","eventhe amount","amount may","fair labor","labor standards","standards act","act defines","regularly receive","receive tips","per month","permits employers","include tips","employees hourly","hourly wage","minimum wage","wage although","territories provide","generous provisions","tipped employees","example laws","alaska california","california minnesota","minnesota montana","montana nevada","nevada oregon","oregon washington","employees must","full minimum","minimum wage","federal minimum","minimum wage","regularly receive","receive tips","cooks chefs","file king","king david","david hotel","px waiters","waiters athe","athe king","king david","david hotel","limited information","information available","iowa state","state university","suburban restaurant","restaurant surveyed","mean tip","mean bill","mean tip","tip rate","median tip","tip rate","research study","young university","sample restaurants","national restaurant","united states","tipping model","model returned","tipping due","mandatory payments","payments typically","typically added","service charge","athe discretion","commonly add","add ito","ito checks","include service","service charge","manhattanew york","service charge","standard predetermined","predetermined percent","percent often","often isometimes","isometimes labeled","service charge","thearly th","th century","century americans","americans viewed","viewed tipping","withe values","democratic society","society also","also proprietors","proprietors regarded","regarded tips","otherwise forbidden","extra large","large portion","portion ofood","enormous impact","losthe revenue","selling alcoholic","alcoholic beverages","resulting financial","financial pressure","pressure caused","caused proprietors","welcome tips","employee wages","wages contrary","popular belief","belief tipping","servers lowages","waiter server","fairly well","well paid","tipping became","trend toward","toward tipping","obligatory behavior","behavior six","six states","states mainly","south passed","passed laws","made tipping","tipping illegal","illegal enforcement","problematic thearliest","argued thathe","thathe original","original workers","paid anything","newly freed","freed slaves","thathis whole","whole concept","tips carried","slavery file","px hair","service workers","often tipped","united states","states tips","considered income","income thentire","thentire tip","tip amount","earned wages","wages withexception","tip income","unlike wages","payroll tax","tax social","social security","employer themployee","themployee pays","payroll tax","tip income","would pay","pay additional","additional payroll","payroll taxes","higher wages","tips research","research finds","us according","internal revenue","revenue service","investigations employers","employers aresponsible","federal unemployment","unemployment insurance","encourages employers","tips us","us federal","federal employees","us government","government recognizes","recognizes tips","federal employee","employee travel","however us","us law","law prohibits","prohibits federal","federal employees","receiving tips","ethical conduct","conduct asking","take anything","official act","allowed south","south america","america service","service charges","included withe","withe bill","isometimes given","considered polite","cultural tips","ship internationally","internationally service","service charges","included withe","withe bill","uncommon file","young man","golf clubs","federal government","minimum wage","reviewed yearly","per hour","casual employees","fairly standard","standard across","venues tipping","restaurants especially","large party","taxi drivers","expected however","however many","many people","people tend","indicating thathey","lethe worker","worker keep","hotel porter","porter casino","places generally","gaming staff","considered bribery","gaming control","control act","act states","every special","special employee","licence thathe","thathe special","special employee","employee must","gratuity consideration","gaming area","concern thatipping","thatipping might","might become","tipping point","point literally","nov new","new zealand","zealand tipping","traditional practice","practice inew","inew zealand","become less","less uncommon","recent years","years especially","finer establishments","establishments tipping","tipping inew","inew zealand","tourists visiting","united states","may follow","tipping customs","occur among","among new","new zealanders","voluntary act","websites published","new zealand","zealand government","government advise","advise tourists","tourists thatipping","thatipping inew","inew zealand","obligatory even","restaurants bars","bars however","however tipping","good service","athe discretion","sunday star","star times","times reader","reader poll","poll indicated","good service","norm inew","inew zealand","percentage based","based gratuities","gratuities file","file william","william powell","px crossing","road without","normally tipped","thiservice london","modern version","time vehicles","traffic lights","us canadand","western europe","pay workers","thatheir wages","inherent social","involve tipping","similar ones","price rather","quality service","service customer","customer pays","larger tip","server bringing","blog entitled","banned stephen","steven levitt","levitt discussed","authors pointed","pointed outhat","outhat research","waitresses get","get better","better tips","less attractive","attractive waitresses","waitresses men","important lynn","research also","also found","get better","better tips","women get","get better","better tips","heavier women","women large","large breasted","breasted women","women get","get better","better tips","smaller breasted","breasted women","woman server","server interviewed","blog stated","manager said","fithe look","know lynn","lynn states","states tipping","supreme court","business practices","protected class","class action","action lawsuit","ethnic minority","minority waiters","waitresses claiming","claiming discrimination","thatipping might","declared illegal","illegal tipping","banned full","expected tipping","tipping may","explicitly charged","australiand japan","japan tipping","new yorker","yorker check","check please","mandatory tipping","tipping service","service charge","charge isometimes","isometimes added","similar establishments","establishments attempts","hide service","service charge","united states","states criminal","criminal charges","two separate","separate cases","non payment","mandatory gratuities","gratuities courts","courts ruled","mean mandatory","cruise lines","lines charge","patrons day","mandatory tipping","alcoholic beverages","beverages bribery","corruption bribe","political corruption","sometimes disguised","developing countries","countries police","police officers","officers border","border guards","civil servants","servants openly","fees using","economic theory","theory academic","academic paper","steven holland","holland calls","calls tipping","effective mechanism","welfare improvement","risk faced","service customer","decide whether","j holland","holland tipping","risk sharing","socio economics","economics volume","volume issue","issue august","august pages","pages tipping","tipping isometimes","isometimes given","principal agent","agent problem","economics onexample","restaurant owner","theconomics etiquette","tipping available","available online","cases c","increase worker","worker effort","firm success","compensation agreement","john wiley","wiley sons","sons feb","real world","withe quality","quality service","effects dominate","dominate see","see also","also mandatory","mandatory tipping","tipping externalinks","spain ask","ask yahoo","york times","times article","san diego","diego restaurant","stopped accepting","accepting tips","tips category","category hospitality","hospitality industry","industry category","category service","service industries","industries category","category household","household income","income category","category customer","customer service"],"new_description":"image usd thumb px leaving money common way giving tip serving staff gratuity also_called tip sum money customarily given client customer_service worker addition basic price tipping commonly given certain service sector workers service performed country location may customary tip waiting_staff server bars restaurants taxi driver hair son tips amount matter social custom etiquette custom varies countries settings locations tipping discouraged considered insulting locations tipping expected customers customary amount tip specific range monetary amounts certain percentage bill based perceived quality_service given us_government workers widely police officer even offering illegal may regarded bribery fixed percentage mandatory_tipping service_charge isometimes added bills restaurants similar establishments tipping may bexpected fee explicitly charged service theoretical economic point view gratuities may solve principal principal agent problem situation agent server working principal restaurant owner manager many managers believe provide incentive greater worker effort however studies real_world practice show thatipping often discriminatory arbitrary workers receive different levels gratuity based factorsuch age sex race hair color even breast size size gratuity found related quality history_file thumb right px first usage term tip sense giving gratuity dates_back pictured waiters thearly according oxford_english_dictionary word tip originated slang_term etymology unclear according dictionary small present money began around gratuity first thisense term sense give gratuity first_appeared th_century derived earlier sense tip meaning give hand pass originated rogues th_century thisense may derived th_century tip meaning strike hit may derived low german tap buthis uncertain tip v oxford_english_dictionary ed oxford_university_press word tip first_used verb george play used term_used criminal circles word meanto imply something like joke sure illicit money exchanges john_case atlantic october accessed augusthe practice tipping began england food issue tip paul new_york times published october accessed june th_century expected overnight guests private homes would provide sums money known host afterwards customers began tipping london coffee_house coffeehouses commercial establishments dates_back either french century directly free gift probably earlier latin freely given meaning money given favor services first languages term translates drink money similar example french german danish polish comes custom inviting drink glass honour guest paying order guests show among term latin recorded tronc arrangement andistribution employees tips gratuities service_charges hotel catering trade person distributes tronc known tronc exists uk responsibility pay earn tax distribution may lie withe themployer word tronc origins french collecting box june themployment appeals ruled uk test case revenue customs v berkeley square ltd income counted assessing whether wage salary meets national minimum_wage region inigeria tipping common upscale hotels_restaurants charge usually included bill though themployee gethis part wages recentimes however service provider usually customer tips manner reported cases security guards asking bank customers tips china traditionally tipping however hotels routinely serve foreign tourists allow tipping example would tour_guides hong_kong tipping notypically expected hotels orestaurant establishments service_charge added bill instead expecting gratuity taxi_drivers hong_kong may_also charge difference fare round sum fee avoid making change larger bills tipping accepted macau previously colony portugal file_jpg thumb px operator pulls two guests near kyoto japan tipping part culture expected cause confusion like many_countries east_asia japanese people see tipping insulting india tipping popular whole market well recent year making day day indonesia tipping common large tourist areasuch bali expected full_service restaurants bar tipping style bar bali bars owned expatriates normally expat country origin reflects style bar pubs restaurants high_end bars accepts counter cash tips amount massage located practically every corner bali drivers expect bellboys high_end hotels expect around per bag south_korea tipping customary korea n culture tipping expected general service_industry regard tipping inappropriate behavior high_end hotels_restaurants often include service_charge always included bill customers expected leave separate gratuity servers beyond included bill singapore tipping insulting people may mistake bribe offence could result jail time bars restaurants typically add service_charge goods services tax singapore tax although given wait_staff already makes additional restaurant bill tips generally given anywhere taxi_drivers given tip excess cash return exact change taiwan tipping customary mid high_end_restaurants include mandatory service_charge given service staff rather considered taiwanese law general revenue reported taipei times false gratuity july file thumb px often performances requests tips tipping albania much expected almost everywhere recentimes become common many foreigners living abroad visit albania leaving tip around bill customary restaurants even porters guides duty free alcohol often_used type tip porters bellhops like however people muslims find offensive tips man tip sometimes expected mostly restaurants buthey mandatory around croatian clubs caf bars hand common round bill common tip taxi_drivers hairdressers tips lit drinking money required denmark since service_charges must always included bill law tipping outstanding service matter choice expected travel tips denmark finland tipping customary never expected caf restaurants include service_charge bill required french law tax assessment service indicates thathe tip added bill sometimes wait_staff receive venues accustomed tourists treated smaller food establishments rural_areas amount tip also critical tip good service superior service higher end eating establishments generous tip would place however rare waiter waitress accustomed generous foreign customers problem receiving tip tor austriand germany file c jpg thumb px coat check staff usually tipped service photo shows coat check congress berlin_germany tipping seen obligatory case waiting_staff context debate minimum_wage people tipping say employers paying good basic wage people germany consider tipping good manners well way express good service illegal rare charge service fee withouthe customer consent tip depending type service customary example germans usually tip waiters almost never big supermarkets rule thumb personal service common card include tip buthe tip usually paid cash card handed atimes rather tipping individually tipping box iset bill germany commonplace sometimes withe comment keep change germany usa_today rather asking change leaving tip afterwards customer says pay total including tip thus basic price customer might rather unusually say twelve pay note get change paying small amount common round nearest euro sometimes sign reading round found places tipping common like supermarkets clothing retailers etc requests thathe bill rounded noto tip staff charity donation fighting children poverty completely voluntary germany tips considered income buthey tax free according german income tax law hungarian word tip literally money wine loose colloquially often written english tipping widespread hungary degree expectation amount varies price type quality_service also influenced satisfaction customer like germany price provide tip commonplace depending situation tipping might unusual optional expected almost bills include service_charge similarly calculate wages basis would_also receive tips others prohibit accepting cases tip given customer others customary give given percentage regardless quality_service situations hard tell difference bribe widespread tipping based loosely defined customs almost transition bribery considered main factor contributing corruption particular hungarian case gratuity money much expected almost obligatory though illegal tipping physicians healthcare hungary healthcare system almost completely state run obligatory social insurance system iceland tipping j lit serving money customary exists appreciated especially guided private tours uncommon irish people tip taxi_drivers cleaning staff hotels_restaurants bars common expected tips often given reward high_quality_service kind gesture tipping often done leaving small change athe_table bill although cited thatipping taxi_drivers typical common_practice tips la customary italy given special service thanks high_quality_service however really uncommon almost restaurants withe rome november article service_charge called coperto waiters expect tip since already fairly paid refuse especially foreign customers caf bars pubs uncommon paying bill leave change saying waiter keep change recently tip jar near cash register becoming widespread however public often forbidden leaving change also quite common taxi_drivers using credit_card possible add manually bill instead one leave coins tip service_charge included bill uncommon tip taxi_drivers cleaning staff hotels_restaurants bars common expected tips often given reward high_quality_service kind gesture tipping often done leaving small change athe_table bill oslo labor union hotel restaurant employees hasaid many_times thathey discourage tipping except extraordinary service decrease time makes harder negotiate andoes unemployment insurance benefits netherlands tipping netherlands obligatory illegal rare charge service fee withouthe customer consent however made believe thatipping required restaurants bars taxis hotels barestaurant maids bellboys service normal poor normal noto tip guests receive good excellent service tip range average exceptionally service around regulations adopted indicated prices must include service_charge result prices raised abouthis called service also wages adjusted employees dependent tips amount tip method vary withe venue vary ron tof bill tips appear bills paying card tip left cash alongside bill tipping nothe norm servers hairdressers hotel maids parking valets tour used receiving tips regularly likely consider expression appreciation quality_service lack offering tip bill customary small amounts services directly billed types services depends circumstances usually refused considered sign appreciation instance counter supermarkets butheir counterparts clothing stores tipping used favor getting reservations obtaining better seats however care taken noto seen bribe depending circumstances tipping overlooked romania bribery larger issue may legal consequences ongoing giving receiving tips coins due low value besto stick paper money offering coins considered rude gesture may prompt even angry remarks hand coin handling resulted widespread practice payments tip asuch aimed primarily athe individual athe counter rather athe business nevertheless done seen form appreciation customer towards clerk etiquette demands one parties offers change buthe choose tell keep part small businesses may sometimes force issue claiming change offering small value products instead considered rude customer accept call ithe reverse also happen clerk small change make customer paper money return smaller paper denomination favor customer exchange getting faster latter usually happens larger store chains russian language gratuity called literally means tea tipping small amounts money russia people waiters cab drivers hotel bellboys quite common communist revolution soviet especially withe reforms tipping discouraged considered offensive aimed lowering status working thearly tipping waseen rude offensive withe fall soviet_union iron curtain subsequent influx oforeign tourists businessmen country tipping started slow steady comeback since_thearly tipping become somewhat norm however still lot confusion around tipping russians widespread consensus much tip services larger urban_areas like moscow st_petersburg tips arexpected high_end_restaurants coffee_shops bars hotels normally left cash table bill paid credit_card part cash payment credit_card used tipping buffet budget restaurant servers take order athe_table called expected appropriate fast_food chainsuch mcdonalds son allow tipping either tipping bartenders pub common expected market bar taxi_drivers also count tip non pre negotiate fare expect one also noted_thathe grew lived lives soviet era still consider tipping offensive practice areas tipping rarely expected may even cause confusion tipping common locals round nearest euro recently areas visited many tourists begun around inside slovenia tipping etiquette slovenia travel_information fact sheet retrieved tipping generally considered mandatory spain quality_service received restaurants amount tip depends mainly kind locale higher expected upscale restaurants bars small leave tip small change left plate paying bill el outside restaurant service_taxi_drivers hairdressers hotel personnel may expect tip upscale setting minister economy pedro blamed excessive tipping increase inflation la n que que euro el mundo december tipping commonly expected practiced reward high_quality_service kind gesture tipping often done leaving small change table bill mostly done restaurants less often payment made athe desk taxis expensive fixed might tipped less often hairdressers tipped tipping sweden much tip leave sweden tips sweden cash tips much declared tax authority cards heavily used sweden tips paid cards restaurants aregularly checked tax authority restaurant owners keep card tips waitresses notice generous card tips turkey tipping bah lit gift persian language persian word often rendered english usually optional customary many places though necessary tip appreciated restaurants usually paid leaving change cab drivers usually expecto tipped though passengers may round fare tip small change may given hotel porter tipping turkey united_kingdom file thumb px often tip carry golf clubs tips common restaurants compulsory sometimes often london large_cities areas service_charge may often since legal requiremento include taxes obligatory charges prices displayed service_charge compulsory displayed trader makes presence clear meal even level service unacceptable particular requirements supply goods services acthe customer refuse pay service_charge service_charge may_included bill added separately reported common servicesuch taxis hairdressers expected often given reward good service large_cities tips given taxi_drivers hairdressers expected cash tipping bartenders pub recommended expected instead practice drink considered polite traditional instance patron would first however might offer buy drink would option either actually pour drink behind bar legal common uk keep price one drink choosing cash practice athe discretion patron could one two drinks instead three preferred leaving cash tips counter pub considered rude inappropriate north_americand caribbean tipping practiced canada similar manner united_states quebec provides alternate minimum_wage schedule tipped provinces allow alternate minimum_wage schedule liquor servers according wendy leung globe mail common_practice restaurants tips employees process called tipping restaurants barred taking share server tip wendy leung globe mail published tuesday jun accessed_may another tipping outhe house restaurant occasionally explained fee covering monetary error member ontario provincial parliament michael introduced bill ontario ontario wants ban tips keith leslie canadian press_posted accessed june december reported ontario banning employers taking cut tips meant servers hospitality staff protecting employees tips act makes illegal employers employees tips gratuities among employees canadian federal tax law considers tips income workers receive tips legally required reporthe income canada revenue agency pay income tax july cra concerned tax evasion servers cra mentioned report uncovered among staff audited million cra quoted closely check tax returns individuals would reasonably bexpected receiving tips ensure_thathe tips revenue canada tax wait_staff tips tipping caribbean varies island island dominican republic restaurants add gratuity customary tip extra st expected tip gratuity already included file taxi driver havana thumb px taxi driver waiting customers workers small economy restaurants usually expect however tipping mexico common larger medium higher end_restaurants customary thesestablishments tip less bill voluntary offering good service based total bill value added tax english value added tax already included menu service_industry pricing since mexican consumer law requires costs customer thus standard tip mexico pre tax bill tax mexican territory except tax stimulus economic zones gratuity may added bill withouthe customer consent contrary law either explicitly printed bill means alleging local custom restaurants bars night_clubs however officials began campaign increasingly rampant practice due violating mexican consumer law also frequently retained owners management service_charge orestaurant service_charge added article mexican consumer mexican authorities recommend patrons require bill additionally federal initiative eliminate illegal add ons government contrary even belief many mexicans thathe mexican legal definition tips require pay client pay anything legal definition tip consistent withe traditional cultural definition going far encourage increasing illicit practice office federal consumer prosecution united_states file thumb px server practiced social custom united_states tipping definition voluntary athe discretion customer restaurants_offering traditional table_service gratuity amount customer check inew_york_city customary adequate service provided buffet style_restaurants server brings beverages customary higher tips may given excellent service lower tips service case bad service tip may given restaurant manager may notified problem tips also generally given services provided golf courses casino hotels concierge foodelivery etiquette applies bar service weddings event one guest well host provide appropriate tips workers athend eventhe amount may negotiated required service voluntary fair labor standards act defines individuals customarily regularly receive tips per month permits employers include tips difference employees hourly wage minimum_wage although states territories provide generous provisions tipped employees example laws alaska california minnesota montana nevada oregon washington employees must paid full minimum_wage equal higher federal minimum_wage instances tips considered cannot allocated employers employees customarily regularly receive tips non include cooks chefs us file king david hotel thumb px waiters athe king david hotel limited information available levels tipping study iowa state_university suburban restaurant surveyed thearly mean tip mean bill asuch mean tip rate median tip rate research study young university sample restaurants average ranging according national restaurant handful restaurants united_states adopted tipping model restaurants adopted model returned tipping due loss employees charges mandatory payments typically added caterers service_charge noto confused tip gratuity optional athe discretion commonly add ito checks large bars decided include service_charge well example manhattanew york service_charge required law placesuch state standard predetermined percent often isometimes labeled service_charge thearly_th century americans viewed tipping withe values democratic society also proprietors regarded tips equivalento employee something otherwise forbidden tipping waiter get extra large portion ofood introduction prohibition enormous impact hotels_restaurants losthe revenue selling alcoholic_beverages resulting financial pressure caused proprietors welcome tips way employee wages contrary popular belief tipping arise servers lowages occupation waiter server fairly well paid thera tipping became spite trend toward tipping obligatory behavior six states mainly south passed laws made tipping illegal enforcement laws problematic thearliest laws passed washington last laws repealed mississippi argued thathe original workers paid anything employers newly freed slaves thathis whole concept paying anything letting live tips carried slavery file_jpg thumb px hair among service workers often tipped service united_states tips considered income thentire tip amount treated earned wages withexception months tip income unlike wages payroll tax social security tax split employee employer themployee pays payroll tax tip income tips worker compensation would pay additional payroll taxes worker compensation higher wages tips research finds evasion due declaration concern us according internal revenue service tips waiters reported november tipping led investigations employers aresponsible federal unemployment insurance tips customers employees encourages employers tips us federal employees us_government recognizes tips federal employee travel however us law prohibits federal employees receiving tips standards ethical conduct asking accepting take anything value influences performance official act allowed south_america service_charges included withe bill tip around isometimes given considered polite express cultural tips ship internationally service_charges included withe bill tipping uncommon file_jpg thumb px young man white golf clubs older tipping expected australia federal_government rights workers providing minimum_wage australia reviewed yearly waset per_hour casual employees fairly standard across types venues tipping caf restaurants especially large party tipping taxi_drivers home required expected however_many_people tend round amount indicating thathey happy lethe worker keep change tradition tipping providing hotel porter casino australiand places generally gaming staff considered bribery example state tasmania gaming control act states section condition every special employee licence thathe special employee must accept gratuity consideration benefit patron gaming area concern thatipping might become common australia tipping point literally nov new_zealand tipping traditional practice inew_zealand become less uncommon recent_years especially finer establishments tipping inew_zealand likely result tourists visiting tipping united_states america may follow tipping customs tipping occur among new_zealanders usually reward level service excess customer expectations reward voluntary act service number websites published new_zealand government advise tourists thatipping inew_zealand obligatory even restaurants bars however tipping good service kindness athe discretion visitor sunday star times reader poll indicated good service become norm inew_zealand percentage based gratuities file william powell crossing jpg thumb px crossing cleared way people cross road without clothes normally tipped thiservice london modern version thiservice kids clean time vehicles stopped traffic lights countries tipping norm us canadand countries western_europe pay workers thatheir wages supplemented criticized inherent social transactions involve tipping tipping services similar ones tips price rather amount quality_service customer pays larger tip server bringing hamburger example blog entitled tipping banned stephen steven levitt discussed issue gratuities authors pointed outhat research found waitresses get better tips less attractive waitresses men appearance important lynn research also_found get better tips women get better tips heavier women large breasted women get better tips smaller breasted women woman server interviewed blog stated lost manager said fithe look company restaurant know lot girls skin darker know lynn states tipping discrimination supreme_court ruled business practices intended discriminate theffect protected class illegal thathere class action lawsuit part ethnic minority waiters waitresses claiming discrimination terms employment thatipping might declared illegal tipping banned full poor categories people shown poor cases gratuity expected tipping may bexpected fee explicitly charged service countriesuch australiand japan tipping provided service found good america new_yorker check please mandatory_tipping service_charge isometimes added bills restaurants similar establishments attempts hide service_charge line receipt reported united_states criminal charges dropped two separate cases non payment mandatory gratuities courts ruled automatic mean mandatory cruise_lines charge patrons day mandatory_tipping gratuities alcoholic_beverages bribery corruption bribe political corruption sometimes disguised tipping developing_countries police officers border guards civil servants openly gifts fees using variety local economic theory academic paper steven holland calls tipping effective mechanism sharing welfare improvement reduces risk faced service customer customer decide whether noto j holland tipping risk sharing journal socio economics volume_issue august pages tipping isometimes given example principal principal agent problem economics onexample restaurant owner act agents theconomics etiquette tipping available_online accessed june cases c agreements increase worker effort compensation tied firm success onexample compensation agreement waiters waitresses paid j economics john wiley sons feb real_world size tip withe quality_service effects dominate see_also mandatory_tipping externalinks trouble tipping spain ask yahoo practice tipping york_times article san_diego restaurant stopped accepting tips category_hospitality_industry category service industries category household income category customer_service"},{"title":"Grease trucks","description":"image greasetrucksjpg thumb px grease trucks atheir long time college avenue location ending on august grease trucks are a group ofood trucks located on the college avenue campus of rutgers university inew brunswick new jersey they are known for serving among other things fat sandwiches a submarine sandwich sub roll containing a combination of ingredientsuch as burgers cheese chicken fingers french fries falafel and mozzarella sticks in august maximagazine maximagazine s top sandwich in the nation was awarded to the fat darrell a sandwich invented by a student namedarrell butler and commonly served by these trucks grease trucks have become an integral part of campus culture serving as a meeting and hangout spot grease trucks were named the number one post game activity in the country by sports illustrated on campus in spite of being located on the opposite side of the raritan river from rutgerstadium grease trucks weremoved from their long time location in august with plans to be relocated throughouthe new brunswick and piscataway campuses ru hungry has escaped the trucks and now has a storefront location at hamilton st on rutgers campustarting in thearly s food trucks licensed by the city of new brunswick parked along college avenue most clustered near voorhees mall where there is a high concentration of classroom buildings on the campus a fewere as far north as brower commons about a quarter mile away thus competing with eateries in the student center andining hall students and visitors could obtain a quick hot inexpensive meal during events and between classes the trucks became known as grease trucks due to the popularity of the fried foods they served a nearby somerset street greasy spoon restaurant greasy tony s closed by eminent domain thearly s to build university center at easton ave was part of the local popularity ofood related grease based names of the time since fresh food was prepared on the trucks they required power forefrigeration and thereforeither idled oran gasoline generators in thearly s in an efforto reduce the noise pollution and visual blight along college avenue as the trucks obstructed the view of voorhees mall the trucks were prohibited from parking along the thoroughfare and rutgers provided a corner of a faculty parking lot across the streethe vendors were put under contract withe university which provided the trucks with space and electricity some trucks were open during the day and others in thevening with a couple of hours of overlap aroundinner time the trucks would rotate positions within the lot monthly so that none vendor would receive a competitive advantage based on location athe time of the move the university planned for a courtyard setting in the lot with benches and tables to create a friendly aesthetic environment buthese plans did not come to fruition for nearly twentyears grease trucks coincidentally located nexto union streethe home of the majority of rutgers fraternity and sorority houses were originally open hours a day athis location and shortly after the local bars closed would become a site for many hungry customers and a sort of after party the parking lot became strewn with garbage and there were complaints ofrequent fighting noise and public urination a closing time of am was mandated in to coincide withe bar closings and two years later was changed to am when the bar closing time was altered by the city in thearly several trucks were bought out and consolidated to a single fixed food trailer called the scarlet shack athe center of the remaining trucks aseen in the photograph above phone and internet orders acceptance of credit cards and the rutgers university food card ru express are features whichave been added over the years as well as an atm in augusthe trucks will be removed from parking lot where they have been for twentyears to make way for a new building the university plans to relocate the trucks to various locations on the college avenue busch livingston andouglass campuses fat sandwiches and other cuisine image greaselgpng lefthumb px a parody of the pre official rutgers logo typical grill fare is available at grease trucks but most populare the fat sandwiches composed of permutations of various foodsuch as burgers french fries in the sandwicheesesteak mozzarella sticks chicken fingers pork rolls marinara sauce falafel gyro meat bacon fried eggs ketchup mayonnaise onions etc they supposedly originated in the s when a local restaurant served a sandwich called the fat cat consisting of two cheeseburgers french fries lettuce tomato mayonnaise and ketchup all combined on a bun in the s the fat cat became a popular item at grease trucks the three other fat sandwichesolduring thearly history of grease trucks were the fat moon chicken fingers bacon egg french fries lettuce tomato mayonnaise and ketchup fat koko pizza steak french fries mozzarella sticks and fat sam cheese steak grilled chicken french fries lettuce tomato mayonnaise and ketchup these inexpensive sandwiches originally only more than a regular hamburger withe sides included within steadily rose in popularity buthe fat cat would remain the top seller until when a student namedarrell w butler created the fat darrell consisting of chicken fingers mozzarella sticks french fries and marinara sauce butler told usa today like the typical college student i was pretty much broke i had been craving chicken fingers mozzarella sticks and french fries all week long but i knew that i did not havenough money to buy all three i talked the guy behind the counter into putting them all onto a piece of bread for me i guess it sounded like a good idea because the next or so people all asked for the same thing since the creation of the fat darrell dozens of additional fat sandwich combinations have been composed mostly by customer suggestions many combinations of available ingredients have been created including multiple vegetarian options fat sandwiches have become available in many short order eateries and pizza places in and around new brunswick with popularity spreading beyond the region and with nationwide media recognition fat sandwich vendors are popping up on various college campuses around the country grease trucks were the featured location in episode of man v food season host adam richman actor adam richman attempted the fat sandwichallenge athe ru hungry truck in which eating five fat sandwiches in minutes allows you to name a new sandwich on the menu but he was able to finish only in the timeframe grease trucks are also notable for offering many types of mostly home made mediterranean food such as gyros falafel and hummus on pita bread alsoccasionally or formerly available are baba ghanouj stuffed grape leaves mujaddarand spinach pies these choices came about because many of the vendors had come fromiddleastern countriesuch as lebanon and egypthese homemade healthier options were welcome for those not desiring the large number of calories which accompany fried foods other commonly available items includeggsoup gum chips cookies muffins and even homemade rice krispies treats asome trucks are open in the morning breakfast grill items and bagels are alsoften available sandwiches with colorful namesuch as the fat balls fat bitch and fat philipino were deemed offensive by rutgers and in the vendors agreed to change the names on the posted menus eg fat bulls fat beach fat philly etc to maintain their contracts to do business on rutgers property some students expressed outrage athe university s censorship but others defended the logic behind the request for name changes dietitian pundit marcus garand has pointed outhe fat sandwich s general unhealthiness a fat darrell for instance has about calories grams of carbohydrates and grams ofat garand stated thisandwich is like a nutritionist s worst nightmare i could not figure out a way to make it any unhealthier this probably the unhealthiest sandwich you could ever devise auman greg and rutgers getstuffed again st pete times november see also mobile catering street food externalinks official fat darrell website fatdarrellcom fox news coverage category sandwiches category american sandwiches category rutgers university category restaurants inew jersey category new brunswick new jersey category food trucks","main_words":["image","thumb","px","grease_trucks","atheir","long_time","college","avenue","location","ending","august","grease_trucks","group","ofood_trucks","located","college","avenue","campus","rutgers","university","inew","brunswick","new_jersey","known","serving","among","things","fat","sandwiches","submarine","sandwich","sub","roll","containing","combination","burgers","cheese","chicken","fingers","french_fries","falafel","mozzarella","sticks","august","top","sandwich","nation","awarded","fat","darrell","sandwich","invented","student","butler","commonly","served","trucks","grease_trucks","become","integral_part","campus","culture","serving","meeting","hangout","spot","grease_trucks","named","number","one","post","game","activity","country","sports","illustrated","campus","spite","located","opposite","side","river","grease_trucks","weremoved","long_time","location","august","plans","relocated","throughouthe","new_brunswick","campuses","hungry","escaped","trucks","storefront","location","hamilton","st","rutgers","thearly","food_trucks","licensed","city_new","brunswick","parked","along","college","avenue","near","mall","high","concentration","classroom","buildings","campus","far","north","commons","quarter","mile","away","thus","competing","eateries","student","center","andining","hall","students","visitors","could","obtain","quick","hot","inexpensive","meal","events","classes","trucks","became_known","grease_trucks","due","popularity","fried","foods","served","nearby","somerset","street","greasy_spoon","restaurant","greasy","tony","closed","eminent","domain","thearly","build","university","center","ave","part","local","popularity","ofood","related","grease","based","names","time","since","fresh","food","prepared","trucks","required","power","gasoline","generators","thearly","efforto","reduce","noise","pollution","visual","along","college","avenue","trucks","view","mall","trucks","prohibited","parking","along","rutgers","provided","corner","faculty","parking_lot","across","streethe","vendors","put","contract","withe","university","provided","trucks","space","electricity","trucks","open","day","others","thevening","couple","hours","overlap","time","trucks","would","positions","within","lot","monthly","none","vendor","would","receive","competitive","advantage","based","location","athe_time","move","university","planned","courtyard","setting","lot","benches","tables","create","friendly","aesthetic","environment","buthese","plans","come","fruition","nearly","twentyears","grease_trucks","located","nexto","union","streethe","home","majority","rutgers","houses","originally","open_hours","day","athis","location","shortly","local","bars","closed","would_become","site","many","hungry","customers","sort","party","parking_lot","became","garbage","complaints","fighting","noise","public","closing_time","mandated","coincide","withe","bar","two_years_later","changed","bar","closing_time","altered","city","thearly","several","trucks","bought","consolidated","single","fixed","food","trailer","called","shack","athe","center","remaining_trucks","aseen","photograph","phone","internet","orders","acceptance","credit_cards","rutgers","university","food","card","express","features","whichave","added","years","well","augusthe","trucks","removed","parking_lot","twentyears","make","way","new","building","university","plans","trucks","various_locations","college","avenue","campuses","fat","sandwiches","cuisine","image","lefthumb","px","parody","pre","official","rutgers","logo","typical","grill","fare","available","grease_trucks","fat","sandwiches","composed","various","foodsuch","burgers","french_fries","mozzarella","sticks","chicken","fingers","pork","rolls","sauce","falafel","gyro","meat","bacon","fried","eggs","ketchup","mayonnaise","onions","etc","supposedly","originated","local","restaurant","served","sandwich","called","fat","cat","consisting","two","french_fries","lettuce","tomato","mayonnaise","ketchup","combined","bun","fat","cat","became_popular","item","grease_trucks","three","fat","thearly","history","grease_trucks","fat","moon","chicken","fingers","bacon","egg","french_fries","lettuce","tomato","mayonnaise","ketchup","fat","pizza","steak","french_fries","mozzarella","sticks","fat","sam","cheese","steak","grilled","chicken","french_fries","lettuce","tomato","mayonnaise","ketchup","inexpensive","sandwiches","originally","regular","hamburger","withe","sides","included","within","steadily","rose","popularity","buthe","fat","cat","would","remain","top","seller","student","w","butler","created","fat","darrell","consisting","chicken","fingers","mozzarella","sticks","french_fries","sauce","butler","told","usa_today","like","typical","college","student","pretty","much","broke","craving","chicken","fingers","mozzarella","sticks","french_fries","week_long","knew","money","buy","three","talked","guy","behind","counter","putting","onto","piece","bread","sounded","like","good","idea","next","people","asked","thing","since","creation","fat","darrell","dozens","additional","fat","sandwich","combinations","composed","mostly","customer","suggestions","many","combinations","available","ingredients","created","including","multiple","vegetarian","options","fat","sandwiches","become","available","many","short","order","eateries","pizza","places","around","new_brunswick","popularity","spreading","beyond","region","nationwide","media","recognition","fat","sandwich","vendors","various","college","campuses","around","country","grease_trucks","featured","location","episode","man","v","food","season","host","adam","richman","actor","adam","richman","attempted","fat","athe","hungry","truck","eating","five","fat","sandwiches","minutes","allows","name","new","sandwich","menu","able","finish","grease_trucks","also","notable","offering","many","types","mostly","home","made","mediterranean","food","falafel","pita","bread","formerly","available","stuffed","leaves","spinach","pies","choices","came","many","vendors","come","countriesuch","lebanon","homemade","healthier","options","welcome","large_number","calories","accompany","fried","foods","commonly","available","items","chips","cookies","even","homemade","rice","treats","asome","trucks","open","morning","breakfast","grill","items","alsoften","available","sandwiches","colorful","namesuch","fat","balls","fat","fat","deemed","offensive","rutgers","vendors","agreed","change","names","posted","menus","fat","fat","beach","fat","philly","etc","maintain","contracts","business","rutgers","property","students","expressed","athe_university","censorship","others","defended","logic","behind","request","name","changes","marcus","pointed","outhe","fat","sandwich","general","fat","darrell","instance","calories","stated","like","worst","could","figure","way","make","probably","sandwich","could","ever","greg","rutgers","st","pete","times","november","see_also","mobile_catering","street_food","externalinks_official","fat","darrell","website","fox","news","coverage","category","sandwiches","category_american","sandwiches","category","rutgers","university","category_restaurants","inew","jersey","brunswick","new_jersey","category_food","trucks"],"clean_bigrams":[["thumb","px"],["px","grease"],["grease","trucks"],["trucks","atheir"],["atheir","long"],["long","time"],["time","college"],["college","avenue"],["avenue","location"],["location","ending"],["august","grease"],["grease","trucks"],["group","ofood"],["ofood","trucks"],["trucks","located"],["college","avenue"],["avenue","campus"],["rutgers","university"],["university","inew"],["inew","brunswick"],["brunswick","new"],["new","jersey"],["serving","among"],["things","fat"],["fat","sandwiches"],["submarine","sandwich"],["sandwich","sub"],["sub","roll"],["roll","containing"],["burgers","cheese"],["cheese","chicken"],["chicken","fingers"],["fingers","french"],["french","fries"],["fries","falafel"],["mozzarella","sticks"],["top","sandwich"],["fat","darrell"],["sandwich","invented"],["commonly","served"],["trucks","grease"],["grease","trucks"],["integral","part"],["campus","culture"],["culture","serving"],["hangout","spot"],["spot","grease"],["grease","trucks"],["number","one"],["one","post"],["post","game"],["game","activity"],["sports","illustrated"],["opposite","side"],["grease","trucks"],["trucks","weremoved"],["long","time"],["time","location"],["relocated","throughouthe"],["throughouthe","new"],["new","brunswick"],["storefront","location"],["hamilton","st"],["food","trucks"],["trucks","licensed"],["new","brunswick"],["brunswick","parked"],["parked","along"],["along","college"],["college","avenue"],["high","concentration"],["classroom","buildings"],["far","north"],["quarter","mile"],["mile","away"],["away","thus"],["thus","competing"],["student","center"],["center","andining"],["andining","hall"],["hall","students"],["visitors","could"],["could","obtain"],["quick","hot"],["hot","inexpensive"],["inexpensive","meal"],["trucks","became"],["became","known"],["grease","trucks"],["trucks","due"],["fried","foods"],["nearby","somerset"],["somerset","street"],["street","greasy"],["greasy","spoon"],["spoon","restaurant"],["restaurant","greasy"],["greasy","tony"],["eminent","domain"],["domain","thearly"],["build","university"],["university","center"],["local","popularity"],["popularity","ofood"],["ofood","related"],["related","grease"],["grease","based"],["based","names"],["time","since"],["since","fresh"],["fresh","food"],["required","power"],["gasoline","generators"],["efforto","reduce"],["noise","pollution"],["along","college"],["college","avenue"],["parking","along"],["rutgers","provided"],["faculty","parking"],["parking","lot"],["lot","across"],["streethe","vendors"],["contract","withe"],["withe","university"],["trucks","would"],["positions","within"],["lot","monthly"],["none","vendor"],["vendor","would"],["would","receive"],["competitive","advantage"],["advantage","based"],["location","athe"],["athe","time"],["university","planned"],["courtyard","setting"],["friendly","aesthetic"],["aesthetic","environment"],["environment","buthese"],["buthese","plans"],["nearly","twentyears"],["twentyears","grease"],["grease","trucks"],["trucks","located"],["located","nexto"],["nexto","union"],["union","streethe"],["streethe","home"],["originally","open"],["open","hours"],["day","athis"],["athis","location"],["local","bars"],["bars","closed"],["closed","would"],["would","become"],["many","hungry"],["hungry","customers"],["parking","lot"],["lot","became"],["fighting","noise"],["closing","time"],["coincide","withe"],["withe","bar"],["two","years"],["years","later"],["bar","closing"],["closing","time"],["thearly","several"],["several","trucks"],["single","fixed"],["fixed","food"],["food","trailer"],["trailer","called"],["shack","athe"],["athe","center"],["remaining","trucks"],["trucks","aseen"],["internet","orders"],["orders","acceptance"],["credit","cards"],["rutgers","university"],["university","food"],["food","card"],["features","whichave"],["augusthe","trucks"],["parking","lot"],["make","way"],["new","building"],["university","plans"],["various","locations"],["college","avenue"],["avenue","busch"],["campuses","fat"],["fat","sandwiches"],["cuisine","image"],["lefthumb","px"],["pre","official"],["official","rutgers"],["rutgers","logo"],["logo","typical"],["typical","grill"],["grill","fare"],["grease","trucks"],["fat","sandwiches"],["sandwiches","composed"],["various","foodsuch"],["burgers","french"],["french","fries"],["fries","mozzarella"],["mozzarella","sticks"],["sticks","chicken"],["chicken","fingers"],["fingers","pork"],["pork","rolls"],["sauce","falafel"],["falafel","gyro"],["gyro","meat"],["meat","bacon"],["bacon","fried"],["fried","eggs"],["eggs","ketchup"],["ketchup","mayonnaise"],["mayonnaise","onions"],["onions","etc"],["supposedly","originated"],["local","restaurant"],["restaurant","served"],["sandwich","called"],["fat","cat"],["cat","consisting"],["french","fries"],["fries","lettuce"],["lettuce","tomato"],["tomato","mayonnaise"],["fat","cat"],["cat","became"],["popular","item"],["grease","trucks"],["thearly","history"],["grease","trucks"],["fat","moon"],["moon","chicken"],["chicken","fingers"],["fingers","bacon"],["bacon","egg"],["egg","french"],["french","fries"],["fries","lettuce"],["lettuce","tomato"],["tomato","mayonnaise"],["ketchup","fat"],["pizza","steak"],["steak","french"],["french","fries"],["fries","mozzarella"],["mozzarella","sticks"],["fat","sam"],["sam","cheese"],["cheese","steak"],["steak","grilled"],["grilled","chicken"],["chicken","french"],["french","fries"],["fries","lettuce"],["lettuce","tomato"],["tomato","mayonnaise"],["inexpensive","sandwiches"],["sandwiches","originally"],["regular","hamburger"],["hamburger","withe"],["withe","sides"],["sides","included"],["included","within"],["within","steadily"],["steadily","rose"],["popularity","buthe"],["buthe","fat"],["fat","cat"],["cat","would"],["would","remain"],["top","seller"],["w","butler"],["butler","created"],["fat","darrell"],["darrell","consisting"],["chicken","fingers"],["fingers","mozzarella"],["mozzarella","sticks"],["sticks","french"],["french","fries"],["sauce","butler"],["butler","told"],["told","usa"],["usa","today"],["today","like"],["typical","college"],["college","student"],["pretty","much"],["much","broke"],["craving","chicken"],["chicken","fingers"],["fingers","mozzarella"],["mozzarella","sticks"],["sticks","french"],["french","fries"],["week","long"],["guy","behind"],["sounded","like"],["good","idea"],["thing","since"],["fat","darrell"],["darrell","dozens"],["additional","fat"],["fat","sandwich"],["sandwich","combinations"],["composed","mostly"],["customer","suggestions"],["suggestions","many"],["many","combinations"],["available","ingredients"],["created","including"],["including","multiple"],["multiple","vegetarian"],["vegetarian","options"],["options","fat"],["fat","sandwiches"],["become","available"],["many","short"],["short","order"],["order","eateries"],["pizza","places"],["around","new"],["new","brunswick"],["popularity","spreading"],["spreading","beyond"],["nationwide","media"],["media","recognition"],["recognition","fat"],["fat","sandwich"],["sandwich","vendors"],["various","college"],["college","campuses"],["campuses","around"],["country","grease"],["grease","trucks"],["featured","location"],["man","v"],["v","food"],["food","season"],["season","host"],["host","adam"],["adam","richman"],["richman","actor"],["actor","adam"],["adam","richman"],["richman","attempted"],["hungry","truck"],["eating","five"],["five","fat"],["fat","sandwiches"],["minutes","allows"],["new","sandwich"],["grease","trucks"],["also","notable"],["offering","many"],["many","types"],["mostly","home"],["home","made"],["made","mediterranean"],["mediterranean","food"],["pita","bread"],["formerly","available"],["spinach","pies"],["choices","came"],["homemade","healthier"],["healthier","options"],["large","number"],["accompany","fried"],["fried","foods"],["commonly","available"],["available","items"],["chips","cookies"],["even","homemade"],["homemade","rice"],["treats","asome"],["asome","trucks"],["morning","breakfast"],["breakfast","grill"],["grill","items"],["alsoften","available"],["available","sandwiches"],["colorful","namesuch"],["fat","balls"],["balls","fat"],["deemed","offensive"],["vendors","agreed"],["posted","menus"],["fat","beach"],["beach","fat"],["fat","philly"],["philly","etc"],["rutgers","property"],["students","expressed"],["athe","university"],["others","defended"],["logic","behind"],["name","changes"],["pointed","outhe"],["outhe","fat"],["fat","sandwich"],["fat","darrell"],["could","ever"],["st","pete"],["pete","times"],["times","november"],["november","see"],["see","also"],["also","mobile"],["mobile","catering"],["catering","street"],["street","food"],["food","externalinks"],["externalinks","official"],["official","fat"],["fat","darrell"],["darrell","website"],["fox","news"],["news","coverage"],["coverage","category"],["category","sandwiches"],["sandwiches","category"],["category","american"],["american","sandwiches"],["sandwiches","category"],["category","rutgers"],["rutgers","university"],["university","category"],["category","restaurants"],["restaurants","inew"],["inew","jersey"],["jersey","category"],["category","new"],["new","brunswick"],["brunswick","new"],["new","jersey"],["jersey","category"],["category","food"],["food","trucks"]],"all_collocations":["px grease","grease trucks","trucks atheir","atheir long","long time","time college","college avenue","avenue location","location ending","august grease","grease trucks","group ofood","ofood trucks","trucks located","college avenue","avenue campus","rutgers university","university inew","inew brunswick","brunswick new","new jersey","serving among","things fat","fat sandwiches","submarine sandwich","sandwich sub","sub roll","roll containing","burgers cheese","cheese chicken","chicken fingers","fingers french","french fries","fries falafel","mozzarella sticks","top sandwich","fat darrell","sandwich invented","commonly served","trucks grease","grease trucks","integral part","campus culture","culture serving","hangout spot","spot grease","grease trucks","number one","one post","post game","game activity","sports illustrated","opposite side","grease trucks","trucks weremoved","long time","time location","relocated throughouthe","throughouthe new","new brunswick","storefront location","hamilton st","food trucks","trucks licensed","new brunswick","brunswick parked","parked along","along college","college avenue","high concentration","classroom buildings","far north","quarter mile","mile away","away thus","thus competing","student center","center andining","andining hall","hall students","visitors could","could obtain","quick hot","hot inexpensive","inexpensive meal","trucks became","became known","grease trucks","trucks due","fried foods","nearby somerset","somerset street","street greasy","greasy spoon","spoon restaurant","restaurant greasy","greasy tony","eminent domain","domain thearly","build university","university center","local popularity","popularity ofood","ofood related","related grease","grease based","based names","time since","since fresh","fresh food","required power","gasoline generators","efforto reduce","noise pollution","along college","college avenue","parking along","rutgers provided","faculty parking","parking lot","lot across","streethe vendors","contract withe","withe university","trucks would","positions within","lot monthly","none vendor","vendor would","would receive","competitive advantage","advantage based","location athe","athe time","university planned","courtyard setting","friendly aesthetic","aesthetic environment","environment buthese","buthese plans","nearly twentyears","twentyears grease","grease trucks","trucks located","located nexto","nexto union","union streethe","streethe home","originally open","open hours","day athis","athis location","local bars","bars closed","closed would","would become","many hungry","hungry customers","parking lot","lot became","fighting noise","closing time","coincide withe","withe bar","two years","years later","bar closing","closing time","thearly several","several trucks","single fixed","fixed food","food trailer","trailer called","shack athe","athe center","remaining trucks","trucks aseen","internet orders","orders acceptance","credit cards","rutgers university","university food","food card","features whichave","augusthe trucks","parking lot","make way","new building","university plans","various locations","college avenue","avenue busch","campuses fat","fat sandwiches","cuisine image","lefthumb px","pre official","official rutgers","rutgers logo","logo typical","typical grill","grill fare","grease trucks","fat sandwiches","sandwiches composed","various foodsuch","burgers french","french fries","fries mozzarella","mozzarella sticks","sticks chicken","chicken fingers","fingers pork","pork rolls","sauce falafel","falafel gyro","gyro meat","meat bacon","bacon fried","fried eggs","eggs ketchup","ketchup mayonnaise","mayonnaise onions","onions etc","supposedly originated","local restaurant","restaurant served","sandwich called","fat cat","cat consisting","french fries","fries lettuce","lettuce tomato","tomato mayonnaise","fat cat","cat became","popular item","grease trucks","thearly history","grease trucks","fat moon","moon chicken","chicken fingers","fingers bacon","bacon egg","egg french","french fries","fries lettuce","lettuce tomato","tomato mayonnaise","ketchup fat","pizza steak","steak french","french fries","fries mozzarella","mozzarella sticks","fat sam","sam cheese","cheese steak","steak grilled","grilled chicken","chicken french","french fries","fries lettuce","lettuce tomato","tomato mayonnaise","inexpensive sandwiches","sandwiches originally","regular hamburger","hamburger withe","withe sides","sides included","included within","within steadily","steadily rose","popularity buthe","buthe fat","fat cat","cat would","would remain","top seller","w butler","butler created","fat darrell","darrell consisting","chicken fingers","fingers mozzarella","mozzarella sticks","sticks french","french fries","sauce butler","butler told","told usa","usa today","today like","typical college","college student","pretty much","much broke","craving chicken","chicken fingers","fingers mozzarella","mozzarella sticks","sticks french","french fries","week long","guy behind","sounded like","good idea","thing since","fat darrell","darrell dozens","additional fat","fat sandwich","sandwich combinations","composed mostly","customer suggestions","suggestions many","many combinations","available ingredients","created including","including multiple","multiple vegetarian","vegetarian options","options fat","fat sandwiches","become available","many short","short order","order eateries","pizza places","around new","new brunswick","popularity spreading","spreading beyond","nationwide media","media recognition","recognition fat","fat sandwich","sandwich vendors","various college","college campuses","campuses around","country grease","grease trucks","featured location","man v","v food","food season","season host","host adam","adam richman","richman actor","actor adam","adam richman","richman attempted","hungry truck","eating five","five fat","fat sandwiches","minutes allows","new sandwich","grease trucks","also notable","offering many","many types","mostly home","home made","made mediterranean","mediterranean food","pita bread","formerly available","spinach pies","choices came","homemade healthier","healthier options","large number","accompany fried","fried foods","commonly available","available items","chips cookies","even homemade","homemade rice","treats asome","asome trucks","morning breakfast","breakfast grill","grill items","alsoften available","available sandwiches","colorful namesuch","fat balls","balls fat","deemed offensive","vendors agreed","posted menus","fat beach","beach fat","fat philly","philly etc","rutgers property","students expressed","athe university","others defended","logic behind","name changes","pointed outhe","outhe fat","fat sandwich","fat darrell","could ever","st pete","pete times","times november","november see","see also","also mobile","mobile catering","catering street","street food","food externalinks","externalinks official","official fat","fat darrell","darrell website","fox news","news coverage","coverage category","category sandwiches","sandwiches category","category american","american sandwiches","sandwiches category","category rutgers","rutgers university","university category","category restaurants","restaurants inew","inew jersey","jersey category","category new","new brunswick","brunswick new","new jersey","jersey category","category food","food trucks"],"new_description":"image thumb px grease_trucks atheir long_time college avenue location ending august grease_trucks group ofood_trucks located college avenue campus rutgers university inew brunswick new_jersey known serving among things fat sandwiches submarine sandwich sub roll containing combination burgers cheese chicken fingers french_fries falafel mozzarella sticks august top sandwich nation awarded fat darrell sandwich invented student butler commonly served trucks grease_trucks become integral_part campus culture serving meeting hangout spot grease_trucks named number one post game activity country sports illustrated campus spite located opposite side river grease_trucks weremoved long_time location august plans relocated throughouthe new_brunswick campuses hungry escaped trucks storefront location hamilton st rutgers thearly food_trucks licensed city_new brunswick parked along college avenue near mall high concentration classroom buildings campus far north commons quarter mile away thus competing eateries student center andining hall students visitors could obtain quick hot inexpensive meal events classes trucks became_known grease_trucks due popularity fried foods served nearby somerset street greasy_spoon restaurant greasy tony closed eminent domain thearly build university center ave part local popularity ofood related grease based names time since fresh food prepared trucks required power gasoline generators thearly efforto reduce noise pollution visual along college avenue trucks view mall trucks prohibited parking along rutgers provided corner faculty parking_lot across streethe vendors put contract withe university provided trucks space electricity trucks open day others thevening couple hours overlap time trucks would positions within lot monthly none vendor would receive competitive advantage based location athe_time move university planned courtyard setting lot benches tables create friendly aesthetic environment buthese plans come fruition nearly twentyears grease_trucks located nexto union streethe home majority rutgers houses originally open_hours day athis location shortly local bars closed would_become site many hungry customers sort party parking_lot became garbage complaints fighting noise public closing_time mandated coincide withe bar two_years_later changed bar closing_time altered city thearly several trucks bought consolidated single fixed food trailer called shack athe center remaining_trucks aseen photograph phone internet orders acceptance credit_cards rutgers university food card express features whichave added years well augusthe trucks removed parking_lot twentyears make way new building university plans trucks various_locations college avenue busch campuses fat sandwiches cuisine image lefthumb px parody pre official rutgers logo typical grill fare available grease_trucks fat sandwiches composed various foodsuch burgers french_fries mozzarella sticks chicken fingers pork rolls sauce falafel gyro meat bacon fried eggs ketchup mayonnaise onions etc supposedly originated local restaurant served sandwich called fat cat consisting two french_fries lettuce tomato mayonnaise ketchup combined bun fat cat became_popular item grease_trucks three fat thearly history grease_trucks fat moon chicken fingers bacon egg french_fries lettuce tomato mayonnaise ketchup fat pizza steak french_fries mozzarella sticks fat sam cheese steak grilled chicken french_fries lettuce tomato mayonnaise ketchup inexpensive sandwiches originally regular hamburger withe sides included within steadily rose popularity buthe fat cat would remain top seller student w butler created fat darrell consisting chicken fingers mozzarella sticks french_fries sauce butler told usa_today like typical college student pretty much broke craving chicken fingers mozzarella sticks french_fries week_long knew money buy three talked guy behind counter putting onto piece bread sounded like good idea next people asked thing since creation fat darrell dozens additional fat sandwich combinations composed mostly customer suggestions many combinations available ingredients created including multiple vegetarian options fat sandwiches become available many short order eateries pizza places around new_brunswick popularity spreading beyond region nationwide media recognition fat sandwich vendors various college campuses around country grease_trucks featured location episode man v food season host adam richman actor adam richman attempted fat athe hungry truck eating five fat sandwiches minutes allows name new sandwich menu able finish grease_trucks also notable offering many types mostly home made mediterranean food falafel pita bread formerly available stuffed leaves spinach pies choices came many vendors come countriesuch lebanon homemade healthier options welcome large_number calories accompany fried foods commonly available items chips cookies even homemade rice treats asome trucks open morning breakfast grill items alsoften available sandwiches colorful namesuch fat balls fat fat deemed offensive rutgers vendors agreed change names posted menus fat fat beach fat philly etc maintain contracts business rutgers property students expressed athe_university censorship others defended logic behind request name changes marcus pointed outhe fat sandwich general fat darrell instance calories stated like worst could figure way make probably sandwich could ever greg rutgers st pete times november see_also mobile_catering street_food externalinks_official fat darrell website fox news coverage category sandwiches category_american sandwiches category rutgers university category_restaurants inew jersey category_new brunswick new_jersey category_food trucks"},{"title":"Greasy spoon","description":"file regencyjpg thumb px the regency caf in pimlico centralondon is a well preserved art deco style s greasy spoon cafe greasy spoon is a colloquialism colloquial term for a small cheap restaurant or diner typically specialising in fried foods dictionarycom greasy spoon according to the oxford english dictionary the term originated in the united states greasy spoon entry oed and is now used in various english speaking countries originally disparaging the term is now more frequently used in an endearing sense the name greasy spoon is a reference both to the typically high fat oil and high calorie menu items at such places for exampleggs and bacon hamburger s fish n chips etc and to the supposed general standard of cleanliness the term has been used to refer to a small cheap restaurant since at leasthe s united states file nyc diner brooklynjpg thumb left upright a small diner counter in brooklyn file nyc diner togo cheeseburger deluxejpg thumb right a bacon cheeseburger to go container from anyc diner many typical american greasy spoons focus on fried or grilled food such as egg food fried eggs bacon hamburgers hash brown s waffle s pancake s omelette s deep fried chicken and sausage s these are often accompanied by baked beans french fries coleslaw or toast soup s and chili con carne are generally available since the s many greek americans greek immigrants haventered the business as a result native greek cuisine such as gyro food gyro and souvlaki meats are now a common part of the repertoire often served as a side dish with breakfast and as a replacement for bacon or sausage a full meal may be available for a special price sometimes called a sales promotion meal deal or blue plate special regional fare is often served coffee iced teand soft drinks are the typical beverages and pie and savoury dish savouries and ice cream are popular snacks andesserts united kingdom file grinners breakfastjpg thumb full breakfast full english breakfast a dish with baked beans black pudding sliced sausage fried mushrooms and toast commonly associated with greasy spoon cafes in england in the uk greasy spoons typically offer a widerange ofoods often taking advantage of inexpensive seasonal ingredients in the united kingdom greasy spoons are also commonly referred to as cafes or occasionally as working men s cafes and colloquially as caff take the kids england rd fullman joseph new holland publishers june p britslang an uncensored a z of the people s language including rhyming slang puxley ray robson april p shorter slang dictionary fergusson rosalind partridgeric beale paul psychology press not all cafes are greasy spoons however a greasy spoon in the uk is commonly an independently owned business and rarely if ever part of a chain or group increasingly they are being forced out of business by large coffeehouse chains and fast food franchises greasy spoon caffs are crushed by coffee giants the typical working men s cafe serves mainly fried or grilled food such as egg food fried eggs bacon black pudding bubble and squeak hamburgersausage s edible mushrooms and french fries chips these are often accompanied by baked beans cooked tomato es and fried bread these are served in a variety of combinations and are generally referred to as breakfast even if they are available all daywe re british innit an irreverent a to z of all things british iain aitcharpercollins uk october hot and cold sandwiches are alsoften available the bacon butty and sausage sandwich are particularly popular the main drink in a british working men s cafe is usually tea especially builder s tea nickname for a mug of strong black tea such as english breakfastea english breakfastea usually served with milk and sugar and typically robust and flavourful with a brisk character and a dark red colour often the only coffee drink coffee available will be instant coffee instanthough this haslowly changed withe increased proliferation of coffee drinking british working men s cafes will sometimes alsoffer bread and butter pudding crumble apple crumble and rhubarb crumble the greasy spoon was the mainstay of british lorry drivers who travelled the major trunk road such as the a road great britain and the a road great britain a prior to the opening of the motorways these cafes were not only stops where the driver could eat but also made convenient meeting places where the trade unions could talk to their members in the uk press reported thatheuropean union was attempting to ban greasy spoon cafes this turned outo be a hoax a fairly typical euromyth based on an exaggeration of an eu report about eating habits of long distance drivers and their health in the united kingdom the traditional greasy spoon has been in sharp decline due to the rise ofast food fast food chains they nevertheless remainumerous all over the uk especially in certain parts of london birminghamanchester derby and in many seaside towns and villages the demand for their style of cuisine has resulted in thestablishment of greasy spoons all over the world and particularly in european coastal resorts located within an hour s coach ride from charter airlines destinations in which full breakfast s may be available all day see also bar mleczny coney island restaurant dhaban indian diner list of diners lunch counter mamak stall meat and three mickey s diner nick tahou hots pat s hubba salisbury house restaurantruck stop waffle housexternalinks classicafes the very best of london s twentieth century vintage formicaffs category types of restaurants","main_words":["file","thumb","px","regency","caf","pimlico","centralondon","well","preserved","art_deco","style","greasy_spoon","cafe","greasy_spoon","colloquial","term","small","cheap","restaurant","diner","typically","specialising","fried","foods","dictionarycom","greasy_spoon","according","oxford_english_dictionary","term","originated","united_states","greasy_spoon","entry","oed","used","various","english_speaking","countries","originally","term","frequently","used","sense","name","greasy_spoon","reference","typically","high","fat","oil","high","calorie","menu_items","places","bacon","hamburger","fish","n","chips","etc","supposed","general","standard","cleanliness","term_used","refer","small","cheap","restaurant","since","leasthe","united_states","file","nyc","diner","thumb","left","upright","small","diner","counter","brooklyn","file","nyc","diner","cheeseburger","thumb","right","bacon","cheeseburger","go","container","diner","many","typical","american","greasy_spoons","focus","fried","grilled","food","egg","food","fried","eggs","bacon","hamburgers","brown","waffle","pancake","deep_fried","chicken","sausage","often","accompanied","baked","beans","french_fries","toast","soup","chili","con","carne","generally","available","since","many","greek","americans","greek","immigrants","haventered","business","result","native","greek","cuisine","gyro","food","gyro","meats","common","part","repertoire","often_served","side","dish","breakfast","replacement","bacon","sausage","full","meal","may","available","special","price","sometimes_called","sales","promotion","meal","deal","blue_plate","special","regional","fare","often_served","coffee","iced","teand","soft_drinks","typical","beverages","pie","savoury","dish","ice_cream","popular","snacks","andesserts","united_kingdom","file","thumb","full","breakfast","full","english","breakfast","dish","baked","beans","black","pudding","sliced","sausage","fried","mushrooms","toast","commonly","associated","greasy_spoon","cafes","england","uk","greasy_spoons","typically","offer","ofoods","often","taking","advantage","inexpensive","seasonal","ingredients","united_kingdom","greasy_spoons","also_commonly_referred","cafes","occasionally","working","men","cafes","colloquially","caff","take","kids","england","joseph","new","holland","publishers","june","p","people","language","including","slang","ray","robson","april","p","shorter","slang","dictionary","rosalind","beale","paul","psychology","press","cafes","greasy_spoons","however","greasy_spoon","uk","commonly","independently","owned","business","rarely","ever","part","chain","group","increasingly","forced","business","large","coffeehouse","chains","fast_food","franchises","greasy_spoon","crushed","coffee","giants","typical","working","men","cafe","serves","mainly","fried","grilled","food","egg","food","fried","eggs","bacon","black","pudding","bubble","mushrooms","french_fries","chips","often","accompanied","baked","beans","cooked","tomato","fried","bread","served","variety","combinations","generally","referred","breakfast","even","available","british","things","british","iain","uk","october","hot","cold","sandwiches","alsoften","available","bacon","sausage","sandwich","particularly","popular","main","drink","british","working","men","cafe","usually","tea","especially","builder","tea","nickname","mug","strong","black","tea","english","english","usually","served","milk","sugar","typically","robust","character","dark","red","colour","often","coffee","drink","coffee","available","instant","coffee","changed","withe","increased","proliferation","coffee","drinking","british","working","men","cafes","sometimes","alsoffer","bread","butter","pudding","apple","greasy_spoon","british","drivers","travelled","major","trunk","road","road","great_britain","road","great_britain","prior","opening","motorways","cafes","stops","driver","could","eat","also_made","convenient","meeting_places","trade","unions","could","talk","members","uk","press","reported","union","attempting","ban","greasy_spoon","cafes","turned","outo","fairly","typical","based","report","eating","habits","long_distance","drivers","health","united_kingdom","traditional","greasy_spoon","sharp","decline","due","rise","ofast_food","fast_food","chains","nevertheless","uk","especially","certain","parts","london","derby","many","seaside","towns","villages","demand","style","cuisine","resulted","thestablishment","greasy_spoons","world","particularly","european","coastal","resorts","located","within","hour","coach","ride","charter","airlines","destinations","full","breakfast","may","available","day","see_also","bar","mleczny","coney_island","restaurant","indian","diner","list","diners","lunch_counter","mamak","stall","meat","three","mickey","diner","nick","pat","salisbury","house","stop","waffle","best","london","twentieth_century","vintage","category_types","restaurants"],"clean_bigrams":[["thumb","px"],["regency","caf"],["pimlico","centralondon"],["well","preserved"],["preserved","art"],["art","deco"],["deco","style"],["greasy","spoon"],["spoon","cafe"],["cafe","greasy"],["greasy","spoon"],["colloquial","term"],["small","cheap"],["cheap","restaurant"],["diner","typically"],["typically","specialising"],["fried","foods"],["foods","dictionarycom"],["dictionarycom","greasy"],["greasy","spoon"],["spoon","according"],["oxford","english"],["english","dictionary"],["term","originated"],["united","states"],["states","greasy"],["greasy","spoon"],["spoon","entry"],["entry","oed"],["various","english"],["english","speaking"],["speaking","countries"],["countries","originally"],["frequently","used"],["name","greasy"],["greasy","spoon"],["typically","high"],["high","fat"],["fat","oil"],["high","calorie"],["calorie","menu"],["menu","items"],["bacon","hamburger"],["fish","n"],["n","chips"],["chips","etc"],["supposed","general"],["general","standard"],["small","cheap"],["cheap","restaurant"],["restaurant","since"],["united","states"],["states","file"],["file","nyc"],["nyc","diner"],["thumb","left"],["left","upright"],["small","diner"],["diner","counter"],["brooklyn","file"],["file","nyc"],["nyc","diner"],["thumb","right"],["bacon","cheeseburger"],["go","container"],["diner","many"],["many","typical"],["typical","american"],["american","greasy"],["greasy","spoons"],["spoons","focus"],["grilled","food"],["egg","food"],["food","fried"],["fried","eggs"],["eggs","bacon"],["bacon","hamburgers"],["deep","fried"],["fried","chicken"],["often","accompanied"],["baked","beans"],["beans","french"],["french","fries"],["toast","soup"],["chili","con"],["con","carne"],["generally","available"],["available","since"],["many","greek"],["greek","americans"],["americans","greek"],["greek","immigrants"],["immigrants","haventered"],["result","native"],["native","greek"],["greek","cuisine"],["gyro","food"],["food","gyro"],["common","part"],["repertoire","often"],["often","served"],["side","dish"],["full","meal"],["meal","may"],["special","price"],["price","sometimes"],["sometimes","called"],["sales","promotion"],["promotion","meal"],["meal","deal"],["blue","plate"],["plate","special"],["special","regional"],["regional","fare"],["often","served"],["served","coffee"],["coffee","iced"],["iced","teand"],["teand","soft"],["soft","drinks"],["typical","beverages"],["savoury","dish"],["ice","cream"],["popular","snacks"],["snacks","andesserts"],["andesserts","united"],["united","kingdom"],["kingdom","file"],["thumb","full"],["full","breakfast"],["breakfast","full"],["full","english"],["english","breakfast"],["baked","beans"],["beans","black"],["black","pudding"],["pudding","sliced"],["sliced","sausage"],["sausage","fried"],["fried","mushrooms"],["toast","commonly"],["commonly","associated"],["greasy","spoon"],["spoon","cafes"],["uk","greasy"],["greasy","spoons"],["spoons","typically"],["typically","offer"],["ofoods","often"],["often","taking"],["taking","advantage"],["inexpensive","seasonal"],["seasonal","ingredients"],["united","kingdom"],["kingdom","greasy"],["greasy","spoons"],["also","commonly"],["commonly","referred"],["working","men"],["caff","take"],["kids","england"],["joseph","new"],["new","holland"],["holland","publishers"],["publishers","june"],["june","p"],["language","including"],["ray","robson"],["robson","april"],["april","p"],["p","shorter"],["shorter","slang"],["slang","dictionary"],["beale","paul"],["paul","psychology"],["psychology","press"],["greasy","spoons"],["spoons","however"],["greasy","spoon"],["independently","owned"],["owned","business"],["ever","part"],["group","increasingly"],["large","coffeehouse"],["coffeehouse","chains"],["fast","food"],["food","franchises"],["franchises","greasy"],["greasy","spoon"],["coffee","giants"],["typical","working"],["working","men"],["cafe","serves"],["serves","mainly"],["mainly","fried"],["grilled","food"],["egg","food"],["food","fried"],["fried","eggs"],["eggs","bacon"],["bacon","black"],["black","pudding"],["pudding","bubble"],["french","fries"],["fries","chips"],["often","accompanied"],["baked","beans"],["beans","cooked"],["cooked","tomato"],["fried","bread"],["generally","referred"],["breakfast","even"],["things","british"],["british","iain"],["uk","october"],["october","hot"],["cold","sandwiches"],["alsoften","available"],["sausage","sandwich"],["particularly","popular"],["main","drink"],["british","working"],["working","men"],["usually","tea"],["tea","especially"],["especially","builder"],["tea","nickname"],["strong","black"],["black","tea"],["usually","served"],["typically","robust"],["dark","red"],["red","colour"],["colour","often"],["coffee","drink"],["drink","coffee"],["coffee","available"],["instant","coffee"],["changed","withe"],["withe","increased"],["increased","proliferation"],["coffee","drinking"],["drinking","british"],["british","working"],["working","men"],["sometimes","alsoffer"],["alsoffer","bread"],["butter","pudding"],["greasy","spoon"],["major","trunk"],["trunk","road"],["road","great"],["great","britain"],["road","great"],["great","britain"],["driver","could"],["could","eat"],["also","made"],["made","convenient"],["convenient","meeting"],["meeting","places"],["trade","unions"],["unions","could"],["could","talk"],["uk","press"],["press","reported"],["ban","greasy"],["greasy","spoon"],["spoon","cafes"],["turned","outo"],["fairly","typical"],["eating","habits"],["long","distance"],["distance","drivers"],["united","kingdom"],["traditional","greasy"],["greasy","spoon"],["sharp","decline"],["decline","due"],["rise","ofast"],["ofast","food"],["food","fast"],["fast","food"],["food","chains"],["uk","especially"],["certain","parts"],["many","seaside"],["seaside","towns"],["greasy","spoons"],["european","coastal"],["coastal","resorts"],["resorts","located"],["located","within"],["coach","ride"],["charter","airlines"],["airlines","destinations"],["full","breakfast"],["day","see"],["see","also"],["also","bar"],["bar","mleczny"],["mleczny","coney"],["coney","island"],["island","restaurant"],["indian","diner"],["diner","list"],["diners","lunch"],["lunch","counter"],["counter","mamak"],["mamak","stall"],["stall","meat"],["three","mickey"],["diner","nick"],["salisbury","house"],["stop","waffle"],["twentieth","century"],["century","vintage"],["category","types"]],"all_collocations":["regency caf","pimlico centralondon","well preserved","preserved art","art deco","deco style","greasy spoon","spoon cafe","cafe greasy","greasy spoon","colloquial term","small cheap","cheap restaurant","diner typically","typically specialising","fried foods","foods dictionarycom","dictionarycom greasy","greasy spoon","spoon according","oxford english","english dictionary","term originated","united states","states greasy","greasy spoon","spoon entry","entry oed","various english","english speaking","speaking countries","countries originally","frequently used","name greasy","greasy spoon","typically high","high fat","fat oil","high calorie","calorie menu","menu items","bacon hamburger","fish n","n chips","chips etc","supposed general","general standard","small cheap","cheap restaurant","restaurant since","united states","states file","file nyc","nyc diner","left upright","small diner","diner counter","brooklyn file","file nyc","nyc diner","bacon cheeseburger","go container","diner many","many typical","typical american","american greasy","greasy spoons","spoons focus","grilled food","egg food","food fried","fried eggs","eggs bacon","bacon hamburgers","deep fried","fried chicken","often accompanied","baked beans","beans french","french fries","toast soup","chili con","con carne","generally available","available since","many greek","greek americans","americans greek","greek immigrants","immigrants haventered","result native","native greek","greek cuisine","gyro food","food gyro","common part","repertoire often","often served","side dish","full meal","meal may","special price","price sometimes","sometimes called","sales promotion","promotion meal","meal deal","blue plate","plate special","special regional","regional fare","often served","served coffee","coffee iced","iced teand","teand soft","soft drinks","typical beverages","savoury dish","ice cream","popular snacks","snacks andesserts","andesserts united","united kingdom","kingdom file","thumb full","full breakfast","breakfast full","full english","english breakfast","baked beans","beans black","black pudding","pudding sliced","sliced sausage","sausage fried","fried mushrooms","toast commonly","commonly associated","greasy spoon","spoon cafes","uk greasy","greasy spoons","spoons typically","typically offer","ofoods often","often taking","taking advantage","inexpensive seasonal","seasonal ingredients","united kingdom","kingdom greasy","greasy spoons","also commonly","commonly referred","working men","caff take","kids england","joseph new","new holland","holland publishers","publishers june","june p","language including","ray robson","robson april","april p","p shorter","shorter slang","slang dictionary","beale paul","paul psychology","psychology press","greasy spoons","spoons however","greasy spoon","independently owned","owned business","ever part","group increasingly","large coffeehouse","coffeehouse chains","fast food","food franchises","franchises greasy","greasy spoon","coffee giants","typical working","working men","cafe serves","serves mainly","mainly fried","grilled food","egg food","food fried","fried eggs","eggs bacon","bacon black","black pudding","pudding bubble","french fries","fries chips","often accompanied","baked beans","beans cooked","cooked tomato","fried bread","generally referred","breakfast even","things british","british iain","uk october","october hot","cold sandwiches","alsoften available","sausage sandwich","particularly popular","main drink","british working","working men","usually tea","tea especially","especially builder","tea nickname","strong black","black tea","usually served","typically robust","dark red","red colour","colour often","coffee drink","drink coffee","coffee available","instant coffee","changed withe","withe increased","increased proliferation","coffee drinking","drinking british","british working","working men","sometimes alsoffer","alsoffer bread","butter pudding","greasy spoon","major trunk","trunk road","road great","great britain","road great","great britain","driver could","could eat","also made","made convenient","convenient meeting","meeting places","trade unions","unions could","could talk","uk press","press reported","ban greasy","greasy spoon","spoon cafes","turned outo","fairly typical","eating habits","long distance","distance drivers","united kingdom","traditional greasy","greasy spoon","sharp decline","decline due","rise ofast","ofast food","food fast","fast food","food chains","uk especially","certain parts","many seaside","seaside towns","greasy spoons","european coastal","coastal resorts","resorts located","located within","coach ride","charter airlines","airlines destinations","full breakfast","day see","see also","also bar","bar mleczny","mleczny coney","coney island","island restaurant","indian diner","diner list","diners lunch","lunch counter","counter mamak","mamak stall","stall meat","three mickey","diner nick","salisbury house","stop waffle","twentieth century","century vintage","category types"],"new_description":"file thumb px regency caf pimlico centralondon well preserved art_deco style greasy_spoon cafe greasy_spoon colloquial term small cheap restaurant diner typically specialising fried foods dictionarycom greasy_spoon according oxford_english_dictionary term originated united_states greasy_spoon entry oed used various english_speaking countries originally term frequently used sense name greasy_spoon reference typically high fat oil high calorie menu_items places bacon hamburger fish n chips etc supposed general standard cleanliness term_used refer small cheap restaurant since leasthe united_states file nyc diner thumb left upright small diner counter brooklyn file nyc diner cheeseburger thumb right bacon cheeseburger go container diner many typical american greasy_spoons focus fried grilled food egg food fried eggs bacon hamburgers brown waffle pancake deep_fried chicken sausage often accompanied baked beans french_fries toast soup chili con carne generally available since many greek americans greek immigrants haventered business result native greek cuisine gyro food gyro meats common part repertoire often_served side dish breakfast replacement bacon sausage full meal may available special price sometimes_called sales promotion meal deal blue_plate special regional fare often_served coffee iced teand soft_drinks typical beverages pie savoury dish ice_cream popular snacks andesserts united_kingdom file thumb full breakfast full english breakfast dish baked beans black pudding sliced sausage fried mushrooms toast commonly associated greasy_spoon cafes england uk greasy_spoons typically offer ofoods often taking advantage inexpensive seasonal ingredients united_kingdom greasy_spoons also_commonly_referred cafes occasionally working men cafes colloquially caff take kids england joseph new holland publishers june p people language including slang ray robson april p shorter slang dictionary rosalind beale paul psychology press cafes greasy_spoons however greasy_spoon uk commonly independently owned business rarely ever part chain group increasingly forced business large coffeehouse chains fast_food franchises greasy_spoon crushed coffee giants typical working men cafe serves mainly fried grilled food egg food fried eggs bacon black pudding bubble mushrooms french_fries chips often accompanied baked beans cooked tomato fried bread served variety combinations generally referred breakfast even available british things british iain uk october hot cold sandwiches alsoften available bacon sausage sandwich particularly popular main drink british working men cafe usually tea especially builder tea nickname mug strong black tea english english usually served milk sugar typically robust character dark red colour often coffee drink coffee available instant coffee changed withe increased proliferation coffee drinking british working men cafes sometimes alsoffer bread butter pudding apple greasy_spoon british drivers travelled major trunk road road great_britain road great_britain prior opening motorways cafes stops driver could eat also_made convenient meeting_places trade unions could talk members uk press reported union attempting ban greasy_spoon cafes turned outo fairly typical based report eating habits long_distance drivers health united_kingdom traditional greasy_spoon sharp decline due rise ofast_food fast_food chains nevertheless uk especially certain parts london derby many seaside towns villages demand style cuisine resulted thestablishment greasy_spoons world particularly european coastal resorts located within hour coach ride charter airlines destinations full breakfast may available day see_also bar mleczny coney_island restaurant indian diner list diners lunch_counter mamak stall meat three mickey diner nick pat salisbury house stop waffle best london twentieth_century vintage category_types restaurants"},{"title":"Greek National Tourism Organization","description":"restablished in preceding dissolved superseding jurisdiction minister for tourism greece ministry for culture and tourism headquarters tsoha street athens region code coordinates employees budget minister name minister pfo minister name minister pfo chief name nikolaos kanellopoulos chief position president chief name george koletsos chief position general secretary agency type parent department parent agency child agency child agency keydocument website footnotes map width map caption the greek national tourism organization ethnikos organismos tourismou often appreviated as gnto is the governmental department for the promotion of tourism in greece it functions under the supervision of the minister for tourism greece ministry for culture and tourism the greek national tourism organization was founded in withe aim of promoting tourism in greece for a time period after its establishmenthe organization was taken over by various ministries until it was re founded in the agency has helped increase tourism in greece since the s and advertises the country as a tourist destination currently the agency is the single largestourism promotion agency in the country and has offices in countries on four continentsince the organization has been subdivided into regional departments of tourism promotion work image seaside in greece posterpng thumb seaside in greece poster part of the xx in greece campaign of everyear the organization chooses a differentheme and motto for its advertising campaigns over the years variousuccessful advertising campaigns have been funded by the organization including the very successfulive your myth in greece campaign the campaign s motto was you in greece and xx in greece and mainly focused on the many opportunities the country provides for tourists with a variety of different destinations and activities you in athens and you in thessaloniki were also used to promote the country s two largest cities and centers of culture and entertainmenthe advertising campaign published a variety of promotional tv spots in line withe you in greece poster campaign which were translated to various languages including chinese bulgariand german previous campaign slogans include live your myth in greece years old a masterpiece you can afford greecexplore your senses my greek experience tv commercials using amateur videos greece kalimera greece you in greece all time classic offices abroad currently the gntoperates offices in the following countriesydney also serves vienna brusselsofia toronto beijing and shanghai prague nicosia copenhagen helsinki berlin frankfurt hamburg and munich tel aviv miland rome tokyo amsterdam bucharest russia madrid stockholm london also serves new york city see also tourism in greecexternalinks gnto website hellenic ministry of culture and tourism website category establishments in greece category national agencies of greece category tourism agencies category tourism in greece","main_words":["preceding","dissolved_superseding_jurisdiction","minister","tourism","greece","ministry","culture_tourism","headquarters","street","athens","region","code","coordinates","employees_budget_minister_name_minister_pfo_minister","position","president","chief_name","george","chief_position","general","secretary","agency_type","parent_department_parent_agency_child","agency_child","agency_keydocument_website","footnotes_map_width_map_caption","greek","national_tourism_organization","often","governmental","department","promotion","tourism","greece","functions","supervision","minister","tourism","greece","ministry","culture_tourism","greek","national_tourism_organization","founded","withe_aim","promoting_tourism","greece","time_period","organization","taken","various","ministries","founded","agency","helped","increase","tourism","greece","since","advertises","country","tourist_destination","currently","agency","single","promotion","agency","country","offices","countries","four","organization","regional","departments","tourism_promotion","work","image","seaside","greece","thumb","seaside","greece","poster","part","greece","campaign","everyear","organization","motto","advertising","campaigns","years","advertising","campaigns","funded","organization","including","myth","greece","campaign","campaign","motto","greece","greece","mainly","focused","many","opportunities","country","provides","tourists","variety","different","destinations","activities","athens","thessaloniki","also_used","promote","country","two","largest","cities","centers","culture","entertainmenthe","advertising","campaign","published","variety","promotional","spots","line","withe","greece","poster","campaign","translated","various","languages","including","chinese","german","previous","campaign","slogans","include","live","myth","greece","years_old","afford","senses","greek","experience","commercials","using","amateur","videos","greece","greece","greece","time","classic","offices","abroad","currently","offices","following","also_serves","vienna","toronto","beijing","shanghai","prague","copenhagen","helsinki","berlin","frankfurt","hamburg","munich","tel_aviv","miland","rome","tokyo","amsterdam","bucharest","russia","madrid","stockholm","london","also_serves","new_york","city","see_also","tourism_website","ministry","culture_tourism","website_category_establishments","greece","category_national","agencies","greece","category_tourism","agencies_category_tourism","greece"],"clean_bigrams":[["preceding","dissolved"],["dissolved","superseding"],["superseding","jurisdiction"],["jurisdiction","minister"],["tourism","greece"],["greece","ministry"],["tourism","headquarters"],["street","athens"],["athens","region"],["region","code"],["code","coordinates"],["coordinates","employees"],["employees","budget"],["budget","minister"],["minister","name"],["name","minister"],["minister","pfo"],["pfo","minister"],["minister","name"],["name","minister"],["minister","pfo"],["pfo","chief"],["chief","name"],["chief","position"],["position","president"],["president","chief"],["chief","name"],["name","george"],["chief","position"],["position","general"],["general","secretary"],["secretary","agency"],["agency","type"],["type","parent"],["parent","department"],["department","parent"],["parent","agency"],["agency","child"],["child","agency"],["agency","child"],["child","agency"],["agency","keydocument"],["keydocument","website"],["website","footnotes"],["footnotes","map"],["map","width"],["width","map"],["map","caption"],["greek","national"],["national","tourism"],["tourism","organization"],["governmental","department"],["tourism","greece"],["tourism","greece"],["greece","ministry"],["greek","national"],["national","tourism"],["tourism","organization"],["withe","aim"],["promoting","tourism"],["tourism","greece"],["time","period"],["various","ministries"],["helped","increase"],["increase","tourism"],["tourism","greece"],["greece","since"],["tourist","destination"],["destination","currently"],["promotion","agency"],["regional","departments"],["tourism","promotion"],["promotion","work"],["work","image"],["image","seaside"],["thumb","seaside"],["greece","poster"],["poster","part"],["greece","campaign"],["advertising","campaigns"],["advertising","campaigns"],["organization","including"],["greece","campaign"],["mainly","focused"],["many","opportunities"],["country","provides"],["different","destinations"],["also","used"],["two","largest"],["largest","cities"],["entertainmenthe","advertising"],["advertising","campaign"],["campaign","published"],["promotional","tv"],["tv","spots"],["line","withe"],["greece","poster"],["poster","campaign"],["various","languages"],["languages","including"],["including","chinese"],["german","previous"],["previous","campaign"],["campaign","slogans"],["slogans","include"],["include","live"],["greece","years"],["years","old"],["greek","experience"],["experience","tv"],["tv","commercials"],["commercials","using"],["using","amateur"],["amateur","videos"],["videos","greece"],["time","classic"],["classic","offices"],["offices","abroad"],["abroad","currently"],["also","serves"],["serves","vienna"],["toronto","beijing"],["shanghai","prague"],["copenhagen","helsinki"],["helsinki","berlin"],["berlin","frankfurt"],["frankfurt","hamburg"],["munich","tel"],["tel","aviv"],["aviv","miland"],["miland","rome"],["rome","tokyo"],["tokyo","amsterdam"],["amsterdam","bucharest"],["bucharest","russia"],["russia","madrid"],["madrid","stockholm"],["stockholm","london"],["london","also"],["also","serves"],["serves","new"],["new","york"],["york","city"],["city","see"],["see","also"],["also","tourism"],["tourism","website"],["tourism","website"],["website","category"],["category","establishments"],["greece","category"],["category","national"],["national","agencies"],["greece","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["tourism","greece"]],"all_collocations":["preceding dissolved","dissolved superseding","superseding jurisdiction","jurisdiction minister","tourism greece","greece ministry","tourism headquarters","street athens","athens region","region code","code coordinates","coordinates employees","employees budget","budget minister","minister name","name minister","minister pfo","pfo minister","minister name","name minister","minister pfo","pfo chief","chief name","chief position","position president","president chief","chief name","name george","chief position","position general","general secretary","secretary agency","agency type","type parent","parent department","department parent","parent agency","agency child","child agency","agency child","child agency","agency keydocument","keydocument website","website footnotes","footnotes map","map width","width map","map caption","greek national","national tourism","tourism organization","governmental department","tourism greece","tourism greece","greece ministry","greek national","national tourism","tourism organization","withe aim","promoting tourism","tourism greece","time period","various ministries","helped increase","increase tourism","tourism greece","greece since","tourist destination","destination currently","promotion agency","regional departments","tourism promotion","promotion work","work image","image seaside","thumb seaside","greece poster","poster part","greece campaign","advertising campaigns","advertising campaigns","organization including","greece campaign","mainly focused","many opportunities","country provides","different destinations","also used","two largest","largest cities","entertainmenthe advertising","advertising campaign","campaign published","promotional tv","tv spots","line withe","greece poster","poster campaign","various languages","languages including","including chinese","german previous","previous campaign","campaign slogans","slogans include","include live","greece years","years old","greek experience","experience tv","tv commercials","commercials using","using amateur","amateur videos","videos greece","time classic","classic offices","offices abroad","abroad currently","also serves","serves vienna","toronto beijing","shanghai prague","copenhagen helsinki","helsinki berlin","berlin frankfurt","frankfurt hamburg","munich tel","tel aviv","aviv miland","miland rome","rome tokyo","tokyo amsterdam","amsterdam bucharest","bucharest russia","russia madrid","madrid stockholm","stockholm london","london also","also serves","serves new","new york","york city","city see","see also","also tourism","tourism website","tourism website","website category","category establishments","greece category","category national","national agencies","greece category","category tourism","tourism agencies","agencies category","category tourism","tourism greece"],"new_description":"preceding dissolved_superseding_jurisdiction minister tourism greece ministry culture_tourism headquarters street athens region code coordinates employees_budget_minister_name_minister_pfo_minister name_minister_pfo_chief_name_chief position president chief_name george chief_position general secretary agency_type parent_department_parent_agency_child agency_child agency_keydocument_website footnotes_map_width_map_caption greek national_tourism_organization often governmental department promotion tourism greece functions supervision minister tourism greece ministry culture_tourism greek national_tourism_organization founded withe_aim promoting_tourism greece time_period organization taken various ministries founded agency helped increase tourism greece since advertises country tourist_destination currently agency single promotion agency country offices countries four organization regional departments tourism_promotion work image seaside greece thumb seaside greece poster part greece campaign everyear organization motto advertising campaigns years advertising campaigns funded organization including myth greece campaign campaign motto greece greece mainly focused many opportunities country provides tourists variety different destinations activities athens thessaloniki also_used promote country two largest cities centers culture entertainmenthe advertising campaign published variety promotional tv spots line withe greece poster campaign translated various languages including chinese german previous campaign slogans include live myth greece years_old afford senses greek experience tv commercials using amateur videos greece greece greece time classic offices abroad currently offices following also_serves vienna toronto beijing shanghai prague copenhagen helsinki berlin frankfurt hamburg munich tel_aviv miland rome tokyo amsterdam bucharest russia madrid stockholm london also_serves new_york city see_also tourism_website ministry culture_tourism website_category_establishments greece category_national agencies greece category_tourism agencies_category_tourism greece"},{"title":"Griebens Reise-Bibliothek","description":"file vulkanischeifelpng thumb right px cover of die vulkanischeifel file schwarzwaldpng thumb right px cover of schwarzwald file rhein reise griebens reisebucherpng px thumb right cover of rhein reise file norway and copenhagenpng thumb right px cover of norway and copenhagen griebens reise bibliothek est was a series of german language travel guide book s to europe founded by theobald grieben of berlin some titles occasionally appeared in english or french languageditions compared with its competitor baedeker griebens was cheaper and less detailed a british reviewer judged it informative and not bulky going easily into the coat pocket readers included thomas wolfe in publisher albert goldschmidt boughthe series and continued it in the s the goldschmidt office sat on in berlin by the s griebens was issued by j rgen e rohde of munich list of titles by geographicoverage index in english index czech republic great britain ed in english in english in english in english index index ed in english index united states of america externalinks category german books category travel guide books category series of books category publications established in the s category tourism in europe","main_words":["file","thumb","right","px","cover","die","file","thumb","right","px","cover","schwarzwald","file","reise","griebens","px_thumb","right","cover","reise","file","norway","thumb","right","px","cover","norway","copenhagen","griebens","reise","est","series","german_language","travel_guide_book","europe","founded","berlin","titles","occasionally","appeared","english","french","compared","competitor","baedeker","griebens","cheaper","less","detailed","british","reviewer","judged","informative","going","easily","coat","pocket","readers","included","thomas","wolfe","publisher","albert","boughthe","series","continued","office","sat","berlin","griebens","issued","j","rgen","e","munich","list","titles","geographicoverage","index","english","index","czech_republic","great_britain","ed","english","english","english","english","index_index","ed","english","index","united_states","america","books_category","travel_guide_books","category_series","books_category","publications_established","category_tourism","europe"],"clean_bigrams":[["thumb","right"],["right","px"],["px","cover"],["thumb","right"],["right","px"],["px","cover"],["schwarzwald","file"],["reise","griebens"],["px","thumb"],["thumb","right"],["right","cover"],["reise","file"],["file","norway"],["thumb","right"],["right","px"],["px","cover"],["copenhagen","griebens"],["griebens","reise"],["german","language"],["language","travel"],["travel","guide"],["guide","book"],["europe","founded"],["titles","occasionally"],["occasionally","appeared"],["competitor","baedeker"],["baedeker","griebens"],["less","detailed"],["british","reviewer"],["reviewer","judged"],["going","easily"],["coat","pocket"],["pocket","readers"],["readers","included"],["included","thomas"],["thomas","wolfe"],["publisher","albert"],["boughthe","series"],["office","sat"],["j","rgen"],["rgen","e"],["munich","list"],["geographicoverage","index"],["english","index"],["index","czech"],["czech","republic"],["republic","great"],["great","britain"],["britain","ed"],["english","index"],["index","index"],["index","ed"],["english","index"],["index","united"],["united","states"],["america","externalinks"],["externalinks","category"],["category","german"],["german","books"],["books","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","tourism"]],"all_collocations":["px cover","px cover","schwarzwald file","reise griebens","px thumb","right cover","reise file","file norway","px cover","copenhagen griebens","griebens reise","german language","language travel","travel guide","guide book","europe founded","titles occasionally","occasionally appeared","competitor baedeker","baedeker griebens","less detailed","british reviewer","reviewer judged","going easily","coat pocket","pocket readers","readers included","included thomas","thomas wolfe","publisher albert","boughthe series","office sat","j rgen","rgen e","munich list","geographicoverage index","english index","index czech","czech republic","republic great","great britain","britain ed","english index","index index","index ed","english index","index united","united states","america externalinks","externalinks category","category german","german books","books category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category tourism"],"new_description":"file thumb right px cover die file thumb right px cover schwarzwald file reise griebens px_thumb right cover reise file norway thumb right px cover norway copenhagen griebens reise est series german_language travel_guide_book europe founded berlin titles occasionally appeared english french compared competitor baedeker griebens cheaper less detailed british reviewer judged informative going easily coat pocket readers included thomas wolfe publisher albert boughthe series continued office sat berlin griebens issued j rgen e munich list titles geographicoverage index english index czech_republic great_britain ed english english english english index_index ed english index united_states america externalinks_category_german books_category travel_guide_books category_series books_category publications_established category_tourism europe"},{"title":"Guachinche","description":"file islas canarias tenerife la victoria de acentejo guachinche casa pepe jpg thumb a guachinche is a typical canary island establishment more widely spread on the island of tenerife and to a lesser extent in gran canaria where a locally produced wine iserved accompanied by homemade traditional food history the origins of guachinches lie in the wine tasting parties thathe local wine growers organized at certain dates of the year to sell their products in particular the famous malvasia wine directly to the british buyers and later to the local consumers to avoid having to deal with intermediaries the guachinches are usually situated nexto important wine regions of the island of tenerifespecially in the northern municipalitiesuch as tacorontel sauzal tegueste la matanza de acentejo la victoria de acentejo santa rsula orotavand los realejos a few of them can also be found in the g mar valley that is in arafo candelariand g mar municipalities etymology the word bochinche mainly used in gran canariand its variant guachinche more typical of tenerife is used in the canarian dialect of spanish to refer to a popular establishment where local wine and typical foods are served according to the historical etymological dictionary of canarian dialect by marcial morera it derived from the latin american spanish word bochinche derived from buche sip gulp which means a poor tavern the other version claims thathe word guachinche comes from thenglish expression i m watching you apparently used by the british buyers to indicate thathey weready to try the local products and the canarian farmers understood the phrase as is there a guachinche that is if there was a party nearby or a stand or shop set up to taste the wine before finally making the purchase features long before the canarian wines received their first appellation of origin this was the region of tacoronte acentejo the guachinches were mounted in a room or a garage in the family house where the wife of the winemaker offered some tapas made in the family kitchen to accompany the home made wine the guachinche s clients don t look for an exquisite service or commodities they value above all the unique local wines and a familiar and traditional cuisine richomemade stewsuch as chickpeas with smoked meats garbanzas rabbit in spicy salmorejo sause pork ribs with potatoes and corn on the cob stuffed aubergines bubangos potatoes with mojo sause carne fiesta fried marinated pork and potatoes carne de cabra goat s meat churros de pescado local battered fish etc for dessert you can taste the baked milk flan or a typicalocal dessert called bienmesabe or you can also enjoy the locally grown fruits like mango bananas etc in essence the guachinches havemerged as an offshoot of wine production activity and not as properestaurants or food establishments for this reason they have never been regulated and guachinche owners didn t pay any taxes for this activity although over the time many winemakers and their families became restaurateurs on a professional basiso withe time along with legal guachinches plenty of clandestinestablishmentstarted to appear which served cheap wine from latin americas their own and actually functioned as restaurants but withouthe obligations to comply withe fiscal and health requirements applicable to restaurants in recent years legal restaurants and bars have complained heavily abouthe unfair competition from guachinchesince those attracted customers by ridiculously low prices and a wide range of dishes on the menu so in the canarian government has issued a decree regulating the guachinche activity as a complementary tourist activity aimed at a preservation of local traditions and the natural rural environment and introducing a number of rules that limithe food and beverages that can be served at a guachinche andefine its operating conditions these rules include but are not limited to the following file placa distintivo guachinchejpg thumb a distinctive guachinche plaque the wine to be marketed must come from vineyards belonging tor exploited by the person who runs the activity and must be of own production the winery must be duly registered in the register of agrarian industries and in the register of wine producers the person who runs the activity must accredithe origin of the wine through the harvest and production declarations that must be presented in accordance with european regulations the personnel of thestablishment must be certified for sanitary food manipulation training according to the applicable specific regulations the wine marketed in thestablishment must meethe safety and quality characteristics of this type of product according to the applicablegislation the opening period of thestablishment must not exceed four months a year in any case ceasing the activity from the momenthe home grown wine is depleted a maximum of three different culinary dishes can be offered and served as well as pickles nuts and fruit grown by the owner of the activity or produced in the area the food must be made mainly with ingredients also grown or produced by the owner of the activity or with local products orooted in the local culinary tradition the supply of beverageshall be limited to home grown wine and water the owner must inform customers of the prices of products offered through a listing placed in thexterior and interior of thestablishment and invoice the services in accordance withe prices of that listing the owner must inform customers of the opening period of thestablishment and of the days and hours of operation by placing an information poster athentrance the owner must display the distinctive plaque athentrance in the photo curiosities traditional guachinche opening day is the day of st andres november otherwise called the young wine festival the wine of the new harvest is traditionally served with roasted chestnuts maturing athe same time and grilled sardines most guachinches open on that day and close when all their wine isold out for this reason a guachinche seasonormally lasts from late autumn till early spring as withe onset of summer they would haveitherun out of wine or would be obliged to comply withe maximum permitted opening time canarians love their guachincheso much thathey have traditional guachinche routes rutas de guachinches when in a single day they visit several places at once to avoid getting lost on the way they even created a special mobile application guachapp despite the facthat guachinches representhe cultural heritage of tenerife the word guachinche cannot be legally used by canarians in it was registered as a trademark by an individual and since then the canary islands government is trying to challenge the registration and in parallel to register thexpression guachinches de tenerife so thathe legal establishments of this category can use it in their business names most guachinches do not accept credit cards references category drinking establishments category canarian culture","main_words":["file","tenerife","la","victoria","de","acentejo","guachinche","casa","jpg","thumb","guachinche","typical","canary","island","establishment","widely","spread","island","tenerife","lesser","extent","gran","locally","produced","wine","iserved","accompanied","homemade","traditional","food","history","origins","guachinches","lie","wine","tasting","parties","thathe","local","wine","organized","certain","dates","year","sell","products","particular","famous","wine","directly","british","buyers","later","local","consumers","avoid","deal","guachinches","usually","situated","nexto","important","wine_regions","island","northern","la","de","acentejo","la","victoria","de","acentejo","santa","los","also_found","g","mar","valley","g","mar","municipalities","etymology","word","mainly","used","gran","variant","guachinche","typical","tenerife","used","canarian","dialect","spanish","refer","popular","establishment","local","wine","typical","foods","served","according","historical","dictionary","canarian","dialect","derived","latin_american","spanish","word","derived","sip","means","poor","tavern","version","claims","thathe","word","guachinche","comes","thenglish","expression","watching","apparently","used","british","buyers","indicate","thathey","try","local","products","canarian","farmers","understood","phrase","guachinche","party","nearby","stand","shop","set","taste","wine","finally","making","purchase","features","long","canarian","wines","received","first","origin","region","acentejo","guachinches","mounted","room","garage","family","house","wife","winemaker","offered","tapas","made","family","kitchen","accompany","home","made","wine","guachinche","clients","look","service","commodities","value","unique","local","wines","familiar","traditional","cuisine","smoked","meats","rabbit","spicy","pork","ribs","potatoes","corn","stuffed","potatoes","carne","fiesta","fried","marinated","pork","potatoes","carne","de","goat","meat","de","local","battered","fish","etc","dessert","taste","baked","milk","dessert","called","also","enjoy","locally","grown","fruits","like","bananas","etc","guachinches","wine","production","activity","food","establishments","reason","never","regulated","guachinche","owners","pay","taxes","activity","although","time","many","winemakers","families","became","restaurateurs","professional","withe","time","along","legal","guachinches","plenty","appear","served","cheap","wine","actually","functioned","restaurants","withouthe","comply","withe","fiscal","health","requirements","applicable","restaurants","recent_years","legal","restaurants","bars","complained","heavily","abouthe","unfair","competition","attracted","customers","low","prices","wide_range","dishes","menu","canarian","government","issued","decree","regulating","guachinche","activity","tourist","activity","aimed","preservation","local","traditions","natural","rural","environment","introducing","number","rules","limithe","food","beverages","served","guachinche","operating","conditions","rules","include","limited","following","file","thumb","distinctive","guachinche","plaque","wine","marketed","must","come","vineyards","belonging","tor","exploited","person","runs","activity","must","production","winery","must","registered","register","industries","register","wine","producers","person","runs","activity","must","origin","wine","harvest","production","must","presented","accordance","european","regulations","personnel","thestablishment","must","certified","sanitary","food","manipulation","training","according","applicable","specific","regulations","wine","marketed","thestablishment","must","meethe","safety","quality","characteristics","type","product","according","opening","period","thestablishment","must","exceed","four","months","year","case","activity","home","grown","wine","depleted","maximum","three","different","culinary","dishes","offered","served","well","pickles","nuts","fruit","grown","owner","activity","produced","area","food","must","made","mainly","ingredients","also","grown","produced","owner","activity","local","products","local","culinary","tradition","supply","limited","home","grown","wine","water","owner","must","inform","customers","prices","products","offered","listing","placed","thexterior","interior","thestablishment","services","accordance","withe","prices","listing","owner","must","inform","customers","opening","period","thestablishment","days","hours","operation","placing","information","poster","athentrance","owner","must","display","distinctive","plaque","athentrance","photo","traditional","guachinche","opening","day","day","st","november","otherwise","called","young","wine","festival","wine","new","harvest","traditionally","served","roasted","athe_time","grilled","guachinches","open","day","close","wine","isold","reason","guachinche","lasts","late","autumn","till","early","spring","withe","onset","summer","would","wine","would","comply","withe","maximum","permitted","opening","time","love","much","thathey","traditional","guachinche","routes","de","guachinches","single","day","visit","several","places","avoid","getting","lost","way","even","created","special","mobile_application","despite","facthat","guachinches","representhe","cultural_heritage","tenerife","word","guachinche","cannot","legally","used","registered","trademark","individual","since","canary","islands","government","trying","challenge","registration","parallel","register","guachinches","de","tenerife","thathe","legal","use","business","names","guachinches","accept","credit_cards","references_category","drinking_establishments","category","canarian","culture"],"clean_bigrams":[["tenerife","la"],["la","victoria"],["victoria","de"],["de","acentejo"],["acentejo","guachinche"],["guachinche","casa"],["jpg","thumb"],["typical","canary"],["canary","island"],["island","establishment"],["widely","spread"],["lesser","extent"],["locally","produced"],["produced","wine"],["wine","iserved"],["iserved","accompanied"],["homemade","traditional"],["traditional","food"],["food","history"],["guachinches","lie"],["wine","tasting"],["tasting","parties"],["parties","thathe"],["thathe","local"],["local","wine"],["certain","dates"],["wine","directly"],["british","buyers"],["local","consumers"],["usually","situated"],["situated","nexto"],["nexto","important"],["important","wine"],["wine","regions"],["de","acentejo"],["acentejo","la"],["la","victoria"],["victoria","de"],["de","acentejo"],["acentejo","santa"],["g","mar"],["mar","valley"],["g","mar"],["mar","municipalities"],["municipalities","etymology"],["mainly","used"],["variant","guachinche"],["canarian","dialect"],["popular","establishment"],["local","wine"],["typical","foods"],["served","according"],["canarian","dialect"],["latin","american"],["american","spanish"],["spanish","word"],["poor","tavern"],["version","claims"],["claims","thathe"],["thathe","word"],["word","guachinche"],["guachinche","comes"],["thenglish","expression"],["apparently","used"],["british","buyers"],["indicate","thathey"],["local","products"],["canarian","farmers"],["farmers","understood"],["party","nearby"],["shop","set"],["finally","making"],["purchase","features"],["features","long"],["canarian","wines"],["wines","received"],["family","house"],["winemaker","offered"],["tapas","made"],["family","kitchen"],["home","made"],["made","wine"],["unique","local"],["local","wines"],["traditional","cuisine"],["smoked","meats"],["pork","ribs"],["potatoes","carne"],["carne","fiesta"],["fiesta","fried"],["fried","marinated"],["marinated","pork"],["potatoes","carne"],["carne","de"],["local","battered"],["battered","fish"],["fish","etc"],["baked","milk"],["dessert","called"],["also","enjoy"],["locally","grown"],["grown","fruits"],["fruits","like"],["bananas","etc"],["wine","production"],["production","activity"],["food","establishments"],["guachinche","owners"],["activity","although"],["time","many"],["many","winemakers"],["families","became"],["became","restaurateurs"],["withe","time"],["time","along"],["legal","guachinches"],["guachinches","plenty"],["served","cheap"],["cheap","wine"],["latin","americas"],["actually","functioned"],["comply","withe"],["withe","fiscal"],["health","requirements"],["requirements","applicable"],["recent","years"],["years","legal"],["legal","restaurants"],["complained","heavily"],["heavily","abouthe"],["abouthe","unfair"],["unfair","competition"],["attracted","customers"],["low","prices"],["wide","range"],["canarian","government"],["decree","regulating"],["guachinche","activity"],["tourist","activity"],["activity","aimed"],["local","traditions"],["natural","rural"],["rural","environment"],["limithe","food"],["operating","conditions"],["rules","include"],["following","file"],["distinctive","guachinche"],["guachinche","plaque"],["wine","marketed"],["marketed","must"],["must","come"],["vineyards","belonging"],["belonging","tor"],["tor","exploited"],["activity","must"],["winery","must"],["wine","producers"],["activity","must"],["european","regulations"],["thestablishment","must"],["sanitary","food"],["food","manipulation"],["manipulation","training"],["training","according"],["applicable","specific"],["specific","regulations"],["wine","marketed"],["thestablishment","must"],["must","meethe"],["meethe","safety"],["quality","characteristics"],["product","according"],["opening","period"],["thestablishment","must"],["exceed","four"],["four","months"],["home","grown"],["grown","wine"],["three","different"],["different","culinary"],["culinary","dishes"],["pickles","nuts"],["fruit","grown"],["food","must"],["made","mainly"],["ingredients","also"],["also","grown"],["local","products"],["local","culinary"],["culinary","tradition"],["home","grown"],["grown","wine"],["owner","must"],["must","inform"],["inform","customers"],["products","offered"],["listing","placed"],["accordance","withe"],["withe","prices"],["owner","must"],["must","inform"],["inform","customers"],["opening","period"],["information","poster"],["poster","athentrance"],["owner","must"],["must","display"],["distinctive","plaque"],["plaque","athentrance"],["traditional","guachinche"],["guachinche","opening"],["opening","day"],["november","otherwise"],["otherwise","called"],["young","wine"],["wine","festival"],["new","harvest"],["traditionally","served"],["guachinches","open"],["wine","isold"],["late","autumn"],["autumn","till"],["till","early"],["early","spring"],["withe","onset"],["comply","withe"],["withe","maximum"],["maximum","permitted"],["permitted","opening"],["opening","time"],["much","thathey"],["traditional","guachinche"],["guachinche","routes"],["de","guachinches"],["single","day"],["visit","several"],["several","places"],["avoid","getting"],["getting","lost"],["even","created"],["special","mobile"],["mobile","application"],["facthat","guachinches"],["guachinches","representhe"],["representhe","cultural"],["cultural","heritage"],["word","guachinche"],["legally","used"],["canary","islands"],["islands","government"],["guachinches","de"],["de","tenerife"],["thathe","legal"],["legal","establishments"],["establishments","category"],["business","names"],["accept","credit"],["credit","cards"],["cards","references"],["references","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","canarian"],["canarian","culture"]],"all_collocations":["tenerife la","la victoria","victoria de","de acentejo","acentejo guachinche","guachinche casa","typical canary","canary island","island establishment","widely spread","lesser extent","locally produced","produced wine","wine iserved","iserved accompanied","homemade traditional","traditional food","food history","guachinches lie","wine tasting","tasting parties","parties thathe","thathe local","local wine","certain dates","wine directly","british buyers","local consumers","usually situated","situated nexto","nexto important","important wine","wine regions","de acentejo","acentejo la","la victoria","victoria de","de acentejo","acentejo santa","g mar","mar valley","g mar","mar municipalities","municipalities etymology","mainly used","variant guachinche","canarian dialect","popular establishment","local wine","typical foods","served according","canarian dialect","latin american","american spanish","spanish word","poor tavern","version claims","claims thathe","thathe word","word guachinche","guachinche comes","thenglish expression","apparently used","british buyers","indicate thathey","local products","canarian farmers","farmers understood","party nearby","shop set","finally making","purchase features","features long","canarian wines","wines received","family house","winemaker offered","tapas made","family kitchen","home made","made wine","unique local","local wines","traditional cuisine","smoked meats","pork ribs","potatoes carne","carne fiesta","fiesta fried","fried marinated","marinated pork","potatoes carne","carne de","local battered","battered fish","fish etc","baked milk","dessert called","also enjoy","locally grown","grown fruits","fruits like","bananas etc","wine production","production activity","food establishments","guachinche owners","activity although","time many","many winemakers","families became","became restaurateurs","withe time","time along","legal guachinches","guachinches plenty","served cheap","cheap wine","latin americas","actually functioned","comply withe","withe fiscal","health requirements","requirements applicable","recent years","years legal","legal restaurants","complained heavily","heavily abouthe","abouthe unfair","unfair competition","attracted customers","low prices","wide range","canarian government","decree regulating","guachinche activity","tourist activity","activity aimed","local traditions","natural rural","rural environment","limithe food","operating conditions","rules include","following file","distinctive guachinche","guachinche plaque","wine marketed","marketed must","must come","vineyards belonging","belonging tor","tor exploited","activity must","winery must","wine producers","activity must","european regulations","thestablishment must","sanitary food","food manipulation","manipulation training","training according","applicable specific","specific regulations","wine marketed","thestablishment must","must meethe","meethe safety","quality characteristics","product according","opening period","thestablishment must","exceed four","four months","home grown","grown wine","three different","different culinary","culinary dishes","pickles nuts","fruit grown","food must","made mainly","ingredients also","also grown","local products","local culinary","culinary tradition","home grown","grown wine","owner must","must inform","inform customers","products offered","listing placed","accordance withe","withe prices","owner must","must inform","inform customers","opening period","information poster","poster athentrance","owner must","must display","distinctive plaque","plaque athentrance","traditional guachinche","guachinche opening","opening day","november otherwise","otherwise called","young wine","wine festival","new harvest","traditionally served","guachinches open","wine isold","late autumn","autumn till","till early","early spring","withe onset","comply withe","withe maximum","maximum permitted","permitted opening","opening time","much thathey","traditional guachinche","guachinche routes","de guachinches","single day","visit several","several places","avoid getting","getting lost","even created","special mobile","mobile application","facthat guachinches","guachinches representhe","representhe cultural","cultural heritage","word guachinche","legally used","canary islands","islands government","guachinches de","de tenerife","thathe legal","legal establishments","establishments category","business names","accept credit","credit cards","cards references","references category","category drinking","drinking establishments","establishments category","category canarian","canarian culture"],"new_description":"file tenerife la victoria de acentejo guachinche casa jpg thumb guachinche typical canary island establishment widely spread island tenerife lesser extent gran locally produced wine iserved accompanied homemade traditional food history origins guachinches lie wine tasting parties thathe local wine organized certain dates year sell products particular famous wine directly british buyers later local consumers avoid deal guachinches usually situated nexto important wine_regions island northern la de acentejo la victoria de acentejo santa los also_found g mar valley g mar municipalities etymology word mainly used gran variant guachinche typical tenerife used canarian dialect spanish refer popular establishment local wine typical foods served according historical dictionary canarian dialect derived latin_american spanish word derived sip means poor tavern version claims thathe word guachinche comes thenglish expression watching apparently used british buyers indicate thathey try local products canarian farmers understood phrase guachinche party nearby stand shop set taste wine finally making purchase features long canarian wines received first origin region acentejo guachinches mounted room garage family house wife winemaker offered tapas made family kitchen accompany home made wine guachinche clients look service commodities value unique local wines familiar traditional cuisine smoked meats rabbit spicy pork ribs potatoes corn stuffed potatoes carne fiesta fried marinated pork potatoes carne de goat meat de local battered fish etc dessert taste baked milk dessert called also enjoy locally grown fruits like bananas etc guachinches wine production activity food establishments reason never regulated guachinche owners pay taxes activity although time many winemakers families became restaurateurs professional withe time along legal guachinches plenty appear served cheap wine latin_americas actually functioned restaurants withouthe comply withe fiscal health requirements applicable restaurants recent_years legal restaurants bars complained heavily abouthe unfair competition attracted customers low prices wide_range dishes menu canarian government issued decree regulating guachinche activity tourist activity aimed preservation local traditions natural rural environment introducing number rules limithe food beverages served guachinche operating conditions rules include limited following file thumb distinctive guachinche plaque wine marketed must come vineyards belonging tor exploited person runs activity must production winery must registered register industries register wine producers person runs activity must origin wine harvest production must presented accordance european regulations personnel thestablishment must certified sanitary food manipulation training according applicable specific regulations wine marketed thestablishment must meethe safety quality characteristics type product according opening period thestablishment must exceed four months year case activity home grown wine depleted maximum three different culinary dishes offered served well pickles nuts fruit grown owner activity produced area food must made mainly ingredients also grown produced owner activity local products local culinary tradition supply limited home grown wine water owner must inform customers prices products offered listing placed thexterior interior thestablishment services accordance withe prices listing owner must inform customers opening period thestablishment days hours operation placing information poster athentrance owner must display distinctive plaque athentrance photo traditional guachinche opening day day st november otherwise called young wine festival wine new harvest traditionally served roasted athe_time grilled guachinches open day close wine isold reason guachinche lasts late autumn till early spring withe onset summer would wine would comply withe maximum permitted opening time love much thathey traditional guachinche routes de guachinches single day visit several places avoid getting lost way even created special mobile_application despite facthat guachinches representhe cultural_heritage tenerife word guachinche cannot legally used registered trademark individual since canary islands government trying challenge registration parallel register guachinches de tenerife thathe legal establishments_category use business names guachinches accept credit_cards references_category drinking_establishments category canarian culture"},{"title":"Gueridon service","description":"redirect foodservice gueridon service category restauranterminology","main_words":["redirect","foodservice","gueridon","service","category_restauranterminology"],"clean_bigrams":[["redirect","foodservice"],["foodservice","gueridon"],["gueridon","service"],["service","category"],["category","restauranterminology"]],"all_collocations":["redirect foodservice","foodservice gueridon","gueridon service","service category","category restauranterminology"],"new_description":"redirect foodservice gueridon service category_restauranterminology"},{"title":"Guest ranch","description":"the guest ranch also known as a dude ranch is a type of ranch oriented towards visitors or tourism it is considered a form of agritourism guest ranches arose in response to the romanticization of the american westhat began toccur in the late th century in historian frederick jackson turner stated thathe united states frontier was demographically closed this in turn led many people to have feelings of nostalgia for bygone days but also given thathe risks of a true frontier were gone allowed for nostalgia to be indulged in relative safety thus the person referred to as a tenderfoot or a greenhorn by westerners was finally able to visit and enjoy the advantages of western life for a short period of time without needing to risk life and limb doi westhistquar the western adventures ofamous figures like theodore roosevelt were made available to payinguests from cities of theast calledude s in the west doin thearlyears the transcontinental railroad network brought paying visitors to a local depot where a wagon or buggy would be waiting to transport people to a ranch experiences varied some guest ranch visitors expected a somewhat edited and more luxurious version of the cowboy life while others were more tolerant of the odors and timetable of a working ranch while there were guest ranches prior to the th century the trend grew considerably after thend of world war i when postwar prosperity the invention of the automobile and the appearance of western movies all increased popular interest in the west in the dude ranchers association was founded in cody wyoming to representhe needs of this rapidly growing industry in the us guest ranches are now a long established tradition and continue to be a vacation destination depending on the climate some guest ranches are open only in the summer or winter while others offer yearound service santa barbara california offers a range of ranches yearound and is the home of alisal guest as well as hidden valley ranch circle bar b guest ranchoso guest and othersome of the activities offered at many guest ranches include horseback riding target shooting cattle sorting hayrides campfire sing alongs hiking camping whitewaterafting zip lining and fishing college students are often recruited to work at guest ranches during the summer months common jobs offered to college students include housekeeping wrangler dining staff and office staff or babysitters a number of working ranches have survived lean financial times by taking in payinguests for part of the year hunting ranchesome guest ranches cater to huntersome feature native wildlife such as whitetail deer mule deer bison or elk others featurexotic species imported from otheregions and nationsuch as africand india both types of ranches are controversial while many traditional ranch es allow hunters and outfitters on their land to hunt native game the act of confiningame to guarantee a kill is considered unsporting by some the introduction of nonative species on ranches is more controversial because of concerns thathesexotics may escape and contaminate the gene pool of native species or spread previously unknown diseases the advocates of hunting ranches argue in turn thathey helprotect native herds from over hunting and thathe stocking of exotic species actually increases their numbers and may help save them from extinct ion see alsoutfitter farm stay externalinks eastward ho the dude ranch from american studies athe university of virginia category ranches category history of the american west category hospitality services category types of tourism category dude ranches category dude ranches in the united states category tourist attractions in the united states","main_words":["guest","ranch","also_known","dude","ranch","type","ranch","oriented","towards","visitors","tourism","considered","form","agritourism","guest","ranches","arose","response","american","began","late_th","century","historian","frederick","jackson","turner","stated_thathe","united_states","frontier","closed","turn","led","many_people","feelings","nostalgia","days","also","given","thathe","risks","true","frontier","gone","allowed","nostalgia","relative","safety","thus","person","referred","westerners","finally","able","visit","enjoy","advantages","western","life","short","period","time","without","needing","risk","life","western","adventures","ofamous","figures","like","theodore","roosevelt","made_available","cities","theast","west","thearlyears","transcontinental","railroad","network","brought","paying","visitors","local","depot","wagon","buggy","would","waiting","transport","people","ranch","experiences","varied","guest","ranch","visitors","expected","somewhat","edited","luxurious","version","cowboy","life","others","timetable","working","ranch","guest","ranches","prior","th_century","trend","grew","considerably","thend","world_war","postwar","prosperity","invention","automobile","appearance","western","movies","increased","popular","interest","west","dude","association","founded","wyoming","representhe","needs","rapidly","growing","industry","us","guest","ranches","long","established","tradition","continue","vacation","destination","depending","climate","guest","ranches","open","summer","winter","others","offer","yearound","service","santa_barbara","california","offers","range","ranches","yearound","home","guest","well","hidden","valley","ranch","circle","bar","b","guest","guest","activities","offered","many","guest","ranches","include","horseback","riding","target","shooting","cattle","campfire","sing","hiking","camping","zip","lining","fishing","college_students","often","recruited","work","guest","ranches","summer","months","common","jobs","offered","college_students","include","housekeeping","dining","staff","office","staff","number","working","ranches","survived","lean","financial","times","taking","part","year","hunting","guest","ranches","cater","feature","native","wildlife","deer","deer","others","species","imported","otheregions","africand","india","types","ranches","controversial","many","traditional","ranch","allow","hunters","outfitters","land","hunt","native","game","act","guarantee","kill","considered","introduction","species","ranches","controversial","concerns","may","escape","gene","pool","native","species","spread","previously","unknown","diseases","advocates","hunting","ranches","argue","turn","thathey","native","hunting","thathe","exotic","species","actually","increases","numbers","may","help","save","extinct","see","farm","stay","externalinks","dude","ranch","american","studies","athe_university","virginia","category","ranches","category_history","american","west","category_hospitality","tourism_category","dude","ranches","category","dude","ranches","united_states","category_tourist","attractions","united_states"],"clean_bigrams":[["guest","ranch"],["ranch","also"],["also","known"],["dude","ranch"],["ranch","oriented"],["oriented","towards"],["towards","visitors"],["agritourism","guest"],["guest","ranches"],["ranches","arose"],["late","th"],["th","century"],["historian","frederick"],["frederick","jackson"],["jackson","turner"],["turner","stated"],["stated","thathe"],["thathe","united"],["united","states"],["states","frontier"],["turn","led"],["led","many"],["many","people"],["also","given"],["given","thathe"],["thathe","risks"],["true","frontier"],["gone","allowed"],["relative","safety"],["safety","thus"],["person","referred"],["finally","able"],["western","life"],["short","period"],["time","without"],["without","needing"],["risk","life"],["western","adventures"],["adventures","ofamous"],["ofamous","figures"],["figures","like"],["like","theodore"],["theodore","roosevelt"],["made","available"],["transcontinental","railroad"],["railroad","network"],["network","brought"],["brought","paying"],["paying","visitors"],["local","depot"],["buggy","would"],["transport","people"],["ranch","experiences"],["experiences","varied"],["guest","ranch"],["ranch","visitors"],["visitors","expected"],["somewhat","edited"],["luxurious","version"],["cowboy","life"],["working","ranch"],["guest","ranches"],["ranches","prior"],["th","century"],["trend","grew"],["grew","considerably"],["world","war"],["postwar","prosperity"],["western","movies"],["increased","popular"],["popular","interest"],["representhe","needs"],["rapidly","growing"],["growing","industry"],["us","guest"],["guest","ranches"],["long","established"],["established","tradition"],["vacation","destination"],["destination","depending"],["guest","ranches"],["others","offer"],["offer","yearound"],["yearound","service"],["service","santa"],["santa","barbara"],["barbara","california"],["california","offers"],["ranches","yearound"],["hidden","valley"],["valley","ranch"],["ranch","circle"],["circle","bar"],["bar","b"],["b","guest"],["activities","offered"],["many","guest"],["guest","ranches"],["ranches","include"],["include","horseback"],["horseback","riding"],["riding","target"],["target","shooting"],["shooting","cattle"],["campfire","sing"],["hiking","camping"],["zip","lining"],["fishing","college"],["college","students"],["often","recruited"],["guest","ranches"],["summer","months"],["months","common"],["common","jobs"],["jobs","offered"],["college","students"],["students","include"],["include","housekeeping"],["dining","staff"],["office","staff"],["working","ranches"],["survived","lean"],["lean","financial"],["financial","times"],["year","hunting"],["guest","ranches"],["ranches","cater"],["feature","native"],["native","wildlife"],["species","imported"],["africand","india"],["many","traditional"],["traditional","ranch"],["allow","hunters"],["hunt","native"],["native","game"],["may","escape"],["gene","pool"],["native","species"],["spread","previously"],["previously","unknown"],["unknown","diseases"],["hunting","ranches"],["ranches","argue"],["turn","thathey"],["exotic","species"],["species","actually"],["actually","increases"],["may","help"],["help","save"],["farm","stay"],["stay","externalinks"],["dude","ranch"],["american","studies"],["studies","athe"],["athe","university"],["virginia","category"],["category","ranches"],["ranches","category"],["category","history"],["american","west"],["west","category"],["category","hospitality"],["hospitality","services"],["services","category"],["category","types"],["tourism","category"],["category","dude"],["dude","ranches"],["ranches","category"],["category","dude"],["dude","ranches"],["united","states"],["states","category"],["category","tourist"],["tourist","attractions"],["united","states"]],"all_collocations":["guest ranch","ranch also","also known","dude ranch","ranch oriented","oriented towards","towards visitors","agritourism guest","guest ranches","ranches arose","late th","th century","historian frederick","frederick jackson","jackson turner","turner stated","stated thathe","thathe united","united states","states frontier","turn led","led many","many people","also given","given thathe","thathe risks","true frontier","gone allowed","relative safety","safety thus","person referred","finally able","western life","short period","time without","without needing","risk life","western adventures","adventures ofamous","ofamous figures","figures like","like theodore","theodore roosevelt","made available","transcontinental railroad","railroad network","network brought","brought paying","paying visitors","local depot","buggy would","transport people","ranch experiences","experiences varied","guest ranch","ranch visitors","visitors expected","somewhat edited","luxurious version","cowboy life","working ranch","guest ranches","ranches prior","th century","trend grew","grew considerably","world war","postwar prosperity","western movies","increased popular","popular interest","representhe needs","rapidly growing","growing industry","us guest","guest ranches","long established","established tradition","vacation destination","destination depending","guest ranches","others offer","offer yearound","yearound service","service santa","santa barbara","barbara california","california offers","ranches yearound","hidden valley","valley ranch","ranch circle","circle bar","bar b","b guest","activities offered","many guest","guest ranches","ranches include","include horseback","horseback riding","riding target","target shooting","shooting cattle","campfire sing","hiking camping","zip lining","fishing college","college students","often recruited","guest ranches","summer months","months common","common jobs","jobs offered","college students","students include","include housekeeping","dining staff","office staff","working ranches","survived lean","lean financial","financial times","year hunting","guest ranches","ranches cater","feature native","native wildlife","species imported","africand india","many traditional","traditional ranch","allow hunters","hunt native","native game","may escape","gene pool","native species","spread previously","previously unknown","unknown diseases","hunting ranches","ranches argue","turn thathey","exotic species","species actually","actually increases","may help","help save","farm stay","stay externalinks","dude ranch","american studies","studies athe","athe university","virginia category","category ranches","ranches category","category history","american west","west category","category hospitality","hospitality services","services category","category types","tourism category","category dude","dude ranches","ranches category","category dude","dude ranches","united states","states category","category tourist","tourist attractions","united states"],"new_description":"guest ranch also_known dude ranch type ranch oriented towards visitors tourism considered form agritourism guest ranches arose response american began late_th century historian frederick jackson turner stated_thathe united_states frontier closed turn led many_people feelings nostalgia days also given thathe risks true frontier gone allowed nostalgia relative safety thus person referred westerners finally able visit enjoy advantages western life short period time without needing risk life western adventures ofamous figures like theodore roosevelt made_available cities theast west thearlyears transcontinental railroad network brought paying visitors local depot wagon buggy would waiting transport people ranch experiences varied guest ranch visitors expected somewhat edited luxurious version cowboy life others timetable working ranch guest ranches prior th_century trend grew considerably thend world_war postwar prosperity invention automobile appearance western movies increased popular interest west dude association founded wyoming representhe needs rapidly growing industry us guest ranches long established tradition continue vacation destination depending climate guest ranches open summer winter others offer yearound service santa_barbara california offers range ranches yearound home guest well hidden valley ranch circle bar b guest guest activities offered many guest ranches include horseback riding target shooting cattle campfire sing hiking camping zip lining fishing college_students often recruited work guest ranches summer months common jobs offered college_students include housekeeping dining staff office staff number working ranches survived lean financial times taking part year hunting guest ranches cater feature native wildlife deer deer others species imported otheregions africand india types ranches controversial many traditional ranch allow hunters outfitters land hunt native game act guarantee kill considered introduction species ranches controversial concerns may escape gene pool native species spread previously unknown diseases advocates hunting ranches argue turn thathey native hunting thathe exotic species actually increases numbers may help save extinct see farm stay externalinks dude ranch american studies athe_university virginia category ranches category_history american west category_hospitality services_category_types tourism_category dude ranches category dude ranches united_states category_tourist attractions united_states"},{"title":"Guide Bleu","description":"the guide bleu is a series ofrench language guidebook travel guides published by hachette livre which started in as the guide joanne among hachette several guidebook series the guide bleu is addressed to thoseeking discovery in depthachette tourisme history image guide bleu johanne jpg lefthumb starting with a guide to switzerland adolphe joanne published a series of guidebooks in france under the name guides joanne this wasold to louis hachette in allain collomp la d couverte des gorges du verdon histoire du tourismet des travaux hydrauliques disud p from to hachette collaborated withe publisher of the british blue guide series and the guides joanne werenamed the guides bleus in history of the blue guides blue guides web site notes category travel guide books category series of books","main_words":["guide","bleu","series","ofrench","language","guidebook","travel_guides","published","hachette","started","guide","joanne","among","hachette","several","guidebook","series","guide","bleu","addressed","discovery","tourisme","history","image","guide","bleu","jpg","lefthumb","starting","guide","switzerland","joanne","published","series","guidebooks","france","name","guides","joanne","wasold","louis","hachette","la","des","histoire","des","p","hachette","collaborated","withe","publisher","british","guides","joanne","guides","history","blue_guides","blue_guides","web_site","notes","category_travel_guide_books","category_series","books"],"clean_bigrams":[["guide","bleu"],["series","ofrench"],["ofrench","language"],["language","guidebook"],["guidebook","travel"],["travel","guides"],["guides","published"],["guide","joanne"],["joanne","among"],["among","hachette"],["hachette","several"],["several","guidebook"],["guidebook","series"],["guide","bleu"],["tourisme","history"],["history","image"],["image","guide"],["guide","bleu"],["jpg","lefthumb"],["lefthumb","starting"],["joanne","published"],["name","guides"],["guides","joanne"],["louis","hachette"],["hachette","collaborated"],["collaborated","withe"],["withe","publisher"],["british","blue"],["blue","guide"],["guide","series"],["guides","joanne"],["blue","guides"],["guides","blue"],["blue","guides"],["guides","web"],["web","site"],["site","notes"],["notes","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"]],"all_collocations":["guide bleu","series ofrench","ofrench language","language guidebook","guidebook travel","travel guides","guides published","guide joanne","joanne among","among hachette","hachette several","several guidebook","guidebook series","guide bleu","tourisme history","history image","image guide","guide bleu","jpg lefthumb","lefthumb starting","joanne published","name guides","guides joanne","louis hachette","hachette collaborated","collaborated withe","withe publisher","british blue","blue guide","guide series","guides joanne","blue guides","guides blue","blue guides","guides web","web site","site notes","notes category","category travel","travel guide","guide books","books category","category series"],"new_description":"guide bleu series ofrench language guidebook travel_guides published hachette started guide joanne among hachette several guidebook series guide bleu addressed discovery tourisme history image guide bleu jpg lefthumb starting guide switzerland joanne published series guidebooks france name guides joanne wasold louis hachette la des histoire des p hachette collaborated withe publisher british blue_guide_series guides joanne guides history blue_guides blue_guides web_site notes category_travel_guide_books category_series books"},{"title":"Guide book","description":"file guide book of the panama california expositionjpg thumb a guide book to the panama california exposition file guide book pa jpg thumb right an assortment of guide books in japan a guide book or travel guide is a book of information about a place designed for the use of visitors or tourists new oxford american dictionary it will usually include information about sights accommodation restaurants transportation and activities maps of varying detail and historical and cultural information are often includedifferent kinds of guide books exist focusing on different aspects of travel from adventure travel to relaxation or aimed atravelers with different incomes or focusing on sexual orientation or types of dietravel guides can also take the form of travel website s file a tour guide to the famous places of the capital from akizato rito s miyako meisho zue jpg thumb a japanese tourist consulting a tour guide and a guide book from akizato rit s miyako meisho zue antiquity a forerunner of the guidebook was the periplus an itinerary from landmark to landmark of the ports along a coast a periplusuch as the periplus of therythraean sea was a manuscript documenthat listed in order the ports and coastalandmarks with approximate intervening distances thathe captain of a vessel could expecto find along a shore this work was possibly written in the middle of the st century ce it served the same purpose as the lateroman itinerarium of road stops the periegesis or progress around was an established literary genre during thellenistic age a lost work by agaclytus describing olympia greece olympia is referred to by the sudand patriarch photios i of constantinople photiusuda sv dionysius periegetes literally dionysius the traveller was the author of a description of the habitable world in greek language greek hexameter verse written in a terse and elegant style intended for the klismos travellerather than the actual tourist on the ground he is believed to have worked in alexandriand to have flourished around the time of hadrian early remarkably well informed and interestinguidebook was thellados periegesis descriptions of greece of pausanias geographer pausanias of the nd century adj a cuddon the penguin dictionary of literary terms and literary theory london penguin books p this most famous work is a guide to the interesting places works of architecture sculpture and curious customs of ancient greece and istill useful to classicists today withe advent of christianity the guide for theuropeuropean religious pilgrim became a useful guidebook an early account is that of the pilgrim egeria pilgrim egeria who visited the holy land in the th century ce and left a detailed itinerary in the islamic golden age medieval arab world guide books for travelers in search of ancient near east ern artifact archaeology artifacts monuments and treasures were written by social theory sociology in medieval islam arabic treasure hunters and alchemy and chemistry in medieval islam alchemists this was particularly the case in history of arab egypt arab egypt where ancient egypt iantiquities were highly valued traveliterature became popular during the song dynasty of medieval china the genre was called travel record literature youji wenxue and was often written inarrative prosessay andiary style traveliterature authorsuch as fan chengdand xu xiake incorporated a wealth of geographical and topographical information into their writing while the daytrip essay su shi travel record literaturecord of stone bell mountain by the noted poet and statesman su shi presented a philosophical and moral argument as its central purpose in the westhe guidebook developed from the published personal experiences of aristocrats who traveled through europe on the grand tour as the appreciation of art architecture and antiquity becamever moressential ingredients of the noble upbringing so they predominated in the guidebooks particularly those devoted to the italian peninsula richard lassels wrote a series of manuscript guides which wereventually published posthumously in paris and london as the voyage of italy edward chaney the grand tour and the great rebellion geneva turin grand tour guidebooks poured off the presses throughoutheighteenth century those such as patrick brydone s a tour through sicily and malta being read by many who never left england edward chaney e chaney thevolution of the grand tourevised routledge an importantransitional figure from the idiosyncratic style of the grand tour travelogues to the more informative and impersonal guidebook was mariana starke her guide to travel in france and italy served as an essential companion for british travelers to the continent in thearly th century she recognized that withe growing numbers of britons traveling abroad after the majority of hereaders would now be in family groups and on a budget she therefore included for the firstime a wealth of advice on luggage obtaining passports the precise cost ofood and accommodation in each city and even advice on the care of invalid family membershe also devised a system of exclamation mark ratings a forerunner of today star classification staratings her books published by john murray publisher john murray served as a template for later guides in the united states the first published guidebook was gideon minor davison s the fashionable tour published in and theodore dwight s the northern traveller and henry gilpin s the northern tour both from richard gassan the first american tourist guidebooks authorship and print culture of the s book history pp modern guidebook file john murray b jpg thumb left px john murray john murray the modern guidebook emerged in the s withe burgeoning market for long distance tourism the publisher john murray publisher john murray began printing the murray s handbooks for travellers in london from the series covered tourist destinations in europe asiand northern africand he introduced the concept of sights whiche rated in terms of their significance using stars for starke s exclamation points according to scholar james buzard the murray stylexemplified thexhaustive rational planning that was much an ideal of themerging tourist industry as it was of british commercial and industrial organization generally image karl baedekerjpg thumb px karl baedeker in germany karl baedeker acquired the publishing house ofranz friedrich r hling in koblenz which in had published a handbook for travellers by professor johannes august klein entitled rheinreise von mainz bis c ln ein handbuch f r schnellreisende a rhine journey fromainz to cologne a handbook for travellers on the move he published this book with little changes for the nexten years which provided the seeds for baedeker s new approach to travel guides after klein died he decided to publish a new edition in to whiche added many of his own ideas on what he thought a travel guide should offer the traveller baedeker s ultimate aim was to free the traveller from having to look for information anywhere outside the travel guide whether about routes transport accommodation restaurants tipping sights walks or prices baedeker emulated the style of john murray publisher john murray s guidebooks but included unprecedentedetailed information in baedeker introduced histaratings for sights attractions and lodgings following mrstarke s and murray s this edition was also his first experimental red guide he also decided to call his travel guides handbooks following thexample of john murray iii baedeker s early guides had tan covers but from onwards murray s red bindings and gilt lettering became the familiar hallmark of all baedeker guides as well and the content became famous for its clarity detail and accuracyjames buzzard the grand tour and after in the cambridge companion to travel writing pp image murrays handbook for travellers in turkeypng thumb right cover of handbook for travellers in turkey px baedeker and murray produced impersonal objective guides works prior to this combined factual information and personal sentimental reflection the availability of the books by baedeker and murray helped sharpen and formalize the complementary genre of the personal traveliterature travelogue which was freed from the burden of serving as a guide book the baedeker and murray guide books were hugely popular and were standard resources for travelers well into the th century as william wetmore story said in the s every englishman abroad carries a murray for information and a george gordon byron th baron byron for sentiment and finds out by them what he is to know and feel by every step during world war i the two editors of baedeker s english language titles lefthe company and acquired the rights to murray s handbooks for travellers murray s handbooks the resultinguide books called the blue guides to distinguish them from the red covered baedekers constituted one of the major guide book series for much of the th century and are still published today post ww following world war ii two new names emerged which combined europeand american perspectives on international travel eugene fodor writer eugene fodor a hungarian born travel writing author of travel articles who had emigrated to the united states before the war wrote guidebooks which introduced english reading audiences to continental europe arthur frommer an american soldier stationed in europe during the korean war used his experience traveling around the continent as the basis for europe on a day which introduced readers toptions for budgetravel in europe both authors guidebooks became the foundations for extensive series eventually covering destinations around the world including the united states in the decades that followed let s go travel guides let s go lonely planet insight guides rough guides and a wide variety of similar travel guides were developed with varying focuses mountain guides file snowdonia scramblingjpg thumb right scrambling on crib goch snowdonia walespecialist guides for mountains have a long history owing to the special needs of mountaineering climbing hill walking and scrambling the guides by w a poucher for example are widely used for the hill regions of united kingdom britain there are many more special guides to the numerous climbingrounds in britain published by the climbers club for example digital world withemergence of digital technology many publishers turned to electronic distribution either in addition tor instead of print publication this can take the form of downloadable documents foreading on a portable computer or hand heldevice such a pda or ipod or online information accessible via web site this enabled guidebook publishers to keep their information more currentraditional guide book incumbents lonely planet frommers rough guides and in your pocket city guides and newcomersuch aschmap or ulysses travel guides are now offering travel guides for download new online and interactive guidesuch as tripadvisor wikivoyage and travellerspoint enable individual travelers to share their own experiences and contribute information to the guide wikivoyage cityleaves and travellerspoint make thentire contents of their guides updatable by users and make the information in their guides available as open content free for others to use guide book publishers this list is a select sample of the full range of english language guide book publishers either contemporary or historical bradshaw s guide wj adams american automobile association aaa canadian automobile association caa tourbook appletons travel guides d appleton co baedeker berlitz corporation berlitz black s guides adam and charles black blue guides bradtravel guides bradt cicerone publisher cicerone cook s travellers handbooks thomas cook son dorling kindersley dk eyewitness travel falconguides fodor s for dummies forbes travel guide footprint books frommer s harper s hand book for travellers harper brothers insight guides in your pocket city guides in your pocket let s go travel guides let s go lonely planet michelin guide moon publications moon handbooks mrsmith travel guide mrsmith murray s handbooks for travellers john murray national geographic traveler nicholson guides not for tourists rick steves rough guideschmap spartacus international gay guide spotted by locals time out company time outouring club italiano vinologue wallpaper magazine wallpaper city guides ward lock travel guides ward lock co weird travel guides weird wikivoyage wordtravelscom see also audioguide mirabilia urbis romae de mirabilibus urbis romae list of literary descriptions of cities beforenotourism outdoor literature tourism travel website travel writing traveliterature textbook for academic guide books ie brief reference works guide to reference selective guide to print and online reference sources category travel guide books guide book category travel books guide book category travel gear category non fiction genres","main_words":["file","guide_book","panama","california","thumb","guide_book","panama","california","exposition","file","guide_book","jpg","thumb","right","guide_books","japan","guide_book","travel_guide_book","information","place","designed","use","visitors","tourists","new","oxford","american","dictionary","usually","include","information","sights","accommodation","restaurants","transportation","activities","maps","varying","detail","historical","cultural","information","often","kinds","guide_books","exist","focusing","different","aspects","travel_adventure_travel","relaxation","aimed","different","incomes","focusing","sexual","orientation","types","guides","also","take","form","travel_website","file","tour_guide","famous","places","capital","akizato","miyako","meisho","zue","jpg","thumb","japanese","tourist","consulting","tour_guide","guide_book","akizato","rit","miyako","meisho","zue","antiquity","forerunner","guidebook","itinerary","landmark","landmark","ports","along","coast","sea","manuscript","listed","order","ports","approximate","distances","thathe","captain","vessel","could","expecto","find","along","shore","work","possibly","written","middle","st_century","served","purpose","road","stops","progress","around","established","literary","genre","age","lost","work","describing","olympia","greece","olympia","referred","constantinople","literally","traveller","author","description","world","greek","language","greek","verse","written","elegant","style","intended","actual","tourist","ground","believed","worked","flourished","around","time","early","remarkably","well","informed","descriptions","greece","pausanias","geographer","pausanias","century","penguin","dictionary","literary","terms","literary","theory","london","penguin","books_p","famous","work","guide","interesting","places","works","architecture","sculpture","curious","customs","ancient_greece","istill","useful","today","withe_advent","christianity","guide","religious","pilgrim","became","useful","guidebook","early","account","pilgrim","pilgrim","visited","holy_land","th_century","left","detailed","itinerary","islamic","golden_age","medieval","arab","world","guide_books","travelers","search","ancient","near","east","archaeology","artifacts","monuments","treasures","written","social","theory","sociology","medieval","islam","arabic","treasure","hunters","chemistry","medieval","islam","alchemists","particularly","case","history","arab","egypt","arab","egypt","ancient","egypt","highly","valued","traveliterature","became_popular","song","dynasty","medieval","china","genre","called","travel","record","literature","often","written","style","traveliterature","authorsuch","fan","incorporated","wealth","geographical","topographical","information","writing","essay","shi","travel","record","stone","bell","mountain","noted","poet","statesman","shi","presented","philosophical","moral","argument","central","purpose","westhe","guidebook","developed","published","personal","experiences","aristocrats","traveled","europe","grand_tour","appreciation","art","architecture","antiquity","ingredients","noble","guidebooks","particularly","devoted","italian","peninsula","richard","lassels","wrote","series","manuscript","guides","published","paris","london","voyage","italy","edward","chaney","grand_tour","great","rebellion","geneva","turin","grand_tour","guidebooks","poured","presses","century","patrick","tour","sicily","malta","read","many","never","left","england","edward","chaney","e","chaney","thevolution","grand","routledge","figure","style","grand_tour","travelogues","informative","guidebook","guide","travel","france","italy","served","essential","companion","continent","thearly_th","century","recognized","withe","growing","numbers","traveling","abroad","majority","would","family","groups","budget","therefore","included","firstime","wealth","advice","luggage","obtaining","precise","cost","ofood","accommodation","city","even","advice","care","family","also","devised","system","mark","ratings","forerunner","today","star","classification","staratings","books_published","john_murray","publisher","john_murray","served","later","guides","united_states","first_published","guidebook","gideon","minor","fashionable","tour","published","theodore","dwight","northern","traveller","henry","northern","tour","richard","first_american","print","culture","book","history","pp","modern","guidebook","file","john_murray","b","jpg","thumb","left_px","john_murray","john_murray","modern","guidebook","emerged","withe","burgeoning","market","long_distance","tourism","publisher","john_murray","publisher","john_murray","began","printing","murray","handbooks","travellers","london","series","covered","tourist_destinations","europe","asiand","northern","africand","introduced","concept","sights","whiche","rated","terms","significance","using","stars","points","according","scholar","james","murray","rational","planning","much","ideal","themerging","tourist_industry","british","commercial","industrial","organization","generally","image","karl","thumb","px","karl_baedeker","germany","karl_baedeker","acquired","publishing_house","r","published","handbook","travellers","professor","johannes","august","klein","entitled","von","c","ein","f","r","rhine","journey","cologne","handbook","travellers","move","published","book","little","changes","years","provided","seeds","baedeker","new","approach","travel_guides","klein","died","decided","publish","new","edition","whiche","added","many","ideas","thought","travel_guide","offer","traveller","baedeker","ultimate","aim","free","traveller","look","information","anywhere","outside","travel_guide","whether","routes","transport","accommodation","restaurants","tipping","sights","walks","prices","baedeker","emulated","style","john_murray","publisher","john_murray","guidebooks","included","information","baedeker","introduced","sights","attractions","lodgings","following","murray","edition","also","first","experimental","red","guide","also","decided","call","travel_guides","handbooks","following","thexample","john_murray","iii","baedeker","early","guides","tan","covers","onwards","murray","red","lettering","became","familiar","baedeker_guides","well","content","became","famous","detail","grand_tour","cambridge","companion","travel_writing","pp","image","handbook","travellers","thumb","right","cover","handbook","travellers","turkey","px","baedeker","murray","produced","objective","guides","works","prior","combined","information","personal","reflection","availability","books","baedeker","murray","helped","genre","personal","traveliterature","travelogue","freed","burden","serving","guide_book","baedeker","murray","guide_books","popular","standard","resources","travelers","well","th_century","william","story","said","every","englishman","abroad","carries","murray","information","george","gordon","byron","th","baron","byron","sentiment","finds","know","feel","every","step","world_war","two","editors","baedeker","english_language","titles","lefthe","company","acquired","rights","murray","handbooks","travellers","murray","handbooks","books","called","blue_guides","distinguish","red","covered","baedekers","constituted","one","major","guide_book","series","much","th_century","still","published","today","post","following","world_war","ii","two","new","names","emerged","combined","europeand","american","perspectives","international_travel","eugene","fodor","writer","eugene","fodor","hungarian","born","travel_writing","author","travel","articles","united_states","war","wrote","guidebooks","introduced","english","reading","audiences","continental_europe","arthur_frommer","american","soldier","europe","korean","war","used","experience","traveling","around","continent","basis","europe","day","introduced","readers","budgetravel","europe","authors","guidebooks","became","foundations","extensive","series","eventually","covering","destinations","around","world","including","united_states","decades","followed","let","go_travel_guides","let","go","lonely_planet","insight_guides","rough_guides","wide_variety","similar","travel_guides","developed","varying","focuses","mountain","guides","file","snowdonia","thumb","right","crib","snowdonia","guides","mountains","long","history","owing","special","needs","mountaineering","climbing","hill","walking","guides","w","example","widely_used","hill","regions","united_kingdom","britain","many","special","guides","numerous","britain","published","climbers","club","example","digital","world","digital","technology","many","publishers","turned","electronic","distribution","either","addition","tor","instead","print","publication","take","form","documents","portable","computer","hand","online","information","accessible","via","web_site","enabled","guidebook","publishers","keep","information","guide_book","lonely_planet","rough_guides","pocket","city_guides","travel_guides","offering","travel_guides","download","new","online","interactive","guidesuch","tripadvisor","wikivoyage","enable","individual","travelers","share","experiences","contribute","information","guide","wikivoyage","make","thentire","contents","guides","users","make","information","guides","available","open","content","free","others","use","guide_book","publishers","list","select","sample","full","range","english_language","guide_book","publishers","either","contemporary","historical","bradshaw","guide","adams","american_automobile_association","aaa","canadian","automobile_association","caa","tourbook","appletons","travel_guides","appleton","baedeker","corporation","black","guides","adam","charles","black","blue_guides","bradtravel","guides","bradt","cicerone","publisher","cicerone","cook","travellers","handbooks","thomas_cook_son","dorling","kindersley","eyewitness","travel","fodor","forbes_travel_guide","footprint","books","frommer","harper","hand_book","travellers","harper","brothers","insight_guides","pocket","city_guides","pocket","let","go_travel_guides","let","go","lonely_planet","michelin_guide","moon","publications","moon","handbooks","mrsmith","travel_guide","mrsmith","murray","handbooks","travellers","john_murray","national_geographic","traveler","nicholson","guides","tourists","rick","steves","rough","spartacus","international_gay","guide","spotted","locals","time","company","time","club","italiano","vinologue","wallpaper","magazine","wallpaper","city_guides","ward_lock","travel_guides","ward_lock","weird","travel_guides","weird","wikivoyage","see_also","urbis","romae","de","urbis","romae","list","literary","descriptions","cities","outdoor","literature","travel_writing","traveliterature","textbook","academic","guide_books","brief","reference","works","guide","reference","selective","guide","print","online","reference","sources","category_travel_guide_books","guide_book","category_travel_books","guide_book","category_travel","gear","category_non","fiction","genres"],"clean_bigrams":[["file","guide"],["guide","book"],["panama","california"],["guide","book"],["panama","california"],["california","exposition"],["exposition","file"],["file","guide"],["guide","book"],["jpg","thumb"],["thumb","right"],["guide","books"],["guide","book"],["travel","guide"],["guide","book"],["place","designed"],["tourists","new"],["new","oxford"],["oxford","american"],["american","dictionary"],["usually","include"],["include","information"],["sights","accommodation"],["accommodation","restaurants"],["restaurants","transportation"],["activities","maps"],["varying","detail"],["cultural","information"],["guide","books"],["books","exist"],["exist","focusing"],["different","aspects"],["adventure","travel"],["different","incomes"],["sexual","orientation"],["also","take"],["travel","website"],["tour","guide"],["famous","places"],["miyako","meisho"],["meisho","zue"],["zue","jpg"],["jpg","thumb"],["japanese","tourist"],["tourist","consulting"],["tour","guide"],["guide","book"],["akizato","rit"],["miyako","meisho"],["meisho","zue"],["zue","antiquity"],["ports","along"],["distances","thathe"],["thathe","captain"],["vessel","could"],["could","expecto"],["expecto","find"],["find","along"],["possibly","written"],["st","century"],["road","stops"],["progress","around"],["established","literary"],["literary","genre"],["lost","work"],["describing","olympia"],["olympia","greece"],["greece","olympia"],["greek","language"],["language","greek"],["verse","written"],["elegant","style"],["style","intended"],["actual","tourist"],["flourished","around"],["early","remarkably"],["remarkably","well"],["well","informed"],["pausanias","geographer"],["geographer","pausanias"],["penguin","dictionary"],["literary","terms"],["literary","theory"],["theory","london"],["london","penguin"],["penguin","books"],["books","p"],["famous","work"],["interesting","places"],["places","works"],["architecture","sculpture"],["curious","customs"],["ancient","greece"],["istill","useful"],["today","withe"],["withe","advent"],["religious","pilgrim"],["pilgrim","became"],["useful","guidebook"],["early","account"],["holy","land"],["th","century"],["detailed","itinerary"],["islamic","golden"],["golden","age"],["age","medieval"],["medieval","arab"],["arab","world"],["world","guide"],["guide","books"],["ancient","near"],["near","east"],["archaeology","artifacts"],["artifacts","monuments"],["social","theory"],["theory","sociology"],["medieval","islam"],["islam","arabic"],["arabic","treasure"],["treasure","hunters"],["medieval","islam"],["islam","alchemists"],["arab","egypt"],["egypt","arab"],["arab","egypt"],["ancient","egypt"],["highly","valued"],["valued","traveliterature"],["traveliterature","became"],["became","popular"],["song","dynasty"],["medieval","china"],["called","travel"],["travel","record"],["record","literature"],["often","written"],["style","traveliterature"],["traveliterature","authorsuch"],["topographical","information"],["shi","travel"],["travel","record"],["stone","bell"],["bell","mountain"],["noted","poet"],["shi","presented"],["moral","argument"],["central","purpose"],["westhe","guidebook"],["guidebook","developed"],["published","personal"],["personal","experiences"],["grand","tour"],["art","architecture"],["guidebooks","particularly"],["italian","peninsula"],["peninsula","richard"],["richard","lassels"],["lassels","wrote"],["manuscript","guides"],["italy","edward"],["edward","chaney"],["grand","tour"],["great","rebellion"],["rebellion","geneva"],["geneva","turin"],["turin","grand"],["grand","tour"],["tour","guidebooks"],["guidebooks","poured"],["never","left"],["left","england"],["england","edward"],["edward","chaney"],["chaney","e"],["e","chaney"],["chaney","thevolution"],["grand","tour"],["tour","travelogues"],["italy","served"],["essential","companion"],["british","travelers"],["thearly","th"],["th","century"],["withe","growing"],["growing","numbers"],["traveling","abroad"],["family","groups"],["therefore","included"],["luggage","obtaining"],["precise","cost"],["cost","ofood"],["even","advice"],["also","devised"],["mark","ratings"],["today","star"],["star","classification"],["classification","staratings"],["books","published"],["john","murray"],["murray","publisher"],["publisher","john"],["john","murray"],["murray","served"],["later","guides"],["united","states"],["first","published"],["published","guidebook"],["gideon","minor"],["fashionable","tour"],["tour","published"],["theodore","dwight"],["northern","traveller"],["northern","tour"],["first","american"],["american","tourist"],["tourist","guidebooks"],["print","culture"],["book","history"],["history","pp"],["pp","modern"],["modern","guidebook"],["guidebook","file"],["file","john"],["john","murray"],["murray","b"],["b","jpg"],["jpg","thumb"],["thumb","left"],["left","px"],["px","john"],["john","murray"],["murray","john"],["john","murray"],["modern","guidebook"],["guidebook","emerged"],["withe","burgeoning"],["burgeoning","market"],["long","distance"],["distance","tourism"],["publisher","john"],["john","murray"],["murray","publisher"],["publisher","john"],["john","murray"],["murray","began"],["began","printing"],["series","covered"],["covered","tourist"],["tourist","destinations"],["europe","asiand"],["asiand","northern"],["northern","africand"],["sights","whiche"],["whiche","rated"],["significance","using"],["using","stars"],["points","according"],["scholar","james"],["rational","planning"],["themerging","tourist"],["tourist","industry"],["british","commercial"],["industrial","organization"],["organization","generally"],["generally","image"],["image","karl"],["thumb","px"],["px","karl"],["karl","baedeker"],["germany","karl"],["karl","baedeker"],["baedeker","acquired"],["publishing","house"],["friedrich","r"],["professor","johannes"],["johannes","august"],["august","klein"],["klein","entitled"],["f","r"],["rhine","journey"],["little","changes"],["new","approach"],["travel","guides"],["klein","died"],["new","edition"],["whiche","added"],["added","many"],["travel","guide"],["traveller","baedeker"],["ultimate","aim"],["information","anywhere"],["anywhere","outside"],["travel","guide"],["guide","whether"],["routes","transport"],["transport","accommodation"],["accommodation","restaurants"],["restaurants","tipping"],["tipping","sights"],["sights","walks"],["prices","baedeker"],["baedeker","emulated"],["john","murray"],["murray","publisher"],["publisher","john"],["john","murray"],["baedeker","introduced"],["sights","attractions"],["lodgings","following"],["first","experimental"],["experimental","red"],["red","guide"],["also","decided"],["travel","guides"],["guides","handbooks"],["handbooks","following"],["following","thexample"],["john","murray"],["murray","iii"],["iii","baedeker"],["early","guides"],["tan","covers"],["onwards","murray"],["lettering","became"],["baedeker","guides"],["content","became"],["became","famous"],["grand","tour"],["cambridge","companion"],["travel","writing"],["writing","pp"],["pp","image"],["thumb","right"],["right","cover"],["turkey","px"],["px","baedeker"],["murray","produced"],["objective","guides"],["guides","works"],["works","prior"],["murray","helped"],["personal","traveliterature"],["traveliterature","travelogue"],["guide","book"],["murray","guide"],["guide","books"],["standard","resources"],["travelers","well"],["th","century"],["story","said"],["every","englishman"],["englishman","abroad"],["abroad","carries"],["george","gordon"],["gordon","byron"],["byron","th"],["th","baron"],["baron","byron"],["every","step"],["world","war"],["two","editors"],["english","language"],["language","titles"],["titles","lefthe"],["lefthe","company"],["travellers","murray"],["books","called"],["blue","guides"],["red","covered"],["covered","baedekers"],["baedekers","constituted"],["constituted","one"],["major","guide"],["guide","book"],["book","series"],["th","century"],["still","published"],["published","today"],["today","post"],["following","world"],["world","war"],["war","ii"],["ii","two"],["two","new"],["new","names"],["names","emerged"],["combined","europeand"],["europeand","american"],["american","perspectives"],["international","travel"],["travel","eugene"],["eugene","fodor"],["fodor","writer"],["writer","eugene"],["eugene","fodor"],["hungarian","born"],["born","travel"],["travel","writing"],["writing","author"],["travel","articles"],["united","states"],["war","wrote"],["wrote","guidebooks"],["introduced","english"],["english","reading"],["reading","audiences"],["continental","europe"],["europe","arthur"],["arthur","frommer"],["american","soldier"],["korean","war"],["war","used"],["experience","traveling"],["traveling","around"],["introduced","readers"],["authors","guidebooks"],["guidebooks","became"],["extensive","series"],["series","eventually"],["eventually","covering"],["covering","destinations"],["destinations","around"],["world","including"],["united","states"],["followed","let"],["go","travel"],["travel","guides"],["guides","let"],["go","lonely"],["lonely","planet"],["planet","insight"],["insight","guides"],["guides","rough"],["rough","guides"],["wide","variety"],["similar","travel"],["travel","guides"],["varying","focuses"],["focuses","mountain"],["mountain","guides"],["guides","file"],["file","snowdonia"],["thumb","right"],["long","history"],["history","owing"],["special","needs"],["mountaineering","climbing"],["climbing","hill"],["hill","walking"],["widely","used"],["hill","regions"],["united","kingdom"],["kingdom","britain"],["special","guides"],["britain","published"],["climbers","club"],["example","digital"],["digital","world"],["digital","technology"],["technology","many"],["many","publishers"],["publishers","turned"],["electronic","distribution"],["distribution","either"],["addition","tor"],["tor","instead"],["print","publication"],["portable","computer"],["online","information"],["information","accessible"],["accessible","via"],["via","web"],["web","site"],["enabled","guidebook"],["guidebook","publishers"],["guide","book"],["lonely","planet"],["rough","guides"],["pocket","city"],["city","guides"],["travel","guides"],["offering","travel"],["travel","guides"],["download","new"],["new","online"],["interactive","guidesuch"],["tripadvisor","wikivoyage"],["enable","individual"],["individual","travelers"],["contribute","information"],["guide","wikivoyage"],["make","thentire"],["thentire","contents"],["guides","available"],["open","content"],["content","free"],["use","guide"],["guide","book"],["book","publishers"],["select","sample"],["full","range"],["english","language"],["language","guide"],["guide","book"],["book","publishers"],["publishers","either"],["either","contemporary"],["historical","bradshaw"],["adams","american"],["american","automobile"],["automobile","association"],["association","aaa"],["aaa","canadian"],["canadian","automobile"],["automobile","association"],["association","caa"],["caa","tourbook"],["tourbook","appletons"],["appletons","travel"],["travel","guides"],["guides","adam"],["charles","black"],["black","blue"],["blue","guides"],["guides","bradtravel"],["bradtravel","guides"],["guides","bradt"],["bradt","cicerone"],["cicerone","publisher"],["publisher","cicerone"],["cicerone","cook"],["travellers","handbooks"],["handbooks","thomas"],["thomas","cook"],["cook","son"],["son","dorling"],["dorling","kindersley"],["eyewitness","travel"],["forbes","travel"],["travel","guide"],["guide","footprint"],["footprint","books"],["books","frommer"],["hand","book"],["travellers","harper"],["harper","brothers"],["brothers","insight"],["insight","guides"],["pocket","city"],["city","guides"],["pocket","let"],["go","travel"],["travel","guides"],["guides","let"],["go","lonely"],["lonely","planet"],["planet","michelin"],["michelin","guide"],["guide","moon"],["moon","publications"],["publications","moon"],["moon","handbooks"],["handbooks","mrsmith"],["mrsmith","travel"],["travel","guide"],["guide","mrsmith"],["mrsmith","murray"],["travellers","john"],["john","murray"],["murray","national"],["national","geographic"],["geographic","traveler"],["traveler","nicholson"],["nicholson","guides"],["tourists","rick"],["rick","steves"],["steves","rough"],["spartacus","international"],["international","gay"],["gay","guide"],["guide","spotted"],["locals","time"],["company","time"],["club","italiano"],["italiano","vinologue"],["vinologue","wallpaper"],["wallpaper","magazine"],["magazine","wallpaper"],["wallpaper","city"],["city","guides"],["guides","ward"],["ward","lock"],["lock","travel"],["travel","guides"],["guides","ward"],["ward","lock"],["weird","travel"],["travel","guides"],["guides","weird"],["weird","wikivoyage"],["see","also"],["urbis","romae"],["romae","de"],["urbis","romae"],["romae","list"],["literary","descriptions"],["outdoor","literature"],["literature","tourism"],["tourism","travel"],["travel","website"],["website","travel"],["travel","writing"],["writing","traveliterature"],["traveliterature","textbook"],["academic","guide"],["guide","books"],["brief","reference"],["reference","works"],["works","guide"],["reference","selective"],["selective","guide"],["online","reference"],["reference","sources"],["sources","category"],["category","travel"],["travel","guide"],["guide","books"],["books","guide"],["guide","book"],["book","category"],["category","travel"],["travel","books"],["books","guide"],["guide","book"],["book","category"],["category","travel"],["travel","gear"],["gear","category"],["category","non"],["non","fiction"],["fiction","genres"]],"all_collocations":["file guide","guide book","panama california","guide book","panama california","california exposition","exposition file","file guide","guide book","guide books","guide book","travel guide","guide book","place designed","tourists new","new oxford","oxford american","american dictionary","usually include","include information","sights accommodation","accommodation restaurants","restaurants transportation","activities maps","varying detail","cultural information","guide books","books exist","exist focusing","different aspects","adventure travel","different incomes","sexual orientation","also take","travel website","tour guide","famous places","miyako meisho","meisho zue","zue jpg","japanese tourist","tourist consulting","tour guide","guide book","akizato rit","miyako meisho","meisho zue","zue antiquity","ports along","distances thathe","thathe captain","vessel could","could expecto","expecto find","find along","possibly written","st century","road stops","progress around","established literary","literary genre","lost work","describing olympia","olympia greece","greece olympia","greek language","language greek","verse written","elegant style","style intended","actual tourist","flourished around","early remarkably","remarkably well","well informed","pausanias geographer","geographer pausanias","penguin dictionary","literary terms","literary theory","theory london","london penguin","penguin books","books p","famous work","interesting places","places works","architecture sculpture","curious customs","ancient greece","istill useful","today withe","withe advent","religious pilgrim","pilgrim became","useful guidebook","early account","holy land","th century","detailed itinerary","islamic golden","golden age","age medieval","medieval arab","arab world","world guide","guide books","ancient near","near east","archaeology artifacts","artifacts monuments","social theory","theory sociology","medieval islam","islam arabic","arabic treasure","treasure hunters","medieval islam","islam alchemists","arab egypt","egypt arab","arab egypt","ancient egypt","highly valued","valued traveliterature","traveliterature became","became popular","song dynasty","medieval china","called travel","travel record","record literature","often written","style traveliterature","traveliterature authorsuch","topographical information","shi travel","travel record","stone bell","bell mountain","noted poet","shi presented","moral argument","central purpose","westhe guidebook","guidebook developed","published personal","personal experiences","grand tour","art architecture","guidebooks particularly","italian peninsula","peninsula richard","richard lassels","lassels wrote","manuscript guides","italy edward","edward chaney","grand tour","great rebellion","rebellion geneva","geneva turin","turin grand","grand tour","tour guidebooks","guidebooks poured","never left","left england","england edward","edward chaney","chaney e","e chaney","chaney thevolution","grand tour","tour travelogues","italy served","essential companion","british travelers","thearly th","th century","withe growing","growing numbers","traveling abroad","family groups","therefore included","luggage obtaining","precise cost","cost ofood","even advice","also devised","mark ratings","today star","star classification","classification staratings","books published","john murray","murray publisher","publisher john","john murray","murray served","later guides","united states","first published","published guidebook","gideon minor","fashionable tour","tour published","theodore dwight","northern traveller","northern tour","first american","american tourist","tourist guidebooks","print culture","book history","history pp","pp modern","modern guidebook","guidebook file","file john","john murray","murray b","b jpg","left px","px john","john murray","murray john","john murray","modern guidebook","guidebook emerged","withe burgeoning","burgeoning market","long distance","distance tourism","publisher john","john murray","murray publisher","publisher john","john murray","murray began","began printing","series covered","covered tourist","tourist destinations","europe asiand","asiand northern","northern africand","sights whiche","whiche rated","significance using","using stars","points according","scholar james","rational planning","themerging tourist","tourist industry","british commercial","industrial organization","organization generally","generally image","image karl","px karl","karl baedeker","germany karl","karl baedeker","baedeker acquired","publishing house","friedrich r","professor johannes","johannes august","august klein","klein entitled","f r","rhine journey","little changes","new approach","travel guides","klein died","new edition","whiche added","added many","travel guide","traveller baedeker","ultimate aim","information anywhere","anywhere outside","travel guide","guide whether","routes transport","transport accommodation","accommodation restaurants","restaurants tipping","tipping sights","sights walks","prices baedeker","baedeker emulated","john murray","murray publisher","publisher john","john murray","baedeker introduced","sights attractions","lodgings following","first experimental","experimental red","red guide","also decided","travel guides","guides handbooks","handbooks following","following thexample","john murray","murray iii","iii baedeker","early guides","tan covers","onwards murray","lettering became","baedeker guides","content became","became famous","grand tour","cambridge companion","travel writing","writing pp","pp image","right cover","turkey px","px baedeker","murray produced","objective guides","guides works","works prior","murray helped","personal traveliterature","traveliterature travelogue","guide book","murray guide","guide books","standard resources","travelers well","th century","story said","every englishman","englishman abroad","abroad carries","george gordon","gordon byron","byron th","th baron","baron byron","every step","world war","two editors","english language","language titles","titles lefthe","lefthe company","travellers murray","books called","blue guides","red covered","covered baedekers","baedekers constituted","constituted one","major guide","guide book","book series","th century","still published","published today","today post","following world","world war","war ii","ii two","two new","new names","names emerged","combined europeand","europeand american","american perspectives","international travel","travel eugene","eugene fodor","fodor writer","writer eugene","eugene fodor","hungarian born","born travel","travel writing","writing author","travel articles","united states","war wrote","wrote guidebooks","introduced english","english reading","reading audiences","continental europe","europe arthur","arthur frommer","american soldier","korean war","war used","experience traveling","traveling around","introduced readers","authors guidebooks","guidebooks became","extensive series","series eventually","eventually covering","covering destinations","destinations around","world including","united states","followed let","go travel","travel guides","guides let","go lonely","lonely planet","planet insight","insight guides","guides rough","rough guides","wide variety","similar travel","travel guides","varying focuses","focuses mountain","mountain guides","guides file","file snowdonia","long history","history owing","special needs","mountaineering climbing","climbing hill","hill walking","widely used","hill regions","united kingdom","kingdom britain","special guides","britain published","climbers club","example digital","digital world","digital technology","technology many","many publishers","publishers turned","electronic distribution","distribution either","addition tor","tor instead","print publication","portable computer","online information","information accessible","accessible via","via web","web site","enabled guidebook","guidebook publishers","guide book","lonely planet","rough guides","pocket city","city guides","travel guides","offering travel","travel guides","download new","new online","interactive guidesuch","tripadvisor wikivoyage","enable individual","individual travelers","contribute information","guide wikivoyage","make thentire","thentire contents","guides available","open content","content free","use guide","guide book","book publishers","select sample","full range","english language","language guide","guide book","book publishers","publishers either","either contemporary","historical bradshaw","adams american","american automobile","automobile association","association aaa","aaa canadian","canadian automobile","automobile association","association caa","caa tourbook","tourbook appletons","appletons travel","travel guides","guides adam","charles black","black blue","blue guides","guides bradtravel","bradtravel guides","guides bradt","bradt cicerone","cicerone publisher","publisher cicerone","cicerone cook","travellers handbooks","handbooks thomas","thomas cook","cook son","son dorling","dorling kindersley","eyewitness travel","forbes travel","travel guide","guide footprint","footprint books","books frommer","hand book","travellers harper","harper brothers","brothers insight","insight guides","pocket city","city guides","pocket let","go travel","travel guides","guides let","go lonely","lonely planet","planet michelin","michelin guide","guide moon","moon publications","publications moon","moon handbooks","handbooks mrsmith","mrsmith travel","travel guide","guide mrsmith","mrsmith murray","travellers john","john murray","murray national","national geographic","geographic traveler","traveler nicholson","nicholson guides","tourists rick","rick steves","steves rough","spartacus international","international gay","gay guide","guide spotted","locals time","company time","club italiano","italiano vinologue","vinologue wallpaper","wallpaper magazine","magazine wallpaper","wallpaper city","city guides","guides ward","ward lock","lock travel","travel guides","guides ward","ward lock","weird travel","travel guides","guides weird","weird wikivoyage","see also","urbis romae","romae de","urbis romae","romae list","literary descriptions","outdoor literature","literature tourism","tourism travel","travel website","website travel","travel writing","writing traveliterature","traveliterature textbook","academic guide","guide books","brief reference","reference works","works guide","reference selective","selective guide","online reference","reference sources","sources category","category travel","travel guide","guide books","books guide","guide book","book category","category travel","travel books","books guide","guide book","book category","category travel","travel gear","gear category","category non","non fiction","fiction genres"],"new_description":"file guide_book panama california thumb guide_book panama california exposition file guide_book jpg thumb right guide_books japan guide_book travel_guide_book information place designed use visitors tourists new oxford american dictionary usually include information sights accommodation restaurants transportation activities maps varying detail historical cultural information often kinds guide_books exist focusing different aspects travel_adventure_travel relaxation aimed different incomes focusing sexual orientation types guides also take form travel_website file tour_guide famous places capital akizato miyako meisho zue jpg thumb japanese tourist consulting tour_guide guide_book akizato rit miyako meisho zue antiquity forerunner guidebook itinerary landmark landmark ports along coast sea manuscript listed order ports approximate distances thathe captain vessel could expecto find along shore work possibly written middle st_century served purpose road stops progress around established literary genre age lost work describing olympia greece olympia referred constantinople literally traveller author description world greek language greek verse written elegant style intended actual tourist ground believed worked flourished around time early remarkably well informed descriptions greece pausanias geographer pausanias century penguin dictionary literary terms literary theory london penguin books_p famous work guide interesting places works architecture sculpture curious customs ancient_greece istill useful today withe_advent christianity guide religious pilgrim became useful guidebook early account pilgrim pilgrim visited holy_land th_century left detailed itinerary islamic golden_age medieval arab world guide_books travelers search ancient near east archaeology artifacts monuments treasures written social theory sociology medieval islam arabic treasure hunters chemistry medieval islam alchemists particularly case history arab egypt arab egypt ancient egypt highly valued traveliterature became_popular song dynasty medieval china genre called travel record literature often written style traveliterature authorsuch fan incorporated wealth geographical topographical information writing essay shi travel record stone bell mountain noted poet statesman shi presented philosophical moral argument central purpose westhe guidebook developed published personal experiences aristocrats traveled europe grand_tour appreciation art architecture antiquity ingredients noble guidebooks particularly devoted italian peninsula richard lassels wrote series manuscript guides published paris london voyage italy edward chaney grand_tour great rebellion geneva turin grand_tour guidebooks poured presses century patrick tour sicily malta read many never left england edward chaney e chaney thevolution grand routledge figure style grand_tour travelogues informative guidebook guide travel france italy served essential companion british_travelers continent thearly_th century recognized withe growing numbers traveling abroad majority would family groups budget therefore included firstime wealth advice luggage obtaining precise cost ofood accommodation city even advice care family also devised system mark ratings forerunner today star classification staratings books_published john_murray publisher john_murray served later guides united_states first_published guidebook gideon minor fashionable tour published theodore dwight northern traveller henry northern tour richard first_american tourist_guidebooks print culture book history pp modern guidebook file john_murray b jpg thumb left_px john_murray john_murray modern guidebook emerged withe burgeoning market long_distance tourism publisher john_murray publisher john_murray began printing murray handbooks travellers london series covered tourist_destinations europe asiand northern africand introduced concept sights whiche rated terms significance using stars points according scholar james murray rational planning much ideal themerging tourist_industry british commercial industrial organization generally image karl thumb px karl_baedeker germany karl_baedeker acquired publishing_house friedrich r published handbook travellers professor johannes august klein entitled von c ein f r rhine journey cologne handbook travellers move published book little changes years provided seeds baedeker new approach travel_guides klein died decided publish new edition whiche added many ideas thought travel_guide offer traveller baedeker ultimate aim free traveller look information anywhere outside travel_guide whether routes transport accommodation restaurants tipping sights walks prices baedeker emulated style john_murray publisher john_murray guidebooks included information baedeker introduced sights attractions lodgings following murray edition also first experimental red guide also decided call travel_guides handbooks following thexample john_murray iii baedeker early guides tan covers onwards murray red lettering became familiar baedeker_guides well content became famous detail grand_tour cambridge companion travel_writing pp image handbook travellers thumb right cover handbook travellers turkey px baedeker murray produced objective guides works prior combined information personal reflection availability books baedeker murray helped genre personal traveliterature travelogue freed burden serving guide_book baedeker murray guide_books popular standard resources travelers well th_century william story said every englishman abroad carries murray information george gordon byron th baron byron sentiment finds know feel every step world_war two editors baedeker english_language titles lefthe company acquired rights murray handbooks travellers murray handbooks books called blue_guides distinguish red covered baedekers constituted one major guide_book series much th_century still published today post following world_war ii two new names emerged combined europeand american perspectives international_travel eugene fodor writer eugene fodor hungarian born travel_writing author travel articles united_states war wrote guidebooks introduced english reading audiences continental_europe arthur_frommer american soldier europe korean war used experience traveling around continent basis europe day introduced readers budgetravel europe authors guidebooks became foundations extensive series eventually covering destinations around world including united_states decades followed let go_travel_guides let go lonely_planet insight_guides rough_guides wide_variety similar travel_guides developed varying focuses mountain guides file snowdonia thumb right crib snowdonia guides mountains long history owing special needs mountaineering climbing hill walking guides w example widely_used hill regions united_kingdom britain many special guides numerous britain published climbers club example digital world digital technology many publishers turned electronic distribution either addition tor instead print publication take form documents portable computer hand online information accessible via web_site enabled guidebook publishers keep information guide_book lonely_planet rough_guides pocket city_guides travel_guides offering travel_guides download new online interactive guidesuch tripadvisor wikivoyage enable individual travelers share experiences contribute information guide wikivoyage make thentire contents guides users make information guides available open content free others use guide_book publishers list select sample full range english_language guide_book publishers either contemporary historical bradshaw guide adams american_automobile_association aaa canadian automobile_association caa tourbook appletons travel_guides appleton baedeker corporation black guides adam charles black blue_guides bradtravel guides bradt cicerone publisher cicerone cook travellers handbooks thomas_cook_son dorling kindersley eyewitness travel fodor forbes_travel_guide footprint books frommer harper hand_book travellers harper brothers insight_guides pocket city_guides pocket let go_travel_guides let go lonely_planet michelin_guide moon publications moon handbooks mrsmith travel_guide mrsmith murray handbooks travellers john_murray national_geographic traveler nicholson guides tourists rick steves rough spartacus international_gay guide spotted locals time company time club italiano vinologue wallpaper magazine wallpaper city_guides ward_lock travel_guides ward_lock weird travel_guides weird wikivoyage see_also urbis romae de urbis romae list literary descriptions cities outdoor literature tourism_travel_website travel_writing traveliterature textbook academic guide_books brief reference works guide reference selective guide print online reference sources category_travel_guide_books guide_book category_travel_books guide_book category_travel gear category_non fiction genres"},{"title":"Guide to the Lakes","description":"pages awards wikisource guide to the lakes more fully a guide through the district of the lakes william wordsworth s travellers guidebook to england s lake district has been studied by scholars both for its relationship to his romanticism romantic poetry and as an early influence on th century geography originally written because wordsworth needed money the first version was published in as anonymous text in a collection of engravings the work is now best known from its expanded and updated fifth edition according to wordsworth biographer stephen gill the guide is multi faceted it is a guide but it is also a prose poem about light shapes and textures about movement and stillness it is a paean to a way of life but also a lament for the inevitability of its passing what holds this diversity together is the voice of complete authority compounded from experience intense observation thought and love relation to wordsworth s life and thought file dove cottage jpg thumb dove cottage wordsworth s home near grasmere in the lake district wordsworth was born in the lake district and spent much of his life living there wordsworth and his friends robert southey and samuel taylor coleridge became known as lake poets not only because they lived in this area but also because its landscapes and people inspired their work by wordsworth was living near grasmere withisister and collaborator dorothy wordsworthisister in law his wife and their four small children a fifth child was born to them in several commentators have suggested that wordsworth agreed to writext for a new book of engravings because he needed money a suggestion supported by wordsworth scathing description of thengravings in an letter to lady beaumonthe drawings or etchings or whatever they may be called are intolerable you will receive from them that sort of disgust which i do from bad poetry they will please many who in all the arts are mostaken by what is worthless publishing history the beauty of the lake district was already well known in the year wordsworth s guide to the lakes was first published as anonymous introduction to a book of engravings of the lake district by the reverend joseph wilkinson for example in the poethomas gray published a journal of his visito the area describing the vale of grasmere as an unsuspected paradise the first lakeland visitors guide as opposed to a traveller s journal appeared in when thomas west priesthomas west published a route for travellers that included advice on viewing the landscape wordsworth explained his goal to a reader in may saying what i wished to accomplish was to give a model of the manner in which topographical descriptions oughto bexecuted in order to their being either useful or intelligible by evolving truly andistinctly one appearance from another in wordsworth published a second longer version of the guide attached to a book of sonnets he had written abouthe river duddon hexplained his reasoning as follows this essay which was published several years ago as an introduction to some views of the lakes by the rev joseph wilkinson an expensive work and necessarily of limited circulation is nowith emendations and additions attached to these volumes from a consciousness of its having been written in the same spirit which dictated several of the poems and from a belief that it will tend materially to illustrate them page in wordsworth s text was first published as a separate volume fourth and fifth reviseditions followed in and the last of these is generally consideredefinitive modern editions are based on thexpanded fifth edition published in directions and information for the tourist wordsworth begins thisection as follows in preparing this manual it was the author s principal wish to furnish a guide or companion for the minds of persons of taste and feeling for landscape who might be inclined to explore the district of the lakes withat degree of attention to which its beauty may fairly lay claim for the more sure attainment however of this primary object he will begin by undertaking the humble and tedious task of supplying the tourist with directions how to approach the several scenes in their best or most convenient order wordsworth s emphasis on the word minds reflectsays the norton anthology his constant interest in subject object interactions evidenthroughouthe book and in his poetry in general description of the scenery of the lakes whathe norton anthology calls wordsworth s lake district chauvinism is evident in his comparisons of its lakes and mountains to those of scotland wales and switzerland he finds much to praiseven in the region s climate which is marked by changeability with frequent clouds rain or even galesuch clouds cleaving to their stations or lifting up suddenly their glittering heads from behind rocky barriers or hurrying out of sight with speed of the sharpest edge will often tempt an inhabitanto congratulate himself on belonging to a country of mists and clouds and storms and make him think of the blank sky of egypt and of the cerulean vacancy of italy as an unanimated and even a sad spectacle page miscellaneous observations wordsworth begins by discussing the relative advantages of different seasons for a visito the lakes next hembarks on a long comparison of lake district scenery to the much praised landscapes of switzerland although withis initial disclaimer page nothing is more injurious to genuine feeling than the practice of hastily and ungraciously deprecating the face of one country by comparing it withat of another fastidiousness is a wretched travelling companion and the best guide to which in matters of taste we can entrust ourselves is a disposition to be pleased the description of an ascent of scawfell now sca fell and scafell pike is copied from a letter written by dorothy wordsworth describing her visito this mountain williambiguously credits this to a letter to a friend thisame account was copied by harriet martineau with attribution to william wordsworth in her widely used guide book of which was in its th edition by thereby ensuring a wide circulation of this account for much of the th centuryreviewed in the westmorland gazette saturday july pg column here wordsworth describeseveral itineraries a traveller might choose leading to some of the lake district s finest views he includes in thisection a long passage transcribed nearly intact from the journal of hisister dorothy wordsworth about a trip they took from their home in grasmere to ullswater see s lincourt footnote pp ode the pass of kirkstone throughouthis guide wordsworth includes poems by himself and by others expanding on topics being discussed in prose thisection of the guidebook is an ode in blank verse by wordsworth evoking the hard ascent and joyful descent of kirkstone pass a high mountain pass between ambleside and patterdale thisection of the book contains mileages measured between various lake district destinations according to the fifth edition text page the publishers withe permission of the author have added the following itinerary of the lakes for the benefit of the tourist hence the last part of the guide that was written by wordsworth was his ode concerning the pass of kirkstonexternalinksecond edition with duddon sonnets publication ofifth edition edited by ernest de s lincourt edition the first separate publication category works by william wordsworth category lake district category travel guide books category books category works published anonymously","main_words":["pages","awards","guide","lakes","fully","guide","district","lakes","william","wordsworth","travellers","guidebook","england","lake_district","studied","scholars","relationship","romanticism","romantic","poetry","early","influence","th_century","geography","originally","written","wordsworth","needed","money","first","version","published","anonymous","text","collection","engravings","work","best_known","expanded","updated","fifth","edition","according","wordsworth","biographer","stephen","gill","guide","multi","guide","also","prose","poem","light","shapes","movement","way","life","also","passing","holds","diversity","together","voice","complete","authority","experience","intense","observation","thought","love","relation","wordsworth","life","thought","file","dove","cottage","jpg","thumb","dove","cottage","wordsworth","home","near","grasmere","lake_district","wordsworth","born","lake_district","spent","much","life","living","wordsworth","friends","robert","samuel","taylor","became_known","lake","lived","area","also","landscapes","people","inspired","work","wordsworth","living","near","grasmere","collaborator","dorothy","law","wife","four","small","children","fifth","child","born","several","commentators","suggested","wordsworth","agreed","new","book","engravings","needed","money","suggestion","supported","wordsworth","description","letter","lady","drawings","whatever","may","called","receive","sort","bad","poetry","please","many","arts","publishing","history","beauty","lake_district","already","well_known","year","wordsworth","guide","lakes","first_published","anonymous","introduction","book","engravings","lake_district","reverend","joseph","example","gray","published","journal","visito","area","describing","vale","grasmere","paradise","first","lakeland","visitors","guide","opposed","traveller","journal","appeared","thomas","west","priesthomas","west","published","route","travellers","included","advice","viewing","landscape","wordsworth","explained","goal","reader","may","saying","wished","accomplish","give","model","manner","topographical","descriptions","order","either","useful","evolving","truly","one","appearance","another","wordsworth","published","second","longer","version","guide","attached","book","written","abouthe","river","follows","essay","published","several_years","ago","introduction","views","lakes","rev","joseph","expensive","work","necessarily","limited","circulation","additions","attached","volumes","consciousness","written","spirit","several","poems","belief","tend","illustrate","page","wordsworth","text","first_published","separate","volume","fourth","fifth","reviseditions","followed","last","generally","modern","editions","based","fifth","edition_published","directions","information","tourist","wordsworth","begins","thisection","follows","preparing","manual","author","principal","wish","guide","companion","minds","persons","taste","feeling","landscape","might","inclined","explore","district","lakes","withat","degree","attention","beauty","may","fairly","lay","claim","sure","however","primary","object","begin","undertaking","humble","task","supplying","tourist","directions","approach","several","scenes","best","convenient","order","wordsworth","emphasis","word","minds","norton","anthology","constant","interest","subject","object","interactions","book","poetry","general","description","scenery","lakes","whathe","norton","anthology","calls","wordsworth","lake_district","evident","comparisons","lakes","mountains","scotland","wales","switzerland","finds","much","region","climate","marked","frequent","clouds","rain","even","clouds","stations","lifting","suddenly","heads","behind","rocky","barriers","sight","speed","edge","often","belonging","country","clouds","storms","make","think","blank","sky","egypt","vacancy","italy","even","sad","spectacle","page","miscellaneous","observations","wordsworth","begins","discussing","relative","advantages","different","seasons","visito","lakes","next","long","comparison","lake_district","scenery","much","praised","landscapes","switzerland","although","withis","initial","page","nothing","injurious","genuine","feeling","practice","face","one","country","comparing","withat","another","travelling","companion","best","guide","matters","taste","disposition","pleased","description","ascent","fell","scafell","pike","copied","letter","written","dorothy","wordsworth","describing","visito","mountain","credits","letter","friend","account","copied","harriet","william","wordsworth","widely_used","guide_book","th_edition","thereby","ensuring","wide","circulation","account","much","th","westmorland","gazette","saturday","july","column","wordsworth","itineraries","traveller","might","choose","leading","lake_district","finest","views","includes","thisection","long","passage","nearly","intact","journal","dorothy","wordsworth","trip","took","home","grasmere","see","pp","ode","pass","guide","wordsworth","includes","poems","others","expanding","topics","discussed","prose","thisection","guidebook","ode","blank","verse","wordsworth","hard","ascent","descent","pass","high","mountain","pass","thisection","book","contains","measured","various","lake_district","destinations","according","fifth","edition","text","page","publishers","withe","permission","author","added","following","itinerary","lakes","benefit","tourist","hence","last","part","guide","written","wordsworth","ode","concerning","pass","edition","publication","edition","edited","ernest","de","edition","first","separate","publication","category_works","william","wordsworth","category","lake_district","category_travel_guide_books","category_books","category_works","published"],"clean_bigrams":[["pages","awards"],["lakes","william"],["william","wordsworth"],["travellers","guidebook"],["lake","district"],["romanticism","romantic"],["romantic","poetry"],["early","influence"],["th","century"],["century","geography"],["geography","originally"],["originally","written"],["wordsworth","needed"],["needed","money"],["first","version"],["anonymous","text"],["best","known"],["updated","fifth"],["fifth","edition"],["edition","according"],["wordsworth","biographer"],["biographer","stephen"],["stephen","gill"],["prose","poem"],["light","shapes"],["diversity","together"],["complete","authority"],["experience","intense"],["intense","observation"],["observation","thought"],["love","relation"],["thought","file"],["file","dove"],["dove","cottage"],["cottage","jpg"],["jpg","thumb"],["thumb","dove"],["dove","cottage"],["cottage","wordsworth"],["home","near"],["near","grasmere"],["lake","district"],["district","wordsworth"],["lake","district"],["spent","much"],["life","living"],["friends","robert"],["samuel","taylor"],["became","known"],["people","inspired"],["living","near"],["near","grasmere"],["collaborator","dorothy"],["four","small"],["small","children"],["fifth","child"],["several","commentators"],["wordsworth","agreed"],["new","book"],["needed","money"],["suggestion","supported"],["bad","poetry"],["please","many"],["publishing","history"],["lake","district"],["already","well"],["well","known"],["year","wordsworth"],["first","published"],["anonymous","introduction"],["lake","district"],["reverend","joseph"],["gray","published"],["area","describing"],["first","lakeland"],["lakeland","visitors"],["visitors","guide"],["journal","appeared"],["thomas","west"],["west","priesthomas"],["priesthomas","west"],["west","published"],["included","advice"],["landscape","wordsworth"],["wordsworth","explained"],["may","saying"],["topographical","descriptions"],["either","useful"],["evolving","truly"],["one","appearance"],["wordsworth","published"],["second","longer"],["longer","version"],["guide","attached"],["written","abouthe"],["abouthe","river"],["published","several"],["several","years"],["years","ago"],["rev","joseph"],["expensive","work"],["limited","circulation"],["additions","attached"],["first","published"],["separate","volume"],["volume","fourth"],["fifth","reviseditions"],["reviseditions","followed"],["modern","editions"],["fifth","edition"],["edition","published"],["tourist","wordsworth"],["wordsworth","begins"],["begins","thisection"],["principal","wish"],["lakes","withat"],["withat","degree"],["beauty","may"],["may","fairly"],["fairly","lay"],["lay","claim"],["primary","object"],["several","scenes"],["convenient","order"],["order","wordsworth"],["word","minds"],["norton","anthology"],["constant","interest"],["subject","object"],["object","interactions"],["general","description"],["lakes","whathe"],["whathe","norton"],["norton","anthology"],["anthology","calls"],["calls","wordsworth"],["lake","district"],["scotland","wales"],["finds","much"],["frequent","clouds"],["clouds","rain"],["behind","rocky"],["rocky","barriers"],["blank","sky"],["sad","spectacle"],["spectacle","page"],["page","miscellaneous"],["miscellaneous","observations"],["observations","wordsworth"],["wordsworth","begins"],["relative","advantages"],["different","seasons"],["lakes","next"],["long","comparison"],["lake","district"],["district","scenery"],["much","praised"],["praised","landscapes"],["switzerland","although"],["although","withis"],["withis","initial"],["page","nothing"],["genuine","feeling"],["one","country"],["travelling","companion"],["best","guide"],["scafell","pike"],["letter","written"],["dorothy","wordsworth"],["wordsworth","describing"],["william","wordsworth"],["widely","used"],["used","guide"],["guide","book"],["th","edition"],["thereby","ensuring"],["wide","circulation"],["westmorland","gazette"],["gazette","saturday"],["saturday","july"],["traveller","might"],["might","choose"],["choose","leading"],["lake","district"],["finest","views"],["long","passage"],["nearly","intact"],["dorothy","wordsworth"],["pp","ode"],["guide","wordsworth"],["wordsworth","includes"],["includes","poems"],["others","expanding"],["prose","thisection"],["blank","verse"],["hard","ascent"],["high","mountain"],["mountain","pass"],["book","contains"],["various","lake"],["lake","district"],["district","destinations"],["destinations","according"],["fifth","edition"],["edition","text"],["text","page"],["publishers","withe"],["withe","permission"],["following","itinerary"],["tourist","hence"],["last","part"],["ode","concerning"],["edition","edited"],["ernest","de"],["first","separate"],["separate","publication"],["publication","category"],["category","works"],["william","wordsworth"],["wordsworth","category"],["category","lake"],["lake","district"],["district","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","books"],["books","category"],["category","works"],["works","published"]],"all_collocations":["pages awards","lakes william","william wordsworth","travellers guidebook","lake district","romanticism romantic","romantic poetry","early influence","th century","century geography","geography originally","originally written","wordsworth needed","needed money","first version","anonymous text","best known","updated fifth","fifth edition","edition according","wordsworth biographer","biographer stephen","stephen gill","prose poem","light shapes","diversity together","complete authority","experience intense","intense observation","observation thought","love relation","thought file","file dove","dove cottage","cottage jpg","thumb dove","dove cottage","cottage wordsworth","home near","near grasmere","lake district","district wordsworth","lake district","spent much","life living","friends robert","samuel taylor","became known","people inspired","living near","near grasmere","collaborator dorothy","four small","small children","fifth child","several commentators","wordsworth agreed","new book","needed money","suggestion supported","bad poetry","please many","publishing history","lake district","already well","well known","year wordsworth","first published","anonymous introduction","lake district","reverend joseph","gray published","area describing","first lakeland","lakeland visitors","visitors guide","journal appeared","thomas west","west priesthomas","priesthomas west","west published","included advice","landscape wordsworth","wordsworth explained","may saying","topographical descriptions","either useful","evolving truly","one appearance","wordsworth published","second longer","longer version","guide attached","written abouthe","abouthe river","published several","several years","years ago","rev joseph","expensive work","limited circulation","additions attached","first published","separate volume","volume fourth","fifth reviseditions","reviseditions followed","modern editions","fifth edition","edition published","tourist wordsworth","wordsworth begins","begins thisection","principal wish","lakes withat","withat degree","beauty may","may fairly","fairly lay","lay claim","primary object","several scenes","convenient order","order wordsworth","word minds","norton anthology","constant interest","subject object","object interactions","general description","lakes whathe","whathe norton","norton anthology","anthology calls","calls wordsworth","lake district","scotland wales","finds much","frequent clouds","clouds rain","behind rocky","rocky barriers","blank sky","sad spectacle","spectacle page","page miscellaneous","miscellaneous observations","observations wordsworth","wordsworth begins","relative advantages","different seasons","lakes next","long comparison","lake district","district scenery","much praised","praised landscapes","switzerland although","although withis","withis initial","page nothing","genuine feeling","one country","travelling companion","best guide","scafell pike","letter written","dorothy wordsworth","wordsworth describing","william wordsworth","widely used","used guide","guide book","th edition","thereby ensuring","wide circulation","westmorland gazette","gazette saturday","saturday july","traveller might","might choose","choose leading","lake district","finest views","long passage","nearly intact","dorothy wordsworth","pp ode","guide wordsworth","wordsworth includes","includes poems","others expanding","prose thisection","blank verse","hard ascent","high mountain","mountain pass","book contains","various lake","lake district","district destinations","destinations according","fifth edition","edition text","text page","publishers withe","withe permission","following itinerary","tourist hence","last part","ode concerning","edition edited","ernest de","first separate","separate publication","publication category","category works","william wordsworth","wordsworth category","category lake","lake district","district category","category travel","travel guide","guide books","books category","category books","books category","category works","works published"],"new_description":"pages awards guide lakes fully guide district lakes william wordsworth travellers guidebook england lake_district studied scholars relationship romanticism romantic poetry early influence th_century geography originally written wordsworth needed money first version published anonymous text collection engravings work best_known expanded updated fifth edition according wordsworth biographer stephen gill guide multi guide also prose poem light shapes movement way life also passing holds diversity together voice complete authority experience intense observation thought love relation wordsworth life thought file dove cottage jpg thumb dove cottage wordsworth home near grasmere lake_district wordsworth born lake_district spent much life living wordsworth friends robert samuel taylor became_known lake lived area also landscapes people inspired work wordsworth living near grasmere collaborator dorothy law wife four small children fifth child born several commentators suggested wordsworth agreed new book engravings needed money suggestion supported wordsworth description letter lady drawings whatever may called receive sort bad poetry please many arts publishing history beauty lake_district already well_known year wordsworth guide lakes first_published anonymous introduction book engravings lake_district reverend joseph example gray published journal visito area describing vale grasmere paradise first lakeland visitors guide opposed traveller journal appeared thomas west priesthomas west published route travellers included advice viewing landscape wordsworth explained goal reader may saying wished accomplish give model manner topographical descriptions order either useful evolving truly one appearance another wordsworth published second longer version guide attached book written abouthe river follows essay published several_years ago introduction views lakes rev joseph expensive work necessarily limited circulation additions attached volumes consciousness written spirit several poems belief tend illustrate page wordsworth text first_published separate volume fourth fifth reviseditions followed last generally modern editions based fifth edition_published directions information tourist wordsworth begins thisection follows preparing manual author principal wish guide companion minds persons taste feeling landscape might inclined explore district lakes withat degree attention beauty may fairly lay claim sure however primary object begin undertaking humble task supplying tourist directions approach several scenes best convenient order wordsworth emphasis word minds norton anthology constant interest subject object interactions book poetry general description scenery lakes whathe norton anthology calls wordsworth lake_district evident comparisons lakes mountains scotland wales switzerland finds much region climate marked frequent clouds rain even clouds stations lifting suddenly heads behind rocky barriers sight speed edge often belonging country clouds storms make think blank sky egypt vacancy italy even sad spectacle page miscellaneous observations wordsworth begins discussing relative advantages different seasons visito lakes next long comparison lake_district scenery much praised landscapes switzerland although withis initial page nothing injurious genuine feeling practice face one country comparing withat another travelling companion best guide matters taste disposition pleased description ascent fell scafell pike copied letter written dorothy wordsworth describing visito mountain credits letter friend account copied harriet william wordsworth widely_used guide_book th_edition thereby ensuring wide circulation account much th westmorland gazette saturday july column wordsworth itineraries traveller might choose leading lake_district finest views includes thisection long passage nearly intact journal dorothy wordsworth trip took home grasmere see pp ode pass guide wordsworth includes poems others expanding topics discussed prose thisection guidebook ode blank verse wordsworth hard ascent descent pass high mountain pass thisection book contains measured various lake_district destinations according fifth edition text page publishers withe permission author added following itinerary lakes benefit tourist hence last part guide written wordsworth ode concerning pass edition publication edition edited ernest de edition first separate publication category_works william wordsworth category lake_district category_travel_guide_books category_books category_works published"},{"title":"GuidePal","description":"founder headquarterstockholm sweden locationstockholm area served key peoplemployees products city guide apps webpage appstore rating average guidepal is a mobile apps mobile and webased application that provides city guides via iphone ipad android operating system androidescribed as a mobile travel and city discovery companion their city guide app currently covers destinations and can be accessed for freeguidepal s guides guidepal was founded in the company s head office is based in stockholm sweden guidepal s city guides are created by collaboration between locals and travel journalists in the guides guidepal aims toffer an unbiased selection of each city s highlights with all tips and advice curated by experts actually living in the cityguidepal info page users can build their own personalised guides create itineraries invite friends and share tips withem and book restaurants hotels tours eventickets and son the guides and maps can be made available offline the guides are written in english the content is broadly divided into seven sections more abouthe city essentialsee do eat shoparty stay subcategories include transportation airports and useful tips in march guidepal released its first multi destination app for iphone three months later the ipad version was released and achieved a new and noteworthy status in the app store since then the company has also released a completely revamped multi city app for android operating system android guidepal raises the bar in the travel guide industry mobile travel the mobile travel market haseen a lot of new entrants in recent years with a clear mobile first product approach this means thathe core product and service offering are mobile apps for smartphone and tablet computer in contrasto incumbent companies that start on the web and add auxiliary mobile web or approducts to expand theireach while mobile travel is a crowded space with new companies entering the market every month only a few young companies have managed to reach a meaningful size of a million users among those companies are guidepal ulmon triposo pocket guide cities covered abu dhabi amsterdam athens atlantaustin barcelona bangkok beijing berlin brussels boston buenos aires copenhagen chicago dubai dublin edinburgh florence geneva glasgow havana ho chi minh city hong kong honolulu istanbul krak w kuala lumpur las vegas lisbon london los angeles madrid miamilan montr al moscow mumbai new delhi new orleans new york nice oslo paris perth prague reykjavik rome san francisco seattle shanghai singapore stockholm sydney taipei venice vienna vancouvereferences externalinks guidepal category articles created via the article wizard category companies based in stockholm category companiestablished in category city guides","main_words":["founder","sweden","area_served","key","products","city_guide","apps","webpage","rating","average","guidepal","mobile_apps","mobile","webased","application","provides","city_guides","via","iphone","ipad","android_operating_system","mobile","travel","city","discovery","companion","city_guide","app","currently","covers","destinations","accessed","guides","guidepal","founded","company","head_office","based","stockholm","sweden","guidepal","city_guides","created","collaboration","locals","travel","journalists","guides","guidepal","aims","toffer","selection","city","highlights","tips","advice","curated","experts","actually","living","info","page","users","build","guides","create","itineraries","invite","friends","share","tips","withem","book","restaurants_hotels","tours","son","guides","maps","made_available","offline","guides","written","english","content","broadly","divided","seven","sections","abouthe","city","eat","stay","include","transportation","airports","useful","tips","march","guidepal","released","first","multi","destination","app","iphone","three_months","later","ipad","version","released","achieved","new","noteworthy","status","app","store","since","company_also","released","completely","multi","city","app","android_operating_system","android","guidepal","raises","bar","travel_guide","industry","mobile","travel","mobile","travel_market","haseen","lot","new","entrants","recent_years","clear","mobile","first","product","approach","means","thathe","core","product","service","offering","mobile_apps","smartphone","tablet","computer","contrasto","incumbent","companies","start","web","add","auxiliary","mobile","web","expand","mobile","travel","crowded","space","new","companies","entering","market","every","month","young","companies","managed","reach","meaningful","size","among","companies","guidepal","pocket","guide","cities","covered","abu","amsterdam","athens","barcelona","bangkok","beijing","berlin","brussels","boston","buenos_aires","copenhagen","chicago","dubai","dublin","edinburgh","florence","geneva","glasgow","havana","chi","city","hong_kong","honolulu","istanbul","krak","w","kuala_lumpur","las_vegas","lisbon","london","los_angeles","madrid","moscow","mumbai","new_delhi","new_orleans","new_york","nice","oslo","paris","perth","prague","rome","san_francisco","seattle","shanghai","singapore","stockholm","sydney","taipei","venice","vienna","externalinks","guidepal","category_articles_created_via","stockholm","category_companiestablished","category_city_guides"],"clean_bigrams":[["area","served"],["served","key"],["products","city"],["city","guide"],["guide","apps"],["apps","webpage"],["rating","average"],["average","guidepal"],["mobile","apps"],["apps","mobile"],["webased","application"],["provides","city"],["city","guides"],["guides","via"],["via","iphone"],["iphone","ipad"],["ipad","android"],["android","operating"],["operating","system"],["mobile","travel"],["city","discovery"],["discovery","companion"],["city","guide"],["guide","app"],["app","currently"],["currently","covers"],["covers","destinations"],["guides","guidepal"],["head","office"],["stockholm","sweden"],["sweden","guidepal"],["city","guides"],["travel","journalists"],["guides","guidepal"],["guidepal","aims"],["aims","toffer"],["advice","curated"],["experts","actually"],["actually","living"],["info","page"],["page","users"],["guides","create"],["create","itineraries"],["itineraries","invite"],["invite","friends"],["share","tips"],["tips","withem"],["book","restaurants"],["restaurants","hotels"],["hotels","tours"],["made","available"],["available","offline"],["broadly","divided"],["seven","sections"],["abouthe","city"],["include","transportation"],["transportation","airports"],["useful","tips"],["march","guidepal"],["guidepal","released"],["first","multi"],["multi","destination"],["destination","app"],["iphone","three"],["three","months"],["months","later"],["ipad","version"],["noteworthy","status"],["app","store"],["store","since"],["also","released"],["multi","city"],["city","app"],["android","operating"],["operating","system"],["system","android"],["android","guidepal"],["guidepal","raises"],["travel","guide"],["guide","industry"],["industry","mobile"],["mobile","travel"],["mobile","travel"],["travel","market"],["market","haseen"],["new","entrants"],["recent","years"],["clear","mobile"],["mobile","first"],["first","product"],["product","approach"],["means","thathe"],["thathe","core"],["core","product"],["service","offering"],["mobile","apps"],["tablet","computer"],["contrasto","incumbent"],["incumbent","companies"],["add","auxiliary"],["auxiliary","mobile"],["mobile","web"],["mobile","travel"],["crowded","space"],["new","companies"],["companies","entering"],["market","every"],["every","month"],["young","companies"],["meaningful","size"],["million","users"],["users","among"],["pocket","guide"],["guide","cities"],["cities","covered"],["covered","abu"],["amsterdam","athens"],["barcelona","bangkok"],["bangkok","beijing"],["beijing","berlin"],["berlin","brussels"],["brussels","boston"],["boston","buenos"],["buenos","aires"],["aires","copenhagen"],["copenhagen","chicago"],["chicago","dubai"],["dubai","dublin"],["dublin","edinburgh"],["edinburgh","florence"],["florence","geneva"],["geneva","glasgow"],["glasgow","havana"],["city","hong"],["hong","kong"],["kong","honolulu"],["honolulu","istanbul"],["istanbul","krak"],["krak","w"],["w","kuala"],["kuala","lumpur"],["lumpur","las"],["las","vegas"],["vegas","lisbon"],["lisbon","london"],["london","los"],["los","angeles"],["angeles","madrid"],["moscow","mumbai"],["mumbai","new"],["new","delhi"],["delhi","new"],["new","orleans"],["orleans","new"],["new","york"],["york","nice"],["nice","oslo"],["oslo","paris"],["paris","perth"],["perth","prague"],["rome","san"],["san","francisco"],["francisco","seattle"],["seattle","shanghai"],["shanghai","singapore"],["singapore","stockholm"],["stockholm","sydney"],["sydney","taipei"],["taipei","venice"],["venice","vienna"],["externalinks","guidepal"],["guidepal","category"],["category","articles"],["articles","created"],["created","via"],["article","wizard"],["wizard","category"],["category","companies"],["companies","based"],["stockholm","category"],["category","companiestablished"],["category","city"],["city","guides"]],"all_collocations":["area served","served key","products city","city guide","guide apps","apps webpage","rating average","average guidepal","mobile apps","apps mobile","webased application","provides city","city guides","guides via","via iphone","iphone ipad","ipad android","android operating","operating system","mobile travel","city discovery","discovery companion","city guide","guide app","app currently","currently covers","covers destinations","guides guidepal","head office","stockholm sweden","sweden guidepal","city guides","travel journalists","guides guidepal","guidepal aims","aims toffer","advice curated","experts actually","actually living","info page","page users","guides create","create itineraries","itineraries invite","invite friends","share tips","tips withem","book restaurants","restaurants hotels","hotels tours","made available","available offline","broadly divided","seven sections","abouthe city","include transportation","transportation airports","useful tips","march guidepal","guidepal released","first multi","multi destination","destination app","iphone three","three months","months later","ipad version","noteworthy status","app store","store since","also released","multi city","city app","android operating","operating system","system android","android guidepal","guidepal raises","travel guide","guide industry","industry mobile","mobile travel","mobile travel","travel market","market haseen","new entrants","recent years","clear mobile","mobile first","first product","product approach","means thathe","thathe core","core product","service offering","mobile apps","tablet computer","contrasto incumbent","incumbent companies","add auxiliary","auxiliary mobile","mobile web","mobile travel","crowded space","new companies","companies entering","market every","every month","young companies","meaningful size","million users","users among","pocket guide","guide cities","cities covered","covered abu","amsterdam athens","barcelona bangkok","bangkok beijing","beijing berlin","berlin brussels","brussels boston","boston buenos","buenos aires","aires copenhagen","copenhagen chicago","chicago dubai","dubai dublin","dublin edinburgh","edinburgh florence","florence geneva","geneva glasgow","glasgow havana","city hong","hong kong","kong honolulu","honolulu istanbul","istanbul krak","krak w","w kuala","kuala lumpur","lumpur las","las vegas","vegas lisbon","lisbon london","london los","los angeles","angeles madrid","moscow mumbai","mumbai new","new delhi","delhi new","new orleans","orleans new","new york","york nice","nice oslo","oslo paris","paris perth","perth prague","rome san","san francisco","francisco seattle","seattle shanghai","shanghai singapore","singapore stockholm","stockholm sydney","sydney taipei","taipei venice","venice vienna","externalinks guidepal","guidepal category","category articles","articles created","created via","article wizard","wizard category","category companies","companies based","stockholm category","category companiestablished","category city","city guides"],"new_description":"founder sweden area_served key products city_guide apps webpage rating average guidepal mobile_apps mobile webased application provides city_guides via iphone ipad android_operating_system mobile travel city discovery companion city_guide app currently covers destinations accessed guides guidepal founded company head_office based stockholm sweden guidepal city_guides created collaboration locals travel journalists guides guidepal aims toffer selection city highlights tips advice curated experts actually living info page users build guides create itineraries invite friends share tips withem book restaurants_hotels tours son guides maps made_available offline guides written english content broadly divided seven sections abouthe city eat stay include transportation airports useful tips march guidepal released first multi destination app iphone three_months later ipad version released achieved new noteworthy status app store since company_also released completely multi city app android_operating_system android guidepal raises bar travel_guide industry mobile travel mobile travel_market haseen lot new entrants recent_years clear mobile first product approach means thathe core product service offering mobile_apps smartphone tablet computer contrasto incumbent companies start web add auxiliary mobile web expand mobile travel crowded space new companies entering market every month young companies managed reach meaningful size million_users among companies guidepal pocket guide cities covered abu amsterdam athens barcelona bangkok beijing berlin brussels boston buenos_aires copenhagen chicago dubai dublin edinburgh florence geneva glasgow havana chi city hong_kong honolulu istanbul krak w kuala_lumpur las_vegas lisbon london los_angeles madrid moscow mumbai new_delhi new_orleans new_york nice oslo paris perth prague rome san_francisco seattle shanghai singapore stockholm sydney taipei venice vienna externalinks guidepal category_articles_created_via article_wizard_category_companies_based stockholm category_companiestablished category_city_guides"},{"title":"Guides Joanne","description":"notoc file toulouse guide joanne coverpng thumb px right cover of guide toulouse file map guides joannejpg thumb right map of geographic regions covered in the guides joanne series guides joannest was a series ofrench language travel guide book guide books to europe founded by adolphe joanne and published in paris routes followed the railways at first and later volumes guided readers by province circa s france le nord index v turkey index v egypt v syria s grece athenes luxembourg circa les vosges et l alsace contents alger in english series year url belgiquet hollande index vall e de la meuse ardenne grotte de han gduch de luxembourg see also guide bleu est externalinks items related to guides joanne via digital public library of americategory travel guide books category series of books category publications established in category books about france category tourism in france","main_words":["notoc","file","guide","joanne","coverpng_thumb","px","right","cover","guide","file","map","guides","thumb","right","map","geographic","regions","covered","guides","joanne","series","guides","series","ofrench","language","travel_guide_book","guide_books","europe","founded","joanne","published","paris","routes","followed","railways","first","later","volumes","guided","readers","province","circa","france","nord","index_v","turkey","index_v","egypt","v","syria","luxembourg","circa","les","l","alsace","contents","english","series","year","url","index","e","de_la","de","de","luxembourg","see_also","guide","bleu","est","externalinks","items","related","guides","joanne","via","digital","public_library","travel_guide_books","category_series","books_category","publications_established","category_books","france"],"clean_bigrams":[["notoc","file"],["guide","joanne"],["joanne","coverpng"],["coverpng","thumb"],["thumb","px"],["px","right"],["right","cover"],["file","map"],["map","guides"],["thumb","right"],["right","map"],["geographic","regions"],["regions","covered"],["guides","joanne"],["joanne","series"],["series","guides"],["series","ofrench"],["ofrench","language"],["language","travel"],["travel","guide"],["guide","book"],["book","guide"],["guide","books"],["europe","founded"],["paris","routes"],["routes","followed"],["later","volumes"],["volumes","guided"],["guided","readers"],["province","circa"],["nord","index"],["index","v"],["v","turkey"],["turkey","index"],["index","v"],["v","egypt"],["egypt","v"],["v","syria"],["luxembourg","circa"],["circa","les"],["l","alsace"],["alsace","contents"],["english","series"],["series","year"],["year","url"],["e","de"],["de","la"],["de","luxembourg"],["luxembourg","see"],["see","also"],["also","guide"],["guide","bleu"],["bleu","est"],["est","externalinks"],["externalinks","items"],["items","related"],["guides","joanne"],["joanne","via"],["via","digital"],["digital","public"],["public","library"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","books"],["france","category"],["category","tourism"]],"all_collocations":["notoc file","guide joanne","joanne coverpng","coverpng thumb","right cover","file map","map guides","right map","geographic regions","regions covered","guides joanne","joanne series","series guides","series ofrench","ofrench language","language travel","travel guide","guide book","book guide","guide books","europe founded","paris routes","routes followed","later volumes","volumes guided","guided readers","province circa","nord index","index v","v turkey","turkey index","index v","v egypt","egypt v","v syria","luxembourg circa","circa les","l alsace","alsace contents","english series","series year","year url","e de","de la","de luxembourg","luxembourg see","see also","also guide","guide bleu","bleu est","est externalinks","externalinks items","items related","guides joanne","joanne via","via digital","digital public","public library","travel guide","guide books","books category","category series","books category","category publications","publications established","category books","france category","category tourism"],"new_description":"notoc file guide joanne coverpng_thumb px right cover guide file map guides thumb right map geographic regions covered guides joanne series guides series ofrench language travel_guide_book guide_books europe founded joanne published paris routes followed railways first later volumes guided readers province circa france nord index_v turkey index_v egypt v syria luxembourg circa les l alsace contents english series year url index e de_la de de luxembourg see_also guide bleu est externalinks items related guides joanne via digital public_library travel_guide_books category_series books_category publications_established category_books france_category_tourism france"},{"title":"Guides Madrolle","description":"redirect claudius madrolle category travel guide books madrolle","main_words":["redirect","category_travel_guide_books"],"clean_bigrams":[["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["category travel","travel guide","guide books"],"new_description":"redirect category_travel_guide_books"},{"title":"Guides Pol","description":"file dauphine guides pol coverjpg thumb px right cover of guide to the dauphin guides pol or pol s guidest was a series of travel guide book s to france and switzerland oversaw thenterprise furthereading circa s circa externalinks virtual international authority file toursier gustave category travel guide books category series of books category publications established in category books about france category tourism in france","main_words":["file","guides","pol","coverjpg","thumb","px","right","cover","guide","guides","pol","pol","series","travel_guide_book","france","switzerland","oversaw","thenterprise","furthereading","circa","circa","externalinks","virtual","international","authority","file","category_travel_guide_books","category_series","books_category","publications_established","category_books","france"],"clean_bigrams":[["guides","pol"],["pol","coverjpg"],["coverjpg","thumb"],["thumb","px"],["px","right"],["right","cover"],["guides","pol"],["travel","guide"],["guide","book"],["switzerland","oversaw"],["oversaw","thenterprise"],["thenterprise","furthereading"],["furthereading","circa"],["circa","externalinks"],["externalinks","virtual"],["virtual","international"],["international","authority"],["authority","file"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","books"],["france","category"],["category","tourism"]],"all_collocations":["guides pol","pol coverjpg","coverjpg thumb","right cover","guides pol","travel guide","guide book","switzerland oversaw","oversaw thenterprise","thenterprise furthereading","furthereading circa","circa externalinks","externalinks virtual","virtual international","international authority","authority file","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category books","france category","category tourism"],"new_description":"file guides pol coverjpg thumb px right cover guide guides pol pol series travel_guide_book france switzerland oversaw thenterprise furthereading circa circa externalinks virtual international authority file category_travel_guide_books category_series books_category publications_established category_books france_category_tourism france"},{"title":"Gulfscapes Magazine","description":"gulfscapes magazine was a lifestyle magazine for those who live or vacation along the gulf coasthe magazinemphasized home design and travel articles offered information home interiors coastal recreation food travel destinations and style the magazine was created in port aransas tx by victoria munt rogers publication editorial and coverage included the five states that border the gulf of mexico alabama florida louisiana mississippi and texastandard sized x the magazine was printed using a web offset process in full colour and used perfect binding distribution included a pre paid subscription base targeted mail outs and retail sales in more than locations within heb super wal marts rouses publix barnes noble hastings and iga the magazine was alsold on amazoncomagazines were sold in states including texas alabama oklahoma louisianarkansas florida mississippi georgia new mexico illinois and tennessee the magazine was no longer published references new orleans times picayune article on great american seafood cook off with interview of gulfscapes magazine publisher new orleans times picayune website nolacom article on great american seafood cook off listingulfscapes magazine asponsor louisiana seafood promotion and marketing board website listing founder bio upc database trademark externalinks gulfscapes magazine website digital sample category american lifestyle magazines category defunct magazines of the united states category magazinestablished in category magazines with year of disestablishment missing category magazines published in texas category tourismagazines","main_words":["magazine","lifestyle_magazine","live","vacation","along","gulf","coasthe","home","design","travel","articles","offered","information","home","interiors","coastal","recreation","food","travel_destinations","style","magazine","created","port","victoria","munt","rogers","publication","editorial","coverage","included","five","states","border","gulf","mexico","alabama","florida","louisiana","mississippi","sized","x","magazine","printed","using","web","offset","process","full","colour","used","perfect","distribution","included","pre","paid","subscription","base","targeted","mail","retail","sales","locations","within","super","wal","barnes","noble","magazine","alsold","sold","states","including","texas","alabama","oklahoma","florida","mississippi","georgia","new_mexico","illinois","tennessee","magazine","longer","published","references","new_orleans","times","article","great_american","seafood","cook","interview","magazine","publisher","new_orleans","times","website","article","great_american","seafood","cook","magazine","louisiana","seafood","promotion","marketing","board","website","listing","founder","bio","database","trademark","externalinks","magazine","website","digital","sample","category_american","lifestyle_magazines_category","defunct_magazines","united_states","category_magazinestablished","category_magazines","year","texas_category_tourismagazines"],"clean_bigrams":[["lifestyle","magazine"],["vacation","along"],["gulf","coasthe"],["home","design"],["travel","articles"],["articles","offered"],["offered","information"],["information","home"],["home","interiors"],["interiors","coastal"],["coastal","recreation"],["recreation","food"],["food","travel"],["travel","destinations"],["victoria","munt"],["munt","rogers"],["rogers","publication"],["publication","editorial"],["coverage","included"],["five","states"],["mexico","alabama"],["alabama","florida"],["florida","louisiana"],["louisiana","mississippi"],["sized","x"],["printed","using"],["web","offset"],["offset","process"],["full","colour"],["used","perfect"],["distribution","included"],["pre","paid"],["paid","subscription"],["subscription","base"],["base","targeted"],["targeted","mail"],["retail","sales"],["locations","within"],["super","wal"],["barnes","noble"],["states","including"],["including","texas"],["texas","alabama"],["alabama","oklahoma"],["florida","mississippi"],["mississippi","georgia"],["georgia","new"],["new","mexico"],["mexico","illinois"],["longer","published"],["published","references"],["references","new"],["new","orleans"],["orleans","times"],["great","american"],["american","seafood"],["seafood","cook"],["magazine","publisher"],["publisher","new"],["new","orleans"],["orleans","times"],["great","american"],["american","seafood"],["seafood","cook"],["louisiana","seafood"],["seafood","promotion"],["marketing","board"],["board","website"],["website","listing"],["listing","founder"],["founder","bio"],["database","trademark"],["trademark","externalinks"],["magazine","website"],["website","digital"],["digital","sample"],["sample","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["missing","category"],["category","magazines"],["magazines","published"],["texas","category"],["category","tourismagazines"]],"all_collocations":["lifestyle magazine","vacation along","gulf coasthe","home design","travel articles","articles offered","offered information","information home","home interiors","interiors coastal","coastal recreation","recreation food","food travel","travel destinations","victoria munt","munt rogers","rogers publication","publication editorial","coverage included","five states","mexico alabama","alabama florida","florida louisiana","louisiana mississippi","sized x","printed using","web offset","offset process","full colour","used perfect","distribution included","pre paid","paid subscription","subscription base","base targeted","targeted mail","retail sales","locations within","super wal","barnes noble","states including","including texas","texas alabama","alabama oklahoma","florida mississippi","mississippi georgia","georgia new","new mexico","mexico illinois","longer published","published references","references new","new orleans","orleans times","great american","american seafood","seafood cook","magazine publisher","publisher new","new orleans","orleans times","great american","american seafood","seafood cook","louisiana seafood","seafood promotion","marketing board","board website","website listing","listing founder","founder bio","database trademark","trademark externalinks","magazine website","website digital","digital sample","sample category","category american","american lifestyle","lifestyle magazines","magazines category","category defunct","defunct magazines","united states","states category","category magazinestablished","category magazines","missing category","category magazines","magazines published","texas category","category tourismagazines"],"new_description":"magazine lifestyle_magazine live vacation along gulf coasthe home design travel articles offered information home interiors coastal recreation food travel_destinations style magazine created port victoria munt rogers publication editorial coverage included five states border gulf mexico alabama florida louisiana mississippi sized x magazine printed using web offset process full colour used perfect distribution included pre paid subscription base targeted mail retail sales locations within super wal barnes noble magazine alsold sold states including texas alabama oklahoma florida mississippi georgia new_mexico illinois tennessee magazine longer published references new_orleans times article great_american seafood cook interview magazine publisher new_orleans times website article great_american seafood cook magazine louisiana seafood promotion marketing board website listing founder bio database trademark externalinks magazine website digital sample category_american lifestyle_magazines_category defunct_magazines united_states category_magazinestablished category_magazines year missing_category_magazines_published texas_category_tourismagazines"},{"title":"Halal tourism","description":"file jpg thumb halal chinese restaurant in taipei taiwan halal tourism is a subcategory of tourism which is geared towards muslim families who abide by rules of islam the hotels in such destinations do not serve alcohol and have separate swimming pools and spa facilities for men and women malaysia turkey and many more countries are trying to attract muslim tourists from all over the world offering facilities in accordance withe religious beliefs of muslim tourists currently therexists no internationally recognized standards on halal tourism the halal tourism industry also provides flights where no alcohol or pork products are served prayer timings are announced and religious programs are broadcast as part of entertainment offered on board a euromonitor international report released at world travel market in london says thathere is potential for a boom in halal tourism in the middleasthe report mentions a market for a halal startup company startup airline which could provide halal food prayer calls qur an in seat pockets and provide separate sections for male and female travelers halal tourism could blossom ame info untapped halal tourism islam online many international hotels do serve halal food that islaughtered in accordance withe teachings of islamic shariand is free of any substances forbidden by islam such as pork and alcohol some hotels havemployed people from the muslim world to provide translation services and other assistance that may be needed by tourists fromuslim countries halal tourism on the rise worldwide al watan daily theconomist s article on halal business published on may it is not just manufactured halal productservicesuch as halal holidays are booming too crescentours a london based online travel specialist books clients into hotels in turkey that have separate swimming pools for men and womeno alcohol policies and halal restaurants and rents out private holiday villas withigh walls halal business consuming passions theconomistripfez which was featured on forbes offers muslim friendly hotels and advice about halal food options quran availability and more based on a report by thomson reuters in muslims from around the globe spent billion travel excluding hajj and umrah in comparison travellers from china spent billion travel in while us travellerspent billion placing the muslim travel sector in third place in global travel spending and accounting for per cent of total global expenditures on travel muslim travel contributed over us billion to global gdp in and accounts for more than per cent of tourism spend worldwide according to the inaugural global economic impact of muslim tourism report by salam standard muslim travel standard in salam standard was launched as the world s first online hotel reference tool dedicated to muslim travellers the salam standard is divided into bronze silver and gold categories based on the range of amenities and services each participating property offers muslim guests including availability of prayer carpets qibla direction alcohol policies and availability of halal certified food uk halal tourism in april uk ranked th in the overall gmti but amazingly rd in the non oic destinations beating spain despite its past islamic heritage part of the success was due to it air connectivity ease of communication family friendly destination and ease of prayerspaces which may stem from its domestic population of muslims a key player in halal tourism within uk is muslim history tours who have given speeches about halal tourism in uk to the national tourist office visit britain and local authorities and offers consultation to shopping destinations to make services user friendly to arab and muslim tourist in they were world s runners up in the best halal tour operator narrowly missing outo etihad hala their niche market provides halal friendly hotels professionally qualified guided tours halal food on river thames cruises a muslim history sightseeing tour bus of london and the most recent introduction appears to have been black taxi tours externalinks the guardian crescentours halal holidays cnn travel halal tourism s moment in the sun bbc halal holidays in the sun theconomist crescentours halal holidays myrating faq on halal tourism category types of tourism category sharia","main_words":["file","jpg","thumb","halal","chinese","restaurant","taipei","taiwan","halal_tourism","subcategory","tourism","geared_towards","muslim","families","rules","islam","hotels","destinations","serve","alcohol","separate","swimming_pools","spa","facilities","men","women","malaysia","turkey","many_countries","trying","attract","muslim","tourists","world","offering","facilities","accordance","withe","religious","beliefs","muslim","tourists","currently","internationally","recognized","standards","halal_tourism","also_provides","flights","alcohol","pork","products","served","prayer","announced","religious","programs","broadcast","part","entertainment","offered","board","international","report","released","london","says","thathere","potential","boom","halal_tourism","report","mentions","market","halal","startup","company","startup","airline","could","provide","halal","food","prayer","calls","seat","pockets","provide","separate","sections","male","female","travelers","halal_tourism","could","info","halal_tourism","islam","online","many","serve","halal","food","accordance","withe","islamic","free","substances","forbidden","islam","pork","alcohol","hotels","people","muslim","world","provide","translation","services","assistance","may","needed","tourists","countries","halal_tourism","rise","worldwide","daily","article","halal","business","published","may","manufactured","halal","halal","holidays","booming","london","based","online_travel","specialist","books","clients","hotels","turkey","separate","swimming_pools","men","alcohol","policies","halal","restaurants","private","holiday","villas","withigh","walls","halal","business","consuming","featured","forbes","offers","muslim","friendly","hotels","advice","halal","food","options","availability","based","report","thomson","reuters","muslims","around","globe","spent","billion","travel","excluding","hajj","comparison","travellers","china","spent","billion","travel","us_billion","placing","muslim","travel","sector","third","place","global","travel","spending","accounting","per_cent","total","global","expenditures","travel","muslim","travel","contributed","us_billion","global","gdp","accounts","per_cent","tourism","spend","worldwide","according","inaugural","global","economic_impact","muslim","tourism","report","standard","muslim","travel","standard","standard","launched","world","first","online","hotel","reference","tool","dedicated","muslim","travellers","standard","divided","bronze","silver","gold","categories","based","range","amenities","services","participating","property","offers","muslim","guests","including","availability","prayer","carpets","direction","alcohol","policies","availability","halal","certified","food","uk","halal_tourism","april","uk","ranked","th","overall","non","destinations","beating","spain","despite","past","islamic","heritage","part","success","due","air","ease","communication","family","friendly","destination","ease","may","stem","domestic","population","muslims","key","player","halal_tourism","within","uk","muslim","history","tours","given","halal_tourism","uk","national_tourist","office","visit","britain","local_authorities","offers","consultation","shopping","destinations","make","services","user","friendly","arab","muslim","tourist","world","best","halal","tour_operator","narrowly","missing","outo","niche","market","provides","halal","friendly","hotels","professionally","qualified","guided_tours","halal","food","river_thames","cruises","muslim","history","sightseeing","tour","bus","london","recent","introduction","appears","black","taxi","tours","externalinks","guardian","halal","holidays","cnn","travel","halal_tourism","moment","sun","bbc","halal","holidays","sun","halal","holidays","faq","tourism_category"],"clean_bigrams":[["file","jpg"],["jpg","thumb"],["thumb","halal"],["halal","chinese"],["chinese","restaurant"],["taipei","taiwan"],["taiwan","halal"],["halal","tourism"],["geared","towards"],["towards","muslim"],["muslim","families"],["serve","alcohol"],["separate","swimming"],["swimming","pools"],["spa","facilities"],["women","malaysia"],["malaysia","turkey"],["attract","muslim"],["muslim","tourists"],["world","offering"],["offering","facilities"],["accordance","withe"],["withe","religious"],["religious","beliefs"],["muslim","tourists"],["tourists","currently"],["internationally","recognized"],["recognized","standards"],["halal","tourism"],["halal","tourism"],["tourism","industry"],["industry","also"],["also","provides"],["provides","flights"],["pork","products"],["served","prayer"],["religious","programs"],["entertainment","offered"],["international","report"],["report","released"],["world","travel"],["travel","market"],["london","says"],["says","thathere"],["halal","tourism"],["tourism","report"],["report","mentions"],["halal","startup"],["startup","company"],["company","startup"],["startup","airline"],["could","provide"],["provide","halal"],["halal","food"],["food","prayer"],["prayer","calls"],["seat","pockets"],["provide","separate"],["separate","sections"],["female","travelers"],["travelers","halal"],["halal","tourism"],["tourism","could"],["halal","tourism"],["tourism","islam"],["islam","online"],["online","many"],["many","international"],["international","hotels"],["serve","halal"],["halal","food"],["accordance","withe"],["substances","forbidden"],["muslim","world"],["provide","translation"],["translation","services"],["countries","halal"],["halal","tourism"],["rise","worldwide"],["halal","business"],["business","published"],["manufactured","halal"],["halal","holidays"],["london","based"],["based","online"],["online","travel"],["travel","specialist"],["specialist","books"],["books","clients"],["separate","swimming"],["swimming","pools"],["alcohol","policies"],["halal","restaurants"],["private","holiday"],["holiday","villas"],["villas","withigh"],["withigh","walls"],["walls","halal"],["halal","business"],["business","consuming"],["forbes","offers"],["offers","muslim"],["muslim","friendly"],["friendly","hotels"],["halal","food"],["food","options"],["thomson","reuters"],["globe","spent"],["spent","billion"],["billion","travel"],["travel","excluding"],["excluding","hajj"],["comparison","travellers"],["china","spent"],["spent","billion"],["billion","travel"],["us","billion"],["billion","placing"],["muslim","travel"],["travel","sector"],["third","place"],["global","travel"],["travel","spending"],["per","cent"],["total","global"],["global","expenditures"],["travel","muslim"],["muslim","travel"],["travel","contributed"],["us","billion"],["global","gdp"],["per","cent"],["tourism","spend"],["spend","worldwide"],["worldwide","according"],["inaugural","global"],["global","economic"],["economic","impact"],["muslim","tourism"],["tourism","report"],["standard","muslim"],["muslim","travel"],["travel","standard"],["first","online"],["online","hotel"],["hotel","reference"],["reference","tool"],["tool","dedicated"],["muslim","travellers"],["bronze","silver"],["gold","categories"],["categories","based"],["participating","property"],["property","offers"],["offers","muslim"],["muslim","guests"],["guests","including"],["including","availability"],["prayer","carpets"],["direction","alcohol"],["alcohol","policies"],["halal","certified"],["certified","food"],["food","uk"],["uk","halal"],["halal","tourism"],["april","uk"],["uk","ranked"],["ranked","th"],["destinations","beating"],["beating","spain"],["spain","despite"],["past","islamic"],["islamic","heritage"],["heritage","part"],["communication","family"],["family","friendly"],["friendly","destination"],["may","stem"],["domestic","population"],["key","player"],["halal","tourism"],["tourism","within"],["within","uk"],["muslim","history"],["history","tours"],["halal","tourism"],["national","tourist"],["tourist","office"],["office","visit"],["visit","britain"],["local","authorities"],["offers","consultation"],["shopping","destinations"],["make","services"],["services","user"],["user","friendly"],["muslim","tourist"],["best","halal"],["halal","tour"],["tour","operator"],["operator","narrowly"],["narrowly","missing"],["missing","outo"],["niche","market"],["market","provides"],["provides","halal"],["halal","friendly"],["friendly","hotels"],["hotels","professionally"],["professionally","qualified"],["qualified","guided"],["guided","tours"],["tours","halal"],["halal","food"],["river","thames"],["thames","cruises"],["muslim","history"],["history","sightseeing"],["sightseeing","tour"],["tour","bus"],["recent","introduction"],["introduction","appears"],["black","taxi"],["taxi","tours"],["tours","externalinks"],["halal","holidays"],["holidays","cnn"],["cnn","travel"],["travel","halal"],["halal","tourism"],["sun","bbc"],["bbc","halal"],["halal","holidays"],["halal","holidays"],["halal","tourism"],["tourism","category"],["category","types"],["tourism","category"]],"all_collocations":["file jpg","thumb halal","halal chinese","chinese restaurant","taipei taiwan","taiwan halal","halal tourism","geared towards","towards muslim","muslim families","serve alcohol","separate swimming","swimming pools","spa facilities","women malaysia","malaysia turkey","attract muslim","muslim tourists","world offering","offering facilities","accordance withe","withe religious","religious beliefs","muslim tourists","tourists currently","internationally recognized","recognized standards","halal tourism","halal tourism","tourism industry","industry also","also provides","provides flights","pork products","served prayer","religious programs","entertainment offered","international report","report released","world travel","travel market","london says","says thathere","halal tourism","tourism report","report mentions","halal startup","startup company","company startup","startup airline","could provide","provide halal","halal food","food prayer","prayer calls","seat pockets","provide separate","separate sections","female travelers","travelers halal","halal tourism","tourism could","halal tourism","tourism islam","islam online","online many","many international","international hotels","serve halal","halal food","accordance withe","substances forbidden","muslim world","provide translation","translation services","countries halal","halal tourism","rise worldwide","halal business","business published","manufactured halal","halal holidays","london based","based online","online travel","travel specialist","specialist books","books clients","separate swimming","swimming pools","alcohol policies","halal restaurants","private holiday","holiday villas","villas withigh","withigh walls","walls halal","halal business","business consuming","forbes offers","offers muslim","muslim friendly","friendly hotels","halal food","food options","thomson reuters","globe spent","spent billion","billion travel","travel excluding","excluding hajj","comparison travellers","china spent","spent billion","billion travel","us billion","billion placing","muslim travel","travel sector","third place","global travel","travel spending","per cent","total global","global expenditures","travel muslim","muslim travel","travel contributed","us billion","global gdp","per cent","tourism spend","spend worldwide","worldwide according","inaugural global","global economic","economic impact","muslim tourism","tourism report","standard muslim","muslim travel","travel standard","first online","online hotel","hotel reference","reference tool","tool dedicated","muslim travellers","bronze silver","gold categories","categories based","participating property","property offers","offers muslim","muslim guests","guests including","including availability","prayer carpets","direction alcohol","alcohol policies","halal certified","certified food","food uk","uk halal","halal tourism","april uk","uk ranked","ranked th","destinations beating","beating spain","spain despite","past islamic","islamic heritage","heritage part","communication family","family friendly","friendly destination","may stem","domestic population","key player","halal tourism","tourism within","within uk","muslim history","history tours","halal tourism","national tourist","tourist office","office visit","visit britain","local authorities","offers consultation","shopping destinations","make services","services user","user friendly","muslim tourist","best halal","halal tour","tour operator","operator narrowly","narrowly missing","missing outo","niche market","market provides","provides halal","halal friendly","friendly hotels","hotels professionally","professionally qualified","qualified guided","guided tours","tours halal","halal food","river thames","thames cruises","muslim history","history sightseeing","sightseeing tour","tour bus","recent introduction","introduction appears","black taxi","taxi tours","tours externalinks","halal holidays","holidays cnn","cnn travel","travel halal","halal tourism","sun bbc","bbc halal","halal holidays","halal holidays","halal tourism","tourism category","category types","tourism category"],"new_description":"file jpg thumb halal chinese restaurant taipei taiwan halal_tourism subcategory tourism geared_towards muslim families rules islam hotels destinations serve alcohol separate swimming_pools spa facilities men women malaysia turkey many_countries trying attract muslim tourists world offering facilities accordance withe religious beliefs muslim tourists currently internationally recognized standards halal_tourism halal_tourism_industry also_provides flights alcohol pork products served prayer announced religious programs broadcast part entertainment offered board international report released world_travel_market london says thathere potential boom halal_tourism report mentions market halal startup company startup airline could provide halal food prayer calls seat pockets provide separate sections male female travelers halal_tourism could info halal_tourism islam online many international_hotels serve halal food accordance withe islamic free substances forbidden islam pork alcohol hotels people muslim world provide translation services assistance may needed tourists countries halal_tourism rise worldwide daily article halal business published may manufactured halal halal holidays booming london based online_travel specialist books clients hotels turkey separate swimming_pools men alcohol policies halal restaurants private holiday villas withigh walls halal business consuming featured forbes offers muslim friendly hotels advice halal food options availability based report thomson reuters muslims around globe spent billion travel excluding hajj comparison travellers china spent billion travel us_billion placing muslim travel sector third place global travel spending accounting per_cent total global expenditures travel muslim travel contributed us_billion global gdp accounts per_cent tourism spend worldwide according inaugural global economic_impact muslim tourism report standard muslim travel standard standard launched world first online hotel reference tool dedicated muslim travellers standard divided bronze silver gold categories based range amenities services participating property offers muslim guests including availability prayer carpets direction alcohol policies availability halal certified food uk halal_tourism april uk ranked th overall non destinations beating spain despite past islamic heritage part success due air ease communication family friendly destination ease may stem domestic population muslims key player halal_tourism within uk muslim history tours given halal_tourism uk national_tourist office visit britain local_authorities offers consultation shopping destinations make services user friendly arab muslim tourist world best halal tour_operator narrowly missing outo niche market provides halal friendly hotels professionally qualified guided_tours halal food river_thames cruises muslim history sightseeing tour bus london recent introduction appears black taxi tours externalinks guardian halal holidays cnn travel halal_tourism moment sun bbc halal holidays sun halal holidays faq halal_tourism_category_types tourism_category"},{"title":"Hallo Berlin","description":"file hallo berlin jpg thumb ninth avenue december hallo berlin is a restaurant on tenth avenue manhattan tenth avenue between westh and th streets in thell s kitchen manhattan hell s kitcheneighborhood of new york city it consists of a beer garden restaurant and a food cart street carthey serve authentic german beer and german cuisine like sausage frankfurtersauerkraut potato pancake s red cabbage sp tzle sausage wursts and other foods hallo berlin s motto is new york s wurst restauranthere is also an outlet in conklinew york the restaurants were operated by rolf babiel until his death in october new york daily news rolf babiel death notice and his wife and sons hallo berlin s pushcart is located on th street manhattan th street and fifth avenue in manhattan inew york magazinew york magazine named it one ofour best power lunches in the city it was also awarded the vendy award in ranking first among new york city street food vendors references externalinks category drinking establishments in manhattan category german american culture inew york city category restaurants in manhattan category hell s kitchen manhattan category beer gardens category street culture category food trucks","main_words":["file","hallo","berlin","jpg","thumb","ninth","avenue","december","hallo","berlin","restaurant","tenth","avenue_manhattan","tenth","avenue","westh","kitchen","manhattan","hell","new_york","city","consists","beer_garden","restaurant","food_cart","street","serve","authentic","german","beer","german","cuisine","like","sausage","potato","pancake","red","sausage","foods","hallo","berlin","motto","new_york","restauranthere","also","outlet","york","restaurants","operated","death","october","new_york","daily_news","death","notice","wife","sons","hallo","berlin","located","th_street","manhattan","th_street","fifth","avenue_manhattan","inew_york","magazinew","york","magazine","named","one","ofour","best","power","lunches","city","also","awarded","award","ranking","first","among","new_york","city","street_food","vendors","references_externalinks","category_drinking_establishments","manhattan","category_german","american_culture","inew_york_city","category_restaurants","manhattan","category","hell","kitchen","manhattan","category","beer_gardens","category_street","culture_category","food_trucks"],"clean_bigrams":[["file","hallo"],["hallo","berlin"],["berlin","jpg"],["jpg","thumb"],["thumb","ninth"],["ninth","avenue"],["avenue","december"],["december","hallo"],["hallo","berlin"],["tenth","avenue"],["avenue","manhattan"],["manhattan","tenth"],["tenth","avenue"],["th","streets"],["kitchen","manhattan"],["manhattan","hell"],["new","york"],["york","city"],["beer","garden"],["garden","restaurant"],["food","cart"],["cart","street"],["serve","authentic"],["authentic","german"],["german","beer"],["german","cuisine"],["cuisine","like"],["like","sausage"],["potato","pancake"],["foods","hallo"],["hallo","berlin"],["new","york"],["october","new"],["new","york"],["york","daily"],["daily","news"],["death","notice"],["sons","hallo"],["hallo","berlin"],["th","street"],["street","manhattan"],["manhattan","th"],["th","street"],["fifth","avenue"],["avenue","manhattan"],["manhattan","inew"],["inew","york"],["york","magazinew"],["magazinew","york"],["york","magazine"],["magazine","named"],["one","ofour"],["ofour","best"],["best","power"],["power","lunches"],["also","awarded"],["ranking","first"],["first","among"],["among","new"],["new","york"],["york","city"],["city","street"],["street","food"],["food","vendors"],["vendors","references"],["references","externalinks"],["externalinks","category"],["category","drinking"],["drinking","establishments"],["manhattan","category"],["category","german"],["german","american"],["american","culture"],["culture","inew"],["inew","york"],["york","city"],["city","category"],["category","restaurants"],["manhattan","category"],["category","hell"],["kitchen","manhattan"],["manhattan","category"],["category","beer"],["beer","gardens"],["gardens","category"],["category","street"],["street","culture"],["culture","category"],["category","food"],["food","trucks"]],"all_collocations":["file hallo","hallo berlin","berlin jpg","thumb ninth","ninth avenue","avenue december","december hallo","hallo berlin","tenth avenue","avenue manhattan","manhattan tenth","tenth avenue","th streets","kitchen manhattan","manhattan hell","new york","york city","beer garden","garden restaurant","food cart","cart street","serve authentic","authentic german","german beer","german cuisine","cuisine like","like sausage","potato pancake","foods hallo","hallo berlin","new york","october new","new york","york daily","daily news","death notice","sons hallo","hallo berlin","th street","street manhattan","manhattan th","th street","fifth avenue","avenue manhattan","manhattan inew","inew york","york magazinew","magazinew york","york magazine","magazine named","one ofour","ofour best","best power","power lunches","also awarded","ranking first","first among","among new","new york","york city","city street","street food","food vendors","vendors references","references externalinks","externalinks category","category drinking","drinking establishments","manhattan category","category german","german american","american culture","culture inew","inew york","york city","city category","category restaurants","manhattan category","category hell","kitchen manhattan","manhattan category","category beer","beer gardens","gardens category","category street","street culture","culture category","category food","food trucks"],"new_description":"file hallo berlin jpg thumb ninth avenue december hallo berlin restaurant tenth avenue_manhattan tenth avenue westh th_streets kitchen manhattan hell new_york city consists beer_garden restaurant food_cart street serve authentic german beer german cuisine like sausage potato pancake red sausage foods hallo berlin motto new_york restauranthere also outlet york restaurants operated death october new_york daily_news death notice wife sons hallo berlin located th_street manhattan th_street fifth avenue_manhattan inew_york magazinew york magazine named one ofour best power lunches city also awarded award ranking first among new_york city street_food vendors references_externalinks category_drinking_establishments manhattan category_german american_culture inew_york_city category_restaurants manhattan category hell kitchen manhattan category beer_gardens category_street culture_category food_trucks"},{"title":"Hana Hou!","description":"publisher chris pearce founder founded firstdate company pacific travelogue incountry united states based honolulu languagenglish website issn oclc hana hou is an united states american bi monthly english language inflight magazine","main_words":["publisher","chris","founder","founded","firstdate","company","pacific","travelogue","honolulu","languagenglish_website_issn_oclc","united_states","english_language","inflight_magazine"],"clean_bigrams":[["publisher","chris"],["founder","founded"],["founded","firstdate"],["firstdate","company"],["company","pacific"],["pacific","travelogue"],["united","states"],["states","based"],["based","honolulu"],["honolulu","languagenglish"],["languagenglish","website"],["website","issn"],["issn","oclc"],["united","states"],["states","american"],["monthly","english"],["english","language"],["language","inflight"],["inflight","magazine"]],"all_collocations":["publisher chris","founder founded","founded firstdate","firstdate company","company pacific","pacific travelogue","united states","states based","based honolulu","honolulu languagenglish","languagenglish website","website issn","issn oclc","united states","states american","monthly english","english language","language inflight","inflight magazine"],"new_description":"publisher chris founder founded firstdate company pacific travelogue united_states_based honolulu languagenglish_website_issn_oclc united_states american_monthly english_language inflight_magazine"},{"title":"Hanford Site","description":"image hanford n reactor adjustedjpg thumb right nucleareactors line the riverbank athe hanford site along the columbia river in january the n reactor is in the foreground withe twin ke and kw reactors in the immediate background the historic b reactor the world s first plutonium production reactor is visible in the distance the hanford site is a mostly decommissioned nuclear technology nuclear production complex operated by the united states federal government on the columbia river in the ustate of washington state washington the site has been known by many names including hanford project hanford works hanford engineer works and hanford nucleareservation established in as part of the manhattan project in hanford washington hanford south central washington the site was home to the b reactor the first full scale plutonium productionucleareactor technology reactor in the world plutoniumanufactured athe site was used in the first nuclear weaponuclear bomb tested athe trinity nuclear testrinity site and in fat man the bomb atomic bombings of hiroshimand nagasaki detonated over nagasaki japan during the cold war the project expanded to include nine nucleareactors and five large nucleareprocessing plutonium processing complexes which produced plutonium for most of the more than weapons built for the nuclear weapons and the united states us nuclearsenal nuclear technology developed rapidly during this period and hanford scientists produced major technological achievements many early safety procedures and waste disposal practices were inadequate and government documents have confirmed that hanford s operations released significant amounts of radioactive contamination radioactive materials into the air and the columbia river the weapons production reactors were decommissioned athend of the cold war andecades of manufacturing left behind of high level waste high level radioactive waste stored within storage tanks an additional of solid radioactive waste and of contaminated groundwater beneathe site in the federal agency charged with overseeing the site the us department of energy doemptied single shell tanks by pumping nearly all of the liquid waste out into newer double shell tanks doe later found water intruding into at least single shell tanks and that one of them had been leaking about per year into the ground since about in doe discovered a leak also from a double shell tank caused by construction flaws and corrosion in the bottom and that double shell tanks have similar construction flawsince then doe changed to monitoring single shell tanks monthly andouble shell tanks everyears and also changed monitoring methods in march doe announced further delays in the construction of the waste treatment plant which will affecthe schedule foremoving waste from the tanks intermittent discoveries of undocumented contamination have slowed the pace and raised the cost of cleanup in the hanford site represented two thirds of the nation s high level radioactive waste by volume hanford is currently the most contaminated nuclear site in the united states and is the focus of the nation s largest environmental remediation environmental cleanup besides the cleanuproject hanford also hosts a commercial nuclear power planthe columbia generating station and various centers for scientific research andevelopment such as the pacific northwest nationalaboratory and the ligo hanford observatory onovember it was designated as part of the manhattan project national historical park alongside other sites in oak ridge and los alamos geography image hanford reach national monumentpng thumb right a map shows the main areas of the hanford site as well as the buffer zone that was turned over to the hanford reach national monument in the hanford site occupies roughly equivalento half of the total area of rhode island within benton county washington this land is closed to the general public it is a desert environment receiving under inches of annual precipitation covered mostly by shrub steppe vegetation the columbia river columbia river flows along the site for approximately forming its northern and eastern boundary the original site was and included buffer areas across the river in grant county washington grant and franklin county washington franklin countiesome of this land has been returned to private use and is now covered with orchards and irrigated fields in large portions of the site were turned over to the hanford reach national monumenthe site is divided by function into three main areas the nucleareactors were located along the river in an area designated as the area the chemical separations complexes were located inland in the central plateau designated as the areand variousupport facilities were located in the southeast corner of the site designated as the area the site is bordered on the southeast by the tri cities washington tri cities a metropolitan area composed of richland washington richland kennewick washington kennewick pasco washington pasco and smaller communities and home toveresidents hanford is a primary economic base for these cities climate date april early history the confluence of the yakima river yakima snake river snake and columbia rivers has been a meeting place for indigenous peoples native peoples for centuries the archaeological record of native americans in the united states native american habitation of this area stretches back over ten thousand years tribes and nations including the yakama nez perce people nez perce and umatilla tribe umatilla used the area for hunting fishing and gathering plant foods hanford archaeology archaeologists have identified numerous native american sites including pit house villages open campsites fishing sites hunting kill sites game drive complex es quarries and spirit quest sites and two archaeological sites were listed on the national register of historic places in hanford island archaeological site nrhp and hanford north archaeological district nhrp see also the commercial site national register of historic places native american use of the area continued into the th century even as the tribes werelocated to indian reservations the wanapum people were never forced onto a reservation and they lived along the columbia river in the priest rapids priest rapids valley until euro americans began to settle the region in the s initially along the columbia river south of priest rapids they established farms and orchardsupported by small scale irrigation projects and railroad transportation with small town centers at hanford washington hanford white bluffs washington white bluffs and richland washington richland manhattan project during world war ii the section of the federal office of scientific research andevelopment osrd sponsored an intensive research project on plutonium the research contract was awarded to scientists athe university of chicago metallurgicalaboratory met lab athe time plutonium was a rarelementhat had only recently been isolated in a university of california laboratory the met lab researchers worked on producing chain reacting piles of uranium to convert ito plutonium and finding ways to separate plutonium from uranium the program was accelerated in as the united states government became concerned that scientists inazi germany were developing a nuclear weapons program site selection image pic hanford highschooljpg thumb hanford high school hanford washington hanford high school shown beforesidents were displaced by the creation of the hanford site image hanford high schooljpg thumb right hanford high after abandonment in september the united states army corps of engineers army corps of engineers placed the newly formed manhattan project under the command of leslie groves brigadier generaleslie r groves charging him withe construction of industrial size plants for manufacturing plutonium and uranium groves recruited the dupont company to be the prime contractor for the construction of the plutonium production complex dupont recommended that it be located far away from thexisting uranium production facility at oak ridge tennessee the ideal site was described by these criteria large and remote tract of land a hazardous manufacturing area of at least space for laboratory facilities at least from the nearest reactor separations plant no towns of more than people closer than from the hazardous rectangle no main highway railway or employee village closer than from the hazardous rectangle a cleand abundant water supply a largelectric power supply ground that could bear heavy loads in december groves dispatched his assistant franklin matthias colonel franklin t matthias andupont engineers to scout potential sites matthias reported that hanford was ideal in virtually all respects except for the farming towns of white bluffs washington white bluffs and hanford washington hanford general groves visited the site in january and established the hanford engineer works codenamed site w the federal government quickly acquired the land under its war powers authoritysecond war powers act stat and relocated some residents of hanford white bluffs and nearby settlements as well as the wanapum people confederated tribes and bands of the yakama nation the confederated tribes of the umatilla indian reservation and the nez perce tribe construction image hanford b reactor constructionjpg thumb right b reactor construction the hanford engineer works hew broke ground in march and immediately launched a massive and technically challenging construction project dupont advertised for workers inewspapers for an unspecified war construction project in southeastern washington offering attractive scale of wages and living facilities the construction workers who reached a peak of in june lived in a construction camp near the old hanford townsite the administrators and engineers lived in the governmentown established at richland village which eventually had accommodation in family units andormitories kenneth nichols k d the road to trinity page morrow new york construction of the nuclear facilities proceeded rapidly before thend of the war in augusthew built buildings at hanford including three nucleareactors b d and f and three plutonium processing canyons t b and u each long to receive the radioactive wastes from the chemical separations process thew builtank farms consisting of single shell underground waste tanks b c t and u the project required of roads of railway and four electrical substations thew used of concrete and shortons tonne t of structural steel and consumed million between and plutonium production the b reactor b at hanford was the first large scale plutonium production reactor in the world it was designed and built by dupont based on an experimental design by enrico fermi and originally operated at watt electrical and thermal watts megawatts thermal the reactor was graphite moderated and water cooled it consisted of a graphite cylinder lying on itside penetrated through its entire lengthorizontally by aluminium tubes t of uranium slugs diameter by long sealed in aluminium cans went into the tubes cooling water was pumped through the aluminium tubes around the uranium slugs athe rate of per minute file hanford b reactorjpg thumb lefthe b reactor during construction on b reactor began in august and was completed on september the reactor went critical mass critical in late september and after overcoming nuclear poison ing produced its first plutonium onovember plutonium was produced in the hanford reactors when a uranium atom in a fuel slug absorbed a neutron to form uranium u rapidly undergoes beta decay to form neptunium which rapidly undergoes a second beta decay to form plutonium the irradiated fuel slugs were transported by rail to three huge remotely operated chemical separation plants called canyons that were about away a series of chemical processing stepseparated the small amount of plutonium that was produced from the remaining uranium and the fission waste products this first batch of plutonium was refined in the t plant from december to february andelivered to the los alamos nationalaboratory los alamos laboratory inew mexicon february two identical reactors d reactor and f reactor came online in december and february respectively by april shipments of plutonium were headed to los alamos every five days and hanford soon provided enough material for the bombs tested atrinity nuclear testrinity andropped over fat managasaki throughouthis period the manhattan project maintained a top secret classification until news arrived of the bomb dropped on atomic bombings of hiroshimand nagasaki hiroshima fewer than one percent of hanford s workers knew they were working on a nuclear weapons project general groves noted in his memoirs that we made certain that each member of the projecthoroughly understood his part in the total efforthat and nothing more initially six reactors or piles were proposed when the plutonium was to be used in the gun type thin manuclear bomb thin man bomb in mid a simple gun type bomb was found to be impractical for plutonium and the more advanced fat man bomb required less plutonium the number of piles was reduced to four and then three and the number of chemical separation plants from four to three technological innovations in the shortime frame of the manhattan project hanford engineers produced many significantechnological advances as none had ever built an industrial scale nucleareactor before scientists were unsure how mucheat would be generated by fission during normal operationseeking the greatest possible production while maintaining an adequate safety margin dupont engineers installed ammonia based refrigeration systems withe d and f reactors to further chill the river water before its use as reactor coolant another difficulty thengineerstruggled with was how to deal with radioactive contaminationce the canyons began processing irradiated slugs the machinery would become so radioactive that it would be unsafe for humans ever to come in contact with ithengineers therefore had to devise methods to allow for the replacement of any component via remote control they came up with a modular cell concept which allowed major components to be removed and replaced by an operator sitting in a heavily shielded overhead crane this method required early practical application of two technologies that later gained widespread use polytetrafluoroethylene teflon used as a gasket material and closed circuitelevision used to give the crane operator a better view of the process cold war expansion image hanford reactorjpg thumb right decommissioning d reactor in september the general electric general electricompany assumed management of the hanford works under the supervision of the newly created united states atomic energy commission atomic energy commission as the cold war began the united states faced a new strategic threat in the rise of the soviet atomic bomb project soviet nuclear weapons program in augusthe hanford works announced funding for the construction of two neweapons reactors and research to develop a new chemical separations process entering a new phase of expansion by the hanford site was home to nine nucleareactors along the columbia river five reprocessing plants on the central plateau and more than support buildings and radiologicalaboratories around the sitextensive modifications and upgrades were made to the original three world war ii reactors and a total of underground waste tanks were built hanford was at its peak production from tover thentire years of operations the site produced about of plutonium supplying the majority of the weapons in the us arsenal uranium was also produced in a hanford technicianamed harold mccluskey received the largest recordedose of americium following a laboratory accident due to prompt medical intervention he survived the incident andied eleven years later of natural causes decommissioning most of the reactors were shut down between and with an average individualife span of years the last reactor n reactor continued toperate as a dual purpose reactor being both a powereactor used to feed the civilian electrical grid via the washington public power supply system wppss and a plutonium production reactor for nuclear weapons n reactor operated until since then most of the hanford reactors have beentombed cocooned to allow the radioactive materials to decay and the surrounding structures have been removed and buried the b reactor has not been cocooned and is accessible to the public on occasional guided tours it was listed on the national register of historic places inrhp site see also the commercial site national register of historic places and some historians advocate converting it into a museum b reactor was designated a national historic landmark by the national park service on august chemical engineering news vol no september hanford s b reactor gets landmark status p class wikitable weapons production reactors reactor name start up date shutdown date initial power mwt final power mwt b reactor align right sep align right feb align right align right d reactor align right dec align right jun align right align right f reactor align right feb align right jun align right align right h reactor align right oct align right apr align right align right dr d replacement reactor align right oct align right dec align right align right c reactor align right nov align right apr align right align right kw k west reactor align right jan align right feb align right align right ke k east reactor align right apr align right jan align right align right n reactor align right dec align right jan align right align right later operations image hanford site signjpg thumb right highway sign on a road entering the hanford site the united states department of energy assumed control of the hanford site in although uranium enrichment and plutonium breeding were slowly phased outhe nuclear legacy left an indelible mark on the tri citiesince world war ii the area hadeveloped from a small farming community to a booming atomic frontier to a powerhouse of the nuclear industrial complex decades ofederal investment created a community of highly skilled scientists and engineers as a result of this concentration of specialized skills the hanford site was able to diversify its operations to include scientific research test facilities and commercial nuclear power production operational facilities located athe hanford site included the pacific northwest nationalaboratory owned by the department of energy and operated by battelle memorial institute the fast flux test facility fftf a national research facility in operation from to whose last fuel was removed in ligo s hanford observatory an interferometer searching for gravitational waves columbia generating station a commercial nuclear power plant operated by energy northwest a us navy nuclear submarine reactor dry storage site containing sealed reactor sections of us navy submarines the department of energy and its contractors offer tours of the site sixty public tours each five hours long were planned for the tours are free require advance reservation via the department s web site and are limited to us citizens at least years of age tunnel collapse on the morning of may a section of a tunnel caved in it was used to store contaminated materials and was located nexto the plutonium uranium extraction purex facility in theast area in the center of the hanford site all non essential personnel werevacuated from the site some truckloads about of soil were used to fill in the holenvironmental concerns image hare hanfordreachjpg thumb righthe hanford reach of the columbia river where radioactivity was released from to a huge volume of water from the columbia river was required to dissipate theat produced by hanford s nucleareactors from to pump systems drew cooling water from the river and after treating this water for use by the reactors returned ito the river before its release into the river the used water was held in large tanks known as retention basin s for up to six hours longer lived isotope s were not affected by this retention and several becquerel terabecquerels entered the river every day the federal government kept knowledge abouthese radioactive releasesecret radiation was later measuredownstream as far west as the washington and oregon coasts the plutonium separation process resulted in the release of radioactive isotopes into the air which were carried by the wind throughout southeastern washington and into parts of idaho montana oregon and british columbia downwinders werexposed to radionuclides particularly iodine withe heaviest releases during the period from to these radionuclides entered the food chain via dairy cows grazing on contaminated fields hazardous fallout was ingested by communities who consumed radioactive food and milk most of these airborne releases were a part of hanford s routine operations while a few of the largereleases occurred in isolated incidents in an intentional release known as the green run released curies of iodine over two days another source of contaminated food came from columbia river fish an impact felt disproportionately by native americans in the united states native american communities who depended on the river for their customary diets a us government report released in estimated that curies of radioactive iodine had been released into the river and air from the hanford site between and image salmon at hanford sitejpg thumb left salmon spawning in the hanford reach near the h reactor beginning in the scientists withe united states public health service us public health service published reports about radioactivity released from hanford and there were protests from thealth departments of oregon and washington in response to an article in the spokane spokesman review in september the department of energy announced to declassify environmental records and in february released pages of previously unavailable historical documents about hanford s operations the washington state department of health collaborated withe citizen led hanford health informationetwork hhin to publicize databouthealth effects of hanford s operations hhin reports concluded that residents who livedownwind from hanford or who used the columbia river downstream werexposed to elevatedoses of radiation that placed them at increased risk for various cancers and other diseases a mass tort lawsuit brought by two thousand hanfordownwinders againsthe federal government has been in the court system for manyears hanfordownwinders litigation website downwinderscom retrieved on september twof six plaintiffs who wento trial in were awarded in damagesince radioactive materials are known to be leaking from hanford into thenvironmenthe highestritium concentration detected in riverbank springs during was pci l bq l athe hanford townsite the highest iodine concentration of pci l bq l was also found in a hanford townsite spring the who guidelines foradionuclides in drinking water limits levels of iodine at bq l and tritium at bq l concentrations of radionuclides including tritium technetium and iodine in riverbank springs near the hanford townsite have generally been increasing since this an area where a major groundwater pollution groundwater plume from theast area intercepts the river detected radionuclides include strontium technetium iodine uranium and tritium other detected contaminants include arsenichromium chloride fluoride nitrate and sulfate in february governor jay inslee announced that a tank storing radioactive waste athe site had been leaking liquids on average of to gallons per year he said thathough the leak posed no immediate health risk to the public it should not be an excuse for not doing anything on february the governor stated that more tanks at hanford site were leaking radioactive waste there are tanks at hanford of whichave a single shell historically single shell tanks were used for storing radioactive liquid waste andesigned to last years by some liquid waste was transferred from single shell tanks to safer double shell tanks a substantial amount of residue remains in the older single shell tanks with one containing an estimated gallons m of radioactive sludge for example it is believed that up to six of thesempty tanks are leaking two tanks areportedly leaking at a rate of gallons liters per year each while the remaining four tanks are leaking at a rate of gallons liters per year each occupational health concernsince workers have reported exposure to harmful vapors after working arounderground nuclear storage tanks with no solution found more than workers in alone reported smelling vapors and became ill with nosebleeds headaches watery eyes burning skin contact dermatitis increased heart rate difficulty breathing coughing sore throats expectorating dizziness and nausea several of these workers have long term disabilities doctors checked workers and cleared them to return to work monitors worn by tank workers have found no samples with chemicals close to the federalimit for occupational exposure in august occupational safety and health administration osha ordered the facility to rehire a contractor and pay in back wages for firing them for whistleblowing on safety concerns athe site onovember washington attorney general bob ferguson said the state planned to sue the doe and its contractor to protect workers from hazardous vapors at hanford a report by the doe savannah river nationalaboratory initiated by washington river protection solutions found that doe s methods to study vaporeleases were inadequate particularly thathey did not account for short but intense vaporeleases they recommended proactively sampling the air inside tanks to determine its chemical makeup accelerating new practices to prevent worker exposures and modifying medical evaluations to reflect howorkers arexposed to vapors cleanup under superfund image hanford site tank interiorjpg thumb right image of the surface of waste found inside double shell tank sy athe hanford site april on june the hanford site was divided into four areas and proposed for inclusion the national priorities list on may the washington department of ecology the united states environmental protection agency and the department of energy entered into the tri party agreement which provides a legal framework for environmental remediation at hanford the agencies arengaged in the world s largest environmental cleanup with many challenges to be resolved in the face of overlapping technical political regulatory and cultural interests the cleanup effort is focused on three outcomes restoring the columbia river corridor for other uses converting the central plateau to long term waste treatment and storage and preparing for the future the cleanup effort is managed by the department of energy under the oversight of the two regulatory agencies a citizen led hanford advisory board provides recommendations from community stakeholders including local and state governments regional environmental organizations business interests and native american tribes citing the hanford lifecycle scope schedule and cost reporthestimated cost of the remaining hanford clean up is billion more than billion per year for the next six years with a lower cost projection of approximately billion per year until about workers are on site to consolidate clean up and mitigate waste contaminated buildings and contaminated soil originally scheduled to be complete within thirtyears the cleanup was less than halfinished by of the four areas that were formally listed asuperfund sites on october only one has been removed from the list following cleanup file spent nuclear fuel hanfordjpg thumb left spent nuclear fuel stored underwater and uncapped in hanford s k east basin while majoreleases of radioactive material ended withe reactor shutdown in the s and many of the most dangerous wastes are contained there are continued concerns about contaminated groundwater headed toward the columbia river and about workers health and safety the most significant challenge at hanford istabilizing the of high level radioactive waste stored in underground tanks by about a third of these tanks had leaked waste into the soil and groundwater most of the liquid waste had been transferred to more secure double shelled tanks however of liquid waste together with of salt cake and sludge remains in the single shelled tanks doe lacks information abouthextento which the double shell tanks may be susceptible to corrosion without determining thextento which the factors that contributed to the leak in ay were similar to the other double shell tanks doe cannot be sure how long its double shell tanks can safely store waste that waste was originally scheduled to be removed by the revisedeadline was nearby aquifers contain an estimated of contaminated groundwater as a result of the leaks of radioactive waste is traveling through the groundwater toward the columbia river this waste is expected to reach the river in to years if cleanup does not proceed on schedule the site includes of solid radioactive waste image handfor erdf grand openingjpg thumb right grand opening of thenvironmental restoration disposal facility erdf under the tri party agreement lower level hazardous wastes are buried in huge lined pits that will be sealed and monitored with sophisticated instruments for manyears disposal of plutonium and other high level wastes is a more difficult problem that continues to be a subject of intense debate as an example plutonium has a half life of years and a decay of ten half lives is required before a sample is considered to cease its radioactivity in the department of energy awarded a billion contracto bechtel a san francisco based construction and engineering firm to build a radioactive waste vitrification planto combine the dangerous wastes with glass to render them stable construction began in the plant was originally scheduled to be operational by with vitrification completed by theconomist nuclear waste from bombs to handbags march p according to a study by the general accounting office there were a number of serious unresolved technical and managerial problems estimated costs were billion with commencement of operations estimated to be in and about decades of operation in may state and federal officials began closedoor negotiations abouthe possibility of extending legal cleanup deadlines for waste vitrification in exchange for shifting the focus of the cleanup to urgent prioritiesuch as groundwateremediation those talkstalled in october in early a million cuto the hanford cleanup budget was proposed washington state officials expressed concern abouthe budget cuts as well as missedeadlines and recent safety lapses athe site and threatened to file a lawsuit alleging thathe department of energy is in violation of environmentalaws they appeared to step back from thathreat in april after another meeting ofederal and state officials resulted in progress toward a tentative agreement during excavations from to a sample of purified plutonium was uncovered inside a safe in a waste trench and has been dated to abouthe s making ithe second oldest sample of purified plutonium known to exist analyses published in concluded thathe sample originated at oak ridge and was one of several sento hanford for optimization tests of the t plant until hanford could produce its own plutonium documents refer to such a sample belonging to watt s group which was disposed of in itsafe when a radiation leak wasuspected chemical engineering news antique plutoniumanhattan project era plutonium is found in a glass jug during hanford site cleanup some of the radioactive waste at hanford wasupposed to be stored in the planned yucca mountainuclear waste repository but after that project wasuspended washington state sued joined by south carolina their first suit was dismissed in july in a subsequent suit federal authorities were ordered to either approve oreject plans for the yucca mountain storage site a potential radioactive leak was reported in the clean up was estimated to have cost billion with billion morequired hanford organizations the hanford site operations were initially directed by colonel franklin matthias of the us army corps of engineers postwar the united states atomic energy commission atomic energy commission took over and then thenergy research andevelopment administration hanford operations are currently directed by the us department of energy it has been operated under government contract by various private companies over the years asummarized in the table through class wikitable sortable year begun month organization responsibility class unsortable remarks december us army corps of engineers lead us governmentity held role until january december ei dupont de nemours company dupont all site activities initial hanford site contractor september general electricompany ge all site activities replacedupont january united states atomic energy commission atomic energy commission lead us governmentity replaced us army corps of engineers may vitro engineers hanford engineering services assumed ges new facility design role june ja jones construction hanford construction services assumed ges construction role january us testing environmental bioassay testing assumed ges environmental and bioassay testing role january battelle memorial institute pacific northwest nationalaboratory pacific northwest laboratory pnl assumed ge s laboratory operationsubsequently renamed pacific northwest nationalaboratory july computer sciences corporation cscomputer services new scope august hanford occupational health foundation industrial medicine assumed ge s industrial medicine role september douglas united nuclear single pass reactor operations fuel fabrication assumed part of ge s reactor operations january isochemical processing assumed ge s chemical processing operations march itt federal support services inc support services assumed july douglas united nuclear n reactor operation assumed remainder of ge s reactor operationseptember atlantic richfield hanford company chemical processing replaced isochem august hanford environmental health foundation industrial medicine name change only february westinghouselectric westinghouse hanford company hanford engineering development laboratory spun offrom pnl with mission to build the fast flux test facility september arhco support services replaces itt pss april united nuclear industries inc all production reactor operations name change from douglas united nuclear only january energy research andevelopment administration erda lead us governmentity replaced aec managed site until october boeing computer services bcs computer services replaced csc october us department of energy doe lead us government agency replaced erda managesite presently octoberockwell hanford operations rho chemical processing support services replaces archo june braun hanford company bhc architect engineering services replaces vitro march kaiser engineering hanford keh architect engineering services replaces bhc march keh construction consolidated contract includes former ja jones work june westinghouselectric whc site management operations consolidated contract includes formerho unc keh work october fluor corp fluor daniel hanford inc fdh site management operations fdh is integrating contractor with subcontracted companies february fluor corp fluor hanford site cleanup operations transition to site cleanup fluor subcontractors held various roles december bechtel national inc engineering construction and commissioning of the waste treatment plant october ch m hill plateau remediation company central plateau cleanup and closure april washington closure hanford river corridor cleanup and closure may mission support alliance site infrastructure and services consolidated services contract october washington river protection solutions tank farm operations other divisions of the site historical plutonium finishing plant pfp made plutoniumetal for use in weapons b plant s plant plant processing separation and extraction of various chemicals and isotopes health instrumentsection an attempto keep workers and thenvironment safe redox plant c plant recovered wasted uranium from world war ii processes experimental animal farm and aquatic biology laboratory technical centeradiochemistry physics metallurgy biophysics radioactive sewer neutralization metal fab fuels manufacturing tank farmstorage of liquid nuclear waste metal recovery plant u plant recover uranium from tank farms uranium trioxide plant aka uranium oxide plant aka uo plantook output from other plants ie liquid uranyl nitrate hexahydrate from u plant and purex plant made uranium trioxide powder plutonium uranium extraction plant purex plant extracted useful material from spent fuel waste also see the purex article plutonium recycle test reactor prtr experimented with alternative fuel mixtures plutonium fuels pilot plant pfpp see prtr historic photos image hanford f reactor cooling basinsjpg cooling wateretention basins athe f reactor image hanford tank farmjpg underground tank farm with of the site s waste storage tanks image hanford waste tankjpg inside one of the waste storage tanks image hanford purex facilityjpg inside the purex facility image hanford from rattlesnake mountainjpg view of the central plateau from rattlesnake mountain benton county washington rattlesnake mountain image richland washingtonjpg the governmentown of richland washington richland in thearly days of the site image hanford workersjpg hanford workers lining up for paychecks image hanford sheep testing jpg hanford scientists feeding radioactive food to sheep image n d hanford sheep testingjpg testing a sheep s thyroid foradiation image hanford billboardjpg cold war era billboard image atomic frontier daysjpg atomic frontier days parade in richland washington richland image fftf hanfordjpg the fast flux test facility see also lists of nuclear disasters and radioactive incidents timeline of nuclear weapons development references furthereading john m findlay and bruce hevly atomic frontier days hanford and the american west university of washington press pages explores the history of the hanford nucleareservation and the tri cities of richland pasco and kennewick washington externalinks official hanford website department of energy washington department of ecology nuclear waste program state agency that regulates hanford cleanup us environmental protection agency federal agency that regulates hanford cleanup category hanford site category geography of benton county washington category columbia river category environmental disasters in the united states category geography of washington state category history of washington state category manhattan project category buildings and structures in washington state category nuclear history of the united states category nuclear weapons infrastructure of the united states category radioactive waste repositories category tri cities washington category united states department of energy facilities category closed military facilities of the united states in the united states category buildings and structures in benton county washington category tourist attractions in benton county washington category radioactively contaminated areas category establishments in washington state category military superfund sites category superfund sites in washington state category nuclear accidents and incidents category military research of the united states category gravitational wave astronomy category atomic tourism","main_words":["image","hanford","n","reactor","thumb","right","nucleareactors","line","athe","hanford_site","along","columbia_river","january","n","reactor","withe","twin","reactors","immediate","background","historic","b_reactor","world","first","plutonium_production","reactor","visible","distance","hanford_site","mostly","decommissioned","nuclear","technology","nuclear","production","complex","operated","united_states","federal_government","columbia_river","ustate","washington_state","washington","site","known","many","names","including","hanford","project","hanford","works","hanford","engineer","works","hanford","established","part","manhattan_project","hanford","washington","hanford","south","central","washington","site","home","b_reactor","first","full_scale","plutonium","technology","reactor","world","athe_site","used","first","nuclear","bomb","tested","athe","trinity","nuclear","site","fat","man","bomb","atomic_bombings","hiroshimand_nagasaki","detonated","nagasaki","japan","cold_war","project","expanded","include","nine","nucleareactors","five","large","plutonium","processing","complexes","produced","plutonium","weapons","built","nuclear_weapons","united_states","us","nuclear","technology","developed","rapidly","period","hanford","scientists","produced","major","technological","achievements","many","early","safety","procedures","waste","disposal","practices","inadequate","government","documents","confirmed","hanford","operations","released","significant","amounts","radioactive","contamination","radioactive","materials","air","columbia_river","weapons","production","reactors","decommissioned","athend","cold_war","manufacturing","left","behind","high_level","waste","high_level","radioactive_waste","stored","within","storage","tanks","additional","solid","radioactive_waste","contaminated","groundwater","beneathe","site","federal","agency","charged","overseeing","site","us_department","energy","single","shell_tanks","nearly","liquid","waste","newer","double","shell_tanks","doe","later","found","water","least","single","shell_tanks","one","leaking","per_year","ground","since","doe","discovered","leak","also","double","shell","tank","caused","construction","bottom","double","shell_tanks","similar","construction","doe","changed","monitoring","single","shell_tanks","monthly","shell_tanks","also","changed","monitoring","methods","march","doe","announced","delays","construction","waste","treatment","plant","affecthe","schedule","waste","tanks","discoveries","contamination","pace","raised","cost","cleanup","hanford_site","represented","two_thirds","nation","high_level","radioactive_waste","volume","hanford","currently","contaminated","nuclear","site","united_states","focus","nation","largest","environmental","remediation","environmental","cleanup","besides","hanford","also","hosts","commercial","nuclear_power","columbia","generating","station","various","centers","pacific_northwest","nationalaboratory","hanford","observatory","onovember","designated","part","manhattan_project","national_historical","park","alongside","sites","oak_ridge","los_alamos","geography","image_hanford","reach","national","thumb","right","map","shows","main","areas","hanford_site","well","buffer","zone","turned","hanford","reach","national","monument","hanford_site","occupies","roughly","equivalento","half","total","area","rhode_island","within","benton","county","washington","land","closed","general_public","desert","environment","receiving","inches","annual","covered","mostly","vegetation","columbia_river","columbia_river","flows","along","site","approximately","forming","northern","eastern","boundary","original","site","included","buffer","areas","across","river","grant","county","washington","grant","franklin","county","washington","franklin","land","returned","private","use","covered","fields","large","portions","site","turned","hanford","reach","national","monumenthe","site","divided","function","three","main","areas","nucleareactors","located","along","river","area","designated","area","chemical","separations","complexes","located","inland","central","plateau","designated","areand","facilities","located","southeast","corner","site","designated","area","site","southeast","tri","cities","washington","tri","cities","metropolitan","area","composed","richland","washington","richland","washington","washington","smaller","communities","home","hanford","primary","economic","base","cities","climate","date","april","early","history","river","snake","river","snake","meeting_place","indigenous","peoples","native","peoples","centuries","archaeological","record","native_americans","united_states","native_american","habitation","area","stretches","back","ten","thousand","years","tribes","nations","including","nez","perce","people","nez","perce","tribe","used","area","hunting","fishing","gathering","plant","foods","hanford","archaeology","archaeologists","identified","numerous","native_american","sites","including","pit","house","villages","open","campsites","fishing","sites","hunting","kill","sites","game","drive","complex","spirit","quest","sites","two","archaeological","sites","listed","national_register","historic_places","hanford","island","archaeological","site","nrhp","hanford","north","archaeological","district","see_also","commercial","site","national_register","historic_places","native_american","use","area","continued","th_century","even","tribes","indian","reservations","people","never","forced","onto","reservation","lived","along","columbia_river","priest","rapids","priest","rapids","valley","euro","americans","began","settle","region","initially","along","columbia_river","south","priest","rapids","established","farms","small_scale","irrigation","projects","railroad","transportation","small_town","centers","hanford","washington","hanford","white","bluffs","washington","white","bluffs","richland","washington","richland","manhattan_project","world_war","ii","section","federal","office","sponsored","intensive","research","project","plutonium","research","contract","awarded","scientists","athe_university","chicago","metallurgicalaboratory","met","lab","athe_time","plutonium","recently","isolated","university","california","laboratory","met","lab","researchers","worked","producing","chain","piles","uranium","convert","ito","plutonium","finding","ways","separate","plutonium","uranium","program","accelerated","united_states","government","became","concerned","scientists","germany","developing","nuclear_weapons","program","site","selection","image_hanford","thumb","hanford","high_school","hanford","washington","hanford","high_school","shown","displaced","creation","hanford_site","image_hanford","high","thumb","right","hanford","high","september","united_states","army","corps","engineers","army","corps","engineers","placed","newly","formed","manhattan_project","command","leslie","groves","brigadier","r","groves","charging","withe","construction","industrial","size","plants","manufacturing","plutonium","uranium","groves","recruited","dupont","company","prime","contractor","construction","plutonium_production","complex","dupont","recommended","located","far","away","thexisting","uranium","production","facility","oak_ridge","tennessee","ideal","site","described","criteria","large","remote","land","hazardous","manufacturing","area","least","space","laboratory","facilities","least","nearest","reactor","separations","plant","towns","people","closer","hazardous","main","highway","railway","employee","village","closer","hazardous","cleand","abundant","water","supply","power","supply","ground","could","bear","heavy","loads","december","groves","assistant","franklin","matthias","colonel","franklin","matthias","engineers","scout","potential","sites","matthias","reported","hanford","ideal","virtually","respects","except","farming","towns","white","bluffs","washington","white","bluffs","hanford","washington","hanford","general","groves","visited","site","january","established","hanford","engineer","works","site","w","federal_government","quickly","acquired","land","war","powers","war","powers","act","relocated","residents","hanford","white","bluffs","nearby","settlements","well","people","tribes","bands","nation","tribes","indian","reservation","nez","perce","tribe","construction","image_hanford","b_reactor","thumb","right","b_reactor","construction","hanford","engineer","works","broke","ground","march","immediately","launched","massive","technically","challenging","construction","project","dupont","advertised","workers","war","construction","project","southeastern","washington","offering","attractive","scale","wages","living","facilities","construction","workers","reached","peak","june","lived","construction","camp","near","old","hanford","townsite","administrators","engineers","lived","established","richland","village","eventually","accommodation","family","units","kenneth","nichols","k","road","trinity","page","new_york","construction","nuclear","facilities","proceeded","rapidly","thend","war","built","buildings","hanford","including","three","nucleareactors","b","f","three","plutonium","processing","canyons","b","long","receive","chemical","separations","process","farms","consisting","single","shell","underground","waste","tanks","b","c","project","required","roads","railway","four","electrical","used","concrete","tonne","structural","steel","consumed","million","plutonium_production","b_reactor","b","hanford","first","large_scale","plutonium_production","reactor","world","designed","built","dupont","based","experimental","design","enrico","fermi","originally","operated","electrical","thermal","thermal","reactor","graphite","water","cooled","consisted","graphite","lying","entire","aluminium","tubes","uranium","slugs","diameter","long","sealed","aluminium","cans","went","tubes","cooling","water","aluminium","tubes","around","uranium","slugs","athe","rate","per_minute","file","hanford","b","thumb","lefthe","b_reactor","construction","b_reactor","began","august","completed","september","reactor","went","critical","mass","critical","late","september","overcoming","nuclear","poison","ing","produced","first","plutonium","onovember","plutonium","produced","hanford","reactors","uranium","fuel","slug","absorbed","neutron","form","uranium","rapidly","beta","decay","form","rapidly","second","beta","decay","form","plutonium","irradiated","fuel","slugs","transported","rail","three","huge","remotely","operated","chemical","separation","plants","called","canyons","away","series","chemical","processing","small","amount","plutonium","produced","remaining","uranium","fission","waste","products","first","batch","plutonium","refined","plant","december","february","andelivered","los_alamos","nationalaboratory","los_alamos","laboratory","inew","february","two","identical","reactors","reactor","f","reactor","came","online","december","february","respectively","april","shipments","plutonium","headed","los_alamos","every","five","days","hanford","soon","provided","enough","material","bombs","tested","nuclear","fat","period","manhattan_project","maintained","top","secret","classification","news","arrived","bomb","dropped","atomic_bombings","hiroshimand_nagasaki","hiroshima","fewer","one","percent","hanford","workers","knew","working","nuclear_weapons","project","general","groves","noted","memoirs","made","certain","member","understood","part","total","nothing","initially","six","reactors","piles","proposed","plutonium","used","gun","type","thin","bomb","thin","man","bomb","mid","simple","gun","type","bomb","found","impractical","plutonium","advanced","fat","man","bomb","required","less","plutonium","number","piles","reduced","four","three","number","chemical","separation","plants","four","three","technological","innovations","shortime","frame","manhattan_project","hanford","engineers","produced","many","advances","none","ever","built","industrial","scale","nucleareactor","scientists","would","generated","fission","normal","greatest","possible","production","maintaining","adequate","safety","margin","dupont","engineers","installed","based","systems","withe","f","reactors","river","water","use","reactor","coolant","another","difficulty","deal","radioactive","canyons","began","processing","irradiated","slugs","machinery","would_become","radioactive","would","unsafe","humans","ever","come","contact","therefore","methods","allow","replacement","component","via","remote","control","came","modular","cell","concept","allowed","major","components","removed","replaced","operator","sitting","heavily","overhead","crane","method","required","early","practical","application","two","technologies","later","gained","widespread","use","used","material","closed","used","give","crane","operator","better","view","process","cold_war","expansion","image_hanford","thumb","right","reactor","september","general","electric","general","assumed","management","hanford","works","supervision","newly","created","united_states","atomic_energy_commission","atomic_energy_commission","cold_war","began","united_states","faced","new","strategic","threat","rise","soviet","atomic_bomb","project","soviet","nuclear_weapons","program","augusthe","hanford","works","announced","funding","construction","two","reactors","research","develop","new","chemical","separations","process","entering","new","phase","expansion","hanford_site","home","nine","nucleareactors","along","columbia_river","five","plants","central","plateau","support","buildings","around","modifications","upgrades","made","original","three","world_war","ii","reactors","total","underground","waste","tanks","built","hanford","peak","production","tover","thentire","years","operations","site","produced","plutonium","supplying","majority","weapons","us","arsenal","uranium","also","produced","hanford","harold","received","largest","following","laboratory","accident","due","prompt","medical","intervention","survived","incident","andied","eleven","years_later","natural","causes","reactors","shut","average","span","years","last","reactor","n","reactor","continued","toperate","dual","purpose","reactor","used","feed","civilian","electrical","grid","via","washington","public","power","supply","system","plutonium_production","reactor","nuclear_weapons","n","reactor","operated","since","hanford","reactors","allow","radioactive","materials","decay","surrounding","structures","removed","buried","b_reactor","accessible","public","occasional","guided_tours","listed","national_register","historic_places","site","see_also","commercial","site","national_register","historic_places","historians","advocate","converting","museum","b_reactor","designated","national_historic","landmark","national_park","service","august","chemical","engineering","news","vol","september","hanford","b_reactor","gets","landmark","status","p","class","wikitable","weapons","production","reactors","reactor","name","shutdown","date","initial","power","mwt","final","power","mwt","b_reactor","align","right","sep","align","right","feb","align","right","align","right","reactor","align","right","dec","align","right","jun","align","right","align","right","f","reactor","align","right","feb","align","right","jun","align","right","align","right","h","reactor","align","right","oct","align","right","apr","align","right","align","right","replacement","reactor","align","right","oct","align","right","dec","align","right","align","right","c","reactor","align","right","nov","align","right","apr","align","right","align","right","k","west","reactor","align","right","jan","align","right","feb","align","right","align","right","k","east","reactor","align","right","apr","align","right","jan","align","right","align","right","n","reactor","align","right","dec","align","right","jan","align","right","align","operations","signjpg","thumb","right","highway","sign","road","entering","hanford_site","united_states","department","energy","assumed","control","hanford_site","although","uranium","enrichment","plutonium","breeding","slowly","outhe","nuclear","legacy","left","mark","tri","world_war","ii","area","hadeveloped","small","farming","community","booming","atomic","frontier","powerhouse","nuclear","industrial","complex","decades","ofederal","investment","created","community","highly","skilled","scientists","engineers","result","concentration","specialized","skills","hanford_site","able","diversify","operations","include","scientific_research","test","facilities","commercial","nuclear_power","production","operational","facilities","located_athe","hanford_site","included","pacific_northwest","nationalaboratory","owned","department","energy","operated","memorial","institute","fast","flux","test","facility","national","research","facility","operation","whose","last","fuel","removed","hanford","observatory","searching","waves","columbia","generating","station","commercial","nuclear_power","plant","operated","energy","northwest","us_navy","nuclear","submarine","reactor","dry","storage","site","containing","sealed","reactor","sections","us_navy","department","energy","contractors","offer","tours","site","sixty","public","tours","five","hours","long","planned","tours","free","require","advance","reservation","via","department","web_site","limited","us","citizens","least","years","age","tunnel","collapse","morning","may","section","tunnel","used","store","contaminated","materials","located","nexto","plutonium","uranium","extraction","purex","facility","theast","area","center","hanford_site","non","essential","personnel","site","soil","used","fill","concerns","image","hare","thumb_righthe","hanford","reach","columbia_river","radioactivity","released","huge","volume","water","columbia_river","required","theat","produced","hanford","nucleareactors","pump","systems","drew","cooling","water","river","treating","water","use","reactors","returned","ito","river","release","river","used","water","held","large","tanks","known","retention","basin","six","hours","longer","lived","isotope","affected","retention","several","entered","river","every_day","federal_government","kept","knowledge","radioactive","radiation","later","far","west","washington","oregon","coasts","plutonium","separation","process","resulted","release","radioactive","isotopes","air","carried","wind","throughout","southeastern","washington","parts","idaho","montana","oregon","british_columbia","radionuclides","particularly","iodine","withe","releases","period","radionuclides","entered","via","dairy","grazing","contaminated","fields","hazardous","fallout","communities","consumed","radioactive","food","milk","airborne","releases","part","hanford","routine","operations","occurred","isolated","incidents","intentional","release","known","green","run","released","iodine","two_days","another","source","contaminated","food","came","columbia_river","fish","impact","felt","native_americans","united_states","native_american","communities","depended","river","customary","diets","us_government","report","released","estimated","radioactive","iodine","released","river","air","hanford_site","image","salmon","thumb","left","salmon","hanford","reach","near","h","reactor","beginning","scientists","withe","united_states","public_health","service","us","public_health","service","published","reports","radioactivity","released","hanford","protests","thealth","departments","oregon","washington","response","article","spokane","spokesman","review","september","department","energy","announced","environmental","records","february","released","pages","previously","unavailable","historical","documents","hanford","operations","washington_state","department","health","collaborated","withe","citizen","led","hanford","health","informationetwork","effects","hanford","operations","reports","concluded","residents","hanford","used","columbia_river","radiation","placed","increased","risk","various","cancers","diseases","mass","lawsuit","brought","two","thousand","againsthe","federal_government","court","system","manyears","website_retrieved","september","twof","six","wento","trial","awarded","radioactive","materials","known","leaking","hanford","thenvironmenthe","concentration","detected","springs","l","l","athe","hanford","townsite","highest","iodine","concentration","l","l","also_found","hanford","townsite","spring","guidelines","drinking","water","limits","levels","iodine","l","tritium","l","radionuclides","including","tritium","technetium","iodine","springs","near","hanford","townsite","generally","increasing","since","area","major","groundwater","pollution","groundwater","plume","theast","area","river","detected","radionuclides","include","technetium","iodine","uranium","tritium","detected","include","nitrate","february","governor","jay","announced","tank","storing","radioactive_waste","athe_site","leaking","average","gallons","per_year","said","leak","posed","immediate","health","risk","public","anything","february","governor","stated","tanks","hanford_site","leaking","radioactive_waste","tanks","hanford","whichave","single","shell","historically","single","shell_tanks","used","storing","radioactive","liquid","waste","andesigned","last_years","liquid","waste","transferred","single","shell_tanks","safer","double","shell_tanks","substantial","amount","remains","older","single","shell_tanks","one","containing","estimated","gallons","radioactive","example","believed","six","tanks","leaking","two","tanks","leaking","rate","gallons","per_year","remaining","four","tanks","leaking","rate","gallons","per_year","occupational","health","workers","reported","exposure","harmful","vapors","working","nuclear","storage","tanks","solution","found","workers","alone","reported","vapors","became","ill","eyes","burning","skin","contact","increased","heart","rate","difficulty","breathing","several","workers","long_term","disabilities","doctors","checked","workers","cleared","return","work","monitors","worn","tank","workers","found","samples","chemicals","close","occupational","exposure","august","occupational","safety","health","administration","ordered","facility","contractor","pay","back","wages","firing","safety","concerns","athe_site","onovember","washington","attorney","general","bob","ferguson","said","state","planned","sue","doe","contractor","protect","workers","hazardous","vapors","hanford","report","doe","savannah_river","nationalaboratory","initiated","washington","river","protection","solutions","found","doe","methods","study","inadequate","particularly","thathey","account","short","intense","recommended","air","inside","tanks","determine","chemical","new","practices","prevent","worker","medical","reflect","vapors","cleanup","superfund","tank","interiorjpg","thumb","right","image","surface","waste","found","inside","double","shell","tank","athe","hanford_site","april","june","hanford_site","divided","four","areas","proposed","inclusion","national","priorities","list","may","washington","department","ecology","united_states","environmental_protection","agency","department","energy","entered","tri","party","agreement","provides","legal","framework","environmental","remediation","hanford","agencies","world","largest","environmental","cleanup","many","challenges","face","technical","political","regulatory","cultural","interests","cleanup","effort","focused","three","outcomes","columbia_river","corridor","uses","converting","central","plateau","long_term","waste","treatment","storage","preparing","future","cleanup","effort","managed","department","energy","oversight","two","regulatory","agencies","citizen","led","hanford","advisory","board","provides","recommendations","community","stakeholders","including","local","state","governments","regional","environmental","organizations","business","interests","native_american","tribes","citing","hanford","scope","schedule","cost","cost","remaining","hanford","clean","billion","billion","per_year","next","six","years","lower_cost","approximately","billion","per_year","workers","site","clean","mitigate","waste","contaminated","buildings","contaminated","soil","originally","scheduled","complete","within","thirtyears","cleanup","less","four","areas","formally","listed","sites","october","one","removed","list","following","cleanup","file","spent","nuclear","fuel","thumb","left","spent","nuclear","fuel","stored","underwater","hanford","k","east","basin","radioactive","material","ended","withe","reactor","shutdown","many","dangerous","wastes","contained","continued","concerns","contaminated","groundwater","headed","toward","columbia_river","workers","health","safety","significant","challenge","hanford","high_level","radioactive_waste","stored","underground","tanks","third","tanks","waste","soil","groundwater","liquid","waste","transferred","secure","double","tanks","however","liquid","waste","together","salt","cake","remains","single","tanks","doe","lacks","information","double","shell_tanks","may","susceptible","without","determining","thextento","factors","contributed","leak","similar","double","shell_tanks","doe","cannot","sure","long","double","shell_tanks","safely","store","waste","waste","originally","scheduled","removed","nearby","contain","estimated","contaminated","groundwater","result","radioactive_waste","traveling","groundwater","toward","columbia_river","waste","expected","reach","river","years","cleanup","proceed","schedule","site","includes","solid","radioactive_waste","image","grand","thumb","right","grand","opening","thenvironmental","restoration","disposal","facility","tri","party","agreement","lower","level","hazardous","wastes","buried","huge","lined","pits","sealed","monitored","sophisticated","instruments","manyears","disposal","plutonium","high_level","wastes","difficult","problem","continues","subject","intense","debate","example","plutonium","half","life","years","decay","ten","half","lives","required","sample","considered","cease","radioactivity","department","energy","awarded","billion","contracto","bechtel","san_francisco","based","construction","engineering","firm","build","radioactive_waste","vitrification","combine","dangerous","wastes","glass","stable","construction_began","plant","originally","scheduled","operational","vitrification","completed","nuclear","waste","bombs","march","p","according","study","general","accounting","office","number","serious","technical","managerial","problems","estimated","costs","billion","operations","estimated","decades","operation","may","state","federal","officials","began","negotiations","abouthe","possibility","extending","legal","cleanup","waste","vitrification","exchange","shifting","focus","cleanup","urgent","october","early","million","hanford","cleanup","budget","proposed","washington_state","officials","expressed","concern","abouthe","budget","cuts","well","recent","safety","athe_site","threatened","file","lawsuit","alleging","thathe","department","energy","appeared","step","back","april","another","meeting","ofederal","state","officials","resulted","progress","toward","tentative","agreement","excavations","sample","plutonium","uncovered","inside","safe","waste","trench","dated","abouthe","making_ithe","second","oldest","sample","plutonium","known","exist","analyses","published","concluded","thathe","sample","originated","oak_ridge","one","several","sento","hanford","optimization","tests","plant","hanford","could","produce","plutonium","documents","refer","sample","belonging","group","disposed","radiation","leak","chemical","engineering","news","antique","project","era","plutonium","found","glass","hanford_site","cleanup","radioactive_waste","hanford","stored","planned","yucca","waste","project","wasuspended","washington_state","sued","joined","south_carolina","first","suit","dismissed","july","subsequent","suit","federal","authorities","ordered","either","plans","yucca","mountain","storage","site","potential","radioactive","leak","reported","clean","estimated","cost","billion","billion","hanford","organizations","hanford_site","operations","initially","directed","colonel","franklin","matthias","us_army","corps","engineers","postwar","united_states","atomic_energy_commission","atomic_energy_commission","took","thenergy","research_andevelopment","administration","hanford","operations","currently","directed","us_department","energy","operated","government","contract","various","private","companies","years","table","class","wikitable","sortable","year","begun","month","organization","responsibility","class","unsortable","remarks","december","us_army","corps","engineers","lead","us","held","role","january","december","dupont","de","company","dupont","site","activities","initial","hanford_site","contractor","september","general","site","activities","january","united_states","atomic_energy_commission","atomic_energy_commission","lead","us","replaced","us_army","corps","engineers","may","vitro","engineers","hanford","engineering","services","assumed","ges","new","facility","design","role","june","jones","construction","hanford","construction","services","assumed","ges","construction","role","january","us","testing","environmental","testing","assumed","ges","environmental","testing","role","january","memorial","institute","pacific_northwest","nationalaboratory","pacific_northwest","laboratory","assumed","laboratory","renamed","pacific_northwest","nationalaboratory","july","computer","sciences","corporation","services","new","scope","august","hanford","occupational","health","foundation","industrial","medicine","assumed","industrial","medicine","role","september","douglas","united","nuclear","single","pass","reactor","operations","fuel","fabrication","assumed","part","reactor","operations","january","processing","assumed","chemical","processing","operations","march","federal","support_services","inc","support_services","assumed","july","douglas","united","nuclear","n","reactor","operation","assumed","remainder","reactor","atlantic","hanford","company","chemical","processing","replaced","august","hanford","environmental","health","foundation","industrial","medicine","name","change","february","hanford","company","hanford","engineering","development","laboratory","spun","offrom","mission","build","fast","flux","test","facility","september","support_services","replaces","april","united","nuclear","industries","inc","production","reactor","operations","name","change","douglas","united","nuclear","january","energy","research_andevelopment","administration","lead","us","replaced","aec","managed","site","october","boeing","computer","services","computer","services","replaced","october","us_department","energy","doe","lead","us_government","agency","replaced","presently","hanford","operations","chemical","processing","support_services","replaces","june","hanford","company","architect","engineering","services","replaces","vitro","march","engineering","hanford","architect","engineering","services","replaces","march","construction","consolidated","contract","includes","former","jones","work","june","site","management","operations","consolidated","contract","includes","work","october","fluor","corp","fluor","daniel","hanford","inc","site","management","operations","integrating","contractor","companies","february","fluor","corp","fluor","hanford_site","cleanup","operations","transition","site","cleanup","fluor","held","various","roles","december","bechtel","national","inc","engineering","construction","commissioning","waste","treatment","plant","october","hill","plateau","remediation","company","central","plateau","cleanup","closure","april","washington","closure","hanford","river","corridor","cleanup","closure","may","mission","support","alliance","site","infrastructure","services","consolidated","services","contract","october","washington","river","protection","solutions","tank","farm","operations","divisions","site","historical","plutonium","finishing","plant","made","use","weapons","b","plant","plant","plant","processing","separation","extraction","various","chemicals","isotopes","health","attempto","keep","workers","thenvironment","safe","plant","c","plant","recovered","uranium","world_war","ii","processes","experimental","animal","farm","aquatic","biology","laboratory","technical","physics","radioactive","sewer","metal","fuels","manufacturing","tank","liquid","nuclear","waste","metal","recovery","plant","plant","recover","uranium","tank","farms","uranium","plant","aka","uranium","oxide","plant","aka","output","plants","liquid","nitrate","plant","purex","plant","made","uranium","powder","plutonium","uranium","extraction","plant","purex","plant","extracted","useful","material","spent","fuel","waste","also","see","purex","article","plutonium","test","reactor","alternative","fuel","plutonium","fuels","pilot","plant","see","historic","photos","image_hanford","f","reactor","cooling","cooling","athe","f","reactor","image_hanford","tank","underground","tank","farm","site","waste","storage","tanks","image_hanford","waste","inside","one","waste","storage","tanks","image_hanford","purex","inside","purex","facility","image_hanford","rattlesnake","view","central","plateau","rattlesnake","mountain","benton","county","washington","rattlesnake","mountain","image","richland","richland","washington","richland","thearly","days","site","image_hanford","hanford","workers","lining","image_hanford","sheep","testing","jpg","hanford","scientists","feeding","radioactive","food","sheep","image","n","hanford","sheep","testing","sheep","thyroid","image_hanford","cold_war","era","billboard","image","atomic","frontier","atomic","frontier","days","parade","richland","washington","richland","image","fast","flux","test","facility","see_also","lists","nuclear","disasters","radioactive","incidents","timeline","nuclear_weapons","development","references_furthereading","bruce","atomic","frontier","days","hanford","american","west","university","washington","press_pages","explores","history","hanford","tri","cities","richland","washington","externalinks_official","hanford","website","department","energy","washington","department","ecology","nuclear","waste","program","state","agency","regulates","hanford","cleanup","us","environmental_protection","agency","federal","agency","regulates","hanford","cleanup","category","geography","benton","county","washington","category","columbia_river","category","environmental","disasters","united_states","category","geography","washington_state","category_history","washington_state","category","manhattan_project","category_buildings","structures","washington_state","category_nuclear","history","united_states","infrastructure","united_states","category","radioactive_waste","category","tri","cities","washington","category_united_states","department","energy","facilities","category","closed","military","facilities","united_states","united_states","category_buildings","structures","benton","county","washington","category_tourist","attractions","benton","county","washington","category","contaminated","areas","category_establishments","washington_state","category_military","superfund","sites","category","superfund","sites","washington_state","category_nuclear","accidents","incidents","category_military","research","united_states","category","wave","astronomy","category_atomic_tourism"],"clean_bigrams":[["image","hanford"],["hanford","n"],["n","reactor"],["thumb","right"],["right","nucleareactors"],["nucleareactors","line"],["athe","hanford"],["hanford","site"],["site","along"],["columbia","river"],["n","reactor"],["withe","twin"],["immediate","background"],["historic","b"],["b","reactor"],["first","plutonium"],["plutonium","production"],["production","reactor"],["hanford","site"],["mostly","decommissioned"],["decommissioned","nuclear"],["nuclear","technology"],["technology","nuclear"],["nuclear","production"],["production","complex"],["complex","operated"],["united","states"],["states","federal"],["federal","government"],["columbia","river"],["washington","state"],["state","washington"],["many","names"],["names","including"],["including","hanford"],["hanford","project"],["project","hanford"],["hanford","works"],["works","hanford"],["hanford","engineer"],["engineer","works"],["works","hanford"],["manhattan","project"],["project","hanford"],["hanford","washington"],["washington","hanford"],["hanford","south"],["south","central"],["central","washington"],["b","reactor"],["first","full"],["full","scale"],["scale","plutonium"],["technology","reactor"],["athe","site"],["first","nuclear"],["bomb","tested"],["tested","athe"],["athe","trinity"],["trinity","nuclear"],["nuclear","site"],["fat","man"],["man","bomb"],["bomb","atomic"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","detonated"],["nagasaki","japan"],["cold","war"],["project","expanded"],["include","nine"],["nine","nucleareactors"],["five","large"],["plutonium","processing"],["processing","complexes"],["produced","plutonium"],["weapons","built"],["nuclear","weapons"],["united","states"],["states","us"],["nuclear","technology"],["technology","developed"],["developed","rapidly"],["hanford","scientists"],["scientists","produced"],["produced","major"],["major","technological"],["technological","achievements"],["achievements","many"],["many","early"],["early","safety"],["safety","procedures"],["waste","disposal"],["disposal","practices"],["government","documents"],["hanford","operations"],["operations","released"],["released","significant"],["significant","amounts"],["radioactive","contamination"],["contamination","radioactive"],["radioactive","materials"],["columbia","river"],["weapons","production"],["production","reactors"],["decommissioned","athend"],["cold","war"],["manufacturing","left"],["left","behind"],["high","level"],["level","waste"],["waste","high"],["high","level"],["level","radioactive"],["radioactive","waste"],["waste","stored"],["stored","within"],["within","storage"],["storage","tanks"],["solid","radioactive"],["radioactive","waste"],["waste","contaminated"],["contaminated","groundwater"],["groundwater","beneathe"],["beneathe","site"],["federal","agency"],["agency","charged"],["us","department"],["single","shell"],["shell","tanks"],["liquid","waste"],["newer","double"],["double","shell"],["shell","tanks"],["tanks","doe"],["doe","later"],["later","found"],["found","water"],["least","single"],["single","shell"],["shell","tanks"],["per","year"],["ground","since"],["doe","discovered"],["leak","also"],["double","shell"],["shell","tank"],["tank","caused"],["double","shell"],["shell","tanks"],["similar","construction"],["doe","changed"],["changed","monitoring"],["monitoring","single"],["single","shell"],["shell","tanks"],["tanks","monthly"],["shell","tanks"],["also","changed"],["changed","monitoring"],["monitoring","methods"],["march","doe"],["doe","announced"],["waste","treatment"],["treatment","plant"],["affecthe","schedule"],["waste","tanks"],["hanford","site"],["site","represented"],["represented","two"],["two","thirds"],["high","level"],["level","radioactive"],["radioactive","waste"],["volume","hanford"],["contaminated","nuclear"],["nuclear","site"],["united","states"],["largest","environmental"],["environmental","remediation"],["remediation","environmental"],["environmental","cleanup"],["cleanup","besides"],["hanford","also"],["also","hosts"],["commercial","nuclear"],["nuclear","power"],["columbia","generating"],["generating","station"],["various","centers"],["scientific","research"],["research","andevelopment"],["pacific","northwest"],["northwest","nationalaboratory"],["hanford","observatory"],["observatory","onovember"],["manhattan","project"],["project","national"],["national","historical"],["historical","park"],["park","alongside"],["oak","ridge"],["los","alamos"],["alamos","geography"],["geography","image"],["image","hanford"],["hanford","reach"],["reach","national"],["thumb","right"],["map","shows"],["main","areas"],["hanford","site"],["buffer","zone"],["hanford","reach"],["reach","national"],["national","monument"],["hanford","site"],["site","occupies"],["occupies","roughly"],["roughly","equivalento"],["equivalento","half"],["total","area"],["rhode","island"],["island","within"],["within","benton"],["benton","county"],["county","washington"],["general","public"],["desert","environment"],["environment","receiving"],["covered","mostly"],["columbia","river"],["river","columbia"],["columbia","river"],["river","flows"],["flows","along"],["approximately","forming"],["eastern","boundary"],["original","site"],["site","included"],["included","buffer"],["buffer","areas"],["areas","across"],["grant","county"],["county","washington"],["washington","grant"],["franklin","county"],["county","washington"],["washington","franklin"],["private","use"],["large","portions"],["hanford","reach"],["reach","national"],["national","monumenthe"],["monumenthe","site"],["three","main"],["main","areas"],["located","along"],["area","designated"],["chemical","separations"],["separations","complexes"],["located","inland"],["central","plateau"],["plateau","designated"],["facilities","located"],["southeast","corner"],["site","designated"],["tri","cities"],["cities","washington"],["washington","tri"],["tri","cities"],["metropolitan","area"],["area","composed"],["richland","washington"],["washington","richland"],["richland","washington"],["smaller","communities"],["primary","economic"],["economic","base"],["cities","climate"],["climate","date"],["date","april"],["april","early"],["early","history"],["river","snake"],["snake","river"],["river","snake"],["columbia","rivers"],["meeting","place"],["indigenous","peoples"],["peoples","native"],["native","peoples"],["archaeological","record"],["native","americans"],["united","states"],["states","native"],["native","american"],["american","habitation"],["area","stretches"],["stretches","back"],["ten","thousand"],["thousand","years"],["years","tribes"],["nations","including"],["nez","perce"],["perce","people"],["people","nez"],["nez","perce"],["perce","tribe"],["hunting","fishing"],["gathering","plant"],["plant","foods"],["foods","hanford"],["hanford","archaeology"],["archaeology","archaeologists"],["identified","numerous"],["numerous","native"],["native","american"],["american","sites"],["sites","including"],["including","pit"],["pit","house"],["house","villages"],["villages","open"],["open","campsites"],["campsites","fishing"],["fishing","sites"],["sites","hunting"],["hunting","kill"],["kill","sites"],["sites","game"],["game","drive"],["drive","complex"],["spirit","quest"],["quest","sites"],["two","archaeological"],["archaeological","sites"],["national","register"],["historic","places"],["hanford","island"],["island","archaeological"],["archaeological","site"],["site","nrhp"],["hanford","north"],["north","archaeological"],["archaeological","district"],["see","also"],["commercial","site"],["site","national"],["national","register"],["historic","places"],["places","native"],["native","american"],["american","use"],["area","continued"],["th","century"],["century","even"],["indian","reservations"],["never","forced"],["forced","onto"],["lived","along"],["columbia","river"],["priest","rapids"],["rapids","priest"],["priest","rapids"],["rapids","valley"],["euro","americans"],["americans","began"],["initially","along"],["columbia","river"],["river","south"],["priest","rapids"],["established","farms"],["small","scale"],["scale","irrigation"],["irrigation","projects"],["railroad","transportation"],["small","town"],["town","centers"],["hanford","washington"],["washington","hanford"],["hanford","white"],["white","bluffs"],["bluffs","washington"],["washington","white"],["white","bluffs"],["richland","washington"],["washington","richland"],["richland","manhattan"],["manhattan","project"],["world","war"],["war","ii"],["federal","office"],["scientific","research"],["research","andevelopment"],["intensive","research"],["research","project"],["research","contract"],["scientists","athe"],["athe","university"],["chicago","metallurgicalaboratory"],["metallurgicalaboratory","met"],["met","lab"],["lab","athe"],["athe","time"],["time","plutonium"],["california","laboratory"],["met","lab"],["lab","researchers"],["researchers","worked"],["producing","chain"],["convert","ito"],["ito","plutonium"],["finding","ways"],["separate","plutonium"],["plutonium","uranium"],["united","states"],["states","government"],["government","became"],["became","concerned"],["nuclear","weapons"],["weapons","program"],["program","site"],["site","selection"],["selection","image"],["image","hanford"],["thumb","hanford"],["hanford","high"],["high","school"],["school","hanford"],["hanford","washington"],["washington","hanford"],["hanford","high"],["high","school"],["school","shown"],["hanford","site"],["site","image"],["image","hanford"],["hanford","high"],["thumb","right"],["right","hanford"],["hanford","high"],["united","states"],["states","army"],["army","corps"],["engineers","army"],["army","corps"],["engineers","placed"],["newly","formed"],["formed","manhattan"],["manhattan","project"],["leslie","groves"],["groves","brigadier"],["r","groves"],["groves","charging"],["withe","construction"],["industrial","size"],["size","plants"],["manufacturing","plutonium"],["plutonium","uranium"],["uranium","groves"],["groves","recruited"],["dupont","company"],["prime","contractor"],["plutonium","production"],["production","complex"],["complex","dupont"],["dupont","recommended"],["located","far"],["far","away"],["thexisting","uranium"],["uranium","production"],["production","facility"],["oak","ridge"],["ridge","tennessee"],["ideal","site"],["criteria","large"],["hazardous","manufacturing"],["manufacturing","area"],["least","space"],["laboratory","facilities"],["nearest","reactor"],["reactor","separations"],["separations","plant"],["people","closer"],["main","highway"],["highway","railway"],["employee","village"],["village","closer"],["cleand","abundant"],["abundant","water"],["water","supply"],["power","supply"],["supply","ground"],["could","bear"],["bear","heavy"],["heavy","loads"],["december","groves"],["assistant","franklin"],["franklin","matthias"],["matthias","colonel"],["colonel","franklin"],["franklin","matthias"],["scout","potential"],["potential","sites"],["sites","matthias"],["matthias","reported"],["respects","except"],["farming","towns"],["white","bluffs"],["bluffs","washington"],["washington","white"],["white","bluffs"],["hanford","washington"],["washington","hanford"],["hanford","general"],["general","groves"],["groves","visited"],["hanford","engineer"],["engineer","works"],["site","w"],["federal","government"],["government","quickly"],["quickly","acquired"],["war","powers"],["war","powers"],["powers","act"],["hanford","white"],["white","bluffs"],["nearby","settlements"],["indian","reservation"],["nez","perce"],["perce","tribe"],["tribe","construction"],["construction","image"],["image","hanford"],["hanford","b"],["b","reactor"],["thumb","right"],["right","b"],["b","reactor"],["reactor","construction"],["construction","hanford"],["hanford","engineer"],["engineer","works"],["broke","ground"],["immediately","launched"],["technically","challenging"],["challenging","construction"],["construction","project"],["project","dupont"],["dupont","advertised"],["war","construction"],["construction","project"],["southeastern","washington"],["washington","offering"],["offering","attractive"],["attractive","scale"],["living","facilities"],["construction","workers"],["june","lived"],["construction","camp"],["camp","near"],["old","hanford"],["hanford","townsite"],["engineers","lived"],["richland","village"],["family","units"],["kenneth","nichols"],["nichols","k"],["trinity","page"],["new","york"],["york","construction"],["nuclear","facilities"],["facilities","proceeded"],["proceeded","rapidly"],["built","buildings"],["hanford","including"],["including","three"],["three","nucleareactors"],["nucleareactors","b"],["three","plutonium"],["plutonium","processing"],["processing","canyons"],["radioactive","wastes"],["chemical","separations"],["separations","process"],["farms","consisting"],["single","shell"],["shell","underground"],["underground","waste"],["waste","tanks"],["tanks","b"],["b","c"],["project","required"],["four","electrical"],["structural","steel"],["consumed","million"],["plutonium","production"],["b","reactor"],["reactor","b"],["first","large"],["large","scale"],["scale","plutonium"],["plutonium","production"],["production","reactor"],["dupont","based"],["experimental","design"],["enrico","fermi"],["originally","operated"],["water","cooled"],["aluminium","tubes"],["uranium","slugs"],["slugs","diameter"],["long","sealed"],["aluminium","cans"],["cans","went"],["tubes","cooling"],["cooling","water"],["aluminium","tubes"],["tubes","around"],["uranium","slugs"],["slugs","athe"],["athe","rate"],["per","minute"],["minute","file"],["file","hanford"],["hanford","b"],["thumb","lefthe"],["lefthe","b"],["b","reactor"],["reactor","construction"],["b","reactor"],["reactor","began"],["reactor","went"],["went","critical"],["critical","mass"],["mass","critical"],["late","september"],["overcoming","nuclear"],["nuclear","poison"],["poison","ing"],["ing","produced"],["first","plutonium"],["plutonium","onovember"],["onovember","plutonium"],["hanford","reactors"],["fuel","slug"],["slug","absorbed"],["form","uranium"],["beta","decay"],["second","beta"],["beta","decay"],["form","plutonium"],["irradiated","fuel"],["fuel","slugs"],["three","huge"],["huge","remotely"],["remotely","operated"],["operated","chemical"],["chemical","separation"],["separation","plants"],["plants","called"],["called","canyons"],["chemical","processing"],["small","amount"],["remaining","uranium"],["fission","waste"],["waste","products"],["first","batch"],["february","andelivered"],["los","alamos"],["alamos","nationalaboratory"],["nationalaboratory","los"],["los","alamos"],["alamos","laboratory"],["laboratory","inew"],["february","two"],["two","identical"],["identical","reactors"],["reactors","reactor"],["f","reactor"],["reactor","came"],["came","online"],["february","respectively"],["april","shipments"],["los","alamos"],["alamos","every"],["every","five"],["five","days"],["days","hanford"],["hanford","soon"],["soon","provided"],["provided","enough"],["enough","material"],["bombs","tested"],["manhattan","project"],["project","maintained"],["top","secret"],["secret","classification"],["news","arrived"],["bomb","dropped"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","hiroshima"],["hiroshima","fewer"],["one","percent"],["hanford","workers"],["workers","knew"],["nuclear","weapons"],["weapons","project"],["project","general"],["general","groves"],["groves","noted"],["made","certain"],["initially","six"],["six","reactors"],["gun","type"],["type","thin"],["bomb","thin"],["thin","man"],["man","bomb"],["simple","gun"],["gun","type"],["type","bomb"],["advanced","fat"],["fat","man"],["man","bomb"],["bomb","required"],["required","less"],["less","plutonium"],["chemical","separation"],["separation","plants"],["three","technological"],["technological","innovations"],["shortime","frame"],["manhattan","project"],["project","hanford"],["hanford","engineers"],["engineers","produced"],["produced","many"],["ever","built"],["industrial","scale"],["scale","nucleareactor"],["greatest","possible"],["possible","production"],["adequate","safety"],["safety","margin"],["margin","dupont"],["dupont","engineers"],["engineers","installed"],["systems","withe"],["f","reactors"],["river","water"],["reactor","coolant"],["coolant","another"],["another","difficulty"],["canyons","began"],["began","processing"],["processing","irradiated"],["irradiated","slugs"],["machinery","would"],["would","become"],["humans","ever"],["component","via"],["via","remote"],["remote","control"],["modular","cell"],["cell","concept"],["allowed","major"],["major","components"],["operator","sitting"],["overhead","crane"],["method","required"],["required","early"],["early","practical"],["practical","application"],["two","technologies"],["later","gained"],["gained","widespread"],["widespread","use"],["crane","operator"],["better","view"],["process","cold"],["cold","war"],["war","expansion"],["expansion","image"],["image","hanford"],["thumb","right"],["september","general"],["general","electric"],["electric","general"],["assumed","management"],["hanford","works"],["newly","created"],["created","united"],["united","states"],["states","atomic"],["atomic","energy"],["energy","commission"],["commission","atomic"],["atomic","energy"],["energy","commission"],["cold","war"],["war","began"],["united","states"],["states","faced"],["new","strategic"],["strategic","threat"],["soviet","atomic"],["atomic","bomb"],["bomb","project"],["project","soviet"],["soviet","nuclear"],["nuclear","weapons"],["weapons","program"],["augusthe","hanford"],["hanford","works"],["works","announced"],["announced","funding"],["new","chemical"],["chemical","separations"],["separations","process"],["process","entering"],["new","phase"],["hanford","site"],["nine","nucleareactors"],["nucleareactors","along"],["columbia","river"],["river","five"],["central","plateau"],["support","buildings"],["original","three"],["three","world"],["world","war"],["war","ii"],["ii","reactors"],["underground","waste"],["waste","tanks"],["built","hanford"],["peak","production"],["tover","thentire"],["thentire","years"],["site","produced"],["produced","plutonium"],["plutonium","supplying"],["us","arsenal"],["arsenal","uranium"],["also","produced"],["laboratory","accident"],["accident","due"],["prompt","medical"],["medical","intervention"],["incident","andied"],["andied","eleven"],["eleven","years"],["years","later"],["natural","causes"],["last","reactor"],["reactor","n"],["n","reactor"],["reactor","continued"],["continued","toperate"],["dual","purpose"],["purpose","reactor"],["civilian","electrical"],["electrical","grid"],["grid","via"],["washington","public"],["public","power"],["power","supply"],["supply","system"],["plutonium","production"],["production","reactor"],["nuclear","weapons"],["weapons","n"],["n","reactor"],["reactor","operated"],["hanford","reactors"],["radioactive","materials"],["surrounding","structures"],["b","reactor"],["occasional","guided"],["guided","tours"],["national","register"],["historic","places"],["site","see"],["see","also"],["commercial","site"],["site","national"],["national","register"],["historic","places"],["historians","advocate"],["advocate","converting"],["museum","b"],["b","reactor"],["national","historic"],["historic","landmark"],["national","park"],["park","service"],["august","chemical"],["chemical","engineering"],["engineering","news"],["news","vol"],["september","hanford"],["hanford","b"],["b","reactor"],["reactor","gets"],["gets","landmark"],["landmark","status"],["status","p"],["p","class"],["class","wikitable"],["wikitable","weapons"],["weapons","production"],["production","reactors"],["reactors","reactor"],["reactor","name"],["name","start"],["date","shutdown"],["shutdown","date"],["date","initial"],["initial","power"],["power","mwt"],["mwt","final"],["final","power"],["power","mwt"],["mwt","b"],["b","reactor"],["reactor","align"],["align","right"],["right","sep"],["sep","align"],["align","right"],["right","feb"],["feb","align"],["align","right"],["right","align"],["align","right"],["reactor","align"],["align","right"],["right","dec"],["dec","align"],["align","right"],["right","jun"],["jun","align"],["align","right"],["right","align"],["align","right"],["right","f"],["f","reactor"],["reactor","align"],["align","right"],["right","feb"],["feb","align"],["align","right"],["right","jun"],["jun","align"],["align","right"],["right","align"],["align","right"],["right","h"],["h","reactor"],["reactor","align"],["align","right"],["right","oct"],["oct","align"],["align","right"],["right","apr"],["apr","align"],["align","right"],["right","align"],["align","right"],["replacement","reactor"],["reactor","align"],["align","right"],["right","oct"],["oct","align"],["align","right"],["right","dec"],["dec","align"],["align","right"],["right","align"],["align","right"],["right","c"],["c","reactor"],["reactor","align"],["align","right"],["right","nov"],["nov","align"],["align","right"],["right","apr"],["apr","align"],["align","right"],["right","align"],["align","right"],["k","west"],["west","reactor"],["reactor","align"],["align","right"],["right","jan"],["jan","align"],["align","right"],["right","feb"],["feb","align"],["align","right"],["right","align"],["align","right"],["k","east"],["east","reactor"],["reactor","align"],["align","right"],["right","apr"],["apr","align"],["align","right"],["right","jan"],["jan","align"],["align","right"],["right","align"],["align","right"],["right","n"],["n","reactor"],["reactor","align"],["align","right"],["right","dec"],["dec","align"],["align","right"],["right","jan"],["jan","align"],["align","right"],["right","align"],["align","right"],["right","later"],["later","operations"],["operations","image"],["image","hanford"],["hanford","site"],["site","signjpg"],["signjpg","thumb"],["thumb","right"],["right","highway"],["highway","sign"],["road","entering"],["hanford","site"],["united","states"],["states","department"],["energy","assumed"],["assumed","control"],["hanford","site"],["although","uranium"],["uranium","enrichment"],["plutonium","breeding"],["outhe","nuclear"],["nuclear","legacy"],["legacy","left"],["world","war"],["war","ii"],["area","hadeveloped"],["small","farming"],["farming","community"],["booming","atomic"],["atomic","frontier"],["nuclear","industrial"],["industrial","complex"],["complex","decades"],["decades","ofederal"],["ofederal","investment"],["investment","created"],["highly","skilled"],["skilled","scientists"],["specialized","skills"],["hanford","site"],["include","scientific"],["scientific","research"],["research","test"],["test","facilities"],["commercial","nuclear"],["nuclear","power"],["power","production"],["production","operational"],["operational","facilities"],["facilities","located"],["located","athe"],["athe","hanford"],["hanford","site"],["site","included"],["pacific","northwest"],["northwest","nationalaboratory"],["nationalaboratory","owned"],["memorial","institute"],["fast","flux"],["flux","test"],["test","facility"],["national","research"],["research","facility"],["whose","last"],["last","fuel"],["hanford","observatory"],["waves","columbia"],["columbia","generating"],["generating","station"],["commercial","nuclear"],["nuclear","power"],["power","plant"],["plant","operated"],["energy","northwest"],["us","navy"],["navy","nuclear"],["nuclear","submarine"],["submarine","reactor"],["reactor","dry"],["dry","storage"],["storage","site"],["site","containing"],["containing","sealed"],["sealed","reactor"],["reactor","sections"],["us","navy"],["contractors","offer"],["offer","tours"],["site","sixty"],["sixty","public"],["public","tours"],["five","hours"],["hours","long"],["free","require"],["require","advance"],["advance","reservation"],["reservation","via"],["web","site"],["us","citizens"],["least","years"],["age","tunnel"],["tunnel","collapse"],["store","contaminated"],["contaminated","materials"],["located","nexto"],["plutonium","uranium"],["uranium","extraction"],["extraction","purex"],["purex","facility"],["theast","area"],["hanford","site"],["non","essential"],["essential","personnel"],["concerns","image"],["image","hare"],["thumb","righthe"],["righthe","hanford"],["hanford","reach"],["columbia","river"],["radioactivity","released"],["huge","volume"],["columbia","river"],["theat","produced"],["pump","systems"],["systems","drew"],["drew","cooling"],["cooling","water"],["reactors","returned"],["returned","ito"],["used","water"],["large","tanks"],["tanks","known"],["retention","basin"],["six","hours"],["hours","longer"],["longer","lived"],["lived","isotope"],["river","every"],["every","day"],["federal","government"],["government","kept"],["kept","knowledge"],["far","west"],["oregon","coasts"],["plutonium","separation"],["separation","process"],["process","resulted"],["radioactive","isotopes"],["wind","throughout"],["throughout","southeastern"],["southeastern","washington"],["idaho","montana"],["montana","oregon"],["british","columbia"],["radionuclides","particularly"],["particularly","iodine"],["iodine","withe"],["radionuclides","entered"],["food","chain"],["chain","via"],["via","dairy"],["contaminated","fields"],["fields","hazardous"],["hazardous","fallout"],["consumed","radioactive"],["radioactive","food"],["airborne","releases"],["routine","operations"],["isolated","incidents"],["intentional","release"],["release","known"],["green","run"],["run","released"],["two","days"],["days","another"],["another","source"],["contaminated","food"],["food","came"],["columbia","river"],["river","fish"],["impact","felt"],["native","americans"],["united","states"],["states","native"],["native","american"],["american","communities"],["customary","diets"],["us","government"],["government","report"],["report","released"],["radioactive","iodine"],["hanford","site"],["site","image"],["image","salmon"],["hanford","sitejpg"],["sitejpg","thumb"],["thumb","left"],["left","salmon"],["hanford","reach"],["reach","near"],["h","reactor"],["reactor","beginning"],["scientists","withe"],["withe","united"],["united","states"],["states","public"],["public","health"],["health","service"],["service","us"],["us","public"],["public","health"],["health","service"],["service","published"],["published","reports"],["radioactivity","released"],["thealth","departments"],["spokane","spokesman"],["spokesman","review"],["energy","announced"],["environmental","records"],["february","released"],["released","pages"],["previously","unavailable"],["unavailable","historical"],["historical","documents"],["hanford","operations"],["washington","state"],["state","department"],["health","collaborated"],["collaborated","withe"],["withe","citizen"],["citizen","led"],["led","hanford"],["hanford","health"],["health","informationetwork"],["hanford","operations"],["reports","concluded"],["columbia","river"],["increased","risk"],["various","cancers"],["lawsuit","brought"],["two","thousand"],["againsthe","federal"],["federal","government"],["court","system"],["september","twof"],["twof","six"],["wento","trial"],["radioactive","materials"],["concentration","detected"],["l","athe"],["athe","hanford"],["hanford","townsite"],["highest","iodine"],["iodine","concentration"],["also","found"],["hanford","townsite"],["townsite","spring"],["drinking","water"],["water","limits"],["limits","levels"],["radionuclides","including"],["including","tritium"],["tritium","technetium"],["technetium","iodine"],["springs","near"],["hanford","townsite"],["increasing","since"],["major","groundwater"],["groundwater","pollution"],["pollution","groundwater"],["groundwater","plume"],["theast","area"],["river","detected"],["detected","radionuclides"],["radionuclides","include"],["technetium","iodine"],["iodine","uranium"],["february","governor"],["governor","jay"],["tank","storing"],["storing","radioactive"],["radioactive","waste"],["waste","athe"],["athe","site"],["gallons","per"],["per","year"],["leak","posed"],["immediate","health"],["health","risk"],["february","governor"],["governor","stated"],["hanford","site"],["leaking","radioactive"],["radioactive","waste"],["waste","tanks"],["single","shell"],["shell","historically"],["historically","single"],["single","shell"],["shell","tanks"],["storing","radioactive"],["radioactive","liquid"],["liquid","waste"],["waste","andesigned"],["last","years"],["liquid","waste"],["single","shell"],["shell","tanks"],["safer","double"],["double","shell"],["shell","tanks"],["substantial","amount"],["older","single"],["single","shell"],["shell","tanks"],["one","containing"],["estimated","gallons"],["leaking","two"],["two","tanks"],["gallons","per"],["per","year"],["remaining","four"],["four","tanks"],["gallons","per"],["per","year"],["occupational","health"],["reported","exposure"],["harmful","vapors"],["nuclear","storage"],["storage","tanks"],["solution","found"],["alone","reported"],["became","ill"],["eyes","burning"],["burning","skin"],["skin","contact"],["increased","heart"],["heart","rate"],["rate","difficulty"],["difficulty","breathing"],["long","term"],["term","disabilities"],["disabilities","doctors"],["doctors","checked"],["checked","workers"],["work","monitors"],["monitors","worn"],["tank","workers"],["chemicals","close"],["occupational","exposure"],["august","occupational"],["occupational","safety"],["health","administration"],["back","wages"],["safety","concerns"],["concerns","athe"],["athe","site"],["site","onovember"],["onovember","washington"],["washington","attorney"],["attorney","general"],["general","bob"],["bob","ferguson"],["ferguson","said"],["state","planned"],["protect","workers"],["hazardous","vapors"],["doe","savannah"],["savannah","river"],["river","nationalaboratory"],["nationalaboratory","initiated"],["washington","river"],["river","protection"],["protection","solutions"],["solutions","found"],["inadequate","particularly"],["particularly","thathey"],["air","inside"],["inside","tanks"],["new","practices"],["prevent","worker"],["vapors","cleanup"],["superfund","image"],["image","hanford"],["hanford","site"],["site","tank"],["tank","interiorjpg"],["interiorjpg","thumb"],["thumb","right"],["right","image"],["waste","found"],["found","inside"],["inside","double"],["double","shell"],["shell","tank"],["athe","hanford"],["hanford","site"],["site","april"],["hanford","site"],["four","areas"],["national","priorities"],["priorities","list"],["washington","department"],["united","states"],["states","environmental"],["environmental","protection"],["protection","agency"],["energy","entered"],["tri","party"],["party","agreement"],["legal","framework"],["environmental","remediation"],["largest","environmental"],["environmental","cleanup"],["many","challenges"],["technical","political"],["political","regulatory"],["cultural","interests"],["cleanup","effort"],["three","outcomes"],["columbia","river"],["river","corridor"],["uses","converting"],["central","plateau"],["long","term"],["term","waste"],["waste","treatment"],["cleanup","effort"],["two","regulatory"],["regulatory","agencies"],["citizen","led"],["led","hanford"],["hanford","advisory"],["advisory","board"],["board","provides"],["provides","recommendations"],["community","stakeholders"],["stakeholders","including"],["including","local"],["state","governments"],["governments","regional"],["regional","environmental"],["environmental","organizations"],["organizations","business"],["business","interests"],["native","american"],["american","tribes"],["tribes","citing"],["scope","schedule"],["remaining","hanford"],["hanford","clean"],["billion","per"],["per","year"],["next","six"],["six","years"],["lower","cost"],["approximately","billion"],["billion","per"],["per","year"],["mitigate","waste"],["waste","contaminated"],["contaminated","buildings"],["contaminated","soil"],["soil","originally"],["originally","scheduled"],["complete","within"],["within","thirtyears"],["four","areas"],["formally","listed"],["list","following"],["following","cleanup"],["cleanup","file"],["file","spent"],["spent","nuclear"],["nuclear","fuel"],["thumb","left"],["left","spent"],["spent","nuclear"],["nuclear","fuel"],["fuel","stored"],["stored","underwater"],["k","east"],["east","basin"],["radioactive","material"],["material","ended"],["ended","withe"],["withe","reactor"],["reactor","shutdown"],["dangerous","wastes"],["continued","concerns"],["contaminated","groundwater"],["groundwater","headed"],["headed","toward"],["columbia","river"],["workers","health"],["significant","challenge"],["hanford","high"],["high","level"],["level","radioactive"],["radioactive","waste"],["waste","stored"],["underground","tanks"],["liquid","waste"],["secure","double"],["tanks","however"],["liquid","waste"],["waste","together"],["salt","cake"],["tanks","doe"],["doe","lacks"],["lacks","information"],["double","shell"],["shell","tanks"],["tanks","may"],["without","determining"],["determining","thextento"],["double","shell"],["shell","tanks"],["tanks","doe"],["double","shell"],["shell","tanks"],["safely","store"],["store","waste"],["originally","scheduled"],["contaminated","groundwater"],["radioactive","waste"],["groundwater","toward"],["columbia","river"],["site","includes"],["solid","radioactive"],["radioactive","waste"],["waste","image"],["thumb","right"],["right","grand"],["grand","opening"],["thenvironmental","restoration"],["restoration","disposal"],["disposal","facility"],["tri","party"],["party","agreement"],["agreement","lower"],["lower","level"],["level","hazardous"],["hazardous","wastes"],["huge","lined"],["lined","pits"],["sophisticated","instruments"],["manyears","disposal"],["high","level"],["level","wastes"],["difficult","problem"],["intense","debate"],["example","plutonium"],["half","life"],["ten","half"],["half","lives"],["energy","awarded"],["billion","contracto"],["contracto","bechtel"],["san","francisco"],["francisco","based"],["based","construction"],["engineering","firm"],["radioactive","waste"],["waste","vitrification"],["dangerous","wastes"],["stable","construction"],["construction","began"],["originally","scheduled"],["vitrification","completed"],["nuclear","waste"],["march","p"],["p","according"],["general","accounting"],["accounting","office"],["managerial","problems"],["problems","estimated"],["estimated","costs"],["operations","estimated"],["may","state"],["federal","officials"],["officials","began"],["negotiations","abouthe"],["abouthe","possibility"],["extending","legal"],["legal","cleanup"],["waste","vitrification"],["hanford","cleanup"],["cleanup","budget"],["proposed","washington"],["washington","state"],["state","officials"],["officials","expressed"],["expressed","concern"],["concern","abouthe"],["abouthe","budget"],["budget","cuts"],["recent","safety"],["athe","site"],["lawsuit","alleging"],["alleging","thathe"],["thathe","department"],["step","back"],["another","meeting"],["meeting","ofederal"],["state","officials"],["officials","resulted"],["progress","toward"],["tentative","agreement"],["uncovered","inside"],["waste","trench"],["making","ithe"],["ithe","second"],["second","oldest"],["oldest","sample"],["plutonium","known"],["exist","analyses"],["analyses","published"],["concluded","thathe"],["thathe","sample"],["sample","originated"],["oak","ridge"],["several","sento"],["sento","hanford"],["optimization","tests"],["hanford","could"],["could","produce"],["plutonium","documents"],["documents","refer"],["sample","belonging"],["radiation","leak"],["chemical","engineering"],["engineering","news"],["news","antique"],["project","era"],["era","plutonium"],["hanford","site"],["site","cleanup"],["radioactive","waste"],["planned","yucca"],["project","wasuspended"],["wasuspended","washington"],["washington","state"],["state","sued"],["sued","joined"],["south","carolina"],["first","suit"],["subsequent","suit"],["suit","federal"],["federal","authorities"],["yucca","mountain"],["mountain","storage"],["storage","site"],["potential","radioactive"],["radioactive","leak"],["cost","billion"],["hanford","organizations"],["hanford","site"],["site","operations"],["initially","directed"],["colonel","franklin"],["franklin","matthias"],["us","army"],["army","corps"],["engineers","postwar"],["united","states"],["states","atomic"],["atomic","energy"],["energy","commission"],["commission","atomic"],["atomic","energy"],["energy","commission"],["commission","took"],["thenergy","research"],["research","andevelopment"],["andevelopment","administration"],["administration","hanford"],["hanford","operations"],["currently","directed"],["us","department"],["government","contract"],["various","private"],["private","companies"],["class","wikitable"],["wikitable","sortable"],["sortable","year"],["year","begun"],["begun","month"],["month","organization"],["organization","responsibility"],["responsibility","class"],["class","unsortable"],["unsortable","remarks"],["remarks","december"],["december","us"],["us","army"],["army","corps"],["engineers","lead"],["lead","us"],["held","role"],["role","january"],["january","december"],["dupont","de"],["company","dupont"],["site","activities"],["activities","initial"],["initial","hanford"],["hanford","site"],["site","contractor"],["contractor","september"],["september","general"],["site","activities"],["january","united"],["united","states"],["states","atomic"],["atomic","energy"],["energy","commission"],["commission","atomic"],["atomic","energy"],["energy","commission"],["commission","lead"],["lead","us"],["replaced","us"],["us","army"],["army","corps"],["engineers","may"],["may","vitro"],["vitro","engineers"],["engineers","hanford"],["hanford","engineering"],["engineering","services"],["services","assumed"],["assumed","ges"],["ges","new"],["new","facility"],["facility","design"],["design","role"],["role","june"],["jones","construction"],["construction","hanford"],["hanford","construction"],["construction","services"],["services","assumed"],["assumed","ges"],["ges","construction"],["construction","role"],["role","january"],["january","us"],["us","testing"],["testing","environmental"],["testing","assumed"],["assumed","ges"],["ges","environmental"],["testing","role"],["role","january"],["memorial","institute"],["institute","pacific"],["pacific","northwest"],["northwest","nationalaboratory"],["nationalaboratory","pacific"],["pacific","northwest"],["northwest","laboratory"],["renamed","pacific"],["pacific","northwest"],["northwest","nationalaboratory"],["nationalaboratory","july"],["july","computer"],["computer","sciences"],["sciences","corporation"],["services","new"],["new","scope"],["scope","august"],["august","hanford"],["hanford","occupational"],["occupational","health"],["health","foundation"],["foundation","industrial"],["industrial","medicine"],["medicine","assumed"],["industrial","medicine"],["medicine","role"],["role","september"],["september","douglas"],["douglas","united"],["united","nuclear"],["nuclear","single"],["single","pass"],["pass","reactor"],["reactor","operations"],["operations","fuel"],["fuel","fabrication"],["fabrication","assumed"],["assumed","part"],["reactor","operations"],["operations","january"],["processing","assumed"],["chemical","processing"],["processing","operations"],["operations","march"],["federal","support"],["support","services"],["services","inc"],["inc","support"],["support","services"],["services","assumed"],["assumed","july"],["july","douglas"],["douglas","united"],["united","nuclear"],["nuclear","n"],["n","reactor"],["reactor","operation"],["operation","assumed"],["assumed","remainder"],["hanford","company"],["company","chemical"],["chemical","processing"],["processing","replaced"],["august","hanford"],["hanford","environmental"],["environmental","health"],["health","foundation"],["foundation","industrial"],["industrial","medicine"],["medicine","name"],["name","change"],["hanford","company"],["company","hanford"],["hanford","engineering"],["engineering","development"],["development","laboratory"],["laboratory","spun"],["spun","offrom"],["fast","flux"],["flux","test"],["test","facility"],["facility","september"],["support","services"],["services","replaces"],["april","united"],["united","nuclear"],["nuclear","industries"],["industries","inc"],["production","reactor"],["reactor","operations"],["operations","name"],["name","change"],["douglas","united"],["united","nuclear"],["january","energy"],["energy","research"],["research","andevelopment"],["andevelopment","administration"],["lead","us"],["replaced","aec"],["aec","managed"],["managed","site"],["october","boeing"],["boeing","computer"],["computer","services"],["computer","services"],["services","replaced"],["october","us"],["us","department"],["energy","doe"],["doe","lead"],["lead","us"],["us","government"],["government","agency"],["agency","replaced"],["hanford","operations"],["chemical","processing"],["processing","support"],["support","services"],["services","replaces"],["hanford","company"],["architect","engineering"],["engineering","services"],["services","replaces"],["replaces","vitro"],["vitro","march"],["engineering","hanford"],["architect","engineering"],["engineering","services"],["services","replaces"],["construction","consolidated"],["consolidated","contract"],["contract","includes"],["includes","former"],["jones","work"],["work","june"],["site","management"],["management","operations"],["operations","consolidated"],["consolidated","contract"],["contract","includes"],["work","october"],["october","fluor"],["fluor","corp"],["corp","fluor"],["fluor","daniel"],["daniel","hanford"],["hanford","inc"],["site","management"],["management","operations"],["integrating","contractor"],["companies","february"],["february","fluor"],["fluor","corp"],["corp","fluor"],["fluor","hanford"],["hanford","site"],["site","cleanup"],["cleanup","operations"],["operations","transition"],["site","cleanup"],["cleanup","fluor"],["held","various"],["various","roles"],["roles","december"],["december","bechtel"],["bechtel","national"],["national","inc"],["inc","engineering"],["engineering","construction"],["waste","treatment"],["treatment","plant"],["plant","october"],["hill","plateau"],["plateau","remediation"],["remediation","company"],["company","central"],["central","plateau"],["plateau","cleanup"],["closure","april"],["april","washington"],["washington","closure"],["closure","hanford"],["hanford","river"],["river","corridor"],["corridor","cleanup"],["closure","may"],["may","mission"],["mission","support"],["support","alliance"],["alliance","site"],["site","infrastructure"],["services","consolidated"],["consolidated","services"],["services","contract"],["contract","october"],["october","washington"],["washington","river"],["river","protection"],["protection","solutions"],["solutions","tank"],["tank","farm"],["farm","operations"],["site","historical"],["historical","plutonium"],["plutonium","finishing"],["finishing","plant"],["plant","made"],["weapons","b"],["b","plant"],["plant","plant"],["plant","plant"],["plant","processing"],["processing","separation"],["various","chemicals"],["isotopes","health"],["attempto","keep"],["keep","workers"],["thenvironment","safe"],["plant","c"],["c","plant"],["plant","recovered"],["world","war"],["war","ii"],["ii","processes"],["processes","experimental"],["experimental","animal"],["animal","farm"],["aquatic","biology"],["biology","laboratory"],["laboratory","technical"],["radioactive","sewer"],["fuels","manufacturing"],["manufacturing","tank"],["liquid","nuclear"],["nuclear","waste"],["waste","metal"],["metal","recovery"],["recovery","plant"],["plant","plant"],["plant","recover"],["recover","uranium"],["tank","farms"],["farms","uranium"],["plant","aka"],["aka","uranium"],["uranium","oxide"],["oxide","plant"],["plant","aka"],["plant","purex"],["purex","plant"],["plant","made"],["made","uranium"],["powder","plutonium"],["plutonium","uranium"],["uranium","extraction"],["extraction","plant"],["plant","purex"],["purex","plant"],["plant","extracted"],["extracted","useful"],["useful","material"],["spent","fuel"],["fuel","waste"],["waste","also"],["also","see"],["purex","article"],["article","plutonium"],["test","reactor"],["alternative","fuel"],["plutonium","fuels"],["fuels","pilot"],["pilot","plant"],["historic","photos"],["photos","image"],["image","hanford"],["hanford","f"],["f","reactor"],["reactor","cooling"],["athe","f"],["f","reactor"],["reactor","image"],["image","hanford"],["hanford","tank"],["underground","tank"],["tank","farm"],["waste","storage"],["storage","tanks"],["tanks","image"],["image","hanford"],["hanford","waste"],["inside","one"],["waste","storage"],["storage","tanks"],["tanks","image"],["image","hanford"],["hanford","purex"],["purex","facility"],["facility","image"],["image","hanford"],["central","plateau"],["rattlesnake","mountain"],["mountain","benton"],["benton","county"],["county","washington"],["washington","rattlesnake"],["rattlesnake","mountain"],["mountain","image"],["image","richland"],["richland","washingtonjpg"],["richland","washington"],["washington","richland"],["thearly","days"],["site","image"],["image","hanford"],["hanford","workers"],["workers","lining"],["image","hanford"],["hanford","sheep"],["sheep","testing"],["testing","jpg"],["jpg","hanford"],["hanford","scientists"],["scientists","feeding"],["feeding","radioactive"],["radioactive","food"],["sheep","image"],["image","n"],["hanford","sheep"],["sheep","testing"],["image","hanford"],["cold","war"],["war","era"],["era","billboard"],["billboard","image"],["image","atomic"],["atomic","frontier"],["atomic","frontier"],["frontier","days"],["days","parade"],["richland","washington"],["washington","richland"],["richland","image"],["fast","flux"],["flux","test"],["test","facility"],["facility","see"],["see","also"],["also","lists"],["nuclear","disasters"],["radioactive","incidents"],["incidents","timeline"],["nuclear","weapons"],["weapons","development"],["development","references"],["references","furthereading"],["furthereading","john"],["atomic","frontier"],["frontier","days"],["days","hanford"],["american","west"],["west","university"],["washington","press"],["press","pages"],["pages","explores"],["tri","cities"],["richland","washington"],["washington","externalinks"],["externalinks","official"],["official","hanford"],["hanford","website"],["website","department"],["energy","washington"],["washington","department"],["ecology","nuclear"],["nuclear","waste"],["waste","program"],["program","state"],["state","agency"],["regulates","hanford"],["hanford","cleanup"],["cleanup","us"],["us","environmental"],["environmental","protection"],["protection","agency"],["agency","federal"],["federal","agency"],["regulates","hanford"],["hanford","cleanup"],["cleanup","category"],["category","hanford"],["hanford","site"],["site","category"],["category","geography"],["benton","county"],["county","washington"],["washington","category"],["category","columbia"],["columbia","river"],["river","category"],["category","environmental"],["environmental","disasters"],["united","states"],["states","category"],["category","geography"],["washington","state"],["state","category"],["category","history"],["washington","state"],["state","category"],["category","manhattan"],["manhattan","project"],["project","category"],["category","buildings"],["washington","state"],["state","category"],["category","nuclear"],["nuclear","history"],["united","states"],["states","category"],["category","nuclear"],["nuclear","weapons"],["weapons","infrastructure"],["united","states"],["states","category"],["category","radioactive"],["radioactive","waste"],["category","tri"],["tri","cities"],["cities","washington"],["washington","category"],["category","united"],["united","states"],["states","department"],["energy","facilities"],["facilities","category"],["category","closed"],["closed","military"],["military","facilities"],["united","states"],["united","states"],["states","category"],["category","buildings"],["benton","county"],["county","washington"],["washington","category"],["category","tourist"],["tourist","attractions"],["benton","county"],["county","washington"],["washington","category"],["contaminated","areas"],["areas","category"],["category","establishments"],["washington","state"],["state","category"],["category","military"],["military","superfund"],["superfund","sites"],["sites","category"],["category","superfund"],["superfund","sites"],["washington","state"],["state","category"],["category","nuclear"],["nuclear","accidents"],["incidents","category"],["category","military"],["military","research"],["united","states"],["states","category"],["wave","astronomy"],["astronomy","category"],["category","atomic"],["atomic","tourism"]],"all_collocations":["image hanford","hanford n","n reactor","right nucleareactors","nucleareactors line","athe hanford","hanford site","site along","columbia river","n reactor","withe twin","immediate background","historic b","b reactor","first plutonium","plutonium production","production reactor","hanford site","mostly decommissioned","decommissioned nuclear","nuclear technology","technology nuclear","nuclear production","production complex","complex operated","united states","states federal","federal government","columbia river","washington state","state washington","many names","names including","including hanford","hanford project","project hanford","hanford works","works hanford","hanford engineer","engineer works","works hanford","manhattan project","project hanford","hanford washington","washington hanford","hanford south","south central","central washington","b reactor","first full","full scale","scale plutonium","technology reactor","athe site","first nuclear","bomb tested","tested athe","athe trinity","trinity nuclear","nuclear site","fat man","man bomb","bomb atomic","atomic bombings","hiroshimand nagasaki","nagasaki detonated","nagasaki japan","cold war","project expanded","include nine","nine nucleareactors","five large","plutonium processing","processing complexes","produced plutonium","weapons built","nuclear weapons","united states","states us","nuclear technology","technology developed","developed rapidly","hanford scientists","scientists produced","produced major","major technological","technological achievements","achievements many","many early","early safety","safety procedures","waste disposal","disposal practices","government documents","hanford operations","operations released","released significant","significant amounts","radioactive contamination","contamination radioactive","radioactive materials","columbia river","weapons production","production reactors","decommissioned athend","cold war","manufacturing left","left behind","high level","level waste","waste high","high level","level radioactive","radioactive waste","waste stored","stored within","within storage","storage tanks","solid radioactive","radioactive waste","waste contaminated","contaminated groundwater","groundwater beneathe","beneathe site","federal agency","agency charged","us department","single shell","shell tanks","liquid waste","newer double","double shell","shell tanks","tanks doe","doe later","later found","found water","least single","single shell","shell tanks","per year","ground since","doe discovered","leak also","double shell","shell tank","tank caused","double shell","shell tanks","similar construction","doe changed","changed monitoring","monitoring single","single shell","shell tanks","tanks monthly","shell tanks","also changed","changed monitoring","monitoring methods","march doe","doe announced","waste treatment","treatment plant","affecthe schedule","waste tanks","hanford site","site represented","represented two","two thirds","high level","level radioactive","radioactive waste","volume hanford","contaminated nuclear","nuclear site","united states","largest environmental","environmental remediation","remediation environmental","environmental cleanup","cleanup besides","hanford also","also hosts","commercial nuclear","nuclear power","columbia generating","generating station","various centers","scientific research","research andevelopment","pacific northwest","northwest nationalaboratory","hanford observatory","observatory onovember","manhattan project","project national","national historical","historical park","park alongside","oak ridge","los alamos","alamos geography","geography image","image hanford","hanford reach","reach national","map shows","main areas","hanford site","buffer zone","hanford reach","reach national","national monument","hanford site","site occupies","occupies roughly","roughly equivalento","equivalento half","total area","rhode island","island within","within benton","benton county","county washington","general public","desert environment","environment receiving","covered mostly","columbia river","river columbia","columbia river","river flows","flows along","approximately forming","eastern boundary","original site","site included","included buffer","buffer areas","areas across","grant county","county washington","washington grant","franklin county","county washington","washington franklin","private use","large portions","hanford reach","reach national","national monumenthe","monumenthe site","three main","main areas","located along","area designated","chemical separations","separations complexes","located inland","central plateau","plateau designated","facilities located","southeast corner","site designated","tri cities","cities washington","washington tri","tri cities","metropolitan area","area composed","richland washington","washington richland","richland washington","smaller communities","primary economic","economic base","cities climate","climate date","date april","april early","early history","river snake","snake river","river snake","columbia rivers","meeting place","indigenous peoples","peoples native","native peoples","archaeological record","native americans","united states","states native","native american","american habitation","area stretches","stretches back","ten thousand","thousand years","years tribes","nations including","nez perce","perce people","people nez","nez perce","perce tribe","hunting fishing","gathering plant","plant foods","foods hanford","hanford archaeology","archaeology archaeologists","identified numerous","numerous native","native american","american sites","sites including","including pit","pit house","house villages","villages open","open campsites","campsites fishing","fishing sites","sites hunting","hunting kill","kill sites","sites game","game drive","drive complex","spirit quest","quest sites","two archaeological","archaeological sites","national register","historic places","hanford island","island archaeological","archaeological site","site nrhp","hanford north","north archaeological","archaeological district","see also","commercial site","site national","national register","historic places","places native","native american","american use","area continued","th century","century even","indian reservations","never forced","forced onto","lived along","columbia river","priest rapids","rapids priest","priest rapids","rapids valley","euro americans","americans began","initially along","columbia river","river south","priest rapids","established farms","small scale","scale irrigation","irrigation projects","railroad transportation","small town","town centers","hanford washington","washington hanford","hanford white","white bluffs","bluffs washington","washington white","white bluffs","richland washington","washington richland","richland manhattan","manhattan project","world war","war ii","federal office","scientific research","research andevelopment","intensive research","research project","research contract","scientists athe","athe university","chicago metallurgicalaboratory","metallurgicalaboratory met","met lab","lab athe","athe time","time plutonium","california laboratory","met lab","lab researchers","researchers worked","producing chain","convert ito","ito plutonium","finding ways","separate plutonium","plutonium uranium","united states","states government","government became","became concerned","nuclear weapons","weapons program","program site","site selection","selection image","image hanford","thumb hanford","hanford high","high school","school hanford","hanford washington","washington hanford","hanford high","high school","school shown","hanford site","site image","image hanford","hanford high","right hanford","hanford high","united states","states army","army corps","engineers army","army corps","engineers placed","newly formed","formed manhattan","manhattan project","leslie groves","groves brigadier","r groves","groves charging","withe construction","industrial size","size plants","manufacturing plutonium","plutonium uranium","uranium groves","groves recruited","dupont company","prime contractor","plutonium production","production complex","complex dupont","dupont recommended","located far","far away","thexisting uranium","uranium production","production facility","oak ridge","ridge tennessee","ideal site","criteria large","hazardous manufacturing","manufacturing area","least space","laboratory facilities","nearest reactor","reactor separations","separations plant","people closer","main highway","highway railway","employee village","village closer","cleand abundant","abundant water","water supply","power supply","supply ground","could bear","bear heavy","heavy loads","december groves","assistant franklin","franklin matthias","matthias colonel","colonel franklin","franklin matthias","scout potential","potential sites","sites matthias","matthias reported","respects except","farming towns","white bluffs","bluffs washington","washington white","white bluffs","hanford washington","washington hanford","hanford general","general groves","groves visited","hanford engineer","engineer works","site w","federal government","government quickly","quickly acquired","war powers","war powers","powers act","hanford white","white bluffs","nearby settlements","indian reservation","nez perce","perce tribe","tribe construction","construction image","image hanford","hanford b","b reactor","right b","b reactor","reactor construction","construction hanford","hanford engineer","engineer works","broke ground","immediately launched","technically challenging","challenging construction","construction project","project dupont","dupont advertised","war construction","construction project","southeastern washington","washington offering","offering attractive","attractive scale","living facilities","construction workers","june lived","construction camp","camp near","old hanford","hanford townsite","engineers lived","richland village","family units","kenneth nichols","nichols k","trinity page","new york","york construction","nuclear facilities","facilities proceeded","proceeded rapidly","built buildings","hanford including","including three","three nucleareactors","nucleareactors b","three plutonium","plutonium processing","processing canyons","radioactive wastes","chemical separations","separations process","farms consisting","single shell","shell underground","underground waste","waste tanks","tanks b","b c","project required","four electrical","structural steel","consumed million","plutonium production","b reactor","reactor b","first large","large scale","scale plutonium","plutonium production","production reactor","dupont based","experimental design","enrico fermi","originally operated","water cooled","aluminium tubes","uranium slugs","slugs diameter","long sealed","aluminium cans","cans went","tubes cooling","cooling water","aluminium tubes","tubes around","uranium slugs","slugs athe","athe rate","per minute","minute file","file hanford","hanford b","thumb lefthe","lefthe b","b reactor","reactor construction","b reactor","reactor began","reactor went","went critical","critical mass","mass critical","late september","overcoming nuclear","nuclear poison","poison ing","ing produced","first plutonium","plutonium onovember","onovember plutonium","hanford reactors","fuel slug","slug absorbed","form uranium","beta decay","second beta","beta decay","form plutonium","irradiated fuel","fuel slugs","three huge","huge remotely","remotely operated","operated chemical","chemical separation","separation plants","plants called","called canyons","chemical processing","small amount","remaining uranium","fission waste","waste products","first batch","february andelivered","los alamos","alamos nationalaboratory","nationalaboratory los","los alamos","alamos laboratory","laboratory inew","february two","two identical","identical reactors","reactors reactor","f reactor","reactor came","came online","february respectively","april shipments","los alamos","alamos every","every five","five days","days hanford","hanford soon","soon provided","provided enough","enough material","bombs tested","manhattan project","project maintained","top secret","secret classification","news arrived","bomb dropped","atomic bombings","hiroshimand nagasaki","nagasaki hiroshima","hiroshima fewer","one percent","hanford workers","workers knew","nuclear weapons","weapons project","project general","general groves","groves noted","made certain","initially six","six reactors","gun type","type thin","bomb thin","thin man","man bomb","simple gun","gun type","type bomb","advanced fat","fat man","man bomb","bomb required","required less","less plutonium","chemical separation","separation plants","three technological","technological innovations","shortime frame","manhattan project","project hanford","hanford engineers","engineers produced","produced many","ever built","industrial scale","scale nucleareactor","greatest possible","possible production","adequate safety","safety margin","margin dupont","dupont engineers","engineers installed","systems withe","f reactors","river water","reactor coolant","coolant another","another difficulty","canyons began","began processing","processing irradiated","irradiated slugs","machinery would","would become","humans ever","component via","via remote","remote control","modular cell","cell concept","allowed major","major components","operator sitting","overhead crane","method required","required early","early practical","practical application","two technologies","later gained","gained widespread","widespread use","crane operator","better view","process cold","cold war","war expansion","expansion image","image hanford","september general","general electric","electric general","assumed management","hanford works","newly created","created united","united states","states atomic","atomic energy","energy commission","commission atomic","atomic energy","energy commission","cold war","war began","united states","states faced","new strategic","strategic threat","soviet atomic","atomic bomb","bomb project","project soviet","soviet nuclear","nuclear weapons","weapons program","augusthe hanford","hanford works","works announced","announced funding","new chemical","chemical separations","separations process","process entering","new phase","hanford site","nine nucleareactors","nucleareactors along","columbia river","river five","central plateau","support buildings","original three","three world","world war","war ii","ii reactors","underground waste","waste tanks","built hanford","peak production","tover thentire","thentire years","site produced","produced plutonium","plutonium supplying","us arsenal","arsenal uranium","also produced","laboratory accident","accident due","prompt medical","medical intervention","incident andied","andied eleven","eleven years","years later","natural causes","last reactor","reactor n","n reactor","reactor continued","continued toperate","dual purpose","purpose reactor","civilian electrical","electrical grid","grid via","washington public","public power","power supply","supply system","plutonium production","production reactor","nuclear weapons","weapons n","n reactor","reactor operated","hanford reactors","radioactive materials","surrounding structures","b reactor","occasional guided","guided tours","national register","historic places","site see","see also","commercial site","site national","national register","historic places","historians advocate","advocate converting","museum b","b reactor","national historic","historic landmark","national park","park service","august chemical","chemical engineering","engineering news","news vol","september hanford","hanford b","b reactor","reactor gets","gets landmark","landmark status","status p","p class","wikitable weapons","weapons production","production reactors","reactors reactor","reactor name","name start","date shutdown","shutdown date","date initial","initial power","power mwt","mwt final","final power","power mwt","mwt b","b reactor","reactor align","right sep","sep align","right feb","feb align","reactor align","right dec","dec align","right jun","jun align","right f","f reactor","reactor align","right feb","feb align","right jun","jun align","right h","h reactor","reactor align","right oct","oct align","right apr","apr align","replacement reactor","reactor align","right oct","oct align","right dec","dec align","right c","c reactor","reactor align","right nov","nov align","right apr","apr align","k west","west reactor","reactor align","right jan","jan align","right feb","feb align","k east","east reactor","reactor align","right apr","apr align","right jan","jan align","right n","n reactor","reactor align","right dec","dec align","right jan","jan align","right later","later operations","operations image","image hanford","hanford site","site signjpg","signjpg thumb","right highway","highway sign","road entering","hanford site","united states","states department","energy assumed","assumed control","hanford site","although uranium","uranium enrichment","plutonium breeding","outhe nuclear","nuclear legacy","legacy left","world war","war ii","area hadeveloped","small farming","farming community","booming atomic","atomic frontier","nuclear industrial","industrial complex","complex decades","decades ofederal","ofederal investment","investment created","highly skilled","skilled scientists","specialized skills","hanford site","include scientific","scientific research","research test","test facilities","commercial nuclear","nuclear power","power production","production operational","operational facilities","facilities located","located athe","athe hanford","hanford site","site included","pacific northwest","northwest nationalaboratory","nationalaboratory owned","memorial institute","fast flux","flux test","test facility","national research","research facility","whose last","last fuel","hanford observatory","waves columbia","columbia generating","generating station","commercial nuclear","nuclear power","power plant","plant operated","energy northwest","us navy","navy nuclear","nuclear submarine","submarine reactor","reactor dry","dry storage","storage site","site containing","containing sealed","sealed reactor","reactor sections","us navy","contractors offer","offer tours","site sixty","sixty public","public tours","five hours","hours long","free require","require advance","advance reservation","reservation via","web site","us citizens","least years","age tunnel","tunnel collapse","store contaminated","contaminated materials","located nexto","plutonium uranium","uranium extraction","extraction purex","purex facility","theast area","hanford site","non essential","essential personnel","concerns image","image hare","thumb righthe","righthe hanford","hanford reach","columbia river","radioactivity released","huge volume","columbia river","theat produced","pump systems","systems drew","drew cooling","cooling water","reactors returned","returned ito","used water","large tanks","tanks known","retention basin","six hours","hours longer","longer lived","lived isotope","river every","every day","federal government","government kept","kept knowledge","far west","oregon coasts","plutonium separation","separation process","process resulted","radioactive isotopes","wind throughout","throughout southeastern","southeastern washington","idaho montana","montana oregon","british columbia","radionuclides particularly","particularly iodine","iodine withe","radionuclides entered","food chain","chain via","via dairy","contaminated fields","fields hazardous","hazardous fallout","consumed radioactive","radioactive food","airborne releases","routine operations","isolated incidents","intentional release","release known","green run","run released","two days","days another","another source","contaminated food","food came","columbia river","river fish","impact felt","native americans","united states","states native","native american","american communities","customary diets","us government","government report","report released","radioactive iodine","hanford site","site image","image salmon","hanford sitejpg","sitejpg thumb","left salmon","hanford reach","reach near","h reactor","reactor beginning","scientists withe","withe united","united states","states public","public health","health service","service us","us public","public health","health service","service published","published reports","radioactivity released","thealth departments","spokane spokesman","spokesman review","energy announced","environmental records","february released","released pages","previously unavailable","unavailable historical","historical documents","hanford operations","washington state","state department","health collaborated","collaborated withe","withe citizen","citizen led","led hanford","hanford health","health informationetwork","hanford operations","reports concluded","columbia river","increased risk","various cancers","lawsuit brought","two thousand","againsthe federal","federal government","court system","september twof","twof six","wento trial","radioactive materials","concentration detected","l athe","athe hanford","hanford townsite","highest iodine","iodine concentration","also found","hanford townsite","townsite spring","drinking water","water limits","limits levels","radionuclides including","including tritium","tritium technetium","technetium iodine","springs near","hanford townsite","increasing since","major groundwater","groundwater pollution","pollution groundwater","groundwater plume","theast area","river detected","detected radionuclides","radionuclides include","technetium iodine","iodine uranium","february governor","governor jay","tank storing","storing radioactive","radioactive waste","waste athe","athe site","gallons per","per year","leak posed","immediate health","health risk","february governor","governor stated","hanford site","leaking radioactive","radioactive waste","waste tanks","single shell","shell historically","historically single","single shell","shell tanks","storing radioactive","radioactive liquid","liquid waste","waste andesigned","last years","liquid waste","single shell","shell tanks","safer double","double shell","shell tanks","substantial amount","older single","single shell","shell tanks","one containing","estimated gallons","leaking two","two tanks","gallons per","per year","remaining four","four tanks","gallons per","per year","occupational health","reported exposure","harmful vapors","nuclear storage","storage tanks","solution found","alone reported","became ill","eyes burning","burning skin","skin contact","increased heart","heart rate","rate difficulty","difficulty breathing","long term","term disabilities","disabilities doctors","doctors checked","checked workers","work monitors","monitors worn","tank workers","chemicals close","occupational exposure","august occupational","occupational safety","health administration","back wages","safety concerns","concerns athe","athe site","site onovember","onovember washington","washington attorney","attorney general","general bob","bob ferguson","ferguson said","state planned","protect workers","hazardous vapors","doe savannah","savannah river","river nationalaboratory","nationalaboratory initiated","washington river","river protection","protection solutions","solutions found","inadequate particularly","particularly thathey","air inside","inside tanks","new practices","prevent worker","vapors cleanup","superfund image","image hanford","hanford site","site tank","tank interiorjpg","interiorjpg thumb","right image","waste found","found inside","inside double","double shell","shell tank","athe hanford","hanford site","site april","hanford site","four areas","national priorities","priorities list","washington department","united states","states environmental","environmental protection","protection agency","energy entered","tri party","party agreement","legal framework","environmental remediation","largest environmental","environmental cleanup","many challenges","technical political","political regulatory","cultural interests","cleanup effort","three outcomes","columbia river","river corridor","uses converting","central plateau","long term","term waste","waste treatment","cleanup effort","two regulatory","regulatory agencies","citizen led","led hanford","hanford advisory","advisory board","board provides","provides recommendations","community stakeholders","stakeholders including","including local","state governments","governments regional","regional environmental","environmental organizations","organizations business","business interests","native american","american tribes","tribes citing","scope schedule","remaining hanford","hanford clean","billion per","per year","next six","six years","lower cost","approximately billion","billion per","per year","mitigate waste","waste contaminated","contaminated buildings","contaminated soil","soil originally","originally scheduled","complete within","within thirtyears","four areas","formally listed","list following","following cleanup","cleanup file","file spent","spent nuclear","nuclear fuel","left spent","spent nuclear","nuclear fuel","fuel stored","stored underwater","k east","east basin","radioactive material","material ended","ended withe","withe reactor","reactor shutdown","dangerous wastes","continued concerns","contaminated groundwater","groundwater headed","headed toward","columbia river","workers health","significant challenge","hanford high","high level","level radioactive","radioactive waste","waste stored","underground tanks","liquid waste","secure double","tanks however","liquid waste","waste together","salt cake","tanks doe","doe lacks","lacks information","double shell","shell tanks","tanks may","without determining","determining thextento","double shell","shell tanks","tanks doe","double shell","shell tanks","safely store","store waste","originally scheduled","contaminated groundwater","radioactive waste","groundwater toward","columbia river","site includes","solid radioactive","radioactive waste","waste image","right grand","grand opening","thenvironmental restoration","restoration disposal","disposal facility","tri party","party agreement","agreement lower","lower level","level hazardous","hazardous wastes","huge lined","lined pits","sophisticated instruments","manyears disposal","high level","level wastes","difficult problem","intense debate","example plutonium","half life","ten half","half lives","energy awarded","billion contracto","contracto bechtel","san francisco","francisco based","based construction","engineering firm","radioactive waste","waste vitrification","dangerous wastes","stable construction","construction began","originally scheduled","vitrification completed","nuclear waste","march p","p according","general accounting","accounting office","managerial problems","problems estimated","estimated costs","operations estimated","may state","federal officials","officials began","negotiations abouthe","abouthe possibility","extending legal","legal cleanup","waste vitrification","hanford cleanup","cleanup budget","proposed washington","washington state","state officials","officials expressed","expressed concern","concern abouthe","abouthe budget","budget cuts","recent safety","athe site","lawsuit alleging","alleging thathe","thathe department","step back","another meeting","meeting ofederal","state officials","officials resulted","progress toward","tentative agreement","uncovered inside","waste trench","making ithe","ithe second","second oldest","oldest sample","plutonium known","exist analyses","analyses published","concluded thathe","thathe sample","sample originated","oak ridge","several sento","sento hanford","optimization tests","hanford could","could produce","plutonium documents","documents refer","sample belonging","radiation leak","chemical engineering","engineering news","news antique","project era","era plutonium","hanford site","site cleanup","radioactive waste","planned yucca","project wasuspended","wasuspended washington","washington state","state sued","sued joined","south carolina","first suit","subsequent suit","suit federal","federal authorities","yucca mountain","mountain storage","storage site","potential radioactive","radioactive leak","cost billion","hanford organizations","hanford site","site operations","initially directed","colonel franklin","franklin matthias","us army","army corps","engineers postwar","united states","states atomic","atomic energy","energy commission","commission atomic","atomic energy","energy commission","commission took","thenergy research","research andevelopment","andevelopment administration","administration hanford","hanford operations","currently directed","us department","government contract","various private","private companies","sortable year","year begun","begun month","month organization","organization responsibility","responsibility class","unsortable remarks","remarks december","december us","us army","army corps","engineers lead","lead us","held role","role january","january december","dupont de","company dupont","site activities","activities initial","initial hanford","hanford site","site contractor","contractor september","september general","site activities","january united","united states","states atomic","atomic energy","energy commission","commission atomic","atomic energy","energy commission","commission lead","lead us","replaced us","us army","army corps","engineers may","may vitro","vitro engineers","engineers hanford","hanford engineering","engineering services","services assumed","assumed ges","ges new","new facility","facility design","design role","role june","jones construction","construction hanford","hanford construction","construction services","services assumed","assumed ges","ges construction","construction role","role january","january us","us testing","testing environmental","testing assumed","assumed ges","ges environmental","testing role","role january","memorial institute","institute pacific","pacific northwest","northwest nationalaboratory","nationalaboratory pacific","pacific northwest","northwest laboratory","renamed pacific","pacific northwest","northwest nationalaboratory","nationalaboratory july","july computer","computer sciences","sciences corporation","services new","new scope","scope august","august hanford","hanford occupational","occupational health","health foundation","foundation industrial","industrial medicine","medicine assumed","industrial medicine","medicine role","role september","september douglas","douglas united","united nuclear","nuclear single","single pass","pass reactor","reactor operations","operations fuel","fuel fabrication","fabrication assumed","assumed part","reactor operations","operations january","processing assumed","chemical processing","processing operations","operations march","federal support","support services","services inc","inc support","support services","services assumed","assumed july","july douglas","douglas united","united nuclear","nuclear n","n reactor","reactor operation","operation assumed","assumed remainder","hanford company","company chemical","chemical processing","processing replaced","august hanford","hanford environmental","environmental health","health foundation","foundation industrial","industrial medicine","medicine name","name change","hanford company","company hanford","hanford engineering","engineering development","development laboratory","laboratory spun","spun offrom","fast flux","flux test","test facility","facility september","support services","services replaces","april united","united nuclear","nuclear industries","industries inc","production reactor","reactor operations","operations name","name change","douglas united","united nuclear","january energy","energy research","research andevelopment","andevelopment administration","lead us","replaced aec","aec managed","managed site","october boeing","boeing computer","computer services","computer services","services replaced","october us","us department","energy doe","doe lead","lead us","us government","government agency","agency replaced","hanford operations","chemical processing","processing support","support services","services replaces","hanford company","architect engineering","engineering services","services replaces","replaces vitro","vitro march","engineering hanford","architect engineering","engineering services","services replaces","construction consolidated","consolidated contract","contract includes","includes former","jones work","work june","site management","management operations","operations consolidated","consolidated contract","contract includes","work october","october fluor","fluor corp","corp fluor","fluor daniel","daniel hanford","hanford inc","site management","management operations","integrating contractor","companies february","february fluor","fluor corp","corp fluor","fluor hanford","hanford site","site cleanup","cleanup operations","operations transition","site cleanup","cleanup fluor","held various","various roles","roles december","december bechtel","bechtel national","national inc","inc engineering","engineering construction","waste treatment","treatment plant","plant october","hill plateau","plateau remediation","remediation company","company central","central plateau","plateau cleanup","closure april","april washington","washington closure","closure hanford","hanford river","river corridor","corridor cleanup","closure may","may mission","mission support","support alliance","alliance site","site infrastructure","services consolidated","consolidated services","services contract","contract october","october washington","washington river","river protection","protection solutions","solutions tank","tank farm","farm operations","site historical","historical plutonium","plutonium finishing","finishing plant","plant made","weapons b","b plant","plant plant","plant plant","plant processing","processing separation","various chemicals","isotopes health","attempto keep","keep workers","thenvironment safe","plant c","c plant","plant recovered","world war","war ii","ii processes","processes experimental","experimental animal","animal farm","aquatic biology","biology laboratory","laboratory technical","radioactive sewer","fuels manufacturing","manufacturing tank","liquid nuclear","nuclear waste","waste metal","metal recovery","recovery plant","plant plant","plant recover","recover uranium","tank farms","farms uranium","plant aka","aka uranium","uranium oxide","oxide plant","plant aka","plant purex","purex plant","plant made","made uranium","powder plutonium","plutonium uranium","uranium extraction","extraction plant","plant purex","purex plant","plant extracted","extracted useful","useful material","spent fuel","fuel waste","waste also","also see","purex article","article plutonium","test reactor","alternative fuel","plutonium fuels","fuels pilot","pilot plant","historic photos","photos image","image hanford","hanford f","f reactor","reactor cooling","athe f","f reactor","reactor image","image hanford","hanford tank","underground tank","tank farm","waste storage","storage tanks","tanks image","image hanford","hanford waste","inside one","waste storage","storage tanks","tanks image","image hanford","hanford purex","purex facility","facility image","image hanford","central plateau","rattlesnake mountain","mountain benton","benton county","county washington","washington rattlesnake","rattlesnake mountain","mountain image","image richland","richland washingtonjpg","richland washington","washington richland","thearly days","site image","image hanford","hanford workers","workers lining","image hanford","hanford sheep","sheep testing","testing jpg","jpg hanford","hanford scientists","scientists feeding","feeding radioactive","radioactive food","sheep image","image n","hanford sheep","sheep testing","image hanford","cold war","war era","era billboard","billboard image","image atomic","atomic frontier","atomic frontier","frontier days","days parade","richland washington","washington richland","richland image","fast flux","flux test","test facility","facility see","see also","also lists","nuclear disasters","radioactive incidents","incidents timeline","nuclear weapons","weapons development","development references","references furthereading","furthereading john","atomic frontier","frontier days","days hanford","american west","west university","washington press","press pages","pages explores","tri cities","richland washington","washington externalinks","externalinks official","official hanford","hanford website","website department","energy washington","washington department","ecology nuclear","nuclear waste","waste program","program state","state agency","regulates hanford","hanford cleanup","cleanup us","us environmental","environmental protection","protection agency","agency federal","federal agency","regulates hanford","hanford cleanup","cleanup category","category hanford","hanford site","site category","category geography","benton county","county washington","washington category","category columbia","columbia river","river category","category environmental","environmental disasters","united states","states category","category geography","washington state","state category","category history","washington state","state category","category manhattan","manhattan project","project category","category buildings","washington state","state category","category nuclear","nuclear history","united states","states category","category nuclear","nuclear weapons","weapons infrastructure","united states","states category","category radioactive","radioactive waste","category tri","tri cities","cities washington","washington category","category united","united states","states department","energy facilities","facilities category","category closed","closed military","military facilities","united states","united states","states category","category buildings","benton county","county washington","washington category","category tourist","tourist attractions","benton county","county washington","washington category","contaminated areas","areas category","category establishments","washington state","state category","category military","military superfund","superfund sites","sites category","category superfund","superfund sites","washington state","state category","category nuclear","nuclear accidents","incidents category","category military","military research","united states","states category","wave astronomy","astronomy category","category atomic","atomic tourism"],"new_description":"image hanford n reactor thumb right nucleareactors line athe hanford_site along columbia_river january n reactor withe twin reactors immediate background historic b_reactor world first plutonium_production reactor visible distance hanford_site mostly decommissioned nuclear technology nuclear production complex operated united_states federal_government columbia_river ustate washington_state washington site known many names including hanford project hanford works hanford engineer works hanford established part manhattan_project hanford washington hanford south central washington site home b_reactor first full_scale plutonium technology reactor world athe_site used first nuclear bomb tested athe trinity nuclear site fat man bomb atomic_bombings hiroshimand_nagasaki detonated nagasaki japan cold_war project expanded include nine nucleareactors five large plutonium processing complexes produced plutonium weapons built nuclear_weapons united_states us nuclear technology developed rapidly period hanford scientists produced major technological achievements many early safety procedures waste disposal practices inadequate government documents confirmed hanford operations released significant amounts radioactive contamination radioactive materials air columbia_river weapons production reactors decommissioned athend cold_war manufacturing left behind high_level waste high_level radioactive_waste stored within storage tanks additional solid radioactive_waste contaminated groundwater beneathe site federal agency charged overseeing site us_department energy single shell_tanks nearly liquid waste newer double shell_tanks doe later found water least single shell_tanks one leaking per_year ground since doe discovered leak also double shell tank caused construction bottom double shell_tanks similar construction doe changed monitoring single shell_tanks monthly shell_tanks also changed monitoring methods march doe announced delays construction waste treatment plant affecthe schedule waste tanks discoveries contamination pace raised cost cleanup hanford_site represented two_thirds nation high_level radioactive_waste volume hanford currently contaminated nuclear site united_states focus nation largest environmental remediation environmental cleanup besides hanford also hosts commercial nuclear_power columbia generating station various centers scientific_research_andevelopment pacific_northwest nationalaboratory hanford observatory onovember designated part manhattan_project national_historical park alongside sites oak_ridge los_alamos geography image_hanford reach national thumb right map shows main areas hanford_site well buffer zone turned hanford reach national monument hanford_site occupies roughly equivalento half total area rhode_island within benton county washington land closed general_public desert environment receiving inches annual covered mostly vegetation columbia_river columbia_river flows along site approximately forming northern eastern boundary original site included buffer areas across river grant county washington grant franklin county washington franklin land returned private use covered fields large portions site turned hanford reach national monumenthe site divided function three main areas nucleareactors located along river area designated area chemical separations complexes located inland central plateau designated areand facilities located southeast corner site designated area site southeast tri cities washington tri cities metropolitan area composed richland washington richland washington washington smaller communities home hanford primary economic base cities climate date april early history river snake river snake columbia_rivers meeting_place indigenous peoples native peoples centuries archaeological record native_americans united_states native_american habitation area stretches back ten thousand years tribes nations including nez perce people nez perce tribe used area hunting fishing gathering plant foods hanford archaeology archaeologists identified numerous native_american sites including pit house villages open campsites fishing sites hunting kill sites game drive complex spirit quest sites two archaeological sites listed national_register historic_places hanford island archaeological site nrhp hanford north archaeological district see_also commercial site national_register historic_places native_american use area continued th_century even tribes indian reservations people never forced onto reservation lived along columbia_river priest rapids priest rapids valley euro americans began settle region initially along columbia_river south priest rapids established farms small_scale irrigation projects railroad transportation small_town centers hanford washington hanford white bluffs washington white bluffs richland washington richland manhattan_project world_war ii section federal office scientific_research_andevelopment sponsored intensive research project plutonium research contract awarded scientists athe_university chicago metallurgicalaboratory met lab athe_time plutonium recently isolated university california laboratory met lab researchers worked producing chain piles uranium convert ito plutonium finding ways separate plutonium uranium program accelerated united_states government became concerned scientists germany developing nuclear_weapons program site selection image_hanford thumb hanford high_school hanford washington hanford high_school shown displaced creation hanford_site image_hanford high thumb right hanford high september united_states army corps engineers army corps engineers placed newly formed manhattan_project command leslie groves brigadier r groves charging withe construction industrial size plants manufacturing plutonium uranium groves recruited dupont company prime contractor construction plutonium_production complex dupont recommended located far away thexisting uranium production facility oak_ridge tennessee ideal site described criteria large remote land hazardous manufacturing area least space laboratory facilities least nearest reactor separations plant towns people closer hazardous main highway railway employee village closer hazardous cleand abundant water supply power supply ground could bear heavy loads december groves assistant franklin matthias colonel franklin matthias engineers scout potential sites matthias reported hanford ideal virtually respects except farming towns white bluffs washington white bluffs hanford washington hanford general groves visited site january established hanford engineer works site w federal_government quickly acquired land war powers war powers act relocated residents hanford white bluffs nearby settlements well people tribes bands nation tribes indian reservation nez perce tribe construction image_hanford b_reactor thumb right b_reactor construction hanford engineer works broke ground march immediately launched massive technically challenging construction project dupont advertised workers war construction project southeastern washington offering attractive scale wages living facilities construction workers reached peak june lived construction camp near old hanford townsite administrators engineers lived established richland village eventually accommodation family units kenneth nichols k road trinity page new_york construction nuclear facilities proceeded rapidly thend war built buildings hanford including three nucleareactors b f three plutonium processing canyons b long receive radioactive_wastes chemical separations process farms consisting single shell underground waste tanks b c project required roads railway four electrical used concrete tonne structural steel consumed million plutonium_production b_reactor b hanford first large_scale plutonium_production reactor world designed built dupont based experimental design enrico fermi originally operated electrical thermal thermal reactor graphite water cooled consisted graphite lying entire aluminium tubes uranium slugs diameter long sealed aluminium cans went tubes cooling water aluminium tubes around uranium slugs athe rate per_minute file hanford b thumb lefthe b_reactor construction b_reactor began august completed september reactor went critical mass critical late september overcoming nuclear poison ing produced first plutonium onovember plutonium produced hanford reactors uranium fuel slug absorbed neutron form uranium rapidly beta decay form rapidly second beta decay form plutonium irradiated fuel slugs transported rail three huge remotely operated chemical separation plants called canyons away series chemical processing small amount plutonium produced remaining uranium fission waste products first batch plutonium refined plant december february andelivered los_alamos nationalaboratory los_alamos laboratory inew february two identical reactors reactor f reactor came online december february respectively april shipments plutonium headed los_alamos every five days hanford soon provided enough material bombs tested nuclear fat period manhattan_project maintained top secret classification news arrived bomb dropped atomic_bombings hiroshimand_nagasaki hiroshima fewer one percent hanford workers knew working nuclear_weapons project general groves noted memoirs made certain member understood part total nothing initially six reactors piles proposed plutonium used gun type thin bomb thin man bomb mid simple gun type bomb found impractical plutonium advanced fat man bomb required less plutonium number piles reduced four three number chemical separation plants four three technological innovations shortime frame manhattan_project hanford engineers produced many advances none ever built industrial scale nucleareactor scientists would generated fission normal greatest possible production maintaining adequate safety margin dupont engineers installed based systems withe f reactors river water use reactor coolant another difficulty deal radioactive canyons began processing irradiated slugs machinery would_become radioactive would unsafe humans ever come contact therefore methods allow replacement component via remote control came modular cell concept allowed major components removed replaced operator sitting heavily overhead crane method required early practical application two technologies later gained widespread use used material closed used give crane operator better view process cold_war expansion image_hanford thumb right reactor september general electric general assumed management hanford works supervision newly created united_states atomic_energy_commission atomic_energy_commission cold_war began united_states faced new strategic threat rise soviet atomic_bomb project soviet nuclear_weapons program augusthe hanford works announced funding construction two reactors research develop new chemical separations process entering new phase expansion hanford_site home nine nucleareactors along columbia_river five plants central plateau support buildings around modifications upgrades made original three world_war ii reactors total underground waste tanks built hanford peak production tover thentire years operations site produced plutonium supplying majority weapons us arsenal uranium also produced hanford harold received largest following laboratory accident due prompt medical intervention survived incident andied eleven years_later natural causes reactors shut average span years last reactor n reactor continued toperate dual purpose reactor used feed civilian electrical grid via washington public power supply system plutonium_production reactor nuclear_weapons n reactor operated since hanford reactors allow radioactive materials decay surrounding structures removed buried b_reactor accessible public occasional guided_tours listed national_register historic_places site see_also commercial site national_register historic_places historians advocate converting museum b_reactor designated national_historic landmark national_park service august chemical engineering news vol september hanford b_reactor gets landmark status p class wikitable weapons production reactors reactor name start_date shutdown date initial power mwt final power mwt b_reactor align right sep align right feb align right align right reactor align right dec align right jun align right align right f reactor align right feb align right jun align right align right h reactor align right oct align right apr align right align right replacement reactor align right oct align right dec align right align right c reactor align right nov align right apr align right align right k west reactor align right jan align right feb align right align right k east reactor align right apr align right jan align right align right n reactor align right dec align right jan align right align right_later operations image_hanford_site signjpg thumb right highway sign road entering hanford_site united_states department energy assumed control hanford_site although uranium enrichment plutonium breeding slowly outhe nuclear legacy left mark tri world_war ii area hadeveloped small farming community booming atomic frontier powerhouse nuclear industrial complex decades ofederal investment created community highly skilled scientists engineers result concentration specialized skills hanford_site able diversify operations include scientific_research test facilities commercial nuclear_power production operational facilities located_athe hanford_site included pacific_northwest nationalaboratory owned department energy operated memorial institute fast flux test facility national research facility operation whose last fuel removed hanford observatory searching waves columbia generating station commercial nuclear_power plant operated energy northwest us_navy nuclear submarine reactor dry storage site containing sealed reactor sections us_navy department energy contractors offer tours site sixty public tours five hours long planned tours free require advance reservation via department web_site limited us citizens least years age tunnel collapse morning may section tunnel used store contaminated materials located nexto plutonium uranium extraction purex facility theast area center hanford_site non essential personnel site soil used fill concerns image hare thumb_righthe hanford reach columbia_river radioactivity released huge volume water columbia_river required theat produced hanford nucleareactors pump systems drew cooling water river treating water use reactors returned ito river release river used water held large tanks known retention basin six hours longer lived isotope affected retention several entered river every_day federal_government kept knowledge radioactive radiation later far west washington oregon coasts plutonium separation process resulted release radioactive isotopes air carried wind throughout southeastern washington parts idaho montana oregon british_columbia radionuclides particularly iodine withe releases period radionuclides entered food_chain via dairy grazing contaminated fields hazardous fallout communities consumed radioactive food milk airborne releases part hanford routine operations occurred isolated incidents intentional release known green run released iodine two_days another source contaminated food came columbia_river fish impact felt native_americans united_states native_american communities depended river customary diets us_government report released estimated radioactive iodine released river air hanford_site image salmon hanford_sitejpg thumb left salmon hanford reach near h reactor beginning scientists withe united_states public_health service us public_health service published reports radioactivity released hanford protests thealth departments oregon washington response article spokane spokesman review september department energy announced environmental records february released pages previously unavailable historical documents hanford operations washington_state department health collaborated withe citizen led hanford health informationetwork effects hanford operations reports concluded residents hanford used columbia_river radiation placed increased risk various cancers diseases mass lawsuit brought two thousand againsthe federal_government court system manyears website_retrieved september twof six wento trial awarded radioactive materials known leaking hanford thenvironmenthe concentration detected springs l l athe hanford townsite highest iodine concentration l l also_found hanford townsite spring guidelines drinking water limits levels iodine l tritium l radionuclides including tritium technetium iodine springs near hanford townsite generally increasing since area major groundwater pollution groundwater plume theast area river detected radionuclides include technetium iodine uranium tritium detected include nitrate february governor jay announced tank storing radioactive_waste athe_site leaking average gallons per_year said leak posed immediate health risk public anything february governor stated tanks hanford_site leaking radioactive_waste tanks hanford whichave single shell historically single shell_tanks used storing radioactive liquid waste andesigned last_years liquid waste transferred single shell_tanks safer double shell_tanks substantial amount remains older single shell_tanks one containing estimated gallons radioactive example believed six tanks leaking two tanks leaking rate gallons per_year remaining four tanks leaking rate gallons per_year occupational health workers reported exposure harmful vapors working nuclear storage tanks solution found workers alone reported vapors became ill eyes burning skin contact increased heart rate difficulty breathing several workers long_term disabilities doctors checked workers cleared return work monitors worn tank workers found samples chemicals close occupational exposure august occupational safety health administration ordered facility contractor pay back wages firing safety concerns athe_site onovember washington attorney general bob ferguson said state planned sue doe contractor protect workers hazardous vapors hanford report doe savannah_river nationalaboratory initiated washington river protection solutions found doe methods study inadequate particularly thathey account short intense recommended air inside tanks determine chemical new practices prevent worker medical reflect vapors cleanup superfund image_hanford_site tank interiorjpg thumb right image surface waste found inside double shell tank athe hanford_site april june hanford_site divided four areas proposed inclusion national priorities list may washington department ecology united_states environmental_protection agency department energy entered tri party agreement provides legal framework environmental remediation hanford agencies world largest environmental cleanup many challenges face technical political regulatory cultural interests cleanup effort focused three outcomes columbia_river corridor uses converting central plateau long_term waste treatment storage preparing future cleanup effort managed department energy oversight two regulatory agencies citizen led hanford advisory board provides recommendations community stakeholders including local state governments regional environmental organizations business interests native_american tribes citing hanford scope schedule cost cost remaining hanford clean billion billion per_year next six years lower_cost approximately billion per_year workers site clean mitigate waste contaminated buildings contaminated soil originally scheduled complete within thirtyears cleanup less four areas formally listed sites october one removed list following cleanup file spent nuclear fuel thumb left spent nuclear fuel stored underwater hanford k east basin radioactive material ended withe reactor shutdown many dangerous wastes contained continued concerns contaminated groundwater headed toward columbia_river workers health safety significant challenge hanford high_level radioactive_waste stored underground tanks third tanks waste soil groundwater liquid waste transferred secure double tanks however liquid waste together salt cake remains single tanks doe lacks information double shell_tanks may susceptible without determining thextento factors contributed leak similar double shell_tanks doe cannot sure long double shell_tanks safely store waste waste originally scheduled removed nearby contain estimated contaminated groundwater result radioactive_waste traveling groundwater toward columbia_river waste expected reach river years cleanup proceed schedule site includes solid radioactive_waste image grand thumb right grand opening thenvironmental restoration disposal facility tri party agreement lower level hazardous wastes buried huge lined pits sealed monitored sophisticated instruments manyears disposal plutonium high_level wastes difficult problem continues subject intense debate example plutonium half life years decay ten half lives required sample considered cease radioactivity department energy awarded billion contracto bechtel san_francisco based construction engineering firm build radioactive_waste vitrification combine dangerous wastes glass stable construction_began plant originally scheduled operational vitrification completed nuclear waste bombs march p according study general accounting office number serious technical managerial problems estimated costs billion operations estimated decades operation may state federal officials began negotiations abouthe possibility extending legal cleanup waste vitrification exchange shifting focus cleanup urgent october early million hanford cleanup budget proposed washington_state officials expressed concern abouthe budget cuts well recent safety athe_site threatened file lawsuit alleging thathe department energy appeared step back april another meeting ofederal state officials resulted progress toward tentative agreement excavations sample plutonium uncovered inside safe waste trench dated abouthe making_ithe second oldest sample plutonium known exist analyses published concluded thathe sample originated oak_ridge one several sento hanford optimization tests plant hanford could produce plutonium documents refer sample belonging group disposed radiation leak chemical engineering news antique project era plutonium found glass hanford_site cleanup radioactive_waste hanford stored planned yucca waste project wasuspended washington_state sued joined south_carolina first suit dismissed july subsequent suit federal authorities ordered either plans yucca mountain storage site potential radioactive leak reported clean estimated cost billion billion hanford organizations hanford_site operations initially directed colonel franklin matthias us_army corps engineers postwar united_states atomic_energy_commission atomic_energy_commission took thenergy research_andevelopment administration hanford operations currently directed us_department energy operated government contract various private companies years table class wikitable sortable year begun month organization responsibility class unsortable remarks december us_army corps engineers lead us held role january december dupont de company dupont site activities initial hanford_site contractor september general site activities january united_states atomic_energy_commission atomic_energy_commission lead us replaced us_army corps engineers may vitro engineers hanford engineering services assumed ges new facility design role june jones construction hanford construction services assumed ges construction role january us testing environmental testing assumed ges environmental testing role january memorial institute pacific_northwest nationalaboratory pacific_northwest laboratory assumed laboratory renamed pacific_northwest nationalaboratory july computer sciences corporation services new scope august hanford occupational health foundation industrial medicine assumed industrial medicine role september douglas united nuclear single pass reactor operations fuel fabrication assumed part reactor operations january processing assumed chemical processing operations march federal support_services inc support_services assumed july douglas united nuclear n reactor operation assumed remainder reactor atlantic hanford company chemical processing replaced august hanford environmental health foundation industrial medicine name change february hanford company hanford engineering development laboratory spun offrom mission build fast flux test facility september support_services replaces april united nuclear industries inc production reactor operations name change douglas united nuclear january energy research_andevelopment administration lead us replaced aec managed site october boeing computer services computer services replaced october us_department energy doe lead us_government agency replaced presently hanford operations chemical processing support_services replaces june hanford company architect engineering services replaces vitro march engineering hanford architect engineering services replaces march construction consolidated contract includes former jones work june site management operations consolidated contract includes work october fluor corp fluor daniel hanford inc site management operations integrating contractor companies february fluor corp fluor hanford_site cleanup operations transition site cleanup fluor held various roles december bechtel national inc engineering construction commissioning waste treatment plant october hill plateau remediation company central plateau cleanup closure april washington closure hanford river corridor cleanup closure may mission support alliance site infrastructure services consolidated services contract october washington river protection solutions tank farm operations divisions site historical plutonium finishing plant made use weapons b plant plant plant processing separation extraction various chemicals isotopes health attempto keep workers thenvironment safe plant c plant recovered uranium world_war ii processes experimental animal farm aquatic biology laboratory technical physics radioactive sewer metal fuels manufacturing tank liquid nuclear waste metal recovery plant plant recover uranium tank farms uranium plant aka uranium oxide plant aka output plants liquid nitrate plant purex plant made uranium powder plutonium uranium extraction plant purex plant extracted useful material spent fuel waste also see purex article plutonium test reactor alternative fuel plutonium fuels pilot plant see historic photos image_hanford f reactor cooling cooling athe f reactor image_hanford tank underground tank farm site waste storage tanks image_hanford waste inside one waste storage tanks image_hanford purex inside purex facility image_hanford rattlesnake view central plateau rattlesnake mountain benton county washington rattlesnake mountain image richland washingtonjpg richland washington richland thearly days site image_hanford hanford workers lining image_hanford sheep testing jpg hanford scientists feeding radioactive food sheep image n hanford sheep testing sheep thyroid image_hanford cold_war era billboard image atomic frontier atomic frontier days parade richland washington richland image fast flux test facility see_also lists nuclear disasters radioactive incidents timeline nuclear_weapons development references_furthereading john_findlay bruce atomic frontier days hanford american west university washington press_pages explores history hanford tri cities richland washington externalinks_official hanford website department energy washington department ecology nuclear waste program state agency regulates hanford cleanup us environmental_protection agency federal agency regulates hanford cleanup category hanford_site_category geography benton county washington category columbia_river category environmental disasters united_states category geography washington_state category_history washington_state category manhattan_project category_buildings structures washington_state category_nuclear history united_states category_nuclear_weapons infrastructure united_states category radioactive_waste category tri cities washington category_united_states department energy facilities category closed military facilities united_states united_states category_buildings structures benton county washington category_tourist attractions benton county washington category contaminated areas category_establishments washington_state category_military superfund sites category superfund sites washington_state category_nuclear accidents incidents category_military research united_states category wave astronomy category_atomic_tourism"},{"title":"Hang gliding","description":"file d part deltaplanejpg thumb px hanglider just after launchangliding is an air sport orecreational activity in which a pilot flies a light non motorized foot launched heavier than aircraft called a hanglider most modern hangliders are made of an aluminium alloy or composite material composite frame covered with synthetic sailcloth to form a wing typically the pilot is in a harnessuspended from the airframe and controls the aircraft by shifting body weight in opposition to a control framearly hangliders had a low lifto drag ratio so pilots werestricted to gliding down small hills by the s this ratio significantly improved and since then pilots can lift soaring soar for hours gain thousands ofeet of altitude in thermal updrafts perform aerobatics and glide cross country for hundreds of kilometres the f d ration a ronautique internationale and national airspace governing organizations control some regulatory aspects of hangliding obtaining the safety benefits of being instructed is highly recommended history file lilienthal in flightjpg thumb otto lilienthal in flighthearliest forms of gliding had existed in china by thend of the sixth century ad the chinese had managed to build kites large and aerodynamic enough to sustain the weight of an average sized person it was only a matter of time before someone decided to simply remove the kite strings and see what happened most early glider designs did not ensure safe flighthe problem was that early flight pioneers did not sufficiently understand the underlying principles that made a bird s wing work starting in the s technical and scientific advancements were made that led to the firstruly practical glider aircraft glider s otto lilienthal built controllable gliders in the s with whiche could ridge lift ridge soar his rigorously documented work influenced later designers making lilienthal one of the most influential early aviation pioneers his aircraft was controlled by weight shift and isimilar to a modern hanglider file lavezzari hangliderjpg thumb left jan lavezzari with a double sail glider hangliding saw a stiffened flexible wing hanglider in when jan lavezzari flew a double lateen sail hanglider off berck beach france in breslau the triangle control frame withanglider pilot hung behind the triangle in a hanglider was evident in a gliding club s activity the biplane hanglider was very widely publicized in public magazines with plans for building such biplane hangliders were constructed and flown in several nationsince octave chanute and his tailed biplane hangliders were demonstrated in april a how to article by carl s bates proved to be a seminal hanglider article that seemingly affected builders even of contemporary times aseveral builders would have their first hanglider made by following the plan in his article volmer jensen with a biplane hanglider in called vj allowed safe three axis control of a foot launched hanglider file paresev b in tow flight gpn jpg thumb nasa s paresev glider in flight with tow cable onovember francis rogallo and gertrude rogallo applied for a kite patent for a fully flexible kited wing with approved claims for itstiffenings and gliding uses the flexible wing orogallo wing which in the american space agency nasa began testing in various flexible and semi rigid configurations in order to use it as a recovery system for the gemini space capsule s the varioustiffening formats and the wing simplicity of design and ease of construction along with its capability of slow flight and its gentle landing characteristics did not go unnoticed by hanglider enthusiasts in barry hill palmer adapted the flexible wing concepto make foot launched hangliders with four different control arrangements in mike burns adapted the flexible wing to build a towable kite hanglider he called skiplane in john w dickenson adapted the flexible wing airfoil concepto make another water skite glider for this the f d ration a ronautique internationale vestedickenson withe hangliding diploma for the invention of the modern hanglider since then the rogallo wing has been the most used airfoil of hangliders components file hangliding my firsthermalwebm thumb hangliding hanglider sailclothere are basically two types of sail materials used in hanglider sails woven polyester fabrics and composite laminated fabrics made of some combination of polyester film and polyester fibers woven polyester sailcloth is a very tight weave of small diameter polyester fibers that has been stabilized by the hot press impregnation of a polyesteresin the resin impregnation is required to provide resistance to distortion and stretch this resistance is important in maintaining the aerodynamic shape of the sail woven polyester provides the best combination of light weight andurability in a sail withe best overall handling qualities laminated sail materials using polyester film achieve superior performance by using a lower stretch material that is better at maintaining sail shape but istill relatively light in weighthe disadvantages of polyester film fabrics is thathe reduced elasticity under load generally results in stiffer and less responsive handling and polyester laminated fabrics are generally not as durable or long lasting as the woven fabrics triangle control frame in most hangliders the control is and has been achieved using a horizontal bar held by the pilot also known as triangle control frame tcf control bar or base bar this bar is usually pulled to allow for greater speed either end of the control bar is attached to an upright where both extend and are connected to the main body of the glider this creates the shape of a triangle or a frame in many of these configurations additional wheels or other equipment can be suspended from the bottom bar orod ends imageshowing a triangle control frame on otto lilienthal s hanglider prove thathe technology of such frames has existed since thearly design of gliders but he did not mention it in his patents a tcf shows also in octave chanute s designs it was a major part of the now common design of hangliders by george a spratt from the most simple a frame that is cable stayed was demonstrated in a breslau gliding club hangliding meet in a battened wing foot launchable hanglider in the year by w simon hanglider historian stephanitschas collected instances alsof the u control frame used in the first decade of the s the u is variant of the a frame training and safety image kittyhawkjpg thumb learning to hanglide due to the poor safety record of early hangliding pioneers the sport has traditionally been considered unsafe advances in pilotraining and glider construction have led to a much improved safety record modern hangliders are very sturdy when constructed to hanglider manufacturers association britishangliding and paragliding association bhpa deutscher h ngegleiterverband or other certified standards using modern materials although lightweighthey can beasily damaged either through misuse or by continued operation in unsafe wind and weather conditions all modern gliders have built in dive recovery mechanismsuch as luff lines in kingposted gliders or sprogs in topless gliders pilots fly in harnesses that supportheir bodieseveral differentypes of harnesses exist pod harnesses are put on like a jacket and the leg portion is behind the pilot during launch once in the air the feet are tucked into the bottom of the harness they are zipped up in the air with a rope and unzipped before landing with a separate rope a cocoon harness islipped over thead and lies in front of the legs during launch after getting into the air the feet are tucked into it and the back is left open a knee hanger harness is also slipped over thead buthe knee part is wrapped around the knees before launch and just pick up the pilots leg automatically after launch a supine or suprone harness is a seated harness the shoulder straps are put on before launch and after take off the pilot slides back into the seat and flies in a seated position pilots carry a parachutenclosed in the harness in case of serious problems the parachute is manually deployed and carries both pilot and glider down to earth pilots also wear helmets and generally carry other safety itemsuch as knives for cutting their parachute bridle after impact or cutting their harness lines and straps in case of a tree or water landing light ropes for lowering from trees to haul up tools or climbing ropes radios for communication with other pilots or ground crew and first aid equipmenthe accident rate from hanglider flying has been dramatically decreased by pilotraining early hanglider pilots learned their sporthrough trial and error and gliders were sometimes home builtraining programs have been developed for today s pilot with emphasis on flight within safe limits as well as the discipline to cease flying when weather conditions are unfavorable for examplexcess wind orisk cloud suck in the uk there is one death per flights a risk comparable to running a marathon or playing football for a year most pilots learn at recognised courses which lead to the internationally recognised international pilot proficiency information card issued by the f d ration a ronautique internationale fai launch image launch of a hangliderogg thumb videof a foot launching from a hillaunch techniques include foot launching from a hill tow launching from a ground based tow system aerotowing behind a powered aircraft powered hanglider powered harnesses and being towed up by a boat modern winch tows typically utilize hydraulic systems designed to regulate line tension this reducescenarios for lock out astrong winds result in additionalength of rope spooling out rather than directension the tow line other morexotic launch techniques have also been used successfully such as hot air balloon drops from very high altitude when weather conditions are unsuitable to sustain a soaring flighthis results in a top to bottom flight and is referred to as a sled run in denis cummings re introduced a safe tow system that was designed tow through the centre of mass and had a gauge that displayed the towing tension it also integrated a weak link that broke when the safe tow tension was exceeded after initial testing in the hunter valley denis cummings pilot john clark redtruck driver and bob silver officianado began the flatlands hangliding competition at parkes nsw the competition quickly grew from pilots the first year to hosting a world championship with pilots towing from several wheat paddocks in westernsw in denis and redtruck took a group of international pilots to alice springs to take advantage of the massive thermals using the new systemany world records were set withe growing use of the system other launch methods were incorporated static winch and towing behind a powered hanglider or ultralight soaring flight and cross country flying image goldenmedowsjpg thumb good gliding weather well formed cumulus cloud s with darker basesuggest active thermals and light winds a glider in flight is continuously descending to achieve an extended flighthe pilot must seek air currents rising faster than the sink rate of the glider selecting the sources of rising air currents is the skill that has to be mastered if the pilot wants to achieve flying long distances known as cross country flying cross country xc rising air masses derive from the following sources thermals the most commonly used source of lift is created by the sun s energy heating the ground which in turn heats the air above ithis warm airises in columns known as thermalsoaring pilots quickly become aware of land features which can generate thermals and their trigger points downwind because thermals have a surface tension withe ground and roll until hitting a trigger point when thermalifts the first indicator are the swooping birds feeding on the insects being carried aloft or dust devil s or a change in windirection as the air is pulled in below thermal as thermal climbs bigger soaring birds indicate thermal thermal rises until it either forms into a cumulus cloud or hits an inversion layer which is where the surrounding air is becoming warmer witheight and stops thermal developing into a cloud also nearly every glider contains an instrument known as a variometer a very sensitivertical speed indicator which shows visually and often audibly the presence of lift and sink having located a thermal a glider pilot will circle within the area of rising air to gain height in the case of a cloud streethermals can line up withe wind creating rows of thermals and sinking air a pilot can use a cloud streeto fly long straight line distances by remaining in the row of rising airidge lift ridge lift occurs when the wind encounters a mountain cliff or hill the air is pushed up the windward face of the mountain creating lifthe area of lift extending from the ridge is called the lift band providing the air is rising faster than the glidersink rate gliders can soar and climb in the rising air by flying within the lift band at right angle to the ridge soaring is also known aslope soaring mountain waves the third main type of lift used by glider pilots is the lee waves that occur near mountains the obstruction to the airflow can generate standing wave s with alternating areas of lift and sink the top of each wave peak is often marked by lenticular cloud formations convergence another form of lift results from the convergence zone convergence of air masses as with a sea breeze sea breeze front morexotic forms of lift are the polar vortices which the perlan project hopes to use to soar to great altitudes a rare phenomenon known as morninglory cloud morninglory has also been used by glider pilots in australia performance file hanggliding jpg thumb hanglider launching fromountamalpais with each generation of materials and withe improvements in aerodynamics the performance of hangliders has increased one measure of performance is the gliding flight glide ratio glide ratio for example a ratiof means that in smooth air a glider can travel forward metres while only losing metre of altitude some performance figures as of topless gliders no kingpost aviation kingpost gliding flight glide ratio glide ratio speed range best glide at rigid wings gliding flight glide ratio glide ratio speed range best glide at ballasthextra weight provided by ballast is advantageous if the lift is likely to be strong althougheavier gliders have a slight disadvantage when climbing in rising air they achieve a higher speed at any given glide angle this an advantage in strong conditions when the gliderspend only little time climbing in thermalstability and equilibrium image hyener pa jpg thumb high performance flexible wing hanglider because hangliders are most often used forecreational flying a premium is placed on gentle behaviour especially athe stall flight stall and natural flight dynamics aircraft pitch stability the wing loading must be very low in order to allow the piloto run fast enough to get above stall flight stall speed stall speed unlike a traditional aircraft with an extended fuselage and empennage for maintaining stability hangliders rely on the natural stability of their flexible wings to return to mechanical equilibrium in flight dynamics aircraft yaw and pitch flight dynamics aircraft roll stability is generally seto be near neutral in calm air a properly designed wing will maintain balanced trimmed flight with little pilot inputhe flex wing pilot isuspended beneathe wing by a strap attached to his harness the pilot lies prone sometimesupine within a large triangular metal control frame controlled flight is achieved by the pilot pushing and pulling on this control frame thushifting his weight fore or aft and right or left in coordinated maneuvers roll most flexible wings are set up with near neutral roll due to sideslip dihedral aircraft anhedral effect in the roll axis the pilot shifts his body mass using the wing control bar applying a rolling moment directly to the wing the flexible wing is builto flex differentially across the span in response to the pilot applied roll moment for example if the pilot shifts his weighto the righthe right wing trailing edge flexes up more than the left allowing the right wing to drop and slow down yaw the yaw angle yaw axis stabilized through the sweep back of the wings the swept planform when yawed out of the relative wind creates more lift force lift on the advancing wing and also more drag stabilizing the wing in yaw if one wing advances ahead of the other it presents more area to the wind and causes more drag on that side this causes the advancing wing to go slower and to fall back the wing is at equilibrium when the aircraft is traveling straight and both wings presenthe same amount of area to the wind pitch the pitch control response is direct and very efficient it is partially stabilized by the swept wing sweep of the wings the wing centre of gravity is close to the hang point and athe trim speed the wing will fly hands off and return to trim after being disturbed the weight shift control system only works when the wing is positively loaded right side upositive pitching devicesuch as reflex lines or washout rods aremployed to maintain a minimum safe amount of washout when the wing is unloaded or evenegatively loaded upside down flying faster than trim speed is accomplished by moving the pilot s weight forward in the control frame flying slower by shifting the pilot s weight aft pushing out furthermore the facthathe wing is designed to bend and flex provides favourable dynamics analogous to a spring suspension this provides a gentler flying experience than a similarly sized rigid winged hanglider instruments to maximize a pilot s understanding of how the hanglider is flying most pilots carry instruments the most basic being a variometer and altimeter often combined some more advanced pilots also carry airspeed indicators and radios when flying in competition or cross country pilots often also carry maps and or gps units hangliders do not have instrument panels asuch so all the instruments are mounted to the control frame of the glider or occasionally strapped to the pilot s forearm variometer image gleitschirmvariojpg righthumb upright vario altimeter c gliding pilots are able to sense the acceleration forces when they first hit a thermal but have difficulty gauging constant motion thus it is difficulto detecthe difference between constantly rising air and constantly sinking air a variometer is a very sensitivertical speed indicator the variometer indicates climb rate or sink rate with audio signals beeps and or a visual display these units are generally electronic vary in sophistication and often include an altimeter and an airspeed indicator more advanced units often incorporate a barograph forecording flight datand or a built in gps the main purpose of a variometer is in helping a pilot find and stay in the core of a thermal to maximize height gain and conversely indicating when he or she is in sinking air and needs to find rising air variometers are sometimes capable of electronicalculations to indicate the optimal speed to fly for given conditions the paul maccready theory answers the question how fast a pilot should cruise between thermals given the average lifthe pilot expects in the nexthermal climb and the amount of lift or sink hencounters in cruise mode somelectronic variometers make the calculations automatically allowing for factorsuch as the glider s theoretical performance glide ratio altitude hook in weight and windirection radio image aircraftradio jpg lefthumb upright aircraft radio pilots use way radio for training purposes for communicating with other pilots in the air and witheir ground crewhen traveling on cross country flights one type of radios used are ptt push to talk handheld transceiver s operating in vhfm usually a microphone is incorporated in thelmet and the ptt switch is either fixed to the outside of thelmet or strapped to a finger operating a vhf band radio without an appropriate license is illegal in most countries that have regulated airwaves including united states canada brazil etc so additional informations must be obtained withe national or local hangliding association as aircraft operating in airspace occupied by other aircraft hanglider pilots also use the appropriate type of radio ie the aircraftransceiver into aero mobile service vhf band it can of course be fitted with a ptt switch to a finger and speakers inside thelmethe use of aircraftransceivers isubjecto regulationspecific to the use in the air such as frequencies restrictions but haseveral advantages over fm ie frequency modulated radios used in other services first is the great range it has without repeaters because of its amplitude modulation ie am second is the ability to contact inform and be informedirectly by other aircraft pilots of their intentions thereby improving collision avoidance and increasing safety third is to allow greater liberty regarding distance flights in regulated airspaces in which the aircraft radio is normally a legal requirement fourth is the universal emergency frequency monitored by all other users and satellites and used in case of emergency or impending emergency gps global positioning system gps global positioning system can be used to mark the flight path as the pilot flies as it can be interesting to view a gps track of a flight when back on the ground to analyze flying technique and to assist flight performance in competitions and cross country flying wherestricted airspace needs to be considered records are sanctioned by the f d ration a ronautique internationale fai the world record for straight distance is held by dustin b martin with a distance of in originating from zapata texas judy leden gbr holds the altitude record for a balloon launched hanglider m ft at wadi rum jordan on october leden also holds the gain of height record m ft set in the altitude records for balloon launched hangliders class wikitable altitude location pilot date reference bgcolor e e align center wadi rum jordan judy leden october align center edmonton alberta canada john bird august edmonton journal august kerry bissell an official observer of the soaring association of canada it s feet if the reading is taken athe top of the trace mark the record is meters bgcolor e e align center california city california usa stephan dunoyer september hangliding magazine december p align center mojave desert california usa bob mccaffrey november bgcolor e e align center san jose california usa dennis kulberg december sarasota journal december p d competitionstarted with flying as long as possible and spot landings with increasing performance cross country flying replaced them usually two to four waypoints have to be passed with a landing at a goal in the late s low power global positioning system gps units were introduced and have completely replaced photographs of the goal every two years there is a world championship the rigid and women s world championship in was hosted by quest air in florida big spring texas big spring texas hosted the world championship hangliding is alsone of the competition categories in world air games organized by f d ration a ronautique internationale world air sports federation fai which maintains a chronology of the fai world hangliding championships classes image hg rheinebene aug jpg thumb right modern flexible wing hanglider for competitive purposes there are three classes of hanglider class the flexible wing hanglider having flight controlled by a wing whose shape changes by virtue of the shifted weight of the pilothis not a paraglider class the rigid wing hanglider having flight controlled by spoiler aeronauticspoiler s typically on top of the wing in both flexible and rigid wings the pilot hangs below the wing without any additional aircraft fairing class designated by the f d ration a ronautique internationale fai asub class o where the pilot is integrated into the wing by means of a fairing these offer the best performance and are the most expensive in addition to typicalaunch configurations a hanglider may be so constructed for alternative launching modes other than being foot launched one practical avenue for this for people who physically cannot foot launch aerobatics hangliders are not certified for aerobatic flight pilots perform aerobatics atheir own risk there are three basic maneuvers in a hanglider not counting a loop which is actually a climbover withe samentry and exit heading the following descriptions arexcerpts from a nationally recognized rules book official maneuvers a figure with a bank angle of more than is a maneuver loop a maneuver that starts in a wings level dive climbs without any rolling to the apex where the glider is upside down wings level heading back where it came from and then returning to the start altitude and heading again without rolling having completed an approximately circular path in the vertical plane spin a spin iscored from the moment one wing stalls and the gliderotates noticeably into the spin thentry heading is noted athis pointhe glider must remain the spin for at least of a revolution to score any versatility spin points rollover a maneuver where the apex heading is less than left oright of thentry heading climb over a maneuver where the apex heading is greater than left oright of thentry heading comparison of gliders hangliders and paragliders there can be confusion between gliders hangliders and paragliding paragliders and hangliders are both foot launched glider aircraft and in both cases the pilot isuspended hangs below the lift surface but hanglider is the defaulterm for those where the airframe contains rigid structures the primary structure of paragliders isupple consisting mainly of woven material see also glider disambiguation glider human powered aircraft kite types microlift glider nanolight powered paraglidereferences notes bibliography category hangliding category gliding category aircraft configurations category air sports category individual sports category outdoorecreation category unpowered flight category adventure travel category articles containing video clips","main_words":["file","part","thumb","px","hanglider","air","sport","activity","pilot","flies","light","non","motorized","foot_launched","heavier","aircraft","called","hanglider","modern","hangliders","made","aluminium","alloy","composite","material","composite","frame","covered","synthetic","form","wing","typically","pilot","airframe","controls","aircraft","shifting","body","weight","opposition","control","hangliders","low","drag","ratio","pilots","gliding","small","hills","ratio","significantly","improved","since","pilots","lift","soaring","soar","hours","gain","thousands","ofeet","altitude","thermal","perform","aerobatics","glide","cross_country","hundreds","kilometres","f","ration","ronautique","internationale","governing","organizations","control","regulatory","aspects","hangliding","obtaining","safety","benefits","instructed","highly","recommended","history_file","lilienthal","thumb","otto","lilienthal","forms","gliding","existed","china","thend","sixth","century","chinese","managed","build","large","aerodynamic","enough","sustain","weight","average","sized","person","matter","time","someone","decided","simply","remove","kite","see","happened","early","glider","designs","ensure","safe","flighthe","problem","early","flight","pioneers","sufficiently","understand","underlying","principles","made","bird","wing","work","starting","technical","scientific","made","led","practical","glider","aircraft","glider","otto","lilienthal","built","gliders","whiche","could","ridge","lift","ridge","soar","documented","work","influenced","later","designers","making","lilienthal","one","influential","early","aviation","pioneers","aircraft","controlled","weight","shift","isimilar","modern","hanglider","file","thumb","left","jan","double","sail","glider","hangliding","saw","flexible_wing","hanglider","jan","flew","double","sail","hanglider","beach","france","triangle","control","frame","pilot","hung","behind","triangle","hanglider","evident","gliding","club","activity","biplane","hanglider","widely","publicized","public","magazines","plans","building","biplane","hangliders","constructed","flown","several","octave","biplane","hangliders","demonstrated","april","article","carl","bates","proved","hanglider","article","seemingly","affected","builders","even","contemporary","times","aseveral","builders","would","first","hanglider","made","following","plan","article","jensen","biplane","hanglider","called","allowed","safe","three","axis","control","foot_launched","hanglider","file","b","tow","flight","jpg","thumb","nasa","glider","flight","tow","cable","onovember","francis","applied","kite","patent","fully","flexible_wing","approved","claims","gliding","uses","flexible_wing","wing","american","space_agency","nasa","began","testing","various","flexible","semi","rigid","configurations","order","use","recovery","system","gemini","space_capsule","formats","wing","simplicity","design","ease","construction","along","capability","slow","flight","gentle","landing","characteristics","go","hanglider","enthusiasts","barry","hill","palmer","adapted","flexible_wing","concepto","make","foot_launched","hangliders","four","different","control","arrangements","mike","burns","adapted","flexible_wing","build","kite","hanglider","called","john","w","adapted","flexible_wing","airfoil","concepto","make","another","water","glider","f","ration","ronautique","internationale","withe","hangliding","diploma","invention","modern","hanglider","since","wing","used","airfoil","hangliders","components","file","hangliding","thumb","hangliding","hanglider","basically","two","types","sail","materials","used","hanglider","woven","polyester","fabrics","composite","laminated","fabrics","made","combination","polyester","film","polyester","woven","polyester","tight","small","diameter","polyester","stabilized","hot","press","required","provide","resistance","stretch","resistance","important","maintaining","aerodynamic","shape","sail","woven","polyester","provides","best","combination","light","weight","sail","withe","best","overall","handling","qualities","laminated","sail","materials","using","polyester","film","achieve","superior","performance","using","lower","stretch","material","better","maintaining","sail","shape","istill","relatively","light","disadvantages","polyester","film","fabrics","thathe","reduced","load","generally","results","less","handling","polyester","laminated","fabrics","generally","durable","long","lasting","woven","fabrics","triangle","control","frame","hangliders","control","achieved","using","horizontal","bar","held","pilot","also_known","triangle","control","frame","control","bar","base","bar","bar","usually","pulled","allow","greater","speed","either","end","control","bar","attached","upright","extend","connected","main","body","glider","creates","shape","triangle","frame","many","configurations","additional","wheels","equipment","suspended","bottom","bar","ends","triangle","control","frame","otto","lilienthal","hanglider","prove","thathe","technology","frames","existed","since_thearly","design","gliders","mention","shows","also","octave","designs","major","part","common","design","hangliders","george","simple","frame","cable","stayed","demonstrated","gliding","club","hangliding","meet","wing","foot","hanglider","year","w","simon","hanglider","historian","collected","instances","control","frame","used","first_decade","variant","frame","training","safety","image","thumb","learning","due","poor","safety","record","early","hangliding","pioneers","sport","traditionally","considered","unsafe","advances","pilotraining","glider","construction","led","much","improved","safety","record","modern","hangliders","constructed","hanglider","manufacturers","association","paragliding","association","h","certified","standards","using","modern","materials","although","beasily","damaged","either","continued","operation","unsafe","wind","weather","conditions","modern","gliders","built","dive","recovery","lines","gliders","topless","gliders","pilots","fly","harnesses","supportheir","differentypes","harnesses","exist","pod","harnesses","put","like","jacket","leg","portion","behind","pilot","launch","air","feet","tucked","bottom","harness","air","rope","landing","separate","rope","cocoon","harness","thead","lies","front","legs","launch","getting","air","feet","tucked","back","left","open","knee","harness","also","thead","buthe","knee","part","wrapped","around","knees","launch","pick","pilots","leg","automatically","launch","harness","seated","harness","shoulder","put","launch","take","pilot","slides","back","seat","flies","seated","position","pilots","carry","harness","case","serious","problems","parachute","manually","deployed","carries","pilot","glider","earth","pilots","also","wear","helmets","generally","carry","safety","itemsuch","knives","cutting","parachute","impact","cutting","harness","lines","case","tree","water","landing","light","ropes","lowering","trees","tools","climbing","ropes","radios","communication","pilots","ground","crew","first_aid","accident","rate","hanglider","flying","dramatically","decreased","pilotraining","early","hanglider","pilots","learned","trial","error","gliders","sometimes","home","programs","developed","today","pilot","emphasis","flight","within","safe","limits","well","discipline","cease","flying","weather","conditions","wind","cloud","uk","one","death","per","flights","risk","comparable","running","marathon","playing","football","year","pilots","learn","recognised","courses","lead","internationally","recognised","international","pilot","proficiency","information","card","issued","f","ration","ronautique","internationale","fai","launch","image","launch","thumb","videof","foot","launching","techniques","include","foot","launching","hill","tow","launching","ground","based","tow","system","behind","powered","hanglider","powered","harnesses","towed","boat","modern","winch","typically","utilize","hydraulic","systems","designed","regulate","line","tension","lock","winds","result","rope","rather","tow","line","launch","techniques","also_used","successfully","hot_air","balloon","drops","high_altitude","weather","conditions","unsuitable","sustain","soaring","results","top","bottom","flight","referred","run","denis","introduced","safe","tow","system","designed","tow","centre","mass","gauge","displayed","towing","tension","also","integrated","weak","link","broke","safe","tow","tension","exceeded","initial","testing","hunter","valley","denis","pilot","driver","bob","silver","began","hangliding","competition","parkes","nsw","competition","quickly","grew","pilots","first_year","hosting","world_championship","pilots","towing","several","wheat","denis","took","group","international","pilots","alice","springs","take_advantage","massive","thermals","using","new","world_records","set","withe","growing","use","system","launch","methods","incorporated","static","winch","towing","behind","powered","hanglider","ultralight","soaring","flight","cross_country","flying","image","thumb","good","gliding","weather","well","formed","cloud","darker","active","thermals","light","winds","glider","flight","continuously","descending","achieve","extended","flighthe","pilot","must","seek","air","currents","rising","faster","sink","rate","glider","selecting","sources","rising","air","currents","skill","pilot","wants","achieve","flying","long_distances","known","cross_country","flying","cross_country","rising","air","masses","derive","following","sources","thermals","commonly_used","source","lift","created","sun","energy","heating","ground","turn","heats","air","warm","columns","known","pilots","quickly","become","aware","land","features","generate","thermals","trigger","points","thermals","surface","tension","withe","ground","roll","trigger","point","first","indicator","birds","feeding","insects","carried","dust","devil","change","air","pulled","thermal","thermal","climbs","bigger","soaring","birds","indicate","thermal","thermal","either","forms","cloud","hits","layer","surrounding","air","becoming","warmer","stops","thermal","developing","cloud","also","nearly","every","glider","contains","instrument","known","variometer","speed","indicator","shows","visually","often","presence","lift","sink","located","thermal","glider","pilot","circle","within","area","rising","air","gain","height","case","cloud","line","withe","wind","creating","rows","thermals","sinking","air","pilot","use","cloud","streeto","fly","long","straight","line","distances","remaining","row","rising","lift","ridge","lift","occurs","wind","encounters","mountain","cliff","hill","air","pushed","face","mountain","creating","lifthe","area","lift","extending","ridge","called","lift","band","providing","air","rising","faster","rate","gliders","soar","climb","rising","air","flying","within","lift","band","right","angle","ridge","soaring","also_known","soaring","mountain","waves","third","main","type","lift","used","glider","pilots","lee","waves","occur","near","mountains","generate","standing","wave","alternating","areas","lift","sink","top","wave","peak","often","marked","cloud","formations","convergence","another","form","lift","results","convergence","zone","convergence","air","masses","sea","breeze","sea","breeze","front","forms","lift","polar","project","hopes","use","soar","great","altitudes","rare","phenomenon","known","morninglory","cloud","morninglory","also_used","glider","pilots","australia","performance","file_jpg","thumb","hanglider","launching","generation","materials","withe","improvements","performance","hangliders","increased","one","measure","performance","gliding","flight","glide_ratio","glide_ratio","example","ratiof","means","smooth","air","glider","travel","forward","metres","losing","altitude","performance","figures","topless","gliders","aviation","gliding","flight","glide_ratio","glide_ratio","speed","range","best","glide","rigid","wings","gliding","flight","glide_ratio","glide_ratio","speed","range","best","glide","weight","provided","lift","likely","strong","gliders","slight","disadvantage","climbing","rising","air","achieve","higher","speed","given","glide","angle","advantage","strong","conditions","little","time","climbing","image","jpg","thumb","high","performance","flexible_wing","hanglider","hangliders","often_used","forecreational","flying","premium","placed","gentle","behaviour","especially","athe","stall","flight","stall","natural","flight","dynamics","aircraft","pitch","stability","wing","loading","must","low","order","allow","piloto","run","fast","enough","get","stall","flight","stall_speed","stall_speed","unlike","traditional","aircraft","extended","fuselage","maintaining","stability","hangliders","rely","natural","stability","return","mechanical","flight","dynamics","aircraft","yaw","pitch","flight","dynamics","aircraft","roll","stability","generally","seto","near","neutral","air","properly","designed","wing","maintain","balanced","flight","little","pilot","wing","pilot","beneathe","wing","attached","harness","pilot","lies","prone","within","large","triangular","metal","control","frame","controlled","flight","achieved","pilot","pushing","pulling","control","frame","weight","fore","aft","right","left","coordinated","maneuvers","roll","set","near","neutral","roll","due","aircraft","effect","roll","axis","pilot","shifts","body","mass","using","wing","control","bar","applying","rolling","moment","directly","wing","flexible_wing","builto","across","span","response","pilot","applied","roll","moment","example","pilot","shifts","righthe","right","wing","edge","left","allowing","right","wing","drop","slow","yaw","yaw","angle","yaw","axis","stabilized","back","wings","swept","relative","wind","creates","lift","force","lift","advancing","wing","also","drag","stabilizing","wing","yaw","one","wing","advances","ahead","presents","area","wind","causes","drag","side","causes","advancing","wing","go","slower","fall","back","wing","aircraft","traveling","straight","wings","presenthe","amount","area","wind","pitch","pitch","control","response","direct","efficient","partially","stabilized","swept","wing","wings","wing","centre","gravity","close","hang","point","athe","trim","speed","wing","fly","hands","return","trim","disturbed","weight","shift","control","system","works","wing","positively","loaded","right","side","lines","rods","aremployed","maintain","minimum","safe","amount","wing","loaded","upside","flying","faster","trim","speed","accomplished","moving","pilot","weight","forward","control","frame","flying","slower","shifting","pilot","weight","aft","pushing","furthermore","facthathe","wing","designed","bend","provides","dynamics","analogous","spring","suspension","provides","flying","experience","similarly","sized","rigid","hanglider","instruments","maximize","pilot","understanding","hanglider","flying","pilots","carry","instruments","basic","variometer","altimeter","often","combined","advanced","pilots","also","carry","indicators","radios","flying","competition","cross_country","pilots","often","also","carry","maps","gps","units","hangliders","instrument","panels","asuch","instruments","mounted","control","frame","glider","occasionally","pilot","variometer","image","righthumb","upright","altimeter","c","gliding","pilots","able","sense","acceleration","forces","first","hit","thermal","difficulty","constant","motion","thus","difficulto","difference","constantly","rising","air","constantly","sinking","air","variometer","speed","indicator","variometer","indicates","climb","rate","sink","rate","audio","signals","visual","display","units","generally","electronic","vary","sophistication","often","include","altimeter","indicator","advanced","units","often","incorporate","flight","datand","built","gps","main","purpose","variometer","helping","pilot","find","stay","core","thermal","maximize","height","gain","conversely","indicating","sinking","air","needs","find","rising","air","sometimes","capable","indicate","optimal","speed","fly","given","conditions","paul","theory","answers","question","fast","pilot","cruise","thermals","given","average","lifthe","pilot","expects","climb","amount","lift","sink","cruise","mode","make","calculations","automatically","allowing","factorsuch","glider","theoretical","performance","glide_ratio","altitude","hook","weight","radio","image","jpg","lefthumb","upright","aircraft","radio","pilots","use","way","radio","training","purposes","communicating","pilots","air","witheir","ground","traveling","cross_country","flights","one","type","radios","used","ptt","push","talk","operating","usually","microphone","incorporated","ptt","switch","either","fixed","outside","finger","operating","band","radio","without","appropriate","license","illegal","countries","regulated","including","united_states","canada","brazil","etc","additional","must","obtained","withe","national","local","hangliding","association","aircraft","operating","airspace","occupied","aircraft","hanglider","pilots","also_use","appropriate","type","radio","aero","mobile","service","band","course","fitted","ptt","switch","finger","speakers","inside","use","isubjecto","use","air","frequencies","restrictions","haseveral","advantages","frequency","radios","used","services","first","great","range","without","second","ability","contact","inform","aircraft","pilots","intentions","thereby","improving","avoidance","increasing","safety","third","allow","greater","liberty","regarding","distance","flights","regulated","aircraft","radio","normally","legal","requirement","fourth","universal","emergency","frequency","monitored","users","satellites","used","case","emergency","emergency","gps","global","positioning","system","gps","global","positioning","system","used","mark","flight","path","pilot","flies","interesting","view","gps","track","flight","back","ground","analyze","flying","technique","assist","flight","performance","competitions","cross_country","flying","airspace","needs","considered","records","sanctioned","f","ration","ronautique","internationale","fai","straight","distance","held","b","martin","distance","originating","texas","judy","holds","altitude","record","balloon","launched","hanglider","rum","jordan","october","also","holds","gain","height","record","set","altitude","records","balloon","launched","hangliders","class","wikitable","altitude","location","pilot","date","reference","bgcolor","e","e","align","center","rum","jordan","judy","october","align","center","edmonton_alberta_canada","john","bird","august","edmonton","journal","august","kerry","official","observer","soaring","association","canada","feet","reading","taken","athe_top","trace","mark","record","meters","bgcolor","e","e","align","center","california","city","california","usa","september","hangliding","magazine","december","p","align","center","mojave","desert","california","usa","bob","november","bgcolor","e","e","align","center","san_jose_california","usa","dennis","december","journal","december","p","flying","long","possible","spot","landings","increasing","performance","cross_country","flying","replaced","usually","two","four","passed","landing","goal","late","low","power","global","positioning","system","gps","units","introduced","completely","replaced","photographs","goal","every","two_years","world_championship","rigid","women","world_championship","hosted","quest","air","florida","big","spring","texas","big","spring","texas","hosted","world_championship","hangliding","alsone","competition","categories","world","air","games","organized","f","ration","ronautique","internationale","world","air","sports","federation","fai","maintains","fai","world","hangliding","championships","classes","image","aug","jpg","thumb","right","modern","flexible_wing","hanglider","competitive","purposes","three","classes","hanglider","class","flexible_wing","hanglider","flight","controlled","wing","whose","shape","changes","virtue","shifted","weight","paraglider","class","rigid","wing","hanglider","flight","controlled","typically","top","wing","flexible","rigid","wings","pilot","hangs","wing","without","additional","aircraft","fairing","class","designated","f","ration","ronautique","internationale","fai","class","pilot","integrated","wing","means","fairing","offer","best","performance","expensive","addition","configurations","hanglider","may","constructed","alternative","launching","modes","foot_launched","one","practical","avenue","people","physically","cannot","foot","launch","aerobatics","hangliders","certified","flight","pilots","perform","aerobatics","atheir","risk","three","basic","maneuvers","hanglider","counting","loop","actually","withe","exit","heading","following","descriptions","nationally","recognized","rules","book","official","maneuvers","figure","bank","angle","maneuver","loop","maneuver","starts","wings","level","dive","climbs","without","rolling","apex","glider","upside","wings","level","heading","back","came","returning","start","altitude","heading","without","rolling","completed","approximately","circular","path","vertical","plane","spin","spin","moment","one","wing","stalls","noticeably","spin","thentry","heading","noted","athis","pointhe","glider","must","remain","spin","least","revolution","score","spin","points","maneuver","apex","heading","less","left","thentry","heading","climb","maneuver","apex","heading","greater","left","thentry","heading","comparison","gliders","hangliders","paragliders","confusion","gliders","hangliders","paragliding","paragliders","hangliders","foot_launched","glider","aircraft","cases","pilot","hangs","lift","surface","hanglider","airframe","contains","rigid","structures","primary","structure","paragliders","consisting","mainly","woven","material","see_also","glider","disambiguation","glider","human","kite","types","glider","powered","notes","bibliography","category","hangliding","category","gliding","configurations","category_air","sports_category","individual","sports_category","outdoorecreation","category","unpowered","flight","category_adventure_travel_category"],"clean_bigrams":[["thumb","px"],["px","hanglider"],["air","sport"],["pilot","flies"],["light","non"],["non","motorized"],["motorized","foot"],["foot","launched"],["launched","heavier"],["aircraft","called"],["modern","hangliders"],["aluminium","alloy"],["composite","material"],["material","composite"],["composite","frame"],["frame","covered"],["wing","typically"],["shifting","body"],["body","weight"],["drag","ratio"],["small","hills"],["ratio","significantly"],["significantly","improved"],["lift","soaring"],["soaring","soar"],["hours","gain"],["gain","thousands"],["thousands","ofeet"],["perform","aerobatics"],["glide","cross"],["cross","country"],["ronautique","internationale"],["national","airspace"],["airspace","governing"],["governing","organizations"],["organizations","control"],["regulatory","aspects"],["hangliding","obtaining"],["safety","benefits"],["highly","recommended"],["recommended","history"],["history","file"],["file","lilienthal"],["thumb","otto"],["otto","lilienthal"],["sixth","century"],["aerodynamic","enough"],["average","sized"],["sized","person"],["someone","decided"],["simply","remove"],["early","glider"],["glider","designs"],["ensure","safe"],["safe","flighthe"],["flighthe","problem"],["early","flight"],["flight","pioneers"],["sufficiently","understand"],["underlying","principles"],["wing","work"],["work","starting"],["practical","glider"],["glider","aircraft"],["aircraft","glider"],["otto","lilienthal"],["lilienthal","built"],["whiche","could"],["could","ridge"],["ridge","lift"],["lift","ridge"],["ridge","soar"],["documented","work"],["work","influenced"],["influenced","later"],["later","designers"],["designers","making"],["making","lilienthal"],["lilienthal","one"],["influential","early"],["early","aviation"],["aviation","pioneers"],["weight","shift"],["modern","hanglider"],["hanglider","file"],["thumb","left"],["left","jan"],["double","sail"],["sail","glider"],["glider","hangliding"],["hangliding","saw"],["flexible","wing"],["wing","hanglider"],["double","sail"],["sail","hanglider"],["beach","france"],["triangle","control"],["control","frame"],["pilot","hung"],["hung","behind"],["gliding","club"],["biplane","hanglider"],["widely","publicized"],["public","magazines"],["biplane","hangliders"],["biplane","hangliders"],["bates","proved"],["hanglider","article"],["seemingly","affected"],["affected","builders"],["builders","even"],["contemporary","times"],["times","aseveral"],["aseveral","builders"],["builders","would"],["first","hanglider"],["hanglider","made"],["biplane","hanglider"],["allowed","safe"],["safe","three"],["three","axis"],["axis","control"],["foot","launched"],["launched","hanglider"],["hanglider","file"],["tow","flight"],["jpg","thumb"],["thumb","nasa"],["tow","cable"],["cable","onovember"],["onovember","francis"],["kite","patent"],["fully","flexible"],["flexible","wing"],["approved","claims"],["gliding","uses"],["flexible","wing"],["american","space"],["space","agency"],["agency","nasa"],["nasa","began"],["began","testing"],["various","flexible"],["semi","rigid"],["rigid","configurations"],["recovery","system"],["gemini","space"],["space","capsule"],["wing","simplicity"],["construction","along"],["slow","flight"],["gentle","landing"],["landing","characteristics"],["hanglider","enthusiasts"],["barry","hill"],["hill","palmer"],["palmer","adapted"],["flexible","wing"],["wing","concepto"],["concepto","make"],["make","foot"],["foot","launched"],["launched","hangliders"],["four","different"],["different","control"],["control","arrangements"],["mike","burns"],["burns","adapted"],["flexible","wing"],["kite","hanglider"],["john","w"],["flexible","wing"],["wing","airfoil"],["airfoil","concepto"],["concepto","make"],["make","another"],["another","water"],["ronautique","internationale"],["withe","hangliding"],["hangliding","diploma"],["modern","hanglider"],["hanglider","since"],["used","airfoil"],["hangliders","components"],["components","file"],["file","hangliding"],["thumb","hangliding"],["hangliding","hanglider"],["basically","two"],["two","types"],["sail","materials"],["materials","used"],["woven","polyester"],["polyester","fabrics"],["composite","laminated"],["laminated","fabrics"],["fabrics","made"],["polyester","film"],["woven","polyester"],["small","diameter"],["diameter","polyester"],["hot","press"],["provide","resistance"],["aerodynamic","shape"],["sail","woven"],["woven","polyester"],["polyester","provides"],["best","combination"],["light","weight"],["sail","withe"],["withe","best"],["best","overall"],["overall","handling"],["handling","qualities"],["qualities","laminated"],["laminated","sail"],["sail","materials"],["materials","using"],["using","polyester"],["polyester","film"],["film","achieve"],["achieve","superior"],["superior","performance"],["lower","stretch"],["stretch","material"],["maintaining","sail"],["sail","shape"],["istill","relatively"],["relatively","light"],["polyester","film"],["film","fabrics"],["thathe","reduced"],["load","generally"],["generally","results"],["polyester","laminated"],["laminated","fabrics"],["long","lasting"],["woven","fabrics"],["fabrics","triangle"],["triangle","control"],["control","frame"],["achieved","using"],["horizontal","bar"],["bar","held"],["pilot","also"],["also","known"],["triangle","control"],["control","frame"],["control","bar"],["base","bar"],["usually","pulled"],["allow","greater"],["greater","speed"],["speed","either"],["either","end"],["control","bar"],["main","body"],["configurations","additional"],["additional","wheels"],["bottom","bar"],["triangle","control"],["control","frame"],["otto","lilienthal"],["hanglider","prove"],["prove","thathe"],["thathe","technology"],["existed","since"],["since","thearly"],["thearly","design"],["shows","also"],["major","part"],["common","design"],["cable","stayed"],["gliding","club"],["club","hangliding"],["hangliding","meet"],["wing","foot"],["w","simon"],["simon","hanglider"],["hanglider","historian"],["collected","instances"],["control","frame"],["frame","used"],["first","decade"],["frame","training"],["safety","image"],["thumb","learning"],["poor","safety"],["safety","record"],["early","hangliding"],["hangliding","pioneers"],["considered","unsafe"],["unsafe","advances"],["glider","construction"],["much","improved"],["improved","safety"],["safety","record"],["record","modern"],["modern","hangliders"],["hanglider","manufacturers"],["manufacturers","association"],["paragliding","association"],["certified","standards"],["standards","using"],["using","modern"],["modern","materials"],["materials","although"],["beasily","damaged"],["damaged","either"],["continued","operation"],["unsafe","wind"],["weather","conditions"],["modern","gliders"],["dive","recovery"],["topless","gliders"],["gliders","pilots"],["pilots","fly"],["harnesses","exist"],["exist","pod"],["pod","harnesses"],["leg","portion"],["separate","rope"],["cocoon","harness"],["left","open"],["thead","buthe"],["buthe","knee"],["knee","part"],["wrapped","around"],["pilots","leg"],["leg","automatically"],["seated","harness"],["pilot","slides"],["slides","back"],["seated","position"],["position","pilots"],["pilots","carry"],["serious","problems"],["manually","deployed"],["earth","pilots"],["pilots","also"],["also","wear"],["wear","helmets"],["generally","carry"],["safety","itemsuch"],["harness","lines"],["water","landing"],["landing","light"],["light","ropes"],["climbing","ropes"],["ropes","radios"],["ground","crew"],["first","aid"],["accident","rate"],["hanglider","flying"],["dramatically","decreased"],["pilotraining","early"],["early","hanglider"],["hanglider","pilots"],["pilots","learned"],["sometimes","home"],["flight","within"],["within","safe"],["safe","limits"],["cease","flying"],["weather","conditions"],["one","death"],["death","per"],["per","flights"],["risk","comparable"],["playing","football"],["pilots","learn"],["recognised","courses"],["internationally","recognised"],["recognised","international"],["international","pilot"],["pilot","proficiency"],["proficiency","information"],["information","card"],["card","issued"],["ronautique","internationale"],["internationale","fai"],["fai","launch"],["launch","image"],["image","launch"],["thumb","videof"],["foot","launching"],["techniques","include"],["include","foot"],["foot","launching"],["hill","tow"],["tow","launching"],["ground","based"],["based","tow"],["tow","system"],["powered","aircraft"],["aircraft","powered"],["powered","hanglider"],["hanglider","powered"],["powered","harnesses"],["boat","modern"],["modern","winch"],["typically","utilize"],["utilize","hydraulic"],["hydraulic","systems"],["systems","designed"],["regulate","line"],["line","tension"],["winds","result"],["tow","line"],["launch","techniques"],["used","successfully"],["hot","air"],["air","balloon"],["balloon","drops"],["high","altitude"],["weather","conditions"],["bottom","flight"],["safe","tow"],["tow","system"],["designed","tow"],["towing","tension"],["also","integrated"],["weak","link"],["safe","tow"],["tow","tension"],["initial","testing"],["hunter","valley"],["valley","denis"],["pilot","john"],["john","clark"],["bob","silver"],["hangliding","competition"],["parkes","nsw"],["competition","quickly"],["quickly","grew"],["first","year"],["world","championship"],["pilots","towing"],["several","wheat"],["international","pilots"],["alice","springs"],["take","advantage"],["massive","thermals"],["thermals","using"],["world","records"],["set","withe"],["withe","growing"],["growing","use"],["launch","methods"],["incorporated","static"],["static","winch"],["towing","behind"],["powered","hanglider"],["ultralight","soaring"],["soaring","flight"],["cross","country"],["country","flying"],["flying","image"],["thumb","good"],["good","gliding"],["gliding","weather"],["weather","well"],["well","formed"],["active","thermals"],["light","winds"],["continuously","descending"],["extended","flighthe"],["flighthe","pilot"],["pilot","must"],["must","seek"],["seek","air"],["air","currents"],["currents","rising"],["rising","faster"],["sink","rate"],["glider","selecting"],["rising","air"],["air","currents"],["pilot","wants"],["achieve","flying"],["flying","long"],["long","distances"],["distances","known"],["cross","country"],["country","flying"],["flying","cross"],["cross","country"],["rising","air"],["air","masses"],["masses","derive"],["following","sources"],["sources","thermals"],["commonly","used"],["used","source"],["energy","heating"],["turn","heats"],["columns","known"],["pilots","quickly"],["quickly","become"],["become","aware"],["land","features"],["generate","thermals"],["trigger","points"],["surface","tension"],["tension","withe"],["withe","ground"],["trigger","point"],["first","indicator"],["birds","feeding"],["dust","devil"],["thermal","thermal"],["thermal","climbs"],["climbs","bigger"],["bigger","soaring"],["soaring","birds"],["birds","indicate"],["indicate","thermal"],["thermal","thermal"],["either","forms"],["surrounding","air"],["becoming","warmer"],["stops","thermal"],["thermal","developing"],["cloud","also"],["also","nearly"],["nearly","every"],["every","glider"],["glider","contains"],["instrument","known"],["speed","indicator"],["shows","visually"],["glider","pilot"],["circle","within"],["rising","air"],["gain","height"],["withe","wind"],["wind","creating"],["creating","rows"],["sinking","air"],["cloud","streeto"],["streeto","fly"],["fly","long"],["long","straight"],["straight","line"],["line","distances"],["lift","ridge"],["ridge","lift"],["lift","occurs"],["wind","encounters"],["mountain","cliff"],["mountain","creating"],["creating","lifthe"],["lifthe","area"],["lift","extending"],["lift","band"],["band","providing"],["rising","faster"],["rate","gliders"],["rising","air"],["flying","within"],["lift","band"],["right","angle"],["ridge","soaring"],["also","known"],["soaring","mountain"],["mountain","waves"],["third","main"],["main","type"],["lift","used"],["glider","pilots"],["lee","waves"],["occur","near"],["near","mountains"],["generate","standing"],["standing","wave"],["alternating","areas"],["wave","peak"],["often","marked"],["cloud","formations"],["formations","convergence"],["convergence","another"],["another","form"],["lift","results"],["convergence","zone"],["zone","convergence"],["air","masses"],["sea","breeze"],["breeze","sea"],["sea","breeze"],["breeze","front"],["project","hopes"],["great","altitudes"],["rare","phenomenon"],["phenomenon","known"],["morninglory","cloud"],["cloud","morninglory"],["glider","pilots"],["australia","performance"],["performance","file"],["jpg","thumb"],["thumb","hanglider"],["hanglider","launching"],["withe","improvements"],["increased","one"],["one","measure"],["gliding","flight"],["flight","glide"],["glide","ratio"],["ratio","glide"],["glide","ratio"],["ratiof","means"],["smooth","air"],["travel","forward"],["forward","metres"],["performance","figures"],["topless","gliders"],["gliding","flight"],["flight","glide"],["glide","ratio"],["ratio","glide"],["glide","ratio"],["ratio","speed"],["speed","range"],["range","best"],["best","glide"],["rigid","wings"],["wings","gliding"],["gliding","flight"],["flight","glide"],["glide","ratio"],["ratio","glide"],["glide","ratio"],["ratio","speed"],["speed","range"],["range","best"],["best","glide"],["weight","provided"],["slight","disadvantage"],["rising","air"],["higher","speed"],["given","glide"],["glide","angle"],["strong","conditions"],["little","time"],["time","climbing"],["jpg","thumb"],["thumb","high"],["high","performance"],["performance","flexible"],["flexible","wing"],["wing","hanglider"],["often","used"],["used","forecreational"],["forecreational","flying"],["gentle","behaviour"],["behaviour","especially"],["especially","athe"],["athe","stall"],["stall","flight"],["flight","stall"],["natural","flight"],["flight","dynamics"],["dynamics","aircraft"],["aircraft","pitch"],["pitch","stability"],["wing","loading"],["loading","must"],["piloto","run"],["run","fast"],["fast","enough"],["stall","flight"],["flight","stall"],["stall","speed"],["speed","stall"],["stall","speed"],["speed","unlike"],["traditional","aircraft"],["extended","fuselage"],["maintaining","stability"],["stability","hangliders"],["hangliders","rely"],["natural","stability"],["flexible","wings"],["flight","dynamics"],["dynamics","aircraft"],["aircraft","yaw"],["pitch","flight"],["flight","dynamics"],["dynamics","aircraft"],["aircraft","roll"],["roll","stability"],["generally","seto"],["near","neutral"],["properly","designed"],["designed","wing"],["maintain","balanced"],["little","pilot"],["wing","pilot"],["beneathe","wing"],["pilot","lies"],["lies","prone"],["large","triangular"],["triangular","metal"],["metal","control"],["control","frame"],["frame","controlled"],["controlled","flight"],["pilot","pushing"],["control","frame"],["weight","fore"],["coordinated","maneuvers"],["maneuvers","roll"],["flexible","wings"],["near","neutral"],["neutral","roll"],["roll","due"],["roll","axis"],["pilot","shifts"],["body","mass"],["mass","using"],["wing","control"],["control","bar"],["bar","applying"],["rolling","moment"],["moment","directly"],["flexible","wing"],["pilot","applied"],["applied","roll"],["roll","moment"],["pilot","shifts"],["righthe","right"],["right","wing"],["left","allowing"],["right","wing"],["yaw","angle"],["angle","yaw"],["yaw","axis"],["axis","stabilized"],["relative","wind"],["wind","creates"],["lift","force"],["force","lift"],["advancing","wing"],["drag","stabilizing"],["one","wing"],["wing","advances"],["advances","ahead"],["advancing","wing"],["go","slower"],["fall","back"],["traveling","straight"],["wings","presenthe"],["wind","pitch"],["pitch","control"],["control","response"],["partially","stabilized"],["swept","wing"],["wing","centre"],["hang","point"],["athe","trim"],["trim","speed"],["fly","hands"],["weight","shift"],["shift","control"],["control","system"],["positively","loaded"],["loaded","right"],["right","side"],["rods","aremployed"],["minimum","safe"],["safe","amount"],["loaded","upside"],["flying","faster"],["trim","speed"],["weight","forward"],["control","frame"],["frame","flying"],["flying","slower"],["weight","aft"],["aft","pushing"],["facthathe","wing"],["dynamics","analogous"],["spring","suspension"],["flying","experience"],["similarly","sized"],["sized","rigid"],["hanglider","instruments"],["hanglider","flying"],["pilots","carry"],["carry","instruments"],["altimeter","often"],["often","combined"],["advanced","pilots"],["pilots","also"],["also","carry"],["cross","country"],["country","pilots"],["pilots","often"],["often","also"],["also","carry"],["carry","maps"],["gps","units"],["units","hangliders"],["instrument","panels"],["panels","asuch"],["control","frame"],["variometer","image"],["righthumb","upright"],["altimeter","c"],["c","gliding"],["gliding","pilots"],["acceleration","forces"],["first","hit"],["constant","motion"],["motion","thus"],["constantly","rising"],["rising","air"],["constantly","sinking"],["sinking","air"],["speed","indicator"],["variometer","indicates"],["indicates","climb"],["climb","rate"],["sink","rate"],["audio","signals"],["visual","display"],["generally","electronic"],["electronic","vary"],["often","include"],["advanced","units"],["units","often"],["often","incorporate"],["flight","datand"],["main","purpose"],["pilot","find"],["maximize","height"],["height","gain"],["conversely","indicating"],["sinking","air"],["find","rising"],["rising","air"],["sometimes","capable"],["optimal","speed"],["given","conditions"],["theory","answers"],["thermals","given"],["average","lifthe"],["lifthe","pilot"],["pilot","expects"],["cruise","mode"],["calculations","automatically"],["automatically","allowing"],["theoretical","performance"],["performance","glide"],["glide","ratio"],["ratio","altitude"],["altitude","hook"],["radio","image"],["jpg","lefthumb"],["lefthumb","upright"],["upright","aircraft"],["aircraft","radio"],["radio","pilots"],["pilots","use"],["use","way"],["way","radio"],["training","purposes"],["witheir","ground"],["cross","country"],["country","flights"],["flights","one"],["one","type"],["radios","used"],["ptt","push"],["ptt","switch"],["either","fixed"],["finger","operating"],["band","radio"],["radio","without"],["appropriate","license"],["including","united"],["united","states"],["states","canada"],["canada","brazil"],["brazil","etc"],["obtained","withe"],["withe","national"],["local","hangliding"],["hangliding","association"],["aircraft","operating"],["airspace","occupied"],["aircraft","hanglider"],["hanglider","pilots"],["pilots","also"],["also","use"],["appropriate","type"],["aero","mobile"],["mobile","service"],["ptt","switch"],["speakers","inside"],["frequencies","restrictions"],["haseveral","advantages"],["radios","used"],["services","first"],["great","range"],["contact","inform"],["aircraft","pilots"],["intentions","thereby"],["thereby","improving"],["increasing","safety"],["safety","third"],["allow","greater"],["greater","liberty"],["liberty","regarding"],["regarding","distance"],["distance","flights"],["aircraft","radio"],["legal","requirement"],["requirement","fourth"],["universal","emergency"],["emergency","frequency"],["frequency","monitored"],["emergency","gps"],["gps","global"],["global","positioning"],["positioning","system"],["system","gps"],["gps","global"],["global","positioning"],["positioning","system"],["flight","path"],["pilot","flies"],["gps","track"],["analyze","flying"],["flying","technique"],["assist","flight"],["flight","performance"],["cross","country"],["country","flying"],["airspace","needs"],["considered","records"],["ronautique","internationale"],["internationale","fai"],["fai","world"],["world","record"],["straight","distance"],["b","martin"],["texas","judy"],["altitude","record"],["balloon","launched"],["launched","hanglider"],["rum","jordan"],["also","holds"],["gain","height"],["height","record"],["altitude","records"],["balloon","launched"],["launched","hangliders"],["hangliders","class"],["class","wikitable"],["wikitable","altitude"],["altitude","location"],["location","pilot"],["pilot","date"],["date","reference"],["reference","bgcolor"],["bgcolor","e"],["e","e"],["e","align"],["align","center"],["rum","jordan"],["jordan","judy"],["october","align"],["align","center"],["center","edmonton"],["edmonton","alberta"],["alberta","canada"],["canada","john"],["john","bird"],["bird","august"],["august","edmonton"],["edmonton","journal"],["journal","august"],["august","kerry"],["official","observer"],["soaring","association"],["taken","athe"],["athe","top"],["trace","mark"],["meters","bgcolor"],["bgcolor","e"],["e","e"],["e","align"],["align","center"],["center","california"],["california","city"],["city","california"],["california","usa"],["september","hangliding"],["hangliding","magazine"],["magazine","december"],["december","p"],["p","align"],["align","center"],["center","mojave"],["mojave","desert"],["desert","california"],["california","usa"],["usa","bob"],["november","bgcolor"],["bgcolor","e"],["e","e"],["e","align"],["align","center"],["center","san"],["san","jose"],["jose","california"],["california","usa"],["usa","dennis"],["journal","december"],["december","p"],["flying","long"],["spot","landings"],["increasing","performance"],["performance","cross"],["cross","country"],["country","flying"],["flying","replaced"],["usually","two"],["low","power"],["power","global"],["global","positioning"],["positioning","system"],["system","gps"],["gps","units"],["completely","replaced"],["replaced","photographs"],["goal","every"],["every","two"],["two","years"],["world","championship"],["world","championship"],["quest","air"],["florida","big"],["big","spring"],["spring","texas"],["texas","big"],["big","spring"],["spring","texas"],["texas","hosted"],["world","championship"],["championship","hangliding"],["competition","categories"],["world","air"],["air","games"],["games","organized"],["ronautique","internationale"],["internationale","world"],["world","air"],["air","sports"],["sports","federation"],["federation","fai"],["fai","world"],["world","hangliding"],["hangliding","championships"],["championships","classes"],["classes","image"],["aug","jpg"],["jpg","thumb"],["thumb","right"],["right","modern"],["modern","flexible"],["flexible","wing"],["wing","hanglider"],["competitive","purposes"],["three","classes"],["hanglider","class"],["flexible","wing"],["wing","hanglider"],["flight","controlled"],["wing","whose"],["whose","shape"],["shape","changes"],["shifted","weight"],["paraglider","class"],["rigid","wing"],["wing","hanglider"],["flight","controlled"],["rigid","wings"],["pilot","hangs"],["wing","without"],["additional","aircraft"],["aircraft","fairing"],["fairing","class"],["class","designated"],["ronautique","internationale"],["internationale","fai"],["best","performance"],["hanglider","may"],["alternative","launching"],["launching","modes"],["foot","launched"],["launched","one"],["one","practical"],["practical","avenue"],["foot","launch"],["launch","aerobatics"],["aerobatics","hangliders"],["flight","pilots"],["pilots","perform"],["perform","aerobatics"],["aerobatics","atheir"],["three","basic"],["basic","maneuvers"],["exit","heading"],["following","descriptions"],["nationally","recognized"],["recognized","rules"],["rules","book"],["book","official"],["official","maneuvers"],["bank","angle"],["maneuver","loop"],["wings","level"],["level","dive"],["dive","climbs"],["climbs","without"],["without","rolling"],["wings","level"],["level","heading"],["heading","back"],["start","altitude"],["without","rolling"],["approximately","circular"],["circular","path"],["vertical","plane"],["plane","spin"],["moment","one"],["one","wing"],["wing","stalls"],["spin","thentry"],["thentry","heading"],["noted","athis"],["athis","pointhe"],["pointhe","glider"],["glider","must"],["must","remain"],["spin","points"],["apex","heading"],["thentry","heading"],["heading","climb"],["apex","heading"],["thentry","heading"],["heading","comparison"],["gliders","hangliders"],["gliders","hangliders"],["paragliding","paragliders"],["foot","launched"],["launched","glider"],["glider","aircraft"],["pilot","hangs"],["lift","surface"],["airframe","contains"],["contains","rigid"],["rigid","structures"],["primary","structure"],["consisting","mainly"],["woven","material"],["material","see"],["see","also"],["also","glider"],["glider","disambiguation"],["disambiguation","glider"],["glider","human"],["human","powered"],["powered","aircraft"],["aircraft","kite"],["kite","types"],["notes","bibliography"],["bibliography","category"],["category","hangliding"],["hangliding","category"],["category","gliding"],["gliding","category"],["category","aircraft"],["aircraft","configurations"],["configurations","category"],["category","air"],["air","sports"],["sports","category"],["category","individual"],["individual","sports"],["sports","category"],["category","outdoorecreation"],["outdoorecreation","category"],["category","unpowered"],["unpowered","flight"],["flight","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","articles"],["articles","containing"],["containing","video"],["video","clips"]],"all_collocations":["px hanglider","air sport","pilot flies","light non","non motorized","motorized foot","foot launched","launched heavier","aircraft called","modern hangliders","aluminium alloy","composite material","material composite","composite frame","frame covered","wing typically","shifting body","body weight","drag ratio","small hills","ratio significantly","significantly improved","lift soaring","soaring soar","hours gain","gain thousands","thousands ofeet","perform aerobatics","glide cross","cross country","ronautique internationale","national airspace","airspace governing","governing organizations","organizations control","regulatory aspects","hangliding obtaining","safety benefits","highly recommended","recommended history","history file","file lilienthal","thumb otto","otto lilienthal","sixth century","aerodynamic enough","average sized","sized person","someone decided","simply remove","early glider","glider designs","ensure safe","safe flighthe","flighthe problem","early flight","flight pioneers","sufficiently understand","underlying principles","wing work","work starting","practical glider","glider aircraft","aircraft glider","otto lilienthal","lilienthal built","whiche could","could ridge","ridge lift","lift ridge","ridge soar","documented work","work influenced","influenced later","later designers","designers making","making lilienthal","lilienthal one","influential early","early aviation","aviation pioneers","weight shift","modern hanglider","hanglider file","left jan","double sail","sail glider","glider hangliding","hangliding saw","flexible wing","wing hanglider","double sail","sail hanglider","beach france","triangle control","control frame","pilot hung","hung behind","gliding club","biplane hanglider","widely publicized","public magazines","biplane hangliders","biplane hangliders","bates proved","hanglider article","seemingly affected","affected builders","builders even","contemporary times","times aseveral","aseveral builders","builders would","first hanglider","hanglider made","biplane hanglider","allowed safe","safe three","three axis","axis control","foot launched","launched hanglider","hanglider file","tow flight","thumb nasa","tow cable","cable onovember","onovember francis","kite patent","fully flexible","flexible wing","approved claims","gliding uses","flexible wing","american space","space agency","agency nasa","nasa began","began testing","various flexible","semi rigid","rigid configurations","recovery system","gemini space","space capsule","wing simplicity","construction along","slow flight","gentle landing","landing characteristics","hanglider enthusiasts","barry hill","hill palmer","palmer adapted","flexible wing","wing concepto","concepto make","make foot","foot launched","launched hangliders","four different","different control","control arrangements","mike burns","burns adapted","flexible wing","kite hanglider","john w","flexible wing","wing airfoil","airfoil concepto","concepto make","make another","another water","ronautique internationale","withe hangliding","hangliding diploma","modern hanglider","hanglider since","used airfoil","hangliders components","components file","file hangliding","thumb hangliding","hangliding hanglider","basically two","two types","sail materials","materials used","woven polyester","polyester fabrics","composite laminated","laminated fabrics","fabrics made","polyester film","woven polyester","small diameter","diameter polyester","hot press","provide resistance","aerodynamic shape","sail woven","woven polyester","polyester provides","best combination","light weight","sail withe","withe best","best overall","overall handling","handling qualities","qualities laminated","laminated sail","sail materials","materials using","using polyester","polyester film","film achieve","achieve superior","superior performance","lower stretch","stretch material","maintaining sail","sail shape","istill relatively","relatively light","polyester film","film fabrics","thathe reduced","load generally","generally results","polyester laminated","laminated fabrics","long lasting","woven fabrics","fabrics triangle","triangle control","control frame","achieved using","horizontal bar","bar held","pilot also","also known","triangle control","control frame","control bar","base bar","usually pulled","allow greater","greater speed","speed either","either end","control bar","main body","configurations additional","additional wheels","bottom bar","triangle control","control frame","otto lilienthal","hanglider prove","prove thathe","thathe technology","existed since","since thearly","thearly design","shows also","major part","common design","cable stayed","gliding club","club hangliding","hangliding meet","wing foot","w simon","simon hanglider","hanglider historian","collected instances","control frame","frame used","first decade","frame training","safety image","thumb learning","poor safety","safety record","early hangliding","hangliding pioneers","considered unsafe","unsafe advances","glider construction","much improved","improved safety","safety record","record modern","modern hangliders","hanglider manufacturers","manufacturers association","paragliding association","certified standards","standards using","using modern","modern materials","materials although","beasily damaged","damaged either","continued operation","unsafe wind","weather conditions","modern gliders","dive recovery","topless gliders","gliders pilots","pilots fly","harnesses exist","exist pod","pod harnesses","leg portion","separate rope","cocoon harness","left open","thead buthe","buthe knee","knee part","wrapped around","pilots leg","leg automatically","seated harness","pilot slides","slides back","seated position","position pilots","pilots carry","serious problems","manually deployed","earth pilots","pilots also","also wear","wear helmets","generally carry","safety itemsuch","harness lines","water landing","landing light","light ropes","climbing ropes","ropes radios","ground crew","first aid","accident rate","hanglider flying","dramatically decreased","pilotraining early","early hanglider","hanglider pilots","pilots learned","sometimes home","flight within","within safe","safe limits","cease flying","weather conditions","one death","death per","per flights","risk comparable","playing football","pilots learn","recognised courses","internationally recognised","recognised international","international pilot","pilot proficiency","proficiency information","information card","card issued","ronautique internationale","internationale fai","fai launch","launch image","image launch","thumb videof","foot launching","techniques include","include foot","foot launching","hill tow","tow launching","ground based","based tow","tow system","powered aircraft","aircraft powered","powered hanglider","hanglider powered","powered harnesses","boat modern","modern winch","typically utilize","utilize hydraulic","hydraulic systems","systems designed","regulate line","line tension","winds result","tow line","launch techniques","used successfully","hot air","air balloon","balloon drops","high altitude","weather conditions","bottom flight","safe tow","tow system","designed tow","towing tension","also integrated","weak link","safe tow","tow tension","initial testing","hunter valley","valley denis","pilot john","john clark","bob silver","hangliding competition","parkes nsw","competition quickly","quickly grew","first year","world championship","pilots towing","several wheat","international pilots","alice springs","take advantage","massive thermals","thermals using","world records","set withe","withe growing","growing use","launch methods","incorporated static","static winch","towing behind","powered hanglider","ultralight soaring","soaring flight","cross country","country flying","flying image","thumb good","good gliding","gliding weather","weather well","well formed","active thermals","light winds","continuously descending","extended flighthe","flighthe pilot","pilot must","must seek","seek air","air currents","currents rising","rising faster","sink rate","glider selecting","rising air","air currents","pilot wants","achieve flying","flying long","long distances","distances known","cross country","country flying","flying cross","cross country","rising air","air masses","masses derive","following sources","sources thermals","commonly used","used source","energy heating","turn heats","columns known","pilots quickly","quickly become","become aware","land features","generate thermals","trigger points","surface tension","tension withe","withe ground","trigger point","first indicator","birds feeding","dust devil","thermal thermal","thermal climbs","climbs bigger","bigger soaring","soaring birds","birds indicate","indicate thermal","thermal thermal","either forms","surrounding air","becoming warmer","stops thermal","thermal developing","cloud also","also nearly","nearly every","every glider","glider contains","instrument known","speed indicator","shows visually","glider pilot","circle within","rising air","gain height","withe wind","wind creating","creating rows","sinking air","cloud streeto","streeto fly","fly long","long straight","straight line","line distances","lift ridge","ridge lift","lift occurs","wind encounters","mountain cliff","mountain creating","creating lifthe","lifthe area","lift extending","lift band","band providing","rising faster","rate gliders","rising air","flying within","lift band","right angle","ridge soaring","also known","soaring mountain","mountain waves","third main","main type","lift used","glider pilots","lee waves","occur near","near mountains","generate standing","standing wave","alternating areas","wave peak","often marked","cloud formations","formations convergence","convergence another","another form","lift results","convergence zone","zone convergence","air masses","sea breeze","breeze sea","sea breeze","breeze front","project hopes","great altitudes","rare phenomenon","phenomenon known","morninglory cloud","cloud morninglory","glider pilots","australia performance","performance file","thumb hanglider","hanglider launching","withe improvements","increased one","one measure","gliding flight","flight glide","glide ratio","ratio glide","glide ratio","ratiof means","smooth air","travel forward","forward metres","performance figures","topless gliders","gliding flight","flight glide","glide ratio","ratio glide","glide ratio","ratio speed","speed range","range best","best glide","rigid wings","wings gliding","gliding flight","flight glide","glide ratio","ratio glide","glide ratio","ratio speed","speed range","range best","best glide","weight provided","slight disadvantage","rising air","higher speed","given glide","glide angle","strong conditions","little time","time climbing","thumb high","high performance","performance flexible","flexible wing","wing hanglider","often used","used forecreational","forecreational flying","gentle behaviour","behaviour especially","especially athe","athe stall","stall flight","flight stall","natural flight","flight dynamics","dynamics aircraft","aircraft pitch","pitch stability","wing loading","loading must","piloto run","run fast","fast enough","stall flight","flight stall","stall speed","speed stall","stall speed","speed unlike","traditional aircraft","extended fuselage","maintaining stability","stability hangliders","hangliders rely","natural stability","flexible wings","flight dynamics","dynamics aircraft","aircraft yaw","pitch flight","flight dynamics","dynamics aircraft","aircraft roll","roll stability","generally seto","near neutral","properly designed","designed wing","maintain balanced","little pilot","wing pilot","beneathe wing","pilot lies","lies prone","large triangular","triangular metal","metal control","control frame","frame controlled","controlled flight","pilot pushing","control frame","weight fore","coordinated maneuvers","maneuvers roll","flexible wings","near neutral","neutral roll","roll due","roll axis","pilot shifts","body mass","mass using","wing control","control bar","bar applying","rolling moment","moment directly","flexible wing","pilot applied","applied roll","roll moment","pilot shifts","righthe right","right wing","left allowing","right wing","yaw angle","angle yaw","yaw axis","axis stabilized","relative wind","wind creates","lift force","force lift","advancing wing","drag stabilizing","one wing","wing advances","advances ahead","advancing wing","go slower","fall back","traveling straight","wings presenthe","wind pitch","pitch control","control response","partially stabilized","swept wing","wing centre","hang point","athe trim","trim speed","fly hands","weight shift","shift control","control system","positively loaded","loaded right","right side","rods aremployed","minimum safe","safe amount","loaded upside","flying faster","trim speed","weight forward","control frame","frame flying","flying slower","weight aft","aft pushing","facthathe wing","dynamics analogous","spring suspension","flying experience","similarly sized","sized rigid","hanglider instruments","hanglider flying","pilots carry","carry instruments","altimeter often","often combined","advanced pilots","pilots also","also carry","cross country","country pilots","pilots often","often also","also carry","carry maps","gps units","units hangliders","instrument panels","panels asuch","control frame","variometer image","righthumb upright","altimeter c","c gliding","gliding pilots","acceleration forces","first hit","constant motion","motion thus","constantly rising","rising air","constantly sinking","sinking air","speed indicator","variometer indicates","indicates climb","climb rate","sink rate","audio signals","visual display","generally electronic","electronic vary","often include","advanced units","units often","often incorporate","flight datand","main purpose","pilot find","maximize height","height gain","conversely indicating","sinking air","find rising","rising air","sometimes capable","optimal speed","given conditions","theory answers","thermals given","average lifthe","lifthe pilot","pilot expects","cruise mode","calculations automatically","automatically allowing","theoretical performance","performance glide","glide ratio","ratio altitude","altitude hook","radio image","jpg lefthumb","lefthumb upright","upright aircraft","aircraft radio","radio pilots","pilots use","use way","way radio","training purposes","witheir ground","cross country","country flights","flights one","one type","radios used","ptt push","ptt switch","either fixed","finger operating","band radio","radio without","appropriate license","including united","united states","states canada","canada brazil","brazil etc","obtained withe","withe national","local hangliding","hangliding association","aircraft operating","airspace occupied","aircraft hanglider","hanglider pilots","pilots also","also use","appropriate type","aero mobile","mobile service","ptt switch","speakers inside","frequencies restrictions","haseveral advantages","radios used","services first","great range","contact inform","aircraft pilots","intentions thereby","thereby improving","increasing safety","safety third","allow greater","greater liberty","liberty regarding","regarding distance","distance flights","aircraft radio","legal requirement","requirement fourth","universal emergency","emergency frequency","frequency monitored","emergency gps","gps global","global positioning","positioning system","system gps","gps global","global positioning","positioning system","flight path","pilot flies","gps track","analyze flying","flying technique","assist flight","flight performance","cross country","country flying","airspace needs","considered records","ronautique internationale","internationale fai","fai world","world record","straight distance","b martin","texas judy","altitude record","balloon launched","launched hanglider","rum jordan","also holds","gain height","height record","altitude records","balloon launched","launched hangliders","hangliders class","wikitable altitude","altitude location","location pilot","pilot date","date reference","reference bgcolor","bgcolor e","e e","e align","rum jordan","jordan judy","october align","center edmonton","edmonton alberta","alberta canada","canada john","john bird","bird august","august edmonton","edmonton journal","journal august","august kerry","official observer","soaring association","taken athe","athe top","trace mark","meters bgcolor","bgcolor e","e e","e align","center california","california city","city california","california usa","september hangliding","hangliding magazine","magazine december","december p","p align","center mojave","mojave desert","desert california","california usa","usa bob","november bgcolor","bgcolor e","e e","e align","center san","san jose","jose california","california usa","usa dennis","journal december","december p","flying long","spot landings","increasing performance","performance cross","cross country","country flying","flying replaced","usually two","low power","power global","global positioning","positioning system","system gps","gps units","completely replaced","replaced photographs","goal every","every two","two years","world championship","world championship","quest air","florida big","big spring","spring texas","texas big","big spring","spring texas","texas hosted","world championship","championship hangliding","competition categories","world air","air games","games organized","ronautique internationale","internationale world","world air","air sports","sports federation","federation fai","fai world","world hangliding","hangliding championships","championships classes","classes image","aug jpg","right modern","modern flexible","flexible wing","wing hanglider","competitive purposes","three classes","hanglider class","flexible wing","wing hanglider","flight controlled","wing whose","whose shape","shape changes","shifted weight","paraglider class","rigid wing","wing hanglider","flight controlled","rigid wings","pilot hangs","wing without","additional aircraft","aircraft fairing","fairing class","class designated","ronautique internationale","internationale fai","best performance","hanglider may","alternative launching","launching modes","foot launched","launched one","one practical","practical avenue","foot launch","launch aerobatics","aerobatics hangliders","flight pilots","pilots perform","perform aerobatics","aerobatics atheir","three basic","basic maneuvers","exit heading","following descriptions","nationally recognized","recognized rules","rules book","book official","official maneuvers","bank angle","maneuver loop","wings level","level dive","dive climbs","climbs without","without rolling","wings level","level heading","heading back","start altitude","without rolling","approximately circular","circular path","vertical plane","plane spin","moment one","one wing","wing stalls","spin thentry","thentry heading","noted athis","athis pointhe","pointhe glider","glider must","must remain","spin points","apex heading","thentry heading","heading climb","apex heading","thentry heading","heading comparison","gliders hangliders","gliders hangliders","paragliding paragliders","foot launched","launched glider","glider aircraft","pilot hangs","lift surface","airframe contains","contains rigid","rigid structures","primary structure","consisting mainly","woven material","material see","see also","also glider","glider disambiguation","disambiguation glider","glider human","human powered","powered aircraft","aircraft kite","kite types","notes bibliography","bibliography category","category hangliding","hangliding category","category gliding","gliding category","category aircraft","aircraft configurations","configurations category","category air","air sports","sports category","category individual","individual sports","sports category","category outdoorecreation","outdoorecreation category","category unpowered","unpowered flight","flight category","category adventure","adventure travel","travel category","category articles","articles containing","containing video","video clips"],"new_description":"file part thumb px hanglider air sport activity pilot flies light non motorized foot_launched heavier aircraft called hanglider modern hangliders made aluminium alloy composite material composite frame covered synthetic form wing typically pilot airframe controls aircraft shifting body weight opposition control hangliders low drag ratio pilots gliding small hills ratio significantly improved since pilots lift soaring soar hours gain thousands ofeet altitude thermal perform aerobatics glide cross_country hundreds kilometres f ration ronautique internationale national_airspace governing organizations control regulatory aspects hangliding obtaining safety benefits instructed highly recommended history_file lilienthal thumb otto lilienthal forms gliding existed china thend sixth century chinese managed build large aerodynamic enough sustain weight average sized person matter time someone decided simply remove kite see happened early glider designs ensure safe flighthe problem early flight pioneers sufficiently understand underlying principles made bird wing work starting technical scientific made led practical glider aircraft glider otto lilienthal built gliders whiche could ridge lift ridge soar documented work influenced later designers making lilienthal one influential early aviation pioneers aircraft controlled weight shift isimilar modern hanglider file thumb left jan double sail glider hangliding saw flexible_wing hanglider jan flew double sail hanglider beach france triangle control frame pilot hung behind triangle hanglider evident gliding club activity biplane hanglider widely publicized public magazines plans building biplane hangliders constructed flown several octave biplane hangliders demonstrated april article carl bates proved hanglider article seemingly affected builders even contemporary times aseveral builders would first hanglider made following plan article jensen biplane hanglider called allowed safe three axis control foot_launched hanglider file b tow flight jpg thumb nasa glider flight tow cable onovember francis applied kite patent fully flexible_wing approved claims gliding uses flexible_wing wing american space_agency nasa began testing various flexible semi rigid configurations order use recovery system gemini space_capsule formats wing simplicity design ease construction along capability slow flight gentle landing characteristics go hanglider enthusiasts barry hill palmer adapted flexible_wing concepto make foot_launched hangliders four different control arrangements mike burns adapted flexible_wing build kite hanglider called john w adapted flexible_wing airfoil concepto make another water glider f ration ronautique internationale withe hangliding diploma invention modern hanglider since wing used airfoil hangliders components file hangliding thumb hangliding hanglider basically two types sail materials used hanglider woven polyester fabrics composite laminated fabrics made combination polyester film polyester woven polyester tight small diameter polyester stabilized hot press required provide resistance stretch resistance important maintaining aerodynamic shape sail woven polyester provides best combination light weight sail withe best overall handling qualities laminated sail materials using polyester film achieve superior performance using lower stretch material better maintaining sail shape istill relatively light disadvantages polyester film fabrics thathe reduced load generally results less handling polyester laminated fabrics generally durable long lasting woven fabrics triangle control frame hangliders control achieved using horizontal bar held pilot also_known triangle control frame control bar base bar bar usually pulled allow greater speed either end control bar attached upright extend connected main body glider creates shape triangle frame many configurations additional wheels equipment suspended bottom bar ends triangle control frame otto lilienthal hanglider prove thathe technology frames existed since_thearly design gliders mention shows also octave designs major part common design hangliders george simple frame cable stayed demonstrated gliding club hangliding meet wing foot hanglider year w simon hanglider historian collected instances control frame used first_decade variant frame training safety image thumb learning due poor safety record early hangliding pioneers sport traditionally considered unsafe advances pilotraining glider construction led much improved safety record modern hangliders constructed hanglider manufacturers association paragliding association h certified standards using modern materials although beasily damaged either continued operation unsafe wind weather conditions modern gliders built dive recovery lines gliders topless gliders pilots fly harnesses supportheir differentypes harnesses exist pod harnesses put like jacket leg portion behind pilot launch air feet tucked bottom harness air rope landing separate rope cocoon harness thead lies front legs launch getting air feet tucked back left open knee harness also thead buthe knee part wrapped around knees launch pick pilots leg automatically launch harness seated harness shoulder put launch take pilot slides back seat flies seated position pilots carry harness case serious problems parachute manually deployed carries pilot glider earth pilots also wear helmets generally carry safety itemsuch knives cutting parachute impact cutting harness lines case tree water landing light ropes lowering trees haul tools climbing ropes radios communication pilots ground crew first_aid accident rate hanglider flying dramatically decreased pilotraining early hanglider pilots learned trial error gliders sometimes home programs developed today pilot emphasis flight within safe limits well discipline cease flying weather conditions wind cloud uk one death per flights risk comparable running marathon playing football year pilots learn recognised courses lead internationally recognised international pilot proficiency information card issued f ration ronautique internationale fai launch image launch thumb videof foot launching techniques include foot launching hill tow launching ground based tow system behind powered_aircraft powered hanglider powered harnesses towed boat modern winch typically utilize hydraulic systems designed regulate line tension lock winds result rope rather tow line launch techniques also_used successfully hot_air balloon drops high_altitude weather conditions unsuitable sustain soaring results top bottom flight referred run denis introduced safe tow system designed tow centre mass gauge displayed towing tension also integrated weak link broke safe tow tension exceeded initial testing hunter valley denis pilot john_clark driver bob silver began hangliding competition parkes nsw competition quickly grew pilots first_year hosting world_championship pilots towing several wheat denis took group international pilots alice springs take_advantage massive thermals using new world_records set withe growing use system launch methods incorporated static winch towing behind powered hanglider ultralight soaring flight cross_country flying image thumb good gliding weather well formed cloud darker active thermals light winds glider flight continuously descending achieve extended flighthe pilot must seek air currents rising faster sink rate glider selecting sources rising air currents skill pilot wants achieve flying long_distances known cross_country flying cross_country rising air masses derive following sources thermals commonly_used source lift created sun energy heating ground turn heats air warm columns known pilots quickly become aware land features generate thermals trigger points thermals surface tension withe ground roll trigger point first indicator birds feeding insects carried dust devil change air pulled thermal thermal climbs bigger soaring birds indicate thermal thermal either forms cloud hits layer surrounding air becoming warmer stops thermal developing cloud also nearly every glider contains instrument known variometer speed indicator shows visually often presence lift sink located thermal glider pilot circle within area rising air gain height case cloud line withe wind creating rows thermals sinking air pilot use cloud streeto fly long straight line distances remaining row rising lift ridge lift occurs wind encounters mountain cliff hill air pushed face mountain creating lifthe area lift extending ridge called lift band providing air rising faster rate gliders soar climb rising air flying within lift band right angle ridge soaring also_known soaring mountain waves third main type lift used glider pilots lee waves occur near mountains generate standing wave alternating areas lift sink top wave peak often marked cloud formations convergence another form lift results convergence zone convergence air masses sea breeze sea breeze front forms lift polar project hopes use soar great altitudes rare phenomenon known morninglory cloud morninglory also_used glider pilots australia performance file_jpg thumb hanglider launching generation materials withe improvements performance hangliders increased one measure performance gliding flight glide_ratio glide_ratio example ratiof means smooth air glider travel forward metres losing altitude performance figures topless gliders aviation gliding flight glide_ratio glide_ratio speed range best glide rigid wings gliding flight glide_ratio glide_ratio speed range best glide weight provided lift likely strong gliders slight disadvantage climbing rising air achieve higher speed given glide angle advantage strong conditions little time climbing image jpg thumb high performance flexible_wing hanglider hangliders often_used forecreational flying premium placed gentle behaviour especially athe stall flight stall natural flight dynamics aircraft pitch stability wing loading must low order allow piloto run fast enough get stall flight stall_speed stall_speed unlike traditional aircraft extended fuselage maintaining stability hangliders rely natural stability flexible_wings return mechanical flight dynamics aircraft yaw pitch flight dynamics aircraft roll stability generally seto near neutral air properly designed wing maintain balanced flight little pilot wing pilot beneathe wing attached harness pilot lies prone within large triangular metal control frame controlled flight achieved pilot pushing pulling control frame weight fore aft right left coordinated maneuvers roll flexible_wings set near neutral roll due aircraft effect roll axis pilot shifts body mass using wing control bar applying rolling moment directly wing flexible_wing builto across span response pilot applied roll moment example pilot shifts righthe right wing edge left allowing right wing drop slow yaw yaw angle yaw axis stabilized back wings swept relative wind creates lift force lift advancing wing also drag stabilizing wing yaw one wing advances ahead presents area wind causes drag side causes advancing wing go slower fall back wing aircraft traveling straight wings presenthe amount area wind pitch pitch control response direct efficient partially stabilized swept wing wings wing centre gravity close hang point athe trim speed wing fly hands return trim disturbed weight shift control system works wing positively loaded right side lines rods aremployed maintain minimum safe amount wing loaded upside flying faster trim speed accomplished moving pilot weight forward control frame flying slower shifting pilot weight aft pushing furthermore facthathe wing designed bend provides dynamics analogous spring suspension provides flying experience similarly sized rigid hanglider instruments maximize pilot understanding hanglider flying pilots carry instruments basic variometer altimeter often combined advanced pilots also carry indicators radios flying competition cross_country pilots often also carry maps gps units hangliders instrument panels asuch instruments mounted control frame glider occasionally pilot variometer image righthumb upright altimeter c gliding pilots able sense acceleration forces first hit thermal difficulty constant motion thus difficulto difference constantly rising air constantly sinking air variometer speed indicator variometer indicates climb rate sink rate audio signals visual display units generally electronic vary sophistication often include altimeter indicator advanced units often incorporate flight datand built gps main purpose variometer helping pilot find stay core thermal maximize height gain conversely indicating sinking air needs find rising air sometimes capable indicate optimal speed fly given conditions paul theory answers question fast pilot cruise thermals given average lifthe pilot expects climb amount lift sink cruise mode make calculations automatically allowing factorsuch glider theoretical performance glide_ratio altitude hook weight radio image jpg lefthumb upright aircraft radio pilots use way radio training purposes communicating pilots air witheir ground traveling cross_country flights one type radios used ptt push talk operating usually microphone incorporated ptt switch either fixed outside finger operating band radio without appropriate license illegal countries regulated including united_states canada brazil etc additional must obtained withe national local hangliding association aircraft operating airspace occupied aircraft hanglider pilots also_use appropriate type radio aero mobile service band course fitted ptt switch finger speakers inside use isubjecto use air frequencies restrictions haseveral advantages frequency radios used services first great range without second ability contact inform aircraft pilots intentions thereby improving avoidance increasing safety third allow greater liberty regarding distance flights regulated aircraft radio normally legal requirement fourth universal emergency frequency monitored users satellites used case emergency emergency gps global positioning system gps global positioning system used mark flight path pilot flies interesting view gps track flight back ground analyze flying technique assist flight performance competitions cross_country flying airspace needs considered records sanctioned f ration ronautique internationale fai world_record straight distance held b martin distance originating texas judy holds altitude record balloon launched hanglider rum jordan october also holds gain height record set altitude records balloon launched hangliders class wikitable altitude location pilot date reference bgcolor e e align center rum jordan judy october align center edmonton_alberta_canada john bird august edmonton journal august kerry official observer soaring association canada feet reading taken athe_top trace mark record meters bgcolor e e align center california city california usa september hangliding magazine december p align center mojave desert california usa bob november bgcolor e e align center san_jose_california usa dennis december journal december p flying long possible spot landings increasing performance cross_country flying replaced usually two four passed landing goal late low power global positioning system gps units introduced completely replaced photographs goal every two_years world_championship rigid women world_championship hosted quest air florida big spring texas big spring texas hosted world_championship hangliding alsone competition categories world air games organized f ration ronautique internationale world air sports federation fai maintains fai world hangliding championships classes image aug jpg thumb right modern flexible_wing hanglider competitive purposes three classes hanglider class flexible_wing hanglider flight controlled wing whose shape changes virtue shifted weight paraglider class rigid wing hanglider flight controlled typically top wing flexible rigid wings pilot hangs wing without additional aircraft fairing class designated f ration ronautique internationale fai class pilot integrated wing means fairing offer best performance expensive addition configurations hanglider may constructed alternative launching modes foot_launched one practical avenue people physically cannot foot launch aerobatics hangliders certified flight pilots perform aerobatics atheir risk three basic maneuvers hanglider counting loop actually withe exit heading following descriptions nationally recognized rules book official maneuvers figure bank angle maneuver loop maneuver starts wings level dive climbs without rolling apex glider upside wings level heading back came returning start altitude heading without rolling completed approximately circular path vertical plane spin spin moment one wing stalls noticeably spin thentry heading noted athis pointhe glider must remain spin least revolution score spin points maneuver apex heading less left thentry heading climb maneuver apex heading greater left thentry heading comparison gliders hangliders paragliders confusion gliders hangliders paragliding paragliders hangliders foot_launched glider aircraft cases pilot hangs lift surface hanglider airframe contains rigid structures primary structure paragliders consisting mainly woven material see_also glider disambiguation glider human powered_aircraft kite types glider powered notes bibliography category hangliding category gliding category_aircraft configurations category_air sports_category individual sports_category outdoorecreation category unpowered flight category_adventure_travel_category articles_containing_video_clips"},{"title":"Hangar-7","description":"file aussenansicht red bull hangar nachtjpg thumb exterior of hangar at night hangar in salzburg austria owned by red bull founder dietrich mateschitz is not a hangar in a traditional sense but rather a multifunctional building with a collection of historical airplanes helicopters and formula one racing cars and is home of the flying bulls an austrian aviation team alsowned by mateschitz it houses a restaurantwo bars a lounge and aircraft and is open to the public it includes the michelin guide michelin starred restaurant ikarus the building is airfoil shaped constructed of tons of steel and sqft of glassurface hangar is the maintenance facility externalinks official english website category michelin guide starred restaurants category red bull racing category restaurants in austria category buildings and structures in salzburg category tourist attractions in salzburg","main_words":["file","red","bull","hangar","thumb","exterior","hangar","night","hangar","salzburg","austria","owned","red","bull","founder","dietrich","hangar","traditional","sense","rather","building","collection","historical","airplanes","formula","one","racing","cars","home","flying","austrian","aviation","team","houses","bars","lounge","aircraft","open","public","includes","michelin_guide","michelin_starred","restaurant","building","airfoil","shaped","constructed","tons","steel","sqft","hangar","maintenance","facility","externalinks_official","english","website_category","michelin_guide","starred_restaurants","category","red","bull","racing","category_restaurants","austria","category_buildings","structures","salzburg","category_tourist","attractions","salzburg"],"clean_bigrams":[["red","bull"],["bull","hangar"],["thumb","exterior"],["night","hangar"],["salzburg","austria"],["austria","owned"],["red","bull"],["bull","founder"],["founder","dietrich"],["traditional","sense"],["historical","airplanes"],["formula","one"],["one","racing"],["racing","cars"],["austrian","aviation"],["aviation","team"],["michelin","guide"],["guide","michelin"],["michelin","starred"],["starred","restaurant"],["airfoil","shaped"],["shaped","constructed"],["maintenance","facility"],["facility","externalinks"],["externalinks","official"],["official","english"],["english","website"],["website","category"],["category","michelin"],["michelin","guide"],["guide","starred"],["starred","restaurants"],["restaurants","category"],["category","red"],["red","bull"],["bull","racing"],["racing","category"],["category","restaurants"],["austria","category"],["category","buildings"],["salzburg","category"],["category","tourist"],["tourist","attractions"]],"all_collocations":["red bull","bull hangar","thumb exterior","night hangar","salzburg austria","austria owned","red bull","bull founder","founder dietrich","traditional sense","historical airplanes","formula one","one racing","racing cars","austrian aviation","aviation team","michelin guide","guide michelin","michelin starred","starred restaurant","airfoil shaped","shaped constructed","maintenance facility","facility externalinks","externalinks official","official english","english website","website category","category michelin","michelin guide","guide starred","starred restaurants","restaurants category","category red","red bull","bull racing","racing category","category restaurants","austria category","category buildings","salzburg category","category tourist","tourist attractions"],"new_description":"file red bull hangar thumb exterior hangar night hangar salzburg austria owned red bull founder dietrich hangar traditional sense rather building collection historical airplanes formula one racing cars home flying austrian aviation team houses bars lounge aircraft open public includes michelin_guide michelin_starred restaurant building airfoil shaped constructed tons steel sqft hangar maintenance facility externalinks_official english website_category michelin_guide starred_restaurants category red bull racing category_restaurants austria category_buildings structures salzburg category_tourist attractions salzburg"},{"title":"Happy hour","description":"image happy hourjpg righthumb happy hour sign on a pub in jerusalem in hebrew all draught beers buy one get one free happy hour is a marketing term for a period of time in which a venue such as a restaurant bar bowling alley stadium or state fair state or county fair offers discounts on alcoholic beverage alcoholic drinksuch as beer wine and cocktail s free hors d oeuvre s appetizers andiscounted menu items are often serveduring happy hour the words happy and hour have appeared together for centuries when describing pleasantimes in act i scene of william shakespeare s king henry v said to have been written in about for example king henry says therefore my lords omit no happy hour that may give furtherance tour expedition the use of the phrase happy hour to refer to a scheduled period of entertainment however is of much morecent vintage one possible origin of the term happy hour in the sense of a scheduled period of entertainment is from the united states navy in early a group of home makers called the happy hour social organized semi weekly smokers on board the name happy hour club happy hour social club and similar variants had been in use as the names of social clubs primarily by women social clubsince at leasthearly s by june the crew of arkansas had started referring to theiregularly scheduled smokers as happy hours the happy hours included a variety of entertainment including boxing and wrestling matches music dancing and movies by thend of world war i the practice of holding happy hours had spread throughouthentire navy the idea of drinking before dinner has its roots in the prohibition era when theighteenth amendmento the united states constitution th amendment and the volstead act were passed banning alcohol consumption people would host cocktail hours also known as happy hours at a speakeasy beforeating at restaurants where alcohol could not be served cocktailounge s continued the trend of drinking before dinner the random house dictionary of american slang dates happy hour as a term for afternoon drinks in a bar to a saturday evening post article on military life in that article detailed the lives of government contractors and military personnel who worked at missile tracking facilities in the caribbeand the atlantic except for those who spend too much during happy hour athe bar and there are few of these the money mounts up fast barry popick s onlinetymology dictionary the big apple listseveral pre citations to happy hour in print mostly from places near naval bases in california from as early the canadian province of alberta created restrictions to happy hours thatook effect in august all such promotions must end at pm andrink prices must conform to the alberta gaming and liquor commission alberta gaming and liquor commission s minimum price regulations at all times alberta sets new rules to improve bar safety minimum drink prices restricted happy hours among new policies to curbinge drinking alberta news release july in ontario whilestablishments may vary liquor prices as long as they stay above the minimum priceset by the alcohol and gaming commission of ontario they are not permitted to advertise these prices in a manner that may promote immoderate consumption in particular the phrase happy hour may not be used in such advertisement and promotion of liquor by liquor sales licensees alcohol and gaming commission of ontario information bulletin july happy hour has been illegal in the republic of ireland since under the intoxicating liquor act happy hour to end at midnight rt news and current affairs rt news augusthe khn a hospitality sector lobby group has agreed with its members to stop happy hours to discourage binge drinking byouth but only if the government would vote to not raise the minimum drinking age dutchnewsnl end of happy hours in sight if the legal drinking age remains in march the law to raise the drinking age to was passed united kingdom in glasgow banned happy hours to reduce binge drinking the national mandatory licensing conditions introduced in required all reasonable steps to be taken to prevent irresponsible drinks promotions which effectively banned traditional happy hours under the revision to these conditions the licensee must ensure such promotions do notake place although there is a subjective testhatakes account of the kind of establishment and its track record for any promotions that offer unlimited or unspecified alcohol free or for a fixed or discounted fee united states massachusetts was one of the first ustate s to implement a statewide ban on happy hours in happy hour ban starts in massachusetts bars new york times december other ustates also have similarestrictions including indianand north carolina the reason for each ban varies but most are for safety and health reasons in the us military abolished happy hours at military base clubs in the utah state legislature passed a ban on happy hours effective january in july pennsylvania extended the period of time for happy hour from two hours to four hours in june happy hour became legal in kansas after a year ban in july a year happy hour ban was ended in illinois by extension certain file hosting websitesuch as rapidshare and megaupload use the term happy hour to designate periods during which users have complimentary access to certain premium featuresuch as increased bandwidth elimination of queues and bypassing of captcha verificationsee also free lunch another means of promotion list of public house topics list of restauranterminology externalinks category drinking culture category parts of a day category sales promotion category restauranterminology","main_words":["image","happy","righthumb","happy_hour","sign","pub","jerusalem","hebrew","beers","buy","one","get","one","free","happy_hour","marketing","term","period","time","venue","restaurant","bar","bowling","alley","stadium","state","fair","state","county","fair","offers","discounts","alcoholic_beverage","beer","wine","cocktail","free","hors","appetizers","menu_items","often","happy_hour","words","happy_hour","appeared","together","centuries","describing","act","scene","william","shakespeare","king","henry","v","said","written","example","king","henry","says","therefore","lords","happy_hour","may","give","tour","expedition","use","phrase","happy_hour","refer","scheduled","period","entertainment","however","much","morecent","vintage","one","possible","origin","term","happy_hour","sense","scheduled","period","entertainment","united_states","navy","early","group","home","makers","called","happy_hour","social","organized","semi","weekly","smokers","board","name","happy_hour","club","happy_hour","social","club","similar","variants","use","names","social","clubs","primarily","women","social","june","crew","arkansas","started","referring","scheduled","smokers","happy_hours","happy_hours","included","variety","entertainment","including","boxing","wrestling","matches","music","dancing","movies","thend","world_war","practice","holding","happy_hours","spread","navy","idea","drinking","dinner","roots","prohibition","era","theighteenth","amendmento","united_states","constitution","th","amendment","act","passed","banning","alcohol","consumption","people","would","host","cocktail","hours","also_known","happy_hours","speakeasy","restaurants","alcohol","could","served","cocktailounge","continued","trend","drinking","dinner","random_house","dictionary","american","slang","dates","happy_hour","term","afternoon","drinks","bar","saturday","evening","post","article","military","life","article","detailed","lives","government","contractors","military","personnel","worked","missile","tracking","facilities","caribbeand","atlantic","except","spend","much","happy_hour","athe","bar","money","fast","barry","dictionary","big","apple","pre","citations","happy_hour","print","mostly","places","near","naval","bases","california","early","canadian","province","alberta","created","restrictions","happy_hours","thatook","effect","august","promotions","must","end","andrink","prices","must","conform","alberta","gaming","liquor","commission","alberta","gaming","liquor","commission","minimum","price","regulations","times","alberta","sets","new","rules","improve","bar","safety","minimum","drink","prices","restricted","happy_hours","among","new","policies","drinking","alberta","news","release","july","ontario","may","vary","liquor","prices","long","stay","minimum","alcohol","gaming","commission","ontario","permitted","advertise","prices","manner","may","promote","consumption","particular","phrase","happy_hour","may","used","advertisement","promotion","liquor","liquor","sales","licensees","alcohol","gaming","commission","ontario","information","bulletin","july","happy_hour","illegal","republic","ireland","since","liquor","act","happy_hour","end","midnight","news","current","affairs","news","augusthe","hospitality","sector","lobby","group","agreed","members","stop","happy_hours","discourage","drinking","government","would","vote","raise","minimum","drinking_age","end","happy_hours","sight","legal","drinking_age","remains","march","law","raise","drinking_age","passed","united_kingdom","glasgow","banned","happy_hours","reduce","drinking","national","mandatory","licensing","conditions","introduced","required","reasonable","steps","taken","prevent","drinks","promotions","effectively","banned","traditional","happy_hours","revision","conditions","licensee","must","ensure","promotions","notake","place","although","account","kind","establishment","track","record","promotions","offer","unlimited","alcohol_free","fixed","discounted","fee","united_states","massachusetts","one","first","ustate","implement","statewide","ban","happy_hours","happy_hour","ban","starts","massachusetts","bars","new_york","times","december","ustates","also","including","indianand","north_carolina","reason","ban","varies","safety","health","reasons","us","military","abolished","happy_hours","military","base","clubs","utah","state","legislature","passed","ban","happy_hours","effective","january","july","pennsylvania","extended","period","time","happy_hour","two","hours","four","hours","june","happy_hour","became","legal","kansas","year","ban","july","year","happy_hour","ban","ended","illinois","extension","certain","file","hosting","websitesuch","use","term","happy_hour","designate","periods","users","complimentary","access","certain","premium","featuresuch","increased","elimination","queues","bypassing","also","free_lunch","another","means","promotion","list","public_house_topics","list","restauranterminology","externalinks_category","parts","day","category","sales","promotion","category_restauranterminology"],"clean_bigrams":[["image","happy"],["righthumb","happy"],["happy","hour"],["hour","sign"],["beers","buy"],["buy","one"],["one","get"],["get","one"],["one","free"],["free","happy"],["happy","hour"],["marketing","term"],["restaurant","bar"],["bar","bowling"],["bowling","alley"],["alley","stadium"],["state","fair"],["fair","state"],["county","fair"],["fair","offers"],["offers","discounts"],["alcoholic","beverage"],["beverage","alcoholic"],["alcoholic","drinksuch"],["beer","wine"],["free","hors"],["menu","items"],["happy","hour"],["words","happy"],["happy","hour"],["appeared","together"],["william","shakespeare"],["king","henry"],["henry","v"],["v","said"],["example","king"],["king","henry"],["henry","says"],["says","therefore"],["happy","hour"],["hour","may"],["may","give"],["tour","expedition"],["phrase","happy"],["happy","hour"],["scheduled","period"],["entertainment","however"],["much","morecent"],["morecent","vintage"],["vintage","one"],["one","possible"],["possible","origin"],["term","happy"],["happy","hour"],["scheduled","period"],["united","states"],["states","navy"],["home","makers"],["makers","called"],["happy","hour"],["hour","social"],["social","organized"],["organized","semi"],["semi","weekly"],["weekly","smokers"],["name","happy"],["happy","hour"],["hour","club"],["club","happy"],["happy","hour"],["hour","social"],["social","club"],["similar","variants"],["social","clubs"],["clubs","primarily"],["women","social"],["started","referring"],["scheduled","smokers"],["happy","hours"],["happy","hours"],["hours","included"],["entertainment","including"],["including","boxing"],["wrestling","matches"],["matches","music"],["music","dancing"],["world","war"],["holding","happy"],["happy","hours"],["prohibition","era"],["theighteenth","amendmento"],["united","states"],["states","constitution"],["constitution","th"],["th","amendment"],["passed","banning"],["banning","alcohol"],["alcohol","consumption"],["consumption","people"],["people","would"],["would","host"],["host","cocktail"],["cocktail","hours"],["hours","also"],["also","known"],["happy","hours"],["alcohol","could"],["served","cocktailounge"],["random","house"],["house","dictionary"],["american","slang"],["slang","dates"],["dates","happy"],["happy","hour"],["afternoon","drinks"],["saturday","evening"],["evening","post"],["post","article"],["military","life"],["article","detailed"],["government","contractors"],["military","personnel"],["missile","tracking"],["tracking","facilities"],["atlantic","except"],["happy","hour"],["hour","athe"],["athe","bar"],["fast","barry"],["big","apple"],["pre","citations"],["happy","hour"],["print","mostly"],["places","near"],["near","naval"],["naval","bases"],["canadian","province"],["alberta","created"],["created","restrictions"],["happy","hours"],["hours","thatook"],["thatook","effect"],["promotions","must"],["must","end"],["andrink","prices"],["prices","must"],["must","conform"],["alberta","gaming"],["liquor","commission"],["commission","alberta"],["alberta","gaming"],["liquor","commission"],["minimum","price"],["price","regulations"],["times","alberta"],["alberta","sets"],["sets","new"],["new","rules"],["improve","bar"],["bar","safety"],["safety","minimum"],["minimum","drink"],["drink","prices"],["prices","restricted"],["restricted","happy"],["happy","hours"],["hours","among"],["among","new"],["new","policies"],["drinking","alberta"],["alberta","news"],["news","release"],["release","july"],["may","vary"],["vary","liquor"],["liquor","prices"],["gaming","commission"],["may","promote"],["phrase","happy"],["happy","hour"],["hour","may"],["liquor","sales"],["sales","licensees"],["licensees","alcohol"],["gaming","commission"],["ontario","information"],["information","bulletin"],["bulletin","july"],["july","happy"],["happy","hour"],["ireland","since"],["liquor","act"],["act","happy"],["happy","hour"],["current","affairs"],["news","augusthe"],["hospitality","sector"],["sector","lobby"],["lobby","group"],["stop","happy"],["happy","hours"],["government","would"],["would","vote"],["minimum","drinking"],["drinking","age"],["happy","hours"],["legal","drinking"],["drinking","age"],["age","remains"],["drinking","age"],["passed","united"],["united","kingdom"],["glasgow","banned"],["banned","happy"],["happy","hours"],["national","mandatory"],["mandatory","licensing"],["licensing","conditions"],["conditions","introduced"],["reasonable","steps"],["drinks","promotions"],["effectively","banned"],["banned","traditional"],["traditional","happy"],["happy","hours"],["licensee","must"],["must","ensure"],["notake","place"],["place","although"],["track","record"],["offer","unlimited"],["alcohol","free"],["discounted","fee"],["fee","united"],["united","states"],["states","massachusetts"],["first","ustate"],["statewide","ban"],["happy","hours"],["happy","hour"],["hour","ban"],["ban","starts"],["massachusetts","bars"],["bars","new"],["new","york"],["york","times"],["times","december"],["ustates","also"],["including","indianand"],["indianand","north"],["north","carolina"],["ban","varies"],["health","reasons"],["us","military"],["military","abolished"],["abolished","happy"],["happy","hours"],["military","base"],["base","clubs"],["utah","state"],["state","legislature"],["legislature","passed"],["happy","hours"],["hours","effective"],["effective","january"],["july","pennsylvania"],["pennsylvania","extended"],["happy","hour"],["two","hours"],["four","hours"],["june","happy"],["happy","hour"],["hour","became"],["became","legal"],["year","ban"],["year","happy"],["happy","hour"],["hour","ban"],["extension","certain"],["certain","file"],["file","hosting"],["hosting","websitesuch"],["term","happy"],["happy","hour"],["designate","periods"],["complimentary","access"],["certain","premium"],["premium","featuresuch"],["also","free"],["free","lunch"],["lunch","another"],["another","means"],["promotion","list"],["public","house"],["house","topics"],["topics","list"],["restauranterminology","externalinks"],["externalinks","category"],["category","drinking"],["drinking","culture"],["culture","category"],["category","parts"],["day","category"],["category","sales"],["sales","promotion"],["promotion","category"],["category","restauranterminology"]],"all_collocations":["image happy","righthumb happy","happy hour","hour sign","beers buy","buy one","one get","get one","one free","free happy","happy hour","marketing term","restaurant bar","bar bowling","bowling alley","alley stadium","state fair","fair state","county fair","fair offers","offers discounts","alcoholic beverage","beverage alcoholic","alcoholic drinksuch","beer wine","free hors","menu items","happy hour","words happy","happy hour","appeared together","william shakespeare","king henry","henry v","v said","example king","king henry","henry says","says therefore","happy hour","hour may","may give","tour expedition","phrase happy","happy hour","scheduled period","entertainment however","much morecent","morecent vintage","vintage one","one possible","possible origin","term happy","happy hour","scheduled period","united states","states navy","home makers","makers called","happy hour","hour social","social organized","organized semi","semi weekly","weekly smokers","name happy","happy hour","hour club","club happy","happy hour","hour social","social club","similar variants","social clubs","clubs primarily","women social","started referring","scheduled smokers","happy hours","happy hours","hours included","entertainment including","including boxing","wrestling matches","matches music","music dancing","world war","holding happy","happy hours","prohibition era","theighteenth amendmento","united states","states constitution","constitution th","th amendment","passed banning","banning alcohol","alcohol consumption","consumption people","people would","would host","host cocktail","cocktail hours","hours also","also known","happy hours","alcohol could","served cocktailounge","random house","house dictionary","american slang","slang dates","dates happy","happy hour","afternoon drinks","saturday evening","evening post","post article","military life","article detailed","government contractors","military personnel","missile tracking","tracking facilities","atlantic except","happy hour","hour athe","athe bar","fast barry","big apple","pre citations","happy hour","print mostly","places near","near naval","naval bases","canadian province","alberta created","created restrictions","happy hours","hours thatook","thatook effect","promotions must","must end","andrink prices","prices must","must conform","alberta gaming","liquor commission","commission alberta","alberta gaming","liquor commission","minimum price","price regulations","times alberta","alberta sets","sets new","new rules","improve bar","bar safety","safety minimum","minimum drink","drink prices","prices restricted","restricted happy","happy hours","hours among","among new","new policies","drinking alberta","alberta news","news release","release july","may vary","vary liquor","liquor prices","gaming commission","may promote","phrase happy","happy hour","hour may","liquor sales","sales licensees","licensees alcohol","gaming commission","ontario information","information bulletin","bulletin july","july happy","happy hour","ireland since","liquor act","act happy","happy hour","current affairs","news augusthe","hospitality sector","sector lobby","lobby group","stop happy","happy hours","government would","would vote","minimum drinking","drinking age","happy hours","legal drinking","drinking age","age remains","drinking age","passed united","united kingdom","glasgow banned","banned happy","happy hours","national mandatory","mandatory licensing","licensing conditions","conditions introduced","reasonable steps","drinks promotions","effectively banned","banned traditional","traditional happy","happy hours","licensee must","must ensure","notake place","place although","track record","offer unlimited","alcohol free","discounted fee","fee united","united states","states massachusetts","first ustate","statewide ban","happy hours","happy hour","hour ban","ban starts","massachusetts bars","bars new","new york","york times","times december","ustates also","including indianand","indianand north","north carolina","ban varies","health reasons","us military","military abolished","abolished happy","happy hours","military base","base clubs","utah state","state legislature","legislature passed","happy hours","hours effective","effective january","july pennsylvania","pennsylvania extended","happy hour","two hours","four hours","june happy","happy hour","hour became","became legal","year ban","year happy","happy hour","hour ban","extension certain","certain file","file hosting","hosting websitesuch","term happy","happy hour","designate periods","complimentary access","certain premium","premium featuresuch","also free","free lunch","lunch another","another means","promotion list","public house","house topics","topics list","restauranterminology externalinks","externalinks category","category drinking","drinking culture","culture category","category parts","day category","category sales","sales promotion","promotion category","category restauranterminology"],"new_description":"image happy righthumb happy_hour sign pub jerusalem hebrew beers buy one get one free happy_hour marketing term period time venue restaurant bar bowling alley stadium state fair state county fair offers discounts alcoholic_beverage alcoholic_drinksuch beer wine cocktail free hors appetizers menu_items often happy_hour words happy_hour appeared together centuries describing act scene william shakespeare king henry v said written example king henry says therefore lords happy_hour may give tour expedition use phrase happy_hour refer scheduled period entertainment however much morecent vintage one possible origin term happy_hour sense scheduled period entertainment united_states navy early group home makers called happy_hour social organized semi weekly smokers board name happy_hour club happy_hour social club similar variants use names social clubs primarily women social june crew arkansas started referring scheduled smokers happy_hours happy_hours included variety entertainment including boxing wrestling matches music dancing movies thend world_war practice holding happy_hours spread navy idea drinking dinner roots prohibition era theighteenth amendmento united_states constitution th amendment act passed banning alcohol consumption people would host cocktail hours also_known happy_hours speakeasy restaurants alcohol could served cocktailounge continued trend drinking dinner random_house dictionary american slang dates happy_hour term afternoon drinks bar saturday evening post article military life article detailed lives government contractors military personnel worked missile tracking facilities caribbeand atlantic except spend much happy_hour athe bar money fast barry dictionary big apple pre citations happy_hour print mostly places near naval bases california early canadian province alberta created restrictions happy_hours thatook effect august promotions must end andrink prices must conform alberta gaming liquor commission alberta gaming liquor commission minimum price regulations times alberta sets new rules improve bar safety minimum drink prices restricted happy_hours among new policies drinking alberta news release july ontario may vary liquor prices long stay minimum alcohol gaming commission ontario permitted advertise prices manner may promote consumption particular phrase happy_hour may used advertisement promotion liquor liquor sales licensees alcohol gaming commission ontario information bulletin july happy_hour illegal republic ireland since liquor act happy_hour end midnight news current affairs news augusthe hospitality sector lobby group agreed members stop happy_hours discourage drinking government would vote raise minimum drinking_age end happy_hours sight legal drinking_age remains march law raise drinking_age passed united_kingdom glasgow banned happy_hours reduce drinking national mandatory licensing conditions introduced required reasonable steps taken prevent drinks promotions effectively banned traditional happy_hours revision conditions licensee must ensure promotions notake place although account kind establishment track record promotions offer unlimited alcohol_free fixed discounted fee united_states massachusetts one first ustate implement statewide ban happy_hours happy_hour ban starts massachusetts bars new_york times december ustates also including indianand north_carolina reason ban varies safety health reasons us military abolished happy_hours military base clubs utah state legislature passed ban happy_hours effective january july pennsylvania extended period time happy_hour two hours four hours june happy_hour became legal kansas year ban july year happy_hour ban ended illinois extension certain file hosting websitesuch use term happy_hour designate periods users complimentary access certain premium featuresuch increased elimination queues bypassing also free_lunch another means promotion list public_house_topics list restauranterminology externalinks_category drinking_culture_category parts day category sales promotion category_restauranterminology"},{"title":"Haps Magazine","description":"haps magazine also known as haps is an english online magazine located in busan south korea that focuses on lifestylentertainment and expat life on the korean peninsula it was founded in and has become one of korea s most popular english resources for news and information while the focus of the magazine is mostly on events and happenings around the busand southeastern areas of korea the magazine has claimed some international fame for some of its articles editor in chief bobby mcgill s report on k pop singer psy s past anti american actionsaw numerous international media outlets including time magazine time the washington post and the new york post help break the story which made the gangnam stylegend apologize for his actions haps also received more international attention when a report about south korean baseball player kim tae kyun baseball born kim tae kyun made insensitive remarks towards african american pitcher shane youman the report helped contribute to the national human rights commission of korea demanding sensitivity training sensitivity training education to prevent similaracial discrimination remarks among sports professionals in korea haps was established in june in the haeundae district in busan the print publication ceased to exist inovember and now focuses only online content including adding a korean language section the site changed from busanhapscom to its new domain at hapskoreacom in may haps was voted the best city magazine in koreathe k blog awards held by the korean observer externalinks official website category establishments in south korea category city guides category english language magazines category lifestyle magazines category local interest magazines category magazinestablished in category south korean magazines category bi monthly magazines category media in busan","main_words":["haps","magazine","also_known","haps","english","online","magazine","located","south_korea","focuses","expat","life","korean","peninsula","founded","become_one","korea","popular","english","resources","news","information","focus","magazine","mostly","events","happenings","around","southeastern","areas","korea","magazine","claimed","international","fame","articles","editor","chief","bobby","report","k","pop","singer","psy","past","anti","american","numerous","international","media","outlets","including","time","magazine_time","washington_post","new_york","post","help","break","story","made","actions","haps","also","received","international","attention","report","south_korean","baseball","player","kim","baseball","born","kim","made","remarks","towards","african_american","shane","report","helped","contribute","national","human_rights","commission","korea","demanding","sensitivity","training","sensitivity","training","education","prevent","discrimination","remarks","among","sports","professionals","korea","haps","established","june","district","print","publication","ceased","exist","inovember","focuses","online","content","including","adding","korean","language","section","site","changed","new","domain","may","haps","voted","best","city","magazine","k","blog","awards","held","korean","observer","externalinks_official_website_category_establishments","south_korea","category_city_guides","category_english_language_magazines","category","category_magazinestablished","category","south_korean","magazines_category","monthly_magazines_category","media"],"clean_bigrams":[["haps","magazine"],["magazine","also"],["also","known"],["english","online"],["online","magazine"],["magazine","located"],["south","korea"],["expat","life"],["korean","peninsula"],["become","one"],["popular","english"],["english","resources"],["happenings","around"],["southeastern","areas"],["international","fame"],["articles","editor"],["chief","bobby"],["k","pop"],["pop","singer"],["singer","psy"],["past","anti"],["anti","american"],["numerous","international"],["international","media"],["media","outlets"],["outlets","including"],["including","time"],["time","magazine"],["magazine","time"],["washington","post"],["new","york"],["york","post"],["post","help"],["help","break"],["actions","haps"],["haps","also"],["also","received"],["international","attention"],["south","korean"],["korean","baseball"],["baseball","player"],["player","kim"],["baseball","born"],["born","kim"],["remarks","towards"],["towards","african"],["african","american"],["report","helped"],["helped","contribute"],["national","human"],["human","rights"],["rights","commission"],["korea","demanding"],["demanding","sensitivity"],["sensitivity","training"],["training","sensitivity"],["sensitivity","training"],["training","education"],["discrimination","remarks"],["remarks","among"],["among","sports"],["sports","professionals"],["korea","haps"],["print","publication"],["publication","ceased"],["exist","inovember"],["online","content"],["content","including"],["including","adding"],["korean","language"],["language","section"],["site","changed"],["new","domain"],["may","haps"],["best","city"],["city","magazine"],["k","blog"],["blog","awards"],["awards","held"],["korean","observer"],["observer","externalinks"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["south","korea"],["korea","category"],["category","city"],["city","guides"],["guides","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","south"],["south","korean"],["korean","magazines"],["magazines","category"],["monthly","magazines"],["magazines","category"],["category","media"]],"all_collocations":["haps magazine","magazine also","also known","english online","online magazine","magazine located","south korea","expat life","korean peninsula","become one","popular english","english resources","happenings around","southeastern areas","international fame","articles editor","chief bobby","k pop","pop singer","singer psy","past anti","anti american","numerous international","international media","media outlets","outlets including","including time","time magazine","magazine time","washington post","new york","york post","post help","help break","actions haps","haps also","also received","international attention","south korean","korean baseball","baseball player","player kim","baseball born","born kim","remarks towards","towards african","african american","report helped","helped contribute","national human","human rights","rights commission","korea demanding","demanding sensitivity","sensitivity training","training sensitivity","sensitivity training","training education","discrimination remarks","remarks among","among sports","sports professionals","korea haps","print publication","publication ceased","exist inovember","online content","content including","including adding","korean language","language section","site changed","new domain","may haps","best city","city magazine","k blog","blog awards","awards held","korean observer","observer externalinks","externalinks official","official website","website category","category establishments","south korea","korea category","category city","city guides","guides category","category english","english language","language magazines","magazines category","category lifestyle","lifestyle magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category south","south korean","korean magazines","magazines category","monthly magazines","magazines category","category media"],"new_description":"haps magazine also_known haps english online magazine located south_korea focuses expat life korean peninsula founded become_one korea popular english resources news information focus magazine mostly events happenings around southeastern areas korea magazine claimed international fame articles editor chief bobby report k pop singer psy past anti american numerous international media outlets including time magazine_time washington_post new_york post help break story made actions haps also received international attention report south_korean baseball player kim baseball born kim made remarks towards african_american shane report helped contribute national human_rights commission korea demanding sensitivity training sensitivity training education prevent discrimination remarks among sports professionals korea haps established june district print publication ceased exist inovember focuses online content including adding korean language section site changed new domain may haps voted best city magazine k blog awards held korean observer externalinks_official_website_category_establishments south_korea category_city_guides category_english_language_magazines category lifestyle_magazines_category_local_interest_magazines category_magazinestablished category south_korean magazines_category monthly_magazines_category media"},{"title":"Harden's","description":"harden s is a uk restaurant guide publishing print online and mobile reviews and ratings for both london and uk restaurants like new york s zagat survey which no longer has a london edition the ratings and reviews are based on the results of a reader survey and were at one point also based on the personal visits of brothers and founders richard and peter harden the survey on which the guide is based is also used to produce the sunday times food list annual publication featuring the top restaurants in the uk it is published annually and in addition to evaluating individual restaurants and best of it provides analysis of the restaurant scene andevelopments over the past year history the london guide was first published in and based on experiences with restaurant guides inew york city presumably zagat survey the survey based nyc restaurant guide and sseldorf in the uk guide wastarted externalinks harden s homepage category publications established in category restaurant guides category travel guide books","main_words":["harden","uk","restaurant_guide","publishing","print","online","mobile","reviews","ratings","london_uk","restaurants","like","new_york","zagat","survey","longer","london_edition","ratings","reviews","based","results","reader","survey","one","point","also","based","personal","visits","brothers","founders","richard","peter","harden","survey","guide","based","also_used","produce","sunday_times","food","list","annual","publication","featuring","top","restaurants","uk","published","annually","addition","evaluating","individual","restaurants","best","provides","analysis","restaurant","scene","past","year","history","london","guide","first_published","based","experiences","restaurant_guides","inew_york_city","presumably","zagat","survey","survey","based","nyc","restaurant_guide","sseldorf","uk","guide","wastarted","externalinks","harden","homepage","category_publications_established","category_restaurant","guides_category_travel_guide_books"],"clean_bigrams":[["uk","restaurant"],["restaurant","guide"],["guide","publishing"],["publishing","print"],["print","online"],["mobile","reviews"],["uk","restaurants"],["restaurants","like"],["like","new"],["new","york"],["zagat","survey"],["london","edition"],["reader","survey"],["one","point"],["point","also"],["also","based"],["personal","visits"],["founders","richard"],["peter","harden"],["also","used"],["sunday","times"],["times","food"],["food","list"],["list","annual"],["annual","publication"],["publication","featuring"],["top","restaurants"],["published","annually"],["evaluating","individual"],["individual","restaurants"],["provides","analysis"],["restaurant","scene"],["past","year"],["year","history"],["london","guide"],["first","published"],["restaurant","guides"],["guides","inew"],["inew","york"],["york","city"],["city","presumably"],["presumably","zagat"],["zagat","survey"],["survey","based"],["based","nyc"],["nyc","restaurant"],["restaurant","guide"],["uk","guide"],["guide","wastarted"],["wastarted","externalinks"],["externalinks","harden"],["homepage","category"],["category","publications"],["publications","established"],["category","restaurant"],["restaurant","guides"],["guides","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["uk restaurant","restaurant guide","guide publishing","publishing print","print online","mobile reviews","uk restaurants","restaurants like","like new","new york","zagat survey","london edition","reader survey","one point","point also","also based","personal visits","founders richard","peter harden","also used","sunday times","times food","food list","list annual","annual publication","publication featuring","top restaurants","published annually","evaluating individual","individual restaurants","provides analysis","restaurant scene","past year","year history","london guide","first published","restaurant guides","guides inew","inew york","york city","city presumably","presumably zagat","zagat survey","survey based","based nyc","nyc restaurant","restaurant guide","uk guide","guide wastarted","wastarted externalinks","externalinks harden","homepage category","category publications","publications established","category restaurant","restaurant guides","guides category","category travel","travel guide","guide books"],"new_description":"harden uk restaurant_guide publishing print online mobile reviews ratings london_uk restaurants like new_york zagat survey longer london_edition ratings reviews based results reader survey one point also based personal visits brothers founders richard peter harden survey guide based also_used produce sunday_times food list annual publication featuring top restaurants uk published annually addition evaluating individual restaurants best provides analysis restaurant scene past year history london guide first_published based experiences restaurant_guides inew_york_city presumably zagat survey survey based nyc restaurant_guide sseldorf uk guide wastarted externalinks harden homepage category_publications_established category_restaurant guides_category_travel_guide_books"},{"title":"Harper's Hand-Book for Travellers","description":"image harpers hand book for travellers in europe and theast coverpng thumb right harper s hand book for travellers in europe and theast harper s hand book for travellers est was a series of travel guide book s published by harper brothers of new york each annual edition contained information for tourists in europe and parts of the middleasthe indefatigable william pembroke fetridge wrote most of the guides from until at least in its day the harper s hand book competed with popular guidesuch as baedeker guides baedeker bradshaw s guide bradshaw s and murray s handbooks for travellers murray s in critic william dean howells found harper s hand book chatty and sociable readers included lucy bairdaughter of spencer f baird furthereading index v great britain ireland france belgium and holland v germany italy egypt syria turkey and greece index v switzerland tyrol denmark norway sweden russiand spain v germany italy egypt syria turkey and greece v switzerland tyrol denmark norway sweden russiand spain v germany italy egypt syria turkey and greece index v switzerland tyrol denmark norway sweden russiand spain v germany austria italy egypt syria turkey and greece index v great britain ireland france belgium and holland index v germany austria italy egypt syria turkey and greecexternalinks hathi trust category travel guide books category series of books category publications established in category establishments inew york category tourism in europe","main_words":["image","hand_book","travellers","europe","theast","coverpng_thumb","right","harper","hand_book","travellers","europe","theast","harper","hand_book","travellers","est","series","travel_guide_book","published","harper","brothers","new_york","annual","edition","contained","information","tourists","europe","parts","william","wrote","guides","least","day","harper","hand_book","competed","popular","guidesuch","baedeker_guides","baedeker","bradshaw","guide","bradshaw","murray","handbooks","travellers","murray","critic","william","dean","found","harper","hand_book","readers","included","lucy","spencer","f","baird","furthereading","index_v","great_britain","ireland","france","belgium","holland","v","germany","italy","egypt","syria","turkey","greece","index_v","switzerland","tyrol","denmark","norway","sweden","russiand","spain","v","germany","italy","egypt","syria","turkey","greece","v","switzerland","tyrol","denmark","norway","sweden","russiand","spain","v","germany","italy","egypt","syria","turkey","greece","index_v","switzerland","tyrol","denmark","norway","sweden","russiand","spain","v","germany","austria","italy","egypt","syria","turkey","greece","index_v","great_britain","ireland","france","belgium","holland","index_v","germany","austria","italy","egypt","syria","turkey","hathi","trust","category_travel_guide_books","category_series","books_category","publications_established","category_establishments","inew_york","category_tourism","europe"],"clean_bigrams":[["hand","book"],["theast","coverpng"],["coverpng","thumb"],["thumb","right"],["right","harper"],["hand","book"],["theast","harper"],["hand","book"],["travellers","est"],["travel","guide"],["guide","book"],["harper","brothers"],["new","york"],["annual","edition"],["edition","contained"],["contained","information"],["hand","book"],["book","competed"],["popular","guidesuch"],["baedeker","guides"],["guides","baedeker"],["baedeker","bradshaw"],["guide","bradshaw"],["travellers","murray"],["critic","william"],["william","dean"],["found","harper"],["hand","book"],["readers","included"],["included","lucy"],["spencer","f"],["f","baird"],["baird","furthereading"],["furthereading","index"],["index","v"],["v","great"],["great","britain"],["britain","ireland"],["ireland","france"],["france","belgium"],["holland","v"],["v","germany"],["germany","italy"],["italy","egypt"],["egypt","syria"],["syria","turkey"],["greece","index"],["index","v"],["v","switzerland"],["switzerland","tyrol"],["tyrol","denmark"],["denmark","norway"],["norway","sweden"],["sweden","russiand"],["russiand","spain"],["spain","v"],["v","germany"],["germany","italy"],["italy","egypt"],["egypt","syria"],["syria","turkey"],["greece","v"],["v","switzerland"],["switzerland","tyrol"],["tyrol","denmark"],["denmark","norway"],["norway","sweden"],["sweden","russiand"],["russiand","spain"],["spain","v"],["v","germany"],["germany","italy"],["italy","egypt"],["egypt","syria"],["syria","turkey"],["greece","index"],["index","v"],["v","switzerland"],["switzerland","tyrol"],["tyrol","denmark"],["denmark","norway"],["norway","sweden"],["sweden","russiand"],["russiand","spain"],["spain","v"],["v","germany"],["germany","austria"],["austria","italy"],["italy","egypt"],["egypt","syria"],["syria","turkey"],["greece","index"],["index","v"],["v","great"],["great","britain"],["britain","ireland"],["ireland","france"],["france","belgium"],["holland","index"],["index","v"],["v","germany"],["germany","austria"],["austria","italy"],["italy","egypt"],["egypt","syria"],["syria","turkey"],["hathi","trust"],["trust","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","establishments"],["establishments","inew"],["inew","york"],["york","category"],["category","tourism"]],"all_collocations":["hand book","theast coverpng","coverpng thumb","right harper","hand book","theast harper","hand book","travellers est","travel guide","guide book","harper brothers","new york","annual edition","edition contained","contained information","hand book","book competed","popular guidesuch","baedeker guides","guides baedeker","baedeker bradshaw","guide bradshaw","travellers murray","critic william","william dean","found harper","hand book","readers included","included lucy","spencer f","f baird","baird furthereading","furthereading index","index v","v great","great britain","britain ireland","ireland france","france belgium","holland v","v germany","germany italy","italy egypt","egypt syria","syria turkey","greece index","index v","v switzerland","switzerland tyrol","tyrol denmark","denmark norway","norway sweden","sweden russiand","russiand spain","spain v","v germany","germany italy","italy egypt","egypt syria","syria turkey","greece v","v switzerland","switzerland tyrol","tyrol denmark","denmark norway","norway sweden","sweden russiand","russiand spain","spain v","v germany","germany italy","italy egypt","egypt syria","syria turkey","greece index","index v","v switzerland","switzerland tyrol","tyrol denmark","denmark norway","norway sweden","sweden russiand","russiand spain","spain v","v germany","germany austria","austria italy","italy egypt","egypt syria","syria turkey","greece index","index v","v great","great britain","britain ireland","ireland france","france belgium","holland index","index v","v germany","germany austria","austria italy","italy egypt","egypt syria","syria turkey","hathi trust","trust category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category establishments","establishments inew","inew york","york category","category tourism"],"new_description":"image hand_book travellers europe theast coverpng_thumb right harper hand_book travellers europe theast harper hand_book travellers est series travel_guide_book published harper brothers new_york annual edition contained information tourists europe parts william wrote guides least day harper hand_book competed popular guidesuch baedeker_guides baedeker bradshaw guide bradshaw murray handbooks travellers murray critic william dean found harper hand_book readers included lucy spencer f baird furthereading index_v great_britain ireland france belgium holland v germany italy egypt syria turkey greece index_v switzerland tyrol denmark norway sweden russiand spain v germany italy egypt syria turkey greece v switzerland tyrol denmark norway sweden russiand spain v germany italy egypt syria turkey greece index_v switzerland tyrol denmark norway sweden russiand spain v germany austria italy egypt syria turkey greece index_v great_britain ireland france belgium holland index_v germany austria italy egypt syria turkey hathi trust category_travel_guide_books category_series books_category publications_established category_establishments inew_york category_tourism europe"},{"title":"Harry's Cafe de Wheels","description":"dissolved footnotes harry s cafe de wheels is an iconic pie cart located in woolloomooloo sydney new south wales australia on cowper wharf road near the finger wharf and fleet baseast of garden island new south wales garden island navy base opposite the woolloomooloo bay hotel other harry s cafe de wheels operate in burwood new south wales burwood capitol theatre sydney capitol square haymarket new south wales haymarket george street sydney liverpool new south wales liverpool wharf road newcastle new south wales newcastle using a converted sydney r class tram north parramatta penrith new south wales penrith tempe new south wales tempe they are best known for their dish tiger pie a type of australiand new zealand meat pie australian meat pie named after the original founder of harry s harry s cafe de wheels is a moveable food van similar to those found at funfair s with a hung awning it has been moved a number of times in its history buthe van is now permanently fixed on a masonry base the caravan walls have been decorated with custom painted murals by alan puckett a motoring art specialisthe inside walls of the cart are decorated with pictures and murals ofamous visitors the site is considered a sydney icon and an institution in the local area the significance of the location is reflected by its inclusion the new south wales national trust of australia national trust register the version of harry s pie cart retired after years of use is now located in the powerhouse museum collection harry s cafe de wheels pie cart powerhouse museum harry s pies are supplied from hannah s pies its factory in the inner city suburb of ultimo new south wales ultimo file harry s cafe de wheels at powerhouse museumjpg thumb harry s cafe de wheels c at powerhouse museum file harryshistoricallocationsjpg thumb harryshistoricallocations historicalocations of harry s cafe de wheels on cowper wharf road woolloomooloo a b c d e present day note map shows current position of cowper wharf road the location was on the footpath of cowper wharf road before the road was relocated further west in harry tiger edwards opened the original caravan cafe named simply harry s near the gates of the woolloomooloo naval yard in he served withe second australian imperial force in world war ii during which time the cafe was not operational the cart re opened upon his return from the war in the name cafe de wheels came about because of the requirement from the city of sydney city council that mobile food caravans had to move a minimum of inches cm each day the cart has been moved to various locations on cowper wharf road mostly due to re development work in the woolloomooloo bay area localegend tells thathe name was temporarily changed to cafe de axle at one point when the wheels were stolen it was referred to as harry the axle s for most of the sixties throughoutheastern suburbsydney eastern suburbs of sydney as the years passed harry s cafe de wheels gained new fame as a tourist attraction a visito the caravan became a must for visiting celebritiesuch as frank sinatra robert mitchum and marlene dietrich in colonel sanderstopped at harry s and enjoyed the food so much that he ate three pies and peas whileaning on his walking stick in front of the caravan a picture of sanders taken during the visit still hangs in the caravan today harry specialises today in the same basic food that was popular back in the such as pies and mushy peas during the s harry s introduced hot dogs mostly to appease the american sailors the pies and hotdogs available on the menu include the famous tiger pie and its variations bacon and cheese tiger veggie tiger pie and peaseafood pie hot dog with veggies hot dog de wheels chilli dog dirty sanchez file harrys haymarketjpg thumb right hay st haymarket kiosk behind capitol theatre sydney capitol theatre in popular culture australian singer peter blakeley named his album harry s cafe de wheels with a photon the cover the cafe was featured in the amazing race second season of the reality television show the amazing race in the challenge was for a fast forward and the racers who chose to do the fast forward had to eat pies it was also featured in hamerotz lamillion the israeli version of the show harry s cafe de wheels was often seen in the australian television series waterats tv series waterats the discworld novel the last continent which parodies various aspects of australian culture includes cut me own throat dibbler s cafe de feet which is a tray around the proprieter s neck it was featured on the sydney episode of bizarre foods with andrew zimmern on the travel channel it was featured in the bachelor australia season episode of television series the bachelor australian tv series the bachelor other sources harry s cafe de wheels website accessed july national trust register harry s cafe de wheels register entry accessed july burke n cafe de wheels and a danger to walkers the daily telegraph jinman r crash courses the sydney morning herald externalinks powerhouse museum harry s cafe de wheels harry s caf de wheels national trust articlexplaining the significance of the structure includes historic images including one of the late colonel sanders partaking of the sp cialit s d hote category culture of sydney category buildings and structures in sydney category establishments in australia category companies based in sydney category food trucks category fast food chains of australia","main_words":["dissolved","footnotes","harry","cafe_de_wheels","iconic","pie","cart","located","woolloomooloo","sydney","new_south_wales","australia","cowper","wharf","road","near","finger","wharf","fleet","garden","island","new_south_wales","garden","island","navy","base","opposite","woolloomooloo","bay","hotel","harry","cafe_de_wheels","operate","new_south_wales","capitol","theatre","sydney","capitol","square","haymarket","new_south_wales","haymarket","george","street","sydney","liverpool","new_south_wales","liverpool","wharf","road","newcastle","new_south_wales","newcastle","using","converted","sydney","r","class","tram","north","new_south_wales","tempe","new_south_wales","tempe","best_known","dish","tiger","pie","type","australiand_new_zealand","meat","pie","australian","meat","pie","named","original","founder","harry","harry","cafe_de_wheels","food","van","similar","found","funfair","hung","moved","number","times","history","buthe","van","permanently","fixed","base","caravan","walls","decorated","custom","painted","murals","alan","motoring","art","inside","walls","cart","decorated","pictures","murals","ofamous","visitors","site","considered","sydney","icon","institution","local","area","significance","location","reflected","inclusion","new_south_wales","national_trust","australia","national_trust","register","version","harry","pie","cart","retired","years","use","located","powerhouse","museum","collection","harry","cafe_de_wheels","pie","cart","powerhouse","museum","harry","pies","supplied","hannah","pies","factory","inner","city","suburb","new_south_wales","file","harry","cafe_de_wheels","powerhouse","museumjpg","thumb","harry","cafe_de_wheels","c","powerhouse","museum","file","thumb","harry","cafe_de_wheels","cowper","wharf","road","woolloomooloo","b","c","e","present_day","note","map","shows","current","position","cowper","wharf","road","location","cowper","wharf","road","road","relocated","west","harry","tiger","edwards","opened","original","caravan","cafe","named","simply","harry","near","gates","woolloomooloo","naval","yard","served","withe","second","australian","imperial","force","world_war","ii","time","cafe","operational","cart","opened","upon","return","war","name","cafe_de_wheels","came","requirement","city","sydney","city_council","mobile_food","caravans","move","minimum","inches","day","cart","moved","various_locations","cowper","wharf","road","mostly","due","development","work","woolloomooloo","bay_area","tells","thathe","name","temporarily","changed","cafe_de","one","point","wheels","stolen","referred","harry","eastern","suburbs","sydney","years","passed","harry","cafe_de_wheels","gained","new","fame","tourist_attraction","visito","caravan","became","must","visiting","frank","robert","dietrich","colonel","harry","enjoyed","food","much","ate","three","pies","peas","walking","stick","front","caravan","picture","sanders","taken","visit","still","hangs","caravan","today","harry","today","basic","food","popular","back","pies","peas","harry","introduced","hot_dogs","mostly","american","sailors","pies","available","menu","include","famous","tiger","pie","variations","bacon","cheese","tiger","tiger","pie","pie","hot_dog","hot_dog","dog","dirty","file","thumb","right","hay","st","haymarket","kiosk","behind","capitol","theatre","sydney","capitol","theatre","popular_culture","australian","singer","peter","named","album","harry","cafe_de_wheels","cover","cafe","featured","amazing","race","second","season","reality","television","show","amazing","race","challenge","fast","forward","racers","chose","fast","forward","eat","pies","also","featured","israeli","version","show","harry","cafe_de_wheels","often_seen","australian_television_series","tv_series","novel","last","continent","various","aspects","australian","culture","includes","cut","cafe_de","feet","tray","around","neck","featured","sydney","episode","bizarre","foods","andrew","travel_channel","featured","bachelor","australia","season","episode","television_series","bachelor","australian","tv_series","bachelor","sources","harry","cafe_de_wheels","website_accessed","july","national_trust","register","harry","cafe_de_wheels","register","entry","accessed_july","burke","n","cafe_de_wheels","danger","walkers","daily_telegraph","r","crash","courses","sydney","morning","herald","externalinks","powerhouse","museum","harry","cafe_de_wheels","harry","caf_de","wheels","national_trust","significance","structure","includes","historic","images","including","one","late","colonel","sanders","category_culture","buildings","structures","food_trucks","category_fast_food","chains","australia"],"clean_bigrams":[["dissolved","footnotes"],["footnotes","harry"],["cafe","de"],["de","wheels"],["iconic","pie"],["pie","cart"],["cart","located"],["woolloomooloo","sydney"],["sydney","new"],["new","south"],["south","wales"],["wales","australia"],["cowper","wharf"],["wharf","road"],["road","near"],["finger","wharf"],["garden","island"],["island","new"],["new","south"],["south","wales"],["wales","garden"],["garden","island"],["island","navy"],["navy","base"],["base","opposite"],["woolloomooloo","bay"],["bay","hotel"],["cafe","de"],["de","wheels"],["wheels","operate"],["new","south"],["south","wales"],["capitol","theatre"],["theatre","sydney"],["sydney","capitol"],["capitol","square"],["square","haymarket"],["haymarket","new"],["new","south"],["south","wales"],["wales","haymarket"],["haymarket","george"],["george","street"],["street","sydney"],["sydney","liverpool"],["liverpool","new"],["new","south"],["south","wales"],["wales","liverpool"],["liverpool","wharf"],["wharf","road"],["road","newcastle"],["newcastle","new"],["new","south"],["south","wales"],["wales","newcastle"],["newcastle","using"],["converted","sydney"],["sydney","r"],["r","class"],["class","tram"],["tram","north"],["new","south"],["south","wales"],["wales","tempe"],["tempe","new"],["new","south"],["south","wales"],["wales","tempe"],["best","known"],["dish","tiger"],["tiger","pie"],["australiand","new"],["new","zealand"],["zealand","meat"],["meat","pie"],["pie","australian"],["australian","meat"],["meat","pie"],["pie","named"],["original","founder"],["cafe","de"],["de","wheels"],["food","van"],["van","similar"],["history","buthe"],["buthe","van"],["permanently","fixed"],["caravan","walls"],["custom","painted"],["painted","murals"],["motoring","art"],["inside","walls"],["murals","ofamous"],["ofamous","visitors"],["sydney","icon"],["local","area"],["new","south"],["south","wales"],["wales","national"],["national","trust"],["australia","national"],["national","trust"],["trust","register"],["pie","cart"],["cart","retired"],["powerhouse","museum"],["museum","collection"],["collection","harry"],["cafe","de"],["de","wheels"],["wheels","pie"],["pie","cart"],["cart","powerhouse"],["powerhouse","museum"],["museum","harry"],["inner","city"],["city","suburb"],["new","south"],["south","wales"],["file","harry"],["cafe","de"],["de","wheels"],["powerhouse","museumjpg"],["museumjpg","thumb"],["thumb","harry"],["cafe","de"],["de","wheels"],["wheels","c"],["powerhouse","museum"],["museum","file"],["thumb","harry"],["cafe","de"],["de","wheels"],["cowper","wharf"],["wharf","road"],["road","woolloomooloo"],["b","c"],["e","present"],["present","day"],["day","note"],["note","map"],["map","shows"],["shows","current"],["current","position"],["cowper","wharf"],["wharf","road"],["cowper","wharf"],["wharf","road"],["harry","tiger"],["tiger","edwards"],["edwards","opened"],["original","caravan"],["caravan","cafe"],["cafe","named"],["named","simply"],["simply","harry"],["woolloomooloo","naval"],["naval","yard"],["served","withe"],["withe","second"],["second","australian"],["australian","imperial"],["imperial","force"],["world","war"],["war","ii"],["opened","upon"],["name","cafe"],["cafe","de"],["de","wheels"],["wheels","came"],["sydney","city"],["city","council"],["mobile","food"],["food","caravans"],["various","locations"],["cowper","wharf"],["wharf","road"],["road","mostly"],["mostly","due"],["development","work"],["woolloomooloo","bay"],["bay","area"],["tells","thathe"],["thathe","name"],["temporarily","changed"],["cafe","de"],["one","point"],["eastern","suburbs"],["years","passed"],["passed","harry"],["cafe","de"],["de","wheels"],["wheels","gained"],["gained","new"],["new","fame"],["tourist","attraction"],["caravan","became"],["ate","three"],["three","pies"],["walking","stick"],["sanders","taken"],["visit","still"],["still","hangs"],["caravan","today"],["today","harry"],["basic","food"],["popular","back"],["introduced","hot"],["hot","dogs"],["dogs","mostly"],["american","sailors"],["menu","include"],["famous","tiger"],["tiger","pie"],["variations","bacon"],["cheese","tiger"],["tiger","pie"],["pie","hot"],["hot","dog"],["hot","dog"],["dog","de"],["de","wheels"],["dog","dirty"],["thumb","right"],["right","hay"],["hay","st"],["st","haymarket"],["haymarket","kiosk"],["kiosk","behind"],["behind","capitol"],["capitol","theatre"],["theatre","sydney"],["sydney","capitol"],["capitol","theatre"],["popular","culture"],["culture","australian"],["australian","singer"],["singer","peter"],["album","harry"],["cafe","de"],["de","wheels"],["amazing","race"],["race","second"],["second","season"],["reality","television"],["television","show"],["amazing","race"],["fast","forward"],["fast","forward"],["eat","pies"],["also","featured"],["israeli","version"],["show","harry"],["cafe","de"],["de","wheels"],["often","seen"],["australian","television"],["television","series"],["tv","series"],["last","continent"],["various","aspects"],["australian","culture"],["culture","includes"],["includes","cut"],["cafe","de"],["de","feet"],["tray","around"],["sydney","episode"],["bizarre","foods"],["travel","channel"],["bachelor","australia"],["australia","season"],["season","episode"],["television","series"],["bachelor","australian"],["australian","tv"],["tv","series"],["sources","harry"],["cafe","de"],["de","wheels"],["wheels","website"],["website","accessed"],["accessed","july"],["july","national"],["national","trust"],["trust","register"],["register","harry"],["cafe","de"],["de","wheels"],["wheels","register"],["register","entry"],["entry","accessed"],["accessed","july"],["july","burke"],["burke","n"],["n","cafe"],["cafe","de"],["de","wheels"],["daily","telegraph"],["r","crash"],["crash","courses"],["sydney","morning"],["morning","herald"],["herald","externalinks"],["externalinks","powerhouse"],["powerhouse","museum"],["museum","harry"],["cafe","de"],["de","wheels"],["wheels","harry"],["caf","de"],["de","wheels"],["wheels","national"],["national","trust"],["structure","includes"],["includes","historic"],["historic","images"],["images","including"],["including","one"],["late","colonel"],["colonel","sanders"],["category","culture"],["sydney","category"],["category","buildings"],["sydney","category"],["category","establishments"],["australia","category"],["category","companies"],["companies","based"],["sydney","category"],["category","food"],["food","trucks"],["trucks","category"],["category","fast"],["fast","food"],["food","chains"]],"all_collocations":["dissolved footnotes","footnotes harry","cafe de","de wheels","iconic pie","pie cart","cart located","woolloomooloo sydney","sydney new","new south","south wales","wales australia","cowper wharf","wharf road","road near","finger wharf","garden island","island new","new south","south wales","wales garden","garden island","island navy","navy base","base opposite","woolloomooloo bay","bay hotel","cafe de","de wheels","wheels operate","new south","south wales","capitol theatre","theatre sydney","sydney capitol","capitol square","square haymarket","haymarket new","new south","south wales","wales haymarket","haymarket george","george street","street sydney","sydney liverpool","liverpool new","new south","south wales","wales liverpool","liverpool wharf","wharf road","road newcastle","newcastle new","new south","south wales","wales newcastle","newcastle using","converted sydney","sydney r","r class","class tram","tram north","new south","south wales","wales tempe","tempe new","new south","south wales","wales tempe","best known","dish tiger","tiger pie","australiand new","new zealand","zealand meat","meat pie","pie australian","australian meat","meat pie","pie named","original founder","cafe de","de wheels","food van","van similar","history buthe","buthe van","permanently fixed","caravan walls","custom painted","painted murals","motoring art","inside walls","murals ofamous","ofamous visitors","sydney icon","local area","new south","south wales","wales national","national trust","australia national","national trust","trust register","pie cart","cart retired","powerhouse museum","museum collection","collection harry","cafe de","de wheels","wheels pie","pie cart","cart powerhouse","powerhouse museum","museum harry","inner city","city suburb","new south","south wales","file harry","cafe de","de wheels","powerhouse museumjpg","museumjpg thumb","thumb harry","cafe de","de wheels","wheels c","powerhouse museum","museum file","thumb harry","cafe de","de wheels","cowper wharf","wharf road","road woolloomooloo","b c","e present","present day","day note","note map","map shows","shows current","current position","cowper wharf","wharf road","cowper wharf","wharf road","harry tiger","tiger edwards","edwards opened","original caravan","caravan cafe","cafe named","named simply","simply harry","woolloomooloo naval","naval yard","served withe","withe second","second australian","australian imperial","imperial force","world war","war ii","opened upon","name cafe","cafe de","de wheels","wheels came","sydney city","city council","mobile food","food caravans","various locations","cowper wharf","wharf road","road mostly","mostly due","development work","woolloomooloo bay","bay area","tells thathe","thathe name","temporarily changed","cafe de","one point","eastern suburbs","years passed","passed harry","cafe de","de wheels","wheels gained","gained new","new fame","tourist attraction","caravan became","ate three","three pies","walking stick","sanders taken","visit still","still hangs","caravan today","today harry","basic food","popular back","introduced hot","hot dogs","dogs mostly","american sailors","menu include","famous tiger","tiger pie","variations bacon","cheese tiger","tiger pie","pie hot","hot dog","hot dog","dog de","de wheels","dog dirty","right hay","hay st","st haymarket","haymarket kiosk","kiosk behind","behind capitol","capitol theatre","theatre sydney","sydney capitol","capitol theatre","popular culture","culture australian","australian singer","singer peter","album harry","cafe de","de wheels","amazing race","race second","second season","reality television","television show","amazing race","fast forward","fast forward","eat pies","also featured","israeli version","show harry","cafe de","de wheels","often seen","australian television","television series","tv series","last continent","various aspects","australian culture","culture includes","includes cut","cafe de","de feet","tray around","sydney episode","bizarre foods","travel channel","bachelor australia","australia season","season episode","television series","bachelor australian","australian tv","tv series","sources harry","cafe de","de wheels","wheels website","website accessed","accessed july","july national","national trust","trust register","register harry","cafe de","de wheels","wheels register","register entry","entry accessed","accessed july","july burke","burke n","n cafe","cafe de","de wheels","daily telegraph","r crash","crash courses","sydney morning","morning herald","herald externalinks","externalinks powerhouse","powerhouse museum","museum harry","cafe de","de wheels","wheels harry","caf de","de wheels","wheels national","national trust","structure includes","includes historic","historic images","images including","including one","late colonel","colonel sanders","category culture","sydney category","category buildings","sydney category","category establishments","australia category","category companies","companies based","sydney category","category food","food trucks","trucks category","category fast","fast food","food chains"],"new_description":"dissolved footnotes harry cafe_de_wheels iconic pie cart located woolloomooloo sydney new_south_wales australia cowper wharf road near finger wharf fleet garden island new_south_wales garden island navy base opposite woolloomooloo bay hotel harry cafe_de_wheels operate new_south_wales capitol theatre sydney capitol square haymarket new_south_wales haymarket george street sydney liverpool new_south_wales liverpool wharf road newcastle new_south_wales newcastle using converted sydney r class tram north new_south_wales tempe new_south_wales tempe best_known dish tiger pie type australiand_new_zealand meat pie australian meat pie named original founder harry harry cafe_de_wheels food van similar found funfair hung moved number times history buthe van permanently fixed base caravan walls decorated custom painted murals alan motoring art inside walls cart decorated pictures murals ofamous visitors site considered sydney icon institution local area significance location reflected inclusion new_south_wales national_trust australia national_trust register version harry pie cart retired years use located powerhouse museum collection harry cafe_de_wheels pie cart powerhouse museum harry pies supplied hannah pies factory inner city suburb new_south_wales file harry cafe_de_wheels powerhouse museumjpg thumb harry cafe_de_wheels c powerhouse museum file thumb harry cafe_de_wheels cowper wharf road woolloomooloo b c e present_day note map shows current position cowper wharf road location cowper wharf road road relocated west harry tiger edwards opened original caravan cafe named simply harry near gates woolloomooloo naval yard served withe second australian imperial force world_war ii time cafe operational cart opened upon return war name cafe_de_wheels came requirement city sydney city_council mobile_food caravans move minimum inches day cart moved various_locations cowper wharf road mostly due development work woolloomooloo bay_area tells thathe name temporarily changed cafe_de one point wheels stolen referred harry eastern suburbs sydney years passed harry cafe_de_wheels gained new fame tourist_attraction visito caravan became must visiting frank robert dietrich colonel harry enjoyed food much ate three pies peas walking stick front caravan picture sanders taken visit still hangs caravan today harry today basic food popular back pies peas harry introduced hot_dogs mostly american sailors pies available menu include famous tiger pie variations bacon cheese tiger tiger pie pie hot_dog hot_dog de_wheels dog dirty file thumb right hay st haymarket kiosk behind capitol theatre sydney capitol theatre popular_culture australian singer peter named album harry cafe_de_wheels cover cafe featured amazing race second season reality television show amazing race challenge fast forward racers chose fast forward eat pies also featured israeli version show harry cafe_de_wheels often_seen australian_television_series tv_series novel last continent various aspects australian culture includes cut cafe_de feet tray around neck featured sydney episode bizarre foods andrew travel_channel featured bachelor australia season episode television_series bachelor australian tv_series bachelor sources harry cafe_de_wheels website_accessed july national_trust register harry cafe_de_wheels register entry accessed_july burke n cafe_de_wheels danger walkers daily_telegraph r crash courses sydney morning herald externalinks powerhouse museum harry cafe_de_wheels harry caf_de wheels national_trust significance structure includes historic images including one late colonel sanders category_culture sydney_category buildings structures sydney_category_establishments australia_category_companies_based sydney_category food_trucks category_fast_food chains australia"},{"title":"Haute cuisine","description":"file cuisine trois toilesjpg thumb px an example ofrenchaute cuisine presentation haute cuisine french language french literally high cooking or grande cuisine refers to the cuisine of high level establishments gourmet restaurants and luxury hotels haute cuisine is characterized by meticulous preparation and careful presentation ofood at a high price level perhaps accompanied by expensive wine s early history haute cuisine developed out of political and social changes in france the high cuisine represented a hierarchy in th century france as only the privileged could eat it haute cuisine distinguished itselfrom regular french cuisine by what was cooked and served such as foods like tongue and caviar by serving foodsuch as fruit out of season by making it difficult and time consuming to cook and by using exotic ingredients notypically found in france mintz sidney w cuisine high low and not at all tasting food tasting freedom excursions into eating culture and the past boston beacon in addition to who was eating haute cuisine and what exactly it consisted of the term can also be defined by the who was making it and how they were doing so professionally trained chefs were quintessential to the birth of haute cuisine in france thextravagant presentations and complex techniques thathese chefs were known forequired ingredients timequipment and therefore money for this reason early haute cuisine was accessible to a small demographic of rich and powerful individuals professional frenchefs were not only responsible for building and shaping haute cuisine butheiroles in the cuisine were what differentiated it from regular french cuisine haute cuisine was characterized by french cuisine in elaborate preparations and presentationserved in small and numerous courses that were produced by large and hierarchical staffs athe grand restaurants and hotels of europe the cuisine was very rich and opulent with decadent sauces made out of butter cream and flour the basis for many typical french sauces that are still used today schehr lawrence r and allen s weiss tractatus logico gastronomicus french food on the table on the page and in french culture new york routledge the th century chef and writer fran ois pierre la varenne la varenne marked a change from cookery known in the middle ages to somewhat lighter dishes and more modest presentations in the following century marie antoine car me antonin car me also published works on cooking and although many of his preparations today seem extravagant he simplified and codified an earlier and even more complex cuisine classique georges augustescoffier is a central figure in the modernisation of haute cuisine as of about which became known as cuisine classique these were simplifications and refinements of thearly work of car me jules gouff and urbain dubois it was practised in the grand restaurants and hotels of europe and elsewhere for much of the th century the major developments were to replace service la fran aiservice la fran aiserving all dishes at once with service la russervice la russerving meals in courses and to develop a system of cookery based on escoffier s le guide culinaire which formalized the preparation of sauces andishes in its time it was considered the pinnacle of haute cuisine and was a style distinct from cuisine bourgeoise cuisine for families with cooks the working class cuisine of bistros and homes and cuisines of the french provinces file jacques lameloise dscf jpg thumb px a jacques lameloise a star michelin guide chef nouvelle cuisine presentationouvelle cuisine the s were marked by the appearance of nouvelle cuisine as chefs rebelled from escoffier s orthodoxy and complexity although the term nouvelle cuisine had been used in the pasthe modern usage can be attributed to authors andr gayot andr gayot of stars and tripes the true story of nouvelle cuisine henri gault and christian millau who used nouvelle cuisine to describe the cooking of paul bocuse alain chapel jeand pierre troisgros michel gu rard roger verg and raymond oliver many of whom were once students ofernand point mennel stephan all manners ofood eating and taste in england france from the middle ages to the present nd ed chicago university of illinois press in general nouvelle cuisine puts an emphasis onatural flavourso the freshest possible ingredients are used preparation isimplified heavy sauces are less common as are strong marinades for meat and cooking times are often reduced nouvelle cuisine was a movementowards conceptualism and minimalism and was a direct juxtaposition to earlier haute cuisine styles of cooking which were much morextravagant while menus were increasingly short dishes used more inventive pairings and relied on inspiration from regional dishes within years however chefs began returning to thearlier style of haute cuisine although many of the new techniques remained references furthereading cooking cuisine and class a study in comparative sociology jack goody university of cambridge june food and love a cultural history of east and west by jack goody verso april tasting food tasting freedom excursions into eating culture and the past by sidney wilfred mintz beacon press viandier attributed to guillaume tirel ditaillevent medieval manuscript haute cuisine how the french invented the culinary profession by amy b trubek university of pennsylvania press december food culture in france by juliabramson greenwood press november patrick rambourg histoire de la cuisinet de la gastronomie fran aises paris ed perrin coll tempus n pages category french cuisine category types of restaurants","main_words":["file","cuisine","trois","thumb","px","example","cuisine","presentation","haute_cuisine","french_language","french","literally","high","cooking","grande","cuisine","refers","cuisine","high_level","establishments","gourmet","restaurants","luxury","hotels","haute_cuisine","characterized","preparation","careful","presentation","ofood","high","price","level","perhaps","accompanied","expensive","wine","early","history","haute_cuisine","developed","political","social","changes","france","high","cuisine","represented","hierarchy","th_century","france","could","eat","haute_cuisine","distinguished","itselfrom","regular","french_cuisine","cooked","served","foods","like","tongue","caviar","serving","foodsuch","fruit","season","making","difficult","time","consuming","cook","using","exotic","ingredients","notypically","found","france","sidney","w","cuisine","high","low","tasting","food","tasting","freedom","excursions","eating","culture","past","boston","beacon","addition","eating","haute_cuisine","exactly","consisted","term","also","defined","making","professionally","trained","chefs","birth","haute_cuisine","france","presentations","complex","techniques","thathese","chefs","known","ingredients","therefore","money","reason","early","haute_cuisine","accessible","small","demographic","rich","powerful","individuals","professional","responsible","building","shaping","haute_cuisine","cuisine","regular","french_cuisine","haute_cuisine","characterized","french_cuisine","elaborate","preparations","small","numerous","courses","produced","large","athe","grand","restaurants_hotels","europe","cuisine","rich","sauces","made","butter","cream","flour","basis","many","typical","french","sauces","still","used","today","lawrence","r","allen","french","food","table","page","french","culture","new_york","routledge","th_century","chef","writer","fran_ois","pierre","la","la","marked","change","cookery","known","middle_ages","somewhat","lighter","dishes","modest","presentations","following","century","marie","antoine","car","car","also_published","works","cooking","although_many","preparations","today","seem","simplified","earlier","even","complex","cuisine","georges","augustescoffier","central","figure","haute_cuisine","became_known","cuisine","thearly","work","car","jules","grand","restaurants_hotels","europe","elsewhere","much","th_century","major","developments","replace","service","la","fran","la","fran","dishes","service","la","la","meals","courses","develop","system","cookery","based","guide","preparation","sauces","andishes","time","considered","haute_cuisine","style","distinct","cuisine","cuisine","families","cooks","working_class","cuisine","bistros","homes","cuisines","french","provinces","file","jacques","jpg","thumb","px","jacques","star","michelin_guide","chef","nouvelle","cuisine","cuisine","marked","appearance","nouvelle","cuisine","chefs","complexity","although","term","nouvelle","cuisine","used","pasthe","modern","usage","attributed","authors","andr","andr","stars","true","story","nouvelle","cuisine","henri","gault","christian","millau","used","nouvelle","cuisine","describe","cooking","paul","alain","chapel","pierre","michel","roger","oliver","many","students","point","manners","ofood","eating","taste","england","france","middle_ages","present","ed","chicago","university","illinois","press","general","nouvelle","cuisine","puts","emphasis","possible","ingredients","used","preparation","heavy","sauces","less_common","strong","meat","cooking","times","often","reduced","nouvelle","cuisine","direct","earlier","haute_cuisine","styles","cooking","much","menus","increasingly","short","dishes","used","pairings","relied","inspiration","regional","dishes","within","years","however","chefs","began","returning","thearlier","style","haute_cuisine","although_many","new","techniques","remained","references_furthereading","cooking","cuisine","class","study","comparative","sociology","jack","university","cambridge","june","food","love","cultural_history","east","west","jack","april","tasting","food","tasting","freedom","excursions","eating","culture","past","sidney","beacon","press","attributed","medieval","manuscript","haute_cuisine","french","invented","culinary","profession","amy","b","university","pennsylvania","press","december","food_culture","france","greenwood","press","november","patrick","histoire","de_la","de_la","gastronomie","fran","paris","ed","perrin","n","pages","category_french","cuisine_category_types","restaurants"],"clean_bigrams":[["file","cuisine"],["cuisine","trois"],["thumb","px"],["cuisine","presentation"],["presentation","haute"],["haute","cuisine"],["cuisine","french"],["french","language"],["language","french"],["french","literally"],["literally","high"],["high","cooking"],["grande","cuisine"],["cuisine","refers"],["cuisine","high"],["high","level"],["level","establishments"],["establishments","gourmet"],["gourmet","restaurants"],["luxury","hotels"],["hotels","haute"],["haute","cuisine"],["careful","presentation"],["presentation","ofood"],["high","price"],["price","level"],["level","perhaps"],["perhaps","accompanied"],["expensive","wine"],["early","history"],["history","haute"],["haute","cuisine"],["cuisine","developed"],["social","changes"],["high","cuisine"],["cuisine","represented"],["th","century"],["century","france"],["could","eat"],["haute","cuisine"],["cuisine","distinguished"],["distinguished","itselfrom"],["itselfrom","regular"],["regular","french"],["french","cuisine"],["foods","like"],["like","tongue"],["serving","foodsuch"],["time","consuming"],["using","exotic"],["exotic","ingredients"],["ingredients","notypically"],["notypically","found"],["sidney","w"],["w","cuisine"],["cuisine","high"],["high","low"],["tasting","food"],["food","tasting"],["tasting","freedom"],["freedom","excursions"],["eating","culture"],["past","boston"],["boston","beacon"],["eating","haute"],["haute","cuisine"],["professionally","trained"],["trained","chefs"],["haute","cuisine"],["complex","techniques"],["techniques","thathese"],["thathese","chefs"],["therefore","money"],["reason","early"],["early","haute"],["haute","cuisine"],["small","demographic"],["powerful","individuals"],["individuals","professional"],["shaping","haute"],["haute","cuisine"],["regular","french"],["french","cuisine"],["cuisine","haute"],["haute","cuisine"],["french","cuisine"],["elaborate","preparations"],["numerous","courses"],["athe","grand"],["grand","restaurants"],["sauces","made"],["butter","cream"],["many","typical"],["typical","french"],["french","sauces"],["still","used"],["used","today"],["lawrence","r"],["french","food"],["french","culture"],["culture","new"],["new","york"],["york","routledge"],["th","century"],["century","chef"],["writer","fran"],["fran","ois"],["ois","pierre"],["pierre","la"],["cookery","known"],["middle","ages"],["somewhat","lighter"],["lighter","dishes"],["modest","presentations"],["following","century"],["century","marie"],["marie","antoine"],["antoine","car"],["also","published"],["published","works"],["although","many"],["preparations","today"],["today","seem"],["complex","cuisine"],["georges","augustescoffier"],["central","figure"],["haute","cuisine"],["became","known"],["thearly","work"],["grand","restaurants"],["th","century"],["major","developments"],["replace","service"],["service","la"],["la","fran"],["la","fran"],["service","la"],["cookery","based"],["sauces","andishes"],["haute","cuisine"],["style","distinct"],["working","class"],["class","cuisine"],["french","provinces"],["provinces","file"],["file","jacques"],["jpg","thumb"],["thumb","px"],["star","michelin"],["michelin","guide"],["guide","chef"],["chef","nouvelle"],["nouvelle","cuisine"],["nouvelle","cuisine"],["complexity","although"],["term","nouvelle"],["nouvelle","cuisine"],["pasthe","modern"],["modern","usage"],["authors","andr"],["true","story"],["nouvelle","cuisine"],["cuisine","henri"],["henri","gault"],["christian","millau"],["used","nouvelle"],["nouvelle","cuisine"],["alain","chapel"],["oliver","many"],["manners","ofood"],["ofood","eating"],["england","france"],["middle","ages"],["ed","chicago"],["chicago","university"],["illinois","press"],["general","nouvelle"],["nouvelle","cuisine"],["cuisine","puts"],["possible","ingredients"],["used","preparation"],["heavy","sauces"],["less","common"],["cooking","times"],["often","reduced"],["reduced","nouvelle"],["nouvelle","cuisine"],["earlier","haute"],["haute","cuisine"],["cuisine","styles"],["increasingly","short"],["short","dishes"],["dishes","used"],["regional","dishes"],["dishes","within"],["within","years"],["years","however"],["however","chefs"],["chefs","began"],["began","returning"],["thearlier","style"],["haute","cuisine"],["cuisine","although"],["although","many"],["new","techniques"],["techniques","remained"],["remained","references"],["references","furthereading"],["furthereading","cooking"],["cooking","cuisine"],["comparative","sociology"],["sociology","jack"],["cambridge","june"],["june","food"],["cultural","history"],["april","tasting"],["tasting","food"],["food","tasting"],["tasting","freedom"],["freedom","excursions"],["eating","culture"],["beacon","press"],["medieval","manuscript"],["manuscript","haute"],["haute","cuisine"],["cuisine","french"],["french","invented"],["culinary","profession"],["amy","b"],["pennsylvania","press"],["press","december"],["december","food"],["food","culture"],["greenwood","press"],["press","november"],["november","patrick"],["histoire","de"],["de","la"],["de","la"],["la","gastronomie"],["gastronomie","fran"],["paris","ed"],["ed","perrin"],["n","pages"],["pages","category"],["category","french"],["french","cuisine"],["cuisine","category"],["category","types"]],"all_collocations":["file cuisine","cuisine trois","cuisine presentation","presentation haute","haute cuisine","cuisine french","french language","language french","french literally","literally high","high cooking","grande cuisine","cuisine refers","cuisine high","high level","level establishments","establishments gourmet","gourmet restaurants","luxury hotels","hotels haute","haute cuisine","careful presentation","presentation ofood","high price","price level","level perhaps","perhaps accompanied","expensive wine","early history","history haute","haute cuisine","cuisine developed","social changes","high cuisine","cuisine represented","th century","century france","could eat","haute cuisine","cuisine distinguished","distinguished itselfrom","itselfrom regular","regular french","french cuisine","foods like","like tongue","serving foodsuch","time consuming","using exotic","exotic ingredients","ingredients notypically","notypically found","sidney w","w cuisine","cuisine high","high low","tasting food","food tasting","tasting freedom","freedom excursions","eating culture","past boston","boston beacon","eating haute","haute cuisine","professionally trained","trained chefs","haute cuisine","complex techniques","techniques thathese","thathese chefs","therefore money","reason early","early haute","haute cuisine","small demographic","powerful individuals","individuals professional","shaping haute","haute cuisine","regular french","french cuisine","cuisine haute","haute cuisine","french cuisine","elaborate preparations","numerous courses","athe grand","grand restaurants","sauces made","butter cream","many typical","typical french","french sauces","still used","used today","lawrence r","french food","french culture","culture new","new york","york routledge","th century","century chef","writer fran","fran ois","ois pierre","pierre la","cookery known","middle ages","somewhat lighter","lighter dishes","modest presentations","following century","century marie","marie antoine","antoine car","also published","published works","although many","preparations today","today seem","complex cuisine","georges augustescoffier","central figure","haute cuisine","became known","thearly work","grand restaurants","th century","major developments","replace service","service la","la fran","la fran","service la","cookery based","sauces andishes","haute cuisine","style distinct","working class","class cuisine","french provinces","provinces file","file jacques","star michelin","michelin guide","guide chef","chef nouvelle","nouvelle cuisine","nouvelle cuisine","complexity although","term nouvelle","nouvelle cuisine","pasthe modern","modern usage","authors andr","true story","nouvelle cuisine","cuisine henri","henri gault","christian millau","used nouvelle","nouvelle cuisine","alain chapel","oliver many","manners ofood","ofood eating","england france","middle ages","ed chicago","chicago university","illinois press","general nouvelle","nouvelle cuisine","cuisine puts","possible ingredients","used preparation","heavy sauces","less common","cooking times","often reduced","reduced nouvelle","nouvelle cuisine","earlier haute","haute cuisine","cuisine styles","increasingly short","short dishes","dishes used","regional dishes","dishes within","within years","years however","however chefs","chefs began","began returning","thearlier style","haute cuisine","cuisine although","although many","new techniques","techniques remained","remained references","references furthereading","furthereading cooking","cooking cuisine","comparative sociology","sociology jack","cambridge june","june food","cultural history","april tasting","tasting food","food tasting","tasting freedom","freedom excursions","eating culture","beacon press","medieval manuscript","manuscript haute","haute cuisine","cuisine french","french invented","culinary profession","amy b","pennsylvania press","press december","december food","food culture","greenwood press","press november","november patrick","histoire de","de la","de la","la gastronomie","gastronomie fran","paris ed","ed perrin","n pages","pages category","category french","french cuisine","cuisine category","category types"],"new_description":"file cuisine trois thumb px example cuisine presentation haute_cuisine french_language french literally high cooking grande cuisine refers cuisine high_level establishments gourmet restaurants luxury hotels haute_cuisine characterized preparation careful presentation ofood high price level perhaps accompanied expensive wine early history haute_cuisine developed political social changes france high cuisine represented hierarchy th_century france could eat haute_cuisine distinguished itselfrom regular french_cuisine cooked served foods like tongue caviar serving foodsuch fruit season making difficult time consuming cook using exotic ingredients notypically found france sidney w cuisine high low tasting food tasting freedom excursions eating culture past boston beacon addition eating haute_cuisine exactly consisted term also defined making professionally trained chefs birth haute_cuisine france presentations complex techniques thathese chefs known ingredients therefore money reason early haute_cuisine accessible small demographic rich powerful individuals professional responsible building shaping haute_cuisine cuisine regular french_cuisine haute_cuisine characterized french_cuisine elaborate preparations small numerous courses produced large athe grand restaurants_hotels europe cuisine rich sauces made butter cream flour basis many typical french sauces still used today lawrence r allen french food table page french culture new_york routledge th_century chef writer fran_ois pierre la la marked change cookery known middle_ages somewhat lighter dishes modest presentations following century marie antoine car car also_published works cooking although_many preparations today seem simplified earlier even complex cuisine georges augustescoffier central figure haute_cuisine became_known cuisine thearly work car jules grand restaurants_hotels europe elsewhere much th_century major developments replace service la fran la fran dishes service la la meals courses develop system cookery based guide preparation sauces andishes time considered haute_cuisine style distinct cuisine cuisine families cooks working_class cuisine bistros homes cuisines french provinces file jacques jpg thumb px jacques star michelin_guide chef nouvelle cuisine cuisine marked appearance nouvelle cuisine chefs complexity although term nouvelle cuisine used pasthe modern usage attributed authors andr andr stars true story nouvelle cuisine henri gault christian millau used nouvelle cuisine describe cooking paul alain chapel pierre michel roger oliver many students point manners ofood eating taste england france middle_ages present ed chicago university illinois press general nouvelle cuisine puts emphasis possible ingredients used preparation heavy sauces less_common strong meat cooking times often reduced nouvelle cuisine direct earlier haute_cuisine styles cooking much menus increasingly short dishes used pairings relied inspiration regional dishes within years however chefs began returning thearlier style haute_cuisine although_many new techniques remained references_furthereading cooking cuisine class study comparative sociology jack university cambridge june food love cultural_history east west jack april tasting food tasting freedom excursions eating culture past sidney beacon press attributed medieval manuscript haute_cuisine french invented culinary profession amy b university pennsylvania press december food_culture france greenwood press november patrick histoire de_la de_la gastronomie fran paris ed perrin n pages category_french cuisine_category_types restaurants"},{"title":"Hawaii Visitors & Convention Bureau","description":"i visitors convention bureau logo foundedate location waikiki waik hawaii focus create sustainable diversified travel destination demand for the hawaiian islands method num employees numembers non profit slogan the islands of aloha homepage footnotes the hawaii visitors convention bureau hvcb is a private non profit organizationon profit c corporation headquartered in the waikiki business plaza waik business plazat kal kauavenue suite honolulu hawaii honolulu hawaii on the hawaiian island of oahu in waikiki waik as a convention and visitor bureau visitor convention bureau it is contracted on a four year basis to markethe islands under the auspices of the hawaii tourism authority hawaii tourism authority whichas global oversight for the state in matters concerning the tourism in hawaii visitor industry funding hvcb receives its funding from variousources including the state of hawaii tourism authority for development of local convention meeting conventions and tourismembership dues from local hospitality related businesses hvcb serves three main functions official visitor industry marketing arm of hawaii the state of hawaiin the north america major market area us canadand internationally through the following island visitor bureau chapters big island visitors bureau kauai visitors bureau kaua i visitors bureau lanai visitors bureau l nai visitors bureau maui visitors bureau molokai visitors association molokai visitors association and oahu visitors bureau oahu visitors bureau point of contact for convention meeting corporate meetings incentives planners in conjunction withe hawaii convention center hawaii convention center provide visitors to hawaii with resources linking them to accommodations transportation local historicultural and recreational sites events andining tourists may visithe bureau during regular office hours to receive information maps and brochuresfoster jeanette frommer s hawaii john wiley and sons externalinks hawaii visitors and convention bureau official state tourism website with information for visitors corporate meetings incentives destination specialist resourcenter hawaii visitors and convention bureau corporate website big island visitors bureau kauai visitors bureau l nai visitors bureau maui visitors bureau molokai visitors association oahu visitors bureau hawaii tourism authority hawaii state dbedthe state s department of business economic developmentourism provides resources and statistics to promote tourism hawaii convention center category tourism agencies category tourism in hawaii category non profit organizations based in hawaii category organizations established in category establishments in hawaii","main_words":["visitors","convention_bureau","logo","location","hawaii","focus","create","sustainable","diversified","travel_destination","demand","hawaiian","islands","method","num_employees","non_profit","slogan","islands","aloha","homepage","footnotes","hawaii","visitors","convention_bureau","private","non_profit","profit","c","corporation","headquartered","business","plaza","business","suite","honolulu","hawaii","honolulu","hawaii","hawaiian","island","oahu","convention","visitor","bureau","visitor","convention_bureau","contracted","four","year","basis","markethe","islands","auspices","hawaii","tourism_authority","hawaii","tourism_authority","whichas","global","oversight","state","matters","concerning","tourism","hawaii","visitor","industry","funding","receives","funding","including","state","hawaii","tourism_authority","development","local","convention_meeting","conventions","local","hospitality","related","businesses","serves","three","main","functions","official","visitor","industry","marketing","arm","hawaii","state","hawaiin","north_america","major","market","area","us","canadand","internationally","following","island","visitor","bureau","chapters","big","island","visitors_bureau","visitors_bureau","visitors_bureau","visitors_bureau","l","visitors_bureau","maui","visitors_bureau","visitors","association","visitors","association","oahu","visitors_bureau","oahu","visitors_bureau","point","contact","convention_meeting","corporate","meetings","incentives","planners","conjunction","withe","hawaii","convention_center","hawaii","convention_center","provide","visitors","hawaii","resources","linking","accommodations","transportation","local","recreational","sites","events","andining","tourists_may","visithe","bureau","regular","office","hours","receive","information","maps","frommer","hawaii","john","wiley","sons","externalinks","hawaii","visitors","convention_bureau","official","state","tourism_website","information","visitors","corporate","meetings","incentives","destination","specialist","hawaii","visitors","convention_bureau","corporate","website","big","island","visitors_bureau","visitors_bureau","l","visitors_bureau","maui","visitors_bureau","visitors","association","oahu","visitors_bureau","hawaii","tourism_authority","hawaii","state","state","department","business","economic","provides","resources","statistics","promote_tourism","hawaii","convention_center","category_tourism","agencies_category_tourism","hawaii","category_non_profit","organizations_based","hawaii","category_organizations","established","category_establishments","hawaii"],"clean_bigrams":[["visitors","convention"],["convention","bureau"],["bureau","logo"],["hawaii","focus"],["focus","create"],["create","sustainable"],["sustainable","diversified"],["diversified","travel"],["travel","destination"],["destination","demand"],["hawaiian","islands"],["islands","method"],["method","num"],["num","employees"],["non","profit"],["profit","slogan"],["aloha","homepage"],["homepage","footnotes"],["hawaii","visitors"],["visitors","convention"],["convention","bureau"],["private","non"],["non","profit"],["profit","c"],["c","corporation"],["corporation","headquartered"],["business","plaza"],["suite","honolulu"],["honolulu","hawaii"],["hawaii","honolulu"],["honolulu","hawaii"],["hawaiian","island"],["visitor","bureau"],["bureau","visitor"],["visitor","convention"],["convention","bureau"],["four","year"],["year","basis"],["markethe","islands"],["hawaii","tourism"],["tourism","authority"],["authority","hawaii"],["hawaii","tourism"],["tourism","authority"],["authority","whichas"],["whichas","global"],["global","oversight"],["matters","concerning"],["tourism","hawaii"],["hawaii","visitor"],["visitor","industry"],["industry","funding"],["hawaii","tourism"],["tourism","authority"],["local","convention"],["convention","meeting"],["meeting","conventions"],["local","hospitality"],["hospitality","related"],["related","businesses"],["serves","three"],["three","main"],["main","functions"],["functions","official"],["official","visitor"],["visitor","industry"],["industry","marketing"],["marketing","arm"],["hawaii","state"],["north","america"],["america","major"],["major","market"],["market","area"],["area","us"],["us","canadand"],["canadand","internationally"],["following","island"],["island","visitor"],["visitor","bureau"],["bureau","chapters"],["chapters","big"],["big","island"],["island","visitors"],["visitors","bureau"],["visitors","bureau"],["visitors","bureau"],["visitors","bureau"],["bureau","l"],["visitors","bureau"],["bureau","maui"],["maui","visitors"],["visitors","bureau"],["visitors","association"],["visitors","association"],["association","oahu"],["oahu","visitors"],["visitors","bureau"],["bureau","oahu"],["oahu","visitors"],["visitors","bureau"],["bureau","point"],["convention","meeting"],["meeting","corporate"],["corporate","meetings"],["meetings","incentives"],["incentives","planners"],["conjunction","withe"],["withe","hawaii"],["hawaii","convention"],["convention","center"],["center","hawaii"],["hawaii","convention"],["convention","center"],["center","provide"],["provide","visitors"],["resources","linking"],["accommodations","transportation"],["transportation","local"],["recreational","sites"],["sites","events"],["events","andining"],["andining","tourists"],["tourists","may"],["may","visithe"],["visithe","bureau"],["regular","office"],["office","hours"],["receive","information"],["information","maps"],["hawaii","john"],["john","wiley"],["sons","externalinks"],["externalinks","hawaii"],["hawaii","visitors"],["visitors","convention"],["convention","bureau"],["bureau","official"],["official","state"],["state","tourism"],["tourism","website"],["visitors","corporate"],["corporate","meetings"],["meetings","incentives"],["incentives","destination"],["destination","specialist"],["hawaii","visitors"],["visitors","convention"],["convention","bureau"],["bureau","corporate"],["corporate","website"],["website","big"],["big","island"],["island","visitors"],["visitors","bureau"],["visitors","bureau"],["bureau","l"],["visitors","bureau"],["bureau","maui"],["maui","visitors"],["visitors","bureau"],["visitors","association"],["association","oahu"],["oahu","visitors"],["visitors","bureau"],["bureau","hawaii"],["hawaii","tourism"],["tourism","authority"],["authority","hawaii"],["hawaii","state"],["business","economic"],["provides","resources"],["promote","tourism"],["tourism","hawaii"],["hawaii","convention"],["convention","center"],["center","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["tourism","hawaii"],["hawaii","category"],["category","non"],["non","profit"],["profit","organizations"],["organizations","based"],["hawaii","category"],["category","organizations"],["organizations","established"],["category","establishments"]],"all_collocations":["visitors convention","convention bureau","bureau logo","hawaii focus","focus create","create sustainable","sustainable diversified","diversified travel","travel destination","destination demand","hawaiian islands","islands method","method num","num employees","non profit","profit slogan","aloha homepage","homepage footnotes","hawaii visitors","visitors convention","convention bureau","private non","non profit","profit c","c corporation","corporation headquartered","business plaza","suite honolulu","honolulu hawaii","hawaii honolulu","honolulu hawaii","hawaiian island","visitor bureau","bureau visitor","visitor convention","convention bureau","four year","year basis","markethe islands","hawaii tourism","tourism authority","authority hawaii","hawaii tourism","tourism authority","authority whichas","whichas global","global oversight","matters concerning","tourism hawaii","hawaii visitor","visitor industry","industry funding","hawaii tourism","tourism authority","local convention","convention meeting","meeting conventions","local hospitality","hospitality related","related businesses","serves three","three main","main functions","functions official","official visitor","visitor industry","industry marketing","marketing arm","hawaii state","north america","america major","major market","market area","area us","us canadand","canadand internationally","following island","island visitor","visitor bureau","bureau chapters","chapters big","big island","island visitors","visitors bureau","visitors bureau","visitors bureau","visitors bureau","bureau l","visitors bureau","bureau maui","maui visitors","visitors bureau","visitors association","visitors association","association oahu","oahu visitors","visitors bureau","bureau oahu","oahu visitors","visitors bureau","bureau point","convention meeting","meeting corporate","corporate meetings","meetings incentives","incentives planners","conjunction withe","withe hawaii","hawaii convention","convention center","center hawaii","hawaii convention","convention center","center provide","provide visitors","resources linking","accommodations transportation","transportation local","recreational sites","sites events","events andining","andining tourists","tourists may","may visithe","visithe bureau","regular office","office hours","receive information","information maps","hawaii john","john wiley","sons externalinks","externalinks hawaii","hawaii visitors","visitors convention","convention bureau","bureau official","official state","state tourism","tourism website","visitors corporate","corporate meetings","meetings incentives","incentives destination","destination specialist","hawaii visitors","visitors convention","convention bureau","bureau corporate","corporate website","website big","big island","island visitors","visitors bureau","visitors bureau","bureau l","visitors bureau","bureau maui","maui visitors","visitors bureau","visitors association","association oahu","oahu visitors","visitors bureau","bureau hawaii","hawaii tourism","tourism authority","authority hawaii","hawaii state","business economic","provides resources","promote tourism","tourism hawaii","hawaii convention","convention center","center category","category tourism","tourism agencies","agencies category","category tourism","tourism hawaii","hawaii category","category non","non profit","profit organizations","organizations based","hawaii category","category organizations","organizations established","category establishments"],"new_description":"visitors convention_bureau logo location hawaii focus create sustainable diversified travel_destination demand hawaiian islands method num_employees non_profit slogan islands aloha homepage footnotes hawaii visitors convention_bureau private non_profit profit c corporation headquartered business plaza business suite honolulu hawaii honolulu hawaii hawaiian island oahu convention visitor bureau visitor convention_bureau contracted four year basis markethe islands auspices hawaii tourism_authority hawaii tourism_authority whichas global oversight state matters concerning tourism hawaii visitor industry funding receives funding including state hawaii tourism_authority development local convention_meeting conventions local hospitality related businesses serves three main functions official visitor industry marketing arm hawaii state hawaiin north_america major market area us canadand internationally following island visitor bureau chapters big island visitors_bureau visitors_bureau visitors_bureau visitors_bureau l visitors_bureau maui visitors_bureau visitors association visitors association oahu visitors_bureau oahu visitors_bureau point contact convention_meeting corporate meetings incentives planners conjunction withe hawaii convention_center hawaii convention_center provide visitors hawaii resources linking accommodations transportation local recreational sites events andining tourists_may visithe bureau regular office hours receive information maps frommer hawaii john wiley sons externalinks hawaii visitors convention_bureau official state tourism_website information visitors corporate meetings incentives destination specialist hawaii visitors convention_bureau corporate website big island visitors_bureau visitors_bureau l visitors_bureau maui visitors_bureau visitors association oahu visitors_bureau hawaii tourism_authority hawaii state state department business economic provides resources statistics promote_tourism hawaii convention_center category_tourism agencies_category_tourism hawaii category_non_profit organizations_based hawaii category_organizations established category_establishments hawaii"},{"title":"Hawker centre","description":"file lavenderfoodsquare singapore originaljpg thumb a hawker centre in lavender singapore file hawker centre glutinous ricejpg thumb upright a hawker stall sellinglutinous rice a hawker centre or cooked food centre or is an open air complex indonesia singapore malaysia hong kong and the riau islands housing many stalls that sell a variety of price inexpensive food they are typically found in city centres near public housing estates or transport hubsuch as bustation bus interchanges or train station s hawker centres were set up as a more sanitary option to street side outdoor alfresco hawker dining places instead of mobile food hawker carts permanent stalls in open air buildings are provided for the hawkers either common shared or stall dedicated tables and chairs are provided for customers this concept has totally eliminated street hawkers in singapore and reduced the numbers of street hawkers in major cities in south east asia this phenomenon is also helped by hawker licensing laws however it hinders new low capital hawker entrepreneurs from starting business resulting in high prices for established hawker centre stalls albeit hawker centres can provide a one stop good variety of high quality and sanitary food at down to earth prices for everyone in singapore file dsci jpg thumb a hawker centre in chinatown singapore the upper floor is for food stalls and the lower is for stallsellingoods hawker centresprang up in urban area urban areas following the rapid urbanization urbanisation in the s and s in many cases they were built partly to address the problem of unhygienic food preparation by unlicensed street hawkers morecently they have become less ubiquitous due to growing affluence in the urban populations of malaysiand singapore particularly in singapore they are increasingly being replaced by food court s which are indoor air conditioning air conditioned versions of hawker centres located in shopping malls and other commercial venues in the s and s hawker centres were considered to be a venue for the less affluenthey had a reputation for hygiene unhygienic food partly due to the frequent appearance oferal stray domestic pet s and pest animal pest s many hawker centres were poorly managed by their operators often lacking tap waterunning water and proper facilities for washing cleaning morecently hygiene standards have improved with pressure from the local authorities this includes the implementation of licensing requirements where a sufficient standard of hygiene is required for the stall toperate and rewarding exceptionally good hygiene upgrading oreconstruction of hawker centres was initiated in the late s in singapore the hawker centres in singapore are owned by three government bodies namely the national environment agency nea under the parent ministry of thenvironment and wateresources mewr housing andevelopment board hdb and jtcorporation all the centres owned by hdb and nea in turn aregulated by nea withe individual town councils managing the hdb owned centres jtc owned centres are self managed on march nea launched wwwmyhawkerssg which is an interactive web portal that isupposed toffer useful information hawker centres and food stalls the portal isupposed to allow registered users to review orecommend hawker stalls or hawker centres and to provide feedback to nea on hygiene matters in hawker centres as of two singaporean food stands both located in hawker centers became the firstreet food vendors to be awarded a michelin guide michelin star for excellence in eating the two stalls are hong kong soya sauce chicken rice and noodle and hill streetai hwa pork noodle in hong kong file wanchai hawker ctrjpg thumbowrington food centre a famous hawker centre in hong kong s wan chai district in hong kong most cooked food centres or cooked food markets areither located in market complexes of residential districts or as a standalone structure this being the case in most industrial areas with only a few exceptions eg mong kok cooked food market is located in the lower levels of langham place hotel cooked food centres are managed by food and environmental hygiene department most of the stalls from hawker centres are converted from former dai pai dong by strict regulations and managementhe hong kongovernment regards the provision of cooked food centres as a way to eliminate traditional dai pai dong s from local streets in the s in hong kong s during the industrial boom in the s in hong kong s and s the government also built cooked food markets industrial areas in order to serve the catering needs of the working class in major industrial centresuch as kwun tong tsuen wand fo tan stalls in cooked food centres usually provide local cuisine withoselling exotic delicacies a minority notable hawker centres the following listsome notable hawker centres abc brickworks market and food centre adam road food centre alexandra road hawker centre amoy street food centre ang mo kio market and food centre bedok central boon lay place food village bukitimah market and food centre changi village hawker centre changi village food centre chinatown complex chomp food centre circuit road food centre clementi market and food centreast coast park lagoon food villageunos crescent market and food centre fengshan market and food centre geylang serai market and food centre ghimoh market and food centre glutton s bay golden mile food centre golden shoe hawker centre hong lim complex kovan hougang market food centre lau pa sat lavender food square tanjong pagar maxwell food centre maxwell food centre marine parade food centre mei ling market and food centre newton food centre old airport cooked food centre queenstown food centredhill food centre people s park food centre serangoon garden market and food centre seah im food centre sembawang hill food centre shunfu martampines round marketaman jurong market and food centre teban gardens market and food centre tekka centre tiong bahru marketiong bahru market and food centre west coast market and food centre whampoa food centre jalan alor kuala lumpur malaysia taiping perak taiping perak malaysia sussex centre sydney australia market city sydney australia dixon house sydney dixon house sydney australia eating world sydney australia hunter connection sydney hunter connection sydney australia twighlight hawkers market forrest place perth suburb perth western australia hong kong bowrington road market chai wan kok cooked food market cheung chau cooked food market cheung sha wan cooked food market cheung tat road cooked food market fo tan cooked food market east fo tan cooked food market west hung cheung cooked food market ka ting cooked food market kik yeung road cooked food market kin wing cooked food market kin yip street cooked food market kut shing street cooked food market kwai san street cooked food market kwun tong ferry concourse cooked food market lockhart road market mong kok cooked food market mui woo cooked food market nam long shan road cooked food market queen street cooked food market sze shan street cooked food marketai tong road cooked food marketai yuen street cooked food marketsing yeung cooked food marketsun yip cooked food marketung yuen street cooked food market wo yi hop road cooked food market see also chaan teng hong kong diner dhaba indian roadside diner kopi tiamalayan coffee shopasar malamalayanight market food court western style greasy spoon in britain mamak stall malayan road stall truck stop inorth america externalinks where to find the best hawker food in singapore that are highly regarded by foodies reviews of hawker food in singapore an interactive web portal for hawker centres in singaporeviews of hawker food in malaysia looking out for good food at hawker centres in malaysia list ofehd public markets and cooked food markets centres in hong kong category hawker centres in singapore category economy of malaysia category hong kong cuisine category restaurants in hong kong category restaurants in malaysia category singaporean culture category types of restaurants","main_words":["file","singapore","thumb","hawker_centre","singapore","file","hawker_centre","thumb","upright","hawker","stall","rice","hawker_centre","cooked_food","centre","open_air","complex","indonesia","singapore","malaysia","hong_kong","islands","housing","many","stalls","sell","variety","price","inexpensive","food","typically","found","city","centres","near","public","housing","transport","bus","train","station","hawker_centres","set","sanitary","option","street","side","outdoor","hawker","dining","places","instead","mobile_food","hawker","carts","permanent","stalls","open_air","buildings","provided","hawkers","either","common","shared","stall","dedicated","tables","chairs","provided","customers","concept","totally","eliminated","street","hawkers","singapore","reduced","numbers","street","hawkers","major_cities","south_east_asia","phenomenon","also","helped","hawker","licensing_laws","however","new","low","capital","hawker","entrepreneurs","starting","business","resulting","high","prices","established","hawker_centre","stalls","albeit","hawker_centres","provide","one","stop","good","variety","high_quality","sanitary","food","earth","prices","everyone","singapore","file_jpg","thumb","hawker_centre","chinatown","singapore","upper","floor","food","stalls","lower","hawker","urban","area","urban_areas","following","rapid","urbanization","many_cases","built","partly","address","problem","food_preparation","unlicensed","street","hawkers","morecently","become","less","ubiquitous","due","growing","urban","populations","malaysiand","singapore","particularly","singapore","increasingly","replaced","food_court","indoor","air_conditioning","air","conditioned","versions","hawker_centres","located","shopping_malls","commercial","venues","hawker_centres","considered","venue","less","reputation","hygiene","food","partly","due","frequent","appearance","domestic","pet","pest","animal","pest","many","hawker_centres","poorly","managed","operators","often","lacking","tap","water","proper","facilities","washing","cleaning","morecently","hygiene","standards","improved","pressure","local_authorities","includes","implementation","licensing","requirements","sufficient","standard","hygiene","required","stall","toperate","rewarding","exceptionally","good","hygiene","upgrading","hawker_centres","initiated","late","singapore","hawker_centres","singapore","owned","three","government","bodies","namely","national","environment","agency","nea","parent","ministry","thenvironment","housing","andevelopment","board","centres","owned","nea","turn","aregulated","nea","withe","individual","town","councils","managing","owned","centres","owned","centres","self","managed","march","nea","launched","interactive","web","portal","isupposed","toffer","useful","information","hawker_centres","food","stalls","portal","isupposed","allow","registered","users","review","hawker","stalls","hawker_centres","provide","feedback","nea","hygiene","matters","hawker_centres","two","singaporean","food","stands","located","hawker","centers","became","food_vendors","awarded","michelin_guide","michelin_star","excellence","eating","two","stalls","hong_kong","sauce","chicken","rice","noodle","hill","pork","noodle","hong_kong","file","hawker","food_centre","famous","hawker_centre","hong_kong","wan","chai","district","hong_kong","cooked_food","centres","cooked_food","markets","areither","located","market","complexes","residential","districts","structure","case","industrial","areas","exceptions","mong","cooked_food","market","located","lower","levels","place","hotel","cooked_food","centres","managed","food","environmental","hygiene","department","stalls","hawker_centres","converted","former","dai_pai_dong","strict","regulations","managementhe","hong_kongovernment","regards","provision","cooked_food","centres","way","eliminate","traditional","dai_pai_dong","local","streets","hong_kong","industrial","boom","hong_kong","government","also","built","cooked_food","markets","industrial","areas","order","serve","catering","needs","working_class","major","industrial","tong","tan","stalls","cooked_food","centres","usually","provide","local","cuisine","exotic","minority","notable","hawker_centres","following","notable","hawker_centres","abc","market_food_centre","adam","road","food_centre","alexandra","road","hawker_centre","street_food","centre","market_food_centre","central","lay","place","food","village","market_food_centre","changi","village","hawker_centre","changi","village","food_centre","chinatown","complex","food_centre","circuit","road","food_centre","coast","park","lagoon","food","crescent","market_food_centre","market_food_centre","market_food_centre","market_food_centre","bay","golden","mile","food_centre","golden","shoe","hawker_centre","hong","complex","market_food_centre","lau","sat","food","square","maxwell","food_centre","maxwell","food_centre","marine","parade","food_centre","mei","market_food_centre","newton","food_centre","old","airport","cooked_food","centre","queenstown","food","food_centre","people","park","food_centre","garden","market_food_centre","food_centre","hill","food_centre","round","market_food_centre","gardens","market_food_centre","centre","market_food_centre","west_coast","market_food_centre","food_centre","kuala_lumpur","malaysia","taiping","perak","taiping","perak","malaysia","sussex","centre","sydney_australia","market","city","sydney_australia","dixon","house","sydney","dixon","house","sydney_australia","eating","world","sydney_australia","hunter","connection","sydney","hunter","connection","sydney_australia","hawkers","market","forrest","place","perth","suburb","perth","western_australia","hong_kong","road","market","chai","wan","cooked_food","market","cheung","cooked_food","market","cheung","sha","wan","cooked_food","market","cheung","tat","road","cooked_food","market","tan","cooked_food","market","east","tan","cooked_food","market","west","hung","cheung","cooked_food","market","cooked_food","market","road","cooked_food","market","wing","cooked_food","market","street","cooked_food","market","kut","street","cooked_food","market","san","street","cooked_food","market","tong","ferry","concourse","cooked_food","market","road","market","mong","cooked_food","market","cooked_food","market","nam","long","road","cooked_food","market","queen","street","cooked_food","market","street","cooked_food","tong","road","cooked_food","street","cooked_food","cooked_food","cooked_food","street","cooked_food","market","hop","road","cooked_food","market","see_also","chaan","teng","hong_kong","diner","dhaba","indian","roadside","diner","kopi","coffee","western","style","greasy_spoon","britain","mamak","stall","road","stall","truck_stop","inorth_america","externalinks","find","best","hawker","food","singapore","highly","regarded","reviews","hawker","food","singapore","interactive","web","portal","hawker_centres","hawker","food","malaysia","looking","good_food","hawker_centres","malaysia","list","public","markets","cooked_food","markets","centres","hong_kong","category","hawker_centres","malaysia_category","hong_kong","cuisine_category_restaurants","hong_kong","category_restaurants","malaysia_category","singaporean","culture_category_types","restaurants"],"clean_bigrams":[["hawker","centre"],["singapore","file"],["file","hawker"],["hawker","centre"],["thumb","upright"],["hawker","stall"],["hawker","centre"],["cooked","food"],["food","centre"],["open","air"],["air","complex"],["complex","indonesia"],["indonesia","singapore"],["singapore","malaysia"],["malaysia","hong"],["hong","kong"],["islands","housing"],["housing","many"],["many","stalls"],["price","inexpensive"],["inexpensive","food"],["typically","found"],["city","centres"],["centres","near"],["near","public"],["public","housing"],["train","station"],["hawker","centres"],["sanitary","option"],["street","side"],["side","outdoor"],["hawker","dining"],["dining","places"],["places","instead"],["mobile","food"],["food","hawker"],["hawker","carts"],["carts","permanent"],["permanent","stalls"],["open","air"],["air","buildings"],["hawkers","either"],["either","common"],["common","shared"],["stall","dedicated"],["dedicated","tables"],["totally","eliminated"],["eliminated","street"],["street","hawkers"],["street","hawkers"],["major","cities"],["south","east"],["east","asia"],["also","helped"],["hawker","licensing"],["licensing","laws"],["laws","however"],["new","low"],["low","capital"],["capital","hawker"],["hawker","entrepreneurs"],["starting","business"],["business","resulting"],["high","prices"],["established","hawker"],["hawker","centre"],["centre","stalls"],["stalls","albeit"],["albeit","hawker"],["hawker","centres"],["one","stop"],["stop","good"],["good","variety"],["high","quality"],["sanitary","food"],["earth","prices"],["singapore","file"],["jpg","thumb"],["hawker","centre"],["centre","chinatown"],["chinatown","singapore"],["upper","floor"],["food","stalls"],["urban","area"],["area","urban"],["urban","areas"],["areas","following"],["rapid","urbanization"],["many","cases"],["built","partly"],["food","preparation"],["unlicensed","street"],["street","hawkers"],["hawkers","morecently"],["become","less"],["less","ubiquitous"],["ubiquitous","due"],["urban","populations"],["malaysiand","singapore"],["singapore","particularly"],["food","court"],["indoor","air"],["air","conditioning"],["conditioning","air"],["air","conditioned"],["conditioned","versions"],["hawker","centres"],["centres","located"],["shopping","malls"],["commercial","venues"],["hawker","centres"],["food","partly"],["partly","due"],["frequent","appearance"],["domestic","pet"],["pest","animal"],["animal","pest"],["many","hawker"],["hawker","centres"],["poorly","managed"],["operators","often"],["often","lacking"],["lacking","tap"],["proper","facilities"],["washing","cleaning"],["cleaning","morecently"],["morecently","hygiene"],["hygiene","standards"],["local","authorities"],["licensing","requirements"],["sufficient","standard"],["stall","toperate"],["rewarding","exceptionally"],["exceptionally","good"],["good","hygiene"],["hygiene","upgrading"],["hawker","centres"],["hawker","centres"],["three","government"],["government","bodies"],["bodies","namely"],["national","environment"],["environment","agency"],["agency","nea"],["parent","ministry"],["housing","andevelopment"],["andevelopment","board"],["centres","owned"],["turn","aregulated"],["nea","withe"],["withe","individual"],["individual","town"],["town","councils"],["councils","managing"],["owned","centres"],["centres","owned"],["owned","centres"],["self","managed"],["march","nea"],["nea","launched"],["interactive","web"],["web","portal"],["portal","isupposed"],["isupposed","toffer"],["toffer","useful"],["useful","information"],["information","hawker"],["hawker","centres"],["food","stalls"],["portal","isupposed"],["allow","registered"],["registered","users"],["hawker","stalls"],["hawker","centres"],["provide","feedback"],["hygiene","matters"],["hawker","centres"],["two","singaporean"],["singaporean","food"],["food","stands"],["hawker","centers"],["centers","became"],["food","vendors"],["michelin","guide"],["guide","michelin"],["michelin","star"],["two","stalls"],["hong","kong"],["sauce","chicken"],["chicken","rice"],["pork","noodle"],["hong","kong"],["kong","file"],["file","hawker"],["hawker","food"],["food","centre"],["famous","hawker"],["hawker","centre"],["centre","hong"],["hong","kong"],["wan","chai"],["chai","district"],["hong","kong"],["cooked","food"],["food","centres"],["cooked","food"],["food","markets"],["markets","areither"],["areither","located"],["market","complexes"],["residential","districts"],["industrial","areas"],["cooked","food"],["food","market"],["lower","levels"],["place","hotel"],["hotel","cooked"],["cooked","food"],["food","centres"],["environmental","hygiene"],["hygiene","department"],["hawker","centres"],["former","dai"],["dai","pai"],["pai","dong"],["strict","regulations"],["managementhe","hong"],["hong","kongovernment"],["kongovernment","regards"],["cooked","food"],["food","centres"],["eliminate","traditional"],["traditional","dai"],["dai","pai"],["pai","dong"],["local","streets"],["hong","kong"],["industrial","boom"],["hong","kong"],["government","also"],["also","built"],["built","cooked"],["cooked","food"],["food","markets"],["markets","industrial"],["industrial","areas"],["catering","needs"],["working","class"],["major","industrial"],["tan","stalls"],["cooked","food"],["food","centres"],["centres","usually"],["usually","provide"],["provide","local"],["local","cuisine"],["minority","notable"],["notable","hawker"],["hawker","centres"],["notable","hawker"],["hawker","centres"],["centres","abc"],["market","food"],["food","centre"],["centre","adam"],["adam","road"],["road","food"],["food","centre"],["centre","alexandra"],["alexandra","road"],["road","hawker"],["hawker","centre"],["street","food"],["food","centre"],["market","food"],["food","centre"],["lay","place"],["place","food"],["food","village"],["market","food"],["food","centre"],["centre","changi"],["changi","village"],["village","hawker"],["hawker","centre"],["centre","changi"],["changi","village"],["village","food"],["food","centre"],["centre","chinatown"],["chinatown","complex"],["food","centre"],["centre","circuit"],["circuit","road"],["road","food"],["food","centre"],["market","food"],["coast","park"],["park","lagoon"],["lagoon","food"],["crescent","market"],["market","food"],["food","centre"],["market","food"],["food","centre"],["market","food"],["food","centre"],["market","food"],["food","centre"],["bay","golden"],["golden","mile"],["mile","food"],["food","centre"],["centre","golden"],["golden","shoe"],["shoe","hawker"],["hawker","centre"],["centre","hong"],["market","food"],["food","centre"],["centre","lau"],["food","square"],["maxwell","food"],["food","centre"],["centre","maxwell"],["maxwell","food"],["food","centre"],["centre","marine"],["marine","parade"],["parade","food"],["food","centre"],["centre","mei"],["market","food"],["food","centre"],["centre","newton"],["newton","food"],["food","centre"],["centre","old"],["old","airport"],["airport","cooked"],["cooked","food"],["food","centre"],["centre","queenstown"],["queenstown","food"],["food","centre"],["centre","people"],["park","food"],["food","centre"],["garden","market"],["market","food"],["food","centre"],["food","centre"],["hill","food"],["food","centre"],["market","food"],["food","centre"],["gardens","market"],["market","food"],["food","centre"],["market","food"],["food","centre"],["centre","west"],["west","coast"],["coast","market"],["market","food"],["food","centre"],["food","centre"],["kuala","lumpur"],["lumpur","malaysia"],["malaysia","taiping"],["taiping","perak"],["perak","taiping"],["taiping","perak"],["perak","malaysia"],["malaysia","sussex"],["sussex","centre"],["centre","sydney"],["sydney","australia"],["australia","market"],["market","city"],["city","sydney"],["sydney","australia"],["australia","dixon"],["dixon","house"],["house","sydney"],["sydney","dixon"],["dixon","house"],["house","sydney"],["sydney","australia"],["australia","eating"],["eating","world"],["world","sydney"],["sydney","australia"],["australia","hunter"],["hunter","connection"],["connection","sydney"],["sydney","hunter"],["hunter","connection"],["connection","sydney"],["sydney","australia"],["hawkers","market"],["market","forrest"],["forrest","place"],["place","perth"],["perth","suburb"],["suburb","perth"],["perth","western"],["western","australia"],["australia","hong"],["hong","kong"],["road","market"],["market","chai"],["chai","wan"],["wan","cooked"],["cooked","food"],["food","market"],["market","cheung"],["cheung","cooked"],["cooked","food"],["food","market"],["market","cheung"],["cheung","sha"],["sha","wan"],["wan","cooked"],["cooked","food"],["food","market"],["market","cheung"],["cheung","tat"],["tat","road"],["road","cooked"],["cooked","food"],["food","market"],["tan","cooked"],["cooked","food"],["food","market"],["market","east"],["tan","cooked"],["cooked","food"],["food","market"],["market","west"],["west","hung"],["hung","cheung"],["cheung","cooked"],["cooked","food"],["food","market"],["cooked","food"],["food","market"],["road","cooked"],["cooked","food"],["food","market"],["wing","cooked"],["cooked","food"],["food","market"],["street","cooked"],["cooked","food"],["food","market"],["market","kut"],["street","cooked"],["cooked","food"],["food","market"],["san","street"],["street","cooked"],["cooked","food"],["food","market"],["tong","ferry"],["ferry","concourse"],["concourse","cooked"],["cooked","food"],["food","market"],["road","market"],["market","mong"],["cooked","food"],["food","market"],["cooked","food"],["food","market"],["market","nam"],["nam","long"],["road","cooked"],["cooked","food"],["food","market"],["market","queen"],["queen","street"],["street","cooked"],["cooked","food"],["food","market"],["street","cooked"],["cooked","food"],["tong","road"],["road","cooked"],["cooked","food"],["street","cooked"],["cooked","food"],["cooked","food"],["cooked","food"],["street","cooked"],["cooked","food"],["food","market"],["hop","road"],["road","cooked"],["cooked","food"],["food","market"],["market","see"],["see","also"],["also","chaan"],["chaan","teng"],["teng","hong"],["hong","kong"],["kong","diner"],["diner","dhaba"],["dhaba","indian"],["indian","roadside"],["roadside","diner"],["diner","kopi"],["market","food"],["food","court"],["court","western"],["western","style"],["style","greasy"],["greasy","spoon"],["britain","mamak"],["mamak","stall"],["road","stall"],["stall","truck"],["truck","stop"],["stop","inorth"],["inorth","america"],["america","externalinks"],["best","hawker"],["hawker","food"],["highly","regarded"],["hawker","food"],["interactive","web"],["web","portal"],["hawker","centres"],["hawker","food"],["malaysia","looking"],["good","food"],["food","hawker"],["hawker","centres"],["malaysia","list"],["public","markets"],["cooked","food"],["food","markets"],["markets","centres"],["hong","kong"],["kong","category"],["category","hawker"],["hawker","centres"],["singapore","category"],["category","economy"],["malaysia","category"],["category","hong"],["hong","kong"],["kong","cuisine"],["cuisine","category"],["category","restaurants"],["hong","kong"],["kong","category"],["category","restaurants"],["malaysia","category"],["category","singaporean"],["singaporean","culture"],["culture","category"],["category","types"]],"all_collocations":["hawker centre","singapore file","file hawker","hawker centre","hawker stall","hawker centre","cooked food","food centre","open air","air complex","complex indonesia","indonesia singapore","singapore malaysia","malaysia hong","hong kong","islands housing","housing many","many stalls","price inexpensive","inexpensive food","typically found","city centres","centres near","near public","public housing","train station","hawker centres","sanitary option","street side","side outdoor","hawker dining","dining places","places instead","mobile food","food hawker","hawker carts","carts permanent","permanent stalls","open air","air buildings","hawkers either","either common","common shared","stall dedicated","dedicated tables","totally eliminated","eliminated street","street hawkers","street hawkers","major cities","south east","east asia","also helped","hawker licensing","licensing laws","laws however","new low","low capital","capital hawker","hawker entrepreneurs","starting business","business resulting","high prices","established hawker","hawker centre","centre stalls","stalls albeit","albeit hawker","hawker centres","one stop","stop good","good variety","high quality","sanitary food","earth prices","singapore file","hawker centre","centre chinatown","chinatown singapore","upper floor","food stalls","urban area","area urban","urban areas","areas following","rapid urbanization","many cases","built partly","food preparation","unlicensed street","street hawkers","hawkers morecently","become less","less ubiquitous","ubiquitous due","urban populations","malaysiand singapore","singapore particularly","food court","indoor air","air conditioning","conditioning air","air conditioned","conditioned versions","hawker centres","centres located","shopping malls","commercial venues","hawker centres","food partly","partly due","frequent appearance","domestic pet","pest animal","animal pest","many hawker","hawker centres","poorly managed","operators often","often lacking","lacking tap","proper facilities","washing cleaning","cleaning morecently","morecently hygiene","hygiene standards","local authorities","licensing requirements","sufficient standard","stall toperate","rewarding exceptionally","exceptionally good","good hygiene","hygiene upgrading","hawker centres","hawker centres","three government","government bodies","bodies namely","national environment","environment agency","agency nea","parent ministry","housing andevelopment","andevelopment board","centres owned","turn aregulated","nea withe","withe individual","individual town","town councils","councils managing","owned centres","centres owned","owned centres","self managed","march nea","nea launched","interactive web","web portal","portal isupposed","isupposed toffer","toffer useful","useful information","information hawker","hawker centres","food stalls","portal isupposed","allow registered","registered users","hawker stalls","hawker centres","provide feedback","hygiene matters","hawker centres","two singaporean","singaporean food","food stands","hawker centers","centers became","food vendors","michelin guide","guide michelin","michelin star","two stalls","hong kong","sauce chicken","chicken rice","pork noodle","hong kong","kong file","file hawker","hawker food","food centre","famous hawker","hawker centre","centre hong","hong kong","wan chai","chai district","hong kong","cooked food","food centres","cooked food","food markets","markets areither","areither located","market complexes","residential districts","industrial areas","cooked food","food market","lower levels","place hotel","hotel cooked","cooked food","food centres","environmental hygiene","hygiene department","hawker centres","former dai","dai pai","pai dong","strict regulations","managementhe hong","hong kongovernment","kongovernment regards","cooked food","food centres","eliminate traditional","traditional dai","dai pai","pai dong","local streets","hong kong","industrial boom","hong kong","government also","also built","built cooked","cooked food","food markets","markets industrial","industrial areas","catering needs","working class","major industrial","tan stalls","cooked food","food centres","centres usually","usually provide","provide local","local cuisine","minority notable","notable hawker","hawker centres","notable hawker","hawker centres","centres abc","market food","food centre","centre adam","adam road","road food","food centre","centre alexandra","alexandra road","road hawker","hawker centre","street food","food centre","market food","food centre","lay place","place food","food village","market food","food centre","centre changi","changi village","village hawker","hawker centre","centre changi","changi village","village food","food centre","centre chinatown","chinatown complex","food centre","centre circuit","circuit road","road food","food centre","market food","coast park","park lagoon","lagoon food","crescent market","market food","food centre","market food","food centre","market food","food centre","market food","food centre","bay golden","golden mile","mile food","food centre","centre golden","golden shoe","shoe hawker","hawker centre","centre hong","market food","food centre","centre lau","food square","maxwell food","food centre","centre maxwell","maxwell food","food centre","centre marine","marine parade","parade food","food centre","centre mei","market food","food centre","centre newton","newton food","food centre","centre old","old airport","airport cooked","cooked food","food centre","centre queenstown","queenstown food","food centre","centre people","park food","food centre","garden market","market food","food centre","food centre","hill food","food centre","market food","food centre","gardens market","market food","food centre","market food","food centre","centre west","west coast","coast market","market food","food centre","food centre","kuala lumpur","lumpur malaysia","malaysia taiping","taiping perak","perak taiping","taiping perak","perak malaysia","malaysia sussex","sussex centre","centre sydney","sydney australia","australia market","market city","city sydney","sydney australia","australia dixon","dixon house","house sydney","sydney dixon","dixon house","house sydney","sydney australia","australia eating","eating world","world sydney","sydney australia","australia hunter","hunter connection","connection sydney","sydney hunter","hunter connection","connection sydney","sydney australia","hawkers market","market forrest","forrest place","place perth","perth suburb","suburb perth","perth western","western australia","australia hong","hong kong","road market","market chai","chai wan","wan cooked","cooked food","food market","market cheung","cheung cooked","cooked food","food market","market cheung","cheung sha","sha wan","wan cooked","cooked food","food market","market cheung","cheung tat","tat road","road cooked","cooked food","food market","tan cooked","cooked food","food market","market east","tan cooked","cooked food","food market","market west","west hung","hung cheung","cheung cooked","cooked food","food market","cooked food","food market","road cooked","cooked food","food market","wing cooked","cooked food","food market","street cooked","cooked food","food market","market kut","street cooked","cooked food","food market","san street","street cooked","cooked food","food market","tong ferry","ferry concourse","concourse cooked","cooked food","food market","road market","market mong","cooked food","food market","cooked food","food market","market nam","nam long","road cooked","cooked food","food market","market queen","queen street","street cooked","cooked food","food market","street cooked","cooked food","tong road","road cooked","cooked food","street cooked","cooked food","cooked food","cooked food","street cooked","cooked food","food market","hop road","road cooked","cooked food","food market","market see","see also","also chaan","chaan teng","teng hong","hong kong","kong diner","diner dhaba","dhaba indian","indian roadside","roadside diner","diner kopi","market food","food court","court western","western style","style greasy","greasy spoon","britain mamak","mamak stall","road stall","stall truck","truck stop","stop inorth","inorth america","america externalinks","best hawker","hawker food","highly regarded","hawker food","interactive web","web portal","hawker centres","hawker food","malaysia looking","good food","food hawker","hawker centres","malaysia list","public markets","cooked food","food markets","markets centres","hong kong","kong category","category hawker","hawker centres","singapore category","category economy","malaysia category","category hong","hong kong","kong cuisine","cuisine category","category restaurants","hong kong","kong category","category restaurants","malaysia category","category singaporean","singaporean culture","culture category","category types"],"new_description":"file singapore thumb hawker_centre singapore file hawker_centre thumb upright hawker stall rice hawker_centre cooked_food centre open_air complex indonesia singapore malaysia hong_kong islands housing many stalls sell variety price inexpensive food typically found city centres near public housing transport bus train station hawker_centres set sanitary option street side outdoor hawker dining places instead mobile_food hawker carts permanent stalls open_air buildings provided hawkers either common shared stall dedicated tables chairs provided customers concept totally eliminated street hawkers singapore reduced numbers street hawkers major_cities south_east_asia phenomenon also helped hawker licensing_laws however new low capital hawker entrepreneurs starting business resulting high prices established hawker_centre stalls albeit hawker_centres provide one stop good variety high_quality sanitary food earth prices everyone singapore file_jpg thumb hawker_centre chinatown singapore upper floor food stalls lower hawker urban area urban_areas following rapid urbanization many_cases built partly address problem food_preparation unlicensed street hawkers morecently become less ubiquitous due growing urban populations malaysiand singapore particularly singapore increasingly replaced food_court indoor air_conditioning air conditioned versions hawker_centres located shopping_malls commercial venues hawker_centres considered venue less reputation hygiene food partly due frequent appearance domestic pet pest animal pest many hawker_centres poorly managed operators often lacking tap water proper facilities washing cleaning morecently hygiene standards improved pressure local_authorities includes implementation licensing requirements sufficient standard hygiene required stall toperate rewarding exceptionally good hygiene upgrading hawker_centres initiated late singapore hawker_centres singapore owned three government bodies namely national environment agency nea parent ministry thenvironment housing andevelopment board centres owned nea turn aregulated nea withe individual town councils managing owned centres owned centres self managed march nea launched interactive web portal isupposed toffer useful information hawker_centres food stalls portal isupposed allow registered users review hawker stalls hawker_centres provide feedback nea hygiene matters hawker_centres two singaporean food stands located hawker centers became food_vendors awarded michelin_guide michelin_star excellence eating two stalls hong_kong sauce chicken rice noodle hill pork noodle hong_kong file hawker food_centre famous hawker_centre hong_kong wan chai district hong_kong cooked_food centres cooked_food markets areither located market complexes residential districts structure case industrial areas exceptions mong cooked_food market located lower levels place hotel cooked_food centres managed food environmental hygiene department stalls hawker_centres converted former dai_pai_dong strict regulations managementhe hong_kongovernment regards provision cooked_food centres way eliminate traditional dai_pai_dong local streets hong_kong industrial boom hong_kong government also built cooked_food markets industrial areas order serve catering needs working_class major industrial tong tan stalls cooked_food centres usually provide local cuisine exotic minority notable hawker_centres following notable hawker_centres abc market_food_centre adam road food_centre alexandra road hawker_centre street_food centre market_food_centre central lay place food village market_food_centre changi village hawker_centre changi village food_centre chinatown complex food_centre circuit road food_centre market_food coast park lagoon food crescent market_food_centre market_food_centre market_food_centre market_food_centre bay golden mile food_centre golden shoe hawker_centre hong complex market_food_centre lau sat food square maxwell food_centre maxwell food_centre marine parade food_centre mei market_food_centre newton food_centre old airport cooked_food centre queenstown food food_centre people park food_centre garden market_food_centre food_centre hill food_centre round market_food_centre gardens market_food_centre centre market_food_centre west_coast market_food_centre food_centre kuala_lumpur malaysia taiping perak taiping perak malaysia sussex centre sydney_australia market city sydney_australia dixon house sydney dixon house sydney_australia eating world sydney_australia hunter connection sydney hunter connection sydney_australia hawkers market forrest place perth suburb perth western_australia hong_kong road market chai wan cooked_food market cheung cooked_food market cheung sha wan cooked_food market cheung tat road cooked_food market tan cooked_food market east tan cooked_food market west hung cheung cooked_food market cooked_food market road cooked_food market wing cooked_food market street cooked_food market kut street cooked_food market san street cooked_food market tong ferry concourse cooked_food market road market mong cooked_food market cooked_food market nam long road cooked_food market queen street cooked_food market street cooked_food tong road cooked_food street cooked_food cooked_food cooked_food street cooked_food market hop road cooked_food market see_also chaan teng hong_kong diner dhaba indian roadside diner kopi coffee market_food_court western style greasy_spoon britain mamak stall road stall truck_stop inorth_america externalinks find best hawker food singapore highly regarded reviews hawker food singapore interactive web portal hawker_centres hawker food malaysia looking good_food hawker_centres malaysia list public markets cooked_food markets centres hong_kong category hawker_centres singapore_category_economy malaysia_category hong_kong cuisine_category_restaurants hong_kong category_restaurants malaysia_category singaporean culture_category_types restaurants"},{"title":"Health City Cayman Islands","description":"health city cayman islands is a jci accredited tertiary care hospital in the cayman islands a british overseas territory cayman islands healthcare city insights from thealth authority and project innovator specializing in chronic and acute cardiac orthopedic bariatric neurological and pediatricases the medical travel focused hospital has provided healthcare solution s tover as of march adult and pediatric patients who primarily reside in the caribbean latin american united states and canada the bed hospital iseen by the government of the cayman islands as a key driver in the diversification of the country s economy progress future of caymand has gained itsupport health city hospital on track cayman parameter must have latitude and longitude if using this logo hcci logo updatedjpg location high rock east end cayman islands british overseas territory region caribbean country coordinates addressea view road healthcare private type tertiary care medical travel affordable healthcare speciality orthopedics cardiac surgery cardiology neurology bariatricstandards joint commission international emergency helipad affiliationetwork beds founded february website wiki links background health city cayman islands was born from the vision of heart surgeon dr devi shetty and isupported by two major healthcare organizations devi shetty dr shetty serves as chairman of narayana health and oversees a network of hospitals across indiand the cayman islands ascension is the largest non profit health system in the us and the world s largest catholic faith based health system to make high quality care accessible to all history the square foot facility opened in february becoming the first advanced medical facility and tertiary care hospital in the cayman islands facility and current operations the bed tertiary care hospital features a reinforced roof walls doors and windows and was builto withstand the rigors of a category hurricane and shield all of its critical assets from flooding there are back up generators with built in poweredundancies that allow for days of power independent of the grid an advanced ventilation system that blocks potentially contaminated air from reaching beyond the rooms of infectious patients a system that allows the hospital to create its own medical grade oxygen by pulling it out of the air andistilling it in house an automated air conditioning that cuts energy consumption costs by monitoring footraffic and only gives air where needed and a solar farm that reduces the hospital s energy consumption by almost location and satellite offices the tertiary care hospital is located on sea view road near high rock in theast endistrict of grand cayman in health city opened a canadian satellite office located in hamiltontario this office istaffed by local canadian healthcare professionals that work closely with other in country medical practitioners who wanto move their patients off long waiting lists and refer them to health city cayman islands for non emergency procedures health city s canadian office fields general inquiries abouthe cayman islands hospital coordinates phone consultations withealth city s physicians and patient care teamsecures travel arrangements and supports patients journeys to and from the cayman islands and connects with canadian healthcare providers and translation services where necessary to ensure continuity of care features file private patient roomjpg thumb x px private patient room file waiting room with naturalightjpg thumb x px waiting room flooded with naturalight private and semi private patient rooms intensive care unit icu suite with icu beds a bed triage and bed recovery unithree operating theatres two hybrid operating theatres centralized patient monitoring system laboratory operating on a basis for both inpatient and outpatient services imaging suitencompassing mri gamma camera nuclear medicine and ct room dental suite professional grade kitchen medical grade oxygenerator autoclave underground cistern water storage tank sewer treatment plant complimentary wi fi free parking overnight stay for patients companions visitors natural herb garden and scenic walking paths four star visitor s cafile father and son pathway at health cityjpg thumb scenic walking path on health city campusustainability and conservation efforts in health city sustainability efforts resulted in million gallons of water saved and million gallons of sewageffluent was diverted from groundisposal a waste reduction and landfill diversion initiative which included recycling and onsite medical waste treatment was also introduced and yielded a result of total waste being diverted from landfills in terms of electricity conservation the caribbean hospital s infrastructure includes a building management monitoring system as well as an hvac heating ventilation and air conditioning system diversification the official conservation report showed that energy savings for were over million kwh saved just under gallons of diesel saved and million pounds of carbon saved technology according to robert pearl executive director and ceof the permanente medical group the largest integrated healthcare system in the us health city is bringing together thealthcare service of bangalore and the technology of silicon valley health city utilizes an integrated patient data platform called ikare thisystem which is accessed by an ipad besideachospital bed constantly monitors individual patient s clinical datand current medications to recommend specific protocols the system also monitors the patient s vitals if they fall beyond the accepted range it will immediately alerthe staff clinical specialities milestones general as of march over out patients treated over in patients treated over total proceduresurgeries performed cardiology first ever transcatheter aortic valve implantation tavi undertaken in thenglish speaking caribbean region was completed at health city cayman islands in february first ever artificial heart a left ventricular assistive device lvad successfully implanted in the caribbean by health city in augusthis complex heart surgery has only been successfully carried out approximately times in all of south america health city has performed two successful surgeries in its first year of operation first ever coronary artery bypass graft cabg surgery performed in the cayman islands was completed at health city in july as of april over cardiac surgeries performed over cath lab procedures performed including diagnostic angiography emergency cases coronary angioplasty emergency cases electrophysiology procedures paediatricardiology procedures through apartnership withe have a heart foundation over pediatric heart surgeries performed free of charge for indigent children from haiti jamaica nevis honduras orthopedics as of march over orthopedic surgeries performed health city introduced fdapproved computer navigation technology to increase precision and accuracy of its invasive and minimally invasive joint replacement surgeries futurexpansion and additions plans for expansion and additions to thealth city compound include increasing from beds to a bed facility with a bed unit dedicated to neurology and cancer care an academic institution and biotech research facility an assisted living community that offers living quarters tolder adults two adjoining hotels where patients can stay before and after procedures category medical tourism","main_words":["health","city","cayman_islands","jci","accredited","tertiary","care","hospital","cayman_islands","british","overseas","territory","cayman_islands","healthcare","city","insights","thealth","authority","project","specializing","chronic","acute","cardiac","orthopedic","neurological","medical_travel","focused","hospital","provided","healthcare","solution","tover","march","adult","patients","primarily","reside","caribbean","latin_american","united_states","canada","bed","hospital","iseen","government","cayman_islands","key","driver","diversification","country","economy","progress","future","gained","health_city","hospital","track","must","latitude","longitude","using","logo","logo","location","high","rock","east","end","cayman_islands","british","overseas","territory","region","caribbean","country","coordinates","view","road","healthcare","private","type","tertiary","care","medical_travel","affordable","healthcare","cardiac","surgery","joint_commission_international","emergency","beds","founded","february","website","links","background","health_city","cayman_islands","born","vision","heart","isupported","two_major","healthcare","organizations","serves","chairman","narayana","health","oversees","network","hospitals","across","indiand","cayman_islands","largest","non_profit","health","system","us","world","largest","catholic","faith","based","health","system","make","high_quality","care","accessible","history","square","foot","facility","opened","february","becoming","first","advanced","medical","facility","tertiary","care","hospital","cayman_islands","facility","current","operations","bed","tertiary","care","hospital","features","reinforced","roof","walls","doors","windows","builto","withstand","category","hurricane","shield","critical","assets","flooding","back","generators","built","allow","days","power","independent","grid","advanced","ventilation","system","blocks","potentially","contaminated","air","reaching","beyond","rooms","infectious","patients","system","allows","hospital","create","medical","grade","oxygen","pulling","air","house","automated","air_conditioning","cuts","energy","consumption","costs","monitoring","gives","air","needed","solar","farm","reduces","hospital","energy","consumption","almost","location","satellite","offices","tertiary","care","hospital","located","sea","view","road","near","high","rock","theast","grand","health_city","opened","canadian","satellite","office","located","office","local","canadian","healthcare","professionals","work","closely","country","medical","practitioners","wanto","move","patients","long","waiting","lists","refer","health_city","cayman_islands","non","emergency","procedures","health_city","canadian","office","fields","general","abouthe","cayman_islands","hospital","coordinates","phone","city","physicians","patient","care","travel","arrangements","supports","patients","journeys","cayman_islands","connects","canadian","healthcare","providers","translation","services","necessary","ensure","continuity","care","features","file","private","patient","thumb","x","px","private","patient","room","file","waiting","room","thumb","x","px","waiting","room","private","semi","private","patient","rooms","intensive","care","unit","suite","beds","bed","bed","recovery","operating","theatres","two","hybrid","operating","theatres","centralized","patient","monitoring","system","laboratory","operating","basis","services","imaging","gamma","camera","nuclear","medicine","room","dental","suite","professional","grade","kitchen","medical","grade","underground","water","storage","tank","sewer","treatment","plant","complimentary","free","parking","overnight","stay","patients","companions","visitors","natural","herb","garden","scenic","walking","paths","four","star","visitor","father","son","pathway","health","thumb","scenic","walking","path","health_city","conservation_efforts","health_city","sustainability","efforts","resulted","million","gallons","water","saved","million","gallons","diverted","waste","reduction","initiative","included","recycling","onsite","medical","waste","treatment","also","introduced","result","total","waste","diverted","terms","electricity","conservation","caribbean","hospital","infrastructure","includes","building","management","monitoring","system","well","heating","ventilation","air_conditioning","system","diversification","official","conservation","report","showed","energy","savings","million","saved","gallons","diesel","saved","million","pounds","carbon","saved","technology","according","robert","pearl","executive_director","ceof","medical","group","largest","integrated","healthcare","system","us","health_city","bringing","together","thealthcare","service","bangalore","technology","silicon","valley","health_city","utilizes","integrated","patient","data","platform","called","thisystem","accessed","ipad","bed","constantly","monitors","individual","patient","clinical","datand","current","recommend","specific","system","also","monitors","patient","fall","beyond","accepted","range","immediately","staff","clinical","specialities","milestones","general","march","patients","treated","patients","treated","total","performed","first_ever","undertaken","thenglish","speaking","caribbean","region","completed","health_city","cayman_islands","february","first_ever","artificial","heart","left","device","successfully","caribbean","health_city","complex","heart","surgery","successfully","carried","approximately","times","south_america","health_city","performed","two","successful","surgeries","first_year","operation","first_ever","bypass","surgery","performed","cayman_islands","completed","health_city","july","april","cardiac","surgeries","performed","lab","procedures","performed","including","emergency","cases","emergency","cases","procedures","procedures","withe","heart","foundation","heart","surgeries","performed","free","charge","children","haiti","jamaica","honduras","march","orthopedic","surgeries","performed","health_city","introduced","computer","navigation","technology","increase","accuracy","invasive","invasive","joint","replacement","surgeries","additions","plans","expansion","additions","thealth","city","compound","include","increasing","beds","bed","facility","bed","unit","dedicated","cancer","care","academic","institution","research","facility","assisted","living","community","offers","living","quarters","adults","two","adjoining","hotels","patients","stay","procedures","category_medical","tourism"],"clean_bigrams":[["health","city"],["city","cayman"],["cayman","islands"],["jci","accredited"],["accredited","tertiary"],["tertiary","care"],["care","hospital"],["cayman","islands"],["islands","british"],["british","overseas"],["overseas","territory"],["territory","cayman"],["cayman","islands"],["islands","healthcare"],["healthcare","city"],["city","insights"],["thealth","authority"],["acute","cardiac"],["cardiac","orthopedic"],["medical","travel"],["travel","focused"],["focused","hospital"],["provided","healthcare"],["healthcare","solution"],["march","adult"],["primarily","reside"],["caribbean","latin"],["latin","american"],["american","united"],["united","states"],["bed","hospital"],["hospital","iseen"],["cayman","islands"],["key","driver"],["economy","progress"],["progress","future"],["health","city"],["city","hospital"],["track","cayman"],["location","high"],["high","rock"],["rock","east"],["east","end"],["end","cayman"],["cayman","islands"],["islands","british"],["british","overseas"],["overseas","territory"],["territory","region"],["region","caribbean"],["caribbean","country"],["country","coordinates"],["view","road"],["road","healthcare"],["healthcare","private"],["private","type"],["type","tertiary"],["tertiary","care"],["care","medical"],["medical","travel"],["travel","affordable"],["affordable","healthcare"],["cardiac","surgery"],["joint","commission"],["commission","international"],["international","emergency"],["beds","founded"],["founded","february"],["february","website"],["links","background"],["background","health"],["health","city"],["city","cayman"],["cayman","islands"],["two","major"],["major","healthcare"],["healthcare","organizations"],["narayana","health"],["hospitals","across"],["across","indiand"],["cayman","islands"],["largest","non"],["non","profit"],["profit","health"],["health","system"],["largest","catholic"],["catholic","faith"],["faith","based"],["based","health"],["health","system"],["make","high"],["high","quality"],["quality","care"],["care","accessible"],["square","foot"],["foot","facility"],["facility","opened"],["february","becoming"],["first","advanced"],["advanced","medical"],["medical","facility"],["tertiary","care"],["care","hospital"],["cayman","islands"],["islands","facility"],["current","operations"],["bed","tertiary"],["tertiary","care"],["care","hospital"],["hospital","features"],["reinforced","roof"],["roof","walls"],["walls","doors"],["builto","withstand"],["category","hurricane"],["critical","assets"],["power","independent"],["advanced","ventilation"],["ventilation","system"],["blocks","potentially"],["potentially","contaminated"],["contaminated","air"],["reaching","beyond"],["infectious","patients"],["medical","grade"],["grade","oxygen"],["automated","air"],["air","conditioning"],["cuts","energy"],["energy","consumption"],["consumption","costs"],["gives","air"],["solar","farm"],["energy","consumption"],["almost","location"],["satellite","offices"],["tertiary","care"],["care","hospital"],["sea","view"],["view","road"],["road","near"],["near","high"],["high","rock"],["grand","cayman"],["health","city"],["city","opened"],["canadian","satellite"],["satellite","office"],["office","located"],["local","canadian"],["canadian","healthcare"],["healthcare","professionals"],["work","closely"],["country","medical"],["medical","practitioners"],["wanto","move"],["long","waiting"],["waiting","lists"],["health","city"],["city","cayman"],["cayman","islands"],["non","emergency"],["emergency","procedures"],["procedures","health"],["health","city"],["canadian","office"],["office","fields"],["fields","general"],["abouthe","cayman"],["cayman","islands"],["islands","hospital"],["hospital","coordinates"],["coordinates","phone"],["patient","care"],["travel","arrangements"],["supports","patients"],["patients","journeys"],["cayman","islands"],["canadian","healthcare"],["healthcare","providers"],["translation","services"],["ensure","continuity"],["care","features"],["features","file"],["file","private"],["private","patient"],["thumb","x"],["x","px"],["px","private"],["private","patient"],["patient","room"],["room","file"],["file","waiting"],["waiting","room"],["thumb","x"],["x","px"],["px","waiting"],["waiting","room"],["semi","private"],["private","patient"],["patient","rooms"],["rooms","intensive"],["intensive","care"],["care","unit"],["bed","recovery"],["operating","theatres"],["theatres","two"],["two","hybrid"],["hybrid","operating"],["operating","theatres"],["theatres","centralized"],["centralized","patient"],["patient","monitoring"],["monitoring","system"],["system","laboratory"],["laboratory","operating"],["services","imaging"],["gamma","camera"],["camera","nuclear"],["nuclear","medicine"],["room","dental"],["dental","suite"],["suite","professional"],["professional","grade"],["grade","kitchen"],["kitchen","medical"],["medical","grade"],["water","storage"],["storage","tank"],["tank","sewer"],["sewer","treatment"],["treatment","plant"],["plant","complimentary"],["free","parking"],["parking","overnight"],["overnight","stay"],["patients","companions"],["companions","visitors"],["visitors","natural"],["natural","herb"],["herb","garden"],["scenic","walking"],["walking","paths"],["paths","four"],["four","star"],["star","visitor"],["son","pathway"],["thumb","scenic"],["scenic","walking"],["walking","path"],["health","city"],["conservation","efforts"],["health","city"],["city","sustainability"],["sustainability","efforts"],["efforts","resulted"],["million","gallons"],["water","saved"],["million","gallons"],["waste","reduction"],["included","recycling"],["onsite","medical"],["medical","waste"],["waste","treatment"],["also","introduced"],["total","waste"],["electricity","conservation"],["caribbean","hospital"],["infrastructure","includes"],["building","management"],["management","monitoring"],["monitoring","system"],["heating","ventilation"],["air","conditioning"],["conditioning","system"],["system","diversification"],["official","conservation"],["conservation","report"],["report","showed"],["energy","savings"],["diesel","saved"],["million","pounds"],["carbon","saved"],["saved","technology"],["technology","according"],["robert","pearl"],["pearl","executive"],["executive","director"],["medical","group"],["largest","integrated"],["integrated","healthcare"],["healthcare","system"],["us","health"],["health","city"],["bringing","together"],["together","thealthcare"],["thealthcare","service"],["silicon","valley"],["valley","health"],["health","city"],["city","utilizes"],["integrated","patient"],["patient","data"],["data","platform"],["platform","called"],["bed","constantly"],["constantly","monitors"],["monitors","individual"],["individual","patient"],["clinical","datand"],["datand","current"],["recommend","specific"],["system","also"],["also","monitors"],["fall","beyond"],["accepted","range"],["staff","clinical"],["clinical","specialities"],["specialities","milestones"],["milestones","general"],["patients","treated"],["patients","treated"],["first","ever"],["thenglish","speaking"],["speaking","caribbean"],["caribbean","region"],["health","city"],["city","cayman"],["cayman","islands"],["february","first"],["first","ever"],["ever","artificial"],["artificial","heart"],["health","city"],["complex","heart"],["heart","surgery"],["successfully","carried"],["approximately","times"],["south","america"],["america","health"],["health","city"],["performed","two"],["two","successful"],["successful","surgeries"],["first","year"],["operation","first"],["first","ever"],["surgery","performed"],["cayman","islands"],["health","city"],["cardiac","surgeries"],["surgeries","performed"],["lab","procedures"],["procedures","performed"],["performed","including"],["emergency","cases"],["emergency","cases"],["heart","foundation"],["heart","surgeries"],["surgeries","performed"],["performed","free"],["haiti","jamaica"],["orthopedic","surgeries"],["surgeries","performed"],["performed","health"],["health","city"],["city","introduced"],["computer","navigation"],["navigation","technology"],["invasive","joint"],["joint","replacement"],["replacement","surgeries"],["additions","plans"],["thealth","city"],["city","compound"],["compound","include"],["include","increasing"],["bed","facility"],["bed","unit"],["unit","dedicated"],["cancer","care"],["academic","institution"],["research","facility"],["assisted","living"],["living","community"],["offers","living"],["living","quarters"],["adults","two"],["two","adjoining"],["adjoining","hotels"],["procedures","category"],["category","medical"],["medical","tourism"]],"all_collocations":["health city","city cayman","cayman islands","jci accredited","accredited tertiary","tertiary care","care hospital","cayman islands","islands british","british overseas","overseas territory","territory cayman","cayman islands","islands healthcare","healthcare city","city insights","thealth authority","acute cardiac","cardiac orthopedic","medical travel","travel focused","focused hospital","provided healthcare","healthcare solution","march adult","primarily reside","caribbean latin","latin american","american united","united states","bed hospital","hospital iseen","cayman islands","key driver","economy progress","progress future","health city","city hospital","track cayman","location high","high rock","rock east","east end","end cayman","cayman islands","islands british","british overseas","overseas territory","territory region","region caribbean","caribbean country","country coordinates","view road","road healthcare","healthcare private","private type","type tertiary","tertiary care","care medical","medical travel","travel affordable","affordable healthcare","cardiac surgery","joint commission","commission international","international emergency","beds founded","founded february","february website","links background","background health","health city","city cayman","cayman islands","two major","major healthcare","healthcare organizations","narayana health","hospitals across","across indiand","cayman islands","largest non","non profit","profit health","health system","largest catholic","catholic faith","faith based","based health","health system","make high","high quality","quality care","care accessible","square foot","foot facility","facility opened","february becoming","first advanced","advanced medical","medical facility","tertiary care","care hospital","cayman islands","islands facility","current operations","bed tertiary","tertiary care","care hospital","hospital features","reinforced roof","roof walls","walls doors","builto withstand","category hurricane","critical assets","power independent","advanced ventilation","ventilation system","blocks potentially","potentially contaminated","contaminated air","reaching beyond","infectious patients","medical grade","grade oxygen","automated air","air conditioning","cuts energy","energy consumption","consumption costs","gives air","solar farm","energy consumption","almost location","satellite offices","tertiary care","care hospital","sea view","view road","road near","near high","high rock","grand cayman","health city","city opened","canadian satellite","satellite office","office located","local canadian","canadian healthcare","healthcare professionals","work closely","country medical","medical practitioners","wanto move","long waiting","waiting lists","health city","city cayman","cayman islands","non emergency","emergency procedures","procedures health","health city","canadian office","office fields","fields general","abouthe cayman","cayman islands","islands hospital","hospital coordinates","coordinates phone","patient care","travel arrangements","supports patients","patients journeys","cayman islands","canadian healthcare","healthcare providers","translation services","ensure continuity","care features","features file","file private","private patient","thumb x","x px","px private","private patient","patient room","room file","file waiting","waiting room","thumb x","x px","px waiting","waiting room","semi private","private patient","patient rooms","rooms intensive","intensive care","care unit","bed recovery","operating theatres","theatres two","two hybrid","hybrid operating","operating theatres","theatres centralized","centralized patient","patient monitoring","monitoring system","system laboratory","laboratory operating","services imaging","gamma camera","camera nuclear","nuclear medicine","room dental","dental suite","suite professional","professional grade","grade kitchen","kitchen medical","medical grade","water storage","storage tank","tank sewer","sewer treatment","treatment plant","plant complimentary","free parking","parking overnight","overnight stay","patients companions","companions visitors","visitors natural","natural herb","herb garden","scenic walking","walking paths","paths four","four star","star visitor","son pathway","thumb scenic","scenic walking","walking path","health city","conservation efforts","health city","city sustainability","sustainability efforts","efforts resulted","million gallons","water saved","million gallons","waste reduction","included recycling","onsite medical","medical waste","waste treatment","also introduced","total waste","electricity conservation","caribbean hospital","infrastructure includes","building management","management monitoring","monitoring system","heating ventilation","air conditioning","conditioning system","system diversification","official conservation","conservation report","report showed","energy savings","diesel saved","million pounds","carbon saved","saved technology","technology according","robert pearl","pearl executive","executive director","medical group","largest integrated","integrated healthcare","healthcare system","us health","health city","bringing together","together thealthcare","thealthcare service","silicon valley","valley health","health city","city utilizes","integrated patient","patient data","data platform","platform called","bed constantly","constantly monitors","monitors individual","individual patient","clinical datand","datand current","recommend specific","system also","also monitors","fall beyond","accepted range","staff clinical","clinical specialities","specialities milestones","milestones general","patients treated","patients treated","first ever","thenglish speaking","speaking caribbean","caribbean region","health city","city cayman","cayman islands","february first","first ever","ever artificial","artificial heart","health city","complex heart","heart surgery","successfully carried","approximately times","south america","america health","health city","performed two","two successful","successful surgeries","first year","operation first","first ever","surgery performed","cayman islands","health city","cardiac surgeries","surgeries performed","lab procedures","procedures performed","performed including","emergency cases","emergency cases","heart foundation","heart surgeries","surgeries performed","performed free","haiti jamaica","orthopedic surgeries","surgeries performed","performed health","health city","city introduced","computer navigation","navigation technology","invasive joint","joint replacement","replacement surgeries","additions plans","thealth city","city compound","compound include","include increasing","bed facility","bed unit","unit dedicated","cancer care","academic institution","research facility","assisted living","living community","offers living","living quarters","adults two","two adjoining","adjoining hotels","procedures category","category medical","medical tourism"],"new_description":"health city cayman_islands jci accredited tertiary care hospital cayman_islands british overseas territory cayman_islands healthcare city insights thealth authority project specializing chronic acute cardiac orthopedic neurological medical_travel focused hospital provided healthcare solution tover march adult patients primarily reside caribbean latin_american united_states canada bed hospital iseen government cayman_islands key driver diversification country economy progress future gained health_city hospital track cayman must latitude longitude using logo logo location high rock east end cayman_islands british overseas territory region caribbean country coordinates view road healthcare private type tertiary care medical_travel affordable healthcare cardiac surgery joint_commission_international emergency beds founded february website links background health_city cayman_islands born vision heart isupported two_major healthcare organizations serves chairman narayana health oversees network hospitals across indiand cayman_islands largest non_profit health system us world largest catholic faith based health system make high_quality care accessible history square foot facility opened february becoming first advanced medical facility tertiary care hospital cayman_islands facility current operations bed tertiary care hospital features reinforced roof walls doors windows builto withstand category hurricane shield critical assets flooding back generators built allow days power independent grid advanced ventilation system blocks potentially contaminated air reaching beyond rooms infectious patients system allows hospital create medical grade oxygen pulling air house automated air_conditioning cuts energy consumption costs monitoring gives air needed solar farm reduces hospital energy consumption almost location satellite offices tertiary care hospital located sea view road near high rock theast grand cayman health_city opened canadian satellite office located office local canadian healthcare professionals work closely country medical practitioners wanto move patients long waiting lists refer health_city cayman_islands non emergency procedures health_city canadian office fields general abouthe cayman_islands hospital coordinates phone city physicians patient care travel arrangements supports patients journeys cayman_islands connects canadian healthcare providers translation services necessary ensure continuity care features file private patient thumb x px private patient room file waiting room thumb x px waiting room private semi private patient rooms intensive care unit suite beds bed bed recovery operating theatres two hybrid operating theatres centralized patient monitoring system laboratory operating basis services imaging gamma camera nuclear medicine room dental suite professional grade kitchen medical grade underground water storage tank sewer treatment plant complimentary free parking overnight stay patients companions visitors natural herb garden scenic walking paths four star visitor father son pathway health thumb scenic walking path health_city conservation_efforts health_city sustainability efforts resulted million gallons water saved million gallons diverted waste reduction initiative included recycling onsite medical waste treatment also introduced result total waste diverted terms electricity conservation caribbean hospital infrastructure includes building management monitoring system well heating ventilation air_conditioning system diversification official conservation report showed energy savings million saved gallons diesel saved million pounds carbon saved technology according robert pearl executive_director ceof medical group largest integrated healthcare system us health_city bringing together thealthcare service bangalore technology silicon valley health_city utilizes integrated patient data platform called thisystem accessed ipad bed constantly monitors individual patient clinical datand current recommend specific system also monitors patient fall beyond accepted range immediately staff clinical specialities milestones general march patients treated patients treated total performed first_ever undertaken thenglish speaking caribbean region completed health_city cayman_islands february first_ever artificial heart left device successfully caribbean health_city complex heart surgery successfully carried approximately times south_america health_city performed two successful surgeries first_year operation first_ever bypass surgery performed cayman_islands completed health_city july april cardiac surgeries performed lab procedures performed including emergency cases emergency cases procedures procedures withe heart foundation heart surgeries performed free charge children haiti jamaica honduras march orthopedic surgeries performed health_city introduced computer navigation technology increase accuracy invasive invasive joint replacement surgeries additions plans expansion additions thealth city compound include increasing beds bed facility bed unit dedicated cancer care academic institution research facility assisted living community offers living quarters adults two adjoining hotels patients stay procedures category_medical tourism"},{"title":"Health food restaurant","description":"a health food restaurant is a restauranthat serves primarily or exclusively health food s which may include vegetarian vegan raw foods raw macrobiotic organic food organic and low fat menu options this a summary timeline of important events in the development of thealth food restauranthealth food obsession began by introducing alcohol free restaurants and by promoting convenience food unprocessed foods ganda chagan kapitan opened gc kapitan one of the first vegetarian restaurants due to william childs concerns about healthe childs restaurants began serving only vegetarian food known as the child s unique dairy lunchowever this meatless menu led to a severe loss of business and the policy wasoon revised fresh yeast was found to beneficial for certain ailments acne vulgariskin blemishes headaches and colds by the middle of world war iin toronto the public was complaining that conditions in restaurants hadeteriorated significantly in september local board of healthe board of healthe food control director and six health inspectorestaurant inspectors decided to meet and to implement improvements in sanitation and to mandate a semi annual health inspection and certificate for food handlersubway restaurant subway was founded by fredelucand peter buck restaurateur peter buck subway offered submarine sandwiches and salads as healthy alternatives to fast food restaurants with franchises throughouthe united states and in other countries knowing the best franchise businesses uber articles retrieved on s good earth restaurant chain good earth a health food restaurant franchise based in california was founded then eventually purchased by general mills in restaurant nora becamerica s first certified organic food organic restaurant which meanthat or more of everything that you ate there had been produced by certified organic farming organic growers and organic farming farmers who share nora s commitmento sustainable agriculture kfc s parent companyum brands yum brands incommitted to placing calorie counts on menu boards at corporate owned restaurants nationwide by january a new us federalaw eventually will require all chain restaurant s to do thisee also food guide pyramid health food store healthy eating pyramid list of vegetarian restaurants list of vegetariand vegan companies nutrition spe certified externalinks resourcesupport for vegetarians vegan eating out vegan restaurant and fast food chain guide category types of restaurants","main_words":["health","food_restaurant","restauranthat","serves","primarily","exclusively","health","food","may_include","vegetarian","vegan","raw","foods","raw","organic","food","organic","low","fat","menu","options","summary","timeline","important","events","development","thealth","food","food","obsession","began","introducing","alcohol_free","restaurants","promoting","convenience","food","foods","opened","one","first","vegetarian","restaurants","due","william","childs","concerns","healthe","childs","restaurants","began","serving","vegetarian","food","known","child","unique","dairy","menu","led","severe","loss","business","policy","wasoon","revised","fresh","yeast","found","beneficial","certain","middle","world_war","iin","toronto","public","conditions","restaurants","significantly","september","local","board","healthe","board","healthe","food","control","director","six","health","inspectors","decided","meet","implement","improvements","sanitation","mandate","semi","annual","health","inspection","certificate","food_restaurant","subway","founded","peter","buck","restaurateur","peter","buck","subway","offered","submarine","sandwiches","salads","healthy","alternatives","fast_food_restaurants","franchises","throughouthe_united_states","countries","knowing","best","franchise","businesses","uber","articles","retrieved","good","earth","restaurant_chain","good","earth","health","food_restaurant","franchise","based","california","founded","eventually","purchased","general","mills","restaurant","first","certified","organic","food","organic","restaurant","meanthat","everything","ate","produced","certified","organic","farming","organic","organic","farming","farmers","share","commitmento","sustainable","agriculture","kfc","parent","brands","yum","brands","placing","calorie","counts","menu","boards","corporate","owned","restaurants","nationwide","january","new","us","eventually","require","chain","restaurant","also","pyramid","health","food","store","healthy","eating","pyramid","list","vegetarian","restaurants_list","vegetariand","vegan","companies","nutrition","spe","certified","externalinks","vegan","eating","vegan","restaurant","fast_food","chain","restaurants"],"clean_bigrams":[["health","food"],["food","restaurant"],["restauranthat","serves"],["serves","primarily"],["exclusively","health"],["health","food"],["may","include"],["include","vegetarian"],["vegetarian","vegan"],["vegan","raw"],["raw","foods"],["foods","raw"],["organic","food"],["food","organic"],["low","fat"],["fat","menu"],["menu","options"],["summary","timeline"],["important","events"],["thealth","food"],["food","obsession"],["obsession","began"],["introducing","alcohol"],["alcohol","free"],["free","restaurants"],["promoting","convenience"],["convenience","food"],["first","vegetarian"],["vegetarian","restaurants"],["restaurants","due"],["william","childs"],["childs","concerns"],["healthe","childs"],["childs","restaurants"],["restaurants","began"],["began","serving"],["vegetarian","food"],["food","known"],["unique","dairy"],["menu","led"],["severe","loss"],["policy","wasoon"],["wasoon","revised"],["revised","fresh"],["fresh","yeast"],["world","war"],["war","iin"],["iin","toronto"],["september","local"],["local","board"],["healthe","board"],["healthe","food"],["food","control"],["control","director"],["six","health"],["inspectors","decided"],["implement","improvements"],["semi","annual"],["annual","health"],["health","inspection"],["food","restaurant"],["restaurant","subway"],["peter","buck"],["buck","restaurateur"],["restaurateur","peter"],["peter","buck"],["buck","subway"],["subway","offered"],["offered","submarine"],["submarine","sandwiches"],["healthy","alternatives"],["fast","food"],["food","restaurants"],["franchises","throughouthe"],["throughouthe","united"],["united","states"],["countries","knowing"],["best","franchise"],["franchise","businesses"],["businesses","uber"],["uber","articles"],["articles","retrieved"],["good","earth"],["earth","restaurant"],["restaurant","chain"],["chain","good"],["good","earth"],["health","food"],["food","restaurant"],["restaurant","franchise"],["franchise","based"],["eventually","purchased"],["general","mills"],["first","certified"],["certified","organic"],["organic","food"],["food","organic"],["organic","restaurant"],["certified","organic"],["organic","farming"],["farming","organic"],["organic","farming"],["farming","farmers"],["commitmento","sustainable"],["sustainable","agriculture"],["agriculture","kfc"],["brands","yum"],["yum","brands"],["placing","calorie"],["calorie","counts"],["menu","boards"],["corporate","owned"],["owned","restaurants"],["restaurants","nationwide"],["new","us"],["chain","restaurant"],["also","food"],["food","guide"],["guide","pyramid"],["pyramid","health"],["health","food"],["food","store"],["store","healthy"],["healthy","eating"],["eating","pyramid"],["pyramid","list"],["vegetarian","restaurants"],["restaurants","list"],["vegetariand","vegan"],["vegan","companies"],["companies","nutrition"],["nutrition","spe"],["spe","certified"],["certified","externalinks"],["vegan","eating"],["vegan","restaurant"],["fast","food"],["food","chain"],["chain","guide"],["guide","category"],["category","types"]],"all_collocations":["health food","food restaurant","restauranthat serves","serves primarily","exclusively health","health food","may include","include vegetarian","vegetarian vegan","vegan raw","raw foods","foods raw","organic food","food organic","low fat","fat menu","menu options","summary timeline","important events","thealth food","food obsession","obsession began","introducing alcohol","alcohol free","free restaurants","promoting convenience","convenience food","first vegetarian","vegetarian restaurants","restaurants due","william childs","childs concerns","healthe childs","childs restaurants","restaurants began","began serving","vegetarian food","food known","unique dairy","menu led","severe loss","policy wasoon","wasoon revised","revised fresh","fresh yeast","world war","war iin","iin toronto","september local","local board","healthe board","healthe food","food control","control director","six health","inspectors decided","implement improvements","semi annual","annual health","health inspection","food restaurant","restaurant subway","peter buck","buck restaurateur","restaurateur peter","peter buck","buck subway","subway offered","offered submarine","submarine sandwiches","healthy alternatives","fast food","food restaurants","franchises throughouthe","throughouthe united","united states","countries knowing","best franchise","franchise businesses","businesses uber","uber articles","articles retrieved","good earth","earth restaurant","restaurant chain","chain good","good earth","health food","food restaurant","restaurant franchise","franchise based","eventually purchased","general mills","first certified","certified organic","organic food","food organic","organic restaurant","certified organic","organic farming","farming organic","organic farming","farming farmers","commitmento sustainable","sustainable agriculture","agriculture kfc","brands yum","yum brands","placing calorie","calorie counts","menu boards","corporate owned","owned restaurants","restaurants nationwide","new us","chain restaurant","also food","food guide","guide pyramid","pyramid health","health food","food store","store healthy","healthy eating","eating pyramid","pyramid list","vegetarian restaurants","restaurants list","vegetariand vegan","vegan companies","companies nutrition","nutrition spe","spe certified","certified externalinks","vegan eating","vegan restaurant","fast food","food chain","chain guide","guide category","category types"],"new_description":"health food_restaurant restauranthat serves primarily exclusively health food may_include vegetarian vegan raw foods raw organic food organic low fat menu options summary timeline important events development thealth food food obsession began introducing alcohol_free restaurants promoting convenience food foods opened one first vegetarian restaurants due william childs concerns healthe childs restaurants began serving vegetarian food known child unique dairy menu led severe loss business policy wasoon revised fresh yeast found beneficial certain middle world_war iin toronto public conditions restaurants significantly september local board healthe board healthe food control director six health inspectors decided meet implement improvements sanitation mandate semi annual health inspection certificate food_restaurant subway founded peter buck restaurateur peter buck subway offered submarine sandwiches salads healthy alternatives fast_food_restaurants franchises throughouthe_united_states countries knowing best franchise businesses uber articles retrieved good earth restaurant_chain good earth health food_restaurant franchise based california founded eventually purchased general mills restaurant first certified organic food organic restaurant meanthat everything ate produced certified organic farming organic organic farming farmers share commitmento sustainable agriculture kfc parent brands yum brands placing calorie counts menu boards corporate owned restaurants nationwide january new us eventually require chain restaurant also food_guide pyramid health food store healthy eating pyramid list vegetarian restaurants_list vegetariand vegan companies nutrition spe certified externalinks vegan eating vegan restaurant fast_food chain guide_category_types restaurants"},{"title":"Heinrich Hansjakob","description":"heinrichansjakob pseudonym hans am see was a german roman catholichurch catholic priest and granduchy of baden historiand politician who was especially well known as a writer in addition to scientific works political writings and travel reports he also published short story stories and novel s based mainly on the local history of the central black forest and the mentality of people in that region life haslach period file infotafel hansjakobjpg thumb left board at hansjakob s place of birth in haslach file hansjakobgrafenvonfreiburgeinbandjpg uprighthumb hansjakob s dissertation file waldshut hansjakobjpg thumb upright exhibition at his residence in waldshut heinrichansjakoborn on august in haslach im kinzigtal haslach in the kinzig rhine kinzig valley as the son of baker and innkeeper philipp hansjakob and his wife cilie nee kaltenbachis mother came from the village of rohrbach in furtwangen im schwarzwald on his father side the family of hansjakob had lived on the kinzig since thend of the thirtyears war heinrichansjakob schneeballen dritte reihe new edition im verlag von adolf bonz comp stuttgart new edition von der waldkircher verlagsgesellschaft waldkirch p begebenheiten w hrender zeit als pfarrer von hagnau from to he wento the lyceum in rastatthereafter he studied theology philosophy and classical philology athe university ofreiburg in he was ordained as a priest in he graduated from the university of t bingen with a historical treatise on the counts ofreiburg donaueschingen and waldshut period from january after histudies he was a initially a studenteacher for a year at donaueschingen grammar school here he became friends withe director of the f rstenberg archives karl roth von schreckenstein and the librarian karl august barack witheir encouragement he wrote his dissertation the counts ofreiburg im breisgau at war witheir town die grafen von freiburg im breisgau im kampfe mit ihrer stadt in he was promoted to chairman of the citizen s high school heren b rgerschule in waldshutiengen waldshut in waldshut he ran his own household withisister philippine during his time in waldshut he published in adventhe paper the salpeterer s a politico religiousect and the biography of hermann von vicari archbishop ofreiburg both papers broughthe authorities onto the scene the latter publication was confiscated and banned as a result in he resigned from his position as head of the citizen school because he now felt unfettered he gave a talk in engen which was critical of the government under minister julius jolly politician jolly whereupon he was incarcerated in rastatt fortress for a month for slander here he published the book in the fortress auf der festung the short book the waldshut war of der waldshuter krieg von was also publisheduring his time at waldshut appearing in pastor in hagnau am bodensee file hansjakob wohnhaus hagnaujpg lefthumb hansjakob s house in hagnau am bodensee on december the suffragan bishop lothar von k bel moved him at his own requesto hagnau am bodenseejosef ruchansjakob in waldshut in heimat am hochrhein jahrbuch des landkreises waldshut jg pp from to he was the catholic pastor in hagnau am bodensee as the water doctor by the lake he counselled patients on moderation in their lives on the moderate use of water and compressesheinrichansjakob schneeballen dritte reihe new edition in verlag von adolf bonz comp stuttgart new edition by the waldkircher verlagsgesellschaft waldkirch p events during the period as pastor of hagnau the cultivation of wine in hagnau was threatened by partime farming infestation by mildew and the freezing over of lake constance during the winter of as result on october hansjakob founded the hagnau vintner society and thus helped to save the rich tradition of viticulture by lake constanceheinz k singer heinrichansjakobringt die hagnauer auf trab in lahrer hinkender bote kalender und kalendergeschichten jg p the society was the first winemaking cooperative in baden even today they still portray a picture of hansjakobs in their logo from to he was also a member of parliament in the catholic people s party in the landtag of baden in he was imprisoned for six weeks in radolfzell am bodensee radolfzell for slandering a state official in the same year his first son was born whereupon hansjakob called on a neurologisthere were supposed to be four children born out of wedlock in the years to he travelled to france italy austria belgium and the netherlands in he fell out withis political party pastor in freiburg in breisgau file hansjakob kapelle hofstettenjpg uprighthumb hansjakob chapel in hofstetten in he took up the post of pastor of st martin s church freiburg altstadt st martin s church in freiburg im breisgau freiburg whiche held until despite quarrels withe church authorities hansjakob had a predisposition to nervous disorders and suffered fromood swing s in he went for treatmento illenau sanatorium near achern for several months he fought his bouts of major depressive disorder depression with opiate s from he lived in the former freiburg charterhouse which athatime had already become a pfrundhaus a rest and living home for prebendary prebendaries pfr ndner ie pensioners who thanks to a legacy property law legacy had received the righto retire and be looked after freihof in haslach afteretiring he had the freihof in his home town of haslach built in the shape of a farmhouse he lived there from october until his death on june hansjakob verlag der stadt haslach publ dr heinrichansjakob pfarrer politiker schriftsteller ein kurzer abrisseines lebens eh druck haslach pp the freihof museum haslach im kinzigtal freihof was preserved as a museum heinrichansjakob died on june athe age of in the place of his birthe was interred in the crypt of his funerary chapel built by his good friend and architect max meckel and the sculptor joseph dettlinger inearby hofstetten baden hofstetten bebilderte webseite zur hansjakob grabkapelle in hofstetten werner wolf holz pfel der architekt max meckel studien zur architektur und zum kirchenbau des historismus in deutschland kunstverlag josefink lindenberg pp ff references literature alphabetical by authors andreas beck hansjakob gedanken ber sein leiden heinrichansjakob gesellschaft freiburg helmut bender hansjakob und freiburg waldkircher verlagsgesellschaft badische reihe der volksschriftsteller heinrichansjakob marginalien zu einem schwarzw lder original waldkircher verl heinz bischof anekdoten um hansjakob kehl ua morstadt oswald floeck heinrichansjakob ein bild seines geistigentwicklungsganges und schrifttums karlsruhe ua gutschansjakob verlag der stadt haslach publ dr heinrichansjakob pfarrer politiker schriftsteller ein kurzer abrisseines lebens eh druck haslachans heid heinrichansjakob und rastatt waldkircher verl gestadtgeschichtliche reihe stadt rastatt manfred hildenbrand heinrichansjakob rebell im priesterrock rd edn haslachansjakob verl der stadt haslach publications of the haslach municipal archives heinrichansjakob festschrift zum geburtstag haslach self publication by the town of haslach ik with peter sch fer ed hansjakob mit g nsekiel und tintenfass ausgew hlte briefe heinrichansjakob gesellschaft freiburg josef hoben heinrichansjakob derebell in der soutane uhldingen de scriptum pressedienst f r literatur geschichte kunst literatur der euregio artur j hofmann hansjakob under badische kulturkampf kehl ua morstadt johann kempf heinrichansjakob sein leben wirken undichten stuttgart bonz kurt klein heinrichansjakob ein leben f r das volk erw aufl kehl morstadt heinrich lehmann peter sch fer hrsg heinrichansjakob aus meinem tagebuchagnauer tagebuch verlag der heinrichansjakob gesellschaft freiburg isbn peter sch fer heinrichansjakobibliographie freiburg im breisgau heinrichansjakob gesellschaft adolf j schmid hansjakob undas wolftal ein lesebuch apis verlag freiburg im breisgau externalinks biografische webseite des erzbistums freiburg website der heinrichansjakob gesellschaft das heinrichansjakob haus w rdigung heinrichansjakobs als pers nlichkeit der weinkultur category german roman catholic priests category members of the second chamber of the diet of the granduchy of baden category th century literature category th century literature category german language literature category germanovels category travel writing category german diarists category history of baden category births category deaths","main_words":["heinrichansjakob","pseudonym","hans","see","german","roman","catholichurch","catholic","priest","baden","politician","especially","well_known","writer","addition","scientific","works","political","writings","travel","reports","also_published","short_story","stories","novel","based","mainly","local","history","central","black_forest","people","region","life","haslach","period","file","thumb","left","board","hansjakob","place","birth","haslach","file","uprighthumb","hansjakob","file","waldshut","thumb","upright","exhibition","residence","waldshut","august","haslach","haslach","rhine","valley","son","baker","innkeeper","hansjakob","wife","mother","came","village","furtwangen","schwarzwald","father","side","family","hansjakob","lived","since","thend","thirtyears","war","heinrichansjakob","reihe","new","edition","verlag","von","adolf","comp","stuttgart","new","edition","von","der","waldkircher","verlagsgesellschaft","p","w","als","von","hagnau","wento","studied","philosophy","classical","athe_university","ofreiburg","priest","graduated","university","historical","counts","ofreiburg","waldshut","period","january","histudies","initially","year","school","became","friends","withe","director","f","archives","karl","roth","von","karl","august","barack","witheir","wrote","counts","ofreiburg","breisgau","war","witheir","town","die","von","freiburg","breisgau","mit","stadt","promoted","chairman","citizen","high_school","b","waldshut","waldshut","ran","household","philippine","time","waldshut","published","paper","biography","von","ofreiburg","papers","broughthe","authorities","onto","scene","latter","publication","confiscated","banned","result","resigned","position","head","citizen","school","felt","gave","talk","critical","government","minister","julius","jolly","politician","jolly","fortress","month","published","book","fortress","auf","der","short","book","waldshut","war","der","von","also","time","waldshut","appearing","pastor","hagnau","bodensee","file","hansjakob","lefthumb","hansjakob","house","hagnau","bodensee","december","bishop","von","k","bel","moved","hagnau","waldshut","des","waldshut","pp","catholic","pastor","hagnau","bodensee","water","doctor","lake","patients","lives","moderate","use","water","reihe","new","edition","verlag","von","adolf","comp","stuttgart","new","edition","waldkircher","verlagsgesellschaft","p","events","period","pastor","hagnau","cultivation","wine","hagnau","threatened","partime","farming","freezing","lake","constance","winter","result","october","hansjakob","founded","hagnau","society","thus","helped","save","rich","tradition","lake","k","singer","die","auf","und","p","society","first","cooperative","baden","even","today","still","picture","logo","also","member","parliament","catholic","people","party","baden","six","weeks","bodensee","state","official","year","first","son","born","hansjakob","called","supposed","four","children","born","years","travelled","france","italy","austria","belgium","netherlands","fell","withis","political","party","pastor","freiburg","breisgau","file","hansjakob","uprighthumb","hansjakob","chapel","hofstetten","took","post","pastor","st_martin","church","freiburg","st_martin","church","freiburg","breisgau","freiburg","whiche","held","despite","withe","church","authorities","hansjakob","disorders","suffered","swing","went","near","several","months","fought","major","disorder","depression","lived","former","freiburg","athatime","already","become","rest","living","home","thanks","legacy","property","law","legacy","received","righto","looked","freihof","haslach","freihof","home","town","haslach","built","shape","farmhouse","lived","october","death","june","hansjakob","verlag","der","stadt","haslach","publ","heinrichansjakob","ein","haslach","pp","freihof","museum","haslach","freihof","preserved","museum","heinrichansjakob","died","june","athe_age","place","chapel","built","good","friend","architect","max","sculptor","joseph","hofstetten","baden","hofstetten","hansjakob","hofstetten","werner","wolf","der","max","und","des","pp","references","literature","alphabetical","authors","hansjakob","ber","heinrichansjakob","gesellschaft","freiburg","hansjakob","und","freiburg","waldkircher","verlagsgesellschaft","reihe","der","heinrichansjakob","original","waldkircher","heinz","hansjakob","heinrichansjakob","ein","bild","und","verlag","der","stadt","haslach","publ","heinrichansjakob","ein","heinrichansjakob","und","waldkircher","reihe","stadt","heinrichansjakob","der","stadt","haslach","publications","haslach","municipal","archives","heinrichansjakob","haslach","self","publication","town","haslach","peter","sch","fer","ed","hansjakob","mit","g","und","heinrichansjakob","gesellschaft","freiburg","heinrichansjakob","der","de","f","r","literatur","geschichte","literatur","der","j","hansjakob","johann","heinrichansjakob","stuttgart","kurt","klein","heinrichansjakob","ein","f","r","das","peter","sch","fer","heinrichansjakob","aus","verlag","der","heinrichansjakob","gesellschaft","freiburg","isbn","peter","sch","fer","freiburg","breisgau","heinrichansjakob","gesellschaft","adolf","j","hansjakob","ein","verlag","freiburg","breisgau","externalinks","des","freiburg","website","der","heinrichansjakob","gesellschaft","das","heinrichansjakob","haus","w","als","der","category_german","roman","catholic","category","members","second","chamber","diet","baden","category_th_century","th_century","category_travel","category_history","baden","category_births_category","deaths"],"clean_bigrams":[["heinrichansjakob","pseudonym"],["pseudonym","hans"],["german","roman"],["roman","catholichurch"],["catholichurch","catholic"],["catholic","priest"],["especially","well"],["well","known"],["scientific","works"],["works","political"],["political","writings"],["travel","reports"],["also","published"],["published","short"],["short","story"],["story","stories"],["based","mainly"],["local","history"],["central","black"],["black","forest"],["region","life"],["life","haslach"],["haslach","period"],["period","file"],["thumb","left"],["left","board"],["haslach","file"],["uprighthumb","hansjakob"],["file","waldshut"],["thumb","upright"],["upright","exhibition"],["mother","came"],["father","side"],["since","thend"],["thirtyears","war"],["war","heinrichansjakob"],["reihe","new"],["new","edition"],["verlag","von"],["von","adolf"],["comp","stuttgart"],["stuttgart","new"],["new","edition"],["edition","von"],["von","der"],["der","waldkircher"],["waldkircher","verlagsgesellschaft"],["von","hagnau"],["athe","university"],["university","ofreiburg"],["counts","ofreiburg"],["waldshut","period"],["became","friends"],["friends","withe"],["withe","director"],["archives","karl"],["karl","roth"],["roth","von"],["karl","august"],["august","barack"],["barack","witheir"],["counts","ofreiburg"],["war","witheir"],["witheir","town"],["town","die"],["von","freiburg"],["high","school"],["papers","broughthe"],["broughthe","authorities"],["authorities","onto"],["latter","publication"],["citizen","school"],["minister","julius"],["julius","jolly"],["jolly","politician"],["politician","jolly"],["fortress","auf"],["auf","der"],["short","book"],["waldshut","war"],["waldshut","appearing"],["bodensee","file"],["file","hansjakob"],["lefthumb","hansjakob"],["von","k"],["k","bel"],["bel","moved"],["catholic","pastor"],["water","doctor"],["moderate","use"],["reihe","new"],["new","edition"],["verlag","von"],["von","adolf"],["comp","stuttgart"],["stuttgart","new"],["new","edition"],["waldkircher","verlagsgesellschaft"],["p","events"],["partime","farming"],["lake","constance"],["october","hansjakob"],["hansjakob","founded"],["thus","helped"],["rich","tradition"],["k","singer"],["baden","even"],["even","today"],["catholic","people"],["six","weeks"],["state","official"],["first","son"],["hansjakob","called"],["four","children"],["children","born"],["france","italy"],["italy","austria"],["austria","belgium"],["withis","political"],["political","party"],["party","pastor"],["breisgau","file"],["file","hansjakob"],["uprighthumb","hansjakob"],["hansjakob","chapel"],["st","martin"],["church","freiburg"],["st","martin"],["church","freiburg"],["breisgau","freiburg"],["freiburg","whiche"],["whiche","held"],["withe","church"],["church","authorities"],["authorities","hansjakob"],["several","months"],["disorder","depression"],["former","freiburg"],["already","become"],["living","home"],["legacy","property"],["property","law"],["law","legacy"],["home","town"],["haslach","built"],["june","hansjakob"],["hansjakob","verlag"],["verlag","der"],["der","stadt"],["stadt","haslach"],["haslach","publ"],["heinrichansjakob","ein"],["haslach","pp"],["freihof","museum"],["museum","haslach"],["museum","heinrichansjakob"],["heinrichansjakob","died"],["june","athe"],["athe","age"],["chapel","built"],["good","friend"],["architect","max"],["sculptor","joseph"],["hofstetten","baden"],["baden","hofstetten"],["hofstetten","werner"],["werner","wolf"],["references","literature"],["literature","alphabetical"],["heinrichansjakob","gesellschaft"],["gesellschaft","freiburg"],["bender","hansjakob"],["hansjakob","und"],["und","freiburg"],["freiburg","waldkircher"],["waldkircher","verlagsgesellschaft"],["reihe","der"],["der","heinrichansjakob"],["original","waldkircher"],["heinrichansjakob","ein"],["ein","bild"],["verlag","der"],["der","stadt"],["stadt","haslach"],["haslach","publ"],["heinrichansjakob","ein"],["heinrichansjakob","und"],["reihe","stadt"],["der","stadt"],["stadt","haslach"],["haslach","publications"],["haslach","municipal"],["municipal","archives"],["archives","heinrichansjakob"],["haslach","self"],["self","publication"],["peter","sch"],["sch","fer"],["fer","ed"],["ed","hansjakob"],["hansjakob","mit"],["mit","g"],["heinrichansjakob","gesellschaft"],["gesellschaft","freiburg"],["freiburg","josef"],["f","r"],["r","literatur"],["literatur","geschichte"],["literatur","der"],["kurt","klein"],["klein","heinrichansjakob"],["heinrichansjakob","ein"],["f","r"],["r","das"],["peter","sch"],["sch","fer"],["heinrichansjakob","aus"],["verlag","der"],["der","heinrichansjakob"],["heinrichansjakob","gesellschaft"],["gesellschaft","freiburg"],["freiburg","isbn"],["isbn","peter"],["peter","sch"],["sch","fer"],["breisgau","heinrichansjakob"],["heinrichansjakob","gesellschaft"],["gesellschaft","adolf"],["adolf","j"],["verlag","freiburg"],["breisgau","externalinks"],["freiburg","website"],["website","der"],["der","heinrichansjakob"],["heinrichansjakob","gesellschaft"],["gesellschaft","das"],["das","heinrichansjakob"],["heinrichansjakob","haus"],["haus","w"],["category","german"],["german","roman"],["roman","catholic"],["category","members"],["second","chamber"],["baden","category"],["category","th"],["th","century"],["century","literature"],["literature","category"],["category","th"],["th","century"],["century","literature"],["literature","category"],["category","german"],["german","language"],["language","literature"],["literature","category"],["category","travel"],["travel","writing"],["writing","category"],["category","german"],["category","history"],["baden","category"],["category","births"],["births","category"],["category","deaths"]],"all_collocations":["heinrichansjakob pseudonym","pseudonym hans","german roman","roman catholichurch","catholichurch catholic","catholic priest","especially well","well known","scientific works","works political","political writings","travel reports","also published","published short","short story","story stories","based mainly","local history","central black","black forest","region life","life haslach","haslach period","period file","left board","haslach file","uprighthumb hansjakob","file waldshut","upright exhibition","mother came","father side","since thend","thirtyears war","war heinrichansjakob","reihe new","new edition","verlag von","von adolf","comp stuttgart","stuttgart new","new edition","edition von","von der","der waldkircher","waldkircher verlagsgesellschaft","von hagnau","athe university","university ofreiburg","counts ofreiburg","waldshut period","became friends","friends withe","withe director","archives karl","karl roth","roth von","karl august","august barack","barack witheir","counts ofreiburg","war witheir","witheir town","town die","von freiburg","high school","papers broughthe","broughthe authorities","authorities onto","latter publication","citizen school","minister julius","julius jolly","jolly politician","politician jolly","fortress auf","auf der","short book","waldshut war","waldshut appearing","bodensee file","file hansjakob","lefthumb hansjakob","von k","k bel","bel moved","catholic pastor","water doctor","moderate use","reihe new","new edition","verlag von","von adolf","comp stuttgart","stuttgart new","new edition","waldkircher verlagsgesellschaft","p events","partime farming","lake constance","october hansjakob","hansjakob founded","thus helped","rich tradition","k singer","baden even","even today","catholic people","six weeks","state official","first son","hansjakob called","four children","children born","france italy","italy austria","austria belgium","withis political","political party","party pastor","breisgau file","file hansjakob","uprighthumb hansjakob","hansjakob chapel","st martin","church freiburg","st martin","church freiburg","breisgau freiburg","freiburg whiche","whiche held","withe church","church authorities","authorities hansjakob","several months","disorder depression","former freiburg","already become","living home","legacy property","property law","law legacy","home town","haslach built","june hansjakob","hansjakob verlag","verlag der","der stadt","stadt haslach","haslach publ","heinrichansjakob ein","haslach pp","freihof museum","museum haslach","museum heinrichansjakob","heinrichansjakob died","june athe","athe age","chapel built","good friend","architect max","sculptor joseph","hofstetten baden","baden hofstetten","hofstetten werner","werner wolf","references literature","literature alphabetical","heinrichansjakob gesellschaft","gesellschaft freiburg","bender hansjakob","hansjakob und","und freiburg","freiburg waldkircher","waldkircher verlagsgesellschaft","reihe der","der heinrichansjakob","original waldkircher","heinrichansjakob ein","ein bild","verlag der","der stadt","stadt haslach","haslach publ","heinrichansjakob ein","heinrichansjakob und","reihe stadt","der stadt","stadt haslach","haslach publications","haslach municipal","municipal archives","archives heinrichansjakob","haslach self","self publication","peter sch","sch fer","fer ed","ed hansjakob","hansjakob mit","mit g","heinrichansjakob gesellschaft","gesellschaft freiburg","freiburg josef","f r","r literatur","literatur geschichte","literatur der","kurt klein","klein heinrichansjakob","heinrichansjakob ein","f r","r das","peter sch","sch fer","heinrichansjakob aus","verlag der","der heinrichansjakob","heinrichansjakob gesellschaft","gesellschaft freiburg","freiburg isbn","isbn peter","peter sch","sch fer","breisgau heinrichansjakob","heinrichansjakob gesellschaft","gesellschaft adolf","adolf j","verlag freiburg","breisgau externalinks","freiburg website","website der","der heinrichansjakob","heinrichansjakob gesellschaft","gesellschaft das","das heinrichansjakob","heinrichansjakob haus","haus w","category german","german roman","roman catholic","category members","second chamber","baden category","category th","th century","century literature","literature category","category th","th century","century literature","literature category","category german","german language","language literature","literature category","category travel","travel writing","writing category","category german","category history","baden category","category births","births category","category deaths"],"new_description":"heinrichansjakob pseudonym hans see german roman catholichurch catholic priest baden politician especially well_known writer addition scientific works political writings travel reports also_published short_story stories novel based mainly local history central black_forest people region life haslach period file thumb left board hansjakob place birth haslach file uprighthumb hansjakob file waldshut thumb upright exhibition residence waldshut august haslach haslach rhine valley son baker innkeeper hansjakob wife mother came village furtwangen schwarzwald father side family hansjakob lived since thend thirtyears war heinrichansjakob reihe new edition verlag von adolf comp stuttgart new edition von der waldkircher verlagsgesellschaft p w als von hagnau wento studied philosophy classical athe_university ofreiburg priest graduated university historical counts ofreiburg waldshut period january histudies initially year school became friends withe director f archives karl roth von karl august barack witheir wrote counts ofreiburg breisgau war witheir town die von freiburg breisgau mit stadt promoted chairman citizen high_school b waldshut waldshut ran household philippine time waldshut published paper biography von ofreiburg papers broughthe authorities onto scene latter publication confiscated banned result resigned position head citizen school felt gave talk critical government minister julius jolly politician jolly fortress month published book fortress auf der short book waldshut war der von also time waldshut appearing pastor hagnau bodensee file hansjakob lefthumb hansjakob house hagnau bodensee december bishop von k bel moved hagnau waldshut des waldshut pp catholic pastor hagnau bodensee water doctor lake patients lives moderate use water reihe new edition verlag von adolf comp stuttgart new edition waldkircher verlagsgesellschaft p events period pastor hagnau cultivation wine hagnau threatened partime farming freezing lake constance winter result october hansjakob founded hagnau society thus helped save rich tradition lake k singer die auf und p society first cooperative baden even today still picture logo also member parliament catholic people party baden six weeks bodensee state official year first son born hansjakob called supposed four children born years travelled france italy austria belgium netherlands fell withis political party pastor freiburg breisgau file hansjakob uprighthumb hansjakob chapel hofstetten took post pastor st_martin church freiburg st_martin church freiburg breisgau freiburg whiche held despite withe church authorities hansjakob disorders suffered swing went near several months fought major disorder depression lived former freiburg athatime already become rest living home thanks legacy property law legacy received righto looked freihof haslach freihof home town haslach built shape farmhouse lived october death june hansjakob verlag der stadt haslach publ heinrichansjakob ein haslach pp freihof museum haslach freihof preserved museum heinrichansjakob died june athe_age place chapel built good friend architect max sculptor joseph hofstetten baden hofstetten hansjakob hofstetten werner wolf der max und des pp references literature alphabetical authors hansjakob ber heinrichansjakob gesellschaft freiburg bender hansjakob und freiburg waldkircher verlagsgesellschaft reihe der heinrichansjakob original waldkircher heinz hansjakob heinrichansjakob ein bild und verlag der stadt haslach publ heinrichansjakob ein heinrichansjakob und waldkircher reihe stadt heinrichansjakob der stadt haslach publications haslach municipal archives heinrichansjakob haslach self publication town haslach peter sch fer ed hansjakob mit g und heinrichansjakob gesellschaft freiburg josef heinrichansjakob der de f r literatur geschichte literatur der j hansjakob johann heinrichansjakob stuttgart kurt klein heinrichansjakob ein f r das peter sch fer heinrichansjakob aus verlag der heinrichansjakob gesellschaft freiburg isbn peter sch fer freiburg breisgau heinrichansjakob gesellschaft adolf j hansjakob ein verlag freiburg breisgau externalinks des freiburg website der heinrichansjakob gesellschaft das heinrichansjakob haus w als der category_german roman catholic category members second chamber diet baden category_th_century literature_category th_century literature_category_german_language literature_category category_travel writing_category_german category_history baden category_births_category deaths"},{"title":"Hemispheres (magazine)","description":"hemispheres is the inflight magazine for united airlines the magazine is circulated monthly and reaches million passengers annually the magazine was formerly headquartered in greensboro north carolina its current headquarters is inew york city hemispheres was established in its editorial coverage includes itsignature perfect days travel piece and the latest news in business travel fashion and culture the magazine reaches a highly influential business and leisure traveller audience with a medium household income of spending and profession ink global ink was appointed as the new publisher for united hemispheres ink s first issue of hemispheres was placed on all united airlines and united airlines express flights on march externalinks united hemispheres magazine website hemispheres perfect days ink website category american lifestyle magazines category american monthly magazines category inflight magazines category magazinestablished in category magazines published inew york city category magazines published inorth carolina category media in greensboro north carolina category tourismagazines category united airlines","main_words":["hemispheres","inflight_magazine","united","airlines","magazine","circulated","monthly","reaches","million","passengers","annually","magazine","formerly","headquartered","greensboro","north_carolina","current","headquarters","inew_york_city","hemispheres","established","editorial","coverage","includes","perfect","days","travel","piece","latest","news","business_travel","fashion","culture","magazine","reaches","highly","influential","business","leisure","traveller","audience","medium","household","income","spending","profession","ink","global","ink","appointed","new","publisher","united","hemispheres","ink","first_issue","hemispheres","placed","united","airlines","united","airlines","express","flights","march","externalinks","united","hemispheres","magazine","website","hemispheres","perfect","days","ink","website_category","american_lifestyle_magazines_category","american_monthly_magazines_category","inflight_magazines_category_magazinestablished","category_magazines_published","inew_york_city","category_magazines_published","greensboro","north_carolina","category_tourismagazines","airlines"],"clean_bigrams":[["inflight","magazine"],["united","airlines"],["circulated","monthly"],["reaches","million"],["million","passengers"],["passengers","annually"],["formerly","headquartered"],["greensboro","north"],["north","carolina"],["current","headquarters"],["inew","york"],["york","city"],["city","hemispheres"],["editorial","coverage"],["coverage","includes"],["perfect","days"],["days","travel"],["travel","piece"],["latest","news"],["business","travel"],["travel","fashion"],["magazine","reaches"],["highly","influential"],["influential","business"],["leisure","traveller"],["traveller","audience"],["medium","household"],["household","income"],["profession","ink"],["ink","global"],["global","ink"],["new","publisher"],["united","hemispheres"],["hemispheres","ink"],["first","issue"],["united","airlines"],["united","airlines"],["airlines","express"],["express","flights"],["march","externalinks"],["externalinks","united"],["united","hemispheres"],["hemispheres","magazine"],["magazine","website"],["website","hemispheres"],["hemispheres","perfect"],["perfect","days"],["days","ink"],["ink","website"],["website","category"],["category","american"],["american","lifestyle"],["lifestyle","magazines"],["magazines","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","inflight"],["inflight","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","published"],["published","inew"],["inew","york"],["york","city"],["city","category"],["category","magazines"],["magazines","published"],["published","inorth"],["inorth","carolina"],["carolina","category"],["category","media"],["greensboro","north"],["north","carolina"],["carolina","category"],["category","tourismagazines"],["tourismagazines","category"],["category","united"],["united","airlines"]],"all_collocations":["inflight magazine","united airlines","circulated monthly","reaches million","million passengers","passengers annually","formerly headquartered","greensboro north","north carolina","current headquarters","inew york","york city","city hemispheres","editorial coverage","coverage includes","perfect days","days travel","travel piece","latest news","business travel","travel fashion","magazine reaches","highly influential","influential business","leisure traveller","traveller audience","medium household","household income","profession ink","ink global","global ink","new publisher","united hemispheres","hemispheres ink","first issue","united airlines","united airlines","airlines express","express flights","march externalinks","externalinks united","united hemispheres","hemispheres magazine","magazine website","website hemispheres","hemispheres perfect","perfect days","days ink","ink website","website category","category american","american lifestyle","lifestyle magazines","magazines category","category american","american monthly","monthly magazines","magazines category","category inflight","inflight magazines","magazines category","category magazinestablished","category magazines","magazines published","published inew","inew york","york city","city category","category magazines","magazines published","published inorth","inorth carolina","carolina category","category media","greensboro north","north carolina","carolina category","category tourismagazines","tourismagazines category","category united","united airlines"],"new_description":"hemispheres inflight_magazine united airlines magazine circulated monthly reaches million passengers annually magazine formerly headquartered greensboro north_carolina current headquarters inew_york_city hemispheres established editorial coverage includes perfect days travel piece latest news business_travel fashion culture magazine reaches highly influential business leisure traveller audience medium household income spending profession ink global ink appointed new publisher united hemispheres ink first_issue hemispheres placed united airlines united airlines express flights march externalinks united hemispheres magazine website hemispheres perfect days ink website_category american_lifestyle_magazines_category american_monthly_magazines_category inflight_magazines_category_magazinestablished category_magazines_published inew_york_city category_magazines_published inorth_carolina_category_media greensboro north_carolina category_tourismagazines category_united airlines"},{"title":"Heritage commodification","description":"heritage commodification is the process by which cultural themes and expressions come to bevaluated primarily in terms of their exchange value specifically within the context of cultural tourismcohen e authenticity and commoditization in tourism ann toures these cultural expressions and aspects of heritage become cultural goods transformed into commodities to be bought sold and profited from in theritage tourism industry in the context of modern globalization complex and often contradictory layers of meaning are produced in local societies and the marketing of one s cultural expressions can degrade a particular culture while simultaneously assisting in its integration into the global economy the repatriation of profits or leakage that occurs withe influx of tourist financial capital into a heritage tourist site including handicraft vendors food vendors basket makers and several other items that are produced locally and rely upon tourist capital is a crucial part of any sustainable developmenthat can be considered beneficial to local communitieschambers erve can the anthropology of tourismake us better travelers napa bulletin modern heritage tourism reproduces an economic dynamic that is dependent upon capital from tourists and corporations in creating sustained viability tourism is often directly tied to economic development so many populationsee globalization as providing increased access to vital medical services and important commoditiesjuarez ana m ecological degradation global tourism and inequality maya interpretations of the changing environment in quintana roo mexico human organization image sphinx athe louvrejpg thumb alt statue of a sphinx athe louvre statue of a sphinx athe mus e du louvre paris france the tourism industry has been rapidly growing during the pastwo decades and thexpansion will probably continue well into the futureworld tourism organization unwtourism highlights there were nearly one billion tourist arrivals in compared tonly twenty five million in moreover in tourism directly accounted for nearly one trillion us dollars worldwide approximately five percent of gdp is generated by tourism and a similar proportion of people aremployed in the tourism industry as each individual culture positioned for tourism needs a particular selling point in order to attractourist capital certain aspects of their heritage are allowed to be appropriated in order to give the touristhe impression that he or she is receiving an authentic experience in this way tourism also provides opportunities for communities to define who they are and bolster their identities through the commodification of certain cultural aspects thathe community deems important and worthy of reproductionadams kathleen m art as politics re crafting identities tourism and power in tana torajam indonesia honolulu hawaii univ of hawaii presschambers erve native tours the anthropology of travel and tourism nd ed longrove ill waveland press tourist destinations must have a specific set of characteristics that sethemselves apart from every other destination and this where local communities choose how they will representhemselves to the world this power to create an identity and reproduce the mechanisms of a group s identity in the realm of cultural tourism allows local populations to express their ethnic pride and imbue places and events with identities that best representheir particular interests and values authenticity and the tourist gaze image punch rhodes colossuspng thumb left alt imperialist cecil rhodes imperialist cecil rhodes during the scramble for africa the tourist gaze is explained by sociologist john urry sociologist john urry as the set of expectations thatourists place on local populations when they participate in heritage tourism in the search for having an authentic experience in response tourist expectations and often cultural and racial stereotypes local populations reflect back the gaze of thexpectations of tourists in order to benefit financiallyurry j tourism culture and social inequality in the sociology of tourism theoretical and empirical investigations ed y apostolopoulos leivadi a yiannakis pp new york routledge tourists cannot bear all of the blame for this process however as the aggressively promoted marketing efforts of tour operators popular mediand local governments all contribute to the production of the tourist gaze stronzamandanthropology of tourism forging new ground for ecotourism and other alternatives annu rev anthropol this gaze is often described as a destructive process in which often important local cultural expressions areduced to commodities and these traditions fall out ofavor with local populations they can also be destructive in that local populations become consumed by an economic process which values certain cultural expressions over others and cultural themes that cannot beasily commodified fall out ofavor and can beventually losthis gaze can also serve as a booster of ethnic identity as it can revive cultural traditions that may have fallen out ofavor under the vestiges of colonialism and imperialism because of the importance of tourist capital in many local societies indigenous peoples are placed in a dynamic where cultural authenticity becomesomething very tangible and necessary to achieveconomic success this reconstruction of ethnicity becomes important because locals tend to act out cultural patterns and behaviors thathey believe would satisfy tourists mostmaccannel dean reconstructed ethnicity tourism and cultural identity in third world communities annals of tourism research the local populations play on stereotypes that westerners have on their cultures and seek to perform them as besthey can to satisfy the consumer demand the power thathe tourist gaze has in supporting ethnic pride and identity can also be used to destroy ethnic pride and identity in the cases where tourist expectations do not align witheveryday reality of local populations in the village of san jose succotz in belize local maya people mayan populations had given up many of their traditional practices and traditionsmedina laurie k commoditizing culture tourism and maya identity annals of tourism research vol no pp however because of their close proximity to ancient maya ruins and the resultantourist interest in their areas the villagers began to go back into the past and recreate traditional maya cultural patterns and traditions in recreating these images their identities were changed completely and they were placed back within an ethnographic present of classical maya indigenous cultiural expressions and land use patterns unfortunately this act also gives more savvy tourists the impression thathe mayarextinct and their traditions are only being reenacted by local populations obscuring the reality thathere are over a million mayalive todaywalker cameron archaeological tourism looking for answers along mexico s maya riviera napa bulletin local populations often have to negotiate the terms of their identity with a staged reality for tourists and a contemporary reality for their everyday lives as these cultural performances for tourists often blend into realife ritual contested authenticity one anthropologist hastudied how in one maya village of yucat n mexico involvement in tourism iseen as dangerous and urban mayare seen as outsiders to the traditional maya society maya villages that supply much of the migrant labor that goes to cancun and other tourist destinations also reflect on what it means to be mayand migrants who go to cancun are seen as less maya than those who stay behind the migrant workers follow the promise of jobs and socioeconomic advancemento the tourist destinations of cancun and in the process they are considered to be de mayanized by traditional maya traditional maya dethnicize urban maya people as a strategy to keep their traditional ways of life intacthis one anthropologist believes thathe traditional maya fear the urbanization of maya people because of the cultural commodification that often accompanies the tourism industry this potential commodification iseen as detrimental to traditional maya ways of life mostly by anthropologists who carry a negative ideological perspective on tourismre cruz alicia milpas an ideological weapon tourism and maya migration to cancun ethnohistory this idea however cannot be generalized tother maya communities in yucat n or even tother indigenous communities in mexicor any wherelse in latin americataylor sarah community sustainability and solidarity understanding tourism and community development phdisseration anthropology department university at albany suny breglia lisa c monumental ambivalence austin university of texas press castaneda quetzil in the museum of maya culture minneapolis university of minnesota press in contrasthere arexamples throughout yucat n and quintana roo where maya people are heavily involved in tourism service sector in positive and willing ways in contrasto the one community mentioned above maya communitiesuch as tulum rio lagartos holbox isla mujeres dzitnup ebtun piste santa elenand xcalacoop to mention a few have local economies fully integrated into the tourism network and also maintain traditional culture because tourism is an economic service industry that is created out of capitalism there is therefore always unequal benefits this happens regardless of the racial or cultural identities of those who benefit and those who do not benefits as much while the maya people are not required to engage in the tourism industry tourism often incorporates entire maya towns and marketplaceslittle walter e performing tourismaya women strategies journal of women and culture in society although most of the people involved in the informal sector are aware of their subordinateconomic roles in a larger global system handicraft vendors continue to perform for western tourists in order to make their cultural commodities and goods appear to be more authentic and receive tourist capital this disjunction between public performance andaily life is a perpetual reality for many maya people living and working in central america heritage tourism excursions tend to be associated with onethnic group in a given locality in this contextopic and place becomes the defining characteristic of a people to thexclusion of other perspectives this creates a dynamic where tourists use the questioningaze in which travelers questions and skepticism penetrate the commercial presentation of the site and undermine the producer s dominant narrativethe maasai and the lion king authenticity nationalism and globalization in african tourism author s edward m bruner source american ethnologist vol nov pp if a tourist feels that a heritage site is producing a dubious interpretation of a cultural expression or experience the site loses its authenticity and it becomes less marketable and harder to commodify three sites in kenya trace the commodification of particular aspects of the maasai tribal culture and how these sites are marketed with varying degrees of commodification and authenticity in order to satisfy tourist expectations mayers ranch thisite built by a british family in the great rift valley miles away from nairobi commodified maasai people maasai cultural expressions throughistoric reenactments of maasai warriors in traditional song andance at a comfortably safe distance away from tourists in these performances maasai culture is presented as ahistorical and static there was a painstaking strive for satisfying the tourist gaze and provide a sense of authenticity most notably through contrasts between civilized europeand primitive african thisite was eventually closed by the kenyan government because of the colonial nature of the presentation of maasai culture was offensive to many kenyans because whites were producing images of blacks and african american african americans bomas village of kenya image maasai women and childrenjpg thumb alt maasai women and children maasai women and children in kenya thistoric site caters mostly by urban kenyanso the commodification of these particular themes arespecially problematic as in this case most of the tourists are actually stakeholders in the historic representation being marketed athisite to give a critical sense of authenticity national folklore troupes were formed to tell stories that purposely promote kenyanationalism equality among ethnic groups there are performances in a modern stadium arena which creates a juxtaposition of modern and traditional that reflects greater kenyan society the representation of several kenyan ethnic groups and culturally relevant narratives express a politically charged message kenyanationalism when the tourists that visithe site are the actual stakeholders in the process culture cannot simply be commodified as a good the commodification of the maasai culture is locally managed and produced in this circumstance kichwa tembout of africa sundowner this an upscale tourist site that caters mostly to wealthy western tourists athistoric site maasai performers mix with tourists during performance involving them into many aspects of the performance pop culture images of africa dominate performance reckoning back to classic moviesuch as out of africa film out of africall of the comforts of home are present in the luxury lodges and the site is mostly catered towards thentertainment of tourists not necessarily authenticity in this instance the tourist gaze is used as a pretext for the greater luxury experience of an upscale african safari all of the historical tensions and contrasts are dissolved and performances include a mash up of hakuna matata song hakuna matata kum ba yah kum bah yand reggae jamaican reggae theselements all meld together nonsensically into a locally placed african contexthe maasai culture is commodified into a representation of a popular american image of what african cultures are not authentic african performances these performances provide the greater accessibility of safe pleasant primitives the maasai are stakeholders in process but have relatively minor control over theirepresentation as tour agency production forces are hidden but dominate the interpretive process many of the maasai people are forced into a willingness to play into the commodified stereotypes of their culture for economic benefit place as a commodity eco tourism the specific natural attributes of a place also can become commodities as thenvironment of a locale can become a good just as important as the cultural heritage in attracting tourist capital a population s heritage is indubitably tied to their local environment however in the case of eco tourism education about sustainability and preservation are common themes that emerge in the rhetoric of the industry an alternative form of tourism ecotourism is defined as a form of tourism inspired primarily by the natural history of an area including its indigenous cultures ziffer karen ecotourism the uneasy alliance washington dconservation international ecotourism has a generally low impact on local environments and it allows tourists to gain an appreciation for the natural resources and attributes of the tourist destination these tourist programs provide capital that can be used to improve theconomic situations of local environments as well as help fund conservation efforts toffset years of environmental degradation caused by tourist activity because of the conservational goals of ecotourism local communities have the opportunity to engage more with governmental organizations non governmental organizations and private tourist firms in the design and production of tourist destinationsstronzamandanthropology of tourism forging new ground for ecotourism and other alternatives annual review of anthropology ecotourism can offer local populations political and economic agency over the products of their labor and levy a degree of control over their economic development references category economic anthropology category tourism","main_words":["heritage","commodification","process","cultural","themes","expressions","come","primarily","terms","exchange","value","specifically","within","context","cultural","e","authenticity","tourism","ann","cultural","expressions","aspects","heritage","become","cultural","goods","transformed","commodities","bought","sold","theritage","tourism_industry","context","modern","globalization","complex","often","layers","meaning","produced","local","societies","marketing","one","cultural","expressions","particular","culture","simultaneously","assisting","integration","global","economy","repatriation","profits","leakage","occurs","withe","influx","tourist","financial","capital","heritage","tourist","site","including","handicraft","vendors","food_vendors","basket","makers","several","items","produced","locally","rely","upon","tourist","capital","crucial","part","sustainable","considered","beneficial","local","anthropology","us","better","travelers","napa","bulletin","modern","heritage_tourism","economic","dynamic","dependent","upon","capital","tourists","corporations","creating","sustained","viability","tourism","often","directly","tied","economic_development","many","globalization","providing","increased","access","vital","medical","services","important","ecological","degradation","global","tourism","inequality","maya","interpretations","changing","environment","roo","mexico","human","organization","image","sphinx","statue","sphinx","athe","louvre","statue","sphinx","athe","mus","e","louvre","paris_france","tourism_industry","rapidly","growing","decades","thexpansion","probably","continue","well","tourism_organization","highlights","nearly","one","billion","tourist_arrivals","compared","tonly","twenty","five","million","moreover","tourism","directly","accounted","nearly","one","trillion","us","dollars","worldwide","approximately","five","percent","gdp","generated","tourism","similar","proportion","people","aremployed","tourism_industry","individual","culture","positioned","tourism","needs","particular","selling","point","order","capital","certain","aspects","heritage","allowed","order","give","impression","receiving","authentic","experience","way","opportunities","communities","define","identities","commodification","certain","cultural","aspects","thathe","community","important","worthy","kathleen","art","politics","identities","tourism","power","indonesia","honolulu","hawaii","univ","hawaii","native","tours","anthropology","travel_tourism","ed","ill","press","tourist_destinations","must","specific","set","characteristics","apart","every","destination","local_communities","choose","world","power","create","identity","reproduce","mechanisms","group","identity","realm","cultural_tourism","allows","local_populations","express","ethnic","pride","places","events","identities","best","particular","interests","values","authenticity","tourist","gaze","image","punch","rhodes","thumb","left","alt","cecil","rhodes","cecil","rhodes","africa","tourist","gaze","explained","john","urry","john","urry","set","expectations","thatourists","place","local_populations","participate","heritage_tourism","search","authentic","experience","response","tourist","expectations","often","cultural","racial","stereotypes","local_populations","reflect","back","gaze","tourists","order","benefit","j","tourism_culture","social","inequality","sociology","tourism","theoretical","empirical","investigations","ed","pp","new_york","routledge","tourists","cannot","bear","blame","process","however","aggressively","promoted","marketing","efforts","tour_operators","popular","mediand","local_governments","contribute","production","tourist","gaze","ground","ecotourism","alternatives","rev","gaze","often","described","destructive","process","often","important","local","cultural","expressions","commodities","traditions","fall","local_populations","also","destructive","local_populations","become","consumed","economic","process","values","certain","cultural","expressions","others","cultural","themes","cannot","beasily","commodified","fall","gaze","also_serve","booster","ethnic","identity","revive","cultural","traditions","may","fallen","colonialism","imperialism","importance","tourist","capital","many","local","societies","indigenous","peoples","placed","dynamic","cultural","authenticity","necessary","success","reconstruction","ethnicity","becomes","important","locals","tend","act","cultural","patterns","behaviors","thathey","believe","would","satisfy","tourists","dean","reconstructed","ethnicity","tourism_cultural","identity","third_world","communities","annals","tourism_research","local_populations","play","stereotypes","westerners","cultures","seek","perform","satisfy","consumer","demand","power","thathe","tourist","gaze","supporting","ethnic","pride","identity","also_used","destroy","ethnic","pride","identity","cases","tourist","expectations","align","reality","local_populations","village","san_jose","belize","local","maya","people","mayan","populations","given","many","traditional","practices","laurie","k","culture_tourism","maya","identity","annals","tourism_research","vol","pp","however","close_proximity","ancient","maya","ruins","interest","areas","villagers","began","go","back","past","recreate","traditional","maya","cultural","patterns","traditions","recreating","images","identities","changed","completely","placed","back","within","ethnographic","present","classical","maya","indigenous","expressions","land","use","patterns","unfortunately","act","also","gives","savvy","tourists","impression","thathe","traditions","local_populations","reality","thathere","million","cameron","archaeological","tourism","looking","answers","along","mexico","maya","riviera","napa","bulletin","local_populations","often","negotiate","terms","identity","staged","reality","tourists","contemporary","reality","everyday","lives","cultural","performances","tourists","often","blend","realife","ritual","contested","authenticity","one","anthropologist","one","maya","village","yucat","n","mexico","involvement","tourism","iseen","dangerous","urban","seen","traditional","maya","society","maya","villages","supply","much","migrant","labor","goes","cancun","tourist_destinations","also","reflect","means","migrants","go","cancun","seen","less","maya","stay","behind","migrant","workers","follow","promise","jobs","socioeconomic","tourist_destinations","cancun","process","considered","de","traditional","maya","traditional","maya","urban","maya","people","strategy","keep","traditional","ways","life","one","anthropologist","believes","thathe","traditional","maya","fear","urbanization","maya","people","cultural","commodification","often","tourism_industry","potential","commodification","iseen","detrimental","traditional","maya","ways","life","mostly","carry","negative","ideological","perspective","cruz","alicia","ideological","weapon","tourism","maya","migration","cancun","idea","however","cannot","tother","maya","communities","yucat","n","even","tother","indigenous","communities","latin","sarah","community","sustainability","solidarity","understanding","tourism","community","development","anthropology","department","university","albany","suny","lisa","c","austin","university","texas","press","museum","maya","culture","minneapolis","university","minnesota","press","arexamples","throughout","yucat","n","roo","maya","people","heavily","involved","tourism","service","sector","positive","willing","ways","contrasto","one","community","mentioned","maya","rio","isla","santa","mention","local","economies","fully","integrated","tourism","network","also","maintain","traditional","culture_tourism","economic","service_industry","created","capitalism","therefore","always","benefits","happens","regardless","racial","cultural","identities","benefit","benefits","much","maya","people","required","engage","tourism_industry","tourism","often","incorporates","entire","maya","towns","walter","e","performing","women","strategies","journal","women","culture","society","although","people","involved","informal","sector","aware","roles","larger","global","system","handicraft","vendors","continue","perform","western","tourists","order","make","cultural","commodities","goods","appear","authentic","receive","tourist","capital","public","performance","life","reality","many","maya","people","living","working","central_america","heritage_tourism","excursions","tend","associated","group","given","locality","place","becomes","defining","characteristic","people","perspectives","creates","dynamic","tourists","use","travelers","questions","commercial","presentation","site","undermine","producer","dominant","maasai","lion","king","authenticity","nationalism","globalization","african","tourism","author","edward","bruner","source","american","vol","nov","pp","tourist","feels","producing","interpretation","cultural","expression","experience","site","loses","authenticity","becomes","less","harder","three","sites","kenya","trace","commodification","particular","aspects","maasai","tribal","culture","sites","marketed","varying","degrees","commodification","authenticity","order","satisfy","tourist","expectations","ranch","thisite","built","british","family","great","rift","valley","miles","away","nairobi","commodified","maasai","people","maasai","cultural","expressions","maasai","warriors","traditional","song","andance","comfortably","safe","distance","away","tourists","performances","maasai","culture","presented","static","strive","satisfying","tourist","gaze","provide","sense","authenticity","notably","contrasts","europeand","primitive","african","thisite","eventually","closed","kenyan","government","colonial","nature","presentation","maasai","culture","offensive","many","whites","producing","images","blacks","african_american","african_americans","village","kenya","image","maasai","women","thumb_alt","maasai","women","children","maasai","women","children","kenya","site","caters","mostly","urban","commodification","particular","themes","arespecially","problematic","case","tourists","actually","stakeholders","historic","representation","marketed","give","critical","sense","authenticity","national","folklore","formed","tell","stories","purposely","promote","equality","among","ethnic_groups","performances","modern","stadium","arena","creates","modern","traditional","reflects","greater","kenyan","society","representation","several","kenyan","ethnic_groups","culturally","relevant","narratives","express","politically","charged","message","tourists","visithe","site","actual","stakeholders","process","culture","cannot","simply","commodified","good","commodification","maasai","culture","locally","managed","produced","africa","upscale","tourist","site","caters","mostly","wealthy","western","tourists","site","maasai","performers","mix","tourists","performance","involving","many","aspects","performance","pop_culture","images","africa","dominate","performance","back","classic","africa","film","comforts","home","present","luxury","lodges","site","mostly","catered","towards","thentertainment","tourists","necessarily","authenticity","instance","tourist","gaze","used","greater","luxury","experience","upscale","african","safari","historical","tensions","contrasts","dissolved","performances","include","mash","song","bah","reggae","reggae","together","locally","placed","african","maasai","culture","commodified","representation","popular","american","image","african","cultures","authentic","african","performances","performances","provide","greater","accessibility","safe","pleasant","maasai","stakeholders","process","relatively","minor","control","tour","agency","production","forces","hidden","dominate","process","many","maasai","people","forced","willingness","play","commodified","stereotypes","culture","economic","benefit","place","commodity","eco_tourism","specific","natural","attributes","place","also","become","commodities","thenvironment","locale","become","good","important","cultural_heritage","attracting","tourist","capital","population","heritage","tied","local","environment","however","case","eco_tourism","education","sustainability","preservation","common","themes","emerge","industry","alternative","form","tourism_ecotourism","defined","form","tourism","inspired","primarily","natural_history","area","including","indigenous","cultures","karen","ecotourism","alliance","washington","international","ecotourism","generally","low_impact","local","environments","allows","tourists","gain","appreciation","natural_resources","attributes","tourist_destination","tourist","programs","provide","capital","used","improve","theconomic","situations","local","environments","well","help","fund","conservation_efforts","years","environmental","degradation","caused","tourist","activity","goals","ecotourism","local_communities","opportunity","engage","governmental","organizations","non_governmental","organizations","private","tourist","firms","design","production","tourist","ground","ecotourism","alternatives","annual","review","anthropology","ecotourism","offer","local_populations","political","economic","agency","products","labor","levy","degree","control","economic_development","references_category","economic","anthropology","category_tourism"],"clean_bigrams":[["heritage","commodification"],["cultural","themes"],["expressions","come"],["exchange","value"],["value","specifically"],["specifically","within"],["e","authenticity"],["tourism","ann"],["cultural","expressions"],["heritage","become"],["become","cultural"],["cultural","goods"],["goods","transformed"],["bought","sold"],["theritage","tourism"],["tourism","industry"],["modern","globalization"],["globalization","complex"],["local","societies"],["cultural","expressions"],["particular","culture"],["simultaneously","assisting"],["global","economy"],["occurs","withe"],["withe","influx"],["tourist","financial"],["financial","capital"],["heritage","tourist"],["tourist","site"],["site","including"],["including","handicraft"],["handicraft","vendors"],["vendors","food"],["food","vendors"],["vendors","basket"],["basket","makers"],["produced","locally"],["rely","upon"],["upon","tourist"],["tourist","capital"],["crucial","part"],["considered","beneficial"],["us","better"],["better","travelers"],["travelers","napa"],["napa","bulletin"],["bulletin","modern"],["modern","heritage"],["heritage","tourism"],["economic","dynamic"],["dependent","upon"],["upon","capital"],["creating","sustained"],["sustained","viability"],["viability","tourism"],["tourism","often"],["often","directly"],["directly","tied"],["economic","development"],["providing","increased"],["increased","access"],["vital","medical"],["medical","services"],["ecological","degradation"],["degradation","global"],["global","tourism"],["inequality","maya"],["maya","interpretations"],["changing","environment"],["roo","mexico"],["mexico","human"],["human","organization"],["organization","image"],["image","sphinx"],["sphinx","athe"],["thumb","alt"],["alt","statue"],["sphinx","athe"],["athe","louvre"],["louvre","statue"],["sphinx","athe"],["athe","mus"],["mus","e"],["louvre","paris"],["paris","france"],["tourism","industry"],["rapidly","growing"],["probably","continue"],["continue","well"],["tourism","organization"],["nearly","one"],["one","billion"],["billion","tourist"],["tourist","arrivals"],["compared","tonly"],["tonly","twenty"],["twenty","five"],["five","million"],["tourism","directly"],["directly","accounted"],["nearly","one"],["one","trillion"],["trillion","us"],["us","dollars"],["dollars","worldwide"],["worldwide","approximately"],["approximately","five"],["five","percent"],["similar","proportion"],["people","aremployed"],["tourism","industry"],["individual","culture"],["culture","positioned"],["tourism","needs"],["particular","selling"],["selling","point"],["capital","certain"],["certain","aspects"],["authentic","experience"],["way","tourism"],["tourism","also"],["also","provides"],["provides","opportunities"],["certain","cultural"],["cultural","aspects"],["aspects","thathe"],["thathe","community"],["identities","tourism"],["indonesia","honolulu"],["honolulu","hawaii"],["hawaii","univ"],["native","tours"],["press","tourist"],["tourist","destinations"],["destinations","must"],["specific","set"],["local","communities"],["communities","choose"],["cultural","tourism"],["tourism","allows"],["allows","local"],["local","populations"],["ethnic","pride"],["particular","interests"],["values","authenticity"],["tourist","gaze"],["gaze","image"],["image","punch"],["punch","rhodes"],["thumb","left"],["left","alt"],["cecil","rhodes"],["cecil","rhodes"],["tourist","gaze"],["john","urry"],["john","urry"],["expectations","thatourists"],["thatourists","place"],["local","populations"],["heritage","tourism"],["authentic","experience"],["response","tourist"],["tourist","expectations"],["often","cultural"],["racial","stereotypes"],["stereotypes","local"],["local","populations"],["populations","reflect"],["reflect","back"],["j","tourism"],["tourism","culture"],["social","inequality"],["tourism","theoretical"],["empirical","investigations"],["investigations","ed"],["pp","new"],["new","york"],["york","routledge"],["routledge","tourists"],["process","however"],["aggressively","promoted"],["promoted","marketing"],["marketing","efforts"],["tour","operators"],["operators","popular"],["popular","mediand"],["mediand","local"],["local","governments"],["tourist","gaze"],["new","ground"],["often","described"],["destructive","process"],["often","important"],["important","local"],["local","cultural"],["cultural","expressions"],["traditions","fall"],["local","populations"],["local","populations"],["populations","become"],["become","consumed"],["economic","process"],["values","certain"],["certain","cultural"],["cultural","expressions"],["cultural","themes"],["beasily","commodified"],["commodified","fall"],["also","serve"],["ethnic","identity"],["revive","cultural"],["cultural","traditions"],["tourist","capital"],["many","local"],["local","societies"],["societies","indigenous"],["indigenous","peoples"],["cultural","authenticity"],["ethnicity","becomes"],["becomes","important"],["locals","tend"],["cultural","patterns"],["behaviors","thathey"],["thathey","believe"],["believe","would"],["would","satisfy"],["satisfy","tourists"],["dean","reconstructed"],["reconstructed","ethnicity"],["ethnicity","tourism"],["cultural","identity"],["third","world"],["world","communities"],["communities","annals"],["tourism","research"],["local","populations"],["populations","play"],["consumer","demand"],["power","thathe"],["thathe","tourist"],["tourist","gaze"],["supporting","ethnic"],["ethnic","pride"],["destroy","ethnic"],["ethnic","pride"],["tourist","expectations"],["local","populations"],["san","jose"],["belize","local"],["local","maya"],["maya","people"],["people","mayan"],["mayan","populations"],["traditional","practices"],["laurie","k"],["culture","tourism"],["maya","identity"],["identity","annals"],["tourism","research"],["research","vol"],["pp","however"],["close","proximity"],["ancient","maya"],["maya","ruins"],["villagers","began"],["go","back"],["recreate","traditional"],["traditional","maya"],["maya","cultural"],["cultural","patterns"],["changed","completely"],["placed","back"],["back","within"],["ethnographic","present"],["classical","maya"],["maya","indigenous"],["land","use"],["use","patterns"],["patterns","unfortunately"],["act","also"],["also","gives"],["savvy","tourists"],["impression","thathe"],["local","populations"],["reality","thathere"],["cameron","archaeological"],["archaeological","tourism"],["tourism","looking"],["answers","along"],["along","mexico"],["maya","riviera"],["riviera","napa"],["napa","bulletin"],["bulletin","local"],["local","populations"],["populations","often"],["staged","reality"],["contemporary","reality"],["everyday","lives"],["cultural","performances"],["tourists","often"],["often","blend"],["realife","ritual"],["ritual","contested"],["contested","authenticity"],["authenticity","one"],["one","anthropologist"],["one","maya"],["maya","village"],["yucat","n"],["n","mexico"],["mexico","involvement"],["tourism","iseen"],["traditional","maya"],["maya","society"],["society","maya"],["maya","villages"],["supply","much"],["migrant","labor"],["tourist","destinations"],["destinations","also"],["also","reflect"],["less","maya"],["stay","behind"],["migrant","workers"],["workers","follow"],["tourist","destinations"],["traditional","maya"],["maya","traditional"],["traditional","maya"],["urban","maya"],["maya","people"],["traditional","ways"],["one","anthropologist"],["anthropologist","believes"],["believes","thathe"],["thathe","traditional"],["traditional","maya"],["maya","fear"],["maya","people"],["cultural","commodification"],["tourism","industry"],["potential","commodification"],["commodification","iseen"],["traditional","maya"],["maya","ways"],["life","mostly"],["negative","ideological"],["ideological","perspective"],["cruz","alicia"],["ideological","weapon"],["weapon","tourism"],["maya","migration"],["idea","however"],["tother","maya"],["maya","communities"],["yucat","n"],["even","tother"],["tother","indigenous"],["indigenous","communities"],["sarah","community"],["community","sustainability"],["solidarity","understanding"],["understanding","tourism"],["community","development"],["anthropology","department"],["department","university"],["albany","suny"],["lisa","c"],["austin","university"],["texas","press"],["maya","culture"],["culture","minneapolis"],["minneapolis","university"],["minnesota","press"],["arexamples","throughout"],["throughout","yucat"],["yucat","n"],["maya","people"],["heavily","involved"],["tourism","service"],["service","sector"],["willing","ways"],["one","community"],["community","mentioned"],["local","economies"],["economies","fully"],["fully","integrated"],["tourism","network"],["also","maintain"],["maintain","traditional"],["traditional","culture"],["culture","tourism"],["economic","service"],["service","industry"],["therefore","always"],["happens","regardless"],["cultural","identities"],["maya","people"],["tourism","industry"],["industry","tourism"],["tourism","often"],["often","incorporates"],["incorporates","entire"],["entire","maya"],["maya","towns"],["walter","e"],["e","performing"],["women","strategies"],["strategies","journal"],["society","although"],["people","involved"],["informal","sector"],["larger","global"],["global","system"],["system","handicraft"],["handicraft","vendors"],["vendors","continue"],["western","tourists"],["cultural","commodities"],["goods","appear"],["receive","tourist"],["tourist","capital"],["public","performance"],["many","maya"],["maya","people"],["people","living"],["central","america"],["america","heritage"],["heritage","tourism"],["tourism","excursions"],["excursions","tend"],["given","locality"],["place","becomes"],["defining","characteristic"],["tourists","use"],["travelers","questions"],["commercial","presentation"],["lion","king"],["king","authenticity"],["authenticity","nationalism"],["african","tourism"],["tourism","author"],["bruner","source"],["source","american"],["vol","nov"],["nov","pp"],["tourist","feels"],["heritage","site"],["cultural","expression"],["site","loses"],["becomes","less"],["three","sites"],["kenya","trace"],["particular","aspects"],["maasai","tribal"],["tribal","culture"],["varying","degrees"],["satisfy","tourist"],["tourist","expectations"],["ranch","thisite"],["thisite","built"],["british","family"],["great","rift"],["rift","valley"],["valley","miles"],["miles","away"],["nairobi","commodified"],["commodified","maasai"],["maasai","people"],["people","maasai"],["maasai","cultural"],["cultural","expressions"],["maasai","warriors"],["traditional","song"],["song","andance"],["comfortably","safe"],["safe","distance"],["distance","away"],["performances","maasai"],["maasai","culture"],["tourist","gaze"],["europeand","primitive"],["primitive","african"],["african","thisite"],["eventually","closed"],["kenyan","government"],["colonial","nature"],["maasai","culture"],["producing","images"],["african","american"],["american","african"],["african","americans"],["kenya","image"],["image","maasai"],["maasai","women"],["thumb","alt"],["alt","maasai"],["maasai","women"],["children","maasai"],["maasai","women"],["site","caters"],["caters","mostly"],["particular","themes"],["themes","arespecially"],["arespecially","problematic"],["actually","stakeholders"],["historic","representation"],["critical","sense"],["authenticity","national"],["national","folklore"],["tell","stories"],["purposely","promote"],["equality","among"],["among","ethnic"],["ethnic","groups"],["modern","stadium"],["stadium","arena"],["reflects","greater"],["greater","kenyan"],["kenyan","society"],["several","kenyan"],["kenyan","ethnic"],["ethnic","groups"],["culturally","relevant"],["relevant","narratives"],["narratives","express"],["politically","charged"],["charged","message"],["visithe","site"],["actual","stakeholders"],["process","culture"],["maasai","culture"],["locally","managed"],["upscale","tourist"],["tourist","site"],["site","caters"],["caters","mostly"],["wealthy","western"],["western","tourists"],["site","maasai"],["maasai","performers"],["performers","mix"],["performance","involving"],["many","aspects"],["performance","pop"],["pop","culture"],["culture","images"],["africa","dominate"],["dominate","performance"],["africa","film"],["luxury","lodges"],["mostly","catered"],["catered","towards"],["towards","thentertainment"],["necessarily","authenticity"],["tourist","gaze"],["greater","luxury"],["luxury","experience"],["upscale","african"],["african","safari"],["historical","tensions"],["performances","include"],["locally","placed"],["placed","african"],["maasai","culture"],["popular","american"],["american","image"],["african","cultures"],["authentic","african"],["african","performances"],["performances","provide"],["greater","accessibility"],["safe","pleasant"],["relatively","minor"],["minor","control"],["tour","agency"],["agency","production"],["production","forces"],["process","many"],["maasai","people"],["commodified","stereotypes"],["economic","benefit"],["benefit","place"],["commodity","eco"],["eco","tourism"],["specific","natural"],["natural","attributes"],["place","also"],["become","commodities"],["cultural","heritage"],["attracting","tourist"],["tourist","capital"],["local","environment"],["environment","however"],["eco","tourism"],["tourism","education"],["common","themes"],["alternative","form"],["tourism","ecotourism"],["tourism","inspired"],["inspired","primarily"],["natural","history"],["area","including"],["indigenous","cultures"],["karen","ecotourism"],["alliance","washington"],["international","ecotourism"],["generally","low"],["low","impact"],["local","environments"],["allows","tourists"],["natural","resources"],["tourist","destination"],["tourist","programs"],["programs","provide"],["provide","capital"],["improve","theconomic"],["theconomic","situations"],["local","environments"],["help","fund"],["fund","conservation"],["conservation","efforts"],["environmental","degradation"],["degradation","caused"],["tourist","activity"],["ecotourism","local"],["local","communities"],["governmental","organizations"],["organizations","non"],["non","governmental"],["governmental","organizations"],["private","tourist"],["tourist","firms"],["new","ground"],["alternatives","annual"],["annual","review"],["anthropology","ecotourism"],["offer","local"],["local","populations"],["populations","political"],["economic","agency"],["economic","development"],["development","references"],["references","category"],["category","economic"],["economic","anthropology"],["anthropology","category"],["category","tourism"]],"all_collocations":["heritage commodification","cultural themes","expressions come","exchange value","value specifically","specifically within","e authenticity","tourism ann","cultural expressions","heritage become","become cultural","cultural goods","goods transformed","bought sold","theritage tourism","tourism industry","modern globalization","globalization complex","local societies","cultural expressions","particular culture","simultaneously assisting","global economy","occurs withe","withe influx","tourist financial","financial capital","heritage tourist","tourist site","site including","including handicraft","handicraft vendors","vendors food","food vendors","vendors basket","basket makers","produced locally","rely upon","upon tourist","tourist capital","crucial part","considered beneficial","us better","better travelers","travelers napa","napa bulletin","bulletin modern","modern heritage","heritage tourism","economic dynamic","dependent upon","upon capital","creating sustained","sustained viability","viability tourism","tourism often","often directly","directly tied","economic development","providing increased","increased access","vital medical","medical services","ecological degradation","degradation global","global tourism","inequality maya","maya interpretations","changing environment","roo mexico","mexico human","human organization","organization image","image sphinx","sphinx athe","thumb alt","alt statue","sphinx athe","athe louvre","louvre statue","sphinx athe","athe mus","mus e","louvre paris","paris france","tourism industry","rapidly growing","probably continue","continue well","tourism organization","nearly one","one billion","billion tourist","tourist arrivals","compared tonly","tonly twenty","twenty five","five million","tourism directly","directly accounted","nearly one","one trillion","trillion us","us dollars","dollars worldwide","worldwide approximately","approximately five","five percent","similar proportion","people aremployed","tourism industry","individual culture","culture positioned","tourism needs","particular selling","selling point","capital certain","certain aspects","authentic experience","way tourism","tourism also","also provides","provides opportunities","certain cultural","cultural aspects","aspects thathe","thathe community","identities tourism","indonesia honolulu","honolulu hawaii","hawaii univ","native tours","press tourist","tourist destinations","destinations must","specific set","local communities","communities choose","cultural tourism","tourism allows","allows local","local populations","ethnic pride","particular interests","values authenticity","tourist gaze","gaze image","image punch","punch rhodes","left alt","cecil rhodes","cecil rhodes","tourist gaze","john urry","john urry","expectations thatourists","thatourists place","local populations","heritage tourism","authentic experience","response tourist","tourist expectations","often cultural","racial stereotypes","stereotypes local","local populations","populations reflect","reflect back","j tourism","tourism culture","social inequality","tourism theoretical","empirical investigations","investigations ed","pp new","new york","york routledge","routledge tourists","process however","aggressively promoted","promoted marketing","marketing efforts","tour operators","operators popular","popular mediand","mediand local","local governments","tourist gaze","new ground","often described","destructive process","often important","important local","local cultural","cultural expressions","traditions fall","local populations","local populations","populations become","become consumed","economic process","values certain","certain cultural","cultural expressions","cultural themes","beasily commodified","commodified fall","also serve","ethnic identity","revive cultural","cultural traditions","tourist capital","many local","local societies","societies indigenous","indigenous peoples","cultural authenticity","ethnicity becomes","becomes important","locals tend","cultural patterns","behaviors thathey","thathey believe","believe would","would satisfy","satisfy tourists","dean reconstructed","reconstructed ethnicity","ethnicity tourism","cultural identity","third world","world communities","communities annals","tourism research","local populations","populations play","consumer demand","power thathe","thathe tourist","tourist gaze","supporting ethnic","ethnic pride","destroy ethnic","ethnic pride","tourist expectations","local populations","san jose","belize local","local maya","maya people","people mayan","mayan populations","traditional practices","laurie k","culture tourism","maya identity","identity annals","tourism research","research vol","pp however","close proximity","ancient maya","maya ruins","villagers began","go back","recreate traditional","traditional maya","maya cultural","cultural patterns","changed completely","placed back","back within","ethnographic present","classical maya","maya indigenous","land use","use patterns","patterns unfortunately","act also","also gives","savvy tourists","impression thathe","local populations","reality thathere","cameron archaeological","archaeological tourism","tourism looking","answers along","along mexico","maya riviera","riviera napa","napa bulletin","bulletin local","local populations","populations often","staged reality","contemporary reality","everyday lives","cultural performances","tourists often","often blend","realife ritual","ritual contested","contested authenticity","authenticity one","one anthropologist","one maya","maya village","yucat n","n mexico","mexico involvement","tourism iseen","traditional maya","maya society","society maya","maya villages","supply much","migrant labor","tourist destinations","destinations also","also reflect","less maya","stay behind","migrant workers","workers follow","tourist destinations","traditional maya","maya traditional","traditional maya","urban maya","maya people","traditional ways","one anthropologist","anthropologist believes","believes thathe","thathe traditional","traditional maya","maya fear","maya people","cultural commodification","tourism industry","potential commodification","commodification iseen","traditional maya","maya ways","life mostly","negative ideological","ideological perspective","cruz alicia","ideological weapon","weapon tourism","maya migration","idea however","tother maya","maya communities","yucat n","even tother","tother indigenous","indigenous communities","sarah community","community sustainability","solidarity understanding","understanding tourism","community development","anthropology department","department university","albany suny","lisa c","austin university","texas press","maya culture","culture minneapolis","minneapolis university","minnesota press","arexamples throughout","throughout yucat","yucat n","maya people","heavily involved","tourism service","service sector","willing ways","one community","community mentioned","local economies","economies fully","fully integrated","tourism network","also maintain","maintain traditional","traditional culture","culture tourism","economic service","service industry","therefore always","happens regardless","cultural identities","maya people","tourism industry","industry tourism","tourism often","often incorporates","incorporates entire","entire maya","maya towns","walter e","e performing","women strategies","strategies journal","society although","people involved","informal sector","larger global","global system","system handicraft","handicraft vendors","vendors continue","western tourists","cultural commodities","goods appear","receive tourist","tourist capital","public performance","many maya","maya people","people living","central america","america heritage","heritage tourism","tourism excursions","excursions tend","given locality","place becomes","defining characteristic","tourists use","travelers questions","commercial presentation","lion king","king authenticity","authenticity nationalism","african tourism","tourism author","bruner source","source american","vol nov","nov pp","tourist feels","heritage site","cultural expression","site loses","becomes less","three sites","kenya trace","particular aspects","maasai tribal","tribal culture","varying degrees","satisfy tourist","tourist expectations","ranch thisite","thisite built","british family","great rift","rift valley","valley miles","miles away","nairobi commodified","commodified maasai","maasai people","people maasai","maasai cultural","cultural expressions","maasai warriors","traditional song","song andance","comfortably safe","safe distance","distance away","performances maasai","maasai culture","tourist gaze","europeand primitive","primitive african","african thisite","eventually closed","kenyan government","colonial nature","maasai culture","producing images","african american","american african","african americans","kenya image","image maasai","maasai women","thumb alt","alt maasai","maasai women","children maasai","maasai women","site caters","caters mostly","particular themes","themes arespecially","arespecially problematic","actually stakeholders","historic representation","critical sense","authenticity national","national folklore","tell stories","purposely promote","equality among","among ethnic","ethnic groups","modern stadium","stadium arena","reflects greater","greater kenyan","kenyan society","several kenyan","kenyan ethnic","ethnic groups","culturally relevant","relevant narratives","narratives express","politically charged","charged message","visithe site","actual stakeholders","process culture","maasai culture","locally managed","upscale tourist","tourist site","site caters","caters mostly","wealthy western","western tourists","site maasai","maasai performers","performers mix","performance involving","many aspects","performance pop","pop culture","culture images","africa dominate","dominate performance","africa film","luxury lodges","mostly catered","catered towards","towards thentertainment","necessarily authenticity","tourist gaze","greater luxury","luxury experience","upscale african","african safari","historical tensions","performances include","locally placed","placed african","maasai culture","popular american","american image","african cultures","authentic african","african performances","performances provide","greater accessibility","safe pleasant","relatively minor","minor control","tour agency","agency production","production forces","process many","maasai people","commodified stereotypes","economic benefit","benefit place","commodity eco","eco tourism","specific natural","natural attributes","place also","become commodities","cultural heritage","attracting tourist","tourist capital","local environment","environment however","eco tourism","tourism education","common themes","alternative form","tourism ecotourism","tourism inspired","inspired primarily","natural history","area including","indigenous cultures","karen ecotourism","alliance washington","international ecotourism","generally low","low impact","local environments","allows tourists","natural resources","tourist destination","tourist programs","programs provide","provide capital","improve theconomic","theconomic situations","local environments","help fund","fund conservation","conservation efforts","environmental degradation","degradation caused","tourist activity","ecotourism local","local communities","governmental organizations","organizations non","non governmental","governmental organizations","private tourist","tourist firms","new ground","alternatives annual","annual review","anthropology ecotourism","offer local","local populations","populations political","economic agency","economic development","development references","references category","category economic","economic anthropology","anthropology category","category tourism"],"new_description":"heritage commodification process cultural themes expressions come primarily terms exchange value specifically within context cultural e authenticity tourism ann cultural expressions aspects heritage become cultural goods transformed commodities bought sold theritage tourism_industry context modern globalization complex often layers meaning produced local societies marketing one cultural expressions particular culture simultaneously assisting integration global economy repatriation profits leakage occurs withe influx tourist financial capital heritage tourist site including handicraft vendors food_vendors basket makers several items produced locally rely upon tourist capital crucial part sustainable considered beneficial local anthropology us better travelers napa bulletin modern heritage_tourism economic dynamic dependent upon capital tourists corporations creating sustained viability tourism often directly tied economic_development many globalization providing increased access vital medical services important ecological degradation global tourism inequality maya interpretations changing environment roo mexico human organization image sphinx athe_thumb_alt statue sphinx athe louvre statue sphinx athe mus e louvre paris_france tourism_industry rapidly growing decades thexpansion probably continue well tourism_organization highlights nearly one billion tourist_arrivals compared tonly twenty five million moreover tourism directly accounted nearly one trillion us dollars worldwide approximately five percent gdp generated tourism similar proportion people aremployed tourism_industry individual culture positioned tourism needs particular selling point order capital certain aspects heritage allowed order give impression receiving authentic experience way tourism_also_provides opportunities communities define identities commodification certain cultural aspects thathe community important worthy kathleen art politics identities tourism power indonesia honolulu hawaii univ hawaii native tours anthropology travel_tourism ed ill press tourist_destinations must specific set characteristics apart every destination local_communities choose world power create identity reproduce mechanisms group identity realm cultural_tourism allows local_populations express ethnic pride places events identities best particular interests values authenticity tourist gaze image punch rhodes thumb left alt cecil rhodes cecil rhodes africa tourist gaze explained john urry john urry set expectations thatourists place local_populations participate heritage_tourism search authentic experience response tourist expectations often cultural racial stereotypes local_populations reflect back gaze tourists order benefit j tourism_culture social inequality sociology tourism theoretical empirical investigations ed pp new_york routledge tourists cannot bear blame process however aggressively promoted marketing efforts tour_operators popular mediand local_governments contribute production tourist gaze tourism_new ground ecotourism alternatives rev gaze often described destructive process often important local cultural expressions commodities traditions fall local_populations also destructive local_populations become consumed economic process values certain cultural expressions others cultural themes cannot beasily commodified fall gaze also_serve booster ethnic identity revive cultural traditions may fallen colonialism imperialism importance tourist capital many local societies indigenous peoples placed dynamic cultural authenticity necessary success reconstruction ethnicity becomes important locals tend act cultural patterns behaviors thathey believe would satisfy tourists dean reconstructed ethnicity tourism_cultural identity third_world communities annals tourism_research local_populations play stereotypes westerners cultures seek perform satisfy consumer demand power thathe tourist gaze supporting ethnic pride identity also_used destroy ethnic pride identity cases tourist expectations align reality local_populations village san_jose belize local maya people mayan populations given many traditional practices laurie k culture_tourism maya identity annals tourism_research vol pp however close_proximity ancient maya ruins interest areas villagers began go back past recreate traditional maya cultural patterns traditions recreating images identities changed completely placed back within ethnographic present classical maya indigenous expressions land use patterns unfortunately act also gives savvy tourists impression thathe traditions local_populations reality thathere million cameron archaeological tourism looking answers along mexico maya riviera napa bulletin local_populations often negotiate terms identity staged reality tourists contemporary reality everyday lives cultural performances tourists often blend realife ritual contested authenticity one anthropologist one maya village yucat n mexico involvement tourism iseen dangerous urban seen traditional maya society maya villages supply much migrant labor goes cancun tourist_destinations also reflect means migrants go cancun seen less maya stay behind migrant workers follow promise jobs socioeconomic tourist_destinations cancun process considered de traditional maya traditional maya urban maya people strategy keep traditional ways life one anthropologist believes thathe traditional maya fear urbanization maya people cultural commodification often tourism_industry potential commodification iseen detrimental traditional maya ways life mostly carry negative ideological perspective cruz alicia ideological weapon tourism maya migration cancun idea however cannot tother maya communities yucat n even tother indigenous communities latin sarah community sustainability solidarity understanding tourism community development anthropology department university albany suny lisa c austin university texas press museum maya culture minneapolis university minnesota press arexamples throughout yucat n roo maya people heavily involved tourism service sector positive willing ways contrasto one community mentioned maya rio isla santa mention local economies fully integrated tourism network also maintain traditional culture_tourism economic service_industry created capitalism therefore always benefits happens regardless racial cultural identities benefit benefits much maya people required engage tourism_industry tourism often incorporates entire maya towns walter e performing women strategies journal women culture society although people involved informal sector aware roles larger global system handicraft vendors continue perform western tourists order make cultural commodities goods appear authentic receive tourist capital public performance life reality many maya people living working central_america heritage_tourism excursions tend associated group given locality place becomes defining characteristic people perspectives creates dynamic tourists use travelers questions commercial presentation site undermine producer dominant maasai lion king authenticity nationalism globalization african tourism author edward bruner source american vol nov pp tourist feels heritage_site producing interpretation cultural expression experience site loses authenticity becomes less harder three sites kenya trace commodification particular aspects maasai tribal culture sites marketed varying degrees commodification authenticity order satisfy tourist expectations ranch thisite built british family great rift valley miles away nairobi commodified maasai people maasai cultural expressions maasai warriors traditional song andance comfortably safe distance away tourists performances maasai culture presented static strive satisfying tourist gaze provide sense authenticity notably contrasts europeand primitive african thisite eventually closed kenyan government colonial nature presentation maasai culture offensive many whites producing images blacks african_american african_americans village kenya image maasai women thumb_alt maasai women children maasai women children kenya site caters mostly urban commodification particular themes arespecially problematic case tourists actually stakeholders historic representation marketed give critical sense authenticity national folklore formed tell stories purposely promote equality among ethnic_groups performances modern stadium arena creates modern traditional reflects greater kenyan society representation several kenyan ethnic_groups culturally relevant narratives express politically charged message tourists visithe site actual stakeholders process culture cannot simply commodified good commodification maasai culture locally managed produced africa upscale tourist site caters mostly wealthy western tourists site maasai performers mix tourists performance involving many aspects performance pop_culture images africa dominate performance back classic africa film comforts home present luxury lodges site mostly catered towards thentertainment tourists necessarily authenticity instance tourist gaze used greater luxury experience upscale african safari historical tensions contrasts dissolved performances include mash song bah reggae reggae together locally placed african maasai culture commodified representation popular american image african cultures authentic african performances performances provide greater accessibility safe pleasant maasai stakeholders process relatively minor control tour agency production forces hidden dominate process many maasai people forced willingness play commodified stereotypes culture economic benefit place commodity eco_tourism specific natural attributes place also become commodities thenvironment locale become good important cultural_heritage attracting tourist capital population heritage tied local environment however case eco_tourism education sustainability preservation common themes emerge industry alternative form tourism_ecotourism defined form tourism inspired primarily natural_history area including indigenous cultures karen ecotourism alliance washington international ecotourism generally low_impact local environments allows tourists gain appreciation natural_resources attributes tourist_destination tourist programs provide capital used improve theconomic situations local environments well help fund conservation_efforts years environmental degradation caused tourist activity goals ecotourism local_communities opportunity engage governmental organizations non_governmental organizations private tourist firms design production tourist tourism_new ground ecotourism alternatives annual review anthropology ecotourism offer local_populations political economic agency products labor levy degree control economic_development references_category economic anthropology category_tourism"},{"title":"Heritage Rose District of New York City","description":"theritage rose district of new york city is the only rose district in the united states it is the result of thefforts of the office of the manhattan borough president and theritage rose foundation a non profit organization dedicated to the preservation of old rose scott stringer manhattan borough president mbpoorg retrieved on theritage rose district includes the western portion of northern manhattan between west nd and west rd streets with broadway manhattan broadway and trinity church cemetery trinity church cemetery and mausoleum trinity church cemetery at its center there are also additional plantings on the grounds of trinity cemetery and at several nearby locations theritage rose district with an initial collection of over a hundred roses was established in fall history of theritage rose district inew york city file heritage rose district of new york citypdf thumb heritage rose district of nyc updated may theritage rose foundation was established in and is devoted to the preservation of old roses it is a nonprofit organization committed to the preservation of heritage roses and promotion of their culture as well as to establish garden s where these roses may be grown and appreciated by the public to promote public knowledge and appreciation of heritage roses and their preservation heritage rose foundation heritage rose foundation retrieved on the foundation has an officialist of goals of theritage rose foundation in early a mobile walking tour was created for theritage rose districthe template for the mobile site was created by jacob graff a high school student from dallas texas an iphone version is being developed the tour takes visitors through the history each of the district sites june was officially proclaimed jacob graff day by new york city in honor of jacob s contribution future planting sites are currently being proposed sites will have plenty of sunlight protection from thelementseparation from walking path s protection from road salt and other de icing agents andedicated maintenance by an individual organization they will preferably also be surrounded by fencing and or on raised bed scott stringer manhattan borough president mbpoorg retrieved on the majority of roseselected for theritage rose district are known to be grown inew york city before the twentieth century they are described in the manhattan borough president s office website single quotes with a name denote a knowname double quotes denote a study nameaning the rose is in commerce but its origins have been losthe majority of roses for theritage rose district were donated and by june roses are on display matthew graff a high school student from dallas tx built a misting system to allow him to grow and then donate roses to the district matthew is expanding the system to allow him to grow overosesimultaneously hisystem has been featured in the dallas morning news and on the dallas nbc affiliate channel apothecary s rose and rosa gallica rosa mundi audubon baltimore belle celsiana rosa centifolia cramoisi sup rieur duchess of portland list of rose cultivars named after people fellemberg rosa moschata graham thomas single musk green mount red green rosa harison s yellow harison s yellow hermosa louis philippe list of rose cultivars named after people madame boll maggie maitland white princess de nassau puerto rico rose du roi russeliana rosa pimpinellifolia scotch roses the shipwreck rose rosa souvenir de la malmaison souvenir de la malmaison category rose gardens in the united states category cultural tourism category harlem category washington heights manhattan category non profit organizations based inew york city","main_words":["theritage","rose","district","new_york","city","rose","district","united_states","result","thefforts","office","manhattan","borough","president","theritage_rose","foundation","non_profit","organization","dedicated","preservation","old","rose","scott","manhattan","borough","president","retrieved","theritage_rose","district","includes","western","portion","northern","manhattan","west","west","streets","broadway","manhattan","broadway","trinity","church","cemetery","trinity","church","cemetery","trinity","church","cemetery","center","also","additional","grounds","trinity","cemetery","several","nearby","locations","theritage_rose","district","initial","collection","hundred","roses","established","fall","history","theritage_rose","district","inew_york_city","file","heritage","rose","district","new_york","thumb","heritage","rose","district","nyc","updated","may","theritage_rose","foundation","established","devoted","preservation","old","roses","nonprofit","organization","committed","preservation","heritage","roses","promotion","culture","well","establish","garden","roses","may","grown","appreciated","public","promote","public","knowledge","appreciation","heritage","roses","preservation","heritage","rose","foundation","heritage","rose","foundation","retrieved","foundation","goals","theritage_rose","foundation","early","mobile","walking_tour","created","theritage_rose","districthe","mobile","site","created","jacob","high_school","student","dallas_texas","iphone","version","developed","tour","takes","visitors","history","district","sites","june","officially","proclaimed","jacob","day","new_york","city","honor","jacob","contribution","future","planting","sites","currently","proposed","sites","plenty","protection","walking","path","protection","road","salt","de","agents","maintenance","individual","organization","also","surrounded","raised","bed","scott","manhattan","borough","president","retrieved","majority","theritage_rose","district","known","grown","inew_york_city","twentieth_century","described","manhattan","borough","president","office","website","single","quotes","name","denote","double","quotes","denote","study","rose","commerce","origins","losthe","majority","roses","theritage_rose","district","donated","june","roses","display","matthew","high_school","student","dallas","built","system","allow","grow","donate","roses","district","matthew","expanding","system","allow","grow","featured","dallas","morning","news","dallas","nbc","affiliate","channel","rose","rosa","rosa","audubon","baltimore","belle","rosa","sup","portland","list","rose","named","people","rosa","graham","thomas","single","musk","green","mount","red","green","rosa","yellow","yellow","louis","philippe","list","rose","named","people","maggie","white","princess","de","nassau","puerto_rico","rose","rosa","scotch","roses","rose","rosa","souvenir","de_la","malmaison","souvenir","de_la","malmaison","category","rose","gardens","united_states","category_cultural_tourism","category","harlem","category","washington","heights","manhattan","category_non_profit","organizations_based","inew_york_city"],"clean_bigrams":[["theritage","rose"],["rose","district"],["new","york"],["york","city"],["rose","district"],["united","states"],["manhattan","borough"],["borough","president"],["theritage","rose"],["rose","foundation"],["non","profit"],["profit","organization"],["organization","dedicated"],["old","rose"],["rose","scott"],["manhattan","borough"],["borough","president"],["theritage","rose"],["rose","district"],["district","includes"],["western","portion"],["northern","manhattan"],["broadway","manhattan"],["manhattan","broadway"],["trinity","church"],["church","cemetery"],["cemetery","trinity"],["trinity","church"],["church","cemetery"],["cemetery","trinity"],["trinity","church"],["church","cemetery"],["also","additional"],["trinity","cemetery"],["several","nearby"],["nearby","locations"],["locations","theritage"],["theritage","rose"],["rose","district"],["initial","collection"],["hundred","roses"],["fall","history"],["theritage","rose"],["rose","district"],["district","inew"],["inew","york"],["york","city"],["city","file"],["file","heritage"],["heritage","rose"],["rose","district"],["new","york"],["thumb","heritage"],["heritage","rose"],["rose","district"],["nyc","updated"],["updated","may"],["may","theritage"],["theritage","rose"],["rose","foundation"],["old","roses"],["nonprofit","organization"],["organization","committed"],["preservation","heritage"],["heritage","roses"],["establish","garden"],["roses","may"],["promote","public"],["public","knowledge"],["heritage","roses"],["preservation","heritage"],["heritage","rose"],["rose","foundation"],["foundation","heritage"],["heritage","rose"],["rose","foundation"],["foundation","retrieved"],["theritage","rose"],["rose","foundation"],["mobile","walking"],["walking","tour"],["theritage","rose"],["rose","districthe"],["mobile","site"],["high","school"],["school","student"],["dallas","texas"],["iphone","version"],["tour","takes"],["takes","visitors"],["district","sites"],["sites","june"],["officially","proclaimed"],["proclaimed","jacob"],["new","york"],["york","city"],["contribution","future"],["future","planting"],["planting","sites"],["proposed","sites"],["walking","path"],["road","salt"],["individual","organization"],["raised","bed"],["bed","scott"],["manhattan","borough"],["borough","president"],["theritage","rose"],["rose","district"],["grown","inew"],["inew","york"],["york","city"],["twentieth","century"],["manhattan","borough"],["borough","president"],["office","website"],["website","single"],["single","quotes"],["name","denote"],["double","quotes"],["quotes","denote"],["losthe","majority"],["theritage","rose"],["rose","district"],["june","roses"],["display","matthew"],["high","school"],["school","student"],["donate","roses"],["district","matthew"],["dallas","morning"],["morning","news"],["dallas","nbc"],["nbc","affiliate"],["affiliate","channel"],["rose","rosa"],["audubon","baltimore"],["baltimore","belle"],["portland","list"],["graham","thomas"],["thomas","single"],["single","musk"],["musk","green"],["green","mount"],["mount","red"],["red","green"],["green","rosa"],["louis","philippe"],["philippe","list"],["white","princess"],["princess","de"],["de","nassau"],["nassau","puerto"],["puerto","rico"],["rico","rose"],["rose","rosa"],["scotch","roses"],["rose","rosa"],["rosa","souvenir"],["souvenir","de"],["de","la"],["la","malmaison"],["malmaison","souvenir"],["souvenir","de"],["de","la"],["la","malmaison"],["malmaison","category"],["category","rose"],["rose","gardens"],["united","states"],["states","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","harlem"],["harlem","category"],["category","washington"],["washington","heights"],["heights","manhattan"],["manhattan","category"],["category","non"],["non","profit"],["profit","organizations"],["organizations","based"],["based","inew"],["inew","york"],["york","city"]],"all_collocations":["theritage rose","rose district","new york","york city","rose district","united states","manhattan borough","borough president","theritage rose","rose foundation","non profit","profit organization","organization dedicated","old rose","rose scott","manhattan borough","borough president","theritage rose","rose district","district includes","western portion","northern manhattan","broadway manhattan","manhattan broadway","trinity church","church cemetery","cemetery trinity","trinity church","church cemetery","cemetery trinity","trinity church","church cemetery","also additional","trinity cemetery","several nearby","nearby locations","locations theritage","theritage rose","rose district","initial collection","hundred roses","fall history","theritage rose","rose district","district inew","inew york","york city","city file","file heritage","heritage rose","rose district","new york","thumb heritage","heritage rose","rose district","nyc updated","updated may","may theritage","theritage rose","rose foundation","old roses","nonprofit organization","organization committed","preservation heritage","heritage roses","establish garden","roses may","promote public","public knowledge","heritage roses","preservation heritage","heritage rose","rose foundation","foundation heritage","heritage rose","rose foundation","foundation retrieved","theritage rose","rose foundation","mobile walking","walking tour","theritage rose","rose districthe","mobile site","high school","school student","dallas texas","iphone version","tour takes","takes visitors","district sites","sites june","officially proclaimed","proclaimed jacob","new york","york city","contribution future","future planting","planting sites","proposed sites","walking path","road salt","individual organization","raised bed","bed scott","manhattan borough","borough president","theritage rose","rose district","grown inew","inew york","york city","twentieth century","manhattan borough","borough president","office website","website single","single quotes","name denote","double quotes","quotes denote","losthe majority","theritage rose","rose district","june roses","display matthew","high school","school student","donate roses","district matthew","dallas morning","morning news","dallas nbc","nbc affiliate","affiliate channel","rose rosa","audubon baltimore","baltimore belle","portland list","graham thomas","thomas single","single musk","musk green","green mount","mount red","red green","green rosa","louis philippe","philippe list","white princess","princess de","de nassau","nassau puerto","puerto rico","rico rose","rose rosa","scotch roses","rose rosa","rosa souvenir","souvenir de","de la","la malmaison","malmaison souvenir","souvenir de","de la","la malmaison","malmaison category","category rose","rose gardens","united states","states category","category cultural","cultural tourism","tourism category","category harlem","harlem category","category washington","washington heights","heights manhattan","manhattan category","category non","non profit","profit organizations","organizations based","based inew","inew york","york city"],"new_description":"theritage rose district new_york city rose district united_states result thefforts office manhattan borough president theritage_rose foundation non_profit organization dedicated preservation old rose scott manhattan borough president retrieved theritage_rose district includes western portion northern manhattan west west streets broadway manhattan broadway trinity church cemetery trinity church cemetery trinity church cemetery center also additional grounds trinity cemetery several nearby locations theritage_rose district initial collection hundred roses established fall history theritage_rose district inew_york_city file heritage rose district new_york thumb heritage rose district nyc updated may theritage_rose foundation established devoted preservation old roses nonprofit organization committed preservation heritage roses promotion culture well establish garden roses may grown appreciated public promote public knowledge appreciation heritage roses preservation heritage rose foundation heritage rose foundation retrieved foundation goals theritage_rose foundation early mobile walking_tour created theritage_rose districthe mobile site created jacob high_school student dallas_texas iphone version developed tour takes visitors history district sites june officially proclaimed jacob day new_york city honor jacob contribution future planting sites currently proposed sites plenty protection walking path protection road salt de agents maintenance individual organization also surrounded raised bed scott manhattan borough president retrieved majority theritage_rose district known grown inew_york_city twentieth_century described manhattan borough president office website single quotes name denote double quotes denote study rose commerce origins losthe majority roses theritage_rose district donated june roses display matthew high_school student dallas built system allow grow donate roses district matthew expanding system allow grow featured dallas morning news dallas nbc affiliate channel rose rosa rosa audubon baltimore belle rosa sup portland list rose named people rosa graham thomas single musk green mount red green rosa yellow yellow louis philippe list rose named people maggie white princess de nassau puerto_rico rose rosa scotch roses rose rosa souvenir de_la malmaison souvenir de_la malmaison category rose gardens united_states category_cultural_tourism category harlem category washington heights manhattan category_non_profit organizations_based inew_york_city"},{"title":"Heritage tourism","description":"file tatev monastery from a distancejpg thumb tatev armenia file beiteddine palace innercourtyardjpg thumbeiteddine palace lebanon file jpg thumb wudang mountains china file gizeh cheops bw jpg thumb giza egypt cultural heritage tourism or just heritage tourism or diaspora tourism is a branch of tourism oriented towards the cultural heritage of the location where tourism is occurring the national trust for historic preservation in the united states defines heritage tourism as traveling to experience the places artifacts and activities that authentically representhe stories and people of the past and heritage tourism can include cultural historic and natural resources culture has always been a major object of travel as the development of the grand tour from the th century onwards attests in the th century some people have claimed culture ceased to be the objective of tourism is now culture cultural attractions play an important role in tourism at allevels from the global highlights of world culture to attractions that underpin local identities richards according to the weiler and hall culture heritage and the arts have long contributed to appeal of tourist destination however in recent years culture has been rediscovered as an important marketing tool to attracthose travellers with special interests in heritage and arts according to the hollinshead cultural heritage tourism defines as cultural heritage tourism is the fastest growing segment of the tourism industry because there is a trend toward an increase specialization among tourists this trend is evident in the rise in the volume of tourists who seek adventure culture history archaeology and interaction with local people cultural heritage tourism is important for various reasons it has a positiveconomic and social impact it establishes and reinforces identity it helps preserve the cultural heritage with culture as an instrument it facilitates harmony and understanding among people it supports culture and helps renew tourism richards as benjamin porter and noel b salazar havethnographically documented however cultural heritage tourism can also creatensions and even conflict between the different stakeholders involved porter and salazar cultural heritage tourism has a number of objectives that must be met within the context of sustainable development such as the conservation of cultural resources accurate interpretation of resources authentic visitors experience and the stimulation of thearned revenues of cultural resources we can see therefore that cultural heritage tourism is not only concerned with identification management and protection of theritage values but it must also be involved in understanding the impact of tourism on communities and regions achieving economic and social benefits providing financial resources for protection as well as marketing and promotion j m fladmark heritage tourism involves visiting historical or industrial sites that may include old canal s railway s battlegrounds etc the overall purpose is to gain an appreciation of the past it also refers to the marketing of a location to members of a diaspora who have distant family roots there decolonization and immigration form the major background of much contemporary heritage tourism falling travel costs have also made heritage tourism possible for more peoplewinter t post conflict heritage postcolonial tourism politics andevelopment at angkoroutledge korstanje m epistemology of tourism journal of travel and tourism research online another possible form involves religious travel or pilgrimage s many catholics from around the world come to the vatican city vaticand other sitesuch as lourdes or f tima portugal f tima islam commands its followers to take the hajj to mecca thus differentiating it somewhat from tourism in the usual sense though the trip can also be a culturally important event for the pilgrimbasu p highland homecomings genealogy and heritage tourism in the scottish diaspora routledge heritage tourism can also be attributed to historical events that have been dramatised to make themorentertaining for example a historical tour of a town or city using a theme such as ghosts or vikings heritage tourism focuses on certain historical events rather than presenting a balanced view of that historical period its aimay not always be the presentation of accurate historical facts as opposed to economically developing the site and surrounding areas a result heritage tourism can be seen as a blend of education entertainment preservation and profittimothy d olsen d eds tourism religion and spiritual journeys routledge indigenous peoples anthropology and ethnology were two major disciplines interested by the life of aborigines their customs and political structuresharris m the rise of anthropological theory a history of theories of culture altamira press although the firsts fieldworkers were not interested in expanding the colonization of main european powers the fact was thatheir notes books and field work notes weremployed by colonial officials to understand the aboriginal mindrestrepo escobar a other anthropologies and anthropology otherwise steps to a world anthropologies framework critique of anthropology from that moment on anthropology developed a strange fascination for the other s cultureclifford j dombrowski k graburn leitegoldberg n phillips r watkins j clifford j looking several ways anthropology and native heritage in alaska current anthropology the concepts of heritage and colonization were inextricably intertwinedstarzmann m t cultural imperialism and heritage politics in thevent of armed conflict prospects for an activist archaeology archaeologies maximiliano korstanje argues that literature played a vital role in configuring the image of others in the western imaginary and this was the rub aborigines internalized the western stereotypes aboutheir cultures in the threshold of history the meaning of heritage and patrimony accompanied the interests of european elite and their attachmento colonial orderkorstanje m exploring the connection between anthropology and tourism patrimony and heritage tourism in perspectivevent managementhe concept of heritage tourism has been recently criticized by some latin americanthropologists these radical voices focus on the ideological discourse that marksome human groups or ethnicities within heritage tourism while others arexcluded whitelitexpands its hegemony by marking others as different athe time it remains unmarked as normal tourism is based on the quest exploitation for otherness by re considering what is and not heritage tourism consists in an ideological mechanism of disciplinexerted by modernation states over aboriginal groupskorstanje m reconsidering cultural tourism anthropologist s perspective journal of heritage tourism file community tourism riveno webm thumb community tourism in sierra leone the story of a community in sierra leone trying to manage tourism in a socially responsible manner another problem witheritage tourism is theffect on indigenous peoples whose land culture is being visited by tourists if the indigenous people are not a part of the majority oruling power in the country they may not benefit from the tourism as greatly as they should for example in mexico tourism has increased because of the predicted end of the maya calendar however the indigenous maya peoples mayare not benefitting from the increased traffic through the ruins and other culturalandmarks cultural tourism see also heritage interpretation list of heritage railways world heritage site genealogy tourism notes externalinks family heritage tourism cultural heritage tourism euheritagetour culture and heritage travel challenge heritage tourism from the national trust for places of historic interest or natural beauty national trust weblog and information unesco world heritage topics european route of industrial heritage cultural heritage and religious tourism packages in romania european routes of jewisheritage and guide to synagogues and other jewisheritage sites in slovakia success factors for museums non profit cultural attractionsouth east asian tourism organisation a new south east asian based organization looking at ways to use other initiatives to spread the benefits of tourismore widely category cultural heritage category cultural tourism category museology category articles containing video clips","main_words":["file","monastery","thumb","armenia","file","palace","palace","lebanon","file_jpg","thumb","mountains","china","file_jpg","thumb","giza","egypt","cultural_heritage","tourism","heritage_tourism","diaspora","tourism","branch","tourism","oriented","towards","cultural_heritage","location","tourism","occurring","national_trust","historic","preservation","united_states","defines","experience","places","artifacts","activities","representhe","stories","people","past","heritage_tourism","include","cultural","historic","natural_resources","culture","always","major","object","travel","development","grand_tour","th_century","onwards","th_century","people","claimed","culture","ceased","objective","tourism_culture","cultural","attractions","play","important_role","tourism","allevels","global","highlights","world","culture","attractions","local","identities","richards","according","hall","culture_heritage","arts","long","contributed","appeal","tourist_destination","however","recent_years","culture","important","marketing","tool","travellers","special","interests","heritage","arts","according","cultural_heritage","tourism","defines","cultural_heritage","tourism","fastest_growing","segment","tourism_industry","trend","toward","increase","specialization","among","tourists","trend","evident","rise","volume","tourists","seek","adventure","culture","history","archaeology","interaction","local_people","cultural_heritage","tourism","important","various","reasons","social","impact","identity","helps","preserve","cultural_heritage","culture","instrument","facilitates","harmony","understanding","among","people","supports","culture","helps","tourism","richards","benjamin","porter","noel","b","salazar","documented","however","cultural_heritage","tourism_also","even","conflict","different","stakeholders","involved","porter","salazar","cultural_heritage","tourism","number","objectives","must","met","within","context","sustainable_development","conservation","cultural","resources","accurate","interpretation","resources","authentic","visitors","experience","stimulation","revenues","cultural","resources","see","therefore","cultural_heritage","tourism","concerned","identification","management","protection","theritage","values","must_also","involved","understanding","impact","tourism","communities","regions","achieving","economic","social","benefits","providing","financial","resources","protection","well","marketing","promotion","j","heritage_tourism","involves","visiting","historical","industrial","sites","may_include","old","canal","railway","etc","overall","purpose","gain","appreciation","past","also","refers","marketing","location","members","diaspora","distant","family","roots","immigration","form","major","background","much","contemporary","heritage_tourism","falling","travel","costs","also_made","heritage_tourism","possible","post","conflict","heritage_tourism","politics","andevelopment","korstanje","tourism","journal","travel_tourism","research","online","another","possible","form","involves","religious","travel","pilgrimage","many","around","world","come","vatican_city","sitesuch","lourdes","f","tima","portugal","f","tima","islam","followers","take","hajj","mecca","thus","somewhat","tourism","usual","sense","though","trip","also","culturally","important","event","p","highland","genealogy","heritage_tourism","scottish","diaspora","routledge","heritage_tourism","also","attributed","historical","events","make","example","historical","tour","town","city","using","theme","heritage_tourism","focuses","certain","historical","events","rather","presenting","balanced","view","historical","period","always","presentation","accurate","historical","facts","opposed","economically","developing","site","surrounding","areas","result","heritage_tourism","seen","blend","education","entertainment","preservation","olsen","eds","tourism","religion","spiritual","journeys","routledge","indigenous","peoples","anthropology","two_major","disciplines","interested","life","aborigines","customs","political","rise","theory","history","theories","culture","press","although","fieldworkers","interested","expanding","colonization","main","european","powers","fact","thatheir","notes","books","field","work","notes","colonial","officials","understand","aboriginal","anthropology","otherwise","steps","world","framework","critique","anthropology","moment","anthropology","developed","strange","fascination","j","k","n","phillips","r","j","j","looking","several","ways","anthropology","native","heritage","alaska","current","anthropology","concepts","heritage","colonization","inextricably","cultural","imperialism","heritage","politics","thevent","armed","conflict","prospects","activist","archaeology","maximiliano","korstanje","argues","literature","played","vital","role","image","others","western","imaginary","aborigines","western","stereotypes","aboutheir","cultures","threshold","history","meaning","heritage","patrimony","accompanied","interests","european","elite","colonial","exploring","connection","anthropology","tourism","patrimony","heritage_tourism","managementhe","concept","heritage_tourism","recently","criticized","latin","radical","voices","focus","ideological","discourse","human","groups","within","heritage_tourism","others","marking","others","different","athe_time","remains","unmarked","normal","tourism","based","quest","exploitation","considering","heritage_tourism","consists","ideological","mechanism","states","aboriginal","cultural_tourism","anthropologist","perspective","journal","heritage_tourism","file","community","tourism","thumb","community","tourism","sierra_leone","story","community","sierra_leone","trying","manage","responsible","manner","another","problem","tourism","theffect","indigenous","peoples","whose","land","culture","visited","tourists","indigenous","people","part","majority","power","country","may","benefit","tourism","greatly","example","mexico","tourism","increased","predicted","end","maya","calendar","however","indigenous","maya","peoples","increased","traffic","ruins","cultural_tourism","see_also","heritage","interpretation","list","heritage_railways","world_heritage_site","genealogy","tourism","notes_externalinks","family","travel","challenge","heritage_tourism","national_trust","places","historic","interest","natural_beauty","national_trust","information","topics","european_route","industrial_heritage","cultural_heritage","religious_tourism","packages","romania","jewisheritage","guide","jewisheritage","sites","slovakia","success","factors","museums","non_profit","cultural","east_asian","tourism_organisation","based","organization","looking","ways","use","initiatives","spread","benefits","tourismore","widely","category_cultural_tourism","category","category_articles","containing_video_clips"],"clean_bigrams":[["armenia","file"],["palace","lebanon"],["lebanon","file"],["file","jpg"],["jpg","thumb"],["mountains","china"],["china","file"],["file","jpg"],["jpg","thumb"],["thumb","giza"],["giza","egypt"],["egypt","cultural"],["cultural","heritage"],["heritage","tourism"],["heritage","tourism"],["diaspora","tourism"],["tourism","oriented"],["oriented","towards"],["cultural","heritage"],["national","trust"],["historic","preservation"],["united","states"],["states","defines"],["defines","heritage"],["heritage","tourism"],["places","artifacts"],["representhe","stories"],["heritage","tourism"],["include","cultural"],["cultural","historic"],["natural","resources"],["resources","culture"],["major","object"],["grand","tour"],["th","century"],["century","onwards"],["th","century"],["claimed","culture"],["culture","ceased"],["culture","cultural"],["cultural","attractions"],["attractions","play"],["important","role"],["global","highlights"],["world","culture"],["local","identities"],["identities","richards"],["richards","according"],["hall","culture"],["culture","heritage"],["long","contributed"],["tourist","destination"],["destination","however"],["recent","years"],["years","culture"],["important","marketing"],["marketing","tool"],["special","interests"],["arts","according"],["cultural","heritage"],["heritage","tourism"],["tourism","defines"],["cultural","heritage"],["heritage","tourism"],["fastest","growing"],["growing","segment"],["tourism","industry"],["trend","toward"],["increase","specialization"],["specialization","among"],["among","tourists"],["seek","adventure"],["adventure","culture"],["culture","history"],["history","archaeology"],["local","people"],["people","cultural"],["cultural","heritage"],["heritage","tourism"],["various","reasons"],["social","impact"],["helps","preserve"],["cultural","heritage"],["facilitates","harmony"],["understanding","among"],["among","people"],["supports","culture"],["tourism","richards"],["benjamin","porter"],["noel","b"],["b","salazar"],["documented","however"],["however","cultural"],["cultural","heritage"],["heritage","tourism"],["even","conflict"],["different","stakeholders"],["stakeholders","involved"],["involved","porter"],["salazar","cultural"],["cultural","heritage"],["heritage","tourism"],["met","within"],["sustainable","development"],["cultural","resources"],["resources","accurate"],["accurate","interpretation"],["resources","authentic"],["authentic","visitors"],["visitors","experience"],["cultural","resources"],["see","therefore"],["cultural","heritage"],["heritage","tourism"],["identification","management"],["theritage","values"],["must","also"],["regions","achieving"],["achieving","economic"],["social","benefits"],["benefits","providing"],["providing","financial"],["financial","resources"],["promotion","j"],["heritage","tourism"],["tourism","involves"],["involves","visiting"],["visiting","historical"],["industrial","sites"],["may","include"],["include","old"],["old","canal"],["overall","purpose"],["also","refers"],["distant","family"],["family","roots"],["immigration","form"],["major","background"],["much","contemporary"],["contemporary","heritage"],["heritage","tourism"],["tourism","falling"],["falling","travel"],["travel","costs"],["also","made"],["made","heritage"],["heritage","tourism"],["tourism","possible"],["post","conflict"],["conflict","heritage"],["heritage","tourism"],["tourism","politics"],["politics","andevelopment"],["tourism","journal"],["tourism","research"],["research","online"],["online","another"],["another","possible"],["possible","form"],["form","involves"],["involves","religious"],["religious","travel"],["world","come"],["vatican","city"],["f","tima"],["tima","portugal"],["portugal","f"],["f","tima"],["tima","islam"],["mecca","thus"],["usual","sense"],["sense","though"],["culturally","important"],["important","event"],["p","highland"],["heritage","tourism"],["scottish","diaspora"],["diaspora","routledge"],["routledge","heritage"],["heritage","tourism"],["historical","events"],["historical","tour"],["city","using"],["heritage","tourism"],["tourism","focuses"],["certain","historical"],["historical","events"],["events","rather"],["balanced","view"],["historical","period"],["accurate","historical"],["historical","facts"],["economically","developing"],["surrounding","areas"],["result","heritage"],["heritage","tourism"],["education","entertainment"],["entertainment","preservation"],["eds","tourism"],["tourism","religion"],["spiritual","journeys"],["journeys","routledge"],["routledge","indigenous"],["indigenous","peoples"],["peoples","anthropology"],["two","major"],["major","disciplines"],["disciplines","interested"],["press","although"],["main","european"],["european","powers"],["thatheir","notes"],["notes","books"],["field","work"],["work","notes"],["colonial","officials"],["anthropology","otherwise"],["otherwise","steps"],["framework","critique"],["anthropology","developed"],["strange","fascination"],["n","phillips"],["phillips","r"],["j","looking"],["looking","several"],["several","ways"],["ways","anthropology"],["native","heritage"],["alaska","current"],["current","anthropology"],["cultural","imperialism"],["heritage","politics"],["armed","conflict"],["conflict","prospects"],["activist","archaeology"],["maximiliano","korstanje"],["korstanje","argues"],["literature","played"],["vital","role"],["western","imaginary"],["western","stereotypes"],["stereotypes","aboutheir"],["aboutheir","cultures"],["patrimony","accompanied"],["european","elite"],["tourism","patrimony"],["heritage","tourism"],["managementhe","concept"],["heritage","tourism"],["recently","criticized"],["radical","voices"],["voices","focus"],["ideological","discourse"],["human","groups"],["within","heritage"],["heritage","tourism"],["marking","others"],["different","athe"],["athe","time"],["remains","unmarked"],["normal","tourism"],["quest","exploitation"],["heritage","tourism"],["tourism","consists"],["ideological","mechanism"],["cultural","tourism"],["tourism","anthropologist"],["perspective","journal"],["heritage","tourism"],["tourism","file"],["file","community"],["community","tourism"],["thumb","community"],["community","tourism"],["sierra","leone"],["sierra","leone"],["leone","trying"],["manage","tourism"],["socially","responsible"],["responsible","manner"],["manner","another"],["another","problem"],["indigenous","peoples"],["peoples","whose"],["whose","land"],["land","culture"],["indigenous","people"],["mexico","tourism"],["predicted","end"],["maya","calendar"],["calendar","however"],["indigenous","maya"],["maya","peoples"],["increased","traffic"],["cultural","tourism"],["tourism","see"],["see","also"],["also","heritage"],["heritage","interpretation"],["interpretation","list"],["heritage","railways"],["railways","world"],["world","heritage"],["heritage","site"],["site","genealogy"],["genealogy","tourism"],["tourism","notes"],["notes","externalinks"],["externalinks","family"],["family","heritage"],["heritage","tourism"],["tourism","cultural"],["cultural","heritage"],["heritage","tourism"],["culture","heritage"],["heritage","travel"],["travel","challenge"],["challenge","heritage"],["heritage","tourism"],["national","trust"],["historic","interest"],["natural","beauty"],["beauty","national"],["national","trust"],["information","unesco"],["unesco","world"],["world","heritage"],["heritage","topics"],["topics","european"],["european","route"],["industrial","heritage"],["heritage","cultural"],["cultural","heritage"],["religious","tourism"],["tourism","packages"],["romania","european"],["european","routes"],["jewisheritage","sites"],["slovakia","success"],["success","factors"],["museums","non"],["non","profit"],["profit","cultural"],["east","asian"],["asian","tourism"],["tourism","organisation"],["new","south"],["south","east"],["east","asian"],["asian","based"],["based","organization"],["organization","looking"],["tourismore","widely"],["widely","category"],["category","cultural"],["cultural","heritage"],["heritage","category"],["category","cultural"],["cultural","tourism"],["tourism","category"],["category","articles"],["articles","containing"],["containing","video"],["video","clips"]],"all_collocations":["armenia file","palace lebanon","lebanon file","file jpg","mountains china","china file","file jpg","thumb giza","giza egypt","egypt cultural","cultural heritage","heritage tourism","heritage tourism","diaspora tourism","tourism oriented","oriented towards","cultural heritage","national trust","historic preservation","united states","states defines","defines heritage","heritage tourism","places artifacts","representhe stories","heritage tourism","include cultural","cultural historic","natural resources","resources culture","major object","grand tour","th century","century onwards","th century","claimed culture","culture ceased","culture cultural","cultural attractions","attractions play","important role","global highlights","world culture","local identities","identities richards","richards according","hall culture","culture heritage","long contributed","tourist destination","destination however","recent years","years culture","important marketing","marketing tool","special interests","arts according","cultural heritage","heritage tourism","tourism defines","cultural heritage","heritage tourism","fastest growing","growing segment","tourism industry","trend toward","increase specialization","specialization among","among tourists","seek adventure","adventure culture","culture history","history archaeology","local people","people cultural","cultural heritage","heritage tourism","various reasons","social impact","helps preserve","cultural heritage","facilitates harmony","understanding among","among people","supports culture","tourism richards","benjamin porter","noel b","b salazar","documented however","however cultural","cultural heritage","heritage tourism","even conflict","different stakeholders","stakeholders involved","involved porter","salazar cultural","cultural heritage","heritage tourism","met within","sustainable development","cultural resources","resources accurate","accurate interpretation","resources authentic","authentic visitors","visitors experience","cultural resources","see therefore","cultural heritage","heritage tourism","identification management","theritage values","must also","regions achieving","achieving economic","social benefits","benefits providing","providing financial","financial resources","promotion j","heritage tourism","tourism involves","involves visiting","visiting historical","industrial sites","may include","include old","old canal","overall purpose","also refers","distant family","family roots","immigration form","major background","much contemporary","contemporary heritage","heritage tourism","tourism falling","falling travel","travel costs","also made","made heritage","heritage tourism","tourism possible","post conflict","conflict heritage","heritage tourism","tourism politics","politics andevelopment","tourism journal","tourism research","research online","online another","another possible","possible form","form involves","involves religious","religious travel","world come","vatican city","f tima","tima portugal","portugal f","f tima","tima islam","mecca thus","usual sense","sense though","culturally important","important event","p highland","heritage tourism","scottish diaspora","diaspora routledge","routledge heritage","heritage tourism","historical events","historical tour","city using","heritage tourism","tourism focuses","certain historical","historical events","events rather","balanced view","historical period","accurate historical","historical facts","economically developing","surrounding areas","result heritage","heritage tourism","education entertainment","entertainment preservation","eds tourism","tourism religion","spiritual journeys","journeys routledge","routledge indigenous","indigenous peoples","peoples anthropology","two major","major disciplines","disciplines interested","press although","main european","european powers","thatheir notes","notes books","field work","work notes","colonial officials","anthropology otherwise","otherwise steps","framework critique","anthropology developed","strange fascination","n phillips","phillips r","j looking","looking several","several ways","ways anthropology","native heritage","alaska current","current anthropology","cultural imperialism","heritage politics","armed conflict","conflict prospects","activist archaeology","maximiliano korstanje","korstanje argues","literature played","vital role","western imaginary","western stereotypes","stereotypes aboutheir","aboutheir cultures","patrimony accompanied","european elite","tourism patrimony","heritage tourism","managementhe concept","heritage tourism","recently criticized","radical voices","voices focus","ideological discourse","human groups","within heritage","heritage tourism","marking others","different athe","athe time","remains unmarked","normal tourism","quest exploitation","heritage tourism","tourism consists","ideological mechanism","cultural tourism","tourism anthropologist","perspective journal","heritage tourism","tourism file","file community","community tourism","thumb community","community tourism","sierra leone","sierra leone","leone trying","manage tourism","socially responsible","responsible manner","manner another","another problem","indigenous peoples","peoples whose","whose land","land culture","indigenous people","mexico tourism","predicted end","maya calendar","calendar however","indigenous maya","maya peoples","increased traffic","cultural tourism","tourism see","see also","also heritage","heritage interpretation","interpretation list","heritage railways","railways world","world heritage","heritage site","site genealogy","genealogy tourism","tourism notes","notes externalinks","externalinks family","family heritage","heritage tourism","tourism cultural","cultural heritage","heritage tourism","culture heritage","heritage travel","travel challenge","challenge heritage","heritage tourism","national trust","historic interest","natural beauty","beauty national","national trust","information unesco","unesco world","world heritage","heritage topics","topics european","european route","industrial heritage","heritage cultural","cultural heritage","religious tourism","tourism packages","romania european","european routes","jewisheritage sites","slovakia success","success factors","museums non","non profit","profit cultural","east asian","asian tourism","tourism organisation","new south","south east","east asian","asian based","based organization","organization looking","tourismore widely","widely category","category cultural","cultural heritage","heritage category","category cultural","cultural tourism","tourism category","category articles","articles containing","containing video","video clips"],"new_description":"file monastery thumb armenia file palace palace lebanon file_jpg thumb mountains china file_jpg thumb giza egypt cultural_heritage tourism heritage_tourism diaspora tourism branch tourism oriented towards cultural_heritage location tourism occurring national_trust historic preservation united_states defines heritage_tourism_traveling experience places artifacts activities representhe stories people past heritage_tourism include cultural historic natural_resources culture always major object travel development grand_tour th_century onwards th_century people claimed culture ceased objective tourism_culture cultural attractions play important_role tourism allevels global highlights world culture attractions local identities richards according hall culture_heritage arts long contributed appeal tourist_destination however recent_years culture important marketing tool travellers special interests heritage arts according cultural_heritage tourism defines cultural_heritage tourism fastest_growing segment tourism_industry trend toward increase specialization among tourists trend evident rise volume tourists seek adventure culture history archaeology interaction local_people cultural_heritage tourism important various reasons social impact identity helps preserve cultural_heritage culture instrument facilitates harmony understanding among people supports culture helps tourism richards benjamin porter noel b salazar documented however cultural_heritage tourism_also even conflict different stakeholders involved porter salazar cultural_heritage tourism number objectives must met within context sustainable_development conservation cultural resources accurate interpretation resources authentic visitors experience stimulation revenues cultural resources see therefore cultural_heritage tourism concerned identification management protection theritage values must_also involved understanding impact tourism communities regions achieving economic social benefits providing financial resources protection well marketing promotion j heritage_tourism involves visiting historical industrial sites may_include old canal railway etc overall purpose gain appreciation past also refers marketing location members diaspora distant family roots immigration form major background much contemporary heritage_tourism falling travel costs also_made heritage_tourism possible post conflict heritage_tourism politics andevelopment korstanje tourism journal travel_tourism research online another possible form involves religious travel pilgrimage many around world come vatican_city sitesuch lourdes f tima portugal f tima islam followers take hajj mecca thus somewhat tourism usual sense though trip also culturally important event p highland genealogy heritage_tourism scottish diaspora routledge heritage_tourism also attributed historical events make example historical tour town city using theme heritage_tourism focuses certain historical events rather presenting balanced view historical period always presentation accurate historical facts opposed economically developing site surrounding areas result heritage_tourism seen blend education entertainment preservation olsen eds tourism religion spiritual journeys routledge indigenous peoples anthropology two_major disciplines interested life aborigines customs political rise theory history theories culture press although fieldworkers interested expanding colonization main european powers fact thatheir notes books field work notes colonial officials understand aboriginal anthropology otherwise steps world framework critique anthropology moment anthropology developed strange fascination j k n phillips r j j looking several ways anthropology native heritage alaska current anthropology concepts heritage colonization inextricably cultural imperialism heritage politics thevent armed conflict prospects activist archaeology maximiliano korstanje argues literature played vital role image others western imaginary aborigines western stereotypes aboutheir cultures threshold history meaning heritage patrimony accompanied interests european elite colonial exploring connection anthropology tourism patrimony heritage_tourism managementhe concept heritage_tourism recently criticized latin radical voices focus ideological discourse human groups within heritage_tourism others marking others different athe_time remains unmarked normal tourism based quest exploitation considering heritage_tourism consists ideological mechanism states aboriginal cultural_tourism anthropologist perspective journal heritage_tourism file community tourism thumb community tourism sierra_leone story community sierra_leone trying manage tourism_socially responsible manner another problem tourism theffect indigenous peoples whose land culture visited tourists indigenous people part majority power country may benefit tourism greatly example mexico tourism increased predicted end maya calendar however indigenous maya peoples increased traffic ruins cultural_tourism see_also heritage interpretation list heritage_railways world_heritage_site genealogy tourism notes_externalinks family heritage_tourism_cultural_heritage tourism_culture_heritage travel challenge heritage_tourism national_trust places historic interest natural_beauty national_trust information unesco_world_heritage topics european_route industrial_heritage cultural_heritage religious_tourism packages romania european_routes jewisheritage guide jewisheritage sites slovakia success factors museums non_profit cultural east_asian tourism_organisation new_south_east_asian based organization looking ways use initiatives spread benefits tourismore widely category_cultural_heritage category_cultural_tourism category category_articles containing_video_clips"},{"title":"Heritage trail","description":"heritage trails are walking trails andriving routes in urband rural settings that are identified in most cases by signage and guidebooks as relating to cultural heritage theritage might be built or it can also be cultural heritage narrative in most cases it is in public space the nature of the trail can be seen to beneficial for community development community participation for discovering community heritage and for involvement by community in developing the trails in many countries heritage trails are self guided however for the interpretation ofeatures and items of historical note walking tour guides arequired in many countries former abandoned railway formations are used as walking and heritage trailsee also audio tour walking tour furthereading ruitenberg claudia w learning by walking non formal education as curatorial practice and intervention in public space international journal of lifelong educationo wynn jonathan r the tour guide walking and talking new york chicago the university of chicago press wynn jonathan r city tour guides urban alchemists at work city community no june category types of tourism category tourist activities category heritage trails","main_words":["heritage","trails","walking","trails","routes","urband","rural","settings","identified","cases","signage","guidebooks","relating","cultural_heritage","theritage","might","built","also","cultural_heritage","narrative","cases","public_space","nature","trail","seen","beneficial","community","development","community","participation","discovering","community","heritage","involvement","community","developing","trails","many_countries","heritage","trails","self_guided","however","interpretation","items","historical","note","walking_tour","guides","arequired","many_countries","former","abandoned","railway","formations","used","walking","heritage","also","audio","tour","walking_tour","furthereading","claudia","w","learning","walking","non","formal","education","practice","intervention","public_space","international_journal","lifelong","wynn","jonathan","r","tour_guide","walking","talking","new_york","chicago","university","chicago","press","wynn","jonathan","r","city","tour_guides","urban","alchemists","work","city","community","activities","category","heritage","trails"],"clean_bigrams":[["heritage","trails"],["walking","trails"],["urband","rural"],["rural","settings"],["cultural","heritage"],["heritage","theritage"],["theritage","might"],["cultural","heritage"],["heritage","narrative"],["public","space"],["community","development"],["development","community"],["community","participation"],["discovering","community"],["community","heritage"],["many","countries"],["countries","heritage"],["heritage","trails"],["self","guided"],["guided","however"],["historical","note"],["note","walking"],["walking","tour"],["tour","guides"],["guides","arequired"],["many","countries"],["countries","former"],["former","abandoned"],["abandoned","railway"],["railway","formations"],["also","audio"],["audio","tour"],["tour","walking"],["walking","tour"],["tour","furthereading"],["claudia","w"],["w","learning"],["walking","non"],["non","formal"],["formal","education"],["public","space"],["space","international"],["international","journal"],["wynn","jonathan"],["jonathan","r"],["tour","guide"],["guide","walking"],["talking","new"],["new","york"],["york","chicago"],["chicago","press"],["press","wynn"],["wynn","jonathan"],["jonathan","r"],["r","city"],["city","tour"],["tour","guides"],["guides","urban"],["urban","alchemists"],["work","city"],["city","community"],["june","category"],["category","types"],["tourism","category"],["category","tourist"],["tourist","activities"],["activities","category"],["category","heritage"],["heritage","trails"]],"all_collocations":["heritage trails","walking trails","urband rural","rural settings","cultural heritage","heritage theritage","theritage might","cultural heritage","heritage narrative","public space","community development","development community","community participation","discovering community","community heritage","many countries","countries heritage","heritage trails","self guided","guided however","historical note","note walking","walking tour","tour guides","guides arequired","many countries","countries former","former abandoned","abandoned railway","railway formations","also audio","audio tour","tour walking","walking tour","tour furthereading","claudia w","w learning","walking non","non formal","formal education","public space","space international","international journal","wynn jonathan","jonathan r","tour guide","guide walking","talking new","new york","york chicago","chicago press","press wynn","wynn jonathan","jonathan r","r city","city tour","tour guides","guides urban","urban alchemists","work city","city community","june category","category types","tourism category","category tourist","tourist activities","activities category","category heritage","heritage trails"],"new_description":"heritage trails walking trails routes urband rural settings identified cases signage guidebooks relating cultural_heritage theritage might built also cultural_heritage narrative cases public_space nature trail seen beneficial community development community participation discovering community heritage involvement community developing trails many_countries heritage trails self_guided however interpretation items historical note walking_tour guides arequired many_countries former abandoned railway formations used walking heritage also audio tour walking_tour furthereading claudia w learning walking non formal education practice intervention public_space international_journal lifelong wynn jonathan r tour_guide walking talking new_york chicago university chicago press wynn jonathan r city tour_guides urban alchemists work city community june_category_types tourism_category_tourist activities category heritage trails"},{"title":"Heuriger","description":"file heuriger inussdorfjpg thumb px heuriger inu dorf vienna heuriger the viennese heurige austrian dialect pronunciation heiriga is the name given to a tavern in eastern austria where a local winemaker serves his newine under a specialicence in alternate months during the growing season theurige arenowned for their atmosphere of gem tlichkeit shared among a throng enjoying young wine simple food and in some placeschrammelmusik they correspond to the strau wirtschaft strau wirtschaften in the german rheinland bothave a bush of pine twigs hanging athentrance when they are open heuriger is the abbreviation of heuriger wein this year s wine in german language austriand bavarian german originally it was a simple open air tavern on the premises of winemakers where people would bring along food andrink the newine nowadays the taverns are often situated at a distance of the wineyards and offer both food andrinks heurige where apple or pear cider iserved are called a mostheurige in the well known wine growing areas of the city of vienna grinzing sievering neustift liesing many eating establishments have a rustic interior design similar to heurige yethey have a normalicence and sell wine they buy from outside sources history on august austrian emperor joseph iissued a decree that permitted all residents topen establishments to sell and serve self produced wine and juices at first no food could be sold in order to prevent competition with restaurants but over time these restrictions lessened over the years well known areas for heurigen developed includingrinzing sievering neustift am walde perchtoldsdorf mauer vienna mauer stammersdorf guntramsdorf gumpoldskirchen traiskirchen gainfarn d rnstein langenlois the wachau wine wachau region rust austria rust k nigstetten gamlitz and kitzeck similar establishments exist in wine producing region s elsewhere in austria known as buschenschank in styriand strausse strau en besenwirtschaft or heckenwirtschaft in germany and other german speaking areas atmosphere a heuriger is prized both for the charms of what it offers and its limitations eacheuriger is only open briefly usually or weeks during a four month season in the fall although it may reopen again later in the season when more wine has been produced it serves only its own wine and but a limited selection ofood as an evening meal generally local homemade products offered asmall dishesuch as liptauer spread various meat or sausage and semmel combinations or cheese board s typical drinks found at heurigen include federweisser sturm a partially fermented wine sold athe beginning ofall that still contains a fair amount of grape and gr ner veltliner gruner veltliner which is one of the most popular types of austrian wine almdudler and spritzer gespritzer are also commonly found at modern heurigen lucky patrons will sometimes find ice wineiswein to enjoy with dessert heurigen indicate thathey are open and guests welcome by displaying a handful of conifer or fir twigs bound in a circlar buschen hung above thentrance door until the th century it was customary for guests to bring along their own food whenjoying wine at a heuriger to make an establishment more profitable in many places the tavern was leased tother winemakers winzer in german known as winzerstuben gem tlichkeit shared among a throng enjoying young wine simple food and traditional music is one of the greatest appeals of a heuriger as a result many establishments elsewhere such as in viennare made to look like heurigen but in fact are licensed restaurantselling wines from outside sources theseven serve beer and coffee unthinkable at an authentic heuriger music has traditionally been part of theuriger ambiance and contributes greatly to its gem tlichkeit when presentoday it is typically provided by a pair of heurigens nger who serenade from table to table for tip gratuity tips playing a guitar and accordion they take requests for songs from theirepertoire of wienerlied er and music of vienna schrammelmusik these songs themes invariably revolve around the quality of the wine its consumption and consequences vienna s beauty a nostalgia nostalgic longing for the pasthe transience of life the inevitability of suffering andeath at god s will and to a somewhat lesser degree romantic loveven trying to honor theuriger tradition music has changedramatically since performersuch as the third man sensation anton karas earned a living by playing his zither or hans moser actor hans moser sang a wienerlied from his movies visitors from germany will hope to hear songs from their native land as will those from others theurigens nger will try their best see also strausse references externalinks wine culture in vienna category types of restaurants category types of drinking establishment category wine terminology category austrian cuisine category austrian wine","main_words":["file","heuriger","thumb","px","heuriger","vienna","heuriger","austrian","dialect","pronunciation","name","given","tavern","eastern","austria","local","winemaker","serves","alternate","months","growing","season","atmosphere","gem","shared","among","enjoying","young","wine","simple","food","strau","wirtschaft","strau","german","bush","pine","hanging","athentrance","open","heuriger","abbreviation","heuriger","year","wine","german_language","austriand","bavarian","german","originally","simple","open_air","tavern","premises","winemakers","people","would","bring","along","food_andrink","nowadays","taverns","often","situated","distance","offer","food_andrinks","apple","cider","iserved","called","well_known","wine","growing","areas","city","vienna","many","eating","establishments","rustic","interior","design","similar","yethey","sell","wine","buy","outside","sources","history","august","austrian","emperor","joseph","decree","permitted","residents","topen","establishments","sell","serve","self","produced","wine","first","food","could","sold","order","prevent","competition","restaurants","time","restrictions","years","well_known","areas","heurigen","developed","vienna","wine_region","rust","austria","rust","k","similar","establishments","exist","wine","producing","region","elsewhere","austria","known","strau","germany_german","speaking","areas","atmosphere","heuriger","offers","limitations","open","briefly","usually","weeks","four","month","season","fall","although","may","reopen","later","season","wine","produced","serves","wine","limited","selection","ofood","evening","meal","generally","local","homemade","products","offered","asmall","dishesuch","spread","various","meat","sausage","combinations","cheese","board","typical","drinks","found","heurigen","include","partially","fermented","wine","sold","athe_beginning","still","contains","fair","amount","one","popular","types","austrian","wine","also_commonly","found","modern","heurigen","lucky","patrons","sometimes","find","ice","enjoy","dessert","heurigen","indicate","thathey","open","guests","welcome","displaying","handful","bound","hung","thentrance","door","th_century","customary","guests","bring","along","food","wine","heuriger","make","establishment","profitable","many","places","tavern","leased","tother","winemakers","german","known","gem","shared","among","enjoying","young","wine","simple","food","traditional","music","one","greatest","appeals","heuriger","result","many","establishments","elsewhere","made","look","like","heurigen","fact","licensed","wines","outside","sources","serve","beer","coffee","authentic","heuriger","music","traditionally","part","contributes","greatly","gem","typically","provided","pair","table","table","tip","gratuity","tips","playing","guitar","take","requests","songs","music","vienna","songs","themes","invariably","around","quality","wine","consumption","consequences","vienna","beauty","nostalgia","nostalgic","pasthe","life","suffering","andeath","god","somewhat","lesser","degree","romantic","trying","honor","tradition","music","since","third","man","sensation","anton","earned","living","playing","hans","actor","hans","sang","movies","visitors","germany","hope","hear","songs","native","land","others","try","best","see_also","references_externalinks","wine","culture","vienna","category_types","restaurants_category_types","drinking_establishment_category","wine","terminology","category","austrian","cuisine_category","austrian","wine"],"clean_bigrams":[["file","heuriger"],["thumb","px"],["px","heuriger"],["vienna","heuriger"],["austrian","dialect"],["dialect","pronunciation"],["name","given"],["eastern","austria"],["local","winemaker"],["winemaker","serves"],["alternate","months"],["growing","season"],["shared","among"],["enjoying","young"],["young","wine"],["wine","simple"],["simple","food"],["strau","wirtschaft"],["wirtschaft","strau"],["hanging","athentrance"],["open","heuriger"],["german","language"],["language","austriand"],["austriand","bavarian"],["bavarian","german"],["german","originally"],["simple","open"],["open","air"],["air","tavern"],["people","would"],["would","bring"],["bring","along"],["along","food"],["food","andrink"],["often","situated"],["food","andrinks"],["cider","iserved"],["well","known"],["known","wine"],["wine","growing"],["growing","areas"],["many","eating"],["eating","establishments"],["rustic","interior"],["interior","design"],["design","similar"],["sell","wine"],["outside","sources"],["sources","history"],["august","austrian"],["austrian","emperor"],["emperor","joseph"],["residents","topen"],["topen","establishments"],["serve","self"],["self","produced"],["produced","wine"],["food","could"],["prevent","competition"],["years","well"],["well","known"],["known","areas"],["heurigen","developed"],["region","rust"],["rust","austria"],["austria","rust"],["rust","k"],["similar","establishments"],["establishments","exist"],["wine","producing"],["producing","region"],["austria","known"],["german","speaking"],["speaking","areas"],["areas","atmosphere"],["open","briefly"],["briefly","usually"],["four","month"],["month","season"],["fall","although"],["may","reopen"],["limited","selection"],["selection","ofood"],["evening","meal"],["meal","generally"],["generally","local"],["local","homemade"],["homemade","products"],["products","offered"],["offered","asmall"],["asmall","dishesuch"],["spread","various"],["various","meat"],["cheese","board"],["typical","drinks"],["drinks","found"],["heurigen","include"],["partially","fermented"],["fermented","wine"],["wine","sold"],["sold","athe"],["athe","beginning"],["still","contains"],["fair","amount"],["popular","types"],["austrian","wine"],["also","commonly"],["commonly","found"],["modern","heurigen"],["heurigen","lucky"],["lucky","patrons"],["sometimes","find"],["find","ice"],["dessert","heurigen"],["heurigen","indicate"],["indicate","thathey"],["guests","welcome"],["thentrance","door"],["th","century"],["bring","along"],["along","food"],["many","places"],["leased","tother"],["tother","winemakers"],["german","known"],["shared","among"],["enjoying","young"],["young","wine"],["wine","simple"],["simple","food"],["traditional","music"],["greatest","appeals"],["result","many"],["many","establishments"],["establishments","elsewhere"],["look","like"],["like","heurigen"],["outside","sources"],["serve","beer"],["authentic","heuriger"],["heuriger","music"],["contributes","greatly"],["typically","provided"],["tip","gratuity"],["gratuity","tips"],["tips","playing"],["take","requests"],["songs","themes"],["themes","invariably"],["consequences","vienna"],["nostalgia","nostalgic"],["suffering","andeath"],["somewhat","lesser"],["lesser","degree"],["degree","romantic"],["tradition","music"],["third","man"],["man","sensation"],["sensation","anton"],["actor","hans"],["movies","visitors"],["hear","songs"],["native","land"],["best","see"],["see","also"],["references","externalinks"],["externalinks","wine"],["wine","culture"],["vienna","category"],["category","types"],["restaurants","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","wine"],["wine","terminology"],["terminology","category"],["category","austrian"],["austrian","cuisine"],["cuisine","category"],["category","austrian"],["austrian","wine"]],"all_collocations":["file heuriger","px heuriger","vienna heuriger","austrian dialect","dialect pronunciation","name given","eastern austria","local winemaker","winemaker serves","alternate months","growing season","shared among","enjoying young","young wine","wine simple","simple food","strau wirtschaft","wirtschaft strau","hanging athentrance","open heuriger","german language","language austriand","austriand bavarian","bavarian german","german originally","simple open","open air","air tavern","people would","would bring","bring along","along food","food andrink","often situated","food andrinks","cider iserved","well known","known wine","wine growing","growing areas","many eating","eating establishments","rustic interior","interior design","design similar","sell wine","outside sources","sources history","august austrian","austrian emperor","emperor joseph","residents topen","topen establishments","serve self","self produced","produced wine","food could","prevent competition","years well","well known","known areas","heurigen developed","region rust","rust austria","austria rust","rust k","similar establishments","establishments exist","wine producing","producing region","austria known","german speaking","speaking areas","areas atmosphere","open briefly","briefly usually","four month","month season","fall although","may reopen","limited selection","selection ofood","evening meal","meal generally","generally local","local homemade","homemade products","products offered","offered asmall","asmall dishesuch","spread various","various meat","cheese board","typical drinks","drinks found","heurigen include","partially fermented","fermented wine","wine sold","sold athe","athe beginning","still contains","fair amount","popular types","austrian wine","also commonly","commonly found","modern heurigen","heurigen lucky","lucky patrons","sometimes find","find ice","dessert heurigen","heurigen indicate","indicate thathey","guests welcome","thentrance door","th century","bring along","along food","many places","leased tother","tother winemakers","german known","shared among","enjoying young","young wine","wine simple","simple food","traditional music","greatest appeals","result many","many establishments","establishments elsewhere","look like","like heurigen","outside sources","serve beer","authentic heuriger","heuriger music","contributes greatly","typically provided","tip gratuity","gratuity tips","tips playing","take requests","songs themes","themes invariably","consequences vienna","nostalgia nostalgic","suffering andeath","somewhat lesser","lesser degree","degree romantic","tradition music","third man","man sensation","sensation anton","actor hans","movies visitors","hear songs","native land","best see","see also","references externalinks","externalinks wine","wine culture","vienna category","category types","restaurants category","category types","drinking establishment","establishment category","category wine","wine terminology","terminology category","category austrian","austrian cuisine","cuisine category","category austrian","austrian wine"],"new_description":"file heuriger thumb px heuriger vienna heuriger austrian dialect pronunciation name given tavern eastern austria local winemaker serves alternate months growing season atmosphere gem shared among enjoying young wine simple food strau wirtschaft strau german bush pine hanging athentrance open heuriger abbreviation heuriger year wine german_language austriand bavarian german originally simple open_air tavern premises winemakers people would bring along food_andrink nowadays taverns often situated distance offer food_andrinks apple cider iserved called well_known wine growing areas city vienna many eating establishments rustic interior design similar yethey sell wine buy outside sources history august austrian emperor joseph decree permitted residents topen establishments sell serve self produced wine first food could sold order prevent competition restaurants time restrictions years well_known areas heurigen developed vienna wine_region rust austria rust k similar establishments exist wine producing region elsewhere austria known strau germany_german speaking areas atmosphere heuriger offers limitations open briefly usually weeks four month season fall although may reopen later season wine produced serves wine limited selection ofood evening meal generally local homemade products offered asmall dishesuch spread various meat sausage combinations cheese board typical drinks found heurigen include partially fermented wine sold athe_beginning still contains fair amount one popular types austrian wine also_commonly found modern heurigen lucky patrons sometimes find ice enjoy dessert heurigen indicate thathey open guests welcome displaying handful bound hung thentrance door th_century customary guests bring along food wine heuriger make establishment profitable many places tavern leased tother winemakers german known gem shared among enjoying young wine simple food traditional music one greatest appeals heuriger result many establishments elsewhere made look like heurigen fact licensed wines outside sources serve beer coffee authentic heuriger music traditionally part contributes greatly gem typically provided pair table table tip gratuity tips playing guitar take requests songs music vienna songs themes invariably around quality wine consumption consequences vienna beauty nostalgia nostalgic pasthe life suffering andeath god somewhat lesser degree romantic trying honor tradition music since third man sensation anton earned living playing hans actor hans sang movies visitors germany hope hear songs native land others try best see_also references_externalinks wine culture vienna category_types restaurants_category_types drinking_establishment_category wine terminology category austrian cuisine_category austrian wine"},{"title":"Heywood Guides","description":"image chester heywood guide coverpng thumb right heywood guide to chester heywood s guide was a series of travel guide book s to england scotland wales published in the s by abel heywood of manchester list of heywood guides by geographicoverage list of heywood guides a z aberystwith alderley edge alton towers dove dale c bakewell and the dales of the wye bala north wales bangor and beaumaris barmouth and harlech bath beddgelert belle vue gardens manchester birkenhead new brighton c birmingham blackpool and fleetwood bournemouth bridlington quay brighton bristol and clifton buxton and neighbourhood carnarvon and llanberis castleton derbyshire chatsworth and haddon hall chester coniston and furness abbey dolgelly douglas dover eastbournedinburgh folkstone grimsby and cleethorpes guernsey harrogate and neighljourhood hastings hayfield kinder scout and the peak ilkley bolton abbey c ingleton isle of man isle of wight jersey kenilworth keswick anderwentwater knaresborough leamington liverpoollandudno llangollen and corwen lliuirwst and bettws y coed loch lomond loch katrine and the trossachs london lytham and st anne s on the sea malvern manchester margate marple romiley c matlock bath and matlock bank morecambe and neighbourhood oxford penmaenmawr and conway portsmouth ramsey isle of man ramsgate reading redcar and saltburn by the sea rhyl st asaph abergele c scarborough and neighbourhood snowdon and the glydersouthampton southend essex southport stratford on avon torquay ulverston and morceambe warwick weston super mare weymouth whalley abbey whitby windermere and grasmere worksop and sherwood forest york its antiquities category travel guide books category series of books category publications established in the s category books abouthe united kingdom category tourism in the united kingdom","main_words":["image","chester","heywood","guide","coverpng_thumb","right","heywood","guide","chester","heywood","guide_series","travel_guide_book","england","scotland","wales","published","heywood","manchester","list","heywood","guides","geographicoverage","list","heywood","guides","edge","alton_towers","dove","dale","c","north","wales","bath","belle","gardens","manchester","new","brighton","c","birmingham","blackpool","bournemouth","brighton","bristol","clifton","neighbourhood","derbyshire","hall","chester","abbey","douglas","dover","scout","peak","bolton","abbey","c","isle","man","isle","wight","jersey","coed","loch","loch","london","st","anne","sea","manchester","c","matlock","bath","matlock","bank","neighbourhood","oxford","conway","portsmouth","ramsey","isle","man","reading","redcar","sea","st","c","scarborough","neighbourhood","essex","stratford","avon","torquay","warwick","weston","super","mare","abbey","whitby","windermere","grasmere","forest","york","antiquities","category_travel_guide_books","category_series","books_category","publications_established","category_books","abouthe","united_kingdom","category_tourism","united_kingdom"],"clean_bigrams":[["image","chester"],["chester","heywood"],["heywood","guide"],["guide","coverpng"],["coverpng","thumb"],["thumb","right"],["right","heywood"],["heywood","guide"],["chester","heywood"],["heywood","guide"],["travel","guide"],["guide","book"],["england","scotland"],["scotland","wales"],["wales","published"],["manchester","list"],["heywood","guides"],["geographicoverage","list"],["heywood","guides"],["edge","alton"],["alton","towers"],["towers","dove"],["dove","dale"],["dale","c"],["north","wales"],["gardens","manchester"],["new","brighton"],["brighton","c"],["c","birmingham"],["birmingham","blackpool"],["brighton","bristol"],["hall","chester"],["douglas","dover"],["bolton","abbey"],["abbey","c"],["man","isle"],["wight","jersey"],["coed","loch"],["st","anne"],["c","matlock"],["matlock","bath"],["matlock","bank"],["neighbourhood","oxford"],["conway","portsmouth"],["portsmouth","ramsey"],["ramsey","isle"],["reading","redcar"],["c","scarborough"],["avon","torquay"],["warwick","weston"],["weston","super"],["super","mare"],["abbey","whitby"],["whitby","windermere"],["forest","york"],["antiquities","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"],["category","books"],["books","abouthe"],["abouthe","united"],["united","kingdom"],["kingdom","category"],["category","tourism"],["united","kingdom"]],"all_collocations":["image chester","chester heywood","heywood guide","guide coverpng","coverpng thumb","right heywood","heywood guide","chester heywood","heywood guide","travel guide","guide book","england scotland","scotland wales","wales published","manchester list","heywood guides","geographicoverage list","heywood guides","edge alton","alton towers","towers dove","dove dale","dale c","north wales","gardens manchester","new brighton","brighton c","c birmingham","birmingham blackpool","brighton bristol","hall chester","douglas dover","bolton abbey","abbey c","man isle","wight jersey","coed loch","st anne","c matlock","matlock bath","matlock bank","neighbourhood oxford","conway portsmouth","portsmouth ramsey","ramsey isle","reading redcar","c scarborough","avon torquay","warwick weston","weston super","super mare","abbey whitby","whitby windermere","forest york","antiquities category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established","category books","books abouthe","abouthe united","united kingdom","kingdom category","category tourism","united kingdom"],"new_description":"image chester heywood guide coverpng_thumb right heywood guide chester heywood guide_series travel_guide_book england scotland wales published heywood manchester list heywood guides geographicoverage list heywood guides edge alton_towers dove dale c north wales bath belle gardens manchester new brighton c birmingham blackpool bournemouth brighton bristol clifton neighbourhood derbyshire hall chester abbey douglas dover scout peak bolton abbey c isle man isle wight jersey coed loch loch london st anne sea manchester c matlock bath matlock bank neighbourhood oxford conway portsmouth ramsey isle man reading redcar sea st c scarborough neighbourhood essex stratford avon torquay warwick weston super mare abbey whitby windermere grasmere forest york antiquities category_travel_guide_books category_series books_category publications_established category_books abouthe united_kingdom category_tourism united_kingdom"},{"title":"Highride Adventures","description":"highride adventures is an adventure tourism venture located in te anau new zealand highride adventures runs quad bike tours around the rural farm land ofiordland quad bikes highride adventure quad bike tours are located on the road to milford sound and take riders through the rural and wide habitat of the south island high ride use honda quad bikes on their tours awards and recognition highride adventures was awarded the certificate of excellence by trip advisorecognizing their five staratings for highride adventures also received this award in quad bike rental dubai category adventure travel category companies of new zealand","main_words":["highride","adventures","adventure_tourism","venture","located","anau","new_zealand","highride","adventures","runs","quad","bike","tours","around","rural","farm","land","quad","bikes","highride","adventure","quad","bike","tours","located","road","milford","sound","take","riders","rural","wide","habitat","south","island","high","ride","use","quad","bikes","tours","awards","recognition","highride","adventures","awarded","certificate","excellence","trip","five","staratings","highride","adventures","also","received","award","quad","bike","rental","dubai","category_adventure_travel_category","companies","new_zealand"],"clean_bigrams":[["highride","adventures"],["adventure","tourism"],["tourism","venture"],["venture","located"],["anau","new"],["new","zealand"],["zealand","highride"],["highride","adventures"],["adventures","runs"],["runs","quad"],["quad","bike"],["bike","tours"],["tours","around"],["rural","farm"],["farm","land"],["quad","bikes"],["bikes","highride"],["highride","adventure"],["adventure","quad"],["quad","bike"],["bike","tours"],["milford","sound"],["take","riders"],["wide","habitat"],["south","island"],["island","high"],["high","ride"],["ride","use"],["quad","bikes"],["tours","awards"],["recognition","highride"],["highride","adventures"],["five","staratings"],["highride","adventures"],["adventures","also"],["also","received"],["quad","bike"],["bike","rental"],["rental","dubai"],["dubai","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","companies"],["new","zealand"]],"all_collocations":["highride adventures","adventure tourism","tourism venture","venture located","anau new","new zealand","zealand highride","highride adventures","adventures runs","runs quad","quad bike","bike tours","tours around","rural farm","farm land","quad bikes","bikes highride","highride adventure","adventure quad","quad bike","bike tours","milford sound","take riders","wide habitat","south island","island high","high ride","ride use","quad bikes","tours awards","recognition highride","highride adventures","five staratings","highride adventures","adventures also","also received","quad bike","bike rental","rental dubai","dubai category","category adventure","adventure travel","travel category","category companies","new zealand"],"new_description":"highride adventures adventure_tourism venture located anau new_zealand highride adventures runs quad bike tours around rural farm land quad bikes highride adventure quad bike tours located road milford sound take riders rural wide habitat south island high ride use quad bikes tours awards recognition highride adventures awarded certificate excellence trip five staratings highride adventures also received award quad bike rental dubai category_adventure_travel_category companies new_zealand"},{"title":"HipGuide","description":"hipguide is a city guide founded in by former accenture consultant syl tang over hipsters including various celebritiesuch asarah jessica parker and jay z read it nielsenetratings audited april the internet site also has hipbites an emailed magazine that reports on what s new in the way of hotels bars restaurants and shopping in one of its nine flagship cities additionally the magazine often spotlights other more far flung citiesuch asydney or shanghai and also includes interviews with authorspecial deals foreaders etc one of yahoo s and the bbc s recommended city guides hipguide is read by more than a thousand media outlets amongsthem the new york times vogue magazine vogue the wall street journal harper s bazaar and the financial times hipguide also supply original editorial for a variety of media companies detailing fads and trends new openings fashion fads and son tang herself is involved in consulting dozens of product companies interested in enticing a target audience that like hipguide readers will pay to stay one step ahead of the pack most notably she created a plan to help the state of michigan retain and attractrend setters as part of their cool cities initiative according to google hipguide gets more than million hits per month syl tang is a new york based fads and trends trend tracker and futurist in addition to hipguide she frequently writes for the financial timeshe has also been a columnist and contributor to vogue forbestar magazine am new york the new york times and instyle magazine tang appears as herself in the tv series the house of boateng a show produced by ben silverman who is behind the office us tv series the office ugly betty and the tudors tang was the first american journalisto cover sass bide tang won the wjawards of excellence mediaward tang is the author of disrobed which focuses on the areas of sociology economics and social psychology first published by rowman littlefield in externalinksearch results on ftcom for tang s pieces trend style watch and jewellery articles quest for it a blog interview from fashion week february hipguide interviewed in sportswear international gorkana profile of hipguide jck magazine profile of syl tang and hipguide an interview found on am wgch where syl tang talks about currentrends in fashion tang interviewed on coutorture abouthe influence of blogs tang a fashionable girl aboutown an interviewith tang on ladies who launch about how she started the company allnightclubscom interview of tang about nyc nightlifeatercom on hipguide the bungalow of online city guides if shecky s is a random frat bar in murray hill hipguide lipstick colour by makeup company three custom color category city guides category magazinestablished in category tourismagazines category travel guide books category travel websites","main_words":["hipguide","city_guide","founded","former","consultant","syl","tang","including","various","jessica","parker","jay","read","audited","april","internet","site","also","magazine","reports","new","way","hotels","bars","restaurants","shopping","one","nine","flagship","cities","additionally","magazine","often","far","citiesuch","shanghai","also_includes","interviews","deals","etc","one","yahoo","bbc","recommended","city_guides","hipguide","read","thousand","media","outlets","new_york","times","vogue","magazine","vogue","wall_street_journal","harper","bazaar","financial","times","hipguide","also","supply","original","editorial","variety","media","companies","detailing","fads","trends","new","openings","fashion","fads","son","tang","involved","consulting","dozens","product","companies","interested","target","audience","like","hipguide","readers","pay","stay","one","step","ahead","pack","notably","created","plan","help","state","michigan","retain","part","cool","cities","initiative","according","google","hipguide","gets","million","hits","per","month","syl","tang","new_york","based","fads","trends","trend","addition","hipguide","frequently","writes","financial","also","columnist","contributor","vogue","magazine","new_york","new_york","times","magazine","tang","appears","tv_series","house","show","produced","ben","behind","office","us_tv_series","office","ugly","betty","tang","first_american","cover","tang","excellence","tang","author","focuses","areas","sociology","economics","social","psychology","first_published","results","tang","pieces","trend","style","watch","articles","quest","blog","interview","fashion","week","february","hipguide","interviewed","international","profile","hipguide","magazine","profile","syl","tang","hipguide","interview","found","syl","tang","talks","fashion","tang","interviewed","abouthe","influence","blogs","tang","fashionable","girl","interviewith","tang","ladies","launch","started","company","interview","tang","nyc","hipguide","bungalow","online","city_guides","shecky","random","bar","murray","hill","hipguide","colour","company","three","custom","color","category_city_guides","category_magazinestablished","category_tourismagazines","category_travel_guide_books","category_travel","websites"],"clean_bigrams":[["city","guide"],["guide","founded"],["consultant","syl"],["syl","tang"],["including","various"],["jessica","parker"],["audited","april"],["internet","site"],["site","also"],["hotels","bars"],["bars","restaurants"],["nine","flagship"],["flagship","cities"],["cities","additionally"],["magazine","often"],["also","includes"],["includes","interviews"],["etc","one"],["recommended","city"],["city","guides"],["guides","hipguide"],["thousand","media"],["media","outlets"],["new","york"],["york","times"],["times","vogue"],["vogue","magazine"],["magazine","vogue"],["wall","street"],["street","journal"],["journal","harper"],["financial","times"],["times","hipguide"],["hipguide","also"],["also","supply"],["supply","original"],["original","editorial"],["media","companies"],["companies","detailing"],["detailing","fads"],["trends","new"],["new","openings"],["openings","fashion"],["fashion","fads"],["son","tang"],["consulting","dozens"],["product","companies"],["companies","interested"],["target","audience"],["like","hipguide"],["hipguide","readers"],["stay","one"],["one","step"],["step","ahead"],["michigan","retain"],["cool","cities"],["cities","initiative"],["initiative","according"],["google","hipguide"],["hipguide","gets"],["million","hits"],["hits","per"],["per","month"],["month","syl"],["syl","tang"],["new","york"],["york","based"],["based","fads"],["trends","trend"],["frequently","writes"],["vogue","magazine"],["new","york"],["new","york"],["york","times"],["magazine","tang"],["tang","appears"],["tv","series"],["show","produced"],["office","us"],["us","tv"],["tv","series"],["office","ugly"],["ugly","betty"],["first","american"],["sociology","economics"],["social","psychology"],["psychology","first"],["first","published"],["pieces","trend"],["trend","style"],["style","watch"],["articles","quest"],["blog","interview"],["fashion","week"],["week","february"],["february","hipguide"],["hipguide","interviewed"],["magazine","profile"],["syl","tang"],["interview","found"],["syl","tang"],["tang","talks"],["fashion","tang"],["tang","interviewed"],["abouthe","influence"],["blogs","tang"],["fashionable","girl"],["interviewith","tang"],["online","city"],["city","guides"],["murray","hill"],["hill","hipguide"],["company","three"],["three","custom"],["custom","color"],["color","category"],["category","city"],["city","guides"],["guides","category"],["category","magazinestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","travel"],["travel","websites"]],"all_collocations":["city guide","guide founded","consultant syl","syl tang","including various","jessica parker","audited april","internet site","site also","hotels bars","bars restaurants","nine flagship","flagship cities","cities additionally","magazine often","also includes","includes interviews","etc one","recommended city","city guides","guides hipguide","thousand media","media outlets","new york","york times","times vogue","vogue magazine","magazine vogue","wall street","street journal","journal harper","financial times","times hipguide","hipguide also","also supply","supply original","original editorial","media companies","companies detailing","detailing fads","trends new","new openings","openings fashion","fashion fads","son tang","consulting dozens","product companies","companies interested","target audience","like hipguide","hipguide readers","stay one","one step","step ahead","michigan retain","cool cities","cities initiative","initiative according","google hipguide","hipguide gets","million hits","hits per","per month","month syl","syl tang","new york","york based","based fads","trends trend","frequently writes","vogue magazine","new york","new york","york times","magazine tang","tang appears","tv series","show produced","office us","us tv","tv series","office ugly","ugly betty","first american","sociology economics","social psychology","psychology first","first published","pieces trend","trend style","style watch","articles quest","blog interview","fashion week","week february","february hipguide","hipguide interviewed","magazine profile","syl tang","interview found","syl tang","tang talks","fashion tang","tang interviewed","abouthe influence","blogs tang","fashionable girl","interviewith tang","online city","city guides","murray hill","hill hipguide","company three","three custom","custom color","color category","category city","city guides","guides category","category magazinestablished","category tourismagazines","tourismagazines category","category travel","travel guide","guide books","books category","category travel","travel websites"],"new_description":"hipguide city_guide founded former consultant syl tang including various jessica parker jay read audited april internet site also magazine reports new way hotels bars restaurants shopping one nine flagship cities additionally magazine often far citiesuch shanghai also_includes interviews deals etc one yahoo bbc recommended city_guides hipguide read thousand media outlets new_york times vogue magazine vogue wall_street_journal harper bazaar financial times hipguide also supply original editorial variety media companies detailing fads trends new openings fashion fads son tang involved consulting dozens product companies interested target audience like hipguide readers pay stay one step ahead pack notably created plan help state michigan retain part cool cities initiative according google hipguide gets million hits per month syl tang new_york based fads trends trend addition hipguide frequently writes financial also columnist contributor vogue magazine new_york new_york times magazine tang appears tv_series house show produced ben behind office us_tv_series office ugly betty tang first_american cover tang excellence tang author focuses areas sociology economics social psychology first_published results tang pieces trend style watch articles quest blog interview fashion week february hipguide interviewed international profile hipguide magazine profile syl tang hipguide interview found syl tang talks fashion tang interviewed abouthe influence blogs tang fashionable girl interviewith tang ladies launch started company interview tang nyc hipguide bungalow online city_guides shecky random bar murray hill hipguide colour company three custom color category_city_guides category_magazinestablished category_tourismagazines category_travel_guide_books category_travel websites"},{"title":"Hiroshima Peace Memorial Park","description":"created april status open all year website hiroshima peace memorial park is a memorial park in the center of hiroshima japan it is dedicated to the legacy of hiroshimas the first city in the world to suffer atomic bombings of hiroshimand nagasaki nuclear attack and to the memories of the bomb s direct and indirect victims of whom there may have been as many as the hiroshima peace memorial park was planned andesigned by the japanese architect kenz tange atange lab the location of hiroshima peace memorial park was once the city s busiest downtown commercial and residential districthe park was built on an open field that was created by thexplosion today there are a number of memorials and monuments museums and lecture halls which draw over a million visitors annually the annual august hiroshima peace memorial ceremony peace memorial ceremony which isponsored by the city of hiroshima is also held in the park the purpose of the peace memorial park is to not only memorialize the victims but also to establish the memory of nuclear horrors and advocate world peace notable symbols file old and newjpg thumb px the a bomb dome a bomb dome the a bomb dome is the skeletal ruins of the former hiroshima prefectural industrial promotion hall it is the building closesto the hypocenter of the atomic bombings of hiroshimand nagasaki nuclear bomb that remained at least partially standing it was left how it was after the bombing in memory of the casualties the a bomb dome to which a sense of sacredness and transcendence has been attributed isituated in a distant ceremonial view that is visible from the peace memorial park s central cenotaph it is an officially designated site of memory for the nation s and humanity s collectively shared heritage of catastrophe the a bomb dome was added to the unesco world heritage site world heritage list on december unesco world heritage sites hiroshima peace memorial many a bomb survivors and hiroshima citizens were pushing for the a bomb dome to be registered as a world heritage site as it was a symbol of horror and nuclear weapons and humankind s pledge for peace this collective petition fromany citizens groups was finally given influence when the japanese government officially recommended the dome to the world heritage site committee in december a marker was placed on the a bomb dome on april by hiroshima city it reads children s peace monumenthe children s peace monument is a statue dedicated to the memory of the children who died as a result of the bombing the statue is of a girl with outstretched arms with a origami folded paper crane rising above her the statue is based on the true story of a youngirl who died from radiation from the bomb she believed that if she folded paper craneshe would be cured to this day people mostly children from around the world fold cranes and send them to hiroshima where they are placed near the statue the statue has a continuously replenished collection ofolded cranes nearby file hiroshima resthouse jpg thumb px the rest house of hiroshima peace park rest house the rest house of hiroshima peace park is another atomic bombed building in the park the building was built as the taishoya kimono shop in march it was used as a fuel distribution station when the shortage ofuel began in june on august when the bomb exploded the roof was crushed the interior destroyed and everything consumable burned except in the basement eventually people in the building died of the bombing year old eizo nomura survived in the basement whichad a concrete roof through which radiation had a more difficultime penetrating he survived into his in june as world war ll intensified and economicontrols became increasingly stringenthe building was purchased by the prefectural fuel rationing union it wasited approximately meters from the hypocenter at am on augusthexplosion of the atomic bomb about meters above the hypocenter destroyed the building s concrete roof the interior was also badly damaged and gutted by ensuing fires and everyone inside was killed except nomura who miraculously survived the building was restored soon after the war and used as the fuel hall in the hiroshima east reconstruction office which became the core the city s reconstruction program was established there the former nakajima district which today is peace memorial park was a prominent business quarter of the city during thearlyears of the showa period the nakajima district one of hiroshima s liveliest districts of the time had been the site of many wooden two story structures but in the three story taishoya kimono shop was constructed surrounded by shops and movie theaters it wasaid that if you went up to the roof a panoramic view of the city awaited file the basement of the rest housejpg thumb the basement of the rest house in the kimono shop was closed and became the fuel hall athe time of the bombing people were working there all of them perished withexception of nomura who had gone down to the basement athat moment and survived the bombing although the building was heavily damaged it stood still and was renovated soon after the war including a newooden roof eizo nomura who was then was the sole survivor in the building after the atomic bomb was dropped about meters northeast of the building he was a worker for the hiroshima prefectural fuel rationing union when the a bomb exploded in the sky he was in the basement retrieving some documents all other employees working in the building athatime were instantly killed by the blast nomura managed to escape through rising fire and vigorousmoke however after hisurvival he struggled withigh fever diarrhea bleedingums and other symptoms caused by the radiation after the war the hiroshima municipal government purchased the building and established a postwarecovery office in itoday it is used as the rest house in peace memorial park the rest house has been in debates many times over whether or not it should be preserved in the city decided to demolish the building buthe plan was put aside one of the reasons was because of the announcement of the a bomb dome as a world heritage site currently the first floor of the rest house is used as a tourist information office and a souvenir shop the second third floors as offices and the basement is preserved nearly as it was athe time of the bombing hiroshima peace memorial ceremony everyear on august a bomb day the city of hiroshima holds the hiroshima peace memorial ceremony to console the victims of the atomic bombs and to pray for the realization of lasting world peace the ceremony is held in the morning from in front of the memorial cenotaph with many citizens including the families of the deceaseduring the ceremony a one minute silence to honor the victims is observed athe time of the atomic bomb s explosion peace memorial ceremony peace memorial ceremony program lantern ceremony file hiroshima lantern festivaljpeg thumb drifting lanterns in thevening of the same day t r nagashi lantern ceremony is held to send off the spirits of the victims on lanterns with peace messages floating on the waters of the motoyasu river peace messages and lantern ceremony file hiroshima peace memorial museum jpg thumb px the main building of hiroshima peace memorial museum hiroshima peace memorial museum the hiroshima peace memorial museum is the primary museum in the park dedicated to educating visitors abouthe bomb the museum has exhibits and information covering the buildup to war the role of hiroshima in the war up to the bombing and extensive information the bombing and its effects along with substantial memorabiliand pictures from the bombing the building also has views of the memorial cenotaph peace flame and a bomb dome file international conferencenter hiroshima jpg righthumb px international conferencenter hiroshima international conferencenter hiroshima international conferencenter hiroshima is in the peace park west side of the main building of the hiroshima peace memorial museum file hiroshima national peace memorial hall for the atomic bomb victims jpg righthumb px hall of remembrance hiroshima national peace memorial hall the hiroshima national peace memorial hall for the atomic bomb victims is an effort by the japanese national governmento remember and mourn the sacred sacrifice of the atomic bomb victims it is also an expression of japan s desire for genuine and lasting peace the hall contains a number of displays on the roof near thentrance the museum is underground is a clock frozen athe time the bomb went off the museum contains a seminaroom library temporary exhibition areand victims information area the hall of remembrance contains a degree panorama of the destroyed hiroshima recreated using tiles the number of peoplestimated to have died from the bomby thend ofile cenotaphiroshimajpg righthumb px the memorial cenotaph memorial cenotaph near the center of the park is a concrete saddle shaped monumenthat covers a cenotapholding the names of all of the people killed by the bomb the monument is aligned to frame the peace flame and the a bomb dome the memorial cenotaph was one of the first memorial monuments built on open field on augusthe arch shape represents a shelter for the souls of the victims cenotaph for the a bomb victims the cenotaph carries thepitaph which means please rest in peace for we they shall not repeatherror in japanese the sentence subject is pro drop language omitted thus it could be interpreted as either we shall not repeatherror as they shall not repeatherror this was intended to memorialize the victims of hiroshima without politicizing the issue taking advantage of the facthat honorific speech in japanese polite japanese speech typically demands lexical ambiguity in the first place the japanese mind understanding contemporary japanese cultured by roger j davies and osamu ikeno rutland vermontuttle publishing thepitaph was written by tadayoshi saika professor of english literature at hiroshima university give peace a chance yoshihisa hagiwara east asian perspectives on politics the center of governance for civil society keio university he also provided thenglish translation let all the souls herest in peace for we shall not repeathevil onovember an explanation plaque in english was added in order to convey professor saika s intenthat we refers to all humanity not specifically the japanese or americans and thatherror is thevil of war perhaps unsurprisingly the ambiguity of the phrase has the potential toffend some right wing circles in japan have interpreted the words as an admission of guilt implicitly reading it as we the japanese people shall not repeatherror and they criticize thepitaph as a self accusation by the japanesempire in july the cenotaph was vandalized by a year old japanese affiliated withe japanese rightist destroys reference to japan s mistake at hiroshima memorial file peace flame and museumjpg righthumb px peace flame withe peace memorial museum in the background peace flame the peace flame is another monumento the victims of the bomb that destroyed hiroshima but it has an additional symbolic purpose the flame has burned continuously since it was lit in and will remain lit until all nuclear bombs on the planet are destroyed and the planet is free from the threat of nuclear annihilation file hiroshima peace belljpg righthumb px a schoolgirl rings the peace bell in the hiroshima peace park peace bells there are three peace bells in the peace park the smaller one is used only for the peace memorial ceremony excepthat day it is displayed in theast building of hiroshima peace memorial museum the more well known peace bell stands near the children s peace monument and consists of a large japanese bell hanging inside a small open sided structure visitors arencouraged to ring the bell for world peace and the loud and melodious tolling of this bell rings out regularly throughouthe peace park peace bell in hiroshima peace memorial park the peace bell was built out in the open on september the surface of the bell is a map of the world and the sweet spot is an atomic symbol designed by masahiko katori cast by oigo bell works in takaoka toyama the inscriptions on the bell are in greek language greek japanese language japanese and sanskrit is translated as know yourself the greek embassy donated the bell to the peace park and picked outhe most appropriate ancient greek philosophical quote of socrates the sanskrit was translated by the indian ambassador and the japanese by a university lecturer file atomic bomb memorial moundjpg thumb px atomic bomb memorial mound atomic bomb memorial mound the atomic bomb memorial mound is a large grass covered knoll that contains the cremated ashes of unidentified victims of the bomb cenotaph for korean victims among the people who were killed or exposed to lethal post explosion radiation at least were koreans korean buthe number is uncertain because the population has beeneglected as the minority additionally survivors of hiroshimand nagasaki returned to koreafter liberation from the korea under japanese rule japanese colonialism the monument beautified with koreanational symbols is intended to honour korean victims and survivors of the atomic bomb and japanese colonialism the monument s inscription reads the monument in memory of the korean victims of the a tomic bomb in memory of the souls of his highness prince yi wu and over other souls while the side inscription readsouls of the dead ride to heaven on the backs of turtles file peace gatesjpg righthumb px the gates of peace gates of peace added in this monument contains ten gates covered withe word peace in languages from around the world the gates represent inferno dante the nine circles of hell the nine circles of hell plus one the living hell of hiroshima caused by the atomic bombingates of peace hiroshima prefectureach gate is meters high and meters wide the word peace in languages on the gates of peace designed by clara halter designed by jean michel wilmotte file hiroshimamobilizedstudents jpg thumb px memorial tower to the mobilized students memorial tower to the mobilized students the association for the mobilized student victims of hiroshima prefecture builthis tower in may in order to console the souls of over students including those who were atomic bomb victims who died in bombings during the pacific war in hiroshima there were students who were mobilized of which were killed in the atomic bombing the memorial is twelve meters tall five stories and is decorated withe goddess of peace as well as eight doves which are placed around the tower to the sides of the tower are plaques which depicthe work thathe students did such as factory work female studentsewing or showing students working to increase food production there is a plaque in front of the tower whichas two buttons that narrate the background information in either japanese or english file a bomb dome hiroshima sunsetjpg righthumb px a bomb dome at sunset file hiroshima pond of peacejpg thumb px hiroshima pond of peace file hiroshimastatuefountainmuseum jpg righthumb px statue of mother and child in the storm fountain of prayer other monuments pond of peacencircling the cenotaph peace clock tower a bombed gravestone of jisenji temple the temple used to be there peace fountain hiroshima peace fountain monumento the old aioi bridge phoenix trees exposed to the a bomb also known as chinese parasols these trees have deep scars from the blasthey were moved here from the courtyard of the former hiroshima postelecommunications office in petersen david conti mandy survivors the a bombed trees of hiroshima lulu press morrisville nc linden tree monument hair monument hiroshima city zero milestone peace cairn stone lantern of peace friendship monument peace memorial post peace tower hiroshima peace tower fountain of prayer a small fountain pond monument of prayer monument for peace prayer haiku monument for peace hiroshima monument for the a bomb victimstatue of mother and child in the storm peace watch tower indicating the number of daysince the a bomb statue of peace new leaves from the words of hideki yukawa drhideki yukawa designed carved by katsuzo entsuba statue of merciful mother statue of a prayer for peace the figure of the merciful goddess of peace kannon mobilized students merciful kannon monument hiroshima second middle school a bomb memorial monument memorial monument of the hiroshima municipal commercial and shipbuilding industry schools monumento the a bombed teachers and students of national elementary schools a bomb monument of the hiroshima municipal girl s high school monument dedicated to sankichi t ge monumento tamiki hara literary monument dedicated to miekichi suzuki monument in memory of marcel junodrmarcel junod clock commemorating the repatriation of those who chose to return to the democratic people s republic of korea monument of the former north tenjin cho area monument of the former south tenjin cho area monument of the former zaimoku cho memorial tower for a bomb related victims memorial tower to console a bomb victims monument in memory of the korean victims of the a bomb monument of the volunteer army corps monument of zensonpo all japanonlife insurance labor union monumento those who died from the ch goku shikoku public works office monument of the hiroshima district lumber control corporation monument dedicated to construction workers and artisans monumento themployees of the hiroshima post office monument of the hiroshima gas corporation monumento themployees of the coal control related company monument for the a bomb victims from the hiroshimagricultural association monumento mr norman cousins monument of us pows at former chugoku mp hq file hana no to jpg thumb px flower of hiroshima flower festival hiroshima flower festival hiroshima flower festival is held from rd to may duringolden week japanese golden week in the peace park and peace boulevard hiroshima peace boulevard hiroshima dreamination hiroshima dreamination is held in winter file hiroden atomic bomb dome stationjpg thumb px hiroden genbaku dome mae station hiroshima peace memorial park bustop hiroden genbaku dome mae station hiroden chuden mae station astram line astram hond ri station astram line hond ri station file honkawa elementary school peace museum jpg thumb px honkawa elementary school peace museum atomic bombed former school building see also hiroshima peace memorial atomic bomb dome hiroshima peace memorial museum atomic bombings of hiroshimand nagasaki sadako sasaki children s peace monument hiroshima national peace memorial hall for the atomic bomb victims hiroshima peace memorial ceremony hiroshima witness nagasaki peace park norman cousins marcel junod peace boulevard hiroshima peace boulevard honkawa elementary school peace museum fukuromachi elementary school peace museum externalinks hiroshima peace memorial museum guide to peace memorial park hiroshima national peace memorial hall for the atomic bomb victims hiroshima peace camp hiroshima peace memorial park blog in japanese peace message lantern ceremony us attending hiroshima memorial video report by democracy now category monuments and memorials in japan category parks and gardens in hiroshima category peace parks category peace monuments and memorials category world war ii memorials in japan category monuments associated withe atomic bombings of hiroshimand nagasaki p category atomic tourism","main_words":["created","april","status","open","year","website","hiroshima_peace_memorial","park","center","hiroshima","japan","dedicated","legacy","first","city","world","suffer","atomic_bombings","hiroshimand_nagasaki","nuclear","attack","memories","bomb","direct","indirect","victims","may","many","hiroshima_peace_memorial","park","planned","andesigned","japanese","architect","lab","location","hiroshima_peace_memorial","park","city","busiest","downtown","commercial","residential","districthe","park","built","open","field","created","thexplosion","today","number","memorials","monuments","museums","lecture","halls","draw","million_visitors","annually","annual","august","hiroshima_peace_memorial","ceremony","peace_memorial","ceremony","isponsored","city","hiroshima","also","held","park","purpose","peace_memorial","park","victims","also","establish","memory","nuclear","advocate","world","peace","notable","symbols","file","old","thumb","px","bomb_dome","bomb_dome","bomb_dome","ruins","former","hiroshima","industrial","promotion","hall","building","hypocenter","atomic_bombings","hiroshimand_nagasaki","nuclear","bomb","remained","least","partially","standing","left","bombing","memory","casualties","bomb_dome","sense","attributed","isituated","distant","ceremonial","view","visible","peace_memorial","park","central","cenotaph","officially","designated","site","memory","nation","humanity","collectively","shared","heritage","bomb_dome","added","unesco_world_heritage_site","world_heritage","list","december","hiroshima_peace_memorial","many","bomb","survivors","hiroshima","citizens","pushing","bomb_dome","registered","world_heritage_site","symbol","horror","nuclear_weapons","peace","collective","petition","fromany","citizens","groups","finally","given","influence","japanese","government","officially","recommended","dome","world_heritage_site","committee","december","marker","placed","bomb_dome","april","hiroshima","city","reads","children","peace","monumenthe","children","peace","monument","statue","dedicated","memory","children","died","result","bombing","statue","girl","arms","origami","folded","paper","crane","rising","statue","based","true","story","died","radiation","bomb","believed","folded","paper","would","cured","day","people","mostly","children","around","world","fold","send","hiroshima","placed","near","statue","statue","continuously","collection","nearby","file","hiroshima","jpg","thumb","px","rest","house","hiroshima_peace","park","rest","house","rest","house","hiroshima_peace","park","another","building","park","building_built","shop","march","used","fuel","distribution","station","shortage","ofuel","began","june","august","bomb","exploded","roof","crushed","interior","destroyed","everything","burned","except","basement","eventually","people","building","died","bombing","year_old","nomura","survived","basement","whichad","concrete","roof","radiation","survived","june","world_war","intensified","became_increasingly","building","purchased","fuel","union","approximately","meters","hypocenter","atomic_bomb","meters","hypocenter","destroyed","building","concrete","roof","interior","also","badly","damaged","fires","everyone","inside","killed","except","nomura","survived","building","restored","soon","war","used","fuel","hall","hiroshima","east","reconstruction","office","became","core","city","reconstruction","program","established","former","district","today","peace_memorial","park","prominent","business","quarter","city","thearlyears","period","district","one","hiroshima","districts","time","site","many","wooden","two","story","structures","three","story","shop","constructed","surrounded","shops","movie_theaters","wasaid","went","roof","panoramic","view","city","awaited","file","basement","rest","thumb","basement","rest","house","shop","closed","became","fuel","hall","athe_time","bombing","people_working","withexception","nomura","gone","basement","athat","moment","survived","bombing","although","building","heavily","damaged","stood","still","renovated","soon","war","including","roof","nomura","sole","building","atomic_bomb","dropped","meters","northeast","building","worker","hiroshima","fuel","union","bomb","exploded","sky","basement","documents","employees","working","building","athatime","instantly","killed","blast","nomura","managed","escape","rising","fire","however","struggled","withigh","fever","diarrhea","symptoms","caused","radiation","war","hiroshima","municipal","government","purchased","building","established","office","used","rest","house","peace_memorial","park","rest","house","debates","many_times","whether","preserved","city","decided","building","buthe","plan","put","aside","one","reasons","announcement","bomb_dome","world_heritage_site","currently","first","floor","rest","house","used","tourist_information","office","souvenir","shop","second","third","floors","offices","basement","preserved","nearly","athe_time","bombing","hiroshima_peace_memorial","ceremony","everyear","august","bomb","day","city","hiroshima","holds","hiroshima_peace_memorial","ceremony","console","victims","pray","realization","lasting","world","peace","ceremony","held","morning","front","memorial","cenotaph","many","citizens","including","families","ceremony","one","minute","honor","victims","observed","athe_time","atomic_bomb","explosion","peace_memorial","ceremony","peace_memorial","ceremony","program","lantern","ceremony","file","hiroshima","lantern","thumb","thevening","day","r","lantern","ceremony","held","send","spirits","victims","peace","messages","floating","waters","river","peace","messages","lantern","ceremony","file","hiroshima_peace_memorial","museum","jpg","thumb","px","main_building","hiroshima_peace_memorial","museum","hiroshima_peace_memorial","museum","hiroshima_peace_memorial","museum","primary","museum","park","dedicated","educating","visitors","abouthe","bomb","museum","exhibits","information","covering","buildup","war","role","hiroshima","war","bombing","extensive","information","bombing","effects","along","substantial","pictures","bombing","building","also","views","memorial","cenotaph","peace","flame","bomb_dome","file","international","conferencenter","hiroshima","jpg_righthumb","px","international","conferencenter","hiroshima","international","conferencenter","hiroshima","international","conferencenter","hiroshima_peace","park","west","side","main_building","hiroshima_peace_memorial","museum","file","hiroshima","national","peace_memorial","hall","atomic_bomb","victims","jpg_righthumb","px","hall","remembrance","hiroshima","national","peace_memorial","hall","hiroshima","national","peace_memorial","hall","atomic_bomb","victims","effort","japanese","national","governmento","remember","sacred","atomic_bomb","victims","also","expression","japan","desire","genuine","lasting","peace","hall","contains","number","displays","roof","near","thentrance","museum","underground","clock","frozen","athe_time","bomb","went","museum","contains","library","temporary","exhibition","areand","victims","information","area","hall","remembrance","contains","degree","panorama","destroyed","hiroshima","using","number","died","thend","righthumb_px","memorial","cenotaph","memorial","cenotaph","near","center","park","concrete","saddle","shaped","covers","names","people","killed","bomb","monument","aligned","frame","peace","flame","bomb_dome","memorial","cenotaph","one","first","memorial","monuments","built","open","field","augusthe","arch","shape","represents","shelter","souls","victims","cenotaph","bomb_victims","cenotaph","carries","means","please","rest","peace","shall","repeatherror","japanese","sentence","subject","pro","drop","language","thus","could","interpreted","either","shall","repeatherror","shall","repeatherror","intended","victims","hiroshima","without","issue","taking","advantage","facthat","honorific","speech","japanese","polite","japanese","speech","typically","demands","first","place","japanese","mind","understanding","contemporary","japanese","roger","j","davies","rutland","publishing","written","professor","english","literature","hiroshima","university","give","peace","chance","east_asian","perspectives","politics","center","governance","civil","society","university","also_provided","thenglish","translation","let","souls","peace","shall","onovember","explanation","plaque","english","added","order","convey","professor","refers","humanity","specifically","japanese","americans","war","perhaps","phrase","potential","right","wing","circles","japan","interpreted","words","admission","reading","japanese","people","shall","repeatherror","self","july","cenotaph","year_old","japanese","affiliated","withe","japanese","reference","japan","mistake","hiroshima","memorial","file","peace","flame","museumjpg","righthumb_px","peace","flame","withe","peace_memorial","museum","background","peace","flame","peace","flame","another","monumento","victims","bomb","destroyed","hiroshima","additional","symbolic","purpose","flame","burned","continuously","since","lit","remain","lit","nuclear","bombs","planet","destroyed","planet","free","threat","nuclear","file","hiroshima_peace","righthumb_px","rings","peace","bell","hiroshima_peace","park","peace","bells","three","peace","bells","peace_park","smaller","one","used","peace_memorial","ceremony","day","displayed","theast","building","hiroshima_peace_memorial","museum","well_known","peace","bell","stands","near","children","peace","monument","consists","large","japanese","bell","hanging","inside","small","open","structure","visitors","arencouraged","ring","bell","world","peace","loud","bell","rings","regularly","throughouthe","peace_park","peace","bell","hiroshima_peace_memorial","park","peace","bell","built","open","september","surface","bell","map","world","sweet","spot","atomic","symbol","designed","cast","bell","works","bell","greek","language","greek","japanese","language","japanese","sanskrit","translated","know","greek","embassy","donated","bell","peace_park","picked","outhe","appropriate","ancient_greek","philosophical","quote","sanskrit","translated","indian","ambassador","japanese","university","lecturer","file","atomic_bomb","memorial","thumb","px","atomic_bomb","memorial","atomic_bomb","memorial","atomic_bomb","memorial","large","grass","covered","contains","ashes","victims","bomb","cenotaph","korean","victims","among","people","killed","exposed","post","explosion","radiation","least","koreans","korean","buthe","number","uncertain","population","minority","additionally","survivors","hiroshimand_nagasaki","returned","liberation","korea","japanese","rule","japanese","colonialism","monument","symbols","intended","honour","korean","victims","survivors","atomic_bomb","japanese","colonialism","monument","reads","monument","memory","korean","victims","bomb","memory","souls","highness","prince","souls","side","dead","ride","heaven","backs","file","peace","righthumb_px","gates","peace","gates","peace","added","monument","contains","ten","gates","covered","withe","word","peace","languages","around","world","gates","represent","nine","circles","hell","nine","circles","hell","plus","one","living","hell","hiroshima","caused","atomic","peace","hiroshima","gate","meters","high","meters","wide","word","peace","languages","gates","peace","designed","designed","jean","michel","file_jpg","thumb","px","memorial","tower","mobilized","students","memorial","tower","mobilized","students","association","mobilized","student","victims","hiroshima","prefecture","tower","may","order","console","souls","students","including","atomic_bomb","victims","died","bombings","pacific","war","hiroshima","students","mobilized","killed","atomic_bombing","memorial","twelve","meters","tall","five","stories","decorated","withe","peace","well","eight","placed","around","tower","sides","tower","work","thathe","students","factory","work","female","showing","students","working","increase","food","production","plaque","front","tower","whichas","two","background","information","either","japanese","english","file","bomb_dome","hiroshima","righthumb_px","bomb_dome","sunset","file","hiroshima","pond","thumb","px","hiroshima","pond","peace","px","statue","mother","child","storm","fountain","prayer","monuments","pond","cenotaph","peace","clock","tower","bombed","temple","temple","used","peace","fountain","hiroshima_peace","fountain","monumento","old","bridge","phoenix","trees","exposed","bomb","also_known","chinese","trees","deep","moved","courtyard","former","hiroshima","office","david","survivors","bombed","trees","hiroshima","press","tree","monument","hair","monument","hiroshima","city","zero","milestone","peace","stone","lantern","peace","friendship","monument","peace_memorial","post","peace","tower","hiroshima_peace","tower","fountain","prayer","small","fountain","pond","monument","prayer","monument","peace","prayer","monument","peace","hiroshima","monument","bomb","mother","child","storm","peace","watch","tower","indicating","number","bomb","statue","peace","new","leaves","words","designed","carved","statue","mother","statue","prayer","peace","figure","peace","mobilized","students","monument","hiroshima","second","middle","school","bomb","memorial","monument","memorial","monument","hiroshima","municipal","commercial","industry","schools","monumento","bombed","teachers","students","national","elementary_schools","bomb","monument","hiroshima","municipal","girl","high_school","monument","dedicated","monumento","literary","monument","dedicated","monument","memory","marcel","clock","commemorating","repatriation","chose","return","democratic","people","republic","korea","monument","former","north","cho","area","monument","former","south","cho","area","monument","former","cho","memorial","tower","bomb","related","victims","memorial","tower","console","bomb_victims","monument","memory","korean","victims","bomb","monument","volunteer","army","corps","monument","insurance","labor","union","monumento","died","public","works","office","monument","hiroshima","district","control","corporation","monument","dedicated","construction","workers","artisans","monumento","hiroshima","post_office","monument","hiroshima","gas","corporation","monumento","coal","control","related","company","monument","bomb_victims","association","monumento","norman","cousins","monument","us","former","file_jpg","thumb","px","flower","hiroshima","flower","festival","hiroshima","flower","festival","hiroshima","flower","festival","held","may","week","japanese","golden","week","peace_park","peace","boulevard","hiroshima_peace","boulevard","hiroshima","hiroshima","held","winter","file","hiroden","atomic_bomb","dome","stationjpg","thumb","px","hiroden","dome","mae","station","hiroshima_peace_memorial","park","hiroden","dome","mae","station","hiroden","mae","station","line","station","line","station","file","elementary_school","peace","museum","jpg","thumb","px","elementary_school","peace","museum","former","school","building","see_also","hiroshima_peace_memorial","atomic_bomb","dome","hiroshima_peace_memorial","museum","atomic_bombings","hiroshimand_nagasaki","children","peace","monument","hiroshima","national","peace_memorial","hall","atomic_bomb","victims","hiroshima_peace_memorial","ceremony","hiroshima","witness","nagasaki","peace_park","norman","cousins","marcel","peace","boulevard","hiroshima_peace","boulevard","elementary_school","peace","museum","elementary_school","peace","museum","externalinks","hiroshima_peace_memorial","museum","guide","peace_memorial","park","hiroshima","national","peace_memorial","hall","atomic_bomb","victims","hiroshima_peace","camp","hiroshima_peace_memorial","park","blog","japanese","peace","message","lantern","ceremony","us","attending","hiroshima","memorial","video","report","democracy","category","monuments","memorials","japan_category","parks","gardens","hiroshima","category","category","peace","monuments","memorials","category","world_war","ii","memorials","japan_category","monuments","associated_withe","atomic_bombings","hiroshimand_nagasaki","p","category_atomic_tourism"],"clean_bigrams":[["created","april"],["april","status"],["status","open"],["year","website"],["website","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["memorial","park"],["hiroshima","japan"],["first","city"],["suffer","atomic"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","nuclear"],["nuclear","attack"],["indirect","victims"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["planned","andesigned"],["japanese","architect"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["busiest","downtown"],["downtown","commercial"],["residential","districthe"],["districthe","park"],["open","field"],["thexplosion","today"],["monuments","museums"],["lecture","halls"],["million","visitors"],["visitors","annually"],["annual","august"],["august","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","ceremony"],["ceremony","peace"],["peace","memorial"],["memorial","ceremony"],["also","held"],["peace","memorial"],["memorial","park"],["advocate","world"],["world","peace"],["peace","notable"],["notable","symbols"],["symbols","file"],["file","old"],["thumb","px"],["bomb","dome"],["bomb","dome"],["bomb","dome"],["former","hiroshima"],["industrial","promotion"],["promotion","hall"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","nuclear"],["nuclear","bomb"],["least","partially"],["partially","standing"],["bomb","dome"],["attributed","isituated"],["distant","ceremonial"],["ceremonial","view"],["peace","memorial"],["memorial","park"],["central","cenotaph"],["officially","designated"],["designated","site"],["collectively","shared"],["shared","heritage"],["bomb","dome"],["unesco","world"],["world","heritage"],["heritage","site"],["site","world"],["world","heritage"],["heritage","list"],["december","unesco"],["unesco","world"],["world","heritage"],["heritage","sites"],["sites","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","many"],["bomb","survivors"],["hiroshima","citizens"],["bomb","dome"],["world","heritage"],["heritage","site"],["nuclear","weapons"],["collective","petition"],["petition","fromany"],["fromany","citizens"],["citizens","groups"],["finally","given"],["given","influence"],["japanese","government"],["government","officially"],["officially","recommended"],["world","heritage"],["heritage","site"],["site","committee"],["bomb","dome"],["hiroshima","city"],["reads","children"],["peace","monumenthe"],["monumenthe","children"],["peace","monument"],["statue","dedicated"],["origami","folded"],["folded","paper"],["paper","crane"],["crane","rising"],["true","story"],["folded","paper"],["day","people"],["people","mostly"],["mostly","children"],["world","fold"],["placed","near"],["nearby","file"],["file","hiroshima"],["hiroshima","jpg"],["jpg","thumb"],["thumb","px"],["rest","house"],["hiroshima","peace"],["peace","park"],["park","rest"],["rest","house"],["rest","house"],["hiroshima","peace"],["peace","park"],["another","atomic"],["atomic","bombed"],["bombed","building"],["fuel","distribution"],["distribution","station"],["shortage","ofuel"],["ofuel","began"],["bomb","exploded"],["interior","destroyed"],["burned","except"],["basement","eventually"],["eventually","people"],["building","died"],["bombing","year"],["year","old"],["nomura","survived"],["basement","whichad"],["concrete","roof"],["world","war"],["became","increasingly"],["approximately","meters"],["atomic","bomb"],["hypocenter","destroyed"],["concrete","roof"],["also","badly"],["badly","damaged"],["everyone","inside"],["killed","except"],["except","nomura"],["nomura","survived"],["restored","soon"],["fuel","hall"],["hiroshima","east"],["east","reconstruction"],["reconstruction","office"],["reconstruction","program"],["peace","memorial"],["memorial","park"],["prominent","business"],["business","quarter"],["district","one"],["many","wooden"],["wooden","two"],["two","story"],["story","structures"],["three","story"],["constructed","surrounded"],["movie","theaters"],["panoramic","view"],["city","awaited"],["awaited","file"],["rest","house"],["fuel","hall"],["hall","athe"],["athe","time"],["bombing","people"],["basement","athat"],["athat","moment"],["bombing","although"],["heavily","damaged"],["stood","still"],["renovated","soon"],["war","including"],["atomic","bomb"],["meters","northeast"],["bomb","exploded"],["employees","working"],["building","athatime"],["instantly","killed"],["blast","nomura"],["nomura","managed"],["rising","fire"],["struggled","withigh"],["withigh","fever"],["fever","diarrhea"],["symptoms","caused"],["hiroshima","municipal"],["municipal","government"],["government","purchased"],["rest","house"],["peace","memorial"],["memorial","park"],["park","rest"],["rest","house"],["debates","many"],["many","times"],["city","decided"],["building","buthe"],["buthe","plan"],["put","aside"],["aside","one"],["bomb","dome"],["world","heritage"],["heritage","site"],["site","currently"],["first","floor"],["rest","house"],["tourist","information"],["information","office"],["souvenir","shop"],["second","third"],["third","floors"],["preserved","nearly"],["athe","time"],["bombing","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","ceremony"],["ceremony","everyear"],["bomb","day"],["hiroshima","holds"],["hiroshima","peace"],["peace","memorial"],["memorial","ceremony"],["atomic","bombs"],["lasting","world"],["world","peace"],["memorial","cenotaph"],["many","citizens"],["citizens","including"],["one","minute"],["observed","athe"],["athe","time"],["atomic","bomb"],["explosion","peace"],["peace","memorial"],["memorial","ceremony"],["ceremony","peace"],["peace","memorial"],["memorial","ceremony"],["ceremony","program"],["program","lantern"],["lantern","ceremony"],["ceremony","file"],["file","hiroshima"],["hiroshima","lantern"],["lantern","ceremony"],["peace","messages"],["messages","floating"],["river","peace"],["peace","messages"],["lantern","ceremony"],["ceremony","file"],["file","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","jpg"],["jpg","thumb"],["thumb","px"],["main","building"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["primary","museum"],["park","dedicated"],["educating","visitors"],["visitors","abouthe"],["abouthe","bomb"],["information","covering"],["extensive","information"],["effects","along"],["building","also"],["memorial","cenotaph"],["cenotaph","peace"],["peace","flame"],["bomb","dome"],["dome","file"],["file","international"],["international","conferencenter"],["conferencenter","hiroshima"],["hiroshima","jpg"],["jpg","righthumb"],["righthumb","px"],["px","international"],["international","conferencenter"],["conferencenter","hiroshima"],["hiroshima","international"],["international","conferencenter"],["conferencenter","hiroshima"],["hiroshima","international"],["international","conferencenter"],["conferencenter","hiroshima"],["hiroshima","peace"],["peace","park"],["park","west"],["west","side"],["main","building"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","file"],["file","hiroshima"],["hiroshima","national"],["national","peace"],["peace","memorial"],["memorial","hall"],["atomic","bomb"],["bomb","victims"],["victims","jpg"],["jpg","righthumb"],["righthumb","px"],["px","hall"],["remembrance","hiroshima"],["hiroshima","national"],["national","peace"],["peace","memorial"],["memorial","hall"],["hiroshima","national"],["national","peace"],["peace","memorial"],["memorial","hall"],["atomic","bomb"],["bomb","victims"],["japanese","national"],["national","governmento"],["governmento","remember"],["atomic","bomb"],["bomb","victims"],["lasting","peace"],["hall","contains"],["roof","near"],["near","thentrance"],["clock","frozen"],["frozen","athe"],["athe","time"],["bomb","went"],["museum","contains"],["library","temporary"],["temporary","exhibition"],["exhibition","areand"],["areand","victims"],["victims","information"],["information","area"],["remembrance","contains"],["degree","panorama"],["destroyed","hiroshima"],["righthumb","px"],["px","memorial"],["memorial","cenotaph"],["cenotaph","memorial"],["memorial","cenotaph"],["cenotaph","near"],["concrete","saddle"],["saddle","shaped"],["people","killed"],["bomb","monument"],["peace","flame"],["bomb","dome"],["memorial","cenotaph"],["first","memorial"],["memorial","monuments"],["monuments","built"],["open","field"],["augusthe","arch"],["arch","shape"],["shape","represents"],["victims","cenotaph"],["bomb","victims"],["victims","cenotaph"],["cenotaph","carries"],["means","please"],["please","rest"],["sentence","subject"],["pro","drop"],["drop","language"],["victims","hiroshima"],["hiroshima","without"],["issue","taking"],["taking","advantage"],["facthat","honorific"],["honorific","speech"],["japanese","polite"],["polite","japanese"],["japanese","speech"],["speech","typically"],["typically","demands"],["first","place"],["japanese","mind"],["mind","understanding"],["understanding","contemporary"],["contemporary","japanese"],["roger","j"],["j","davies"],["english","literature"],["hiroshima","university"],["university","give"],["give","peace"],["east","asian"],["asian","perspectives"],["civil","society"],["also","provided"],["provided","thenglish"],["thenglish","translation"],["translation","let"],["explanation","plaque"],["convey","professor"],["war","perhaps"],["right","wing"],["wing","circles"],["japanese","people"],["people","shall"],["year","old"],["old","japanese"],["japanese","affiliated"],["affiliated","withe"],["withe","japanese"],["hiroshima","memorial"],["memorial","file"],["file","peace"],["peace","flame"],["museumjpg","righthumb"],["righthumb","px"],["px","peace"],["peace","flame"],["flame","withe"],["withe","peace"],["peace","memorial"],["memorial","museum"],["background","peace"],["peace","flame"],["peace","flame"],["another","monumento"],["destroyed","hiroshima"],["additional","symbolic"],["symbolic","purpose"],["burned","continuously"],["continuously","since"],["remain","lit"],["nuclear","bombs"],["file","hiroshima"],["hiroshima","peace"],["righthumb","px"],["peace","bell"],["hiroshima","peace"],["peace","park"],["park","peace"],["peace","bells"],["three","peace"],["peace","bells"],["peace","park"],["smaller","one"],["peace","memorial"],["memorial","ceremony"],["theast","building"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["well","known"],["known","peace"],["peace","bell"],["bell","stands"],["stands","near"],["peace","monument"],["large","japanese"],["japanese","bell"],["bell","hanging"],["hanging","inside"],["small","open"],["structure","visitors"],["visitors","arencouraged"],["world","peace"],["bell","rings"],["regularly","throughouthe"],["throughouthe","peace"],["peace","park"],["park","peace"],["peace","bell"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["park","peace"],["peace","bell"],["sweet","spot"],["atomic","symbol"],["symbol","designed"],["bell","works"],["greek","language"],["language","greek"],["greek","japanese"],["japanese","language"],["language","japanese"],["greek","embassy"],["embassy","donated"],["peace","park"],["picked","outhe"],["appropriate","ancient"],["ancient","greek"],["greek","philosophical"],["philosophical","quote"],["indian","ambassador"],["university","lecturer"],["lecturer","file"],["file","atomic"],["atomic","bomb"],["bomb","memorial"],["thumb","px"],["px","atomic"],["atomic","bomb"],["bomb","memorial"],["memorial","atomic"],["atomic","bomb"],["bomb","memorial"],["memorial","atomic"],["atomic","bomb"],["bomb","memorial"],["large","grass"],["grass","covered"],["bomb","cenotaph"],["korean","victims"],["victims","among"],["people","killed"],["post","explosion"],["explosion","radiation"],["koreans","korean"],["korean","buthe"],["buthe","number"],["minority","additionally"],["additionally","survivors"],["hiroshimand","nagasaki"],["nagasaki","returned"],["japanese","rule"],["rule","japanese"],["japanese","colonialism"],["honour","korean"],["korean","victims"],["atomic","bomb"],["japanese","colonialism"],["korean","victims"],["highness","prince"],["dead","ride"],["file","peace"],["righthumb","px"],["peace","gates"],["peace","added"],["monument","contains"],["contains","ten"],["ten","gates"],["gates","covered"],["covered","withe"],["withe","word"],["word","peace"],["gates","represent"],["nine","circles"],["nine","circles"],["hell","plus"],["plus","one"],["living","hell"],["hiroshima","caused"],["peace","hiroshima"],["meters","high"],["meters","wide"],["word","peace"],["peace","designed"],["jean","michel"],["jpg","thumb"],["thumb","px"],["px","memorial"],["memorial","tower"],["mobilized","students"],["students","memorial"],["memorial","tower"],["mobilized","students"],["mobilized","student"],["student","victims"],["victims","hiroshima"],["hiroshima","prefecture"],["students","including"],["atomic","bomb"],["bomb","victims"],["pacific","war"],["atomic","bombing"],["twelve","meters"],["meters","tall"],["tall","five"],["five","stories"],["decorated","withe"],["withe","peace"],["placed","around"],["work","thathe"],["thathe","students"],["factory","work"],["work","female"],["showing","students"],["students","working"],["increase","food"],["food","production"],["tower","whichas"],["whichas","two"],["background","information"],["either","japanese"],["english","file"],["bomb","dome"],["dome","hiroshima"],["righthumb","px"],["bomb","dome"],["sunset","file"],["file","hiroshima"],["hiroshima","pond"],["thumb","px"],["px","hiroshima"],["hiroshima","pond"],["peace","file"],["jpg","righthumb"],["righthumb","px"],["px","statue"],["storm","fountain"],["monuments","pond"],["cenotaph","peace"],["peace","clock"],["clock","tower"],["temple","used"],["peace","fountain"],["fountain","hiroshima"],["hiroshima","peace"],["peace","fountain"],["fountain","monumento"],["bridge","phoenix"],["phoenix","trees"],["trees","exposed"],["bomb","also"],["also","known"],["former","hiroshima"],["bombed","trees"],["tree","monument"],["monument","hair"],["hair","monument"],["monument","hiroshima"],["hiroshima","city"],["city","zero"],["zero","milestone"],["milestone","peace"],["stone","lantern"],["peace","friendship"],["friendship","monument"],["monument","peace"],["peace","memorial"],["memorial","post"],["post","peace"],["peace","tower"],["tower","hiroshima"],["hiroshima","peace"],["peace","tower"],["tower","fountain"],["small","fountain"],["fountain","pond"],["pond","monument"],["prayer","monument"],["monument","peace"],["peace","prayer"],["prayer","monument"],["monument","peace"],["peace","hiroshima"],["hiroshima","monument"],["storm","peace"],["peace","watch"],["watch","tower"],["tower","indicating"],["bomb","statue"],["peace","new"],["new","leaves"],["designed","carved"],["mother","statue"],["mobilized","students"],["monument","hiroshima"],["hiroshima","second"],["second","middle"],["middle","school"],["bomb","memorial"],["memorial","monument"],["monument","memorial"],["memorial","monument"],["monument","hiroshima"],["hiroshima","municipal"],["municipal","commercial"],["industry","schools"],["schools","monumento"],["bombed","teachers"],["national","elementary"],["elementary","schools"],["bomb","monument"],["monument","hiroshima"],["hiroshima","municipal"],["municipal","girl"],["high","school"],["school","monument"],["monument","dedicated"],["literary","monument"],["monument","dedicated"],["clock","commemorating"],["democratic","people"],["korea","monument"],["former","north"],["cho","area"],["area","monument"],["former","south"],["cho","area"],["area","monument"],["cho","memorial"],["memorial","tower"],["bomb","related"],["related","victims"],["victims","memorial"],["memorial","tower"],["bomb","victims"],["victims","monument"],["korean","victims"],["bomb","monument"],["volunteer","army"],["army","corps"],["corps","monument"],["insurance","labor"],["labor","union"],["union","monumento"],["public","works"],["works","office"],["office","monument"],["monument","hiroshima"],["hiroshima","district"],["control","corporation"],["corporation","monument"],["monument","dedicated"],["construction","workers"],["artisans","monumento"],["hiroshima","post"],["post","office"],["office","monument"],["monument","hiroshima"],["hiroshima","gas"],["gas","corporation"],["corporation","monumento"],["coal","control"],["control","related"],["related","company"],["company","monument"],["bomb","victims"],["association","monumento"],["norman","cousins"],["cousins","monument"],["jpg","thumb"],["thumb","px"],["px","flower"],["hiroshima","flower"],["flower","festival"],["festival","hiroshima"],["hiroshima","flower"],["flower","festival"],["festival","hiroshima"],["hiroshima","flower"],["flower","festival"],["week","japanese"],["japanese","golden"],["golden","week"],["peace","park"],["park","peace"],["peace","boulevard"],["boulevard","hiroshima"],["hiroshima","peace"],["peace","boulevard"],["boulevard","hiroshima"],["winter","file"],["file","hiroden"],["hiroden","atomic"],["atomic","bomb"],["bomb","dome"],["dome","stationjpg"],["stationjpg","thumb"],["thumb","px"],["px","hiroden"],["dome","mae"],["mae","station"],["station","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["dome","mae"],["mae","station"],["station","hiroden"],["mae","station"],["station","file"],["elementary","school"],["school","peace"],["peace","museum"],["museum","jpg"],["jpg","thumb"],["thumb","px"],["elementary","school"],["school","peace"],["peace","museum"],["museum","atomic"],["atomic","bombed"],["bombed","former"],["former","school"],["school","building"],["building","see"],["see","also"],["also","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","atomic"],["atomic","bomb"],["bomb","dome"],["dome","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","atomic"],["atomic","bombings"],["hiroshimand","nagasaki"],["peace","monument"],["monument","hiroshima"],["hiroshima","national"],["national","peace"],["peace","memorial"],["memorial","hall"],["atomic","bomb"],["bomb","victims"],["victims","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","ceremony"],["ceremony","hiroshima"],["hiroshima","witness"],["witness","nagasaki"],["nagasaki","peace"],["peace","park"],["park","norman"],["norman","cousins"],["cousins","marcel"],["peace","boulevard"],["boulevard","hiroshima"],["hiroshima","peace"],["peace","boulevard"],["elementary","school"],["school","peace"],["peace","museum"],["elementary","school"],["school","peace"],["peace","museum"],["museum","externalinks"],["externalinks","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","museum"],["museum","guide"],["peace","memorial"],["memorial","park"],["park","hiroshima"],["hiroshima","national"],["national","peace"],["peace","memorial"],["memorial","hall"],["atomic","bomb"],["bomb","victims"],["victims","hiroshima"],["hiroshima","peace"],["peace","camp"],["camp","hiroshima"],["hiroshima","peace"],["peace","memorial"],["memorial","park"],["park","blog"],["japanese","peace"],["peace","message"],["message","lantern"],["lantern","ceremony"],["ceremony","us"],["us","attending"],["attending","hiroshima"],["hiroshima","memorial"],["memorial","video"],["video","report"],["category","monuments"],["japan","category"],["category","parks"],["hiroshima","category"],["category","peace"],["peace","parks"],["parks","category"],["category","peace"],["peace","monuments"],["memorials","category"],["category","world"],["world","war"],["war","ii"],["ii","memorials"],["japan","category"],["category","monuments"],["monuments","associated"],["associated","withe"],["withe","atomic"],["atomic","bombings"],["hiroshimand","nagasaki"],["nagasaki","p"],["p","category"],["category","atomic"],["atomic","tourism"]],"all_collocations":["created april","april status","status open","year website","website hiroshima","hiroshima peace","peace memorial","memorial park","memorial park","hiroshima japan","first city","suffer atomic","atomic bombings","hiroshimand nagasaki","nagasaki nuclear","nuclear attack","indirect victims","hiroshima peace","peace memorial","memorial park","planned andesigned","japanese architect","hiroshima peace","peace memorial","memorial park","busiest downtown","downtown commercial","residential districthe","districthe park","open field","thexplosion today","monuments museums","lecture halls","million visitors","visitors annually","annual august","august hiroshima","hiroshima peace","peace memorial","memorial ceremony","ceremony peace","peace memorial","memorial ceremony","also held","peace memorial","memorial park","advocate world","world peace","peace notable","notable symbols","symbols file","file old","bomb dome","bomb dome","bomb dome","former hiroshima","industrial promotion","promotion hall","atomic bombings","hiroshimand nagasaki","nagasaki nuclear","nuclear bomb","least partially","partially standing","bomb dome","attributed isituated","distant ceremonial","ceremonial view","peace memorial","memorial park","central cenotaph","officially designated","designated site","collectively shared","shared heritage","bomb dome","unesco world","world heritage","heritage site","site world","world heritage","heritage list","december unesco","unesco world","world heritage","heritage sites","sites hiroshima","hiroshima peace","peace memorial","memorial many","bomb survivors","hiroshima citizens","bomb dome","world heritage","heritage site","nuclear weapons","collective petition","petition fromany","fromany citizens","citizens groups","finally given","given influence","japanese government","government officially","officially recommended","world heritage","heritage site","site committee","bomb dome","hiroshima city","reads children","peace monumenthe","monumenthe children","peace monument","statue dedicated","origami folded","folded paper","paper crane","crane rising","true story","folded paper","day people","people mostly","mostly children","world fold","placed near","nearby file","file hiroshima","hiroshima jpg","rest house","hiroshima peace","peace park","park rest","rest house","rest house","hiroshima peace","peace park","another atomic","atomic bombed","bombed building","fuel distribution","distribution station","shortage ofuel","ofuel began","bomb exploded","interior destroyed","burned except","basement eventually","eventually people","building died","bombing year","year old","nomura survived","basement whichad","concrete roof","world war","became increasingly","approximately meters","atomic bomb","hypocenter destroyed","concrete roof","also badly","badly damaged","everyone inside","killed except","except nomura","nomura survived","restored soon","fuel hall","hiroshima east","east reconstruction","reconstruction office","reconstruction program","peace memorial","memorial park","prominent business","business quarter","district one","many wooden","wooden two","two story","story structures","three story","constructed surrounded","movie theaters","panoramic view","city awaited","awaited file","rest house","fuel hall","hall athe","athe time","bombing people","basement athat","athat moment","bombing although","heavily damaged","stood still","renovated soon","war including","atomic bomb","meters northeast","bomb exploded","employees working","building athatime","instantly killed","blast nomura","nomura managed","rising fire","struggled withigh","withigh fever","fever diarrhea","symptoms caused","hiroshima municipal","municipal government","government purchased","rest house","peace memorial","memorial park","park rest","rest house","debates many","many times","city decided","building buthe","buthe plan","put aside","aside one","bomb dome","world heritage","heritage site","site currently","first floor","rest house","tourist information","information office","souvenir shop","second third","third floors","preserved nearly","athe time","bombing hiroshima","hiroshima peace","peace memorial","memorial ceremony","ceremony everyear","bomb day","hiroshima holds","hiroshima peace","peace memorial","memorial ceremony","atomic bombs","lasting world","world peace","memorial cenotaph","many citizens","citizens including","one minute","observed athe","athe time","atomic bomb","explosion peace","peace memorial","memorial ceremony","ceremony peace","peace memorial","memorial ceremony","ceremony program","program lantern","lantern ceremony","ceremony file","file hiroshima","hiroshima lantern","lantern ceremony","peace messages","messages floating","river peace","peace messages","lantern ceremony","ceremony file","file hiroshima","hiroshima peace","peace memorial","memorial museum","museum jpg","main building","hiroshima peace","peace memorial","memorial museum","museum hiroshima","hiroshima peace","peace memorial","memorial museum","museum hiroshima","hiroshima peace","peace memorial","memorial museum","primary museum","park dedicated","educating visitors","visitors abouthe","abouthe bomb","information covering","extensive information","effects along","building also","memorial cenotaph","cenotaph peace","peace flame","bomb dome","dome file","file international","international conferencenter","conferencenter hiroshima","hiroshima jpg","jpg righthumb","righthumb px","px international","international conferencenter","conferencenter hiroshima","hiroshima international","international conferencenter","conferencenter hiroshima","hiroshima international","international conferencenter","conferencenter hiroshima","hiroshima peace","peace park","park west","west side","main building","hiroshima peace","peace memorial","memorial museum","museum file","file hiroshima","hiroshima national","national peace","peace memorial","memorial hall","atomic bomb","bomb victims","victims jpg","jpg righthumb","righthumb px","px hall","remembrance hiroshima","hiroshima national","national peace","peace memorial","memorial hall","hiroshima national","national peace","peace memorial","memorial hall","atomic bomb","bomb victims","japanese national","national governmento","governmento remember","atomic bomb","bomb victims","lasting peace","hall contains","roof near","near thentrance","clock frozen","frozen athe","athe time","bomb went","museum contains","library temporary","temporary exhibition","exhibition areand","areand victims","victims information","information area","remembrance contains","degree panorama","destroyed hiroshima","righthumb px","px memorial","memorial cenotaph","cenotaph memorial","memorial cenotaph","cenotaph near","concrete saddle","saddle shaped","people killed","bomb monument","peace flame","bomb dome","memorial cenotaph","first memorial","memorial monuments","monuments built","open field","augusthe arch","arch shape","shape represents","victims cenotaph","bomb victims","victims cenotaph","cenotaph carries","means please","please rest","sentence subject","pro drop","drop language","victims hiroshima","hiroshima without","issue taking","taking advantage","facthat honorific","honorific speech","japanese polite","polite japanese","japanese speech","speech typically","typically demands","first place","japanese mind","mind understanding","understanding contemporary","contemporary japanese","roger j","j davies","english literature","hiroshima university","university give","give peace","east asian","asian perspectives","civil society","also provided","provided thenglish","thenglish translation","translation let","explanation plaque","convey professor","war perhaps","right wing","wing circles","japanese people","people shall","year old","old japanese","japanese affiliated","affiliated withe","withe japanese","hiroshima memorial","memorial file","file peace","peace flame","museumjpg righthumb","righthumb px","px peace","peace flame","flame withe","withe peace","peace memorial","memorial museum","background peace","peace flame","peace flame","another monumento","destroyed hiroshima","additional symbolic","symbolic purpose","burned continuously","continuously since","remain lit","nuclear bombs","file hiroshima","hiroshima peace","righthumb px","peace bell","hiroshima peace","peace park","park peace","peace bells","three peace","peace bells","peace park","smaller one","peace memorial","memorial ceremony","theast building","hiroshima peace","peace memorial","memorial museum","well known","known peace","peace bell","bell stands","stands near","peace monument","large japanese","japanese bell","bell hanging","hanging inside","small open","structure visitors","visitors arencouraged","world peace","bell rings","regularly throughouthe","throughouthe peace","peace park","park peace","peace bell","hiroshima peace","peace memorial","memorial park","park peace","peace bell","sweet spot","atomic symbol","symbol designed","bell works","greek language","language greek","greek japanese","japanese language","language japanese","greek embassy","embassy donated","peace park","picked outhe","appropriate ancient","ancient greek","greek philosophical","philosophical quote","indian ambassador","university lecturer","lecturer file","file atomic","atomic bomb","bomb memorial","px atomic","atomic bomb","bomb memorial","memorial atomic","atomic bomb","bomb memorial","memorial atomic","atomic bomb","bomb memorial","large grass","grass covered","bomb cenotaph","korean victims","victims among","people killed","post explosion","explosion radiation","koreans korean","korean buthe","buthe number","minority additionally","additionally survivors","hiroshimand nagasaki","nagasaki returned","japanese rule","rule japanese","japanese colonialism","honour korean","korean victims","atomic bomb","japanese colonialism","korean victims","highness prince","dead ride","file peace","righthumb px","peace gates","peace added","monument contains","contains ten","ten gates","gates covered","covered withe","withe word","word peace","gates represent","nine circles","nine circles","hell plus","plus one","living hell","hiroshima caused","peace hiroshima","meters high","meters wide","word peace","peace designed","jean michel","px memorial","memorial tower","mobilized students","students memorial","memorial tower","mobilized students","mobilized student","student victims","victims hiroshima","hiroshima prefecture","students including","atomic bomb","bomb victims","pacific war","atomic bombing","twelve meters","meters tall","tall five","five stories","decorated withe","withe peace","placed around","work thathe","thathe students","factory work","work female","showing students","students working","increase food","food production","tower whichas","whichas two","background information","either japanese","english file","bomb dome","dome hiroshima","righthumb px","bomb dome","sunset file","file hiroshima","hiroshima pond","px hiroshima","hiroshima pond","peace file","jpg righthumb","righthumb px","px statue","storm fountain","monuments pond","cenotaph peace","peace clock","clock tower","temple used","peace fountain","fountain hiroshima","hiroshima peace","peace fountain","fountain monumento","bridge phoenix","phoenix trees","trees exposed","bomb also","also known","former hiroshima","bombed trees","tree monument","monument hair","hair monument","monument hiroshima","hiroshima city","city zero","zero milestone","milestone peace","stone lantern","peace friendship","friendship monument","monument peace","peace memorial","memorial post","post peace","peace tower","tower hiroshima","hiroshima peace","peace tower","tower fountain","small fountain","fountain pond","pond monument","prayer monument","monument peace","peace prayer","prayer monument","monument peace","peace hiroshima","hiroshima monument","storm peace","peace watch","watch tower","tower indicating","bomb statue","peace new","new leaves","designed carved","mother statue","mobilized students","monument hiroshima","hiroshima second","second middle","middle school","bomb memorial","memorial monument","monument memorial","memorial monument","monument hiroshima","hiroshima municipal","municipal commercial","industry schools","schools monumento","bombed teachers","national elementary","elementary schools","bomb monument","monument hiroshima","hiroshima municipal","municipal girl","high school","school monument","monument dedicated","literary monument","monument dedicated","clock commemorating","democratic people","korea monument","former north","cho area","area monument","former south","cho area","area monument","cho memorial","memorial tower","bomb related","related victims","victims memorial","memorial tower","bomb victims","victims monument","korean victims","bomb monument","volunteer army","army corps","corps monument","insurance labor","labor union","union monumento","public works","works office","office monument","monument hiroshima","hiroshima district","control corporation","corporation monument","monument dedicated","construction workers","artisans monumento","hiroshima post","post office","office monument","monument hiroshima","hiroshima gas","gas corporation","corporation monumento","coal control","control related","related company","company monument","bomb victims","association monumento","norman cousins","cousins monument","px flower","hiroshima flower","flower festival","festival hiroshima","hiroshima flower","flower festival","festival hiroshima","hiroshima flower","flower festival","week japanese","japanese golden","golden week","peace park","park peace","peace boulevard","boulevard hiroshima","hiroshima peace","peace boulevard","boulevard hiroshima","winter file","file hiroden","hiroden atomic","atomic bomb","bomb dome","dome stationjpg","stationjpg thumb","px hiroden","dome mae","mae station","station hiroshima","hiroshima peace","peace memorial","memorial park","dome mae","mae station","station hiroden","mae station","station file","elementary school","school peace","peace museum","museum jpg","elementary school","school peace","peace museum","museum atomic","atomic bombed","bombed former","former school","school building","building see","see also","also hiroshima","hiroshima peace","peace memorial","memorial atomic","atomic bomb","bomb dome","dome hiroshima","hiroshima peace","peace memorial","memorial museum","museum atomic","atomic bombings","hiroshimand nagasaki","peace monument","monument hiroshima","hiroshima national","national peace","peace memorial","memorial hall","atomic bomb","bomb victims","victims hiroshima","hiroshima peace","peace memorial","memorial ceremony","ceremony hiroshima","hiroshima witness","witness nagasaki","nagasaki peace","peace park","park norman","norman cousins","cousins marcel","peace boulevard","boulevard hiroshima","hiroshima peace","peace boulevard","elementary school","school peace","peace museum","elementary school","school peace","peace museum","museum externalinks","externalinks hiroshima","hiroshima peace","peace memorial","memorial museum","museum guide","peace memorial","memorial park","park hiroshima","hiroshima national","national peace","peace memorial","memorial hall","atomic bomb","bomb victims","victims hiroshima","hiroshima peace","peace camp","camp hiroshima","hiroshima peace","peace memorial","memorial park","park blog","japanese peace","peace message","message lantern","lantern ceremony","ceremony us","us attending","attending hiroshima","hiroshima memorial","memorial video","video report","category monuments","japan category","category parks","hiroshima category","category peace","peace parks","parks category","category peace","peace monuments","memorials category","category world","world war","war ii","ii memorials","japan category","category monuments","monuments associated","associated withe","withe atomic","atomic bombings","hiroshimand nagasaki","nagasaki p","p category","category atomic","atomic tourism"],"new_description":"created april status open year website hiroshima_peace_memorial park memorial_park center hiroshima japan dedicated legacy first city world suffer atomic_bombings hiroshimand_nagasaki nuclear attack memories bomb direct indirect victims may many hiroshima_peace_memorial park planned andesigned japanese architect lab location hiroshima_peace_memorial park city busiest downtown commercial residential districthe park built open field created thexplosion today number memorials monuments museums lecture halls draw million_visitors annually annual august hiroshima_peace_memorial ceremony peace_memorial ceremony isponsored city hiroshima also held park purpose peace_memorial park victims also establish memory nuclear advocate world peace notable symbols file old thumb px bomb_dome bomb_dome bomb_dome ruins former hiroshima industrial promotion hall building hypocenter atomic_bombings hiroshimand_nagasaki nuclear bomb remained least partially standing left bombing memory casualties bomb_dome sense attributed isituated distant ceremonial view visible peace_memorial park central cenotaph officially designated site memory nation humanity collectively shared heritage bomb_dome added unesco_world_heritage_site world_heritage list december unesco_world_heritage_sites hiroshima_peace_memorial many bomb survivors hiroshima citizens pushing bomb_dome registered world_heritage_site symbol horror nuclear_weapons peace collective petition fromany citizens groups finally given influence japanese government officially recommended dome world_heritage_site committee december marker placed bomb_dome april hiroshima city reads children peace monumenthe children peace monument statue dedicated memory children died result bombing statue girl arms origami folded paper crane rising statue based true story died radiation bomb believed folded paper would cured day people mostly children around world fold send hiroshima placed near statue statue continuously collection nearby file hiroshima jpg thumb px rest house hiroshima_peace park rest house rest house hiroshima_peace park another atomic_bombed building park building_built shop march used fuel distribution station shortage ofuel began june august bomb exploded roof crushed interior destroyed everything burned except basement eventually people building died bombing year_old nomura survived basement whichad concrete roof radiation survived june world_war intensified became_increasingly building purchased fuel union approximately meters hypocenter atomic_bomb meters hypocenter destroyed building concrete roof interior also badly damaged fires everyone inside killed except nomura survived building restored soon war used fuel hall hiroshima east reconstruction office became core city reconstruction program established former district today peace_memorial park prominent business quarter city thearlyears period district one hiroshima districts time site many wooden two story structures three story shop constructed surrounded shops movie_theaters wasaid went roof panoramic view city awaited file basement rest thumb basement rest house shop closed became fuel hall athe_time bombing people_working withexception nomura gone basement athat moment survived bombing although building heavily damaged stood still renovated soon war including roof nomura sole building atomic_bomb dropped meters northeast building worker hiroshima fuel union bomb exploded sky basement documents employees working building athatime instantly killed blast nomura managed escape rising fire however struggled withigh fever diarrhea symptoms caused radiation war hiroshima municipal government purchased building established office used rest house peace_memorial park rest house debates many_times whether preserved city decided building buthe plan put aside one reasons announcement bomb_dome world_heritage_site currently first floor rest house used tourist_information office souvenir shop second third floors offices basement preserved nearly athe_time bombing hiroshima_peace_memorial ceremony everyear august bomb day city hiroshima holds hiroshima_peace_memorial ceremony console victims atomic_bombs pray realization lasting world peace ceremony held morning front memorial cenotaph many citizens including families ceremony one minute honor victims observed athe_time atomic_bomb explosion peace_memorial ceremony peace_memorial ceremony program lantern ceremony file hiroshima lantern thumb thevening day r lantern ceremony held send spirits victims peace messages floating waters river peace messages lantern ceremony file hiroshima_peace_memorial museum jpg thumb px main_building hiroshima_peace_memorial museum hiroshima_peace_memorial museum hiroshima_peace_memorial museum primary museum park dedicated educating visitors abouthe bomb museum exhibits information covering buildup war role hiroshima war bombing extensive information bombing effects along substantial pictures bombing building also views memorial cenotaph peace flame bomb_dome file international conferencenter hiroshima jpg_righthumb px international conferencenter hiroshima international conferencenter hiroshima international conferencenter hiroshima_peace park west side main_building hiroshima_peace_memorial museum file hiroshima national peace_memorial hall atomic_bomb victims jpg_righthumb px hall remembrance hiroshima national peace_memorial hall hiroshima national peace_memorial hall atomic_bomb victims effort japanese national governmento remember sacred atomic_bomb victims also expression japan desire genuine lasting peace hall contains number displays roof near thentrance museum underground clock frozen athe_time bomb went museum contains library temporary exhibition areand victims information area hall remembrance contains degree panorama destroyed hiroshima using number died thend righthumb_px memorial cenotaph memorial cenotaph near center park concrete saddle shaped covers names people killed bomb monument aligned frame peace flame bomb_dome memorial cenotaph one first memorial monuments built open field augusthe arch shape represents shelter souls victims cenotaph bomb_victims cenotaph carries means please rest peace shall repeatherror japanese sentence subject pro drop language thus could interpreted either shall repeatherror shall repeatherror intended victims hiroshima without issue taking advantage facthat honorific speech japanese polite japanese speech typically demands first place japanese mind understanding contemporary japanese roger j davies rutland publishing written professor english literature hiroshima university give peace chance east_asian perspectives politics center governance civil society university also_provided thenglish translation let souls peace shall onovember explanation plaque english added order convey professor refers humanity specifically japanese americans war perhaps phrase potential right wing circles japan interpreted words admission reading japanese people shall repeatherror self july cenotaph year_old japanese affiliated withe japanese reference japan mistake hiroshima memorial file peace flame museumjpg righthumb_px peace flame withe peace_memorial museum background peace flame peace flame another monumento victims bomb destroyed hiroshima additional symbolic purpose flame burned continuously since lit remain lit nuclear bombs planet destroyed planet free threat nuclear file hiroshima_peace righthumb_px rings peace bell hiroshima_peace park peace bells three peace bells peace_park smaller one used peace_memorial ceremony day displayed theast building hiroshima_peace_memorial museum well_known peace bell stands near children peace monument consists large japanese bell hanging inside small open structure visitors arencouraged ring bell world peace loud bell rings regularly throughouthe peace_park peace bell hiroshima_peace_memorial park peace bell built open september surface bell map world sweet spot atomic symbol designed cast bell works bell greek language greek japanese language japanese sanskrit translated know greek embassy donated bell peace_park picked outhe appropriate ancient_greek philosophical quote sanskrit translated indian ambassador japanese university lecturer file atomic_bomb memorial thumb px atomic_bomb memorial atomic_bomb memorial atomic_bomb memorial large grass covered contains ashes victims bomb cenotaph korean victims among people killed exposed post explosion radiation least koreans korean buthe number uncertain population minority additionally survivors hiroshimand_nagasaki returned liberation korea japanese rule japanese colonialism monument symbols intended honour korean victims survivors atomic_bomb japanese colonialism monument reads monument memory korean victims bomb memory souls highness prince souls side dead ride heaven backs file peace righthumb_px gates peace gates peace added monument contains ten gates covered withe word peace languages around world gates represent nine circles hell nine circles hell plus one living hell hiroshima caused atomic peace hiroshima gate meters high meters wide word peace languages gates peace designed designed jean michel file_jpg thumb px memorial tower mobilized students memorial tower mobilized students association mobilized student victims hiroshima prefecture tower may order console souls students including atomic_bomb victims died bombings pacific war hiroshima students mobilized killed atomic_bombing memorial twelve meters tall five stories decorated withe peace well eight placed around tower sides tower work thathe students factory work female showing students working increase food production plaque front tower whichas two background information either japanese english file bomb_dome hiroshima righthumb_px bomb_dome sunset file hiroshima pond thumb px hiroshima pond peace file_jpg_righthumb px statue mother child storm fountain prayer monuments pond cenotaph peace clock tower bombed temple temple used peace fountain hiroshima_peace fountain monumento old bridge phoenix trees exposed bomb also_known chinese trees deep moved courtyard former hiroshima office david survivors bombed trees hiroshima press tree monument hair monument hiroshima city zero milestone peace stone lantern peace friendship monument peace_memorial post peace tower hiroshima_peace tower fountain prayer small fountain pond monument prayer monument peace prayer monument peace hiroshima monument bomb mother child storm peace watch tower indicating number bomb statue peace new leaves words designed carved statue mother statue prayer peace figure peace mobilized students monument hiroshima second middle school bomb memorial monument memorial monument hiroshima municipal commercial industry schools monumento bombed teachers students national elementary_schools bomb monument hiroshima municipal girl high_school monument dedicated monumento literary monument dedicated monument memory marcel clock commemorating repatriation chose return democratic people republic korea monument former north cho area monument former south cho area monument former cho memorial tower bomb related victims memorial tower console bomb_victims monument memory korean victims bomb monument volunteer army corps monument insurance labor union monumento died public works office monument hiroshima district control corporation monument dedicated construction workers artisans monumento hiroshima post_office monument hiroshima gas corporation monumento coal control related company monument bomb_victims association monumento norman cousins monument us former file_jpg thumb px flower hiroshima flower festival hiroshima flower festival hiroshima flower festival held may week japanese golden week peace_park peace boulevard hiroshima_peace boulevard hiroshima hiroshima held winter file hiroden atomic_bomb dome stationjpg thumb px hiroden dome mae station hiroshima_peace_memorial park hiroden dome mae station hiroden mae station line station line station file elementary_school peace museum jpg thumb px elementary_school peace museum atomic_bombed former school building see_also hiroshima_peace_memorial atomic_bomb dome hiroshima_peace_memorial museum atomic_bombings hiroshimand_nagasaki children peace monument hiroshima national peace_memorial hall atomic_bomb victims hiroshima_peace_memorial ceremony hiroshima witness nagasaki peace_park norman cousins marcel peace boulevard hiroshima_peace boulevard elementary_school peace museum elementary_school peace museum externalinks hiroshima_peace_memorial museum guide peace_memorial park hiroshima national peace_memorial hall atomic_bomb victims hiroshima_peace camp hiroshima_peace_memorial park blog japanese peace message lantern ceremony us attending hiroshima memorial video report democracy category monuments memorials japan_category parks gardens hiroshima category peace_parks category peace monuments memorials category world_war ii memorials japan_category monuments associated_withe atomic_bombings hiroshimand_nagasaki p category_atomic_tourism"},{"title":"Historical archive on tourism","description":"the historical archive on tourism hat german languagerman historisches archiv zum tourismus isited in the city of berlin athe technische universit berlin where it is housed athe center for metropolitan studies cms and the zentrum technik und gesellschaft ztg the hat had been founded in athe free university of berlin freie universit berlin international protests helped to avert a planned shut down of the archive and the following year it moved from the free to the technical university website focusde date accessdate since the hat is headed by the historian hasso spode and co financed by the willy scharnow foundation step by step the collection was enlarged with material about historical travel and tourism research today the length of the shelves amounts to some running meter the focus of the material is not so much on travel generally but on tourism as a special sort of travelling the hat is gathering various materials ranging from baedeker s to private photo album s in particular there is an extensive collection oflyer pamphlet flyers and other so called ephemera mainly the material stems from central europe in particular from germany but nearly all other parts of the world are also represented eg southern africa or usa over leaflets are stored and more than journals and some books aregistered in addition statistics poster s and map s are gathered the bulk of the material is from the th and th century some books date back to around nonline public access catalog opac is installed but lists of titles are published in the internet landesarchiv berlin ed berliner archive th edn heenemann berlin externalinks homepage of the hat homepage of the cms athe tu berlin hat in university museums and collections engl hat in university collections germ in clionline germ category tourism in germany category archives in germany category travel writing","main_words":["historical","archive","tourism","hat","german_languagerman","tourismus","city","berlin","athe","berlin","housed","athe","center","metropolitan","studies","und","gesellschaft","hat","founded","athe","free","university","berlin","berlin","international","protests","helped","planned","shut","archive","following_year","moved","free","technical","university","website","date","accessdate","since","hat","headed","historian","financed","foundation","step","step","collection","enlarged","material","historical","travel_tourism","research","today","length","shelves","amounts","running","meter","focus","material","much","travel","generally","tourism","special","sort","travelling","hat","gathering","various","materials","ranging","baedeker","private","photo","album","particular","extensive","collection","pamphlet","flyers","called","mainly","material","stems","central_europe","particular","germany","nearly","parts","world","also","represented","southern","africa","usa","stored","journals","books","addition","statistics","poster","map","gathered","bulk","material","th","th_century","books","date","back","around","public","access","catalog","installed","lists","titles","published","internet","berlin","ed","archive","th","berlin","externalinks","homepage","hat","homepage","athe","berlin","hat","university","museums","collections","hat","university","collections","category_tourism","germany_category","archives","germany_category","travel_writing"],"clean_bigrams":[["historical","archive"],["tourism","hat"],["hat","german"],["german","languagerman"],["berlin","athe"],["housed","athe"],["athe","center"],["metropolitan","studies"],["und","gesellschaft"],["athe","free"],["free","university"],["berlin","international"],["international","protests"],["protests","helped"],["planned","shut"],["following","year"],["technical","university"],["university","website"],["date","accessdate"],["accessdate","since"],["foundation","step"],["historical","travel"],["tourism","research"],["research","today"],["shelves","amounts"],["running","meter"],["travel","generally"],["special","sort"],["gathering","various"],["various","materials"],["materials","ranging"],["private","photo"],["photo","album"],["extensive","collection"],["pamphlet","flyers"],["material","stems"],["central","europe"],["also","represented"],["southern","africa"],["addition","statistics"],["statistics","poster"],["th","century"],["books","date"],["date","back"],["public","access"],["access","catalog"],["berlin","ed"],["archive","th"],["berlin","externalinks"],["externalinks","homepage"],["hat","homepage"],["berlin","hat"],["university","museums"],["university","collections"],["category","tourism"],["germany","category"],["category","archives"],["germany","category"],["category","travel"],["travel","writing"]],"all_collocations":["historical archive","tourism hat","hat german","german languagerman","berlin athe","housed athe","athe center","metropolitan studies","und gesellschaft","athe free","free university","berlin international","international protests","protests helped","planned shut","following year","technical university","university website","date accessdate","accessdate since","foundation step","historical travel","tourism research","research today","shelves amounts","running meter","travel generally","special sort","gathering various","various materials","materials ranging","private photo","photo album","extensive collection","pamphlet flyers","material stems","central europe","also represented","southern africa","addition statistics","statistics poster","th century","books date","date back","public access","access catalog","berlin ed","archive th","berlin externalinks","externalinks homepage","hat homepage","berlin hat","university museums","university collections","category tourism","germany category","category archives","germany category","category travel","travel writing"],"new_description":"historical archive tourism hat german_languagerman tourismus city berlin athe berlin housed athe center metropolitan studies und gesellschaft hat founded athe free university berlin berlin international protests helped planned shut archive following_year moved free technical university website date accessdate since hat headed historian financed foundation step step collection enlarged material historical travel_tourism research today length shelves amounts running meter focus material much travel generally tourism special sort travelling hat gathering various materials ranging baedeker private photo album particular extensive collection pamphlet flyers called mainly material stems central_europe particular germany nearly parts world also represented southern africa usa stored journals books addition statistics poster map gathered bulk material th th_century books date back around public access catalog installed lists titles published internet berlin ed archive th berlin externalinks homepage hat homepage athe berlin hat university museums collections hat university collections category_tourism germany_category archives germany_category travel_writing"},{"title":"Holiday (magazine)","description":"holiday was an american travel magazine published from toriginally published by the curtis publishing company holiday s circulation grew to more than one million subscribers at its heighthe magazinemployed writersuch as graham greene jackerouac arthur clarke and truman capote who published his autobiographical essay brooklyn heights a personal memoir in the magazine history and profile holiday wastarted in the magazine had its headquarters in sharon hill pennsylvania withe magazine circulation suffering in the s curtisold holiday to the publisher of travel a competing magazine the two publications merged holiday magazine sold to travel the ledger lakeland florida july p b to form travel holiday was relaunched in april holiday relaunch announcement holiday magazinecom by the atelier franck durand a paris based art direction studio with marc beaug as editor in chief and franck durand franck durand re launches famous lifestyle magazine holiday a shaded view ofashion by diane pernet as creative director the magazine is a bi annual conceived in paris and written in english its official website mentions an upcoming caf holiday caf holiday magazinecom and clothing line the issue n of holiday magazine first issue since the relaunch was dedicated to the year and ibiza holiday magazine resurrects with a fashion vibe women s wear dailycom the issue n includes contributions from photographers josh olins holiday magazine is here again stylecom karim sadli and mark peckmezian a short novel about ibiza by novelist arthur dreyfus a story on inez van lamsweerde and vinoodh matadin s new york loft and the cover features a chosen fragment of remed s painting leonogonexternalinks website of the new holiday magazine holiday magazine archive paris review daily essay about holiday category american arts magazines category defunct magazines of the united states category magazinestablished in category magazines disestablished in category tourismagazines category magazines published in pennsylvania","main_words":["holiday","american_travel","magazine_published","published","publishing_company","holiday","circulation","grew","one_million","subscribers","graham","greene","jackerouac","arthur","clarke","truman","published","autobiographical","essay","brooklyn","heights","personal","memoir","magazine","history","profile","holiday","wastarted","magazine","headquarters","sharon","hill","pennsylvania","withe","magazine","circulation","suffering","holiday","publisher","travel","competing","magazine","two","publications","merged","holiday","magazine","sold","travel","ledger","lakeland","florida","july","p","b","form","travel","holiday","relaunched","april","holiday","relaunch","announcement","holiday","atelier","franck","paris","based","art","direction","studio","marc","editor","chief","franck","franck","launches","famous","lifestyle_magazine","holiday","view","ofashion","creative","director","magazine","annual","conceived","paris","written","english","official_website","mentions","upcoming","caf","holiday","caf","holiday","clothing","line","issue","n","holiday","magazine","first_issue","since","relaunch","dedicated","year","ibiza","holiday","magazine","fashion","vibe","women","wear","issue","n","includes","contributions","photographers","josh","holiday","magazine","mark","short","novel","ibiza","novelist","arthur","story","van","new_york","loft","cover","features","chosen","painting","website","new","holiday","magazine","holiday","magazine","archive","paris","review","daily","essay","holiday","category_american","arts","magazines_category","defunct_magazines","united_states","category_magazinestablished","category_magazines","disestablished","category_tourismagazines","category_magazines_published","pennsylvania"],"clean_bigrams":[["american","travel"],["travel","magazine"],["magazine","published"],["publishing","company"],["company","holiday"],["circulation","grew"],["one","million"],["million","subscribers"],["graham","greene"],["greene","jackerouac"],["jackerouac","arthur"],["arthur","clarke"],["autobiographical","essay"],["essay","brooklyn"],["brooklyn","heights"],["personal","memoir"],["magazine","history"],["profile","holiday"],["holiday","wastarted"],["sharon","hill"],["hill","pennsylvania"],["pennsylvania","withe"],["withe","magazine"],["magazine","circulation"],["circulation","suffering"],["competing","magazine"],["two","publications"],["publications","merged"],["merged","holiday"],["holiday","magazine"],["magazine","sold"],["ledger","lakeland"],["lakeland","florida"],["florida","july"],["july","p"],["p","b"],["form","travel"],["travel","holiday"],["april","holiday"],["holiday","relaunch"],["relaunch","announcement"],["announcement","holiday"],["atelier","franck"],["paris","based"],["based","art"],["art","direction"],["direction","studio"],["launches","famous"],["famous","lifestyle"],["lifestyle","magazine"],["magazine","holiday"],["view","ofashion"],["creative","director"],["annual","conceived"],["official","website"],["website","mentions"],["upcoming","caf"],["caf","holiday"],["holiday","caf"],["caf","holiday"],["clothing","line"],["issue","n"],["holiday","magazine"],["magazine","first"],["first","issue"],["issue","since"],["ibiza","holiday"],["holiday","magazine"],["fashion","vibe"],["vibe","women"],["issue","n"],["n","includes"],["includes","contributions"],["photographers","josh"],["holiday","magazine"],["short","novel"],["novelist","arthur"],["new","york"],["york","loft"],["cover","features"],["new","holiday"],["holiday","magazine"],["magazine","holiday"],["holiday","magazine"],["magazine","archive"],["archive","paris"],["paris","review"],["review","daily"],["daily","essay"],["holiday","category"],["category","american"],["american","arts"],["arts","magazines"],["magazines","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","magazines"],["magazines","published"]],"all_collocations":["american travel","travel magazine","magazine published","publishing company","company holiday","circulation grew","one million","million subscribers","graham greene","greene jackerouac","jackerouac arthur","arthur clarke","autobiographical essay","essay brooklyn","brooklyn heights","personal memoir","magazine history","profile holiday","holiday wastarted","sharon hill","hill pennsylvania","pennsylvania withe","withe magazine","magazine circulation","circulation suffering","competing magazine","two publications","publications merged","merged holiday","holiday magazine","magazine sold","ledger lakeland","lakeland florida","florida july","july p","p b","form travel","travel holiday","april holiday","holiday relaunch","relaunch announcement","announcement holiday","atelier franck","paris based","based art","art direction","direction studio","launches famous","famous lifestyle","lifestyle magazine","magazine holiday","view ofashion","creative director","annual conceived","official website","website mentions","upcoming caf","caf holiday","holiday caf","caf holiday","clothing line","issue n","holiday magazine","magazine first","first issue","issue since","ibiza holiday","holiday magazine","fashion vibe","vibe women","issue n","n includes","includes contributions","photographers josh","holiday magazine","short novel","novelist arthur","new york","york loft","cover features","new holiday","holiday magazine","magazine holiday","holiday magazine","magazine archive","archive paris","paris review","review daily","daily essay","holiday category","category american","american arts","arts magazines","magazines category","category defunct","defunct magazines","united states","states category","category magazinestablished","category magazines","magazines disestablished","category tourismagazines","tourismagazines category","category magazines","magazines published"],"new_description":"holiday american_travel magazine_published published publishing_company holiday circulation grew one_million subscribers graham greene jackerouac arthur clarke truman published autobiographical essay brooklyn heights personal memoir magazine history profile holiday wastarted magazine headquarters sharon hill pennsylvania withe magazine circulation suffering holiday publisher travel competing magazine two publications merged holiday magazine sold travel ledger lakeland florida july p b form travel holiday relaunched april holiday relaunch announcement holiday atelier franck paris based art direction studio marc editor chief franck franck launches famous lifestyle_magazine holiday view ofashion creative director magazine annual conceived paris written english official_website mentions upcoming caf holiday caf holiday clothing line issue n holiday magazine first_issue since relaunch dedicated year ibiza holiday magazine fashion vibe women wear issue n includes contributions photographers josh holiday magazine mark short novel ibiza novelist arthur story van new_york loft cover features chosen painting website new holiday magazine holiday magazine archive paris review daily essay holiday category_american arts magazines_category defunct_magazines united_states category_magazinestablished category_magazines disestablished category_tourismagazines category_magazines_published pennsylvania"},{"title":"Holiday cottage","description":"file holiday cottagentrance geographorguk jpg thumb holiday cottages in converted farm buildings gloucestershirengland file holiday cottages geographorguk jpg thumb purpose built holiday cottages near portrush northern ireland file architecture s francejpeg thumb seventies architecture in port camargue france a holiday cottage holiday home or vacation property is accommodation used for holiday vacationsuch properties are typically small homesuch as cottage s that vacationers can rent and run as if it were their own home for the duration of their stay the properties may be owned by those using them for a vacation in which case the term second home applies or may be rented outo holidaymakers through an agency terminology varies among countries in the united kingdom this type of property is usually termed a holiday home or holiday cottage in australia holiday house home or weekender inew zealand a bach new zealand bach or crib characteristics and advantages a second home or vacation home can be a home owner s asset as renting it could provide additional income many vacationers are opting for a single family residence thathey can rent on a nightly or weekly basis in many cases the savings for them are significant compared to hotels or vacation packages for owners it can be as rewarding as paying the mortgage as people begin to realize this trend vacation type properties are becoming popular not only for existing homes but also for building one renting a holiday cottage gives vacationers the freedom to eat in eat out stay in bed all day and generally come and go as they please in contrasto this accommodation in a bed and breakfast or hotel usually involvesome sort of restriction the time of day guests need to vacate theirooms for cleaning and son young children and babies can be moreasily accommodated for in a holiday cottage where the parents do not feel pressure from other families eg in a hotel resort who may not have young children the facthat guests are on holiday in a home together often withree generations in larger houses brings a much different atmosphere to the holiday cottages are nowadays found across the length and breadth of the uk with many destinations from town houses to forests new forest holiday cottages have become more popular in recent years gaining a higher profile from such news as the new forest becoming a national park many other areas in the uk have seen a growth in the holiday cottage industry such as the lake district and cornwall there are typically two routes to renting a holiday cottageither direct with an owner or through the auspices of a holiday cottagency several holiday home portals list cottages available direct from the owner and charge an fee for listing the property the holiday cottage market in both canadand the uk is highly competitive and big business in the uk this increased competition has led to significant improvements in the quality of properties on offer so gone are the swirly carpets and tacky furniture of old to be replaced by tasteful hues character furnishings and quality appliances in some cases providing a standard of accommodation more akin to a boutique hotel this improvement in standards has in turn contributed to the increase in the popularity of holiday cottages for weekend breaks offering in many cases the same standard of accommodation as an hotel yet withe increased freedom that a holiday cottage offers one other significant development in the uk holiday cottage market is that ofarm stays driven partly by the farmers and the pooreturns they get from farming itself but also by the desire of parents wanting their children to experience ruralife first hand the rapidevelopment of the internet and technologiesuch as telephony and personal digital assistant s that allow people to work from home since circa has blurred the division between vacation property and a primary residence some business people including the british entrepreneurichard branson use their luxury real estate for both business and leisure purposes many internet services have developed to connect shorterm rental customers with owners or brokers of vacation properties united kingdom class infobox style text align right font size colspan style text align center font size font weight bold holiday second homes in england style text align left font weight bold region style text align left font weight bold number style text align left font weight bold align left cornwall and the isles of scilly align left cumbrialign left dorset align left norfolk align left devon align left east sussex align left northumberland align left north yorkshire align left west sussex align left suffolk holiday homes and second homes comprise of the housing stock in snowdonia wales compared to the figure ofor the whole of wales only in gwynedd has the council put in place measures to control the number of holiday homes buthey only control new developments by withholding permission where consent is likely to raise the figure in any community above they do not stop anyone from buying a holiday home the number in cornwall and the isles of scilly was calculated to be in and this the region whichas the highest number of second homes in england within a year alone between and the percentage of holiday second homes in england increased by class infobox style text align right font size colspan style text align center font size font weight bold holiday second homes in scotland style text align left font weight bold region style text align left font weight bold align left argyll and bute align left eilean siar align left scottishighlands align left orkney islands align left shetland islands align left perth and kinross align left north ayrshire align left dumfries and galloway align left scottish borders align left moray align left aberdeenshire align left south ayrshire align left stirling align left east lothian align left anguscotland angus align left fife align left edinburgh align left aberdeen align left clackmannanshire align left dundee align left east ayrshire align left falkirk align left glasgow align left inverclyde align left south lanarkshire align left west dunbartonshire align left east dunbartonshire align left east renfrewshire align left north lanarkshire align left renfrewshire align left west lothian there were holiday summer homes in scotland on the scottish census which accounted for of scotland s housing stock this figure was in buthe majority of the increase occurreduring the s the greatest increase waseen in urban areas contrary to the usual trends and increased especially in edinburgh and aberdeen buthe majority of holiday second homes are still to be found in rural areas notably of these are to be found in the remote rural areas where one in every eight house is a holiday or second home the figure in france is also fairly high approximately of all the housing stock is a holiday or second home buthe majority of these are owned by french there are approximately homes or of the total housing stock which are the property of owners from abroad of this percentage are owned by british owners italian belgian dutch spanish and american united states class infobox style text align right font size colspan style text align center font size font weight bold holiday second homes inorth east usa style text align left font weight bold state style text align left font weight bold number style text align left font weight bold align left maine align left vermont align left new hampshire align left delaware align left massachusetts align left new jersey align left new york state new york align left rhode island align left pennsylvanialign left maryland align left connecticut align left washington dc district of columbialign left west virginia in or of the united states american housing stock were holiday or second homes compared with in and in of all these are located in the north eastern states with approximately of all the second homes in the us located inew york state new york and maine having the largest percentage of its housing stock asecond homesecond homes are immensely popular particularly during canada summer season they areferred to differently in different parts of the country in ontario it is usually cottage while cabin or the lake is used in much of the rest of canada in ontario the most popular destination is the muskoka region of ontario known for its many lakes and forests muskoka is even referred to as cottage country and sees over million visitors annually on theast coasthe maritimes are home to many oceanfront cottages likewise british columbia on the west coast is another popular vacation destination for seekers of vacation properties in the canadian prairies and british columbia interior vacation properties are located near or on freshwater lakes chalets at ski resorts are also common during winter costs and effects financial and legal implications in the uk furnished holiday lettings offer other tax relief providing certain conditions are methe current conditions are it should be available for commercialetting to the public for a total of days in the month period it must be let for at least days in the month period where more than one qualifying property is held it is possible to average the number of days all properties are let in total in order to meethis condition the total periods of long term occupation may not exceedays during the month period second home and holiday home owners used to be able to claim discounts in their council tax in the united kingdom as the property is vacant for much of the year this no longer true in many areas including carmarthenshire if the property is empty but furnished no discount is permitted and the owner will be liable to pay the tax in full but in cornwall since second home owners can claim a discount in their council tax prior to they could claim a discount in cornwall they are still able to claim in many other areas in england the welsh movement cymuned movement cymuned promote the principle that owners of holiday homeshould pay double the standard rate of council tax as they do notherwise invest in the local community testimony of this to be seen in a report on theffect of holiday homes in scotland which found thathose who went on holiday to scotland spent an average of a day in comparison to just a day spent by those visiting their holiday or second homes owners of holiday homes will occasionally move to their second homes permanently upon retirementhis can be a threato the culture of an area especially in wales where the influx of non welsh speakers affects the percentage of welsh speakers in the areand reduces the use of welsh in everyday life hundreds of second homes were burnt between and the mid s as a part of a campaign by nationalist movement meibion glynd r to protecthe indigenous language and culture see also a frame house apartment beachouse cottage dacha log cabin moroccan riad sommerhus villa holidayurt mountain hut bothy wilderness hut vernacularchitecture flats airbnb homeaway housetrip roomorama wimdu timeshare condo hotel destination club mar del plata style lake house real estatexternalinks category house types category hotel types category holiday related topics category tourist accommodations","main_words":["file","holiday","geographorguk_jpg","thumb","holiday_cottages","converted","farm","buildings","file","holiday_cottages","geographorguk_jpg","thumb","purpose_built","holiday_cottages","near","northern_ireland","file","architecture","thumb","architecture","port","france","holiday_cottage","holiday","home","vacation","property","accommodation","used","holiday","properties","typically","small","cottage","vacationers","rent","run","home","duration","stay","properties","may","owned","using","vacation","case","term","second","home","applies","may","rented","outo","holidaymakers","agency","terminology","varies","among","countries","united_kingdom","type","property","usually","termed","holiday","home","holiday_cottage","australia","holiday","house","home","inew_zealand","new_zealand","crib","characteristics","advantages","second","home","vacation","home","home","owner","asset","renting","could","provide","additional","income","many","vacationers","single","family","residence","thathey","rent","nightly","weekly","basis","many_cases","savings","significant","compared","hotels","vacation","packages","owners","rewarding","paying","people","begin","realize","trend","vacation","type","properties","becoming","popular","existing","homes","also","building","one","renting","holiday_cottage","gives","vacationers","freedom","eat","eat","stay","bed","day","generally","come","go","please","contrasto","accommodation","bed","breakfast","hotel","usually","sort","restriction","time","day","guests","need","cleaning","son","young","children","babies","moreasily","accommodated","holiday_cottage","parents","feel","pressure","families","hotel","resort","may","young","children","facthat","guests","holiday","home","together","often","withree","generations","larger","houses","brings","much","different","atmosphere","holiday_cottages","nowadays","found","across","length","breadth","uk","many","destinations","town","houses","forests","new","forest","holiday_cottages","become_popular","recent_years","gaining","higher","profile","news","new","forest","becoming","national_park","many_areas","uk","seen","growth","holiday_cottage","industry","lake_district","cornwall","typically","two","routes","renting","holiday","direct","owner","auspices","holiday","several","holiday","home","list","cottages","available","direct","owner","charge","fee","listing","property","holiday_cottage","market","canadand","uk","highly","competitive","big","business","uk","increased","competition","led","significant","improvements","quality","properties","offer","gone","carpets","furniture","old","replaced","character","quality","appliances","cases","providing","standard","accommodation","akin","boutique_hotel","improvement","standards","turn","contributed","increase","popularity","holiday_cottages","weekend","breaks","offering","many_cases","standard","accommodation","hotel","yet","withe","increased","freedom","holiday_cottage","offers","one","significant","development","uk","holiday_cottage","market","stays","driven","partly","farmers","get","farming","also","desire","parents","wanting","children","experience","first","hand","internet","telephony","personal","digital","assistant","allow","people","work","home","since","circa","division","vacation","property","primary","residence","business","people","including","british","branson","use","luxury","real_estate","business","leisure","purposes","many","internet","services","developed","connect","shorterm","rental","customers","owners","brokers","vacation","properties","united_kingdom","class","infobox","style_text","align","right","font_size","colspan_style_text","align","center","font_size","font_weight_bold","holiday","second_homes","england","style_text","align","left_font","weight_bold","region","style_text","align","left_font","weight_bold","number","style_text","align","left_font","weight_bold","align","left","cornwall","align","left","left","dorset","align","left","norfolk","align","left","devon","align","left","east","sussex","align","left","northumberland","align","left","north_yorkshire","align","left","west","sussex","align","left","suffolk","holiday","homes","second_homes","comprise","housing","stock","snowdonia","wales","compared","figure","ofor","whole","wales","council","put","place","measures","control","number","holiday","homes","buthey","control","new","developments","permission","consent","likely","raise","figure","community","stop","anyone","buying","holiday","home","number","cornwall","calculated","region","whichas","highest","number","second_homes","england","within","year","alone","percentage","holiday","second_homes","england","increased","class","infobox","style_text","align","right","font_size","colspan_style_text","align","center","font_size","font_weight_bold","holiday","second_homes","scotland","style_text","align","left_font","weight_bold","region","style_text","align","left_font","weight_bold","align","left","argyll","align","left_align","left_align","left","islands","align","left","islands","align","left","perth","align","left","north","ayrshire","align","left_align","left","scottish","borders","align","left_align","left_align","left","south","ayrshire","align","left","stirling","align","left","east","align","left","angus","align","left_align","left","edinburgh","align","left","aberdeen","align","left_align","left_align","left","east","ayrshire","align","left_align","left","glasgow","align","left_align","left","south","lanarkshire","align","left","west","align","left","east","align","left","east","align","left","north","lanarkshire","align","left_align","left","west","holiday","summer","homes","scotland","scottish","census","accounted","scotland","housing","stock","figure","buthe","majority","increase","occurreduring","greatest","increase","waseen","urban_areas","contrary","usual","trends","increased","especially","edinburgh","aberdeen","buthe","majority","holiday","second_homes","still","found","rural_areas","notably","found","remote","rural_areas","one","every","eight","house","holiday","second","home","figure","france","also","fairly","high","approximately","housing","stock","holiday","second","home","buthe","majority","owned","french","approximately","homes","total","housing","stock","property","owners","abroad","percentage","owned","british","owners","italian","belgian","dutch","spanish","american","united_states","class","infobox","style_text","align","right","font_size","colspan_style_text","align","center","font_size","font_weight_bold","holiday","second_homes","inorth","east","usa","style_text","align","left_font","weight_bold","state","style_text","align","left_font","weight_bold","number","style_text","align","left_font","weight_bold","align","left","maine","align","left","vermont","align","left","new_hampshire","align","left","delaware","align","left","massachusetts","align","left","new_jersey","align","left","new_york","state_new_york","align","left","rhode_island","align","left","left","maryland","align","left","connecticut","align","left","washington","district","left","west_virginia","united_states","american","housing","stock","holiday","second_homes","compared","located","north_eastern","states","approximately","second_homes","us","located","inew_york","state_new_york","maine","largest","percentage","housing","stock","homes","immensely","popular","particularly","canada","summer","season","areferred","differently","different_parts","country","ontario","usually","cottage","cabin","lake","used","much","rest","canada","ontario","popular_destination","region","ontario","known","many","lakes","forests","even","referred","cottage","country","sees","million_visitors","annually","home","many","cottages","likewise","british_columbia","west_coast","another","popular","vacation","destination","seekers","vacation","properties","canadian","british_columbia","interior","vacation","properties","located_near","lakes","ski","resorts","also_common","winter","costs","effects","financial","legal","implications","uk","furnished","holiday","offer","tax","relief","providing","certain","conditions","methe","current","conditions","available","public","total","days","month","period","must","let","least","days","month","period","one","property","held","possible","average","number","days","properties","let","total","order","condition","total","periods","long_term","occupation","may","month","period","second","home","holiday","home_owners","used","able","claim","discounts","council","tax","united_kingdom","property","vacant","much","year","longer","true","many_areas","including","property","empty","furnished","discount","permitted","owner","liable","pay","tax","full","cornwall","since","second","home_owners","claim","discount","council","tax","prior","could","claim","discount","cornwall","still","able","claim","many_areas","england","welsh","movement","movement","promote","principle","owners","holiday","pay","double","standard","rate","council","tax","invest","local_community","seen","report","theffect","holiday","homes","scotland","found","thathose","went","holiday","scotland","spent","average","day","comparison","day","spent","visiting","holiday","second_homes","owners","holiday","homes","occasionally","move","second_homes","permanently","upon","culture","area","especially","wales","influx","non","welsh","speakers","affects","percentage","welsh","speakers","areand","reduces","use","welsh","everyday","life","hundreds","second_homes","burnt","mid","part","campaign","movement","r","protecthe","indigenous","language","culture","see_also","frame","house","apartment","cottage","log","cabin","villa","mountain","hut","wilderness_hut","flats","airbnb","homeaway","housetrip","timeshare","hotel","destination","club","mar","del","plata","style","lake","house","real","category","house","types","category_hotel","types","category","holiday","related","topics","category_tourist","accommodations"],"clean_bigrams":[["file","holiday"],["geographorguk","jpg"],["jpg","thumb"],["thumb","holiday"],["holiday","cottages"],["converted","farm"],["farm","buildings"],["file","holiday"],["holiday","cottages"],["cottages","geographorguk"],["geographorguk","jpg"],["jpg","thumb"],["thumb","purpose"],["purpose","built"],["built","holiday"],["holiday","cottages"],["cottages","near"],["northern","ireland"],["ireland","file"],["file","architecture"],["holiday","cottage"],["cottage","holiday"],["holiday","home"],["vacation","property"],["accommodation","used"],["typically","small"],["properties","may"],["term","second"],["second","home"],["home","applies"],["rented","outo"],["outo","holidaymakers"],["agency","terminology"],["terminology","varies"],["varies","among"],["among","countries"],["united","kingdom"],["usually","termed"],["holiday","home"],["holiday","cottage"],["australia","holiday"],["holiday","house"],["house","home"],["inew","zealand"],["new","zealand"],["crib","characteristics"],["second","home"],["vacation","home"],["home","owner"],["could","provide"],["provide","additional"],["additional","income"],["income","many"],["many","vacationers"],["single","family"],["family","residence"],["residence","thathey"],["weekly","basis"],["many","cases"],["significant","compared"],["vacation","packages"],["people","begin"],["trend","vacation"],["vacation","type"],["type","properties"],["becoming","popular"],["existing","homes"],["building","one"],["one","renting"],["holiday","cottage"],["cottage","gives"],["gives","vacationers"],["generally","come"],["hotel","usually"],["day","guests"],["guests","need"],["son","young"],["young","children"],["moreasily","accommodated"],["holiday","cottage"],["feel","pressure"],["hotel","resort"],["young","children"],["facthat","guests"],["holiday","home"],["home","together"],["together","often"],["often","withree"],["withree","generations"],["larger","houses"],["houses","brings"],["much","different"],["different","atmosphere"],["holiday","cottages"],["nowadays","found"],["found","across"],["many","destinations"],["town","houses"],["forests","new"],["new","forest"],["forest","holiday"],["holiday","cottages"],["recent","years"],["years","gaining"],["higher","profile"],["new","forest"],["forest","becoming"],["national","park"],["park","many"],["many","areas"],["holiday","cottage"],["cottage","industry"],["lake","district"],["typically","two"],["two","routes"],["several","holiday"],["holiday","home"],["list","cottages"],["cottages","available"],["available","direct"],["holiday","cottage"],["cottage","market"],["highly","competitive"],["big","business"],["increased","competition"],["significant","improvements"],["quality","appliances"],["cases","providing"],["boutique","hotel"],["turn","contributed"],["holiday","cottages"],["weekend","breaks"],["breaks","offering"],["many","cases"],["hotel","yet"],["yet","withe"],["withe","increased"],["increased","freedom"],["holiday","cottage"],["cottage","offers"],["offers","one"],["significant","development"],["uk","holiday"],["holiday","cottage"],["cottage","market"],["stays","driven"],["driven","partly"],["parents","wanting"],["first","hand"],["personal","digital"],["digital","assistant"],["allow","people"],["home","since"],["since","circa"],["vacation","property"],["primary","residence"],["business","people"],["people","including"],["branson","use"],["luxury","real"],["real","estate"],["leisure","purposes"],["purposes","many"],["many","internet"],["internet","services"],["connect","shorterm"],["shorterm","rental"],["rental","customers"],["vacation","properties"],["properties","united"],["united","kingdom"],["kingdom","class"],["class","infobox"],["infobox","style"],["style","text"],["text","align"],["align","right"],["right","font"],["font","size"],["size","colspan"],["colspan","style"],["style","text"],["text","align"],["align","center"],["center","font"],["font","size"],["size","font"],["font","weight"],["weight","bold"],["bold","holiday"],["holiday","second"],["second","homes"],["england","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","region"],["region","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","number"],["number","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","align"],["align","left"],["left","cornwall"],["align","left"],["left","dorset"],["dorset","align"],["align","left"],["left","norfolk"],["norfolk","align"],["align","left"],["left","devon"],["devon","align"],["align","left"],["left","east"],["east","sussex"],["sussex","align"],["align","left"],["left","northumberland"],["northumberland","align"],["align","left"],["left","north"],["north","yorkshire"],["yorkshire","align"],["align","left"],["left","west"],["west","sussex"],["sussex","align"],["align","left"],["left","suffolk"],["suffolk","holiday"],["holiday","homes"],["second","homes"],["homes","comprise"],["housing","stock"],["snowdonia","wales"],["wales","compared"],["figure","ofor"],["council","put"],["place","measures"],["holiday","homes"],["homes","buthey"],["control","new"],["new","developments"],["stop","anyone"],["holiday","home"],["region","whichas"],["highest","number"],["second","homes"],["england","within"],["year","alone"],["holiday","second"],["second","homes"],["england","increased"],["class","infobox"],["infobox","style"],["style","text"],["text","align"],["align","right"],["right","font"],["font","size"],["size","colspan"],["colspan","style"],["style","text"],["text","align"],["align","center"],["center","font"],["font","size"],["size","font"],["font","weight"],["weight","bold"],["bold","holiday"],["holiday","second"],["second","homes"],["scotland","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","region"],["region","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","align"],["align","left"],["left","argyll"],["align","left"],["align","left"],["align","left"],["islands","align"],["align","left"],["islands","align"],["align","left"],["left","perth"],["align","left"],["left","north"],["north","ayrshire"],["ayrshire","align"],["align","left"],["align","left"],["left","scottish"],["scottish","borders"],["borders","align"],["align","left"],["align","left"],["align","left"],["left","south"],["south","ayrshire"],["ayrshire","align"],["align","left"],["left","stirling"],["stirling","align"],["align","left"],["left","east"],["align","left"],["angus","align"],["align","left"],["align","left"],["left","edinburgh"],["edinburgh","align"],["align","left"],["left","aberdeen"],["aberdeen","align"],["align","left"],["align","left"],["align","left"],["left","east"],["east","ayrshire"],["ayrshire","align"],["align","left"],["align","left"],["left","glasgow"],["glasgow","align"],["align","left"],["align","left"],["left","south"],["south","lanarkshire"],["lanarkshire","align"],["align","left"],["left","west"],["align","left"],["left","east"],["align","left"],["left","east"],["align","left"],["left","north"],["north","lanarkshire"],["lanarkshire","align"],["align","left"],["align","left"],["left","west"],["holiday","summer"],["summer","homes"],["scottish","census"],["housing","stock"],["buthe","majority"],["increase","occurreduring"],["greatest","increase"],["increase","waseen"],["urban","areas"],["areas","contrary"],["usual","trends"],["increased","especially"],["aberdeen","buthe"],["buthe","majority"],["holiday","second"],["second","homes"],["rural","areas"],["areas","notably"],["remote","rural"],["rural","areas"],["every","eight"],["eight","house"],["holiday","second"],["second","home"],["also","fairly"],["fairly","high"],["high","approximately"],["housing","stock"],["holiday","second"],["second","home"],["home","buthe"],["buthe","majority"],["approximately","homes"],["total","housing"],["housing","stock"],["british","owners"],["owners","italian"],["italian","belgian"],["belgian","dutch"],["dutch","spanish"],["american","united"],["united","states"],["states","class"],["class","infobox"],["infobox","style"],["style","text"],["text","align"],["align","right"],["right","font"],["font","size"],["size","colspan"],["colspan","style"],["style","text"],["text","align"],["align","center"],["center","font"],["font","size"],["size","font"],["font","weight"],["weight","bold"],["bold","holiday"],["holiday","second"],["second","homes"],["homes","inorth"],["inorth","east"],["east","usa"],["usa","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","state"],["state","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","number"],["number","style"],["style","text"],["text","align"],["align","left"],["left","font"],["font","weight"],["weight","bold"],["bold","align"],["align","left"],["left","maine"],["maine","align"],["align","left"],["left","vermont"],["vermont","align"],["align","left"],["left","new"],["new","hampshire"],["hampshire","align"],["align","left"],["left","delaware"],["delaware","align"],["align","left"],["left","massachusetts"],["massachusetts","align"],["align","left"],["left","new"],["new","jersey"],["jersey","align"],["align","left"],["left","new"],["new","york"],["york","state"],["state","new"],["new","york"],["york","align"],["align","left"],["left","rhode"],["rhode","island"],["island","align"],["align","left"],["left","maryland"],["maryland","align"],["align","left"],["left","connecticut"],["connecticut","align"],["align","left"],["left","washington"],["left","west"],["west","virginia"],["united","states"],["states","american"],["american","housing"],["housing","stock"],["holiday","second"],["second","homes"],["homes","compared"],["north","eastern"],["eastern","states"],["second","homes"],["us","located"],["located","inew"],["inew","york"],["york","state"],["state","new"],["new","york"],["largest","percentage"],["housing","stock"],["immensely","popular"],["popular","particularly"],["canada","summer"],["summer","season"],["different","parts"],["usually","cottage"],["popular","destination"],["ontario","known"],["many","lakes"],["even","referred"],["cottage","country"],["million","visitors"],["visitors","annually"],["theast","coasthe"],["cottages","likewise"],["likewise","british"],["british","columbia"],["west","coast"],["another","popular"],["popular","vacation"],["vacation","destination"],["vacation","properties"],["british","columbia"],["columbia","interior"],["interior","vacation"],["vacation","properties"],["located","near"],["ski","resorts"],["also","common"],["winter","costs"],["effects","financial"],["legal","implications"],["uk","furnished"],["furnished","holiday"],["tax","relief"],["relief","providing"],["providing","certain"],["certain","conditions"],["methe","current"],["current","conditions"],["month","period"],["least","days"],["month","period"],["total","periods"],["long","term"],["term","occupation"],["occupation","may"],["month","period"],["period","second"],["second","home"],["holiday","home"],["home","owners"],["owners","used"],["claim","discounts"],["council","tax"],["united","kingdom"],["longer","true"],["many","areas"],["areas","including"],["cornwall","since"],["since","second"],["second","home"],["home","owners"],["council","tax"],["tax","prior"],["could","claim"],["still","able"],["many","areas"],["welsh","movement"],["pay","double"],["standard","rate"],["council","tax"],["local","community"],["holiday","homes"],["found","thathose"],["scotland","spent"],["day","spent"],["holiday","second"],["second","homes"],["homes","owners"],["holiday","homes"],["occasionally","move"],["second","homes"],["homes","permanently"],["permanently","upon"],["area","especially"],["non","welsh"],["welsh","speakers"],["speakers","affects"],["welsh","speakers"],["areand","reduces"],["everyday","life"],["life","hundreds"],["second","homes"],["protecthe","indigenous"],["indigenous","language"],["culture","see"],["see","also"],["frame","house"],["house","apartment"],["log","cabin"],["mountain","hut"],["wilderness","hut"],["flats","airbnb"],["airbnb","homeaway"],["homeaway","housetrip"],["hotel","destination"],["destination","club"],["club","mar"],["mar","del"],["del","plata"],["plata","style"],["style","lake"],["lake","house"],["house","real"],["category","house"],["house","types"],["types","category"],["category","hotel"],["hotel","types"],["types","category"],["category","holiday"],["holiday","related"],["related","topics"],["topics","category"],["category","tourist"],["tourist","accommodations"]],"all_collocations":["file holiday","geographorguk jpg","thumb holiday","holiday cottages","converted farm","farm buildings","file holiday","holiday cottages","cottages geographorguk","geographorguk jpg","thumb purpose","purpose built","built holiday","holiday cottages","cottages near","northern ireland","ireland file","file architecture","holiday cottage","cottage holiday","holiday home","vacation property","accommodation used","typically small","properties may","term second","second home","home applies","rented outo","outo holidaymakers","agency terminology","terminology varies","varies among","among countries","united kingdom","usually termed","holiday home","holiday cottage","australia holiday","holiday house","house home","inew zealand","new zealand","crib characteristics","second home","vacation home","home owner","could provide","provide additional","additional income","income many","many vacationers","single family","family residence","residence thathey","weekly basis","many cases","significant compared","vacation packages","people begin","trend vacation","vacation type","type properties","becoming popular","existing homes","building one","one renting","holiday cottage","cottage gives","gives vacationers","generally come","hotel usually","day guests","guests need","son young","young children","moreasily accommodated","holiday cottage","feel pressure","hotel resort","young children","facthat guests","holiday home","home together","together often","often withree","withree generations","larger houses","houses brings","much different","different atmosphere","holiday cottages","nowadays found","found across","many destinations","town houses","forests new","new forest","forest holiday","holiday cottages","recent years","years gaining","higher profile","new forest","forest becoming","national park","park many","many areas","holiday cottage","cottage industry","lake district","typically two","two routes","several holiday","holiday home","list cottages","cottages available","available direct","holiday cottage","cottage market","highly competitive","big business","increased competition","significant improvements","quality appliances","cases providing","boutique hotel","turn contributed","holiday cottages","weekend breaks","breaks offering","many cases","hotel yet","yet withe","withe increased","increased freedom","holiday cottage","cottage offers","offers one","significant development","uk holiday","holiday cottage","cottage market","stays driven","driven partly","parents wanting","first hand","personal digital","digital assistant","allow people","home since","since circa","vacation property","primary residence","business people","people including","branson use","luxury real","real estate","leisure purposes","purposes many","many internet","internet services","connect shorterm","shorterm rental","rental customers","vacation properties","properties united","united kingdom","kingdom class","class infobox","infobox style","style text","right font","font size","size colspan","colspan style","style text","center font","font size","size font","font weight","weight bold","bold holiday","holiday second","second homes","england style","style text","left font","font weight","weight bold","bold region","region style","style text","left font","font weight","weight bold","bold number","number style","style text","left font","font weight","weight bold","bold align","left cornwall","left dorset","dorset align","left norfolk","norfolk align","left devon","devon align","left east","east sussex","sussex align","left northumberland","northumberland align","left north","north yorkshire","yorkshire align","left west","west sussex","sussex align","left suffolk","suffolk holiday","holiday homes","second homes","homes comprise","housing stock","snowdonia wales","wales compared","figure ofor","council put","place measures","holiday homes","homes buthey","control new","new developments","stop anyone","holiday home","region whichas","highest number","second homes","england within","year alone","holiday second","second homes","england increased","class infobox","infobox style","style text","right font","font size","size colspan","colspan style","style text","center font","font size","size font","font weight","weight bold","bold holiday","holiday second","second homes","scotland style","style text","left font","font weight","weight bold","bold region","region style","style text","left font","font weight","weight bold","bold align","left argyll","islands align","islands align","left perth","left north","north ayrshire","ayrshire align","left scottish","scottish borders","borders align","left south","south ayrshire","ayrshire align","left stirling","stirling align","left east","angus align","left edinburgh","edinburgh align","left aberdeen","aberdeen align","left east","east ayrshire","ayrshire align","left glasgow","glasgow align","left south","south lanarkshire","lanarkshire align","left west","left east","left east","left north","north lanarkshire","lanarkshire align","left west","holiday summer","summer homes","scottish census","housing stock","buthe majority","increase occurreduring","greatest increase","increase waseen","urban areas","areas contrary","usual trends","increased especially","aberdeen buthe","buthe majority","holiday second","second homes","rural areas","areas notably","remote rural","rural areas","every eight","eight house","holiday second","second home","also fairly","fairly high","high approximately","housing stock","holiday second","second home","home buthe","buthe majority","approximately homes","total housing","housing stock","british owners","owners italian","italian belgian","belgian dutch","dutch spanish","american united","united states","states class","class infobox","infobox style","style text","right font","font size","size colspan","colspan style","style text","center font","font size","size font","font weight","weight bold","bold holiday","holiday second","second homes","homes inorth","inorth east","east usa","usa style","style text","left font","font weight","weight bold","bold state","state style","style text","left font","font weight","weight bold","bold number","number style","style text","left font","font weight","weight bold","bold align","left maine","maine align","left vermont","vermont align","left new","new hampshire","hampshire align","left delaware","delaware align","left massachusetts","massachusetts align","left new","new jersey","jersey align","left new","new york","york state","state new","new york","york align","left rhode","rhode island","island align","left maryland","maryland align","left connecticut","connecticut align","left washington","left west","west virginia","united states","states american","american housing","housing stock","holiday second","second homes","homes compared","north eastern","eastern states","second homes","us located","located inew","inew york","york state","state new","new york","largest percentage","housing stock","immensely popular","popular particularly","canada summer","summer season","different parts","usually cottage","popular destination","ontario known","many lakes","even referred","cottage country","million visitors","visitors annually","theast coasthe","cottages likewise","likewise british","british columbia","west coast","another popular","popular vacation","vacation destination","vacation properties","british columbia","columbia interior","interior vacation","vacation properties","located near","ski resorts","also common","winter costs","effects financial","legal implications","uk furnished","furnished holiday","tax relief","relief providing","providing certain","certain conditions","methe current","current conditions","month period","least days","month period","total periods","long term","term occupation","occupation may","month period","period second","second home","holiday home","home owners","owners used","claim discounts","council tax","united kingdom","longer true","many areas","areas including","cornwall since","since second","second home","home owners","council tax","tax prior","could claim","still able","many areas","welsh movement","pay double","standard rate","council tax","local community","holiday homes","found thathose","scotland spent","day spent","holiday second","second homes","homes owners","holiday homes","occasionally move","second homes","homes permanently","permanently upon","area especially","non welsh","welsh speakers","speakers affects","welsh speakers","areand reduces","everyday life","life hundreds","second homes","protecthe indigenous","indigenous language","culture see","see also","frame house","house apartment","log cabin","mountain hut","wilderness hut","flats airbnb","airbnb homeaway","homeaway housetrip","hotel destination","destination club","club mar","mar del","del plata","plata style","style lake","lake house","house real","category house","house types","types category","category hotel","hotel types","types category","category holiday","holiday related","related topics","topics category","category tourist","tourist accommodations"],"new_description":"file holiday geographorguk_jpg thumb holiday_cottages converted farm buildings file holiday_cottages geographorguk_jpg thumb purpose_built holiday_cottages near northern_ireland file architecture thumb architecture port france holiday_cottage holiday home vacation property accommodation used holiday properties typically small cottage vacationers rent run home duration stay properties may owned using vacation case term second home applies may rented outo holidaymakers agency terminology varies among countries united_kingdom type property usually termed holiday home holiday_cottage australia holiday house home inew_zealand new_zealand crib characteristics advantages second home vacation home home owner asset renting could provide additional income many vacationers single family residence thathey rent nightly weekly basis many_cases savings significant compared hotels vacation packages owners rewarding paying people begin realize trend vacation type properties becoming popular existing homes also building one renting holiday_cottage gives vacationers freedom eat eat stay bed day generally come go please contrasto accommodation bed breakfast hotel usually sort restriction time day guests need cleaning son young children babies moreasily accommodated holiday_cottage parents feel pressure families hotel resort may young children facthat guests holiday home together often withree generations larger houses brings much different atmosphere holiday_cottages nowadays found across length breadth uk many destinations town houses forests new forest holiday_cottages become_popular recent_years gaining higher profile news new forest becoming national_park many_areas uk seen growth holiday_cottage industry lake_district cornwall typically two routes renting holiday direct owner auspices holiday several holiday home list cottages available direct owner charge fee listing property holiday_cottage market canadand uk highly competitive big business uk increased competition led significant improvements quality properties offer gone carpets furniture old replaced character quality appliances cases providing standard accommodation akin boutique_hotel improvement standards turn contributed increase popularity holiday_cottages weekend breaks offering many_cases standard accommodation hotel yet withe increased freedom holiday_cottage offers one significant development uk holiday_cottage market stays driven partly farmers get farming also desire parents wanting children experience first hand internet telephony personal digital assistant allow people work home since circa division vacation property primary residence business people including british branson use luxury real_estate business leisure purposes many internet services developed connect shorterm rental customers owners brokers vacation properties united_kingdom class infobox style_text align right font_size colspan_style_text align center font_size font_weight_bold holiday second_homes england style_text align left_font weight_bold region style_text align left_font weight_bold number style_text align left_font weight_bold align left cornwall isles align left left dorset align left norfolk align left devon align left east sussex align left northumberland align left north_yorkshire align left west sussex align left suffolk holiday homes second_homes comprise housing stock snowdonia wales compared figure ofor whole wales council put place measures control number holiday homes buthey control new developments permission consent likely raise figure community stop anyone buying holiday home number cornwall isles calculated region whichas highest number second_homes england within year alone percentage holiday second_homes england increased class infobox style_text align right font_size colspan_style_text align center font_size font_weight_bold holiday second_homes scotland style_text align left_font weight_bold region style_text align left_font weight_bold align left argyll align left_align left_align left islands align left islands align left perth align left north ayrshire align left_align left scottish borders align left_align left_align left south ayrshire align left stirling align left east align left angus align left_align left edinburgh align left aberdeen align left_align left_align left east ayrshire align left_align left glasgow align left_align left south lanarkshire align left west align left east align left east align left north lanarkshire align left_align left west holiday summer homes scotland scottish census accounted scotland housing stock figure buthe majority increase occurreduring greatest increase waseen urban_areas contrary usual trends increased especially edinburgh aberdeen buthe majority holiday second_homes still found rural_areas notably found remote rural_areas one every eight house holiday second home figure france also fairly high approximately housing stock holiday second home buthe majority owned french approximately homes total housing stock property owners abroad percentage owned british owners italian belgian dutch spanish american united_states class infobox style_text align right font_size colspan_style_text align center font_size font_weight_bold holiday second_homes inorth east usa style_text align left_font weight_bold state style_text align left_font weight_bold number style_text align left_font weight_bold align left maine align left vermont align left new_hampshire align left delaware align left massachusetts align left new_jersey align left new_york state_new_york align left rhode_island align left left maryland align left connecticut align left washington district left west_virginia united_states american housing stock holiday second_homes compared located north_eastern states approximately second_homes us located inew_york state_new_york maine largest percentage housing stock homes immensely popular particularly canada summer season areferred differently different_parts country ontario usually cottage cabin lake used much rest canada ontario popular_destination region ontario known many lakes forests even referred cottage country sees million_visitors annually theast_coasthe home many cottages likewise british_columbia west_coast another popular vacation destination seekers vacation properties canadian british_columbia interior vacation properties located_near lakes ski resorts also_common winter costs effects financial legal implications uk furnished holiday offer tax relief providing certain conditions methe current conditions available public total days month period must let least days month period one property held possible average number days properties let total order condition total periods long_term occupation may month period second home holiday home_owners used able claim discounts council tax united_kingdom property vacant much year longer true many_areas including property empty furnished discount permitted owner liable pay tax full cornwall since second home_owners claim discount council tax prior could claim discount cornwall still able claim many_areas england welsh movement movement promote principle owners holiday pay double standard rate council tax invest local_community seen report theffect holiday homes scotland found thathose went holiday scotland spent average day comparison day spent visiting holiday second_homes owners holiday homes occasionally move second_homes permanently upon culture area especially wales influx non welsh speakers affects percentage welsh speakers areand reduces use welsh everyday life hundreds second_homes burnt mid part campaign movement r protecthe indigenous language culture see_also frame house apartment cottage log cabin villa mountain hut wilderness_hut flats airbnb homeaway housetrip timeshare hotel destination club mar del plata style lake house real category house types category_hotel types category holiday related topics category_tourist accommodations"},{"title":"Holidaymaker (magazine)","description":"type seasonal newspaper formatabloid newspaper formatabloid price free owners tindle newspapers language welsh language welsh and english languagenglisheadquarters aberystwyth editor beverly thomas website cambrianewscouk holidaymaker is a seasonal publication produced by cambrianews for publicising tourism attractions and activities in parts of wales a full colour print it lists attractions activities and ideas of whato do and where to go produced in three regional editions covering ceredigion mid wales gwynedd and pembrokeshire it is printed in threeditions in spring easter and summer since holidaymaker can be viewed for free as an online publication externalinks holidaymaker online category free magazines category magazines with year of establishment missing category magazines with year of disestablishment missing category british online magazines category online magazines with defunct print editions category tourism in wales category welsh magazines category tourismagazines","main_words":["type","seasonal","newspaper","newspaper","price","free","owners","newspapers","language","welsh","language","welsh","english","editor","beverly","thomas","website","seasonal","publication","produced","tourism","attractions","activities","parts","wales","full","colour","print","lists","attractions","activities","ideas","whato","go","produced","three","regional","editions","covering","mid","wales","printed","spring","easter","summer","since","viewed","free","online","publication","externalinks","online","category_free_magazines","category_magazines","year","establishment","year","online_magazines_category","defunct","print","editions","category_tourism","wales","category","welsh","magazines_category","tourismagazines"],"clean_bigrams":[["type","seasonal"],["seasonal","newspaper"],["price","free"],["free","owners"],["newspapers","language"],["language","welsh"],["welsh","language"],["language","welsh"],["editor","beverly"],["beverly","thomas"],["thomas","website"],["seasonal","publication"],["publication","produced"],["tourism","attractions"],["attractions","activities"],["full","colour"],["colour","print"],["lists","attractions"],["attractions","activities"],["go","produced"],["three","regional"],["regional","editions"],["editions","covering"],["mid","wales"],["spring","easter"],["summer","since"],["online","publication"],["publication","externalinks"],["online","category"],["category","free"],["free","magazines"],["magazines","category"],["category","magazines"],["establishment","missing"],["missing","category"],["category","magazines"],["missing","category"],["category","british"],["british","online"],["online","magazines"],["magazines","category"],["category","online"],["online","magazines"],["defunct","print"],["print","editions"],["editions","category"],["category","tourism"],["wales","category"],["category","welsh"],["welsh","magazines"],["magazines","category"],["category","tourismagazines"]],"all_collocations":["type seasonal","seasonal newspaper","price free","free owners","newspapers language","language welsh","welsh language","language welsh","editor beverly","beverly thomas","thomas website","seasonal publication","publication produced","tourism attractions","attractions activities","full colour","colour print","lists attractions","attractions activities","go produced","three regional","regional editions","editions covering","mid wales","spring easter","summer since","online publication","publication externalinks","online category","category free","free magazines","magazines category","category magazines","establishment missing","missing category","category magazines","missing category","category british","british online","online magazines","magazines category","category online","online magazines","defunct print","print editions","editions category","category tourism","wales category","category welsh","welsh magazines","magazines category","category tourismagazines"],"new_description":"type seasonal newspaper newspaper price free owners newspapers language welsh language welsh english editor beverly thomas website seasonal publication produced tourism attractions activities parts wales full colour print lists attractions activities ideas whato go produced three regional editions covering mid wales printed spring easter summer since viewed free online publication externalinks online category_free_magazines category_magazines year establishment missing_category_magazines year missing_category_british online_magazines_category online_magazines defunct print editions category_tourism wales category welsh magazines_category tourismagazines"},{"title":"Holland Herald","description":"holland herald is the inflight magazine of the dutch airline klm it is the oldest inflight magazine history and profile holland herald was first published on january in the first year the magazine was published bimonthly and black and white next year its frequency waswitched to monthly the magazine is published in englisholland herald was formerly published by the ink publishing the company began to publish it in gruner und jahr g j media is the publisher of the magazine cnnamed holland herald as the tenth best inflight magazine worldwide in the first d printing d advertisement was published in the magazine it featured a beer brand heineken externalinks official website category establishments in the netherlands category air france klm category dutch magazines category dutch monthly magazines category inflight magazines category magazinestablished in category tourismagazines category english language magazines category gruner jahr","main_words":["holland","herald","inflight_magazine","dutch","airline","oldest","inflight_magazine","history","profile","holland","herald","first_published","january","first_year","magazine_published","bimonthly","black","white","next","year","frequency","monthly","magazine_published","herald","formerly","published","ink","publishing_company","began","publish","und","g","j","media","publisher","magazine","holland","herald","tenth","best","inflight_magazine","worldwide","first","printing","advertisement","published","magazine","featured","beer","brand","externalinks_official_website_category_establishments","dutch","magazines_category","dutch","monthly_magazines_category","inflight_magazines_category_magazinestablished","category_tourismagazines","category_english_language_magazines","category"],"clean_bigrams":[["holland","herald"],["inflight","magazine"],["dutch","airline"],["oldest","inflight"],["inflight","magazine"],["magazine","history"],["profile","holland"],["holland","herald"],["first","published"],["first","year"],["published","bimonthly"],["white","next"],["next","year"],["formerly","published"],["ink","publishing"],["company","began"],["g","j"],["j","media"],["holland","herald"],["tenth","best"],["best","inflight"],["inflight","magazine"],["magazine","worldwide"],["beer","brand"],["externalinks","official"],["official","website"],["website","category"],["category","establishments"],["netherlands","category"],["category","air"],["air","france"],["category","dutch"],["dutch","magazines"],["magazines","category"],["category","dutch"],["dutch","monthly"],["monthly","magazines"],["magazines","category"],["category","inflight"],["inflight","magazines"],["magazines","category"],["category","magazinestablished"],["category","tourismagazines"],["tourismagazines","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"]],"all_collocations":["holland herald","inflight magazine","dutch airline","oldest inflight","inflight magazine","magazine history","profile holland","holland herald","first published","first year","published bimonthly","white next","next year","formerly published","ink publishing","company began","g j","j media","holland herald","tenth best","best inflight","inflight magazine","magazine worldwide","beer brand","externalinks official","official website","website category","category establishments","netherlands category","category air","air france","category dutch","dutch magazines","magazines category","category dutch","dutch monthly","monthly magazines","magazines category","category inflight","inflight magazines","magazines category","category magazinestablished","category tourismagazines","tourismagazines category","category english","english language","language magazines","magazines category"],"new_description":"holland herald inflight_magazine dutch airline oldest inflight_magazine history profile holland herald first_published january first_year magazine_published bimonthly black white next year frequency monthly magazine_published herald formerly published ink publishing_company began publish und g j media publisher magazine holland herald tenth best inflight_magazine worldwide first printing advertisement published magazine featured beer brand externalinks_official_website_category_establishments netherlands_category_air france_category dutch magazines_category dutch monthly_magazines_category inflight_magazines_category_magazinestablished category_tourismagazines category_english_language_magazines category"},{"title":"Hollywood Wax Museum","description":"established february dissolved location hollywood boulevard hollywood los angeles california type wax museum visitors curator publictransit website the hollywood wax museum is a wax museum featuring replicas of celebrities located on hollywood boulevard in the tourist district in hollywood california with other locations in myrtle beach branson missouri branson and pigeon forge among the wax replicas on display include those of a listars classic entertainers and legendary singers elvis presley the museum brainchild of entrepreneur spoony singh opened on february and claims in promotionaliterature to be the only wax museum dedicated solely to celebrities it is the longest running wax museum in the united states when singh opened the hollywood wax museum the line to get in was mile long the former sawmill operator from canada builthe museum s fame by befriending celebrities gossip columnists members of the foreign press association and fans after singh s retirement hisons and grandson have continued town operate and further the hollywood wax museum s legacy in june the family was recognized as heroes of hollywood by the hollywood chamber of commerce community foundation for their staunch and generousupport of the hollywood community in popular culture the hollywood wax museum has appeared in the following movies and tv shows the mechanic film the mechanic wes craven s cursed film cursed and america s nextop model the hollywood wax museum is also featured on the video game midnight club los angeles the hollywood wax museum building once housed the most exclusive hangout in los angeles thembassy club it is on hollywood blvd near highland ave sets and exhibitions wax figures and sets featuring replicas of celebrities continue to change regularly there is also a chamber of horrors featuring classic and current movie monsters other locations the group opened hollywood wax museum branson in branson missourin which was completely renovated in and was recognized withe branson beautification award for improving an important stretch of the highway strip the next hollywood wax museum was opened in gatlinburg tennessee in and closed in to make way for the larger hollywood wax museum pigeon forge attraction in pigeon forge tennessee that opened in may the fourth location opened in myrtle beach south carolina in athe broadway athe beach shopping center in singh expanded his business operations after opening the thousand oakself storage now known as the hollywood storage center of thousand oaks hollywood storage center hollywood wax museum branson mojpg hollywood wax museum in branson mo hollywood wax museum pigeon forge tnjpg hollywood wax museum in pigeon forge tn hollywood wax museumyrtle beach scjpg hollywood wax museum in myrtle beach sc externalinks hollywood wax museum official site category hollywood history and culture category museums in los angeles category museums established in category media museums in california category wax museums in california category buildings and structures in hollywood category hollywood boulevard category tourism","main_words":["established","february","dissolved","location","hollywood","boulevard","hollywood","los_angeles","california","type","wax_museum","visitors","curator","publictransit","website","hollywood_wax","museum","wax_museum","featuring","replicas","celebrities","located","hollywood","boulevard","tourist","district","hollywood","california","locations","myrtle_beach","branson_missouri","branson","pigeon_forge","among","replicas","display","include","classic","entertainers","legendary","singers","elvis","museum","entrepreneur","singh","opened","february","claims","wax_museum","dedicated","solely","celebrities","longest_running","wax_museum","united_states","singh","opened","hollywood_wax","museum","line","get","mile","long","former","operator","canada","builthe","museum","fame","celebrities","gossip","columnists","members","foreign","press","association","fans","singh","retirement","grandson","continued","town","operate","hollywood_wax","museum","legacy","june","family","recognized","heroes","hollywood","hollywood","chamber","commerce","community","foundation","hollywood","community","popular_culture","hollywood_wax","museum","appeared","following","movies","shows","film","film","america","model","hollywood_wax","museum","also","featured","video_game","midnight","club","los_angeles","hollywood_wax","museum","building","housed","exclusive","hangout","los_angeles","club","hollywood","near","highland","ave","sets","exhibitions","figures","sets","featuring","replicas","celebrities","continue","change","regularly","also","chamber","featuring","classic","current","movie","locations","group","opened","hollywood_wax","museum","branson","branson","completely","renovated","recognized","withe","branson","award","improving","important","stretch","highway","strip","next","hollywood_wax","museum","opened","tennessee","closed","make","way","larger","hollywood_wax","museum","pigeon_forge","attraction","pigeon_forge_tennessee","opened","may","fourth","location","opened","myrtle_beach","south_carolina","athe","broadway","athe","beach","shopping_center","singh","expanded","business","operations","opening","thousand","storage","known","hollywood","storage","center","thousand","oaks","hollywood","storage","center","hollywood_wax","museum","branson","hollywood_wax","museum","branson","hollywood_wax","museum","pigeon_forge","hollywood_wax","museum","pigeon_forge","hollywood_wax","beach","hollywood_wax","museum","myrtle_beach","externalinks","hollywood_wax","museum","official_site_category","hollywood","history","culture_category","museums","los_angeles","category_museums","established","category_media","museums","california_category","california_category","buildings","structures","hollywood","category","hollywood","boulevard","category_tourism"],"clean_bigrams":[["established","february"],["february","dissolved"],["dissolved","location"],["location","hollywood"],["hollywood","boulevard"],["boulevard","hollywood"],["hollywood","los"],["los","angeles"],["angeles","california"],["california","type"],["type","wax"],["wax","museum"],["museum","visitors"],["visitors","curator"],["curator","publictransit"],["publictransit","website"],["hollywood","wax"],["wax","museum"],["wax","museum"],["museum","featuring"],["featuring","replicas"],["celebrities","located"],["hollywood","boulevard"],["tourist","district"],["hollywood","california"],["myrtle","beach"],["beach","branson"],["branson","missouri"],["missouri","branson"],["pigeon","forge"],["forge","among"],["wax","replicas"],["display","include"],["classic","entertainers"],["legendary","singers"],["singers","elvis"],["singh","opened"],["wax","museum"],["museum","dedicated"],["dedicated","solely"],["longest","running"],["running","wax"],["wax","museum"],["united","states"],["singh","opened"],["opened","hollywood"],["hollywood","wax"],["wax","museum"],["mile","long"],["canada","builthe"],["builthe","museum"],["celebrities","gossip"],["gossip","columnists"],["columnists","members"],["foreign","press"],["press","association"],["continued","town"],["town","operate"],["hollywood","wax"],["wax","museum"],["hollywood","chamber"],["commerce","community"],["community","foundation"],["hollywood","community"],["popular","culture"],["hollywood","wax"],["wax","museum"],["following","movies"],["tv","shows"],["hollywood","wax"],["wax","museum"],["also","featured"],["video","game"],["game","midnight"],["midnight","club"],["club","los"],["los","angeles"],["hollywood","wax"],["wax","museum"],["museum","building"],["exclusive","hangout"],["los","angeles"],["near","highland"],["highland","ave"],["ave","sets"],["exhibitions","wax"],["wax","figures"],["sets","featuring"],["featuring","replicas"],["celebrities","continue"],["change","regularly"],["featuring","classic"],["current","movie"],["group","opened"],["opened","hollywood"],["hollywood","wax"],["wax","museum"],["museum","branson"],["completely","renovated"],["recognized","withe"],["withe","branson"],["important","stretch"],["highway","strip"],["next","hollywood"],["hollywood","wax"],["wax","museum"],["make","way"],["larger","hollywood"],["hollywood","wax"],["wax","museum"],["museum","pigeon"],["pigeon","forge"],["forge","attraction"],["pigeon","forge"],["forge","tennessee"],["fourth","location"],["location","opened"],["myrtle","beach"],["beach","south"],["south","carolina"],["athe","broadway"],["broadway","athe"],["athe","beach"],["beach","shopping"],["shopping","center"],["singh","expanded"],["business","operations"],["hollywood","storage"],["storage","center"],["thousand","oaks"],["oaks","hollywood"],["hollywood","storage"],["storage","center"],["center","hollywood"],["hollywood","wax"],["wax","museum"],["museum","branson"],["hollywood","wax"],["wax","museum"],["museum","branson"],["hollywood","wax"],["wax","museum"],["museum","pigeon"],["pigeon","forge"],["hollywood","wax"],["wax","museum"],["museum","pigeon"],["pigeon","forge"],["hollywood","wax"],["hollywood","wax"],["wax","museum"],["myrtle","beach"],["externalinks","hollywood"],["hollywood","wax"],["wax","museum"],["museum","official"],["official","site"],["site","category"],["category","hollywood"],["hollywood","history"],["culture","category"],["category","museums"],["los","angeles"],["angeles","category"],["category","museums"],["museums","established"],["category","media"],["media","museums"],["california","category"],["category","wax"],["wax","museums"],["california","category"],["category","buildings"],["hollywood","category"],["category","hollywood"],["hollywood","boulevard"],["boulevard","category"],["category","tourism"]],"all_collocations":["established february","february dissolved","dissolved location","location hollywood","hollywood boulevard","boulevard hollywood","hollywood los","los angeles","angeles california","california type","type wax","wax museum","museum visitors","visitors curator","curator publictransit","publictransit website","hollywood wax","wax museum","wax museum","museum featuring","featuring replicas","celebrities located","hollywood boulevard","tourist district","hollywood california","myrtle beach","beach branson","branson missouri","missouri branson","pigeon forge","forge among","wax replicas","display include","classic entertainers","legendary singers","singers elvis","singh opened","wax museum","museum dedicated","dedicated solely","longest running","running wax","wax museum","united states","singh opened","opened hollywood","hollywood wax","wax museum","mile long","canada builthe","builthe museum","celebrities gossip","gossip columnists","columnists members","foreign press","press association","continued town","town operate","hollywood wax","wax museum","hollywood chamber","commerce community","community foundation","hollywood community","popular culture","hollywood wax","wax museum","following movies","tv shows","hollywood wax","wax museum","also featured","video game","game midnight","midnight club","club los","los angeles","hollywood wax","wax museum","museum building","exclusive hangout","los angeles","near highland","highland ave","ave sets","exhibitions wax","wax figures","sets featuring","featuring replicas","celebrities continue","change regularly","featuring classic","current movie","group opened","opened hollywood","hollywood wax","wax museum","museum branson","completely renovated","recognized withe","withe branson","important stretch","highway strip","next hollywood","hollywood wax","wax museum","make way","larger hollywood","hollywood wax","wax museum","museum pigeon","pigeon forge","forge attraction","pigeon forge","forge tennessee","fourth location","location opened","myrtle beach","beach south","south carolina","athe broadway","broadway athe","athe beach","beach shopping","shopping center","singh expanded","business operations","hollywood storage","storage center","thousand oaks","oaks hollywood","hollywood storage","storage center","center hollywood","hollywood wax","wax museum","museum branson","hollywood wax","wax museum","museum branson","hollywood wax","wax museum","museum pigeon","pigeon forge","hollywood wax","wax museum","museum pigeon","pigeon forge","hollywood wax","hollywood wax","wax museum","myrtle beach","externalinks hollywood","hollywood wax","wax museum","museum official","official site","site category","category hollywood","hollywood history","culture category","category museums","los angeles","angeles category","category museums","museums established","category media","media museums","california category","category wax","wax museums","california category","category buildings","hollywood category","category hollywood","hollywood boulevard","boulevard category","category tourism"],"new_description":"established february dissolved location hollywood boulevard hollywood los_angeles california type wax_museum visitors curator publictransit website hollywood_wax museum wax_museum featuring replicas celebrities located hollywood boulevard tourist district hollywood california locations myrtle_beach branson_missouri branson pigeon_forge among wax replicas display include classic entertainers legendary singers elvis museum entrepreneur singh opened february claims wax_museum dedicated solely celebrities longest_running wax_museum united_states singh opened hollywood_wax museum line get mile long former operator canada builthe museum fame celebrities gossip columnists members foreign press association fans singh retirement grandson continued town operate hollywood_wax museum legacy june family recognized heroes hollywood hollywood chamber commerce community foundation hollywood community popular_culture hollywood_wax museum appeared following movies tv shows film film america model hollywood_wax museum also featured video_game midnight club los_angeles hollywood_wax museum building housed exclusive hangout los_angeles club hollywood near highland ave sets exhibitions wax figures sets featuring replicas celebrities continue change regularly also chamber featuring classic current movie locations group opened hollywood_wax museum branson branson completely renovated recognized withe branson award improving important stretch highway strip next hollywood_wax museum opened tennessee closed make way larger hollywood_wax museum pigeon_forge attraction pigeon_forge_tennessee opened may fourth location opened myrtle_beach south_carolina athe broadway athe beach shopping_center singh expanded business operations opening thousand storage known hollywood storage center thousand oaks hollywood storage center hollywood_wax museum branson hollywood_wax museum branson hollywood_wax museum pigeon_forge hollywood_wax museum pigeon_forge hollywood_wax beach hollywood_wax museum myrtle_beach externalinks hollywood_wax museum official_site_category hollywood history culture_category museums los_angeles category_museums established category_media museums california_category wax_museums california_category buildings structures hollywood category hollywood boulevard category_tourism"},{"title":"Holocaust tourism","description":"the holocaustourism is a term used by the media in relation to round trip travel to destinations connected withextermination of jews during the holocaust in world war iincluding visits to sites of jewish martyrology such as former nazi death camps and concentration camps turned into state museums it belongs to a category of the so called roots tourism usually across parts of central europe or more generally the western style dark tourism to sites of death andisaster the term holocaust first used in the late s was derived from the greek word holokauston meaning a completely burnt offering to god it has come to symbolize the systematic extermination of approximately six million european jews by nazi germany in german occupied europe occupied territories from to holocaust museum houston terms related to the holocaust retrieved augusthe term can also be applied to mean thestimated five to seven millionon jewish victims who were murdered by the nazis in the same time periodark tourism spectrum the term dark tourism was first coined in according to pr stone there is a dark tourism spectrum which differentiates between the shades of the dark tourism pr stone a dark tourism spectrum towards a typology of death and macabrelated tourist sites attractions and exhibition pdfile direct download kb vol no pp in pdfrom selected works of dr philip stone university of centralancashiretrieved augustyle width margin right auto border none border spacing px font size style text align center style backgroundarkestyle backgroundarker style backgroundark style background a a light style background c c lighter style background d lightesthe spectrum aids in identifying the intensity of bothe framework of supply and the consumption the darkestourism is characterized by the following elements education orientation historic background location authenticity in terms of relics non purposefulness and limited tourism infrastructure the objects of lightestourism have mostly opposite features entertainment orientation commercial centralization inauthenticity commercial purposefulness and higher level of tourism infrastructure professor william fs milestipulates that death and violent events transmitted between generations through survivors and witnesses are darker than other events miles also notes thathe level of darkness of a tourist destination may partially depend on the family background of the prospective touriststone distinguisheseven dark suppliers which create the dark tourism product and experience the model of seven dark suppliers demonstrate dark tourism as multi faceted phenomenon withextermination camp at auschwitz birkenau conceivably the darkest in terms of influence the dark camps of genocide are sites where genocide and violence were actually perpetrated all such sites belong to this category auschwitz was the largest of the nazi death camps in world war ii and is athe top of this list holocaust sites usually depend on government sponsorship among the seven dark suppliers are also war sites and battlefields dark conflict sites places of remembrances dark shrines cemeteries ofamous people dark resting places prisons and courthouses dark dungeons exhibits associated with death and suffering dark exhibitions and finally the tourist sites which emphasizentertainment dark fun factories postmemory and jewish identity file march of the living from auschwitz to birkenaujpg thumb upright march of the living from auschwitz to birkenau holocaustourism sites arelated to postmemory as well as cultural identity with postmemory being an important element in the motivations of holocaustourists marianne hirsch defines it in the following way postmemory is an interrelation between survivors and post holocaust generations of jews to save and transmithe holocaust experience the firstudies regarding the second generation began to appear in the s for example helen epstein s book children of the holocaust conversations with sons andaughters of survivors consists of interviews with survivors children from all over the worldhelen epstein children of the holocaust conversations with sons andaughters of survivors paw printsome survivors children s identities are dependent on their parents holocaust experience the jewish visits to holocaust sites are often efforts to explore the origins of their identity erica lehrer considers this jewish identity quest as a way to step into the flow ofamily community and history from which one feels displaced lehrerica t jewish poland revisited heritage tourism in unquiet places bloomington indiana university press p many jewish tours are made to establish a connection of survivors and second generation with an unknown place and or identity in central europe file ww holocaust polandpng thumb px holocaust map of polanduring the last years central europe has become the most popularegion for jewisheritage travels the recent increase in tourism is due to several historic events whichave opened the region poland solidarity polish trade union solidarity movement mikhail gorbachev s policies of glasnost and perestroikand the dissolution of the soviet union though many of the tourists have no direct experience of the holocaust many holocaustours visit authentic holocaust sitesuch as cemeteries and crematoria two principal destinations of holocaustourism are poland israel the relationship between those two countries in holocaustourism was best illustrated by the anthropologist jackugelmass who employed a performance approach to the shoa group missions in israel the march of the living motl was established in which organizes holocaustours for teenagers annually motl sends thousands of young people fromore than fifty countries to poland israel poland is one of the countries most visited by holocaustourists due to the number of death camp s in poland prior to world war ii poland had the largest jewish community in europe of which the holocaust in poland over three million were murderedeath and labor camps were built in central europe by the german occupational authorities in the late s and early s many of them in poland of which auschwitz was the first and largest in the period between and other death camps werestablished by the reich in occupied poland including majdanek in lublin birkenau in brzezinka treblinka near the village of treblinka bec extermination camp bec south east of lublin sobib r near the village of sobibor che mno near the village of che mno nad nerem robert d cherry annamaria orla bukowska rethinking poles and jews troubled past brighter future rowman littlefield google print p critical view holocaustourism despite itshort existence has come under criticism polish journalist and a jewish activist konstanty gebert noted anthropologist jackugelmass wrote thathe american trips to poland sponsored by the israeli ministry of education promote death rather than life because the holocaust sites allow for a strong emotional appeal to a mythologised identity by the same token the propagandist messages imposed by the organizers upon students participating in the shoah voyages are nationalistic rather than universalistic and inevitably impact on their empathy toward the palestinians as well the criticism of the shoah group missions by the israeli news and opinion had focused on its economic aspect with individual members calling for a generalized boycott of poland s holocaust related sites in order to stop the infusion of tourismonies prominent rabbis advocated that jews refrain from going to poland even if they wished to participate only in the official march of the living prof maximiliano korstanje from university of palermo wrote thathe holocaust site consumers unlikearly pilgrimseek to reinforce their own life vianother s deathe dark tourism bolsters the modern egocentrism on the principle thathe survivors are in a global competition for staying alive inevitably to enjoy the brother s tragedy rather than face the inevitability of one s own death korstanje m george b death and culture is thanatourism symptomatic of thend of capitalism in virtual traumascape and exploring the roots of dark tourism korstanje m george b eds hershey igi global this kind of survivalist superiority model however may lead to racist and ethnocentric tendencies questourism alternative questourism or the roots tourism is a type of cultural and ethnographic tourism focused on jewisheritage and their extermination as a historical tragedy this term was first used by e lehrer jewish poland revisited heritage tourism in unquiet places bloomington indiana university press it is different from holocaustourism because of its orientation to the tragic aspect of jewisheritage questourists have specific motivations and may be characterized by the following features they are as a rule descendants of holocaust survivors they travel individually or with close friends and family they are highly interested in travel they possesstrong postmemory their goal is to reveal the story and overcome the communal ideology virtual jewish communities there are three communities on the internet in which jewish related concerns and news are disseminated particularly regarding holocaustourism in germany and across central europe as described by js podoshen and jm hunthey are jewish current events a primarily north americand israeli forum withousands of postings concerning world events as well as jewish related news from global jewish periodicals religious judaism a community of over four thousands american orthodox and conservative jews whose mainterest is judaism and itspread throughouthe world the community isubdivided into groups based on geographic areas the group has published over one million posts and according to the community s archive the holocaust in relation tourism is one of the most discussed topics israeli news and opinion a site made up of jews living in and near israel which discusses news from popular israeli and jewish pressources references erica lehrer the quest scratching theart poland revisited bloomington indiana university press pp e jilovsky recreating postmemory children of holocaust survivors and the journey to auschwitz monash university pp r stone a dark tourism spectrum towards a typology of death and macabrelated tourist sites attractions and exhibition vol no pp a jankowska s m ller pohl e street a kosher shrimp the new museum in the context of holocaustourism in poland humanity in action poland c aviv d shneer new jews thend of the jewish diaspora new york university pp js podoshen jm hunt equity restoration the holocaust and tourism of sacred sites elsevier pp wmiles auschwitz museum interpretation andarker tourism usa pp korstanje m the rise of thana capitalism and tourism abingdon routledgexternalinks jewisheritage tours poland jewisheritage tours quest for family jewish currents auschwitz birkenau and memorial museum guided tour orthodox judaism the orthodox union israeli news and opinion history and meaning of the world holocaust vocabulary terms related to the holocaust furthereading t richmond konin one man s quest for a vanished jewish community vintage pp h epstein children of the holocaust conversations with sons andaughters of survivors putnam pp j benstock film documentary the holocaustourism uk tp thurnell read engaging auschwitz analysis of young travellers experiences of holocaustourism journal of tourism consumption and practice v pp issn x jfeldman above the death pits beneathe flag britain pp korstanje m e detaching thelementary forms of dark tourism anatolia verma s jain r exploiting tragedy for tourism research on humanities and social sciences korstanje m the anthropology of dark tourism cers unitersity of leeds uk working paper verma s exploiting tragedy dark tourism available at ssrn werdler k dark tourism and place identity managing and interpreting dark places journal of heritage tourism ahead of print gnoth j matteucci x a phenomenological view of the behavioural tourism research literature international journal of culture tourism and hospitality research potts t j dark tourism and the kitschification of touristudies wilson j z prison cultural memory andark tourism peter lang sather wagstaff j heritage that hurts tourists in the memoryscapes of september voleft coast press category the holocaustourism category cultural tourism","main_words":["holocaustourism","term_used","media","relation","round","trip","travel_destinations","connected","jews","holocaust","world_war","visits","sites","jewish","former","nazi","death","camps","concentration","camps","turned","state","museums","category","called","roots","tourism","usually","across","parts","central_europe","generally","western","style","dark_tourism","sites","death","term","holocaust","first_used","late","derived","greek","word","meaning","completely","burnt","offering","god","come","symbolize","systematic","approximately","six","million","european","jews","nazi","germany_german","occupied","europe","occupied","territories","holocaust","museum","houston","terms","related","holocaust","retrieved","augusthe","term","also","applied","mean","five","seven","jewish","victims","murdered","nazis","time","tourism","spectrum","term","dark_tourism","first","coined","according","stone","dark_tourism","spectrum","shades","dark_tourism","stone","dark_tourism","spectrum","towards","death","tourist_sites","attractions","exhibition","direct","download","vol","pp","selected","works","philip","stone","university","width","margin","right","auto","border","none","border","px","font_size","style_text","align","center","style","style","style","background","light","style","background","c","c","lighter","style","background","spectrum","aids","identifying","intensity","bothe","framework","supply","consumption","characterized","following","elements","education","orientation","historic","background","location","authenticity","terms","relics","non","limited","tourism","infrastructure","objects","mostly","opposite","features","entertainment","orientation","commercial","commercial","higher","level","tourism","infrastructure","professor","william","death","violent","events","transmitted","generations","survivors","darker","events","miles","also","notes","thathe","level","darkness","tourist_destination","may","partially","depend","family","background","prospective","dark","suppliers","create","dark_tourism","product","experience","model","seven","dark","suppliers","demonstrate","dark_tourism","multi","phenomenon","camp","auschwitz","birkenau","terms","influence","dark","camps","genocide","sites","genocide","violence","actually","sites","belong","category","auschwitz","largest","nazi","death","camps","world_war","ii","athe_top","list","holocaust","sites","usually","depend","government","sponsorship","among","seven","dark","suppliers","also","war","sites","battlefields","dark","conflict","sites","places","dark","shrines","cemeteries","ofamous","people","dark","resting","places","dark","exhibits","associated","death","suffering","dark","exhibitions","finally","tourist_sites","dark","fun","factories","postmemory","jewish","identity","file","march","living","auschwitz","thumb","upright","march","living","auschwitz","birkenau","holocaustourism","sites","arelated","postmemory","well","cultural","identity","postmemory","important","element","motivations","defines","following","way","postmemory","survivors","post","holocaust","generations","jews","save","holocaust","experience","regarding","second","generation","began","appear","example","helen","epstein","book","children","holocaust","conversations","sons","survivors","consists","interviews","survivors","children","epstein","children","holocaust","conversations","sons","survivors","survivors","children","identities","dependent","parents","holocaust","experience","jewish","visits","holocaust","sites","often","efforts","explore","origins","identity","considers","jewish","identity","quest","way","step","flow","community","history","one","feels","displaced","jewish","poland","revisited","heritage_tourism","places","bloomington","indiana","university_press_p","many","jewish","tours","made","establish","connection","survivors","second","generation","unknown","place","identity","central_europe","file","holocaust","thumb","px","holocaust","map","last_years","central_europe","become","jewisheritage","travels","recent","increase","tourism","due","several","historic","events","whichave","opened","region","poland","solidarity","polish","trade","union","solidarity","movement","policies","dissolution","soviet_union","though","many","tourists","direct","experience","holocaust","many","visit","authentic","holocaust","sitesuch","cemeteries","two","principal","destinations","holocaustourism","poland","israel","relationship","two","countries","holocaustourism","best","illustrated","anthropologist","employed","performance","approach","group","missions","israel","march","living","established","organizes","teenagers","annually","sends","thousands","young_people","fromore","fifty","countries","poland","israel","poland","one","countries","visited","due","number","death","camp","poland","prior","world_war","ii","poland","largest","jewish","community","europe","holocaust","poland","three","million","labor","camps","built","central_europe","german","occupational","authorities","late","early","many","poland","auschwitz","first","largest","period","death","camps","werestablished","reich","occupied","poland","including","birkenau","near","village","bec","camp","bec","south_east","r","near","village","che","near","village","che","nad","robert","cherry","poles","jews","past","brighter","future","google","print","p","critical","view","holocaustourism","despite","existence","come","criticism","polish","journalist","jewish","activist","noted","anthropologist","wrote","thathe","american","trips","poland","sponsored","israeli","ministry","education","promote","death","rather","life","holocaust","sites","allow","strong","emotional","appeal","identity","token","messages","imposed","organizers","upon","students","participating","voyages","rather","inevitably","impact","toward","well","criticism","group","missions","israeli","news","opinion","focused","economic","aspect","individual","members","calling","boycott","poland","holocaust","related","sites","order","stop","prominent","advocated","jews","going","poland","even","wished","participate","official","march","living","prof","maximiliano","korstanje","university","palermo","wrote","thathe","holocaust","site","consumers","reinforce","life","deathe","dark_tourism","modern","principle","thathe","survivors","global","competition","staying","alive","inevitably","enjoy","brother","tragedy","rather","face","one","death","korstanje","george_b","death","culture","thanatourism","thend","capitalism","virtual","traumascape","exploring","roots","dark_tourism","korstanje","george_b","eds","hershey_igi_global","kind","survivalist","superiority","model","however","may","lead","racist","alternative","roots","tourism","type","cultural","ethnographic","tourism","focused","jewisheritage","historical","tragedy","term","first_used","e","jewish","poland","revisited","heritage_tourism","places","bloomington","indiana","university_press","different","holocaustourism","orientation","aspect","jewisheritage","specific","motivations","may","characterized","following","features","rule","holocaust","survivors","travel","individually","close","friends","family","highly","interested","travel","postmemory","goal","reveal","story","overcome","communal","ideology","virtual","jewish","communities","three","communities","internet","jewish","related","concerns","news","particularly","regarding","holocaustourism","germany","across","central_europe","described","jewish","current","events","primarily","north_americand","israeli","forum","concerning","world","events","well","jewish","related","news","global","jewish","periodicals","religious","judaism","community","four","thousands","american","orthodox","conservative","jews","whose","judaism","throughouthe_world","community","groups","based","geographic","areas","group","published","one_million","posts","according","community","archive","holocaust","relation","tourism","one","discussed","topics","israeli","news","opinion","site","made","jews","living","near","israel","discusses","news","popular","israeli","jewish","references","quest","theart","poland","revisited","bloomington","indiana","e","recreating","postmemory","children","holocaust","survivors","journey","auschwitz","monash","university","pp","r","stone","dark_tourism","spectrum","towards","death","tourist_sites","attractions","exhibition","vol","pp","e","street","kosher","shrimp","new","museum","context","holocaustourism","poland","humanity","action","poland","c","aviv","new","jews","thend","jewish","diaspora","new_york","university","pp","hunt","equity","restoration","holocaust","tourism","sacred","sites","elsevier","pp","auschwitz","museum","interpretation","tourism","usa","pp_korstanje","rise","thana_capitalism","tourism","abingdon","jewisheritage","tours","poland","jewisheritage","tours","quest","family","jewish","currents","auschwitz","birkenau","memorial_museum","guided_tour","orthodox","judaism","orthodox","union","israeli","news","opinion","history","meaning","world","holocaust","terms","related","holocaust","furthereading","richmond","one","man","quest","jewish","community","vintage","pp","h","epstein","children","holocaust","conversations","sons","survivors","pp","j","film","documentary","holocaustourism","uk","read","engaging","auschwitz","analysis","young","travellers","experiences","holocaustourism","journal","tourism","consumption","practice","v","pp","issn","x","death","pits","beneathe","flag","britain","pp_korstanje","e","forms","dark_tourism","anatolia","r","exploiting","tragedy","tourism_research","humanities","social","sciences","korstanje","anthropology","dark_tourism","leeds","uk","working","paper","exploiting","tragedy","dark_tourism","available","k","dark_tourism","place","identity","managing","interpreting","dark","places","journal","heritage_tourism","ahead","print","j","x","view","behavioural","tourism_research","literature","international_journal","culture_tourism","hospitality","research","potts","j","dark_tourism","wilson","j","prison","cultural","memory","andark","tourism","peter","lang","j","heritage","tourists","september","coast","press","category","holocaustourism","category_cultural_tourism"],"clean_bigrams":[["term","used"],["round","trip"],["trip","travel"],["destinations","connected"],["world","war"],["former","nazi"],["nazi","death"],["death","camps"],["concentration","camps"],["camps","turned"],["state","museums"],["called","roots"],["roots","tourism"],["tourism","usually"],["usually","across"],["across","parts"],["central","europe"],["western","style"],["style","dark"],["dark","tourism"],["term","holocaust"],["holocaust","first"],["first","used"],["greek","word"],["completely","burnt"],["burnt","offering"],["approximately","six"],["six","million"],["million","european"],["european","jews"],["nazi","germany"],["german","occupied"],["occupied","europe"],["europe","occupied"],["occupied","territories"],["holocaust","museum"],["museum","houston"],["houston","terms"],["terms","related"],["holocaust","retrieved"],["retrieved","augusthe"],["augusthe","term"],["jewish","victims"],["tourism","spectrum"],["term","dark"],["dark","tourism"],["first","coined"],["dark","tourism"],["tourism","spectrum"],["dark","tourism"],["dark","tourism"],["tourism","spectrum"],["spectrum","towards"],["tourist","sites"],["sites","attractions"],["direct","download"],["selected","works"],["philip","stone"],["stone","university"],["width","margin"],["margin","right"],["right","auto"],["auto","border"],["border","none"],["none","border"],["px","font"],["font","size"],["size","style"],["style","text"],["text","align"],["align","center"],["center","style"],["style","background"],["light","style"],["style","background"],["background","c"],["c","c"],["c","lighter"],["lighter","style"],["style","background"],["spectrum","aids"],["bothe","framework"],["following","elements"],["elements","education"],["education","orientation"],["orientation","historic"],["historic","background"],["background","location"],["location","authenticity"],["relics","non"],["limited","tourism"],["tourism","infrastructure"],["mostly","opposite"],["opposite","features"],["features","entertainment"],["entertainment","orientation"],["orientation","commercial"],["higher","level"],["tourism","infrastructure"],["infrastructure","professor"],["professor","william"],["violent","events"],["events","transmitted"],["events","miles"],["miles","also"],["also","notes"],["notes","thathe"],["thathe","level"],["tourist","destination"],["destination","may"],["may","partially"],["partially","depend"],["family","background"],["dark","suppliers"],["dark","tourism"],["tourism","product"],["seven","dark"],["dark","suppliers"],["suppliers","demonstrate"],["demonstrate","dark"],["dark","tourism"],["auschwitz","birkenau"],["dark","camps"],["sites","belong"],["category","auschwitz"],["nazi","death"],["death","camps"],["world","war"],["war","ii"],["athe","top"],["list","holocaust"],["holocaust","sites"],["sites","usually"],["usually","depend"],["government","sponsorship"],["sponsorship","among"],["seven","dark"],["dark","suppliers"],["also","war"],["war","sites"],["battlefields","dark"],["dark","conflict"],["conflict","sites"],["sites","places"],["dark","shrines"],["shrines","cemeteries"],["cemeteries","ofamous"],["ofamous","people"],["people","dark"],["dark","resting"],["resting","places"],["exhibits","associated"],["suffering","dark"],["dark","exhibitions"],["tourist","sites"],["dark","fun"],["fun","factories"],["factories","postmemory"],["jewish","identity"],["identity","file"],["file","march"],["thumb","upright"],["upright","march"],["auschwitz","birkenau"],["birkenau","holocaustourism"],["holocaustourism","sites"],["sites","arelated"],["cultural","identity"],["important","element"],["following","way"],["way","postmemory"],["post","holocaust"],["holocaust","generations"],["holocaust","experience"],["second","generation"],["generation","began"],["example","helen"],["helen","epstein"],["book","children"],["holocaust","conversations"],["survivors","consists"],["survivors","children"],["epstein","children"],["holocaust","conversations"],["survivors","children"],["parents","holocaust"],["holocaust","experience"],["jewish","visits"],["holocaust","sites"],["often","efforts"],["jewish","identity"],["identity","quest"],["one","feels"],["feels","displaced"],["jewish","poland"],["poland","revisited"],["revisited","heritage"],["heritage","tourism"],["places","bloomington"],["bloomington","indiana"],["indiana","university"],["university","press"],["press","p"],["p","many"],["many","jewish"],["jewish","tours"],["second","generation"],["unknown","place"],["place","identity"],["central","europe"],["europe","file"],["thumb","px"],["px","holocaust"],["holocaust","map"],["last","years"],["years","central"],["central","europe"],["jewisheritage","travels"],["recent","increase"],["several","historic"],["historic","events"],["events","whichave"],["whichave","opened"],["region","poland"],["poland","solidarity"],["solidarity","polish"],["polish","trade"],["trade","union"],["union","solidarity"],["solidarity","movement"],["soviet","union"],["union","though"],["though","many"],["direct","experience"],["holocaust","many"],["visit","authentic"],["authentic","holocaust"],["holocaust","sitesuch"],["two","principal"],["principal","destinations"],["poland","israel"],["two","countries"],["best","illustrated"],["performance","approach"],["group","missions"],["teenagers","annually"],["sends","thousands"],["young","people"],["people","fromore"],["fifty","countries"],["poland","israel"],["israel","poland"],["death","camp"],["poland","prior"],["world","war"],["war","ii"],["ii","poland"],["largest","jewish"],["jewish","community"],["three","million"],["labor","camps"],["central","europe"],["german","occupational"],["occupational","authorities"],["death","camps"],["camps","werestablished"],["occupied","poland"],["poland","including"],["camp","bec"],["bec","south"],["south","east"],["r","near"],["past","brighter"],["brighter","future"],["google","print"],["print","p"],["p","critical"],["critical","view"],["view","holocaustourism"],["holocaustourism","despite"],["criticism","polish"],["polish","journalist"],["jewish","activist"],["noted","anthropologist"],["wrote","thathe"],["thathe","american"],["american","trips"],["poland","sponsored"],["israeli","ministry"],["education","promote"],["promote","death"],["death","rather"],["holocaust","sites"],["sites","allow"],["strong","emotional"],["emotional","appeal"],["messages","imposed"],["organizers","upon"],["upon","students"],["students","participating"],["inevitably","impact"],["group","missions"],["israeli","news"],["economic","aspect"],["individual","members"],["members","calling"],["holocaust","related"],["related","sites"],["poland","even"],["official","march"],["living","prof"],["prof","maximiliano"],["maximiliano","korstanje"],["palermo","wrote"],["wrote","thathe"],["thathe","holocaust"],["holocaust","site"],["site","consumers"],["deathe","dark"],["dark","tourism"],["principle","thathe"],["thathe","survivors"],["global","competition"],["staying","alive"],["alive","inevitably"],["tragedy","rather"],["death","korstanje"],["george","b"],["b","death"],["virtual","traumascape"],["dark","tourism"],["tourism","korstanje"],["george","b"],["b","eds"],["eds","hershey"],["hershey","igi"],["igi","global"],["survivalist","superiority"],["superiority","model"],["model","however"],["however","may"],["may","lead"],["roots","tourism"],["ethnographic","tourism"],["tourism","focused"],["historical","tragedy"],["first","used"],["jewish","poland"],["poland","revisited"],["revisited","heritage"],["heritage","tourism"],["places","bloomington"],["bloomington","indiana"],["indiana","university"],["university","press"],["specific","motivations"],["following","features"],["holocaust","survivors"],["travel","individually"],["close","friends"],["highly","interested"],["communal","ideology"],["ideology","virtual"],["virtual","jewish"],["jewish","communities"],["three","communities"],["jewish","related"],["related","concerns"],["particularly","regarding"],["regarding","holocaustourism"],["across","central"],["central","europe"],["jewish","current"],["current","events"],["primarily","north"],["north","americand"],["americand","israeli"],["israeli","forum"],["concerning","world"],["world","events"],["jewish","related"],["related","news"],["global","jewish"],["jewish","periodicals"],["periodicals","religious"],["religious","judaism"],["four","thousands"],["thousands","american"],["american","orthodox"],["conservative","jews"],["jews","whose"],["throughouthe","world"],["groups","based"],["geographic","areas"],["one","million"],["million","posts"],["relation","tourism"],["discussed","topics"],["topics","israeli"],["israeli","news"],["site","made"],["jews","living"],["near","israel"],["discusses","news"],["popular","israeli"],["theart","poland"],["poland","revisited"],["revisited","bloomington"],["bloomington","indiana"],["indiana","university"],["university","press"],["press","pp"],["pp","e"],["recreating","postmemory"],["postmemory","children"],["holocaust","survivors"],["auschwitz","monash"],["monash","university"],["university","pp"],["pp","r"],["r","stone"],["dark","tourism"],["tourism","spectrum"],["spectrum","towards"],["tourist","sites"],["sites","attractions"],["exhibition","vol"],["pp","e"],["e","street"],["kosher","shrimp"],["new","museum"],["poland","humanity"],["action","poland"],["poland","c"],["c","aviv"],["new","jews"],["jews","thend"],["jewish","diaspora"],["diaspora","new"],["new","york"],["york","university"],["university","pp"],["hunt","equity"],["equity","restoration"],["sacred","sites"],["sites","elsevier"],["elsevier","pp"],["auschwitz","museum"],["museum","interpretation"],["tourism","usa"],["usa","pp"],["pp","korstanje"],["thana","capitalism"],["tourism","abingdon"],["jewisheritage","tours"],["tours","poland"],["poland","jewisheritage"],["jewisheritage","tours"],["tours","quest"],["family","jewish"],["jewish","currents"],["currents","auschwitz"],["auschwitz","birkenau"],["memorial","museum"],["museum","guided"],["guided","tour"],["tour","orthodox"],["orthodox","judaism"],["orthodox","union"],["union","israeli"],["israeli","news"],["opinion","history"],["world","holocaust"],["terms","related"],["holocaust","furthereading"],["one","man"],["jewish","community"],["community","vintage"],["vintage","pp"],["pp","h"],["h","epstein"],["epstein","children"],["holocaust","conversations"],["pp","j"],["film","documentary"],["holocaustourism","uk"],["read","engaging"],["engaging","auschwitz"],["auschwitz","analysis"],["young","travellers"],["travellers","experiences"],["holocaustourism","journal"],["tourism","consumption"],["practice","v"],["v","pp"],["pp","issn"],["issn","x"],["death","pits"],["pits","beneathe"],["beneathe","flag"],["flag","britain"],["britain","pp"],["pp","korstanje"],["dark","tourism"],["tourism","anatolia"],["r","exploiting"],["exploiting","tragedy"],["tourism","research"],["social","sciences"],["sciences","korstanje"],["dark","tourism"],["leeds","uk"],["uk","working"],["working","paper"],["exploiting","tragedy"],["tragedy","dark"],["dark","tourism"],["tourism","available"],["k","dark"],["dark","tourism"],["place","identity"],["identity","managing"],["interpreting","dark"],["dark","places"],["places","journal"],["heritage","tourism"],["tourism","ahead"],["behavioural","tourism"],["tourism","research"],["research","literature"],["literature","international"],["international","journal"],["culture","tourism"],["hospitality","research"],["research","potts"],["j","dark"],["dark","tourism"],["wilson","j"],["prison","cultural"],["cultural","memory"],["memory","andark"],["andark","tourism"],["tourism","peter"],["peter","lang"],["j","heritage"],["coast","press"],["press","category"],["holocaustourism","category"],["category","cultural"],["cultural","tourism"]],"all_collocations":["term used","round trip","trip travel","destinations connected","world war","former nazi","nazi death","death camps","concentration camps","camps turned","state museums","called roots","roots tourism","tourism usually","usually across","across parts","central europe","western style","style dark","dark tourism","term holocaust","holocaust first","first used","greek word","completely burnt","burnt offering","approximately six","six million","million european","european jews","nazi germany","german occupied","occupied europe","europe occupied","occupied territories","holocaust museum","museum houston","houston terms","terms related","holocaust retrieved","retrieved augusthe","augusthe term","jewish victims","tourism spectrum","term dark","dark tourism","first coined","dark tourism","tourism spectrum","dark tourism","dark tourism","tourism spectrum","spectrum towards","tourist sites","sites attractions","direct download","selected works","philip stone","stone university","width margin","margin right","right auto","auto border","border none","none border","px font","font size","size style","style text","center style","light style","background c","c c","c lighter","lighter style","spectrum aids","bothe framework","following elements","elements education","education orientation","orientation historic","historic background","background location","location authenticity","relics non","limited tourism","tourism infrastructure","mostly opposite","opposite features","features entertainment","entertainment orientation","orientation commercial","higher level","tourism infrastructure","infrastructure professor","professor william","violent events","events transmitted","events miles","miles also","also notes","notes thathe","thathe level","tourist destination","destination may","may partially","partially depend","family background","dark suppliers","dark tourism","tourism product","seven dark","dark suppliers","suppliers demonstrate","demonstrate dark","dark tourism","auschwitz birkenau","dark camps","sites belong","category auschwitz","nazi death","death camps","world war","war ii","athe top","list holocaust","holocaust sites","sites usually","usually depend","government sponsorship","sponsorship among","seven dark","dark suppliers","also war","war sites","battlefields dark","dark conflict","conflict sites","sites places","dark shrines","shrines cemeteries","cemeteries ofamous","ofamous people","people dark","dark resting","resting places","exhibits associated","suffering dark","dark exhibitions","tourist sites","dark fun","fun factories","factories postmemory","jewish identity","identity file","file march","upright march","auschwitz birkenau","birkenau holocaustourism","holocaustourism sites","sites arelated","cultural identity","important element","following way","way postmemory","post holocaust","holocaust generations","holocaust experience","second generation","generation began","example helen","helen epstein","book children","holocaust conversations","survivors consists","survivors children","epstein children","holocaust conversations","survivors children","parents holocaust","holocaust experience","jewish visits","holocaust sites","often efforts","jewish identity","identity quest","one feels","feels displaced","jewish poland","poland revisited","revisited heritage","heritage tourism","places bloomington","bloomington indiana","indiana university","university press","press p","p many","many jewish","jewish tours","second generation","unknown place","place identity","central europe","europe file","px holocaust","holocaust map","last years","years central","central europe","jewisheritage travels","recent increase","several historic","historic events","events whichave","whichave opened","region poland","poland solidarity","solidarity polish","polish trade","trade union","union solidarity","solidarity movement","soviet union","union though","though many","direct experience","holocaust many","visit authentic","authentic holocaust","holocaust sitesuch","two principal","principal destinations","poland israel","two countries","best illustrated","performance approach","group missions","teenagers annually","sends thousands","young people","people fromore","fifty countries","poland israel","israel poland","death camp","poland prior","world war","war ii","ii poland","largest jewish","jewish community","three million","labor camps","central europe","german occupational","occupational authorities","death camps","camps werestablished","occupied poland","poland including","camp bec","bec south","south east","r near","past brighter","brighter future","google print","print p","p critical","critical view","view holocaustourism","holocaustourism despite","criticism polish","polish journalist","jewish activist","noted anthropologist","wrote thathe","thathe american","american trips","poland sponsored","israeli ministry","education promote","promote death","death rather","holocaust sites","sites allow","strong emotional","emotional appeal","messages imposed","organizers upon","upon students","students participating","inevitably impact","group missions","israeli news","economic aspect","individual members","members calling","holocaust related","related sites","poland even","official march","living prof","prof maximiliano","maximiliano korstanje","palermo wrote","wrote thathe","thathe holocaust","holocaust site","site consumers","deathe dark","dark tourism","principle thathe","thathe survivors","global competition","staying alive","alive inevitably","tragedy rather","death korstanje","george b","b death","virtual traumascape","dark tourism","tourism korstanje","george b","b eds","eds hershey","hershey igi","igi global","survivalist superiority","superiority model","model however","however may","may lead","roots tourism","ethnographic tourism","tourism focused","historical tragedy","first used","jewish poland","poland revisited","revisited heritage","heritage tourism","places bloomington","bloomington indiana","indiana university","university press","specific motivations","following features","holocaust survivors","travel individually","close friends","highly interested","communal ideology","ideology virtual","virtual jewish","jewish communities","three communities","jewish related","related concerns","particularly regarding","regarding holocaustourism","across central","central europe","jewish current","current events","primarily north","north americand","americand israeli","israeli forum","concerning world","world events","jewish related","related news","global jewish","jewish periodicals","periodicals religious","religious judaism","four thousands","thousands american","american orthodox","conservative jews","jews whose","throughouthe world","groups based","geographic areas","one million","million posts","relation tourism","discussed topics","topics israeli","israeli news","site made","jews living","near israel","discusses news","popular israeli","theart poland","poland revisited","revisited bloomington","bloomington indiana","indiana university","university press","press pp","pp e","recreating postmemory","postmemory children","holocaust survivors","auschwitz monash","monash university","university pp","pp r","r stone","dark tourism","tourism spectrum","spectrum towards","tourist sites","sites attractions","exhibition vol","pp e","e street","kosher shrimp","new museum","poland humanity","action poland","poland c","c aviv","new jews","jews thend","jewish diaspora","diaspora new","new york","york university","university pp","hunt equity","equity restoration","sacred sites","sites elsevier","elsevier pp","auschwitz museum","museum interpretation","tourism usa","usa pp","pp korstanje","thana capitalism","tourism abingdon","jewisheritage tours","tours poland","poland jewisheritage","jewisheritage tours","tours quest","family jewish","jewish currents","currents auschwitz","auschwitz birkenau","memorial museum","museum guided","guided tour","tour orthodox","orthodox judaism","orthodox union","union israeli","israeli news","opinion history","world holocaust","terms related","holocaust furthereading","one man","jewish community","community vintage","vintage pp","pp h","h epstein","epstein children","holocaust conversations","pp j","film documentary","holocaustourism uk","read engaging","engaging auschwitz","auschwitz analysis","young travellers","travellers experiences","holocaustourism journal","tourism consumption","practice v","v pp","pp issn","issn x","death pits","pits beneathe","beneathe flag","flag britain","britain pp","pp korstanje","dark tourism","tourism anatolia","r exploiting","exploiting tragedy","tourism research","social sciences","sciences korstanje","dark tourism","leeds uk","uk working","working paper","exploiting tragedy","tragedy dark","dark tourism","tourism available","k dark","dark tourism","place identity","identity managing","interpreting dark","dark places","places journal","heritage tourism","tourism ahead","behavioural tourism","tourism research","research literature","literature international","international journal","culture tourism","hospitality research","research potts","j dark","dark tourism","wilson j","prison cultural","cultural memory","memory andark","andark tourism","tourism peter","peter lang","j heritage","coast press","press category","holocaustourism category","category cultural","cultural tourism"],"new_description":"holocaustourism term_used media relation round trip travel_destinations connected jews holocaust world_war visits sites jewish former nazi death camps concentration camps turned state museums category called roots tourism usually across parts central_europe generally western style dark_tourism sites death term holocaust first_used late derived greek word meaning completely burnt offering god come symbolize systematic approximately six million european jews nazi germany_german occupied europe occupied territories holocaust museum houston terms related holocaust retrieved augusthe term also applied mean five seven jewish victims murdered nazis time tourism spectrum term dark_tourism first coined according stone dark_tourism spectrum shades dark_tourism stone dark_tourism spectrum towards death tourist_sites attractions exhibition direct download vol pp selected works philip stone university width margin right auto border none border px font_size style_text align center style style style background light style background c c lighter style background spectrum aids identifying intensity bothe framework supply consumption characterized following elements education orientation historic background location authenticity terms relics non limited tourism infrastructure objects mostly opposite features entertainment orientation commercial commercial higher level tourism infrastructure professor william death violent events transmitted generations survivors darker events miles also notes thathe level darkness tourist_destination may partially depend family background prospective dark suppliers create dark_tourism product experience model seven dark suppliers demonstrate dark_tourism multi phenomenon camp auschwitz birkenau terms influence dark camps genocide sites genocide violence actually sites belong category auschwitz largest nazi death camps world_war ii athe_top list holocaust sites usually depend government sponsorship among seven dark suppliers also war sites battlefields dark conflict sites places dark shrines cemeteries ofamous people dark resting places dark exhibits associated death suffering dark exhibitions finally tourist_sites dark fun factories postmemory jewish identity file march living auschwitz thumb upright march living auschwitz birkenau holocaustourism sites arelated postmemory well cultural identity postmemory important element motivations defines following way postmemory survivors post holocaust generations jews save holocaust experience regarding second generation began appear example helen epstein book children holocaust conversations sons survivors consists interviews survivors children epstein children holocaust conversations sons survivors survivors children identities dependent parents holocaust experience jewish visits holocaust sites often efforts explore origins identity considers jewish identity quest way step flow community history one feels displaced jewish poland revisited heritage_tourism places bloomington indiana university_press_p many jewish tours made establish connection survivors second generation unknown place identity central_europe file holocaust thumb px holocaust map last_years central_europe become jewisheritage travels recent increase tourism due several historic events whichave opened region poland solidarity polish trade union solidarity movement policies dissolution soviet_union though many tourists direct experience holocaust many visit authentic holocaust sitesuch cemeteries two principal destinations holocaustourism poland israel relationship two countries holocaustourism best illustrated anthropologist employed performance approach group missions israel march living established organizes teenagers annually sends thousands young_people fromore fifty countries poland israel poland one countries visited due number death camp poland prior world_war ii poland largest jewish community europe holocaust poland three million labor camps built central_europe german occupational authorities late early many poland auschwitz first largest period death camps werestablished reich occupied poland including birkenau near village bec camp bec south_east r near village che near village che nad robert cherry poles jews past brighter future google print p critical view holocaustourism despite existence come criticism polish journalist jewish activist noted anthropologist wrote thathe american trips poland sponsored israeli ministry education promote death rather life holocaust sites allow strong emotional appeal identity token messages imposed organizers upon students participating voyages rather inevitably impact toward well criticism group missions israeli news opinion focused economic aspect individual members calling boycott poland holocaust related sites order stop prominent advocated jews going poland even wished participate official march living prof maximiliano korstanje university palermo wrote thathe holocaust site consumers reinforce life deathe dark_tourism modern principle thathe survivors global competition staying alive inevitably enjoy brother tragedy rather face one death korstanje george_b death culture thanatourism thend capitalism virtual traumascape exploring roots dark_tourism korstanje george_b eds hershey_igi_global kind survivalist superiority model however may lead racist alternative roots tourism type cultural ethnographic tourism focused jewisheritage historical tragedy term first_used e jewish poland revisited heritage_tourism places bloomington indiana university_press different holocaustourism orientation aspect jewisheritage specific motivations may characterized following features rule holocaust survivors travel individually close friends family highly interested travel postmemory goal reveal story overcome communal ideology virtual jewish communities three communities internet jewish related concerns news particularly regarding holocaustourism germany across central_europe described jewish current events primarily north_americand israeli forum concerning world events well jewish related news global jewish periodicals religious judaism community four thousands american orthodox conservative jews whose judaism throughouthe_world community groups based geographic areas group published one_million posts according community archive holocaust relation tourism one discussed topics israeli news opinion site made jews living near israel discusses news popular israeli jewish references quest theart poland revisited bloomington indiana university_press_pp e recreating postmemory children holocaust survivors journey auschwitz monash university pp r stone dark_tourism spectrum towards death tourist_sites attractions exhibition vol pp e street kosher shrimp new museum context holocaustourism poland humanity action poland c aviv new jews thend jewish diaspora new_york university pp hunt equity restoration holocaust tourism sacred sites elsevier pp auschwitz museum interpretation tourism usa pp_korstanje rise thana_capitalism tourism abingdon jewisheritage tours poland jewisheritage tours quest family jewish currents auschwitz birkenau memorial_museum guided_tour orthodox judaism orthodox union israeli news opinion history meaning world holocaust terms related holocaust furthereading richmond one man quest jewish community vintage pp h epstein children holocaust conversations sons survivors pp j film documentary holocaustourism uk read engaging auschwitz analysis young travellers experiences holocaustourism journal tourism consumption practice v pp issn x death pits beneathe flag britain pp_korstanje e forms dark_tourism anatolia r exploiting tragedy tourism_research humanities social sciences korstanje anthropology dark_tourism leeds uk working paper exploiting tragedy dark_tourism available k dark_tourism place identity managing interpreting dark places journal heritage_tourism ahead print j x view behavioural tourism_research literature international_journal culture_tourism hospitality research potts j dark_tourism wilson j prison cultural memory andark tourism peter lang j heritage tourists september coast press category holocaustourism category_cultural_tourism"},{"title":"Home (nightclub chain)","description":"the home chain of nightclubs were initially started atheight of popularity of house music the chain was originally called jacobs until being bought out in the clubs are notorious for its anti mobile phones policy where phones are confiscated beforentrance and when people breach this rule a form of punishment is implemented the two clubs athe time were twof the largest nightclubs in theirespective countries and were of a number of dance music enterprises operated by the one company including various other smaller clubs and the outdoor music festival homelands festival homelands background at its peak the home nightclub chaincluded two large clubs in sydney and london as well as hosting the outdoor homelands festival homelands dance music festival the nightclub chain was the dream of ron mcculloch and big beats inc who had intended for a broader worldwide chain of clubs including having advanced plans for a new york club as well as plans for clubs in singapore and buenos aires and outdoor events held in various part of the worl the club is notorious for its no drinks policy which comes with unfortunate punishments for people who fail to follow the rules dscatena dino night fever daily telegraph november p the idea of the clubs was thathey would beam performances of djs to each other and have international events by transmission the two clubs in sydney and london were among the biggest dance musiclubs in theirespected countries club openings the sydney club was the firstopen onovember in cockle bay darling harbour it was purposely built as a nightclub and holding people it is one of australia s biggest regular house music venues the interior was designed by ron mcculloch and it features a number of different spaces the main dancefloor holds people it costo buildmcdougalliam no place like home for king of clubs april scotland on sunday p the london home club see full article home nightclub was a superclub in the middle of london leicester square opened in it had eight levels and cost million gbp to build after hard negotiations over building athe leicester square site closure of london home and the collapse of big beat however home in london washut by police onlyears after its opening it had its licence revoked by police because of evidence of obvious drug dealing in the premises flagged by an undercover police operation which discovered open and serious class a drug dealing and usage home nightclub shut by police bbc entertainment athistage home london was owned by big beats pubs and club empire it being jointly owned by mr mcculloch george swanson the former whitbreadirector and royal bank development capitaltinning william beat goes off as nightclub group folds therald april p the closing of home london affected the big beats company which then went into receivership while the licence was reinstated it was too late for big beat big beat s home nightclubs assets were initially contracted by the receiver kpmg to be run by the mean fiddler businesssusie mesure big beat venues go to mean fiddler the independent london augusthe london club was then purchased for gbp million by the mean fiddler business owned by vince power john vincent power howeveron mcculloch from big beathen purchased the sydney home club himself and moved to australiaskew kate busted scot buys home sydney morning herald august p war sharon andavidson gina nightclub tycoon beats a retreat august scotland on sunday p continuation of sydney home sydney home continued and continues to this day in thearly s it incorporated the successful pitt street sydney pitt street club sublime in the late s run by simon page simon broughthe three nights that were being run at sublime beatfix cargo and voodoo and moved its djs including peewee ferris nik fish craig obey bextand kate monroe into home s friday nighthe friday sublime night has continued to run successfully since thatime after some arising family issuesimon sold his interesto mcculloch in ron mcculloch sold the cluback to simon page foroughly what he had purchased it for home nightclub turning a new page withe downturn from the peak of interest in dancemusic and the return of an interest in rock sydney home also expanded into rock music in hosting bands on saturday nights then followed by djscreagh sunanda if this house is rockin the sydney morning herald may smh p see also list of electronic dance music venues references category nightclubs category drinking establishment chains category nightclubs in australia category electronic dance music venues","main_words":["home","chain","nightclubs","initially","started","atheight","popularity","house_music","chain","originally_called","jacobs","bought","clubs","notorious","anti","mobile","phones","policy","phones","confiscated","people","breach","rule","form","punishment","implemented","two","clubs","athe_time","twof","largest","nightclubs","theirespective","countries","number","dance_music","enterprises","operated","one","company","including","various","smaller","clubs","outdoor","music_festival","homelands","festival","homelands","background","peak","home","nightclub","two","large","clubs","sydney","hosting","outdoor","homelands","festival","homelands","dance_music","festival","nightclub","chain","dream","ron","mcculloch","big","beats","inc","intended","broader","worldwide","chain","clubs","including","advanced","plans","new_york","club","well","plans","clubs","singapore","buenos_aires","outdoor","events","held","various","part","club","notorious","drinks","policy","comes","people","fail","follow","rules","dino","night","fever","daily_telegraph","november","p","idea","clubs","thathey_would","beam","performances","djs","international","events","transmission","two","clubs","sydney","london","among","biggest","dance","countries","club","openings","sydney","club","onovember","cockle","bay","darling","harbour","purposely","built","nightclub","holding","people","one","australia","biggest","regular","house_music","venues","interior","designed","ron","mcculloch","features","number","different","spaces","main","holds","people","costo","place","like","home","king","clubs","april","scotland","sunday","p","london","home","club","see","full","article","home","nightclub","superclub","middle","london","leicester","square","opened","eight","levels","cost","million","build","hard","negotiations","building","athe","leicester","square","site","closure","london","home","collapse","big","beat","however","home","police","opening","licence","police","evidence","obvious","drug","dealing","premises","undercover","police","operation","discovered","open","serious","class","drug","dealing","usage","home","nightclub","shut","police","bbc","entertainment","home","london","owned","big","beats","pubs","club","empire","jointly","owned","mcculloch","george","former","royal","bank","development","william","beat","goes","nightclub","group","folds","april","p","closing","home","london","affected","big","beats","company","went","licence","late","big","beat","big","beat","home","nightclubs","assets","initially","contracted","run","mean","fiddler","big","beat","venues","go","mean","fiddler","independent","london","augusthe","london","club","purchased","million","mean","fiddler","business","owned","power","john","vincent","power","mcculloch","big","purchased","sydney","home","club","moved","kate","buys","home","sydney","morning","herald","august","p","war","sharon","gina","nightclub","beats","august","scotland","sunday","p","sydney","home","sydney","home","continued","continues","day","thearly","incorporated","successful","street","sydney","street","club","sublime","late","run","simon","page","simon","broughthe","three","nights","run","sublime","cargo","moved","djs","including","ferris","fish","craig","kate","monroe","home","friday","nighthe","friday","sublime","night","continued","run","successfully","since","thatime","arising","family","sold","interesto","mcculloch","ron","mcculloch","sold","simon","page","purchased","home","nightclub","turning","new","page","withe","downturn","peak","interest","return","interest","rock","sydney","home","also","expanded","rock","music","hosting","bands","saturday","nights","followed","house","sydney","morning","herald","may","p","see_also","list","electronic_dance_music","venues","drinking_establishment","chains","category_nightclubs","venues"],"clean_bigrams":[["home","chain"],["initially","started"],["started","atheight"],["house","music"],["originally","called"],["called","jacobs"],["anti","mobile"],["mobile","phones"],["phones","policy"],["people","breach"],["two","clubs"],["clubs","athe"],["athe","time"],["largest","nightclubs"],["theirespective","countries"],["dance","music"],["music","enterprises"],["enterprises","operated"],["one","company"],["company","including"],["including","various"],["smaller","clubs"],["outdoor","music"],["music","festival"],["festival","homelands"],["homelands","festival"],["festival","homelands"],["homelands","background"],["home","nightclub"],["two","large"],["large","clubs"],["outdoor","homelands"],["homelands","festival"],["festival","homelands"],["homelands","dance"],["dance","music"],["music","festival"],["nightclub","chain"],["ron","mcculloch"],["big","beats"],["beats","inc"],["broader","worldwide"],["worldwide","chain"],["clubs","including"],["advanced","plans"],["new","york"],["york","club"],["buenos","aires"],["outdoor","events"],["events","held"],["various","part"],["drinks","policy"],["dino","night"],["night","fever"],["fever","daily"],["daily","telegraph"],["telegraph","november"],["november","p"],["thathey","would"],["would","beam"],["beam","performances"],["international","events"],["two","clubs"],["biggest","dance"],["countries","club"],["club","openings"],["sydney","club"],["cockle","bay"],["bay","darling"],["darling","harbour"],["purposely","built"],["holding","people"],["biggest","regular"],["regular","house"],["house","music"],["music","venues"],["ron","mcculloch"],["different","spaces"],["holds","people"],["place","like"],["like","home"],["clubs","april"],["april","scotland"],["sunday","p"],["london","home"],["home","club"],["club","see"],["see","full"],["full","article"],["article","home"],["home","nightclub"],["london","leicester"],["leicester","square"],["square","opened"],["eight","levels"],["cost","million"],["hard","negotiations"],["building","athe"],["athe","leicester"],["leicester","square"],["square","site"],["site","closure"],["london","home"],["big","beat"],["beat","however"],["however","home"],["home","london"],["london","washut"],["obvious","drug"],["drug","dealing"],["undercover","police"],["police","operation"],["discovered","open"],["serious","class"],["drug","dealing"],["usage","home"],["home","nightclub"],["nightclub","shut"],["police","bbc"],["bbc","entertainment"],["home","london"],["big","beats"],["beats","pubs"],["club","empire"],["jointly","owned"],["mcculloch","george"],["royal","bank"],["bank","development"],["william","beat"],["beat","goes"],["nightclub","group"],["group","folds"],["april","p"],["home","london"],["london","affected"],["big","beats"],["beats","company"],["big","beat"],["beat","big"],["big","beat"],["home","nightclubs"],["nightclubs","assets"],["initially","contracted"],["mean","fiddler"],["big","beat"],["beat","venues"],["venues","go"],["mean","fiddler"],["independent","london"],["london","augusthe"],["augusthe","london"],["london","club"],["mean","fiddler"],["fiddler","business"],["business","owned"],["power","john"],["john","vincent"],["vincent","power"],["sydney","home"],["home","club"],["buys","home"],["home","sydney"],["sydney","morning"],["morning","herald"],["herald","august"],["august","p"],["p","war"],["war","sharon"],["gina","nightclub"],["august","scotland"],["sunday","p"],["sydney","home"],["home","sydney"],["sydney","home"],["home","continued"],["street","sydney"],["street","club"],["club","sublime"],["simon","page"],["page","simon"],["simon","broughthe"],["broughthe","three"],["three","nights"],["djs","including"],["fish","craig"],["kate","monroe"],["friday","nighthe"],["nighthe","friday"],["friday","sublime"],["sublime","night"],["run","successfully"],["successfully","since"],["since","thatime"],["arising","family"],["interesto","mcculloch"],["ron","mcculloch"],["mcculloch","sold"],["simon","page"],["home","nightclub"],["nightclub","turning"],["new","page"],["page","withe"],["withe","downturn"],["rock","sydney"],["sydney","home"],["home","also"],["also","expanded"],["rock","music"],["hosting","bands"],["saturday","nights"],["sydney","morning"],["morning","herald"],["herald","may"],["p","see"],["see","also"],["also","list"],["electronic","dance"],["dance","music"],["music","venues"],["venues","references"],["references","category"],["category","nightclubs"],["nightclubs","category"],["category","drinking"],["drinking","establishment"],["establishment","chains"],["chains","category"],["category","nightclubs"],["australia","category"],["category","electronic"],["electronic","dance"],["dance","music"],["music","venues"]],"all_collocations":["home chain","initially started","started atheight","house music","originally called","called jacobs","anti mobile","mobile phones","phones policy","people breach","two clubs","clubs athe","athe time","largest nightclubs","theirespective countries","dance music","music enterprises","enterprises operated","one company","company including","including various","smaller clubs","outdoor music","music festival","festival homelands","homelands festival","festival homelands","homelands background","home nightclub","two large","large clubs","outdoor homelands","homelands festival","festival homelands","homelands dance","dance music","music festival","nightclub chain","ron mcculloch","big beats","beats inc","broader worldwide","worldwide chain","clubs including","advanced plans","new york","york club","buenos aires","outdoor events","events held","various part","drinks policy","dino night","night fever","fever daily","daily telegraph","telegraph november","november p","thathey would","would beam","beam performances","international events","two clubs","biggest dance","countries club","club openings","sydney club","cockle bay","bay darling","darling harbour","purposely built","holding people","biggest regular","regular house","house music","music venues","ron mcculloch","different spaces","holds people","place like","like home","clubs april","april scotland","sunday p","london home","home club","club see","see full","full article","article home","home nightclub","london leicester","leicester square","square opened","eight levels","cost million","hard negotiations","building athe","athe leicester","leicester square","square site","site closure","london home","big beat","beat however","however home","home london","london washut","obvious drug","drug dealing","undercover police","police operation","discovered open","serious class","drug dealing","usage home","home nightclub","nightclub shut","police bbc","bbc entertainment","home london","big beats","beats pubs","club empire","jointly owned","mcculloch george","royal bank","bank development","william beat","beat goes","nightclub group","group folds","april p","home london","london affected","big beats","beats company","big beat","beat big","big beat","home nightclubs","nightclubs assets","initially contracted","mean fiddler","big beat","beat venues","venues go","mean fiddler","independent london","london augusthe","augusthe london","london club","mean fiddler","fiddler business","business owned","power john","john vincent","vincent power","sydney home","home club","buys home","home sydney","sydney morning","morning herald","herald august","august p","p war","war sharon","gina nightclub","august scotland","sunday p","sydney home","home sydney","sydney home","home continued","street sydney","street club","club sublime","simon page","page simon","simon broughthe","broughthe three","three nights","djs including","fish craig","kate monroe","friday nighthe","nighthe friday","friday sublime","sublime night","run successfully","successfully since","since thatime","arising family","interesto mcculloch","ron mcculloch","mcculloch sold","simon page","home nightclub","nightclub turning","new page","page withe","withe downturn","rock sydney","sydney home","home also","also expanded","rock music","hosting bands","saturday nights","sydney morning","morning herald","herald may","p see","see also","also list","electronic dance","dance music","music venues","venues references","references category","category nightclubs","nightclubs category","category drinking","drinking establishment","establishment chains","chains category","category nightclubs","australia category","category electronic","electronic dance","dance music","music venues"],"new_description":"home chain nightclubs initially started atheight popularity house_music chain originally_called jacobs bought clubs notorious anti mobile phones policy phones confiscated people breach rule form punishment implemented two clubs athe_time twof largest nightclubs theirespective countries number dance_music enterprises operated one company including various smaller clubs outdoor music_festival homelands festival homelands background peak home nightclub two large clubs sydney london_well hosting outdoor homelands festival homelands dance_music festival nightclub chain dream ron mcculloch big beats inc intended broader worldwide chain clubs including advanced plans new_york club well plans clubs singapore buenos_aires outdoor events held various part club notorious drinks policy comes people fail follow rules dino night fever daily_telegraph november p idea clubs thathey_would beam performances djs international events transmission two clubs sydney london among biggest dance countries club openings sydney club onovember cockle bay darling harbour purposely built nightclub holding people one australia biggest regular house_music venues interior designed ron mcculloch features number different spaces main holds people costo place like home king clubs april scotland sunday p london home club see full article home nightclub superclub middle london leicester square opened eight levels cost million build hard negotiations building athe leicester square site closure london home collapse big beat however home london_washut police opening licence police evidence obvious drug dealing premises undercover police operation discovered open serious class drug dealing usage home nightclub shut police bbc entertainment home london owned big beats pubs club empire jointly owned mcculloch george former royal bank development william beat goes nightclub group folds april p closing home london affected big beats company went licence late big beat big beat home nightclubs assets initially contracted run mean fiddler big beat venues go mean fiddler independent london augusthe london club purchased million mean fiddler business owned power john vincent power mcculloch big purchased sydney home club moved kate buys home sydney morning herald august p war sharon gina nightclub beats august scotland sunday p sydney home sydney home continued continues day thearly incorporated successful street sydney street club sublime late run simon page simon broughthe three nights run sublime cargo moved djs including ferris fish craig kate monroe home friday nighthe friday sublime night continued run successfully since thatime arising family sold interesto mcculloch ron mcculloch sold simon page purchased home nightclub turning new page withe downturn peak interest return interest rock sydney home also expanded rock music hosting bands saturday nights followed house sydney morning herald may p see_also list electronic_dance_music venues references_category_nightclubs_category drinking_establishment chains category_nightclubs australia_category_electronic_dance_music venues"},{"title":"Home exchange","description":"homexchange also known as house swapping is a type of hospitality service in which two parties agree toffer each other homestay s lodging in each other s homes for a set period of time since no monetary exchange takes place it is a form of barter collaborative consumption and sharing homexchange can cover any type of dwelling including apartments houses holiday cottage s boats orecreational vehicles it can include an exchange of thentire home or just a room the length of the swap can vary from a weekend to a year or more the swap can be simultaneous or non simultaneous like all homestay s homexchanges offer several advantages over hotelodging including the opportunities to save money and experienceveryday life in another country organized homexchange originated in withe creation of intervac international by a group of european teachers with plenty of vacation time looking for economic means to travel internationally facts about intervac that same year teacher david ostroff created a homexchange network called vacation exchange club now homelink inew york city homelink originally homexchange networks printed a yearly catalog of homes and charged members a yearly fee in the s the proliferation of the internet greatly increased the accessibility of homexchange providing users with easier communication information and a much larger pool of homes from which to choosed kushinstarted what is now homeexchangecom after a homexchangexperience in washington dc in he moved the business online in homexchange was estimated to be growing at per year in homexchange networks were continuing to experience rapid growth summer is traditionally the peak season for house swapping as families travel during summer vacations participant demographics participants tend to beducated and well traveled participants tend to be active conscientious and culturally curious travelers homexchanges are also popular with teachers during school holidays particularly during the summer homexchanges are also used by seniors who have more time to travel a survey conducted by homeexchangegurucom shows that have attended university and more than have done post graduate work of participants travel with children or consist of groups of three or more while travel without children or in groups of twor less a study by the university of bergamo shows a wide crossection of the public is represented with aged and only under age the study showed that of respondentseek out museums and the great outdoors valuenvironmentally friendly tourism and express interest in cultural heritage fair trade food and organic food are also importanthe study notes the strong degree of trust emotion trust necessary in collaborative consumption with agreeing that most people are trustworthy are satisfied witheir experience withaving swapped homes more than once guidebook legend arthur frommer calls homexchange the single most sensible logical and intelligent method of vacationing shelley miller who had completed homexchanges wrote in the huffington post wexperience the region like residents weat in a kitchen gather around the fireplace in the living room and ride through the community on bicycles from the garage we are part of a neighborhood not a business district how it worksee also signing up the user signs up with a service providing a network of members withomes as well as the online tools needed to execute thexchange see list below it is advantageous to sign up with several homexchange services the costo sign up ranges from free to us per year with most costing around per year before you join you should make sure thathe service has many listings in the cities that you wanto visit creating a listing members create their own listings consisting of a profile and a home description emphasis put on providing as much information as possible including neighborhood highlights and photos to attract members who are looking for whathe home has toffer it is recommended to create a listing well in advance of the proposed homexchange datesearching the search tools on many sites allow members to filter searches by destination date number of rooms and number of travelers additional criteria might include home amenities and local attractions reversearch tools which allow users to search for members interested in visiting their specific areare the most effective way ofinding a match receiving and sending inquiries most sites allow members to exchange messages without revealing any personal details until they aready to do so members also receive inquiries from other members withomes in their statedestinations look for members that have high response rates getting acquainted members geto know each other through the many emails and phone calls while negotiating thexchange nobody exchanges homes with a complete stranger preparing for thexchange cleand tidyour home before your exchange fix itemsuch as leaky faucets provide information using your appliances local information eg hospital restaurants grocery stores transportation and contact numbers eg family member or friends dentist car garagetiquette during thexchange once a member is in their exchange home it is understood thathey treat it withe same respecthey expect for their own home many specific house rules will have been previously arranged between the parties and the rest is common sense use of itemsuch as cars boats recreational vehicles or sports equipment will be addressed in thexchange agreement other amentities to be addressed include access to washing machines books music the internetoys for the kids and the general comforts that come withome living some agreements will require choresuch as pet or plant care homexchange was the subject of the romanticomedy the holiday directed by nancy meyers in which a home swap between kate winslet and cameron diaz leads to romance with jack black and jude law homeexchangecom seen in the movie the holiday permanent homexchange during the financial crisis which included a slump in the housing market house swapping evolved to help buyers and sellers find a more permanent match as with more traditional house swapping home owners were introduced to each other via the internet mutual exchange there are also mechanisms for tenants of public housing to swap their homes for example uk law allows a system of mutual exchanges that have seen up to six homeswapped in one coordinated move use in ethniconflicts in war torn areas homexchange can be used as a method of avoiding violence a member of an endangered ethnic minority in oneighborhood swaps homes with a friend who is a member of a different ethnic group who is an endangered minority in their owneighborhood the goal is that each minority resident ends up in a neighborhood where their ethnicity is in the majority see also hospitality service homestay mutual exchange collaborative consumption barter economy externalinks homexchange a how to guide category tourist accommodations category houses","main_words":["homexchange","also_known","house","swapping","type","hospitality_service","two","parties","agree","toffer","homestay","lodging","homes","set","period","time","since","monetary_exchange","takes_place","form","barter","collaborative_consumption","sharing","homexchange","cover","type","dwelling","including","apartments","houses","holiday_cottage","boats","vehicles","include","exchange","thentire","home","room","length","swap","vary","weekend","year","swap","simultaneous","non","simultaneous","like","homestay","homexchanges","offer","several","advantages","hotelodging","including","opportunities","save","money","life","another_country","organized","homexchange","originated","withe","creation","international","group","european","teachers","plenty","vacation","time","looking","economic","means","travel","internationally","facts","year","teacher","david","created","homexchange","network","called","vacation","exchange","club","inew_york_city","originally","homexchange","networks","printed","yearly","catalog","homes","charged","members","yearly","fee","proliferation","internet","greatly","increased","accessibility","homexchange","providing","users","easier","communication","information","much_larger","pool","homes","washington","moved","business","online","homexchange","estimated","growing","per_year","homexchange","networks","continuing","experience","rapid","growth","summer","traditionally","peak","season","house","swapping","families","travel","summer","vacations","participant","demographics","participants","tend","well","traveled","participants","tend","active","conscientious","culturally","curious","travelers","homexchanges","also_popular","teachers","school","holidays","particularly","summer","homexchanges","also_used","seniors","time","travel","survey","conducted","shows","attended","university","done","post","graduate","work","participants","travel","children","consist","groups","three","travel","without","children","groups","twor","less","study","university","shows","wide","crossection","public","represented","aged","age","study","showed","museums","great","outdoors","friendly","tourism","express","interest","cultural_heritage","fair","trade","food","organic","food","also","study","notes","strong","degree","trust","emotion","trust","necessary","collaborative_consumption","people","satisfied","witheir","experience","withaving","homes","guidebook","legend","arthur_frommer","calls","homexchange","single","intelligent","method","miller","completed","homexchanges","wrote","huffington_post","region","like","residents","kitchen","gather","around","fireplace","living_room","ride","community","bicycles","garage","part","neighborhood","business","district","also","signing","user","signs","service","providing","network","members","well","online","tools","needed","thexchange","see","list","sign","several","homexchange","services","costo","sign","ranges","free","us","per_year","costing","around","per_year","join","make_sure","thathe","service","many","listings","cities","wanto","visit","creating","listing","members","create","listings","consisting","profile","home","description","emphasis","put","providing","much","information","possible","including","neighborhood","highlights","photos","attract","members","looking","whathe","home","toffer","recommended","create","listing","well","advance","proposed","homexchange","search","tools","many","sites","allow","members","filter","searches","destination","date","number","rooms","number","travelers","additional","criteria","might","include","home","amenities","local","attractions","tools","allow","users","search","members","interested","visiting","specific","areare","effective","way","match","receiving","sending","sites","allow","members","exchange","messages","without","revealing","personal","details","members","also","receive","members","look","members","high","response","rates","getting","members","geto","know","many","emails","phone","calls","negotiating","thexchange","nobody","exchanges","homes","complete","stranger","preparing","thexchange","cleand","home","exchange","fix","itemsuch","provide_information","using","appliances","local","information","hospital","restaurants","grocery","stores","transportation","contact","numbers","family","member","friends","car","thexchange","member","exchange","home","understood","thathey","treat","withe","expect","home","many","specific","house","rules","previously","arranged","parties","rest","common","sense","use","itemsuch","cars","boats","recreational","vehicles","sports","equipment","addressed","thexchange","agreement","addressed","include","access","washing","machines","books","music","kids","general","comforts","come","living","agreements","require","pet","plant","care","homexchange","subject","holiday","directed","nancy","meyers","home","swap","kate","cameron","diaz","leads","romance","jack","black","law","seen","movie","holiday","permanent","homexchange","financial","crisis","included","housing","market","house","swapping","evolved","help","buyers","sellers","find","permanent","match","traditional","house","swapping","home_owners","introduced","via","internet","mutual","exchange","also","mechanisms","tenants","public","housing","swap","homes","example","uk","law","allows","system","mutual","exchanges","seen","six","one","coordinated","move","use","war","torn","areas","homexchange","used","method","avoiding","violence","member","endangered","ethnic","minority","homes","friend","member","different","ethnic","group","endangered","minority","goal","minority","resident","ends","neighborhood","ethnicity","majority","see_also","hospitality_service","homestay","mutual","exchange","collaborative_consumption","barter","economy","externalinks","homexchange","accommodations","category","houses"],"clean_bigrams":[["homexchange","also"],["also","known"],["house","swapping"],["hospitality","service"],["two","parties"],["parties","agree"],["agree","toffer"],["set","period"],["time","since"],["monetary","exchange"],["exchange","takes"],["takes","place"],["barter","collaborative"],["collaborative","consumption"],["sharing","homexchange"],["dwelling","including"],["including","apartments"],["apartments","houses"],["houses","holiday"],["holiday","cottage"],["thentire","home"],["non","simultaneous"],["simultaneous","like"],["homexchanges","offer"],["offer","several"],["several","advantages"],["hotelodging","including"],["save","money"],["another","country"],["country","organized"],["organized","homexchange"],["homexchange","originated"],["withe","creation"],["european","teachers"],["vacation","time"],["time","looking"],["economic","means"],["travel","internationally"],["internationally","facts"],["year","teacher"],["teacher","david"],["homexchange","network"],["network","called"],["called","vacation"],["vacation","exchange"],["exchange","club"],["inew","york"],["york","city"],["originally","homexchange"],["homexchange","networks"],["networks","printed"],["yearly","catalog"],["charged","members"],["yearly","fee"],["internet","greatly"],["greatly","increased"],["homexchange","providing"],["providing","users"],["easier","communication"],["communication","information"],["much","larger"],["larger","pool"],["business","online"],["per","year"],["homexchange","networks"],["experience","rapid"],["rapid","growth"],["growth","summer"],["peak","season"],["house","swapping"],["families","travel"],["summer","vacations"],["vacations","participant"],["participant","demographics"],["demographics","participants"],["participants","tend"],["well","traveled"],["traveled","participants"],["participants","tend"],["active","conscientious"],["culturally","curious"],["curious","travelers"],["travelers","homexchanges"],["also","popular"],["school","holidays"],["holidays","particularly"],["summer","homexchanges"],["also","used"],["survey","conducted"],["attended","university"],["done","post"],["post","graduate"],["graduate","work"],["participants","travel"],["travel","without"],["without","children"],["twor","less"],["wide","crossection"],["study","showed"],["great","outdoors"],["friendly","tourism"],["express","interest"],["cultural","heritage"],["heritage","fair"],["fair","trade"],["trade","food"],["organic","food"],["study","notes"],["strong","degree"],["trust","emotion"],["emotion","trust"],["trust","necessary"],["collaborative","consumption"],["satisfied","witheir"],["witheir","experience"],["experience","withaving"],["guidebook","legend"],["legend","arthur"],["arthur","frommer"],["frommer","calls"],["calls","homexchange"],["intelligent","method"],["completed","homexchanges"],["homexchanges","wrote"],["huffington","post"],["region","like"],["like","residents"],["kitchen","gather"],["gather","around"],["living","room"],["business","district"],["also","signing"],["user","signs"],["service","providing"],["online","tools"],["tools","needed"],["thexchange","see"],["see","list"],["several","homexchange"],["homexchange","services"],["costo","sign"],["us","per"],["per","year"],["costing","around"],["around","per"],["per","year"],["make","sure"],["sure","thathe"],["thathe","service"],["many","listings"],["wanto","visit"],["visit","creating"],["listing","members"],["members","create"],["listings","consisting"],["home","description"],["description","emphasis"],["emphasis","put"],["much","information"],["possible","including"],["including","neighborhood"],["neighborhood","highlights"],["attract","members"],["whathe","home"],["listing","well"],["proposed","homexchange"],["search","tools"],["many","sites"],["sites","allow"],["allow","members"],["filter","searches"],["destination","date"],["date","number"],["travelers","additional"],["additional","criteria"],["criteria","might"],["might","include"],["include","home"],["home","amenities"],["local","attractions"],["allow","users"],["members","interested"],["specific","areare"],["effective","way"],["match","receiving"],["sites","allow"],["allow","members"],["exchange","messages"],["messages","without"],["without","revealing"],["personal","details"],["members","also"],["also","receive"],["high","response"],["response","rates"],["rates","getting"],["members","geto"],["geto","know"],["many","emails"],["phone","calls"],["negotiating","thexchange"],["thexchange","nobody"],["nobody","exchanges"],["exchanges","homes"],["complete","stranger"],["stranger","preparing"],["thexchange","cleand"],["exchange","fix"],["fix","itemsuch"],["provide","information"],["information","using"],["appliances","local"],["local","information"],["hospital","restaurants"],["restaurants","grocery"],["grocery","stores"],["stores","transportation"],["contact","numbers"],["family","member"],["exchange","home"],["understood","thathey"],["thathey","treat"],["home","many"],["many","specific"],["specific","house"],["house","rules"],["previously","arranged"],["common","sense"],["sense","use"],["cars","boats"],["boats","recreational"],["recreational","vehicles"],["sports","equipment"],["thexchange","agreement"],["addressed","include"],["include","access"],["washing","machines"],["machines","books"],["books","music"],["general","comforts"],["plant","care"],["care","homexchange"],["holiday","directed"],["nancy","meyers"],["home","swap"],["cameron","diaz"],["diaz","leads"],["jack","black"],["holiday","permanent"],["permanent","homexchange"],["financial","crisis"],["housing","market"],["market","house"],["house","swapping"],["swapping","evolved"],["help","buyers"],["sellers","find"],["permanent","match"],["traditional","house"],["house","swapping"],["swapping","home"],["home","owners"],["internet","mutual"],["mutual","exchange"],["also","mechanisms"],["public","housing"],["example","uk"],["uk","law"],["law","allows"],["mutual","exchanges"],["one","coordinated"],["coordinated","move"],["move","use"],["war","torn"],["torn","areas"],["areas","homexchange"],["avoiding","violence"],["endangered","ethnic"],["ethnic","minority"],["different","ethnic"],["ethnic","group"],["endangered","minority"],["minority","resident"],["resident","ends"],["majority","see"],["see","also"],["also","hospitality"],["hospitality","service"],["service","homestay"],["homestay","mutual"],["mutual","exchange"],["exchange","collaborative"],["collaborative","consumption"],["consumption","barter"],["barter","economy"],["economy","externalinks"],["externalinks","homexchange"],["guide","category"],["category","tourist"],["tourist","accommodations"],["accommodations","category"],["category","houses"]],"all_collocations":["homexchange also","also known","house swapping","hospitality service","two parties","parties agree","agree toffer","set period","time since","monetary exchange","exchange takes","takes place","barter collaborative","collaborative consumption","sharing homexchange","dwelling including","including apartments","apartments houses","houses holiday","holiday cottage","thentire home","non simultaneous","simultaneous like","homexchanges offer","offer several","several advantages","hotelodging including","save money","another country","country organized","organized homexchange","homexchange originated","withe creation","european teachers","vacation time","time looking","economic means","travel internationally","internationally facts","year teacher","teacher david","homexchange network","network called","called vacation","vacation exchange","exchange club","inew york","york city","originally homexchange","homexchange networks","networks printed","yearly catalog","charged members","yearly fee","internet greatly","greatly increased","homexchange providing","providing users","easier communication","communication information","much larger","larger pool","business online","per year","homexchange networks","experience rapid","rapid growth","growth summer","peak season","house swapping","families travel","summer vacations","vacations participant","participant demographics","demographics participants","participants tend","well traveled","traveled participants","participants tend","active conscientious","culturally curious","curious travelers","travelers homexchanges","also popular","school holidays","holidays particularly","summer homexchanges","also used","survey conducted","attended university","done post","post graduate","graduate work","participants travel","travel without","without children","twor less","wide crossection","study showed","great outdoors","friendly tourism","express interest","cultural heritage","heritage fair","fair trade","trade food","organic food","study notes","strong degree","trust emotion","emotion trust","trust necessary","collaborative consumption","satisfied witheir","witheir experience","experience withaving","guidebook legend","legend arthur","arthur frommer","frommer calls","calls homexchange","intelligent method","completed homexchanges","homexchanges wrote","huffington post","region like","like residents","kitchen gather","gather around","living room","business district","also signing","user signs","service providing","online tools","tools needed","thexchange see","see list","several homexchange","homexchange services","costo sign","us per","per year","costing around","around per","per year","make sure","sure thathe","thathe service","many listings","wanto visit","visit creating","listing members","members create","listings consisting","home description","description emphasis","emphasis put","much information","possible including","including neighborhood","neighborhood highlights","attract members","whathe home","listing well","proposed homexchange","search tools","many sites","sites allow","allow members","filter searches","destination date","date number","travelers additional","additional criteria","criteria might","might include","include home","home amenities","local attractions","allow users","members interested","specific areare","effective way","match receiving","sites allow","allow members","exchange messages","messages without","without revealing","personal details","members also","also receive","high response","response rates","rates getting","members geto","geto know","many emails","phone calls","negotiating thexchange","thexchange nobody","nobody exchanges","exchanges homes","complete stranger","stranger preparing","thexchange cleand","exchange fix","fix itemsuch","provide information","information using","appliances local","local information","hospital restaurants","restaurants grocery","grocery stores","stores transportation","contact numbers","family member","exchange home","understood thathey","thathey treat","home many","many specific","specific house","house rules","previously arranged","common sense","sense use","cars boats","boats recreational","recreational vehicles","sports equipment","thexchange agreement","addressed include","include access","washing machines","machines books","books music","general comforts","plant care","care homexchange","holiday directed","nancy meyers","home swap","cameron diaz","diaz leads","jack black","holiday permanent","permanent homexchange","financial crisis","housing market","market house","house swapping","swapping evolved","help buyers","sellers find","permanent match","traditional house","house swapping","swapping home","home owners","internet mutual","mutual exchange","also mechanisms","public housing","example uk","uk law","law allows","mutual exchanges","one coordinated","coordinated move","move use","war torn","torn areas","areas homexchange","avoiding violence","endangered ethnic","ethnic minority","different ethnic","ethnic group","endangered minority","minority resident","resident ends","majority see","see also","also hospitality","hospitality service","service homestay","homestay mutual","mutual exchange","exchange collaborative","collaborative consumption","consumption barter","barter economy","economy externalinks","externalinks homexchange","guide category","category tourist","tourist accommodations","accommodations category","category houses"],"new_description":"homexchange also_known house swapping type hospitality_service two parties agree toffer homestay lodging homes set period time since monetary_exchange takes_place form barter collaborative_consumption sharing homexchange cover type dwelling including apartments houses holiday_cottage boats vehicles include exchange thentire home room length swap vary weekend year swap simultaneous non simultaneous like homestay homexchanges offer several advantages hotelodging including opportunities save money life another_country organized homexchange originated withe creation international group european teachers plenty vacation time looking economic means travel internationally facts year teacher david created homexchange network called vacation exchange club inew_york_city originally homexchange networks printed yearly catalog homes charged members yearly fee proliferation internet greatly increased accessibility homexchange providing users easier communication information much_larger pool homes washington moved business online homexchange estimated growing per_year homexchange networks continuing experience rapid growth summer traditionally peak season house swapping families travel summer vacations participant demographics participants tend well traveled participants tend active conscientious culturally curious travelers homexchanges also_popular teachers school holidays particularly summer homexchanges also_used seniors time travel survey conducted shows attended university done post graduate work participants travel children consist groups three travel without children groups twor less study university shows wide crossection public represented aged age study showed museums great outdoors friendly tourism express interest cultural_heritage fair trade food organic food also study notes strong degree trust emotion trust necessary collaborative_consumption people satisfied witheir experience withaving homes guidebook legend arthur_frommer calls homexchange single intelligent method miller completed homexchanges wrote huffington_post region like residents kitchen gather around fireplace living_room ride community bicycles garage part neighborhood business district also signing user signs service providing network members well online tools needed thexchange see list sign several homexchange services costo sign ranges free us per_year costing around per_year join make_sure thathe service many listings cities wanto visit creating listing members create listings consisting profile home description emphasis put providing much information possible including neighborhood highlights photos attract members looking whathe home toffer recommended create listing well advance proposed homexchange search tools many sites allow members filter searches destination date number rooms number travelers additional criteria might include home amenities local attractions tools allow users search members interested visiting specific areare effective way match receiving sending sites allow members exchange messages without revealing personal details members also receive members look members high response rates getting members geto know many emails phone calls negotiating thexchange nobody exchanges homes complete stranger preparing thexchange cleand home exchange fix itemsuch provide_information using appliances local information hospital restaurants grocery stores transportation contact numbers family member friends car thexchange member exchange home understood thathey treat withe expect home many specific house rules previously arranged parties rest common sense use itemsuch cars boats recreational vehicles sports equipment addressed thexchange agreement addressed include access washing machines books music kids general comforts come living agreements require pet plant care homexchange subject holiday directed nancy meyers home swap kate cameron diaz leads romance jack black law seen movie holiday permanent homexchange financial crisis included housing market house swapping evolved help buyers sellers find permanent match traditional house swapping home_owners introduced via internet mutual exchange also mechanisms tenants public housing swap homes example uk law allows system mutual exchanges seen six one coordinated move use war torn areas homexchange used method avoiding violence member endangered ethnic minority homes friend member different ethnic group endangered minority goal minority resident ends neighborhood ethnicity majority see_also hospitality_service homestay mutual exchange collaborative_consumption barter economy externalinks homexchange guide_category_tourist accommodations category houses"},{"title":"Homestay","description":"homestay is a popular form of hospitality and lodging whereby visitorstay in a house or apartment of a local of the city to which they are traveling the length of stay can vary from one nighto even a year and can be free in exchange for monetary compensation in exchange for a stay athe guest s property either simultaneously or at another time homexchange or in exchange for help on the hospitality host s property longer term homestays are popular with students that are participating in study abroad programs homestays arexamples of collaborative consumption and sharing in cases where money is not exchanged in return for accommodation they arexamples of a barter economy or gift economy arranging a homestay students that are studying abroad and wish to participate in a homestay typically arrange them via the same local educational consultant who alsorganizes the academic aspect of their program independent students who assume all of their own travel arrangements can contact a local homestay placement agency to tailor their accommodation details or alternatively may inquire via theirespective school of study travelers that wish to participate in a home stay typically arrange them via hospitality service the terms of the homestay are generally worked out in advance and will include itemsuch as the type of accommodation length of stay chores required to be performed eg cleaning laundering help on a farm curfews use of utilities and internetelevision or telephone and rules related to smoking drinking andrugs one form of homestay is a homexchange whereby two partieswap homes for a specific period of time there are websites that cater to thispecific type of homestay in scouting scoutsometimes live for a few days with a host family to experienceveryday life in that community this often takes place before or after a jamboree scouting jamboree and is usually organized by the organization running the jamboree home hospitality in the uk an introduction advantages andisadvantages for the hosts the homestay provides cultural exchange opportunities or in cases where compensation is provided hosts may receive monetary compensation and or help on their property however some hosts may be uncomfortable withe idea of others using their home stays can provide several opportunities to home stay guestsavings on lodging costs personal connections with people from a different culture and or social class local perspective and information abouthe city that is not easily found in guidebook s a deeper understanding of theveryday life of the locals more interactions with foreigners thereby strengthening intercultural competence and reducing prejudices and intolerance and easier immersion into foreign language opportunities to stay in areas under served by hotel s or hostel s opportunities to stay in unique propertiesuch as igloo s cabins and castle s compared to staying in a hotel a home stay may result in a lower carbon footprint in certain cases where students that are studying abroad stay with a family the host family may play a pseudo parental role giving advice and sometimesupervising students activities in some homestays families act as cross cultural advisers helping the students understand adjusto their new culture home stays may have disadvantages over hotel hostel accommodation may require additional planning before travelast minute changes or cancellations by either the host or the guest may inconvenience others lodging and sleeping surfaces may be less comfortable and or have less privacy guests may be required to adhere to a schedule or follow ruleset by a host which restrict freedom lodging may not be close tourist attractions if the guest and host do not get along the home stay can make a visito an otherwise pleasant city unbearable in cases where the guest must perform a service for the hosthe homestay can deplete the amount of time available for sightseeing see also farm stay category tourist accommodations","main_words":["homestay","popular","form","hospitality","lodging","whereby","house","apartment","local","city","traveling","length","stay","vary","one","nighto","even","year","free","exchange","monetary","compensation","exchange","stay","athe","guest","property","either","simultaneously","another","time","homexchange","exchange","help","hospitality","host","property","longer","term","homestays","popular","students","participating","study","abroad","programs","homestays","arexamples","collaborative_consumption","sharing","cases","money","exchanged","return","accommodation","arexamples","barter","economy","gift","economy","arranging","homestay","students","studying","abroad","wish","participate","homestay","typically","arrange","via","local","educational","consultant","academic","aspect","program","independent","students","assume","travel","arrangements","contact","local","homestay","placement","agency","tailor","accommodation","details","alternatively","may","via","theirespective","school","study","travelers","wish","participate","home","stay","typically","arrange","via","hospitality_service","terms","homestay","generally","worked","advance","include","itemsuch","type","accommodation","length","stay","chores","required","performed","cleaning","help","farm","use","utilities","telephone","rules","related","smoking","drinking","one","form","homestay","homexchange","whereby","two","homes","specific","period","time","websites","cater","type","homestay","scouting","live","days","host","family","life","community","often","takes_place","scouting","usually","organized","organization","running","home","hospitality","uk","introduction","advantages","hosts","homestay","provides","cultural_exchange","opportunities","cases","compensation","provided","hosts","may","receive","monetary","compensation","help","property","however","hosts","may","withe_idea","others","using","home","stays","provide","several","opportunities","home","stay","lodging","costs","personal","connections","people","different","culture","social","class","local","perspective","information_abouthe","city","easily","found","guidebook","deeper","understanding","life","locals","interactions","foreigners","thereby","strengthening","competence","reducing","easier","immersion","foreign","language","opportunities","stay","areas","served","hotel","hostel","opportunities","stay","unique","cabins","castle","compared","staying","hotel","home","stay","may","result","lower","carbon","footprint","certain","cases","students","studying","abroad","stay","family","host","family","may","play","pseudo","parental","role","giving","advice","students","activities","homestays","families","act","cross","cultural","helping","students","understand","new","culture","home","stays","may","disadvantages","hotel","hostel","accommodation","may","require","additional","planning","minute","changes","either","host","guest","may","others","lodging","sleeping","surfaces","may","less","comfortable","less","privacy","guests","may","required","adhere","schedule","follow","host","restrict","freedom","lodging","may","close","tourist_attractions","guest","host","get","along","home","stay","make","visito","otherwise","pleasant","city","cases","guest","must","perform","service","hosthe","homestay","amount","time","available","sightseeing","see_also","farm","stay","category_tourist","accommodations"],"clean_bigrams":[["popular","form"],["lodging","whereby"],["one","nighto"],["nighto","even"],["monetary","compensation"],["stay","athe"],["athe","guest"],["property","either"],["either","simultaneously"],["another","time"],["time","homexchange"],["hospitality","host"],["property","longer"],["longer","term"],["term","homestays"],["study","abroad"],["abroad","programs"],["programs","homestays"],["homestays","arexamples"],["collaborative","consumption"],["barter","economy"],["gift","economy"],["economy","arranging"],["homestay","students"],["studying","abroad"],["homestay","typically"],["typically","arrange"],["local","educational"],["educational","consultant"],["academic","aspect"],["program","independent"],["independent","students"],["travel","arrangements"],["local","homestay"],["homestay","placement"],["placement","agency"],["accommodation","details"],["alternatively","may"],["via","theirespective"],["theirespective","school"],["study","travelers"],["home","stay"],["stay","typically"],["typically","arrange"],["via","hospitality"],["hospitality","service"],["generally","worked"],["include","itemsuch"],["accommodation","length"],["stay","chores"],["chores","required"],["rules","related"],["smoking","drinking"],["one","form"],["homexchange","whereby"],["whereby","two"],["specific","period"],["host","family"],["often","takes"],["takes","place"],["usually","organized"],["organization","running"],["home","hospitality"],["introduction","advantages"],["homestay","provides"],["provides","cultural"],["cultural","exchange"],["exchange","opportunities"],["provided","hosts"],["hosts","may"],["may","receive"],["receive","monetary"],["monetary","compensation"],["property","however"],["hosts","may"],["withe","idea"],["others","using"],["home","stays"],["provide","several"],["several","opportunities"],["home","stay"],["lodging","costs"],["costs","personal"],["personal","connections"],["different","culture"],["social","class"],["class","local"],["local","perspective"],["information","abouthe"],["abouthe","city"],["easily","found"],["deeper","understanding"],["foreigners","thereby"],["thereby","strengthening"],["easier","immersion"],["foreign","language"],["language","opportunities"],["hotel","hostel"],["home","stay"],["stay","may"],["may","result"],["lower","carbon"],["carbon","footprint"],["certain","cases"],["studying","abroad"],["abroad","stay"],["host","family"],["family","may"],["may","play"],["pseudo","parental"],["parental","role"],["role","giving"],["giving","advice"],["students","activities"],["homestays","families"],["families","act"],["cross","cultural"],["students","understand"],["new","culture"],["culture","home"],["home","stays"],["stays","may"],["hotel","hostel"],["hostel","accommodation"],["accommodation","may"],["may","require"],["require","additional"],["additional","planning"],["minute","changes"],["guest","may"],["others","lodging"],["sleeping","surfaces"],["surfaces","may"],["less","comfortable"],["less","privacy"],["privacy","guests"],["guests","may"],["restrict","freedom"],["freedom","lodging"],["lodging","may"],["close","tourist"],["tourist","attractions"],["get","along"],["home","stay"],["otherwise","pleasant"],["pleasant","city"],["guest","must"],["must","perform"],["hosthe","homestay"],["time","available"],["sightseeing","see"],["see","also"],["also","farm"],["farm","stay"],["stay","category"],["category","tourist"],["tourist","accommodations"]],"all_collocations":["popular form","lodging whereby","one nighto","nighto even","monetary compensation","stay athe","athe guest","property either","either simultaneously","another time","time homexchange","hospitality host","property longer","longer term","term homestays","study abroad","abroad programs","programs homestays","homestays arexamples","collaborative consumption","barter economy","gift economy","economy arranging","homestay students","studying abroad","homestay typically","typically arrange","local educational","educational consultant","academic aspect","program independent","independent students","travel arrangements","local homestay","homestay placement","placement agency","accommodation details","alternatively may","via theirespective","theirespective school","study travelers","home stay","stay typically","typically arrange","via hospitality","hospitality service","generally worked","include itemsuch","accommodation length","stay chores","chores required","rules related","smoking drinking","one form","homexchange whereby","whereby two","specific period","host family","often takes","takes place","usually organized","organization running","home hospitality","introduction advantages","homestay provides","provides cultural","cultural exchange","exchange opportunities","provided hosts","hosts may","may receive","receive monetary","monetary compensation","property however","hosts may","withe idea","others using","home stays","provide several","several opportunities","home stay","lodging costs","costs personal","personal connections","different culture","social class","class local","local perspective","information abouthe","abouthe city","easily found","deeper understanding","foreigners thereby","thereby strengthening","easier immersion","foreign language","language opportunities","hotel hostel","home stay","stay may","may result","lower carbon","carbon footprint","certain cases","studying abroad","abroad stay","host family","family may","may play","pseudo parental","parental role","role giving","giving advice","students activities","homestays families","families act","cross cultural","students understand","new culture","culture home","home stays","stays may","hotel hostel","hostel accommodation","accommodation may","may require","require additional","additional planning","minute changes","guest may","others lodging","sleeping surfaces","surfaces may","less comfortable","less privacy","privacy guests","guests may","restrict freedom","freedom lodging","lodging may","close tourist","tourist attractions","get along","home stay","otherwise pleasant","pleasant city","guest must","must perform","hosthe homestay","time available","sightseeing see","see also","also farm","farm stay","stay category","category tourist","tourist accommodations"],"new_description":"homestay popular form hospitality lodging whereby house apartment local city traveling length stay vary one nighto even year free exchange monetary compensation exchange stay athe guest property either simultaneously another time homexchange exchange help hospitality host property longer term homestays popular students participating study abroad programs homestays arexamples collaborative_consumption sharing cases money exchanged return accommodation arexamples barter economy gift economy arranging homestay students studying abroad wish participate homestay typically arrange via local educational consultant academic aspect program independent students assume travel arrangements contact local homestay placement agency tailor accommodation details alternatively may via theirespective school study travelers wish participate home stay typically arrange via hospitality_service terms homestay generally worked advance include itemsuch type accommodation length stay chores required performed cleaning help farm use utilities telephone rules related smoking drinking one form homestay homexchange whereby two homes specific period time websites cater type homestay scouting live days host family life community often takes_place scouting usually organized organization running home hospitality uk introduction advantages hosts homestay provides cultural_exchange opportunities cases compensation provided hosts may receive monetary compensation help property however hosts may withe_idea others using home stays provide several opportunities home stay lodging costs personal connections people different culture social class local perspective information_abouthe city easily found guidebook deeper understanding life locals interactions foreigners thereby strengthening competence reducing easier immersion foreign language opportunities stay areas served hotel hostel opportunities stay unique cabins castle compared staying hotel home stay may result lower carbon footprint certain cases students studying abroad stay family host family may play pseudo parental role giving advice students activities homestays families act cross cultural helping students understand new culture home stays may disadvantages hotel hostel accommodation may require additional planning minute changes either host guest may others lodging sleeping surfaces may less comfortable less privacy guests may required adhere schedule follow host restrict freedom lodging may close tourist_attractions guest host get along home stay make visito otherwise pleasant city cases guest must perform service hosthe homestay amount time available sightseeing see_also farm stay category_tourist accommodations"},{"title":"Honeymoon","description":"a honeymoon is the traditional holiday taken by newlywed s to celebrate their marriage intimacy and seclusion today honeymoons are often celebrated in destinations considered exotic oromance love romantic file wedding yvette villebon banq p s p jpg thumb newlyweds leaving for their honeymoon boarding a trans canadair lines plane montreal this the period whenewly wed couples take a break to share some private and intimate moments that helps establish love in theirelationship this privacy in turn is believed to ease the comfort zone towards a physical relationship which is one of the primary means of bonding during the initial days of marriage thearliesterm for this in english was hony moone which was recorded as early as in western culture the custom of a newlywed couple going on a holiday together originated in early th century great britain upper class couples would take a bridal tour sometimes accompanied by friends or family to visit relatives who had not been able to attend the wedding the practice soon spread to theuropean continent and was known as voyage la fa on anglaisenglish style voyage in france from the s onwards honeymoons in the modern sense ie a pure holiday voyage undertaken by the married couple became widespreaduring the belle poque as one of the first instances of modern mass tourism this came about in spite of initial disapproval by contemporary medical opinion which worried about women s frail health and by savoir vivre guidebooks which referred the public attention drawn to what wassumed to be the wife sexual initiation the most popular honeymoon destinations athe time were the french rivierand italy particularly itseaside resorts and romanticitiesuch as rome verona or venice typically honeymoons would start on the nighthey were married withe coupleaving midway through the reception to catch a late train or ship however in the st century many couples will not leave until days after the ceremony and reception in order to tie up loosends withe reception venue or simply enjoy the reception to its fullest and have a relaxing night afterwards to recover before undertaking a long journey in jewish traditions honeymoons are often put off seven days to allow for the sevenights ofeasting if the visits to friends and family cannot be incorporated into the trip the oxford english dictionary offers no etymology but gives examples dating back to the th century the merriam webster dictionary reports thetymology as from the idea thathe first month of marriage is the sweetest in ancientimes honeymoon referred to the time of year when bee honey was ripe and cured to be harvested from hives or from the wild which made ithe sweetestime of the year this was usually around the summer solstice by end june a honeymoon can also be the first sweetest moments a newly wed couple spend together or the first holiday they spend together to celebrate their marriage one of the morecent citations in the oxford english dictionary indicates that while today honeymoon has a positive meaning the word was originally a reference to the inevitable waning of love like a moon phase of the moon this the first known literary reference to the honeymoon was penned in richard huloet s abecedarium anglico latinum huloet writes a widely disputed explanation of the term claims that it comes from a tradition in any of a number of cultures eg welsh german or scandinavian or babylonian where mead was drunk in great quantities at weddings and then after the ceremony nuptial couples were given a month supply of mead it was believed that by faithfully drinking mead for that first monthe woman would bear fruit and a child would be born within the year there are many words of similar meaning in other languages the sinhalese language sinhalese form translates as madhu samaya the french language french form translates as moon of honey lune de miel as do the spanish language spanish luna de miel romanian language romanian luna de miere nepali language nepali madhumas portuguese language portuguese lua de mel and italian language italian luna di mielequivalents the welsh language welsh word for honeymoon is mis m l which means honey month and similarly the ukranian language ukrainian polish language polish miesi c miodowy russian language russian arabic shahr el assal greek language greek and hebrew language hebrew yerach d vash versions yerach is used for month rather than the more common chodesh yerach is related to the word yare ach for moon and the twords are spelled alike the persian language persian word is m h e asal which means bothoney moon and honey month m h in persian means both moon and monthe same applies to the word ay in the turkish language turkish equivalent balay in hungarian language it is called honey weeks m zeshetek likewise the tamilanguage tamil word for honeymoon is thaenilavu withaen honey and nilavu moon and the marathi language marathi word for honeymoon is madhuchandra with madhu honey and chandra moon whereas in bangla bengali language it is referred to as modhuchondrima with modhu honey and chondrima moon see also bride kidnapping babymoon category wedding category types of tourism category types of travel","main_words":["honeymoon","traditional","holiday","taken","celebrate","marriage","today","honeymoons","often","celebrated","destinations","considered","exotic","love","romantic","file","wedding","p","p","jpg","thumb","leaving","honeymoon","boarding","trans","lines","plane","montreal","period","couples","take","break","share","private","intimate","moments","helps","establish","love","privacy","turn","believed","ease","comfort","zone","towards","physical","relationship","one","primary","means","bonding","initial","days","marriage","english","moone","recorded","early","western","culture","custom","couple","going","holiday","together","originated","early_th","century","great_britain","upper_class","couples","would_take","tour","sometimes","accompanied","friends","family","visit","relatives","able","attend","wedding","practice","soon","spread","theuropean","continent","known","voyage","la","style","voyage","france","onwards","honeymoons","modern","sense","pure","holiday","voyage","undertaken","married","couple","became","belle","one","first","instances","modern","mass_tourism","came","spite","initial","contemporary","medical","opinion","worried","women","health","guidebooks","referred","public","attention","drawn","wife","sexual","popular","honeymoon","destinations","athe_time","french","italy","particularly","resorts","rome","verona","venice","typically","honeymoons","would","start","married","withe","midway","reception","catch","late","train","ship","however","st_century","many","couples","leave","days","ceremony","reception","order","tie","withe","reception","venue","simply","enjoy","reception","night","afterwards","recover","undertaking","long","journey","jewish","traditions","honeymoons","often","put","seven_days","allow","visits","friends","family","cannot","incorporated","trip","oxford_english_dictionary","offers","etymology","gives","examples","dating_back","th_century","merriam_webster","dictionary","reports","idea","thathe_first","month","marriage","ancientimes","honeymoon","referred","time","year","bee","honey","cured","harvested","wild","made","ithe","year","usually","around","summer","end","june","honeymoon","also","first","moments","newly","couple","spend","together","first","holiday","spend","together","celebrate","marriage","one","morecent","citations","oxford_english_dictionary","indicates","today","honeymoon","positive","meaning","word","originally","reference","love","like","moon","phase","moon","first","known","literary","reference","honeymoon","richard","writes","widely","disputed","explanation","term","claims","comes","tradition","number","cultures","welsh","german","scandinavian","mead","drunk","great","quantities","weddings","ceremony","couples","given","month","supply","mead","believed","drinking","mead","first","monthe","woman","would","bear","fruit","child","would","born","within","year","many","words","similar","meaning","languages","language","form","translates","french_language","french","form","translates","moon","honey","de","spanish_language","spanish","luna","de","romanian","language","romanian","luna","portuguese_language","portuguese","de","mel","italian","language","italian","luna","welsh","language","welsh","word","honeymoon","l","means","honey","month","similarly","language","ukrainian","polish","language","polish","c","russian","language","russian","arabic","el","greek","language","greek","hebrew","language","hebrew","versions","used","month","rather","common","related","word","moon","alike","persian","language","persian","word","h","e","means","moon","honey","month","h","persian","means","moon","monthe","applies","word","turkish","language","turkish","equivalent","hungarian","language","called","honey","weeks","likewise","tamil","word","honeymoon","honey","moon","language","word","honeymoon","honey","moon","whereas","language","referred","honey","moon","see_also","bride","babymoon","category","wedding","category_types","tourism_category_types","travel"],"clean_bigrams":[["traditional","holiday"],["holiday","taken"],["today","honeymoons"],["often","celebrated"],["destinations","considered"],["considered","exotic"],["love","romantic"],["romantic","file"],["file","wedding"],["p","jpg"],["jpg","thumb"],["honeymoon","boarding"],["lines","plane"],["plane","montreal"],["couples","take"],["intimate","moments"],["helps","establish"],["establish","love"],["comfort","zone"],["zone","towards"],["physical","relationship"],["primary","means"],["initial","days"],["western","culture"],["couple","going"],["holiday","together"],["together","originated"],["early","th"],["th","century"],["century","great"],["great","britain"],["britain","upper"],["upper","class"],["class","couples"],["couples","would"],["would","take"],["tour","sometimes"],["sometimes","accompanied"],["visit","relatives"],["practice","soon"],["soon","spread"],["theuropean","continent"],["voyage","la"],["style","voyage"],["onwards","honeymoons"],["modern","sense"],["pure","holiday"],["holiday","voyage"],["voyage","undertaken"],["married","couple"],["couple","became"],["first","instances"],["modern","mass"],["mass","tourism"],["contemporary","medical"],["medical","opinion"],["public","attention"],["attention","drawn"],["wife","sexual"],["popular","honeymoon"],["honeymoon","destinations"],["destinations","athe"],["athe","time"],["italy","particularly"],["rome","verona"],["venice","typically"],["typically","honeymoons"],["honeymoons","would"],["would","start"],["married","withe"],["late","train"],["ship","however"],["st","century"],["century","many"],["many","couples"],["withe","reception"],["reception","venue"],["simply","enjoy"],["night","afterwards"],["long","journey"],["jewish","traditions"],["traditions","honeymoons"],["often","put"],["seven","days"],["oxford","english"],["english","dictionary"],["dictionary","offers"],["gives","examples"],["examples","dating"],["dating","back"],["th","century"],["merriam","webster"],["webster","dictionary"],["dictionary","reports"],["idea","thathe"],["thathe","first"],["first","month"],["ancientimes","honeymoon"],["honeymoon","referred"],["bee","honey"],["made","ithe"],["usually","around"],["end","june"],["couple","spend"],["spend","together"],["first","holiday"],["spend","together"],["marriage","one"],["morecent","citations"],["oxford","english"],["english","dictionary"],["dictionary","indicates"],["today","honeymoon"],["positive","meaning"],["love","like"],["moon","phase"],["first","known"],["known","literary"],["literary","reference"],["widely","disputed"],["disputed","explanation"],["term","claims"],["welsh","german"],["great","quantities"],["month","supply"],["drinking","mead"],["first","monthe"],["monthe","woman"],["woman","would"],["would","bear"],["bear","fruit"],["child","would"],["born","within"],["many","words"],["similar","meaning"],["form","translates"],["french","language"],["language","french"],["french","form"],["form","translates"],["spanish","language"],["language","spanish"],["spanish","luna"],["luna","de"],["romanian","language"],["language","romanian"],["romanian","luna"],["luna","de"],["language","portuguese"],["portuguese","language"],["language","portuguese"],["de","mel"],["italian","language"],["language","italian"],["italian","luna"],["welsh","language"],["language","welsh"],["welsh","word"],["means","honey"],["honey","month"],["language","ukrainian"],["ukrainian","polish"],["polish","language"],["language","polish"],["russian","language"],["language","russian"],["russian","arabic"],["greek","language"],["language","greek"],["hebrew","language"],["language","hebrew"],["month","rather"],["persian","language"],["language","persian"],["persian","word"],["h","e"],["honey","month"],["persian","means"],["turkish","language"],["language","turkish"],["turkish","equivalent"],["hungarian","language"],["called","honey"],["honey","weeks"],["tamil","word"],["moon","whereas"],["moon","see"],["see","also"],["also","bride"],["babymoon","category"],["category","wedding"],["wedding","category"],["category","types"],["tourism","category"],["category","types"]],"all_collocations":["traditional holiday","holiday taken","today honeymoons","often celebrated","destinations considered","considered exotic","love romantic","romantic file","file wedding","p jpg","honeymoon boarding","lines plane","plane montreal","couples take","intimate moments","helps establish","establish love","comfort zone","zone towards","physical relationship","primary means","initial days","western culture","couple going","holiday together","together originated","early th","th century","century great","great britain","britain upper","upper class","class couples","couples would","would take","tour sometimes","sometimes accompanied","visit relatives","practice soon","soon spread","theuropean continent","voyage la","style voyage","onwards honeymoons","modern sense","pure holiday","holiday voyage","voyage undertaken","married couple","couple became","first instances","modern mass","mass tourism","contemporary medical","medical opinion","public attention","attention drawn","wife sexual","popular honeymoon","honeymoon destinations","destinations athe","athe time","italy particularly","rome verona","venice typically","typically honeymoons","honeymoons would","would start","married withe","late train","ship however","st century","century many","many couples","withe reception","reception venue","simply enjoy","night afterwards","long journey","jewish traditions","traditions honeymoons","often put","seven days","oxford english","english dictionary","dictionary offers","gives examples","examples dating","dating back","th century","merriam webster","webster dictionary","dictionary reports","idea thathe","thathe first","first month","ancientimes honeymoon","honeymoon referred","bee honey","made ithe","usually around","end june","couple spend","spend together","first holiday","spend together","marriage one","morecent citations","oxford english","english dictionary","dictionary indicates","today honeymoon","positive meaning","love like","moon phase","first known","known literary","literary reference","widely disputed","disputed explanation","term claims","welsh german","great quantities","month supply","drinking mead","first monthe","monthe woman","woman would","would bear","bear fruit","child would","born within","many words","similar meaning","form translates","french language","language french","french form","form translates","spanish language","language spanish","spanish luna","luna de","romanian language","language romanian","romanian luna","luna de","language portuguese","portuguese language","language portuguese","de mel","italian language","language italian","italian luna","welsh language","language welsh","welsh word","means honey","honey month","language ukrainian","ukrainian polish","polish language","language polish","russian language","language russian","russian arabic","greek language","language greek","hebrew language","language hebrew","month rather","persian language","language persian","persian word","h e","honey month","persian means","turkish language","language turkish","turkish equivalent","hungarian language","called honey","honey weeks","tamil word","moon whereas","moon see","see also","also bride","babymoon category","category wedding","wedding category","category types","tourism category","category types"],"new_description":"honeymoon traditional holiday taken celebrate marriage today honeymoons often celebrated destinations considered exotic love romantic file wedding p p jpg thumb leaving honeymoon boarding trans lines plane montreal period couples take break share private intimate moments helps establish love privacy turn believed ease comfort zone towards physical relationship one primary means bonding initial days marriage english moone recorded early western culture custom couple going holiday together originated early_th century great_britain upper_class couples would_take tour sometimes accompanied friends family visit relatives able attend wedding practice soon spread theuropean continent known voyage la style voyage france onwards honeymoons modern sense pure holiday voyage undertaken married couple became belle one first instances modern mass_tourism came spite initial contemporary medical opinion worried women health guidebooks referred public attention drawn wife sexual popular honeymoon destinations athe_time french italy particularly resorts rome verona venice typically honeymoons would start married withe midway reception catch late train ship however st_century many couples leave days ceremony reception order tie withe reception venue simply enjoy reception night afterwards recover undertaking long journey jewish traditions honeymoons often put seven_days allow visits friends family cannot incorporated trip oxford_english_dictionary offers etymology gives examples dating_back th_century merriam_webster dictionary reports idea thathe_first month marriage ancientimes honeymoon referred time year bee honey cured harvested wild made ithe year usually around summer end june honeymoon also first moments newly couple spend together first holiday spend together celebrate marriage one morecent citations oxford_english_dictionary indicates today honeymoon positive meaning word originally reference love like moon phase moon first known literary reference honeymoon richard writes widely disputed explanation term claims comes tradition number cultures welsh german scandinavian mead drunk great quantities weddings ceremony couples given month supply mead believed drinking mead first monthe woman would bear fruit child would born within year many words similar meaning languages language form translates french_language french form translates moon honey de spanish_language spanish luna de romanian language romanian luna de_language portuguese_language portuguese de mel italian language italian luna welsh language welsh word honeymoon l means honey month similarly language ukrainian polish language polish c russian language russian arabic el greek language greek hebrew language hebrew versions used month rather common related word moon alike persian language persian word h e means moon honey month h persian means moon monthe applies word turkish language turkish equivalent hungarian language called honey weeks likewise tamil word honeymoon honey moon language word honeymoon honey moon whereas language referred honey moon see_also bride babymoon category wedding category_types tourism_category_types travel"},{"title":"Honeypot (tourism)","description":"a honeypot site is a location attracting a large number of tourists who due to their numbers place pressure on thenvironment and local people honeypots are very often used by cities or countries to manage their tourism industry the use of honeypots can protect fragile land away fromajor cities while satisfying tourists one such example is the construction of local parks to preventourists from damaging more valuablecosystems farther from their main destination honeypots have the added benefit of concentrating a large number of income generating visitors in one place thus developing that areand in turn making the area more appealing tourists however honeypots can suffer from problems of overcrowding including litter vandalism and strain on facilities and transport networks honeypots attractourists because of parking spaceshopping centres parks and public toilets the tourist shops are normally placed all over the shopping centre which creates pressure on the whole centre to keep the place looking tidy for example stratford upon avon hashops that are aimed mostly atourists on a particular streethere were shops that were aimed towards the locals and shops catering tourists reflecting the business opportunity thatourism presents for shopkeepers and other business people in the local economy category tourism geography category tourist attractions category geography terminology","main_words":["site","location","attracting","large_number","tourists","due","numbers","place","pressure","thenvironment","local_people","honeypots","often_used","cities","countries","manage","tourism_industry","use","honeypots","protect","fragile","land","away","cities","satisfying","tourists","one","example","construction","local","parks","damaging","farther","main","destination","honeypots","added","benefit","concentrating","large_number","income","generating","visitors","one","place","thus","developing","areand","turn","making","area","appealing","tourists","however","honeypots","suffer","problems","including","litter","vandalism","strain","facilities","transport","networks","honeypots","attractourists","parking","centres","parks","public","toilets","tourist","shops","normally","placed","shopping","centre","creates","pressure","whole","centre","keep","place","looking","example","stratford","upon","avon","aimed","mostly","particular","shops","aimed","towards","locals","shops","catering","tourists","reflecting","business","opportunity","thatourism","presents","business","people","local_economy","category_tourism","geography","category_tourist","attractions_category","geography","terminology"],"clean_bigrams":[["location","attracting"],["large","number"],["numbers","place"],["place","pressure"],["local","people"],["people","honeypots"],["often","used"],["tourism","industry"],["protect","fragile"],["fragile","land"],["land","away"],["satisfying","tourists"],["tourists","one"],["local","parks"],["main","destination"],["destination","honeypots"],["added","benefit"],["large","number"],["income","generating"],["generating","visitors"],["one","place"],["place","thus"],["thus","developing"],["turn","making"],["appealing","tourists"],["tourists","however"],["however","honeypots"],["including","litter"],["litter","vandalism"],["transport","networks"],["networks","honeypots"],["honeypots","attractourists"],["centres","parks"],["public","toilets"],["tourist","shops"],["normally","placed"],["shopping","centre"],["creates","pressure"],["whole","centre"],["place","looking"],["example","stratford"],["stratford","upon"],["upon","avon"],["aimed","mostly"],["aimed","towards"],["shops","catering"],["catering","tourists"],["tourists","reflecting"],["business","opportunity"],["opportunity","thatourism"],["thatourism","presents"],["business","people"],["local","economy"],["economy","category"],["category","tourism"],["tourism","geography"],["geography","category"],["category","tourist"],["tourist","attractions"],["attractions","category"],["category","geography"],["geography","terminology"]],"all_collocations":["location attracting","large number","numbers place","place pressure","local people","people honeypots","often used","tourism industry","protect fragile","fragile land","land away","satisfying tourists","tourists one","local parks","main destination","destination honeypots","added benefit","large number","income generating","generating visitors","one place","place thus","thus developing","turn making","appealing tourists","tourists however","however honeypots","including litter","litter vandalism","transport networks","networks honeypots","honeypots attractourists","centres parks","public toilets","tourist shops","normally placed","shopping centre","creates pressure","whole centre","place looking","example stratford","stratford upon","upon avon","aimed mostly","aimed towards","shops catering","catering tourists","tourists reflecting","business opportunity","opportunity thatourism","thatourism presents","business people","local economy","economy category","category tourism","tourism geography","geography category","category tourist","tourist attractions","attractions category","category geography","geography terminology"],"new_description":"site location attracting large_number tourists due numbers place pressure thenvironment local_people honeypots often_used cities countries manage tourism_industry use honeypots protect fragile land away cities satisfying tourists one example construction local parks damaging farther main destination honeypots added benefit concentrating large_number income generating visitors one place thus developing areand turn making area appealing tourists however honeypots suffer problems including litter vandalism strain facilities transport networks honeypots attractourists parking centres parks public toilets tourist shops normally placed shopping centre creates pressure whole centre keep place looking example stratford upon avon aimed mostly particular shops aimed towards locals shops catering tourists reflecting business opportunity thatourism presents business people local_economy category_tourism geography category_tourist attractions_category geography terminology"},{"title":"Hong Kong Tourism Board","description":"the hong kong tourism board hktb traditional chinese is a government of hong kongovernment subvented body founded in the board replaced the hong kong tourist association hkta traditional chinesestablished in it has branch offices and representative offices around the world and its primary mission is to maximise the social and economicontribution thatourismakes to the community of hong kong and consolidate the city s position as a desiredestination in fulfilling this it works withe governmentravel industry and other partners to market and promote hong kong worldwide improve the range and quality of visitor facilities and tourism service standards and enhance thexperiences of visitors once they have arrived visitor centres hong kong international airportransfer areand buffer halls and b arrivals level terminalo wu arrival hall f lo wu terminal building lo wu control point hong kong island the peak piazza kowloon tsim sha tsui ferry pier star ferry concourse tsim sha tsui quality tourism services qtscheme launched inovember the quality tourism services qtscheme traditional chinese is an accreditation programme aimed at promoting servicexcellence among local businesses and assisting customers to identify quality service providers to qualify merchant must fulfill stringent criteriand undergo annual assessment all accredited merchants must display the gold and black qtsign on their shop windows forecognition initially shops and restaurants were the only categories covered by the qtscheme the scheme was extended to visitor accommodations and hair salons inovember and march respectively as at march over merchant outlets have been accredited under the qtscheme the qtscheme is one of the most successful consumer protection programmes in hong kong the intellectual property department reported in that outlets had joined its no fakes pledge another well known consumer protection programme in the territory after the launch of the qtscheme the use of membership badges bearing the iconic red junk logos of the former hkta was discontinued in the hkta membership badge was first introduced in tv commercial starring famous hong kong actor singer producer andy lau the commercial was inspired by lau s blockbuster movie infernal affairs a movie about an undercover cop and a bad cop working for the triads the core message of the commercial ishopsellingenuine goods and providing high standard service should sethemselves apart from dishonest merchants by getting the qts accreditation the commercial has been aired from time to time till these days the qts commercial is often confused with another public service announcement psa promoting quality services which was also fronted by andy lau the psa was filmed in by the information services departmenthere were different versions all featuring rude vs courteoushop assistants andrivers titled successtarts with quality service the psa was a huge success as one of lau s lineservice like this just is not good enough in today standard has become a popular hong konger slang used to describe a poor service or a bad tempered person vip offersimply by presenting his her travel document and a copy of qts promotionaleaflet at a participating qts merchant visitor could enjoy special privileges ranging from exclusive discounto small gift eg a free silk tee for purchasing a suit at a custom tailor in addition to displaying the qts gold and black sign participating qts merchants would also display the red vip offersign as recognition the vip offers programme was discontinued on dec d gold jewellery investigations were launched against one of the d gold outlets after customers complained they had been harassed by staff and prevented from leaving the shop thentire d gold chain store wastripped of its qtstatus with effect from dec this was the firstermination in the scheme s history the original d gold jewellery holdings got into more controversies withe sudden death of its chairman delisting from the stock exchange and it was on the verge of liquidation by thend of in july the jeweller was officially taken over by hong kong resources holdings the qtstatus of the new d gold chain was latereinstated after it had passed the assessment director of audit s reporthe audit commission hong kong audit commission carried out a comprehensive audit on the hktb in the report released in october an entire section was devoted to the qtscheme the commission made recommendationsuggesting hktb should take action to improve the scheme and reduce the number of complaints explore ways to achieve selfinancing and encourage more operators to apply for the qts visitor accommodation scheme in response hktb committed to create more places in the quality training workshops for merchants and coperate withe home affairs departmento proactively promote qts visitor accommodation scheme bird s nest vendors the qtstatus of merchantspecialised in bird s nest soup bird s nest a chinese delicacy were terminated on july the merchants had publicly admitted infringement of another merchant s trademark in a bid to save hk million annually us in operating costs hktb announced onov thathe assessment work of qts merchants has been outsourced to the hong kong productivity council productivity council while the work to engage merchants toffer discounts for visitors has been outsourced to aq communications the saving will fund extra marketing work for the qtscheme as a resulthe jobs of permanent and contract staff of the partnership quality tourism services department had been made redundant with immediateffect only staff would be retained to monitor the outsourced work local media reported thathe staffected were first notified at pm on the same day of the announcement and were asked to leave by day s end they were given compensation in accordance withe localabour laws but were denied internal transfer tother vacant positions within the organisation a staff had expressed anger at being kept in the dark abouthe tendering of the outsourced work in a newspaper interview hktb deputy executive director daisy lam latereiterated to the mediat an event launch function thathe outsourcing was a result of an organizational review conducted a year ago in an interview to local newspapers legislator lee cheuk yan questioned abouthe quality of work after the outsourcing lee also concerned thathe affected staff will be unable to secure another job as thend of the year nears another lawmaker wong kwok hing critisied hktb for setting a bad example and he feared the private sector may follow suit daisy lam responded to critics that in addition to compensation those affected may consider a transfer to the twoutsourced bodies lam was not worried others would follow hktb s move as other companieshould make their own judgment call externalinks hong kong tourism board official website hong kong tourism commission travel industry council of hong kong hong kong tourism board s youtube channel hong kong tourism board collection university of hong kong libraries digital initiatives hong kong travel blogs category government agenciestablished in hong kong tourism category tourism agencies category hong kongovernment departments and agencies tourism category tourism in hong kong","main_words":["hong","kong","tourism_board","hktb","traditional","chinese","government","hong_kongovernment","body","founded","board","replaced","hong_kong","tourist","association","traditional","branch","offices","representative","offices","around","world","primary","mission","maximise","social","community","hong_kong","city","position","works","withe","governmentravel","industry","partners","market","promote","hong_kong","worldwide","improve","range","quality","visitor","facilities","tourism","service","standards","enhance","visitors","arrived","visitor","centres","hong_kong","international","areand","buffer","halls","b","arrivals","level","arrival","hall","f","terminal","building","control","point","hong_kong","island","peak","kowloon","sha","tsui","ferry","pier","star","ferry","concourse","sha","tsui","quality","tourism_services","qtscheme","launched","inovember","quality","tourism_services","qtscheme","traditional","chinese","accreditation","programme","aimed","promoting","among","local_businesses","assisting","customers","identify","quality_service","providers","qualify","merchant","must","stringent","undergo","annual","assessment","accredited","merchants","must","display","gold","black","shop","windows","initially","shops","restaurants","categories","covered","qtscheme","scheme","extended","visitor","accommodations","hair","inovember","march","respectively","march","merchant","outlets","accredited","qtscheme","qtscheme","one","successful","consumer","protection","programmes","hong_kong","intellectual","property","department","reported","outlets","joined","another","well_known","consumer","protection","programme","territory","launch","qtscheme","use","membership","bearing","iconic","red","former","discontinued","membership","badge","first","introduced","commercial","starring","famous","hong_kong","actor","singer","producer","andy","lau","commercial","inspired","lau","movie","affairs","movie","undercover","cop","bad","cop","working","core","message","commercial","goods","providing","high","standard","service","apart","merchants","getting","qts","accreditation","commercial","aired","time","time","till","days","qts","commercial","often","confused","another","public","service","announcement","psa","promoting","quality_services","also","andy","lau","psa","filmed","information","services","different","versions","featuring","rude","assistants","titled","quality_service","psa","huge","success","one","lau","like","good","enough","today","standard","become_popular","hong","slang","used","describe","poor","service","bad","person","vip","presenting","travel","document","copy","qts","participating","qts","merchant","visitor","could","enjoy","special","privileges","ranging","exclusive","small","gift","free","silk","tee","purchasing","suit","custom","tailor","addition","displaying","qts","gold","black","sign","participating","qts","merchants","would_also","display","red","vip","recognition","vip","offers","programme","discontinued","dec","gold","investigations","launched","one","gold","outlets","customers","complained","staff","prevented","leaving","shop","thentire","gold","chain","store","effect","dec","scheme","history","original","gold","holdings","got","withe","sudden","death","chairman","stock","exchange","liquidation","thend","july","officially","taken","hong_kong","resources","holdings","new","gold","chain","passed","assessment","director","audit","reporthe","audit","commission","hong_kong","audit","commission","carried","comprehensive","audit","hktb","report","released","october","entire","section","devoted","qtscheme","commission","made","hktb","take","action","improve","scheme","reduce","number","complaints","explore","ways","achieve","encourage","operators","apply","qts","visitor","accommodation","scheme","response","hktb","committed","create","places","quality","training","workshops","merchants","withe","home","affairs","promote","qts","visitor","accommodation","scheme","bird","nest","vendors","bird","nest","soup","bird","nest","chinese","delicacy","terminated","july","merchants","publicly","admitted","another","merchant","trademark","bid","save","million","annually","us","operating","costs","hktb","announced","onov","thathe","assessment","work","qts","merchants","outsourced","hong_kong","productivity","council","productivity","council","work","engage","merchants","toffer","discounts","visitors","outsourced","communications","saving","fund","extra","marketing","work","qtscheme","resulthe","jobs","permanent","contract","staff","partnership","quality","tourism_services","department","made","staff","would","retained","monitor","outsourced","work","local","media","reported_thathe","first","notified","day","announcement","asked","leave","day","end","given","compensation","accordance","withe","laws","denied","internal","transfer","tother","vacant","positions","within","organisation","staff","expressed","kept","dark","abouthe","outsourced","work","newspaper","interview","hktb","deputy","executive_director","daisy","event","launch","function","thathe","outsourcing","result","organizational","review","conducted","year","ago","interview","local","newspapers","lee","yan","abouthe","quality","work","outsourcing","lee","also","concerned","thathe","affected","staff","unable","secure","another","job","thend","year","another","wong","hktb","setting","bad","example","feared","private_sector","may","follow","suit","daisy","responded","critics","addition","compensation","affected","may","consider","transfer","bodies","worried","others","would","follow","hktb","move","make","judgment","call","externalinks","hong_kong","tourism_board","official_website","hong_kong","tourism","commission","travel_industry","council","hong_kong","hong_kong","tourism_board","youtube","channel","hong_kong","tourism_board","collection","university","hong_kong","libraries","digital","initiatives","hong_kong","travel","blogs","category_government","agenciestablished","hong_kong","tourism_category_tourism","agencies_category","hong_kongovernment","departments","agencies","tourism_category_tourism","hong_kong"],"clean_bigrams":[["hong","kong"],["kong","tourism"],["tourism","board"],["board","hktb"],["hktb","traditional"],["traditional","chinese"],["hong","kongovernment"],["body","founded"],["board","replaced"],["hong","kong"],["kong","tourist"],["tourist","association"],["branch","offices"],["representative","offices"],["offices","around"],["primary","mission"],["hong","kong"],["works","withe"],["withe","governmentravel"],["governmentravel","industry"],["promote","hong"],["hong","kong"],["kong","worldwide"],["worldwide","improve"],["visitor","facilities"],["tourism","service"],["service","standards"],["arrived","visitor"],["visitor","centres"],["centres","hong"],["hong","kong"],["kong","international"],["areand","buffer"],["buffer","halls"],["b","arrivals"],["arrivals","level"],["arrival","hall"],["hall","f"],["terminal","building"],["control","point"],["point","hong"],["hong","kong"],["kong","island"],["sha","tsui"],["tsui","ferry"],["ferry","pier"],["pier","star"],["star","ferry"],["ferry","concourse"],["sha","tsui"],["tsui","quality"],["quality","tourism"],["tourism","services"],["services","qtscheme"],["qtscheme","launched"],["launched","inovember"],["quality","tourism"],["tourism","services"],["services","qtscheme"],["qtscheme","traditional"],["traditional","chinese"],["accreditation","programme"],["programme","aimed"],["among","local"],["local","businesses"],["assisting","customers"],["identify","quality"],["quality","service"],["service","providers"],["qualify","merchant"],["merchant","must"],["undergo","annual"],["annual","assessment"],["accredited","merchants"],["merchants","must"],["must","display"],["shop","windows"],["initially","shops"],["categories","covered"],["visitor","accommodations"],["march","respectively"],["merchant","outlets"],["successful","consumer"],["consumer","protection"],["protection","programmes"],["hong","kong"],["intellectual","property"],["property","department"],["department","reported"],["another","well"],["well","known"],["known","consumer"],["consumer","protection"],["protection","programme"],["iconic","red"],["membership","badge"],["first","introduced"],["tv","commercial"],["commercial","starring"],["starring","famous"],["famous","hong"],["hong","kong"],["kong","actor"],["actor","singer"],["singer","producer"],["producer","andy"],["andy","lau"],["undercover","cop"],["bad","cop"],["cop","working"],["core","message"],["providing","high"],["high","standard"],["standard","service"],["qts","accreditation"],["time","till"],["qts","commercial"],["often","confused"],["another","public"],["public","service"],["service","announcement"],["announcement","psa"],["psa","promoting"],["promoting","quality"],["quality","services"],["andy","lau"],["information","services"],["different","versions"],["featuring","rude"],["quality","service"],["huge","success"],["good","enough"],["today","standard"],["popular","hong"],["slang","used"],["poor","service"],["person","vip"],["travel","document"],["participating","qts"],["qts","merchant"],["merchant","visitor"],["visitor","could"],["could","enjoy"],["enjoy","special"],["special","privileges"],["privileges","ranging"],["small","gift"],["free","silk"],["silk","tee"],["custom","tailor"],["qts","gold"],["black","sign"],["sign","participating"],["participating","qts"],["qts","merchants"],["merchants","would"],["would","also"],["also","display"],["red","vip"],["vip","offers"],["offers","programme"],["gold","outlets"],["customers","complained"],["shop","thentire"],["gold","chain"],["chain","store"],["holdings","got"],["withe","sudden"],["sudden","death"],["stock","exchange"],["officially","taken"],["hong","kong"],["kong","resources"],["resources","holdings"],["gold","chain"],["assessment","director"],["reporthe","audit"],["audit","commission"],["commission","hong"],["hong","kong"],["kong","audit"],["audit","commission"],["commission","carried"],["comprehensive","audit"],["report","released"],["entire","section"],["commission","made"],["take","action"],["complaints","explore"],["explore","ways"],["qts","visitor"],["visitor","accommodation"],["accommodation","scheme"],["response","hktb"],["hktb","committed"],["quality","training"],["training","workshops"],["withe","home"],["home","affairs"],["promote","qts"],["qts","visitor"],["visitor","accommodation"],["accommodation","scheme"],["scheme","bird"],["nest","vendors"],["nest","soup"],["soup","bird"],["chinese","delicacy"],["publicly","admitted"],["another","merchant"],["million","annually"],["annually","us"],["operating","costs"],["costs","hktb"],["hktb","announced"],["announced","onov"],["onov","thathe"],["thathe","assessment"],["assessment","work"],["qts","merchants"],["hong","kong"],["kong","productivity"],["productivity","council"],["council","productivity"],["productivity","council"],["engage","merchants"],["merchants","toffer"],["toffer","discounts"],["fund","extra"],["extra","marketing"],["marketing","work"],["resulthe","jobs"],["contract","staff"],["partnership","quality"],["quality","tourism"],["tourism","services"],["services","department"],["staff","would"],["outsourced","work"],["work","local"],["local","media"],["media","reported"],["reported","thathe"],["first","notified"],["given","compensation"],["accordance","withe"],["denied","internal"],["internal","transfer"],["transfer","tother"],["tother","vacant"],["vacant","positions"],["positions","within"],["dark","abouthe"],["outsourced","work"],["newspaper","interview"],["interview","hktb"],["hktb","deputy"],["deputy","executive"],["executive","director"],["director","daisy"],["event","launch"],["launch","function"],["function","thathe"],["thathe","outsourcing"],["organizational","review"],["review","conducted"],["year","ago"],["local","newspapers"],["abouthe","quality"],["outsourcing","lee"],["lee","also"],["also","concerned"],["concerned","thathe"],["thathe","affected"],["affected","staff"],["secure","another"],["another","job"],["bad","example"],["private","sector"],["sector","may"],["may","follow"],["follow","suit"],["suit","daisy"],["affected","may"],["may","consider"],["worried","others"],["others","would"],["would","follow"],["follow","hktb"],["judgment","call"],["call","externalinks"],["externalinks","hong"],["hong","kong"],["kong","tourism"],["tourism","board"],["board","official"],["official","website"],["website","hong"],["hong","kong"],["kong","tourism"],["tourism","commission"],["commission","travel"],["travel","industry"],["industry","council"],["hong","kong"],["kong","hong"],["hong","kong"],["kong","tourism"],["tourism","board"],["youtube","channel"],["channel","hong"],["hong","kong"],["kong","tourism"],["tourism","board"],["board","collection"],["collection","university"],["hong","kong"],["kong","libraries"],["libraries","digital"],["digital","initiatives"],["initiatives","hong"],["hong","kong"],["kong","travel"],["travel","blogs"],["blogs","category"],["category","government"],["government","agenciestablished"],["hong","kong"],["kong","tourism"],["tourism","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","hong"],["hong","kongovernment"],["kongovernment","departments"],["agencies","tourism"],["tourism","category"],["category","tourism"],["hong","kong"]],"all_collocations":["hong kong","kong tourism","tourism board","board hktb","hktb traditional","traditional chinese","hong kongovernment","body founded","board replaced","hong kong","kong tourist","tourist association","branch offices","representative offices","offices around","primary mission","hong kong","works withe","withe governmentravel","governmentravel industry","promote hong","hong kong","kong worldwide","worldwide improve","visitor facilities","tourism service","service standards","arrived visitor","visitor centres","centres hong","hong kong","kong international","areand buffer","buffer halls","b arrivals","arrivals level","arrival hall","hall f","terminal building","control point","point hong","hong kong","kong island","sha tsui","tsui ferry","ferry pier","pier star","star ferry","ferry concourse","sha tsui","tsui quality","quality tourism","tourism services","services qtscheme","qtscheme launched","launched inovember","quality tourism","tourism services","services qtscheme","qtscheme traditional","traditional chinese","accreditation programme","programme aimed","among local","local businesses","assisting customers","identify quality","quality service","service providers","qualify merchant","merchant must","undergo annual","annual assessment","accredited merchants","merchants must","must display","shop windows","initially shops","categories covered","visitor accommodations","march respectively","merchant outlets","successful consumer","consumer protection","protection programmes","hong kong","intellectual property","property department","department reported","another well","well known","known consumer","consumer protection","protection programme","iconic red","membership badge","first introduced","tv commercial","commercial starring","starring famous","famous hong","hong kong","kong actor","actor singer","singer producer","producer andy","andy lau","undercover cop","bad cop","cop working","core message","providing high","high standard","standard service","qts accreditation","time till","qts commercial","often confused","another public","public service","service announcement","announcement psa","psa promoting","promoting quality","quality services","andy lau","information services","different versions","featuring rude","quality service","huge success","good enough","today standard","popular hong","slang used","poor service","person vip","travel document","participating qts","qts merchant","merchant visitor","visitor could","could enjoy","enjoy special","special privileges","privileges ranging","small gift","free silk","silk tee","custom tailor","qts gold","black sign","sign participating","participating qts","qts merchants","merchants would","would also","also display","red vip","vip offers","offers programme","gold outlets","customers complained","shop thentire","gold chain","chain store","holdings got","withe sudden","sudden death","stock exchange","officially taken","hong kong","kong resources","resources holdings","gold chain","assessment director","reporthe audit","audit commission","commission hong","hong kong","kong audit","audit commission","commission carried","comprehensive audit","report released","entire section","commission made","take action","complaints explore","explore ways","qts visitor","visitor accommodation","accommodation scheme","response hktb","hktb committed","quality training","training workshops","withe home","home affairs","promote qts","qts visitor","visitor accommodation","accommodation scheme","scheme bird","nest vendors","nest soup","soup bird","chinese delicacy","publicly admitted","another merchant","million annually","annually us","operating costs","costs hktb","hktb announced","announced onov","onov thathe","thathe assessment","assessment work","qts merchants","hong kong","kong productivity","productivity council","council productivity","productivity council","engage merchants","merchants toffer","toffer discounts","fund extra","extra marketing","marketing work","resulthe jobs","contract staff","partnership quality","quality tourism","tourism services","services department","staff would","outsourced work","work local","local media","media reported","reported thathe","first notified","given compensation","accordance withe","denied internal","internal transfer","transfer tother","tother vacant","vacant positions","positions within","dark abouthe","outsourced work","newspaper interview","interview hktb","hktb deputy","deputy executive","executive director","director daisy","event launch","launch function","function thathe","thathe outsourcing","organizational review","review conducted","year ago","local newspapers","abouthe quality","outsourcing lee","lee also","also concerned","concerned thathe","thathe affected","affected staff","secure another","another job","bad example","private sector","sector may","may follow","follow suit","suit daisy","affected may","may consider","worried others","others would","would follow","follow hktb","judgment call","call externalinks","externalinks hong","hong kong","kong tourism","tourism board","board official","official website","website hong","hong kong","kong tourism","tourism commission","commission travel","travel industry","industry council","hong kong","kong hong","hong kong","kong tourism","tourism board","youtube channel","channel hong","hong kong","kong tourism","tourism board","board collection","collection university","hong kong","kong libraries","libraries digital","digital initiatives","initiatives hong","hong kong","kong travel","travel blogs","blogs category","category government","government agenciestablished","hong kong","kong tourism","tourism category","category tourism","tourism agencies","agencies category","category hong","hong kongovernment","kongovernment departments","agencies tourism","tourism category","category tourism","hong kong"],"new_description":"hong kong tourism_board hktb traditional chinese government hong_kongovernment body founded board replaced hong_kong tourist association traditional branch offices representative offices around world primary mission maximise social community hong_kong city position works withe governmentravel industry partners market promote hong_kong worldwide improve range quality visitor facilities tourism service standards enhance visitors arrived visitor centres hong_kong international areand buffer halls b arrivals level arrival hall f terminal building control point hong_kong island peak kowloon sha tsui ferry pier star ferry concourse sha tsui quality tourism_services qtscheme launched inovember quality tourism_services qtscheme traditional chinese accreditation programme aimed promoting among local_businesses assisting customers identify quality_service providers qualify merchant must stringent undergo annual assessment accredited merchants must display gold black shop windows initially shops restaurants categories covered qtscheme scheme extended visitor accommodations hair inovember march respectively march merchant outlets accredited qtscheme qtscheme one successful consumer protection programmes hong_kong intellectual property department reported outlets joined another well_known consumer protection programme territory launch qtscheme use membership bearing iconic red former discontinued membership badge first introduced tv commercial starring famous hong_kong actor singer producer andy lau commercial inspired lau movie affairs movie undercover cop bad cop working core message commercial goods providing high standard service apart merchants getting qts accreditation commercial aired time time till days qts commercial often confused another public service announcement psa promoting quality_services also andy lau psa filmed information services different versions featuring rude assistants titled quality_service psa huge success one lau like good enough today standard become_popular hong slang used describe poor service bad person vip presenting travel document copy qts participating qts merchant visitor could enjoy special privileges ranging exclusive small gift free silk tee purchasing suit custom tailor addition displaying qts gold black sign participating qts merchants would_also display red vip recognition vip offers programme discontinued dec gold investigations launched one gold outlets customers complained staff prevented leaving shop thentire gold chain store effect dec scheme history original gold holdings got withe sudden death chairman stock exchange liquidation thend july officially taken hong_kong resources holdings new gold chain passed assessment director audit reporthe audit commission hong_kong audit commission carried comprehensive audit hktb report released october entire section devoted qtscheme commission made hktb take action improve scheme reduce number complaints explore ways achieve encourage operators apply qts visitor accommodation scheme response hktb committed create places quality training workshops merchants withe home affairs promote qts visitor accommodation scheme bird nest vendors bird nest soup bird nest chinese delicacy terminated july merchants publicly admitted another merchant trademark bid save million annually us operating costs hktb announced onov thathe assessment work qts merchants outsourced hong_kong productivity council productivity council work engage merchants toffer discounts visitors outsourced communications saving fund extra marketing work qtscheme resulthe jobs permanent contract staff partnership quality tourism_services department made staff would retained monitor outsourced work local media reported_thathe first notified day announcement asked leave day end given compensation accordance withe laws denied internal transfer tother vacant positions within organisation staff expressed kept dark abouthe outsourced work newspaper interview hktb deputy executive_director daisy event launch function thathe outsourcing result organizational review conducted year ago interview local newspapers lee yan abouthe quality work outsourcing lee also concerned thathe affected staff unable secure another job thend year another wong hktb setting bad example feared private_sector may follow suit daisy responded critics addition compensation affected may consider transfer bodies worried others would follow hktb move make judgment call externalinks hong_kong tourism_board official_website hong_kong tourism commission travel_industry council hong_kong hong_kong tourism_board youtube channel hong_kong tourism_board collection university hong_kong libraries digital initiatives hong_kong travel blogs category_government agenciestablished hong_kong tourism_category_tourism agencies_category hong_kongovernment departments agencies tourism_category_tourism hong_kong"},{"title":"Horeca","description":"horecalso horeca is an abbreviation used in europe for the food service industry the term is a syllabic abbreviation of the words hotel ho tel restaurant re staurant caf ca f the dutch uniforme voorwaarden horeca uvh is translated into english as uniform conditions for the hotel and catering industry this code covers hotels bars restaurants and related businesses in the netherlands koninklijk horeca nederland is the dutch trade association for the hotel and catering industry uniform conditions for the hotel and catering industry koninklijk horeca nederland thisector is one of the fastest growing in europe in more than million people weremployed eurostat and the sector generated more than billion turnovereurofound jobs tend to be temporary with irregular hours low pay and few career prospects there is a high proportion of young people working in the sector see also terms for market segments category foodservice","main_words":["horeca","abbreviation","used","europe","term","abbreviation","words","hotel","tel","restaurant","caf","f","dutch","horeca","translated","english","uniform","conditions","hotel","catering","industry","code","covers","hotels","bars","restaurants","related","businesses","netherlands","horeca","dutch","trade","association","hotel","catering","industry","uniform","conditions","hotel","catering","industry","horeca","thisector","one","fastest_growing","europe","million_people","sector","generated","billion","jobs","tend","temporary","hours","low","pay","career","prospects","high","proportion","young_people","working","sector","see_also","terms","market","segments","category_foodservice"],"clean_bigrams":[["abbreviation","used"],["food","service"],["service","industry"],["words","hotel"],["tel","restaurant"],["uniform","conditions"],["catering","industry"],["code","covers"],["covers","hotels"],["hotels","bars"],["bars","restaurants"],["related","businesses"],["dutch","trade"],["trade","association"],["catering","industry"],["industry","uniform"],["uniform","conditions"],["catering","industry"],["fastest","growing"],["million","people"],["sector","generated"],["jobs","tend"],["hours","low"],["low","pay"],["career","prospects"],["high","proportion"],["young","people"],["people","working"],["sector","see"],["see","also"],["also","terms"],["market","segments"],["segments","category"],["category","foodservice"]],"all_collocations":["abbreviation used","food service","service industry","words hotel","tel restaurant","uniform conditions","catering industry","code covers","covers hotels","hotels bars","bars restaurants","related businesses","dutch trade","trade association","catering industry","industry uniform","uniform conditions","catering industry","fastest growing","million people","sector generated","jobs tend","hours low","low pay","career prospects","high proportion","young people","people working","sector see","see also","also terms","market segments","segments category","category foodservice"],"new_description":"horeca abbreviation used europe food_service_industry term abbreviation words hotel tel restaurant caf f dutch horeca translated english uniform conditions hotel catering industry code covers hotels bars restaurants related businesses netherlands horeca dutch trade association hotel catering industry uniform conditions hotel catering industry horeca thisector one fastest_growing europe million_people sector generated billion jobs tend temporary hours low pay career prospects high proportion young_people working sector see_also terms market segments category_foodservice"},{"title":"Hospitality","description":"file bringing in the boar s headjpg thumbringing in the boar s head in heraldry the boar s head wasometimes used asymbol of hospitality often seen as representing the host s willingness to feed guests well it is likewise the symbol of a boar s head innumber of inns and taverns file de stratford coat of armsjpeg thumb trestles in the medieval stratford family de stratford coat of arms the trestle heraldry trestle also tressle tressel and threstle in heraldry is also used to mean hospitality as historically the trestle was a tripod used both as a stool and a table support at banquetsguillim john a display of heraldry hospitality refers to the relationship between a guest and a host wherein the host receives the guest with goodwill including the reception and entertainment of guests visitors or strangers louis chevalier de jaucourt describes hospitality in thencyclop die as the virtue of a great soul that cares for the whole universe through the ties of humanityjaucourt louis chevalier de hospitality thencyclopedia of diderot d alembert collaborative translation projectranslated by sophie bourgault ann arbor michigan publishing university of michigan library web fill in today s date in the form apr and remove square brackets trans of hospitalit encyclop die ou dictionnaire raisonn desciences des arts et des m tiers vol paris hospitality ethics is a discipline that studies this usage of hospitality etymology derives from the latin hospes c lewis elementary latin dictionary oxford univ press p meaning host guest or stranger hospes is formed from hostis which meanstranger or enemy the latter being where terms like hostile derive by metonymy the latin word hospital means a guest chamber guest s lodging an inncassell s latin dictionary revised by marchant j charles j thousand hospes is thus the root for thenglish words host where the p was dropped for convenience of pronunciation hospitality hospice hostel and hotel historical practice in ancient cultures hospitality involved welcoming the stranger and offering him food shelter and safety pohl christine d making room recovering hospitality as a christian tradition wm b eerdmans publishinglobal concepts ancient greece in ancient greece hospitality was a right withe host being expected to make sure the needs of his guests were methe ancient greek term xenia greek xenia or theoxenia when a god was involved expressed this ritualized guest friendship relation in greek society a person s ability to abide by the laws of hospitality determined nobility and social standing the stoics regarded hospitality as a duty inspired by zeus himself india nepal india nepal hospitality is based on the principle atithi devo bhav a meaning the guest is god this principle ishown in a number of stories where a guest is revealed to be a god who rewards the provider of hospitality from thistems the indian or nepal practice of graciousness towards guests at home and in all social situations file meister von san vitale in ravenna jpg thumb mosaic at basilica of san vitale san vitale ravennabraham and the angels pre judaism praises hospitality to strangers and guests based largely on thexamples of abraham and lot biblical person lot in the book of genesis and in hebrew the practice is called hachnasat orchim or welcominguests besides other expectations hosts arexpected to provide nourishment comfort and entertainment for their guests and athend of the visit hosts customarily escortheir guests out of their home wishing them a safe journeybabylonian talmud sotah b in christianity hospitality is a theological virtues virtue which is a reminder of sympathy for strangers and a rule to welcome visitors alain montandon l hospitalit au xviiie si cle presses universitaires blaise pascal france p this a virtue found in the old testament with for example the custom of the foot washing of visitors or the kiss of peace walter a elwell evangelical dictionary of theology baker academic usa p lawrence cunningham keith j egan christian spirituality themes from the tradition paulist press usa p it was taught by jesus in the new testament indeed jesusaid thathose who had welcomed a stranger had welcomed him gideon baker hospitality and world politicspringer uk p some western countries have developed a host culture for immigrants based on the bible j olaf kleist irial glynn history memory and migration perceptions of the past and the politics of incorporation palgrave macmillan usa p one of the main principles of pashtunwalis melmastia this the display of hospitality and profound respecto all visitors regardless of race religionational affiliation or economic status without any hope of remuneration or favour pashtuns will go to great lengths to show their hospitality celticultures celtic societies also valued the concept of hospitality especially in terms of protection a host who granted a person s request forefuge was expected not only to provide food and shelter for his her guest buto make sure they did not come to harm while under their carecharles mackinnon scottishighlanders barnes noble books page current usage in the westoday hospitality is rarely a matter of protection and survival and is more associated with etiquette and entertainment however it still involveshowing respect for one s guests providing for their needs and treating them as equals cultures and subcultures vary in thextento which one is expected to show hospitality to strangers as opposed to personal friends or members of one s ingroup anthropology of hospitality jacques derrida offers a model to understand hospitality that divides unconditional hospitality from conditional hospitality over the centuries philosophers have devoted considerable attention to the problem of hospitalityderrida j hospitality angelaki journal of theoretical humanities however hospitality offers a paradoxical situation like language since inclusion of those who are welcomed in the sacred law of hospitality implies others will be rejected julia kristevalerts readers to the dangers of perverse hospitality which consists of taking advantage of the vulnerability of aliens to dispossess themkristeva j extranjeros para nosotros mismos trade x gispert barcelona plaza janes editores hombre y sociedad hospitality serves to reduce the tension in the process of host guest encounters producing a liminal zone that combines curiosity about others and fear of strangersgraburn h the anthropology of tourism annals of tourism research in general terms the meaning of hospitality centres on the belief that strangershould be assisted and protected while travelinglashley c towards an understanding of employeempowerment in hospitality services international journal of contemporary hospitality management however not all voices are in agreement withis concept professor anthony pagden describes how the concept of hospitality was historically manipulated to legitimate the conquest of americas by imposing the right ofree transit which was conducive to the formation of the modernation state thisuggests that hospitality is a political institution which can be ideologically deformed toppress otherspagden a lords of all the worlds ideologies of empire in spain britain and france c yale university press overecent years and following padgen maximiliano korstanje argued that hospitality is an intertribal pact in which groups agree on self defence in times of war and an exchange of goods and merchandise in peacetime ref since the inception of the nation state the western concept of hospitality has been proposed as the main criteria for the free circulation and mobility of people and the main cultural value of modern capitalismkorstanje m a difficult world examining the roots of capitalism new york nova science pubs hospitality depends on the giving while receiving process which is the touchstone of social bonds hospitality and religion are also inextricably entwined in the same way thathe soul is protected by gods of thereafter strangershould be assisted while travelling failure to care for strangers is punished by the gods who send calamities earthquakes and other types of disasterkorstanje m e revisando la tica de la hospitalidad en daniel innerarity historiactual online a lack of hospitality may be seen to predicthe triumph of evilkorstanje m e tarlow p being lostourism risk and vulnerability in the post entertainment industry journal of tourism and cultural change korstanje m terrorism tourism and thend of hospitality new york palgrave macmillan in legends myths and horror movies rogues often violate their guests concealing theireal intentions and then seizing them when sleeping the guest host meeting necessarily engenders high levels of vulnerability and risk which are mitigated by the sacred law of hospitality where both agree noto attack the other while under the same roof in view of the advance of secularization the practice of unconditional hospitality has given way to a new sort of hospitality only for those who can pay for itkorstanje m e a difficult world examining the roots of capitalism new york novakorstanje m e olsen d h the discourse of risk in horror movies post hospitality and hostility in perspective international journal of tourism anthropology korstanje m e the fear of traveling a new perspective for tourism and hospitality anatolia over the recent years the activity of terrorist cells which target leisure spots and tourist destinations undermines the necessary trustoffer hospitality as a result of this west is facing serious problems to understand the alterity since one of its touchstones is being eroded terrorism not only affects tourism industry causing economic losses but also destroy thessence of hospitality which is the ideological core of western civilizationkorstanje m terrorism tourism and thend of hospitality in the west new york palgrave macmillan should also see couchsurfing hospitality management studies hospitality service s modern day hospitality networks hotel manager ma tre d h tel reciprocaltruism reciprocity social psychology reciprocity cultural anthropology furthereading danny meyer setting the table the transforming power of hospitality in business christine jaszay ethical decision making in the hospitality industry karen lieberman bruce nissen ethics in the hospitality and tourism industry rosaleen duffy and mick smithethics of tourism development conrad lashley and alison morrison in search of hospitality a socialens by conrad lashley and alison morrison the great good place by ray oldenburg customer service and the luxury guest by paul ruffino fustel de coulanges the ancient city religion laws and institutions of greece and rome bolchazy hospitality in antiquity livy s concept of its humanizing force jacques derrida of hospitality trans rachel bowlby stanford university press james a w heffernan hospitality and treachery in western literature new haven ct yale university pressteve reece the stranger s welcome oral theory and the aesthetics of the homeric hospitality scene ann arbor the university of michigan press mireille rosello postcolonial hospitality the immigrant as guestanford university press clifford j routes travel and translation in the late twentieth century cambridge ma harvard university press john b switzer hospitality in encyclopedia of love in world religionsanta barbara cabclio immanuel velikovsky mankind in amnesia garden city new york doubleday christian h nggi hospitality in the age of media representationew york dresden atropos press thomas claviez ed the conditions of hospitality ethics politics and aesthetics on the threshold of the possible bronx fordham university press korstanje m e terrorism in the global village how terrorism affects our daily lives new york nova science pubs korstanje m e the rise of thana capitalism and tourism abingdon routledge category etiquette category hospitality industry category cultural anthropology","main_words":["file","bringing","boar","boar","head","heraldry","boar","head","used","hospitality","often_seen","representing","host","willingness","feed","guests","well","likewise","symbol","boar","head","inns","taverns","file","de","stratford","coat","thumb","medieval","stratford","family","de","stratford","coat","arms","trestle","heraldry","trestle","also","heraldry","also_used","mean","hospitality","historically","trestle","used","stool","table","support","john","display","heraldry","hospitality","refers","relationship","guest","host","wherein","host","receives","guest","goodwill","including","reception","entertainment","guests","visitors","strangers","louis","de","describes","hospitality","die","virtue","great","soul","whole","universe","ties","louis","de","hospitality","thencyclopedia","collaborative","translation","sophie","ann","michigan","publishing","university","michigan","library","web","fill","today","date","form","apr","remove","square","trans","encyclop","die","des","arts","des","vol","paris","hospitality","ethics","discipline","studies","usage","hospitality","etymology","derives","latin","c","lewis","elementary","latin","dictionary","oxford","univ","press_p","meaning","host","guest","stranger","formed","latter","terms","like","hostile","derive","latin","word","hospital","means","guest","chamber","guest","lodging","latin","dictionary","revised","j","charles","j","thousand","thus","root","thenglish","words","host","p","dropped","convenience","pronunciation","hospitality","hostel","hotel","historical","practice","ancient","cultures","hospitality","involved","welcoming","stranger","offering","food","shelter","safety","christine","making","room","recovering","hospitality","christian","tradition","b","concepts","ancient_greece","ancient_greece","hospitality","right","withe","host","expected","make_sure","needs","guests","methe","ancient_greek","term","greek","god","involved","expressed","guest","friendship","relation","greek","society","person","ability","laws","hospitality","determined","nobility","social","standing","regarded","hospitality","duty","inspired","zeus","india","nepal","india","nepal","hospitality","based","principle","meaning","guest","god","principle","ishown","number","stories","guest","revealed","god","rewards","provider","hospitality","indian","nepal","practice","towards","guests","home","social","situations","file","von","san","vitale","jpg","thumb","mosaic","basilica","san","vitale","san","vitale","angels","pre","judaism","praises","hospitality","strangers","guests","based","largely","abraham","lot","biblical","person","lot","book","genesis","hebrew","practice","called","besides","expectations","hosts","arexpected","provide","nourishment","comfort","entertainment","guests","athend","visit","hosts","customarily","guests","home","wishing","safe","b","christianity","hospitality","virtue","reminder","strangers","rule","welcome","visitors","alain","l","presses","pascal","france","p","virtue","found","old","example","custom","foot","washing","visitors","kiss","peace","walter","dictionary","baker","academic","usa","p","lawrence","keith","j","christian","themes","tradition","press","usa","p","taught","jesus","new","indeed","thathose","welcomed","stranger","welcomed","gideon","baker","hospitality","world","uk","p","western","countries","developed","host","culture","immigrants","based","bible","j","history","memory","migration","perceptions","past","politics","palgrave","macmillan","usa","p","one","main","principles","display","hospitality","profound","respecto","visitors","regardless","race","affiliation","economic","status","without","hope","favour","go","great","lengths","show","hospitality","celtic","societies","also","valued","concept","hospitality","especially","terms","protection","host","granted","person","request","expected","provide","food","shelter","guest","buto","make_sure","come","harm","barnes","noble","current","usage","hospitality","rarely","matter","protection","survival","associated","etiquette","entertainment","however","still","respect","one","guests","providing","needs","treating","equals","cultures","subcultures","vary","thextento","one","expected","show","hospitality","strangers","opposed","personal","friends","members","one","anthropology","hospitality","jacques","offers","model","understand","hospitality","unconditional","hospitality","hospitality","centuries","philosophers","devoted","considerable","attention","problem","j","hospitality","journal","theoretical","humanities","however","hospitality","offers","paradoxical","situation","like","language","since","inclusion","welcomed","sacred","law","hospitality","implies","others","rejected","julia","readers","dangers","hospitality","consists","taking","advantage","vulnerability","j","para","trade","x","barcelona","plaza","sociedad","hospitality","serves","reduce","tension","process","host","guest","encounters","producing","zone","combines","curiosity","others","fear","h","anthropology","tourism","annals","tourism_research","general","terms","meaning","hospitality","centres","belief","assisted","protected","c","towards","understanding","hospitality_services","international_journal","contemporary","hospitality_management","however","voices","agreement","withis","concept","professor","anthony","describes","concept","hospitality","historically","manipulated","legitimate","conquest","americas","imposing","right","ofree","transit","formation","state","thisuggests","hospitality","political","institution","lords","worlds","empire","spain","britain","france","c","yale_university_press","years","following","maximiliano","korstanje","argued","hospitality","groups","agree","self","defence","times","war","exchange","goods","merchandise","ref","since","inception","nation","state","western","concept","hospitality","proposed","main","criteria","free","circulation","mobility","people","main","cultural","value","modern","difficult","world","examining","roots","capitalism","new_york","nova_science","pubs","hospitality","depends","giving","receiving","process","touchstone","social","bonds","hospitality","religion","also","inextricably","way","thathe","soul","protected","gods","thereafter","assisted","travelling","failure","care","strangers","punished","gods","send","types","e","la","tica","de_la","daniel","online","lack","hospitality","may","seen","e","tarlow","p","risk","vulnerability","post","entertainment_industry","journal","tourism_cultural","change","korstanje","terrorism_tourism","thend","hospitality","new_york","palgrave","macmillan","legends","myths","horror","movies","rogues","often","violate","guests","intentions","sleeping","guest","host","meeting","necessarily","high_levels","vulnerability","risk","sacred","law","hospitality","agree","noto","attack","roof","view","advance","secularization","practice","unconditional","hospitality","given","way","new","sort","hospitality","pay","e","difficult","world","examining","roots","capitalism","new_york","e","olsen","h","discourse","risk","horror","movies","post","hospitality","hostility","perspective","international_journal","tourism","anthropology","korstanje","e","fear","traveling","new","perspective","tourism_hospitality","anatolia","recent_years","activity","terrorist","cells","target","leisure","spots","tourist_destinations","necessary","hospitality","result","west","facing","serious","problems","understand","since","one","terrorism","affects","tourism_industry","causing","economic","losses","also","destroy","thessence","hospitality","ideological","core","western","terrorism_tourism","thend","hospitality","west","new_york","palgrave","macmillan","also","see","couchsurfing","hospitality_management_studies","hospitality_service","modern_day","hospitality","networks","hotel_manager","tre","h_tel","reciprocity","social","psychology","reciprocity","cultural","anthropology","furthereading","danny","meyer","setting","table","power","hospitality","business","christine","ethical","decision_making","hospitality_industry","karen","bruce","ethics","tourism_development","conrad","alison","morrison","search","hospitality","conrad","alison","morrison","great","good","place","ray","customer_service","luxury","guest","paul","de","ancient","city","religion","laws","institutions","greece","rome","hospitality","antiquity","concept","force","jacques","hospitality","trans","rachel","stanford","university_press","james","w","hospitality","western","literature","new","yale_university","stranger","welcome","oral","theory","aesthetics","hospitality","scene","ann","university","michigan","press","hospitality","immigrant","university_press","j","routes","travel","translation","late","twentieth_century","cambridge","harvard","university_press","john","b","hospitality","encyclopedia","love","world","barbara","amnesia","garden","city_new_york","christian","h","hospitality","age","media","york","dresden","press","thomas","ed","conditions","hospitality","ethics","politics","aesthetics","threshold","possible","bronx","university_press","korstanje","e","terrorism","global","village","terrorism","affects","daily","lives","new_york","nova_science","pubs","korstanje","e","rise","thana_capitalism","tourism","abingdon","routledge","category","etiquette","category_hospitality_industry","category_cultural","anthropology"],"clean_bigrams":[["file","bringing"],["hospitality","often"],["often","seen"],["feed","guests"],["guests","well"],["taverns","file"],["file","de"],["de","stratford"],["stratford","coat"],["medieval","stratford"],["stratford","family"],["family","de"],["de","stratford"],["stratford","coat"],["trestle","heraldry"],["heraldry","trestle"],["trestle","also"],["also","used"],["mean","hospitality"],["table","support"],["heraldry","hospitality"],["hospitality","refers"],["guest","host"],["host","wherein"],["host","receives"],["goodwill","including"],["guests","visitors"],["strangers","louis"],["describes","hospitality"],["great","soul"],["whole","universe"],["de","hospitality"],["hospitality","thencyclopedia"],["collaborative","translation"],["michigan","publishing"],["publishing","university"],["michigan","library"],["library","web"],["web","fill"],["form","apr"],["remove","square"],["encyclop","die"],["des","arts"],["vol","paris"],["paris","hospitality"],["hospitality","ethics"],["hospitality","etymology"],["etymology","derives"],["c","lewis"],["lewis","elementary"],["elementary","latin"],["latin","dictionary"],["dictionary","oxford"],["oxford","univ"],["univ","press"],["press","p"],["p","meaning"],["meaning","host"],["host","guest"],["terms","like"],["like","hostile"],["hostile","derive"],["latin","word"],["word","hospital"],["hospital","means"],["guest","chamber"],["chamber","guest"],["latin","dictionary"],["dictionary","revised"],["j","charles"],["charles","j"],["j","thousand"],["thenglish","words"],["words","host"],["pronunciation","hospitality"],["hotel","historical"],["historical","practice"],["ancient","cultures"],["cultures","hospitality"],["hospitality","involved"],["involved","welcoming"],["food","shelter"],["making","room"],["room","recovering"],["recovering","hospitality"],["christian","tradition"],["concepts","ancient"],["ancient","greece"],["ancient","greece"],["greece","hospitality"],["right","withe"],["withe","host"],["make","sure"],["methe","ancient"],["ancient","greek"],["greek","term"],["involved","expressed"],["guest","friendship"],["friendship","relation"],["greek","society"],["hospitality","determined"],["determined","nobility"],["social","standing"],["regarded","hospitality"],["duty","inspired"],["india","nepal"],["nepal","india"],["india","nepal"],["nepal","hospitality"],["principle","ishown"],["nepal","practice"],["towards","guests"],["social","situations"],["situations","file"],["von","san"],["san","vitale"],["jpg","thumb"],["thumb","mosaic"],["san","vitale"],["vitale","san"],["san","vitale"],["angels","pre"],["pre","judaism"],["judaism","praises"],["praises","hospitality"],["guests","based"],["based","largely"],["lot","biblical"],["biblical","person"],["person","lot"],["expectations","hosts"],["hosts","arexpected"],["provide","nourishment"],["nourishment","comfort"],["visit","hosts"],["hosts","customarily"],["home","wishing"],["christianity","hospitality"],["welcome","visitors"],["visitors","alain"],["pascal","france"],["france","p"],["virtue","found"],["foot","washing"],["peace","walter"],["baker","academic"],["academic","usa"],["usa","p"],["p","lawrence"],["keith","j"],["press","usa"],["usa","p"],["gideon","baker"],["baker","hospitality"],["uk","p"],["western","countries"],["host","culture"],["immigrants","based"],["bible","j"],["history","memory"],["migration","perceptions"],["palgrave","macmillan"],["macmillan","usa"],["usa","p"],["p","one"],["main","principles"],["profound","respecto"],["visitors","regardless"],["economic","status"],["status","without"],["great","lengths"],["show","hospitality"],["celtic","societies"],["societies","also"],["also","valued"],["hospitality","especially"],["provide","food"],["food","shelter"],["guest","buto"],["buto","make"],["make","sure"],["barnes","noble"],["noble","books"],["books","page"],["page","current"],["current","usage"],["entertainment","however"],["guests","providing"],["equals","cultures"],["subcultures","vary"],["show","hospitality"],["personal","friends"],["hospitality","jacques"],["understand","hospitality"],["unconditional","hospitality"],["centuries","philosophers"],["devoted","considerable"],["considerable","attention"],["j","hospitality"],["theoretical","humanities"],["humanities","however"],["however","hospitality"],["hospitality","offers"],["paradoxical","situation"],["situation","like"],["like","language"],["language","since"],["since","inclusion"],["sacred","law"],["hospitality","implies"],["implies","others"],["rejected","julia"],["taking","advantage"],["trade","x"],["barcelona","plaza"],["sociedad","hospitality"],["hospitality","serves"],["host","guest"],["guest","encounters"],["encounters","producing"],["combines","curiosity"],["tourism","annals"],["tourism","research"],["general","terms"],["hospitality","centres"],["c","towards"],["hospitality","services"],["services","international"],["international","journal"],["contemporary","hospitality"],["hospitality","management"],["management","however"],["agreement","withis"],["withis","concept"],["concept","professor"],["professor","anthony"],["historically","manipulated"],["right","ofree"],["ofree","transit"],["state","thisuggests"],["political","institution"],["spain","britain"],["france","c"],["c","yale"],["yale","university"],["university","press"],["maximiliano","korstanje"],["korstanje","argued"],["groups","agree"],["self","defence"],["ref","since"],["nation","state"],["western","concept"],["main","criteria"],["free","circulation"],["main","cultural"],["cultural","value"],["difficult","world"],["world","examining"],["capitalism","new"],["new","york"],["york","nova"],["nova","science"],["science","pubs"],["pubs","hospitality"],["hospitality","depends"],["receiving","process"],["social","bonds"],["bonds","hospitality"],["also","inextricably"],["way","thathe"],["thathe","soul"],["travelling","failure"],["la","tica"],["tica","de"],["de","la"],["hospitality","may"],["e","tarlow"],["tarlow","p"],["post","entertainment"],["entertainment","industry"],["industry","journal"],["cultural","change"],["change","korstanje"],["terrorism","tourism"],["hospitality","new"],["new","york"],["york","palgrave"],["palgrave","macmillan"],["legends","myths"],["horror","movies"],["movies","rogues"],["rogues","often"],["often","violate"],["guest","host"],["host","meeting"],["meeting","necessarily"],["high","levels"],["sacred","law"],["agree","noto"],["noto","attack"],["unconditional","hospitality"],["given","way"],["new","sort"],["difficult","world"],["world","examining"],["capitalism","new"],["new","york"],["e","olsen"],["horror","movies"],["movies","post"],["post","hospitality"],["perspective","international"],["international","journal"],["tourism","anthropology"],["anthropology","korstanje"],["new","perspective"],["hospitality","anatolia"],["recent","years"],["terrorist","cells"],["target","leisure"],["leisure","spots"],["tourist","destinations"],["facing","serious"],["serious","problems"],["since","one"],["terrorism","affects"],["affects","tourism"],["tourism","industry"],["industry","causing"],["causing","economic"],["economic","losses"],["also","destroy"],["destroy","thessence"],["ideological","core"],["terrorism","tourism"],["west","new"],["new","york"],["york","palgrave"],["palgrave","macmillan"],["also","see"],["see","couchsurfing"],["couchsurfing","hospitality"],["hospitality","management"],["management","studies"],["studies","hospitality"],["hospitality","service"],["modern","day"],["day","hospitality"],["hospitality","networks"],["networks","hotel"],["hotel","manager"],["h","tel"],["reciprocity","social"],["social","psychology"],["psychology","reciprocity"],["reciprocity","cultural"],["cultural","anthropology"],["anthropology","furthereading"],["furthereading","danny"],["danny","meyer"],["meyer","setting"],["business","christine"],["ethical","decision"],["decision","making"],["hospitality","industry"],["industry","karen"],["tourism","industry"],["tourism","development"],["development","conrad"],["alison","morrison"],["alison","morrison"],["great","good"],["good","place"],["customer","service"],["luxury","guest"],["ancient","city"],["city","religion"],["religion","laws"],["force","jacques"],["hospitality","trans"],["trans","rachel"],["stanford","university"],["university","press"],["press","james"],["western","literature"],["literature","new"],["yale","university"],["welcome","oral"],["oral","theory"],["hospitality","scene"],["scene","ann"],["michigan","press"],["university","press"],["j","routes"],["routes","travel"],["late","twentieth"],["twentieth","century"],["century","cambridge"],["harvard","university"],["university","press"],["press","john"],["john","b"],["amnesia","garden"],["garden","city"],["city","new"],["new","york"],["christian","h"],["york","dresden"],["press","thomas"],["hospitality","ethics"],["ethics","politics"],["possible","bronx"],["university","press"],["press","korstanje"],["e","terrorism"],["global","village"],["terrorism","affects"],["daily","lives"],["lives","new"],["new","york"],["york","nova"],["nova","science"],["science","pubs"],["pubs","korstanje"],["thana","capitalism"],["tourism","abingdon"],["abingdon","routledge"],["routledge","category"],["category","etiquette"],["etiquette","category"],["category","hospitality"],["hospitality","industry"],["industry","category"],["category","cultural"],["cultural","anthropology"]],"all_collocations":["file bringing","hospitality often","often seen","feed guests","guests well","taverns file","file de","de stratford","stratford coat","medieval stratford","stratford family","family de","de stratford","stratford coat","trestle heraldry","heraldry trestle","trestle also","also used","mean hospitality","table support","heraldry hospitality","hospitality refers","guest host","host wherein","host receives","goodwill including","guests visitors","strangers louis","describes hospitality","great soul","whole universe","de hospitality","hospitality thencyclopedia","collaborative translation","michigan publishing","publishing university","michigan library","library web","web fill","form apr","remove square","encyclop die","des arts","vol paris","paris hospitality","hospitality ethics","hospitality etymology","etymology derives","c lewis","lewis elementary","elementary latin","latin dictionary","dictionary oxford","oxford univ","univ press","press p","p meaning","meaning host","host guest","terms like","like hostile","hostile derive","latin word","word hospital","hospital means","guest chamber","chamber guest","latin dictionary","dictionary revised","j charles","charles j","j thousand","thenglish words","words host","pronunciation hospitality","hotel historical","historical practice","ancient cultures","cultures hospitality","hospitality involved","involved welcoming","food shelter","making room","room recovering","recovering hospitality","christian tradition","concepts ancient","ancient greece","ancient greece","greece hospitality","right withe","withe host","make sure","methe ancient","ancient greek","greek term","involved expressed","guest friendship","friendship relation","greek society","hospitality determined","determined nobility","social standing","regarded hospitality","duty inspired","india nepal","nepal india","india nepal","nepal hospitality","principle ishown","nepal practice","towards guests","social situations","situations file","von san","san vitale","thumb mosaic","san vitale","vitale san","san vitale","angels pre","pre judaism","judaism praises","praises hospitality","guests based","based largely","lot biblical","biblical person","person lot","expectations hosts","hosts arexpected","provide nourishment","nourishment comfort","visit hosts","hosts customarily","home wishing","christianity hospitality","welcome visitors","visitors alain","pascal france","france p","virtue found","foot washing","peace walter","baker academic","academic usa","usa p","p lawrence","keith j","press usa","usa p","gideon baker","baker hospitality","uk p","western countries","host culture","immigrants based","bible j","history memory","migration perceptions","palgrave macmillan","macmillan usa","usa p","p one","main principles","profound respecto","visitors regardless","economic status","status without","great lengths","show hospitality","celtic societies","societies also","also valued","hospitality especially","provide food","food shelter","guest buto","buto make","make sure","barnes noble","noble books","books page","page current","current usage","entertainment however","guests providing","equals cultures","subcultures vary","show hospitality","personal friends","hospitality jacques","understand hospitality","unconditional hospitality","centuries philosophers","devoted considerable","considerable attention","j hospitality","theoretical humanities","humanities however","however hospitality","hospitality offers","paradoxical situation","situation like","like language","language since","since inclusion","sacred law","hospitality implies","implies others","rejected julia","taking advantage","trade x","barcelona plaza","sociedad hospitality","hospitality serves","host guest","guest encounters","encounters producing","combines curiosity","tourism annals","tourism research","general terms","hospitality centres","c towards","hospitality services","services international","international journal","contemporary hospitality","hospitality management","management however","agreement withis","withis concept","concept professor","professor anthony","historically manipulated","right ofree","ofree transit","state thisuggests","political institution","spain britain","france c","c yale","yale university","university press","maximiliano korstanje","korstanje argued","groups agree","self defence","ref since","nation state","western concept","main criteria","free circulation","main cultural","cultural value","difficult world","world examining","capitalism new","new york","york nova","nova science","science pubs","pubs hospitality","hospitality depends","receiving process","social bonds","bonds hospitality","also inextricably","way thathe","thathe soul","travelling failure","la tica","tica de","de la","hospitality may","e tarlow","tarlow p","post entertainment","entertainment industry","industry journal","cultural change","change korstanje","terrorism tourism","hospitality new","new york","york palgrave","palgrave macmillan","legends myths","horror movies","movies rogues","rogues often","often violate","guest host","host meeting","meeting necessarily","high levels","sacred law","agree noto","noto attack","unconditional hospitality","given way","new sort","difficult world","world examining","capitalism new","new york","e olsen","horror movies","movies post","post hospitality","perspective international","international journal","tourism anthropology","anthropology korstanje","new perspective","hospitality anatolia","recent years","terrorist cells","target leisure","leisure spots","tourist destinations","facing serious","serious problems","since one","terrorism affects","affects tourism","tourism industry","industry causing","causing economic","economic losses","also destroy","destroy thessence","ideological core","terrorism tourism","west new","new york","york palgrave","palgrave macmillan","also see","see couchsurfing","couchsurfing hospitality","hospitality management","management studies","studies hospitality","hospitality service","modern day","day hospitality","hospitality networks","networks hotel","hotel manager","h tel","reciprocity social","social psychology","psychology reciprocity","reciprocity cultural","cultural anthropology","anthropology furthereading","furthereading danny","danny meyer","meyer setting","business christine","ethical decision","decision making","hospitality industry","industry karen","tourism industry","tourism development","development conrad","alison morrison","alison morrison","great good","good place","customer service","luxury guest","ancient city","city religion","religion laws","force jacques","hospitality trans","trans rachel","stanford university","university press","press james","western literature","literature new","yale university","welcome oral","oral theory","hospitality scene","scene ann","michigan press","university press","j routes","routes travel","late twentieth","twentieth century","century cambridge","harvard university","university press","press john","john b","amnesia garden","garden city","city new","new york","christian h","york dresden","press thomas","hospitality ethics","ethics politics","possible bronx","university press","press korstanje","e terrorism","global village","terrorism affects","daily lives","lives new","new york","york nova","nova science","science pubs","pubs korstanje","thana capitalism","tourism abingdon","abingdon routledge","routledge category","category etiquette","etiquette category","category hospitality","hospitality industry","industry category","category cultural","cultural anthropology"],"new_description":"file bringing boar boar head heraldry boar head used hospitality often_seen representing host willingness feed guests well likewise symbol boar head inns taverns file de stratford coat thumb medieval stratford family de stratford coat arms trestle heraldry trestle also heraldry also_used mean hospitality historically trestle used stool table support john display heraldry hospitality refers relationship guest host wherein host receives guest goodwill including reception entertainment guests visitors strangers louis de describes hospitality die virtue great soul whole universe ties louis de hospitality thencyclopedia collaborative translation sophie ann michigan publishing university michigan library web fill today date form apr remove square trans encyclop die des arts des vol paris hospitality ethics discipline studies usage hospitality etymology derives latin c lewis elementary latin dictionary oxford univ press_p meaning host guest stranger formed latter terms like hostile derive latin word hospital means guest chamber guest lodging latin dictionary revised j charles j thousand thus root thenglish words host p dropped convenience pronunciation hospitality hostel hotel historical practice ancient cultures hospitality involved welcoming stranger offering food shelter safety christine making room recovering hospitality christian tradition b concepts ancient_greece ancient_greece hospitality right withe host expected make_sure needs guests methe ancient_greek term greek god involved expressed guest friendship relation greek society person ability laws hospitality determined nobility social standing regarded hospitality duty inspired zeus india nepal india nepal hospitality based principle meaning guest god principle ishown number stories guest revealed god rewards provider hospitality indian nepal practice towards guests home social situations file von san vitale jpg thumb mosaic basilica san vitale san vitale angels pre judaism praises hospitality strangers guests based largely abraham lot biblical person lot book genesis hebrew practice called besides expectations hosts arexpected provide nourishment comfort entertainment guests athend visit hosts customarily guests home wishing safe b christianity hospitality virtue reminder strangers rule welcome visitors alain l presses pascal france p virtue found old example custom foot washing visitors kiss peace walter dictionary baker academic usa p lawrence keith j christian themes tradition press usa p taught jesus new indeed thathose welcomed stranger welcomed gideon baker hospitality world uk p western countries developed host culture immigrants based bible j history memory migration perceptions past politics palgrave macmillan usa p one main principles display hospitality profound respecto visitors regardless race affiliation economic status without hope favour go great lengths show hospitality celtic societies also valued concept hospitality especially terms protection host granted person request expected provide food shelter guest buto make_sure come harm barnes noble books_page current usage hospitality rarely matter protection survival associated etiquette entertainment however still respect one guests providing needs treating equals cultures subcultures vary thextento one expected show hospitality strangers opposed personal friends members one anthropology hospitality jacques offers model understand hospitality unconditional hospitality hospitality centuries philosophers devoted considerable attention problem j hospitality journal theoretical humanities however hospitality offers paradoxical situation like language since inclusion welcomed sacred law hospitality implies others rejected julia readers dangers hospitality consists taking advantage vulnerability j para trade x barcelona plaza sociedad hospitality serves reduce tension process host guest encounters producing zone combines curiosity others fear h anthropology tourism annals tourism_research general terms meaning hospitality centres belief assisted protected c towards understanding hospitality_services international_journal contemporary hospitality_management however voices agreement withis concept professor anthony describes concept hospitality historically manipulated legitimate conquest americas imposing right ofree transit formation state thisuggests hospitality political institution lords worlds empire spain britain france c yale_university_press years following maximiliano korstanje argued hospitality groups agree self defence times war exchange goods merchandise ref since inception nation state western concept hospitality proposed main criteria free circulation mobility people main cultural value modern difficult world examining roots capitalism new_york nova_science pubs hospitality depends giving receiving process touchstone social bonds hospitality religion also inextricably way thathe soul protected gods thereafter assisted travelling failure care strangers punished gods send types e la tica de_la daniel online lack hospitality may seen e tarlow p risk vulnerability post entertainment_industry journal tourism_cultural change korstanje terrorism_tourism thend hospitality new_york palgrave macmillan legends myths horror movies rogues often violate guests intentions sleeping guest host meeting necessarily high_levels vulnerability risk sacred law hospitality agree noto attack roof view advance secularization practice unconditional hospitality given way new sort hospitality pay e difficult world examining roots capitalism new_york e olsen h discourse risk horror movies post hospitality hostility perspective international_journal tourism anthropology korstanje e fear traveling new perspective tourism_hospitality anatolia recent_years activity terrorist cells target leisure spots tourist_destinations necessary hospitality result west facing serious problems understand since one terrorism affects tourism_industry causing economic losses also destroy thessence hospitality ideological core western terrorism_tourism thend hospitality west new_york palgrave macmillan also see couchsurfing hospitality_management_studies hospitality_service modern_day hospitality networks hotel_manager tre h_tel reciprocity social psychology reciprocity cultural anthropology furthereading danny meyer setting table power hospitality business christine ethical decision_making hospitality_industry karen bruce ethics hospitality_tourism_industry tourism_development conrad alison morrison search hospitality conrad alison morrison great good place ray customer_service luxury guest paul de ancient city religion laws institutions greece rome hospitality antiquity concept force jacques hospitality trans rachel stanford university_press james w hospitality western literature new yale_university stranger welcome oral theory aesthetics hospitality scene ann university michigan press hospitality immigrant university_press j routes travel translation late twentieth_century cambridge harvard university_press john b hospitality encyclopedia love world barbara amnesia garden city_new_york christian h hospitality age media york dresden press thomas ed conditions hospitality ethics politics aesthetics threshold possible bronx university_press korstanje e terrorism global village terrorism affects daily lives new_york nova_science pubs korstanje e rise thana_capitalism tourism abingdon routledge category etiquette category_hospitality_industry category_cultural anthropology"},{"title":"Hospitality consulting","description":"hospitality consulting is the counsel and expertise given by professionals to hotel operators restaurant owners club management and other professionals in the hospitality industry in the united states consultants in the hospitality industry generally earn a degree in hospitality management course details february new york university retrieved from the average salary for consultantstarts around and can be up to salary survey for job february payscale retrieved from currently the average salary for a hospitality consultant is hospitaltiy consulting salaries march indeed retrieved from the bureau of labor statistics expects hotel management careers which include related business and financial careers all of which may require a bachelor s degree in hospitality managemento increase more than through bachelors degree in hospitality management career info march diploma guide retrieved from as a result of the global recession the hospitality industry is experiencing a downturn in revenue and operating profitsee also consultant hospitality industry hospitality management hospitality management studies category hospitality occupations category hospitality management category hospitality services category consulting occupations","main_words":["hospitality","consulting","counsel","expertise","given","professionals","hotel","operators","restaurant","owners","club","management","professionals","hospitality_industry","united_states","consultants","hospitality_industry","generally","earn","degree","hospitality_management","course","details","february","new_york","university","retrieved","average","salary","around","salary","survey","job","february","retrieved","currently","average","salary","hospitality","consultant","consulting","march","indeed","retrieved","bureau","labor","statistics","expects","hotel_management","careers","include","related","business","financial","careers","may","require","bachelor","degree","hospitality","increase","degree","hospitality_management","career","info","march","diploma","guide","retrieved","result","global","recession","hospitality_industry","experiencing","downturn","revenue_operating","also","consultant","hospitality_industry","hospitality_management","hospitality_management_studies","services_category","consulting","occupations"],"clean_bigrams":[["hospitality","consulting"],["expertise","given"],["hotel","operators"],["operators","restaurant"],["restaurant","owners"],["owners","club"],["club","management"],["hospitality","industry"],["united","states"],["states","consultants"],["hospitality","industry"],["industry","generally"],["generally","earn"],["hospitality","management"],["management","course"],["course","details"],["details","february"],["february","new"],["new","york"],["york","university"],["university","retrieved"],["average","salary"],["salary","survey"],["job","february"],["average","salary"],["hospitality","consultant"],["march","indeed"],["indeed","retrieved"],["labor","statistics"],["statistics","expects"],["expects","hotel"],["hotel","management"],["management","careers"],["include","related"],["related","business"],["financial","careers"],["may","require"],["hospitality","management"],["management","career"],["career","info"],["info","march"],["march","diploma"],["diploma","guide"],["guide","retrieved"],["global","recession"],["hospitality","industry"],["also","consultant"],["consultant","hospitality"],["hospitality","industry"],["industry","hospitality"],["hospitality","management"],["management","hospitality"],["hospitality","management"],["management","studies"],["studies","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","hospitality"],["hospitality","management"],["management","category"],["category","hospitality"],["hospitality","services"],["services","category"],["category","consulting"],["consulting","occupations"]],"all_collocations":["hospitality consulting","expertise given","hotel operators","operators restaurant","restaurant owners","owners club","club management","hospitality industry","united states","states consultants","hospitality industry","industry generally","generally earn","hospitality management","management course","course details","details february","february new","new york","york university","university retrieved","average salary","salary survey","job february","average salary","hospitality consultant","march indeed","indeed retrieved","labor statistics","statistics expects","expects hotel","hotel management","management careers","include related","related business","financial careers","may require","hospitality management","management career","career info","info march","march diploma","diploma guide","guide retrieved","global recession","hospitality industry","also consultant","consultant hospitality","hospitality industry","industry hospitality","hospitality management","management hospitality","hospitality management","management studies","studies category","category hospitality","hospitality occupations","occupations category","category hospitality","hospitality management","management category","category hospitality","hospitality services","services category","category consulting","consulting occupations"],"new_description":"hospitality consulting counsel expertise given professionals hotel operators restaurant owners club management professionals hospitality_industry united_states consultants hospitality_industry generally earn degree hospitality_management course details february new_york university retrieved average salary around salary survey job february retrieved currently average salary hospitality consultant consulting march indeed retrieved bureau labor statistics expects hotel_management careers include related business financial careers may require bachelor degree hospitality increase degree hospitality_management career info march diploma guide retrieved result global recession hospitality_industry experiencing downturn revenue_operating also consultant hospitality_industry hospitality_management hospitality_management_studies category_hospitality_occupations_category hospitality_management_category_hospitality services_category consulting occupations"},{"title":"Hospitality industry","description":"the hospitality industry is a broad category ofields within service industry that includes lodging event planning theme parks transportation cruise line and additional fields within the tourism industry the hospitality industry is a multibillion dollar industry that depends on the availability of leisure time andisposable andiscretionary income disposable income a hospitality unit such as a restaurant hotel or an amusement park consists of multiple groupsuch as facility maintenance andirect operationservers housekeeper domestic worker housekeepers porters kitchen workers bartender s management marketing and human resources etc usage rate or its inverse vacancy rate is an important variable for the hospitality industry just as a factory owner would wish a productive asseto be in use as much as possible as opposed to having to pay fixed cost s while the factory is not producing so do restaurants hotels and theme parkseek to maximize the number of customers they process in all sectors this led to formation of services withe aim to increase usage rate provided by hotel consolidator s information about required or offered products are brokered on business networks used by vendors as well as purchasers in looking at various industries barriers to entry by newcomers and competitive advantages between current players are very important among other things hospitality industry players find advantage in old classics location initial and ongoing investment support reflected in the material upkeep ofacilities and the luxuries located therein and particular themes adopted by the marketing arm of the organization in question for example atheme restaurant s also very important are the characteristics of the personnel working in direct contact withe customers the authenticity professionalism and actual concern for the happiness and well being of the customers that is communicated by successful organizations is a clear competitive advantage hotel s motel s flotel s inn s resort serviced apartment s bed and breakfast bed and breakfasts restaurants and bars nightclub s pubs and public houses restaurant s bar establishment bar s travel and tourism travel agent s tour operator s leisure centre see also convention and visitor bureau hospitality management hospitality service leisure industry american hotelodging educational institute category hospitality industry","main_words":["hospitality","industry","broad","category","within","service_industry","includes","lodging","event","planning","theme_parks","transportation","cruise","line","additional","fields","within","tourism_industry","hospitality_industry","multibillion","dollar","industry","depends","availability","leisure","time","income","disposable","income","hospitality","unit","restaurant","hotel","amusement_park","consists","multiple","groupsuch","facility","maintenance","andirect","housekeeper","domestic","worker","housekeepers","porters","kitchen","workers","bartender","management","marketing","human_resources","etc","usage","rate","vacancy","rate","important","variable","hospitality_industry","factory","owner","would","wish","productive","use","much","possible","opposed","pay","fixed","cost","factory","producing","restaurants_hotels","theme","maximize","number","customers","process","sectors","led","formation","services","withe_aim","increase","usage","rate","provided","hotel","consolidator","information","required","offered","products","business","networks","used","vendors","well","looking","various","industries","barriers","entry","competitive","advantages","current","players","important","among","things","hospitality_industry","players","find","advantage","old","classics","location","initial","ongoing","investment","support","reflected","material","ofacilities","located","particular","themes","adopted","marketing","arm","organization","question","example","restaurant","also","important","characteristics","personnel","working","direct","contact","withe","customers","authenticity","professionalism","actual","concern","happiness","well","customers","successful","organizations","clear","competitive","advantage","hotel","motel","inn","resort","serviced","apartment","bed","breakfast","bed","breakfasts","restaurants","bars","nightclub","pubs","public_houses","restaurant","bar_establishment_bar","travel_tourism","travel_agent","tour_operator","leisure","centre","see_also","convention","visitor","bureau","hospitality_management","hospitality_service","leisure","industry","american","hotelodging","educational","institute","category_hospitality_industry"],"clean_bigrams":[["hospitality","industry"],["broad","category"],["within","service"],["service","industry"],["includes","lodging"],["lodging","event"],["event","planning"],["planning","theme"],["theme","parks"],["parks","transportation"],["transportation","cruise"],["cruise","line"],["additional","fields"],["fields","within"],["tourism","industry"],["hospitality","industry"],["multibillion","dollar"],["dollar","industry"],["leisure","time"],["income","disposable"],["disposable","income"],["hospitality","unit"],["restaurant","hotel"],["amusement","park"],["park","consists"],["multiple","groupsuch"],["facility","maintenance"],["maintenance","andirect"],["housekeeper","domestic"],["domestic","worker"],["worker","housekeepers"],["housekeepers","porters"],["porters","kitchen"],["kitchen","workers"],["workers","bartender"],["management","marketing"],["human","resources"],["resources","etc"],["etc","usage"],["usage","rate"],["vacancy","rate"],["important","variable"],["hospitality","industry"],["factory","owner"],["owner","would"],["would","wish"],["pay","fixed"],["fixed","cost"],["restaurants","hotels"],["services","withe"],["withe","aim"],["increase","usage"],["usage","rate"],["rate","provided"],["hotel","consolidator"],["offered","products"],["business","networks"],["networks","used"],["various","industries"],["industries","barriers"],["competitive","advantages"],["current","players"],["important","among"],["things","hospitality"],["hospitality","industry"],["industry","players"],["players","find"],["find","advantage"],["old","classics"],["classics","location"],["location","initial"],["ongoing","investment"],["investment","support"],["support","reflected"],["particular","themes"],["themes","adopted"],["marketing","arm"],["personnel","working"],["direct","contact"],["contact","withe"],["withe","customers"],["authenticity","professionalism"],["actual","concern"],["successful","organizations"],["clear","competitive"],["competitive","advantage"],["advantage","hotel"],["resort","serviced"],["serviced","apartment"],["breakfast","bed"],["breakfasts","restaurants"],["bars","nightclub"],["public","houses"],["houses","restaurant"],["bar","establishment"],["establishment","bar"],["tourism","travel"],["travel","agent"],["tour","operator"],["leisure","centre"],["centre","see"],["see","also"],["also","convention"],["visitor","bureau"],["bureau","hospitality"],["hospitality","management"],["management","hospitality"],["hospitality","service"],["service","leisure"],["leisure","industry"],["industry","american"],["american","hotelodging"],["hotelodging","educational"],["educational","institute"],["institute","category"],["category","hospitality"],["hospitality","industry"]],"all_collocations":["hospitality industry","broad category","within service","service industry","includes lodging","lodging event","event planning","planning theme","theme parks","parks transportation","transportation cruise","cruise line","additional fields","fields within","tourism industry","hospitality industry","multibillion dollar","dollar industry","leisure time","income disposable","disposable income","hospitality unit","restaurant hotel","amusement park","park consists","multiple groupsuch","facility maintenance","maintenance andirect","housekeeper domestic","domestic worker","worker housekeepers","housekeepers porters","porters kitchen","kitchen workers","workers bartender","management marketing","human resources","resources etc","etc usage","usage rate","vacancy rate","important variable","hospitality industry","factory owner","owner would","would wish","pay fixed","fixed cost","restaurants hotels","services withe","withe aim","increase usage","usage rate","rate provided","hotel consolidator","offered products","business networks","networks used","various industries","industries barriers","competitive advantages","current players","important among","things hospitality","hospitality industry","industry players","players find","find advantage","old classics","classics location","location initial","ongoing investment","investment support","support reflected","particular themes","themes adopted","marketing arm","personnel working","direct contact","contact withe","withe customers","authenticity professionalism","actual concern","successful organizations","clear competitive","competitive advantage","advantage hotel","resort serviced","serviced apartment","breakfast bed","breakfasts restaurants","bars nightclub","public houses","houses restaurant","bar establishment","establishment bar","tourism travel","travel agent","tour operator","leisure centre","centre see","see also","also convention","visitor bureau","bureau hospitality","hospitality management","management hospitality","hospitality service","service leisure","leisure industry","industry american","american hotelodging","hotelodging educational","educational institute","institute category","category hospitality","hospitality industry"],"new_description":"hospitality industry broad category within service_industry includes lodging event planning theme_parks transportation cruise line additional fields within tourism_industry hospitality_industry multibillion dollar industry depends availability leisure time income disposable income hospitality unit restaurant hotel amusement_park consists multiple groupsuch facility maintenance andirect housekeeper domestic worker housekeepers porters kitchen workers bartender management marketing human_resources etc usage rate vacancy rate important variable hospitality_industry factory owner would wish productive use much possible opposed pay fixed cost factory producing restaurants_hotels theme maximize number customers process sectors led formation services withe_aim increase usage rate provided hotel consolidator information required offered products business networks used vendors well looking various industries barriers entry competitive advantages current players important among things hospitality_industry players find advantage old classics location initial ongoing investment support reflected material ofacilities located particular themes adopted marketing arm organization question example restaurant also important characteristics personnel working direct contact withe customers authenticity professionalism actual concern happiness well customers successful organizations clear competitive advantage hotel motel inn resort serviced apartment bed breakfast bed breakfasts restaurants bars nightclub pubs public_houses restaurant bar_establishment_bar travel_tourism travel_agent tour_operator leisure centre see_also convention visitor bureau hospitality_management hospitality_service leisure industry american hotelodging educational institute category_hospitality_industry"},{"title":"Hospitality law","description":"hospitality law is a legal and social practice related to the treatment of a person s guests or those who patronize a place of business related to the concept of legaliability hospitality laws are intended to protect bothosts and guests against injury whether accidental or intentional duty to guests hotels and other business operators arexpected to act prudently and use reasonable care barth stephen hospitality law p to ensure thatheir premises areasonably free of risk while not specifically requiring that a business owner ensure his guests are safe most jurisdictions interpret prudent and reasonable to include foreseeable dangersuch as tripping hazards or unsecured shelving in most cases unless directly disclaimed for example with some insurance waivers hospitality law does not protect a business owner against charges of negligence use in common law common law holds innkeepers liable for any loss of guest property when the guest is on the premises of a place of business in practice such liability is often overlooked provided thathe business owner meets certain conditionsuch as having a guest sign a waiver of liability in most countries for liability waivers to benforceable notification of the waiver must be posted in an accessible visible location usually athe front desk or in a common area of the business and must be printed in clearly legible text american hospitality statutes also govern bailment s a bailment is the delivery of an item of property for some purpose withexpressed or implied understanding thathe person receiving it shall return it in the same or similar condition in which it was received when the purpose has been completed barth stephen hospitality law p coat checksafety deposit boxes and luggage storage are common examples of bailments for the hospitality industry the laws of innkeepers by john eh sherrythird edition published by cornell university press provides an in depth analysis of the laws affecting places of public accommodation see also nanawatai category law by issue category hospitality industry","main_words":["hospitality","law","legal","social","practice","related","treatment","person","guests","place","business","related","concept","hospitality","laws","intended","protect","guests","injury","whether","accidental","intentional","duty","guests","hotels","business","operators","arexpected","act","use","reasonable","care","barth","stephen","hospitality","law","p","premises","free","risk","specifically","requiring","business","owner","ensure","guests","safe","jurisdictions","reasonable","include","hazards","cases","unless","directly","example","insurance","hospitality","law","protect","business","owner","charges","use","common","law","common","law","holds","liable","loss","guest","property","guest","premises","place","business","practice","liability","often","overlooked","provided","thathe","business","owner","meets","certain","guest","sign","liability","countries","liability","notification","must","posted","accessible","visible","location","usually","athe","front_desk","common","area","business","must","printed","clearly","text","american","hospitality","statutes","also","delivery","item","property","purpose","implied","understanding","thathe","person","receiving","shall","return","similar","condition","received","purpose","completed","barth","stephen","hospitality","law","p","coat","deposit","boxes","luggage","storage","common","examples","hospitality_industry","laws","john","edition_published","cornell","depth","analysis","laws","affecting","places","public","accommodation","see_also","category","law","issue","category_hospitality_industry"],"clean_bigrams":[["hospitality","law"],["social","practice"],["practice","related"],["business","related"],["hospitality","laws"],["injury","whether"],["whether","accidental"],["intentional","duty"],["guests","hotels"],["business","operators"],["operators","arexpected"],["use","reasonable"],["reasonable","care"],["care","barth"],["barth","stephen"],["stephen","hospitality"],["hospitality","law"],["law","p"],["ensure","thatheir"],["thatheir","premises"],["specifically","requiring"],["business","owner"],["owner","ensure"],["cases","unless"],["unless","directly"],["hospitality","law"],["business","owner"],["common","law"],["law","common"],["common","law"],["law","holds"],["guest","property"],["often","overlooked"],["overlooked","provided"],["provided","thathe"],["thathe","business"],["business","owner"],["owner","meets"],["meets","certain"],["guest","sign"],["accessible","visible"],["visible","location"],["location","usually"],["usually","athe"],["athe","front"],["front","desk"],["common","area"],["text","american"],["american","hospitality"],["hospitality","statutes"],["statutes","also"],["implied","understanding"],["understanding","thathe"],["thathe","person"],["person","receiving"],["shall","return"],["similar","condition"],["completed","barth"],["barth","stephen"],["stephen","hospitality"],["hospitality","law"],["law","p"],["p","coat"],["deposit","boxes"],["luggage","storage"],["common","examples"],["hospitality","industry"],["edition","published"],["cornell","university"],["university","press"],["press","provides"],["depth","analysis"],["laws","affecting"],["affecting","places"],["public","accommodation"],["accommodation","see"],["see","also"],["category","law"],["issue","category"],["category","hospitality"],["hospitality","industry"]],"all_collocations":["hospitality law","social practice","practice related","business related","hospitality laws","injury whether","whether accidental","intentional duty","guests hotels","business operators","operators arexpected","use reasonable","reasonable care","care barth","barth stephen","stephen hospitality","hospitality law","law p","ensure thatheir","thatheir premises","specifically requiring","business owner","owner ensure","cases unless","unless directly","hospitality law","business owner","common law","law common","common law","law holds","guest property","often overlooked","overlooked provided","provided thathe","thathe business","business owner","owner meets","meets certain","guest sign","accessible visible","visible location","location usually","usually athe","athe front","front desk","common area","text american","american hospitality","hospitality statutes","statutes also","implied understanding","understanding thathe","thathe person","person receiving","shall return","similar condition","completed barth","barth stephen","stephen hospitality","hospitality law","law p","p coat","deposit boxes","luggage storage","common examples","hospitality industry","edition published","cornell university","university press","press provides","depth analysis","laws affecting","affecting places","public accommodation","accommodation see","see also","category law","issue category","category hospitality","hospitality industry"],"new_description":"hospitality law legal social practice related treatment person guests place business related concept hospitality laws intended protect guests injury whether accidental intentional duty guests hotels business operators arexpected act use reasonable care barth stephen hospitality law p ensure_thatheir premises free risk specifically requiring business owner ensure guests safe jurisdictions reasonable include hazards cases unless directly example insurance hospitality law protect business owner charges use common law common law holds liable loss guest property guest premises place business practice liability often overlooked provided thathe business owner meets certain guest sign liability countries liability notification must posted accessible visible location usually athe front_desk common area business must printed clearly text american hospitality statutes also delivery item property purpose implied understanding thathe person receiving shall return similar condition received purpose completed barth stephen hospitality law p coat deposit boxes luggage storage common examples hospitality_industry laws john edition_published cornell university_press_provides depth analysis laws affecting places public accommodation see_also category law issue category_hospitality_industry"},{"title":"Hospitality service","description":"the concept of hospitality service also known as accommodation sharing hospitality exchange short hospex home stay networks or home hospitality network hoho refers to centrally organized social networks of travelers whoffer or seek homestay s accommodation in a homeither with or without monetary exchange theservices generally connect users via the internet hospitality services arexamples of collaborative consumption and sharing in cases where money is not exchanged in return for accommodation they arexamples of a barter economy or gift economy in bob luitweiler founded servas international the first hospitality service as a cross national nonprofit volunteerun organization advocating interracial and international peace servas who we are in john wilcock set up the traveler s directory as a listing of his friends willing to host each other when traveling in joy lily rescued the organization from imminent shutdown forming hospitality exchange in a hospitality service for esperanto speakers called programo pasporto was created it became pasporta servo in us president jimmy carter announced the formation ofriendship force international which today operates programs everyear in communities in countries friendship force who we are in veit kuhne founded hospitality club the first internet only hospitality service in casey fenton founded couchsurfing the largest hospitality service in which accommodation is offered without monetary exchange in brian chesky and joe gebbia founded airbnb after a popular conference made it hard to find accommodation hosts receive monetary payment from guests paid online in advance and airbnb receives a fee on each transaction in mandy rowe founded broads abroad travel network which is the only online hospitality servicexclusively for womenotable international hospitality networks flats a network offering home stay accommodation primarily in europe guests must pay in advance for their home stay via credit card airbnb the largest network withe most members and home stay options toffer airbnb has over million users guests must pay in advance for their home stay via credit card and airbnb earns a fee on each transaction bewelcome a network based on open source community open source principles with approximately members bewelcome statistics in countries the network is organised as a registered non profit organisation with democratic structures couchsurfing with over million members in more than countries it is the largest hospitality service whereby gueststay without monetary exchange friendship force international a network with members that concentrates on building understanding across cultures hospitality club one of the first internet based hospitality exchanges mennonite your way a hospitality service with over hosts mostly mennonite s and schwarzenau brethren in more than countries guests arexpected to contribute financially to the host pasporta servo a hospitality service for esperanto speakers whereby lodging is provided without monetary exchange servas international with a history dating back to it is focused on human rights and global peace trippingcom an online review aggregator that pulls listings from several hospitality services wimdu a hospitality service focused renting homes for vacation purposes workaway a hospitality service aimed at budgetravelers and language learners whereby travelers provide help to their hosts in exchange for food and board approximately hosts wwoof worldwide opportunities on organic farms a network whereby help on the host s property is exchanged for food accommodation education and cultural interaction see alsonline platforms for collaborative consumption collaborative consumption hospitality industry lodging homestay sharing economy gift economy barter economy category tourist accommodations category social networking services category hospitality services category backpacking category hotel terminology","main_words":["concept","hospitality_service","also_known","accommodation","sharing","hospitality","exchange","short","home","stay","networks","home","hospitality","network","refers","organized","social","networks","travelers","seek","homestay","accommodation","without","monetary_exchange","theservices","generally","connect","users","via","internet","hospitality_services","arexamples","collaborative_consumption","sharing","cases","money","exchanged","return","accommodation","arexamples","barter","economy","gift","economy","bob","founded","servas","international","first","hospitality_service","cross","national","nonprofit","organization","advocating","international","peace","servas","john","set","traveler","directory","listing","friends","willing","host","traveling","joy","lily","rescued","organization","shutdown","forming","hospitality","exchange","hospitality_service","esperanto","speakers","called","created","became","pasporta_servo","us","president","jimmy","carter","announced","formation","force","international","today","operates","programs","everyear","communities","countries","friendship","force","veit","founded","hospitality","club","first","internet","hospitality_service","casey","fenton","founded","couchsurfing","largest","hospitality_service","accommodation","offered","without","monetary_exchange","brian","joe","founded","airbnb","popular","conference","made","hard","find","accommodation","hosts","receive","monetary","payment","guests","paid","online","advance","airbnb","receives","fee","transaction","rowe","founded","abroad","travel","network","online","hospitality","international","hospitality","networks","flats","network","offering","home","stay","accommodation","primarily","europe","guests","must","pay","advance","home","stay","via","credit_card","airbnb","largest","network","withe","members","home","stay","options","toffer","airbnb","guests","must","pay","advance","home","stay","via","credit_card","airbnb","earns","fee","transaction","network","based","open","source","community","open","source","principles","approximately","members","statistics","countries","network","organised","registered","non_profit","organisation","democratic","structures","couchsurfing","million_members","countries","largest","hospitality_service","whereby","without","monetary_exchange","friendship","force","international","network","members","concentrates","building","understanding","across","cultures","hospitality","club","one","first","internet","based","hospitality","exchanges","mennonite","way","hospitality_service","hosts","mostly","mennonite","countries","guests","arexpected","contribute","financially","host","pasporta_servo","hospitality_service","esperanto","speakers","whereby","lodging","provided","without","monetary_exchange","servas","international","history","dating_back","focused","human_rights","global","peace","online","review","pulls","listings","several","hospitality_services","hospitality_service","focused","renting","homes","vacation","purposes","workaway","hospitality_service","aimed","language","whereby","travelers","provide","help","hosts","exchange","food","board","approximately","hosts","wwoof","worldwide","opportunities","organic","farms","network","whereby","help","host","property","exchanged","food","accommodation","education","cultural","interaction","see","platforms","collaborative_consumption","collaborative_consumption","hospitality_industry","lodging","homestay","sharing","economy","gift","economy","barter","economy","category_tourist","accommodations","category","social_networking","category_hotel","terminology"],"clean_bigrams":[["hospitality","service"],["service","also"],["also","known"],["accommodation","sharing"],["sharing","hospitality"],["hospitality","exchange"],["exchange","short"],["home","stay"],["stay","networks"],["home","hospitality"],["hospitality","network"],["organized","social"],["social","networks"],["seek","homestay"],["without","monetary"],["monetary","exchange"],["exchange","theservices"],["theservices","generally"],["generally","connect"],["connect","users"],["users","via"],["internet","hospitality"],["hospitality","services"],["services","arexamples"],["collaborative","consumption"],["barter","economy"],["economy","gift"],["gift","economy"],["founded","servas"],["servas","international"],["first","hospitality"],["hospitality","service"],["cross","national"],["national","nonprofit"],["organization","advocating"],["international","peace"],["peace","servas"],["friends","willing"],["joy","lily"],["lily","rescued"],["shutdown","forming"],["forming","hospitality"],["hospitality","exchange"],["hospitality","service"],["esperanto","speakers"],["speakers","called"],["became","pasporta"],["pasporta","servo"],["us","president"],["president","jimmy"],["jimmy","carter"],["carter","announced"],["force","international"],["today","operates"],["operates","programs"],["programs","everyear"],["countries","friendship"],["friendship","force"],["founded","hospitality"],["hospitality","club"],["first","internet"],["internet","hospitality"],["hospitality","service"],["casey","fenton"],["fenton","founded"],["founded","couchsurfing"],["largest","hospitality"],["hospitality","service"],["offered","without"],["without","monetary"],["monetary","exchange"],["founded","airbnb"],["popular","conference"],["conference","made"],["find","accommodation"],["accommodation","hosts"],["hosts","receive"],["receive","monetary"],["monetary","payment"],["guests","paid"],["paid","online"],["airbnb","receives"],["rowe","founded"],["abroad","travel"],["travel","network"],["online","hospitality"],["international","hospitality"],["hospitality","networks"],["networks","flats"],["network","offering"],["offering","home"],["home","stay"],["stay","accommodation"],["accommodation","primarily"],["europe","guests"],["guests","must"],["must","pay"],["home","stay"],["stay","via"],["via","credit"],["credit","card"],["card","airbnb"],["largest","network"],["network","withe"],["home","stay"],["stay","options"],["options","toffer"],["toffer","airbnb"],["million","users"],["users","guests"],["guests","must"],["must","pay"],["home","stay"],["stay","via"],["via","credit"],["credit","card"],["card","airbnb"],["airbnb","earns"],["network","based"],["open","source"],["source","community"],["community","open"],["open","source"],["source","principles"],["approximately","members"],["registered","non"],["non","profit"],["profit","organisation"],["democratic","structures"],["structures","couchsurfing"],["million","members"],["largest","hospitality"],["hospitality","service"],["service","whereby"],["without","monetary"],["monetary","exchange"],["exchange","friendship"],["friendship","force"],["force","international"],["building","understanding"],["understanding","across"],["across","cultures"],["cultures","hospitality"],["hospitality","club"],["club","one"],["first","internet"],["internet","based"],["based","hospitality"],["hospitality","exchanges"],["exchanges","mennonite"],["hospitality","service"],["hosts","mostly"],["mostly","mennonite"],["countries","guests"],["guests","arexpected"],["contribute","financially"],["host","pasporta"],["pasporta","servo"],["hospitality","service"],["esperanto","speakers"],["speakers","whereby"],["whereby","lodging"],["provided","without"],["without","monetary"],["monetary","exchange"],["exchange","servas"],["servas","international"],["history","dating"],["dating","back"],["human","rights"],["global","peace"],["online","review"],["pulls","listings"],["several","hospitality"],["hospitality","services"],["hospitality","service"],["service","focused"],["focused","renting"],["renting","homes"],["vacation","purposes"],["purposes","workaway"],["hospitality","service"],["service","aimed"],["whereby","travelers"],["travelers","provide"],["provide","help"],["board","approximately"],["approximately","hosts"],["hosts","wwoof"],["wwoof","worldwide"],["worldwide","opportunities"],["organic","farms"],["network","whereby"],["whereby","help"],["food","accommodation"],["accommodation","education"],["cultural","interaction"],["interaction","see"],["collaborative","consumption"],["consumption","collaborative"],["collaborative","consumption"],["consumption","hospitality"],["hospitality","industry"],["industry","lodging"],["lodging","homestay"],["homestay","sharing"],["sharing","economy"],["economy","gift"],["gift","economy"],["economy","barter"],["barter","economy"],["economy","category"],["category","tourist"],["tourist","accommodations"],["accommodations","category"],["category","social"],["social","networking"],["networking","services"],["services","category"],["category","hospitality"],["hospitality","services"],["services","category"],["category","backpacking"],["backpacking","category"],["category","hotel"],["hotel","terminology"]],"all_collocations":["hospitality service","service also","also known","accommodation sharing","sharing hospitality","hospitality exchange","exchange short","home stay","stay networks","home hospitality","hospitality network","organized social","social networks","seek homestay","without monetary","monetary exchange","exchange theservices","theservices generally","generally connect","connect users","users via","internet hospitality","hospitality services","services arexamples","collaborative consumption","barter economy","economy gift","gift economy","founded servas","servas international","first hospitality","hospitality service","cross national","national nonprofit","organization advocating","international peace","peace servas","friends willing","joy lily","lily rescued","shutdown forming","forming hospitality","hospitality exchange","hospitality service","esperanto speakers","speakers called","became pasporta","pasporta servo","us president","president jimmy","jimmy carter","carter announced","force international","today operates","operates programs","programs everyear","countries friendship","friendship force","founded hospitality","hospitality club","first internet","internet hospitality","hospitality service","casey fenton","fenton founded","founded couchsurfing","largest hospitality","hospitality service","offered without","without monetary","monetary exchange","founded airbnb","popular conference","conference made","find accommodation","accommodation hosts","hosts receive","receive monetary","monetary payment","guests paid","paid online","airbnb receives","rowe founded","abroad travel","travel network","online hospitality","international hospitality","hospitality networks","networks flats","network offering","offering home","home stay","stay accommodation","accommodation primarily","europe guests","guests must","must pay","home stay","stay via","via credit","credit card","card airbnb","largest network","network withe","home stay","stay options","options toffer","toffer airbnb","million users","users guests","guests must","must pay","home stay","stay via","via credit","credit card","card airbnb","airbnb earns","network based","open source","source community","community open","open source","source principles","approximately members","registered non","non profit","profit organisation","democratic structures","structures couchsurfing","million members","largest hospitality","hospitality service","service whereby","without monetary","monetary exchange","exchange friendship","friendship force","force international","building understanding","understanding across","across cultures","cultures hospitality","hospitality club","club one","first internet","internet based","based hospitality","hospitality exchanges","exchanges mennonite","hospitality service","hosts mostly","mostly mennonite","countries guests","guests arexpected","contribute financially","host pasporta","pasporta servo","hospitality service","esperanto speakers","speakers whereby","whereby lodging","provided without","without monetary","monetary exchange","exchange servas","servas international","history dating","dating back","human rights","global peace","online review","pulls listings","several hospitality","hospitality services","hospitality service","service focused","focused renting","renting homes","vacation purposes","purposes workaway","hospitality service","service aimed","whereby travelers","travelers provide","provide help","board approximately","approximately hosts","hosts wwoof","wwoof worldwide","worldwide opportunities","organic farms","network whereby","whereby help","food accommodation","accommodation education","cultural interaction","interaction see","collaborative consumption","consumption collaborative","collaborative consumption","consumption hospitality","hospitality industry","industry lodging","lodging homestay","homestay sharing","sharing economy","economy gift","gift economy","economy barter","barter economy","economy category","category tourist","tourist accommodations","accommodations category","category social","social networking","networking services","services category","category hospitality","hospitality services","services category","category backpacking","backpacking category","category hotel","hotel terminology"],"new_description":"concept hospitality_service also_known accommodation sharing hospitality exchange short home stay networks home hospitality network refers organized social networks travelers seek homestay accommodation without monetary_exchange theservices generally connect users via internet hospitality_services arexamples collaborative_consumption sharing cases money exchanged return accommodation arexamples barter economy gift economy bob founded servas international first hospitality_service cross national nonprofit organization advocating international peace servas john set traveler directory listing friends willing host traveling joy lily rescued organization shutdown forming hospitality exchange hospitality_service esperanto speakers called created became pasporta_servo us president jimmy carter announced formation force international today operates programs everyear communities countries friendship force veit founded hospitality club first internet hospitality_service casey fenton founded couchsurfing largest hospitality_service accommodation offered without monetary_exchange brian joe founded airbnb popular conference made hard find accommodation hosts receive monetary payment guests paid online advance airbnb receives fee transaction rowe founded abroad travel network online hospitality international hospitality networks flats network offering home stay accommodation primarily europe guests must pay advance home stay via credit_card airbnb largest network withe members home stay options toffer airbnb million_users guests must pay advance home stay via credit_card airbnb earns fee transaction network based open source community open source principles approximately members statistics countries network organised registered non_profit organisation democratic structures couchsurfing million_members countries largest hospitality_service whereby without monetary_exchange friendship force international network members concentrates building understanding across cultures hospitality club one first internet based hospitality exchanges mennonite way hospitality_service hosts mostly mennonite countries guests arexpected contribute financially host pasporta_servo hospitality_service esperanto speakers whereby lodging provided without monetary_exchange servas international history dating_back focused human_rights global peace online review pulls listings several hospitality_services hospitality_service focused renting homes vacation purposes workaway hospitality_service aimed language whereby travelers provide help hosts exchange food board approximately hosts wwoof worldwide opportunities organic farms network whereby help host property exchanged food accommodation education cultural interaction see platforms collaborative_consumption collaborative_consumption hospitality_industry lodging homestay sharing economy gift economy barter economy category_tourist accommodations category social_networking services_category_hospitality services_category_backpacking category_hotel terminology"},{"title":"Hostel","description":"image hostel dormitoryjpg righthumb px hostel dormitory room in taiwan image altena burg asiojpg righthumb px the world s first hostel was established in at altena castle in germany hostels provide budget oriented sociable lodging accommodation where guests can rent a bed furniture bed usually a bunk bed in a dormitory and share a bathroom lounge and sometimes a kitchen rooms can be mixed or single sex and private rooms may also be available hostels are often cheaper for bothe operator and occupants many hostels have long term residents whom they employ as desk agents or housekeeping staff in exchange for experience or discounted accommodation in a few countriesuch as the united kingdom uk republic of ireland indiand australia the word hostel sometimes also refers to establishments providing longer term accommodation india pakistand south africa hostel also refers to boarding school s or student dormitory dormitories in resident colleges and universities in other parts of the world the word hostel mainly refers to properties offering shared accommodation to travelers or backpacking travel backpackers within the traveller category another distinction can be drawn between hostels that are members of hostelling international hi a uk based non profit organisation encouraging outdoor activities and cultural exchange for the young formerly the iyhand independently operated hostels backpackers hostels began in australiand new zealand differ from hostels by being open during the day time often abbreviated to just backpackers file affiche guerre femmes au travailjpg thumbnail this poster dating from promotesupporting the women s war time fund which provided hostel housing to women workers during the first world war in altena castle in germany richard schirrmann created the first permanent jugendherberge or youthostel these first youthostels were an exponent of the vision of the german youth movemento let poor cityoungsters breathe fresh air outdoors the youths were supposed to manage the hostel themselves as much as possible doing chores to keep the costs down and build character and be physically active outdoors because of this manyouthostels closeduring the middle part of the day while most hostelstill close during the day they no longerequire chores beyond washing up after self catered meals the words hotel hostel and hostal aretymologically related coming into thenglish language from old frenchostel itselfrom late latin hospitale denoting a hospice or place of rest nowadays however they each refer to distinctypes of accommodation in particular hostal is used in spanish either withe same sense as hostel or it can also refer to a certain type of pension lodging pension which is found mostly in spain differences from hotels image hostel in japanjpg righthumb youthostel in japan there are several differences between hostels and hotels including hostels tend to be budget oriented rates are considerably lower and many hostels have programs to share books dvds and other items for those who prefer an informal environment hostels do not usually have the same level oformality as hotels for those who prefer to socialize witheir fellow guests hostels usually have more common areas and opportunities to socialize the dormitory aspect of hostels also increases the social factor hostels are generally self catering hostels normally close during the day to keep down cost for the customer and the hostel communal accommodation image hostelockersjpg thumb high techostelockers with electronic key locks there is less privacy in a hostel than in a hotel sharing sleeping accommodation in a dormitory is very different from staying in a private room in a hotel or bed and breakfast and might not be comfortable for those requiring more privacy hostels encourage more social interaction between guests due to the shared sleeping areas and communal areasuch as lounges kitchens and internet cafes care should be taken with personal belongings as guests may share a common living space so it is advisable to secure guests belongings most hostels offer some sort of system for safely storing valuables and an increasing number of hostels offer private lockers there are other things to consider as well when choosing a safe hostel such as whether they have a guest curfew uphold fire codes hour security and cctv noise can make sleeping difficult on occasions whether from snoring talking human sexual activity sexual activity someoneithereturning late or leaving early or the proximity of so many people to mitigate thisome wearplugs and or sleeping maskself contained facilities and services in attempts to attract more visitors many hostels nowadays provide additional services not previously available such as airport shuttle transfers internet caf swimming pools and spas tour booking and carfree hire some hostels may include a hot meal in the price image aboriginal hostel budapestjpg thumb px dormitory from a hostel in budapest hungary file passatjpg thumb right px the shipassat shipassat is a floating hostel and museum the traditional hostel format involvedormitory style accommodation some newer hostels also includen suite accommodation with single double or quad occupancy rooms though to be considered a hostel they must also provide dormitory accommodation define hostel what is a hostel management in recent years the numbers of independent and backpackers hostels have increased greatly to cater for the greater numbers of overland multi destination travellersuch as gap year gap year travellers and rail trippers the quality of such places has also improvedramatically while most hostelstill insist on a curfew daytime lockouts very few require occupants to do chores apart from washing andrying up after food preparation hostelling international hi richard schirrmann s idea of hostels rapidly spread overseas and eventually resulted in hostelling international an organisation composed of more than different youthostel associations representing over youthostels in over countriesome hi youthostels cater more to school aged children sometimes through school trips and parents witheir children whereas others are more for travellers intent on learning new cultures however while thexploration of different cultures and places is emphasised in many hostels particularly in cities or popular tourist destinations there are still many hostels providing accommodation for outdoor pursuitsuch as hillwalking climbing and bicycle touring these are often small friendly hostels retaining much of the original vision and often provide valuable access to moremote regions in the past several years hostelling international have increasingly added hotels and package resorts to their networks in addition to hostels hostelling international selling hotel rooms despite their name in most countries membership is not limited to youth independent hostels independent hostels are not necessarily affiliated with one of the national bodies of hostelling international youthostel association or any other hostel network often the word independent is used to refer to non hi hostels even when the hostels do belong to another hostelling organization such as and backpackers canada the term youth is less often used withese properties unlike a hotel chain whereverything istandardised these hostels can be very diverse typically not requiring a membership card there are chains of independent hostels throughouthe world such as the jazz hostels on theast coast and banana bungalow hostels on the west coast of the united states or the generator hostels and equity point hostels of europe or zostel of india each offers their owniche of services to travellers and backpackers for example one independent hostel might feature a lot of in house gatherings another might feature daily and nightly tours or events in the surrounding city and another might have a quieter place to relax in serenity or be located on the beach this an independent hostel s personality and travellers will frequenthe hostels that offer the personality thathey findesirable there is frequently a distinction being a party hostel or not as the hostel industry evolves independent hostels and hi hostels are becoming more similar withe word backpackers also now applying to many hostelling international hostels googlecom boutique hostels the general backpacking community is no longer exclusively typified by studentravellers and extreme shoe string budgets the global nomad greg richards in response to demand as well as increasing competition between the rapidly growing number of hostels the overall quality of hostels has improved across the industry in addition to the increase in quality among all styles of hostel new styles of hostels have developed that have a focus on a more trendy design interior there are also now rated star hostels awarded by hostelgeeks the phrase boutique hostel an often arbitrary marketing term typically used to describe intimate luxurious or quirky hostel environments the term hastarted to lose meaning because the facilities of many boutique hostels are ofteno different from hostels that are not referred to withat label also marketers and online booking websitesometimes include boutique hotels in lists of boutique hostels further diluting any specific meaning of the phrase a related term flashpackers often refers to hostels thatargethemselves as catering to a slightly older tech savvy clientele but in practice many of the new class of higher quality hostels across the industry offer these tech oriented facilities and even the flashpacker websites that appeared in during the peak of the flashpacker hype are neglected or offline as of as the term has rapidly lost popularity flashpackers do it in style mobile hostels though very uncommon a mobile hostel is a hostel with no fixed location it can exist in the form of a campsite a temporary building bus van or a shorterm agreement in a permanent building mobile hostels have sprouted up at large festival s where therexists a shortage of budget accommodation as with regular hostels mobile hostels generally provide dormitory accommodation for backpacking travel backpackers or travelers on a shoe string budgethe first ever and only commercial example of a mobile hostel is hostival it hasprouted up at oktoberfest carnival san fermin las fallas and the fifa world cup world cup industry growth file wombats munichosteljpg thumb right px wintergarten at a munichostel image kitchen the secret garden krak w hostel jpg thumb px kitchen in a hostel in krak w the independent hostel industry is growing rapidly in many cities around the world such as new york rome buenos aires and miami this reflected in the development and expansion of dozens of hostel chains worldwide list of hostel chains hostel wiki the recent eruption independent hostels has been called probably the single biggest news in the world of low costravel and very safe arthur frommer online theruption of low cost private hostels all over the world is among the biggest developments in budgetravel the development of independent backpackers hostels is a strong business model with some cities reporting a higher average income peroom for hostels than hotels for example in the city of honolulu hawaii upscale hotels areportedly making to peroom while hostel rooms in the same city can bring in as much as per night due to several payinguests residing in one room starbulletincom business even during theconomicrisis many hostels areporting increased occupancy numbers in a time when hotel bookings are down cnn story though in the past hostels have been seen as low quality accommodation for less wealthy travellers at least one australian study hashown that backpackers who typically stay at hostelspend more thanon backpackers due to their longer stays australiacom backpacking travel backpackers in australia contribute nearly billion and stay on average nights compared to the nightspent by other travellers international backpacker snapshot destinationsw inew zealand backpackers hostels had a share of accommodation guest nights in tourismresearchgovtnz youth travel accommodation industry survey annually the association of youth travel accommodation undertakes a review of the business operations of the hostel sector to establish crucial business metrics and identify trends in this dynamic sector the study is undertaken in partnership withostelling international and web reservations international the findings of the study included average occupancy rates were around occupancy levels were highest in oceaniand asia the sale of beds accounted for of reported revenue f b sales accounted for of total revenue the average dorm bed rate varied between eur in the high season and eur in the low season the main cost items for hostel establishments are staff and premises which together accounted for of total expenses marketing costs accounted for almost of the total budget only of hostel operators currently participate in green certification schemes according to the youth travel accommodation s annual survey one of the main reasons for a relatively strong performance of the hostel sector is the tendency for operators to innovate and adaptheir products to suit market conditions the facthat hostel operators could generally sustain business levels through the downturn was one of the main reasons why overall average bed rates forose by more than compared with stay wyse in popular culture motion picture s have generally portrayed hostels in two ways as fun places for young people to stay for example the journey of jared price and a map for saturday or alternatively as dangerous places where unsuspecting united states americans face potential horrors in eastern europe seeg hostel film hostel part ii and eurotrip there are some urban legend popular misconceptions that a hostel is a kind of a flophouse homelesshelter or halfway house this does not reflecthe high quality and level of professionalism in many modern hostelsee also lodging backpacking travel boarding house hostal a differentype of lodging found in spain and hispanic america pension lodging pension bed and breakfast guest house notes and references history of hostels in german category hostels category adventure travel category backpacking category hotel types","main_words":["image","hostel","righthumb_px","hostel","dormitory","room","taiwan","image","altena","righthumb_px","world","first","hostel","established","altena","castle","germany","hostels","provide","budget","oriented","lodging","accommodation","guests","rent","bed","furniture","bed","usually","bed","dormitory","share","bathroom","lounge","sometimes","kitchen","rooms","mixed","single","sex","private","rooms","may_also","available","hostels","often","cheaper","bothe","operator","occupants","many_hostels","long_term","residents","employ","desk","agents","housekeeping","staff","exchange","experience","discounted","accommodation","countriesuch","united_kingdom","uk","republic","ireland","indiand","australia","word","hostel","sometimes","also","refers","establishments","providing","longer","term","accommodation","india","pakistand","south_africa","hostel","also","refers","boarding","school","student","dormitory","dormitories","resident","colleges","universities","parts","world","word","hostel","mainly","refers","properties","offering","shared","accommodation","travelers","backpacking_travel","backpackers","within","traveller","category","another","distinction","drawn","hostels","members","hostelling_international","uk","based","non_profit","organisation","encouraging","outdoor","activities","cultural_exchange","young","formerly","independently","operated","hostels","backpackers","hostels","began","australiand_new_zealand","differ","hostels","open","day","time","often","abbreviated","backpackers","file","thumbnail","poster","dating","women","war","time","fund","provided","hostel","housing","women","workers","first_world_war","altena","castle","germany","richard_schirrmann","created","first","permanent","youthostel","first","youthostels","vision","german","youth","movemento","let","poor","fresh","air","outdoors","supposed","manage","hostel","much","possible","chores","keep","costs","build","character","physically","active","outdoors","middle","part","day","close","day","chores","beyond","washing","self","catered","meals","words","hotel","hostel","hostal","related","coming","thenglish_language","old","itselfrom","late","latin","place","rest","nowadays","however","refer","accommodation","particular","hostal","used","spanish","either","withe","sense","hostel","also","refer","certain","type","pension","lodging","pension","found","mostly","spain","differences","hotels","image","hostel","righthumb","youthostel","japan","several","differences","hostels","hotels","including","hostels","tend","budget","oriented","rates","considerably","lower","many_hostels","programs","share","books","items","prefer","informal","environment","hostels","usually","level","hotels","prefer","socialize","witheir","fellow","guests","hostels","usually","common","areas","opportunities","socialize","dormitory","aspect","hostels","also","increases","social","factor","hostels","generally","self_catering","hostels","normally","close","day","keep","cost","customer","hostel","communal","accommodation","image","thumb","high","electronic","key","locks","less","privacy","hostel","hotel","sharing","sleeping","accommodation","dormitory","different","staying","private","room","hotel","bed","breakfast","might","comfortable","requiring","privacy","hostels","encourage","social","interaction","guests","due","shared","sleeping","areas","communal","areasuch","lounges","kitchens","internet","cafes","care","taken","personal","guests","may","share","common","living","space","secure","guests","hostels","offer","sort","system","safely","storing","increasing_number","hostels","offer","private","things","consider","well","choosing","safe","hostel","whether","guest","curfew","fire","codes","hour","security","noise","make","sleeping","difficult","occasions","whether","talking","human","sexual_activity","sexual_activity","late","leaving","early","proximity","many_people","mitigate","sleeping","contained","facilities","services","attempts","attract","visitors","many_hostels","nowadays","provide","additional","services","previously","available","airport","shuttle","internet","caf","swimming_pools","spas","tour","booking","hire","hostels","may_include","hot","meal","price","image","aboriginal","hostel","thumb","px","dormitory","hostel","budapest","hungary","file","thumb","right","px","floating","hostel","museum","traditional","hostel","format","style","accommodation","newer","hostels","also","suite","accommodation","single","double","quad","occupancy","rooms","though","considered","hostel","dormitory","accommodation","define","hostel","hostel","management","recent_years","numbers","independent","backpackers","hostels","increased","greatly","cater","greater","numbers","overland","multi","destination","gap","year","gap","year","travellers","rail","quality","places","also","curfew","daytime","require","occupants","chores","apart","washing","food_preparation","hostelling_international","richard_schirrmann","idea","hostels","rapidly","spread","overseas","eventually","resulted","hostelling_international","organisation","composed","different","youthostel_associations","representing","youthostels","youthostels","cater","school","aged","children","sometimes","school","trips","parents","witheir","children","whereas","others","travellers","intent","learning","new","cultures","however","thexploration","different","cultures","places","many_hostels","particularly","cities","still","many_hostels","providing","accommodation","outdoor","climbing","bicycle_touring","often","small","friendly","hostels","retaining","much","original","vision","often","provide","valuable","access","moremote","regions","past","several_years","hostelling_international","increasingly","added","hotels","package","resorts","networks","addition","hostels","hostelling_international","selling","hotel_rooms","despite","name","countries","membership","limited","youth","independent","hostels","independent","hostels","necessarily","affiliated","one","national","bodies","hostel","network","often","word","independent","used","refer","non","hostels","even","hostels","belong","another","hostelling","organization","backpackers","canada","term","youth","less","often_used","withese","properties","unlike","hotel_chain","hostels","diverse","typically","requiring","membership","card","chains","independent","hostels","throughouthe_world","jazz","hostels","theast_coast","banana","bungalow","hostels","west_coast","united_states","generator","hostels","equity","point","hostels","europe","india","offers","services","travellers","backpackers","example","one","independent","hostel","might","feature","lot","house","gatherings","another","might","feature","daily","nightly","tours","events","surrounding","city","another","might","place","relax","located","beach","independent","hostel","personality","travellers","frequenthe","hostels","offer","personality","thathey","frequently","distinction","party","hostel","hostel","industry","independent","hostels","hostels","becoming","similar","withe","word","backpackers","also","applying","many","hostelling_international","hostels","boutique","hostels","general","backpacking","community","longer","exclusively","extreme","shoe","string","budgets","global","nomad","greg","richards","response","demand","well","increasing","competition","rapidly","growing","number","hostels","overall","quality","hostels","improved","across","industry","addition","increase","quality","among","styles","hostel","new","styles","hostels","developed","focus","design","interior","also","rated","star","hostels","awarded","phrase","boutique","hostel","often","arbitrary","marketing","term","typically","used","describe","intimate","luxurious","hostel","environments","term","lose","meaning","facilities","many","boutique","hostels","different","hostels","referred","withat","label","also","online","booking","include","boutique_hotels","lists","boutique","hostels","specific","meaning","phrase","related","term","often","refers","hostels","catering","slightly","older","tech","savvy","clientele","practice","many","new","class","higher","quality","hostels","across","industry","offer","tech","oriented","facilities","even","websites","appeared","peak","neglected","offline","term","rapidly","lost","popularity","style","mobile","hostels","though","uncommon","mobile","hostel","hostel","fixed","location","exist","form","campsite","temporary","building","bus","van","shorterm","agreement","permanent","building","mobile","hostels","large","festival","shortage","budget","accommodation","regular","hostels","mobile","hostels","generally","provide","dormitory","accommodation","backpacking_travel","backpackers","travelers","shoe","string","budgethe","first_ever","commercial","example","mobile","hostel","carnival","san","las","world_cup","world_cup","industry","growth","file","thumb","right","px","image","kitchen","secret","garden","krak","w","hostel","jpg","thumb","px","kitchen","hostel","krak","w","independent","hostel","industry","growing","rapidly","many","cities","around","world","new_york","rome","buenos_aires","miami","reflected","development","expansion","dozens","hostel","chains","worldwide","list","hostel","chains","hostel","recent","eruption","independent","hostels","called","probably","single","biggest","news","world","low","safe","arthur_frommer","online","low_cost","private","hostels","world","among","biggest","developments","budgetravel","development","independent","backpackers","hostels","strong","business_model","cities","reporting","higher","average","income","peroom","hostels","hotels","example","city","honolulu","hawaii","upscale","hotels","making","peroom","hostel","rooms","city","bring","much","per","night","due","several","residing","one","room","business","even","many_hostels","increased","occupancy","numbers","time","hotel","bookings","cnn","story","though","past","hostels","seen","low","quality","accommodation","less","wealthy","travellers","least_one","australian","study","hashown","backpackers","typically","stay","backpackers","due","longer","stays","backpacking_travel","backpackers","australia","contribute","nearly","billion","stay","average","nights","compared","travellers","international","backpacker","inew_zealand","backpackers","hostels","share","accommodation","guest","nights","youth","travel","accommodation","industry","survey","annually","association","youth","travel","accommodation","review","business","operations","hostel","sector","establish","crucial","business","identify","trends","dynamic","sector","study","undertaken","partnership","international","web","reservations","international","findings","study","included","average","occupancy","rates","around","occupancy","levels","highest","asia","sale","beds","accounted","reported","revenue","f","b","sales","accounted","total","revenue","average","bed","rate","varied","high","season","low","season","main","cost","items","hostel","establishments","staff","premises","together","accounted","total","expenses","marketing","costs","accounted","almost","total","budget","hostel","operators","currently","participate","green","certification","schemes","according","youth","travel","accommodation","annual","survey","one","main","reasons","relatively","strong","performance","hostel","sector","tendency","operators","products","suit","market","conditions","facthat","hostel","operators","could","generally","sustain","business","levels","downturn","one","main","reasons","overall","average","bed","rates","compared","stay","popular_culture","motion","picture","generally","portrayed","hostels","two","ways","fun","places","young_people","stay","example","journey","price","map","saturday","alternatively","dangerous_places","united_states","americans","face","potential","eastern_europe","seeg","hostel","film","hostel","part","ii","urban","legend","popular","hostel","kind","halfway","house","reflecthe","high_quality","level","professionalism","many","modern","also","lodging","backpacking_travel","boarding","house","hostal","lodging","found","spain","hispanic","america","pension","lodging","pension","bed","breakfast","guest","house","notes","references","history","hostels","german","category","hostels","category_adventure_travel_category","backpacking","category_hotel","types"],"clean_bigrams":[["image","hostel"],["righthumb","px"],["px","hostel"],["hostel","dormitory"],["dormitory","room"],["taiwan","image"],["image","altena"],["righthumb","px"],["first","hostel"],["altena","castle"],["germany","hostels"],["hostels","provide"],["provide","budget"],["budget","oriented"],["lodging","accommodation"],["bed","furniture"],["furniture","bed"],["bed","usually"],["bathroom","lounge"],["kitchen","rooms"],["single","sex"],["private","rooms"],["rooms","may"],["may","also"],["available","hostels"],["often","cheaper"],["bothe","operator"],["occupants","many"],["many","hostels"],["long","term"],["term","residents"],["desk","agents"],["housekeeping","staff"],["discounted","accommodation"],["united","kingdom"],["kingdom","uk"],["uk","republic"],["ireland","indiand"],["indiand","australia"],["word","hostel"],["hostel","sometimes"],["sometimes","also"],["also","refers"],["establishments","providing"],["providing","longer"],["longer","term"],["term","accommodation"],["accommodation","india"],["india","pakistand"],["pakistand","south"],["south","africa"],["africa","hostel"],["hostel","also"],["also","refers"],["boarding","school"],["student","dormitory"],["dormitory","dormitories"],["resident","colleges"],["word","hostel"],["hostel","mainly"],["mainly","refers"],["properties","offering"],["offering","shared"],["shared","accommodation"],["backpacking","travel"],["travel","backpackers"],["backpackers","within"],["traveller","category"],["category","another"],["another","distinction"],["hostelling","international"],["uk","based"],["based","non"],["non","profit"],["profit","organisation"],["organisation","encouraging"],["encouraging","outdoor"],["outdoor","activities"],["cultural","exchange"],["young","formerly"],["independently","operated"],["operated","hostels"],["hostels","backpackers"],["backpackers","hostels"],["hostels","began"],["australiand","new"],["new","zealand"],["zealand","differ"],["day","time"],["time","often"],["often","abbreviated"],["backpackers","file"],["poster","dating"],["war","time"],["time","fund"],["provided","hostel"],["hostel","housing"],["women","workers"],["first","world"],["world","war"],["altena","castle"],["germany","richard"],["richard","schirrmann"],["schirrmann","created"],["first","permanent"],["first","youthostels"],["german","youth"],["youth","movemento"],["movemento","let"],["let","poor"],["fresh","air"],["air","outdoors"],["build","character"],["physically","active"],["active","outdoors"],["middle","part"],["chores","beyond"],["beyond","washing"],["self","catered"],["catered","meals"],["words","hotel"],["hotel","hostel"],["related","coming"],["thenglish","language"],["itselfrom","late"],["late","latin"],["rest","nowadays"],["nowadays","however"],["particular","hostal"],["spanish","either"],["either","withe"],["hostel","also"],["also","refer"],["certain","type"],["pension","lodging"],["lodging","pension"],["found","mostly"],["spain","differences"],["hotels","image"],["image","hostel"],["righthumb","youthostel"],["several","differences"],["hotels","including"],["including","hostels"],["hostels","tend"],["budget","oriented"],["oriented","rates"],["considerably","lower"],["many","hostels"],["share","books"],["informal","environment"],["environment","hostels"],["hostels","usually"],["socialize","witheir"],["witheir","fellow"],["fellow","guests"],["guests","hostels"],["hostels","usually"],["common","areas"],["dormitory","aspect"],["hostels","also"],["also","increases"],["social","factor"],["factor","hostels"],["hostels","generally"],["generally","self"],["self","catering"],["catering","hostels"],["hostels","normally"],["normally","close"],["hostel","communal"],["communal","accommodation"],["accommodation","image"],["thumb","high"],["electronic","key"],["key","locks"],["less","privacy"],["hotel","sharing"],["sharing","sleeping"],["sleeping","accommodation"],["private","room"],["privacy","hostels"],["hostels","encourage"],["social","interaction"],["guests","due"],["shared","sleeping"],["sleeping","areas"],["communal","areasuch"],["lounges","kitchens"],["internet","cafes"],["cafes","care"],["guests","may"],["may","share"],["common","living"],["living","space"],["secure","guests"],["guests","hostels"],["hostels","offer"],["safely","storing"],["increasing","number"],["hostels","offer"],["offer","private"],["safe","hostel"],["guest","curfew"],["fire","codes"],["codes","hour"],["hour","security"],["make","sleeping"],["sleeping","difficult"],["occasions","whether"],["talking","human"],["human","sexual"],["sexual","activity"],["activity","sexual"],["sexual","activity"],["leaving","early"],["many","people"],["contained","facilities"],["visitors","many"],["many","hostels"],["hostels","nowadays"],["nowadays","provide"],["provide","additional"],["additional","services"],["previously","available"],["airport","shuttle"],["internet","caf"],["caf","swimming"],["swimming","pools"],["spas","tour"],["tour","booking"],["hostels","may"],["may","include"],["hot","meal"],["price","image"],["image","aboriginal"],["aboriginal","hostel"],["thumb","px"],["px","dormitory"],["budapest","hungary"],["hungary","file"],["thumb","right"],["right","px"],["floating","hostel"],["traditional","hostel"],["hostel","format"],["style","accommodation"],["newer","hostels"],["hostels","also"],["suite","accommodation"],["single","double"],["quad","occupancy"],["occupancy","rooms"],["rooms","though"],["must","also"],["also","provide"],["provide","dormitory"],["dormitory","accommodation"],["accommodation","define"],["define","hostel"],["hostel","management"],["recent","years"],["independent","backpackers"],["backpackers","hostels"],["increased","greatly"],["greater","numbers"],["overland","multi"],["multi","destination"],["gap","year"],["year","gap"],["gap","year"],["year","travellers"],["curfew","daytime"],["require","occupants"],["chores","apart"],["food","preparation"],["preparation","hostelling"],["hostelling","international"],["richard","schirrmann"],["hostels","rapidly"],["rapidly","spread"],["spread","overseas"],["eventually","resulted"],["hostelling","international"],["organisation","composed"],["different","youthostel"],["youthostel","associations"],["associations","representing"],["youthostels","cater"],["school","aged"],["aged","children"],["children","sometimes"],["school","trips"],["parents","witheir"],["witheir","children"],["children","whereas"],["whereas","others"],["travellers","intent"],["learning","new"],["new","cultures"],["cultures","however"],["different","cultures"],["many","hostels"],["hostels","particularly"],["popular","tourist"],["tourist","destinations"],["still","many"],["many","hostels"],["hostels","providing"],["providing","accommodation"],["bicycle","touring"],["often","small"],["small","friendly"],["friendly","hostels"],["hostels","retaining"],["retaining","much"],["original","vision"],["often","provide"],["provide","valuable"],["valuable","access"],["moremote","regions"],["past","several"],["several","years"],["years","hostelling"],["hostelling","international"],["increasingly","added"],["added","hotels"],["package","resorts"],["hostels","hostelling"],["hostelling","international"],["international","selling"],["selling","hotel"],["hotel","rooms"],["rooms","despite"],["countries","membership"],["youth","independent"],["independent","hostels"],["hostels","independent"],["independent","hostels"],["necessarily","affiliated"],["national","bodies"],["hostelling","international"],["international","youthostel"],["youthostel","association"],["hostel","network"],["network","often"],["word","independent"],["hostels","even"],["another","hostelling"],["hostelling","organization"],["backpackers","canada"],["term","youth"],["less","often"],["often","used"],["used","withese"],["withese","properties"],["properties","unlike"],["hotel","chain"],["diverse","typically"],["membership","card"],["independent","hostels"],["hostels","throughouthe"],["throughouthe","world"],["jazz","hostels"],["theast","coast"],["banana","bungalow"],["bungalow","hostels"],["west","coast"],["united","states"],["generator","hostels"],["equity","point"],["point","hostels"],["example","one"],["one","independent"],["independent","hostel"],["hostel","might"],["might","feature"],["house","gatherings"],["gatherings","another"],["another","might"],["might","feature"],["feature","daily"],["nightly","tours"],["surrounding","city"],["another","might"],["independent","hostel"],["frequenthe","hostels"],["hostels","offer"],["personality","thathey"],["party","hostel"],["hostel","industry"],["independent","hostels"],["similar","withe"],["withe","word"],["word","backpackers"],["backpackers","also"],["many","hostelling"],["hostelling","international"],["international","hostels"],["boutique","hostels"],["general","backpacking"],["backpacking","community"],["longer","exclusively"],["extreme","shoe"],["shoe","string"],["string","budgets"],["global","nomad"],["nomad","greg"],["greg","richards"],["increasing","competition"],["rapidly","growing"],["growing","number"],["overall","quality"],["quality","hostels"],["improved","across"],["quality","among"],["hostel","new"],["new","styles"],["design","interior"],["rated","star"],["star","hostels"],["hostels","awarded"],["phrase","boutique"],["boutique","hostel"],["often","arbitrary"],["arbitrary","marketing"],["marketing","term"],["term","typically"],["typically","used"],["describe","intimate"],["intimate","luxurious"],["hostel","environments"],["lose","meaning"],["many","boutique"],["boutique","hostels"],["withat","label"],["label","also"],["online","booking"],["include","boutique"],["boutique","hotels"],["boutique","hostels"],["specific","meaning"],["related","term"],["often","refers"],["slightly","older"],["older","tech"],["tech","savvy"],["savvy","clientele"],["practice","many"],["new","class"],["higher","quality"],["quality","hostels"],["hostels","across"],["industry","offer"],["tech","oriented"],["oriented","facilities"],["rapidly","lost"],["lost","popularity"],["style","mobile"],["mobile","hostels"],["hostels","though"],["mobile","hostel"],["fixed","location"],["temporary","building"],["building","bus"],["bus","van"],["shorterm","agreement"],["permanent","building"],["building","mobile"],["mobile","hostels"],["large","festival"],["budget","accommodation"],["regular","hostels"],["hostels","mobile"],["mobile","hostels"],["hostels","generally"],["generally","provide"],["provide","dormitory"],["dormitory","accommodation"],["backpacking","travel"],["travel","backpackers"],["shoe","string"],["string","budgethe"],["budgethe","first"],["first","ever"],["commercial","example"],["mobile","hostel"],["carnival","san"],["world","cup"],["cup","world"],["world","cup"],["cup","industry"],["industry","growth"],["growth","file"],["thumb","right"],["right","px"],["image","kitchen"],["secret","garden"],["garden","krak"],["krak","w"],["w","hostel"],["hostel","jpg"],["jpg","thumb"],["thumb","px"],["px","kitchen"],["krak","w"],["independent","hostel"],["hostel","industry"],["growing","rapidly"],["many","cities"],["cities","around"],["new","york"],["york","rome"],["rome","buenos"],["buenos","aires"],["hostel","chains"],["chains","worldwide"],["worldwide","list"],["hostel","chains"],["chains","hostel"],["recent","eruption"],["eruption","independent"],["independent","hostels"],["called","probably"],["single","biggest"],["biggest","news"],["safe","arthur"],["arthur","frommer"],["frommer","online"],["low","cost"],["cost","private"],["private","hostels"],["biggest","developments"],["independent","backpackers"],["backpackers","hostels"],["strong","business"],["business","model"],["cities","reporting"],["higher","average"],["average","income"],["income","peroom"],["honolulu","hawaii"],["hawaii","upscale"],["upscale","hotels"],["hostel","rooms"],["per","night"],["night","due"],["one","room"],["business","even"],["many","hostels"],["increased","occupancy"],["occupancy","numbers"],["hotel","bookings"],["cnn","story"],["story","though"],["past","hostels"],["low","quality"],["quality","accommodation"],["less","wealthy"],["wealthy","travellers"],["least","one"],["one","australian"],["australian","study"],["study","hashown"],["typically","stay"],["backpackers","due"],["longer","stays"],["backpacking","travel"],["travel","backpackers"],["australia","contribute"],["contribute","nearly"],["nearly","billion"],["average","nights"],["nights","compared"],["travellers","international"],["international","backpacker"],["inew","zealand"],["zealand","backpackers"],["backpackers","hostels"],["accommodation","guest"],["guest","nights"],["youth","travel"],["travel","accommodation"],["accommodation","industry"],["industry","survey"],["survey","annually"],["youth","travel"],["travel","accommodation"],["business","operations"],["hostel","sector"],["establish","crucial"],["crucial","business"],["identify","trends"],["dynamic","sector"],["web","reservations"],["reservations","international"],["study","included"],["included","average"],["average","occupancy"],["occupancy","rates"],["around","occupancy"],["occupancy","levels"],["beds","accounted"],["reported","revenue"],["revenue","f"],["f","b"],["b","sales"],["sales","accounted"],["total","revenue"],["average","bed"],["bed","rate"],["rate","varied"],["high","season"],["low","season"],["main","cost"],["cost","items"],["hostel","establishments"],["together","accounted"],["total","expenses"],["expenses","marketing"],["marketing","costs"],["costs","accounted"],["total","budget"],["hostel","operators"],["operators","currently"],["currently","participate"],["green","certification"],["certification","schemes"],["schemes","according"],["youth","travel"],["travel","accommodation"],["annual","survey"],["survey","one"],["main","reasons"],["relatively","strong"],["strong","performance"],["hostel","sector"],["suit","market"],["market","conditions"],["facthat","hostel"],["hostel","operators"],["operators","could"],["could","generally"],["generally","sustain"],["sustain","business"],["business","levels"],["main","reasons"],["overall","average"],["average","bed"],["bed","rates"],["popular","culture"],["culture","motion"],["motion","picture"],["generally","portrayed"],["portrayed","hostels"],["two","ways"],["fun","places"],["young","people"],["dangerous","places"],["united","states"],["states","americans"],["americans","face"],["face","potential"],["eastern","europe"],["europe","seeg"],["seeg","hostel"],["hostel","film"],["film","hostel"],["hostel","part"],["part","ii"],["urban","legend"],["legend","popular"],["halfway","house"],["reflecthe","high"],["high","quality"],["many","modern"],["also","lodging"],["lodging","backpacking"],["backpacking","travel"],["travel","boarding"],["boarding","house"],["house","hostal"],["lodging","found"],["hispanic","america"],["america","pension"],["pension","lodging"],["lodging","pension"],["pension","bed"],["breakfast","guest"],["guest","house"],["house","notes"],["references","history"],["german","category"],["category","hostels"],["hostels","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","backpacking"],["backpacking","category"],["category","hotel"],["hotel","types"]],"all_collocations":["image hostel","righthumb px","px hostel","hostel dormitory","dormitory room","taiwan image","image altena","righthumb px","first hostel","altena castle","germany hostels","hostels provide","provide budget","budget oriented","lodging accommodation","bed furniture","furniture bed","bed usually","bathroom lounge","kitchen rooms","single sex","private rooms","rooms may","may also","available hostels","often cheaper","bothe operator","occupants many","many hostels","long term","term residents","desk agents","housekeeping staff","discounted accommodation","united kingdom","kingdom uk","uk republic","ireland indiand","indiand australia","word hostel","hostel sometimes","sometimes also","also refers","establishments providing","providing longer","longer term","term accommodation","accommodation india","india pakistand","pakistand south","south africa","africa hostel","hostel also","also refers","boarding school","student dormitory","dormitory dormitories","resident colleges","word hostel","hostel mainly","mainly refers","properties offering","offering shared","shared accommodation","backpacking travel","travel backpackers","backpackers within","traveller category","category another","another distinction","hostelling international","uk based","based non","non profit","profit organisation","organisation encouraging","encouraging outdoor","outdoor activities","cultural exchange","young formerly","independently operated","operated hostels","hostels backpackers","backpackers hostels","hostels began","australiand new","new zealand","zealand differ","day time","time often","often abbreviated","backpackers file","poster dating","war time","time fund","provided hostel","hostel housing","women workers","first world","world war","altena castle","germany richard","richard schirrmann","schirrmann created","first permanent","first youthostels","german youth","youth movemento","movemento let","let poor","fresh air","air outdoors","build character","physically active","active outdoors","middle part","chores beyond","beyond washing","self catered","catered meals","words hotel","hotel hostel","related coming","thenglish language","itselfrom late","late latin","rest nowadays","nowadays however","particular hostal","spanish either","either withe","hostel also","also refer","certain type","pension lodging","lodging pension","found mostly","spain differences","hotels image","image hostel","righthumb youthostel","several differences","hotels including","including hostels","hostels tend","budget oriented","oriented rates","considerably lower","many hostels","share books","informal environment","environment hostels","hostels usually","socialize witheir","witheir fellow","fellow guests","guests hostels","hostels usually","common areas","dormitory aspect","hostels also","also increases","social factor","factor hostels","hostels generally","generally self","self catering","catering hostels","hostels normally","normally close","hostel communal","communal accommodation","accommodation image","thumb high","electronic key","key locks","less privacy","hotel sharing","sharing sleeping","sleeping accommodation","private room","privacy hostels","hostels encourage","social interaction","guests due","shared sleeping","sleeping areas","communal areasuch","lounges kitchens","internet cafes","cafes care","guests may","may share","common living","living space","secure guests","guests hostels","hostels offer","safely storing","increasing number","hostels offer","offer private","safe hostel","guest curfew","fire codes","codes hour","hour security","make sleeping","sleeping difficult","occasions whether","talking human","human sexual","sexual activity","activity sexual","sexual activity","leaving early","many people","contained facilities","visitors many","many hostels","hostels nowadays","nowadays provide","provide additional","additional services","previously available","airport shuttle","internet caf","caf swimming","swimming pools","spas tour","tour booking","hostels may","may include","hot meal","price image","image aboriginal","aboriginal hostel","px dormitory","budapest hungary","hungary file","floating hostel","traditional hostel","hostel format","style accommodation","newer hostels","hostels also","suite accommodation","single double","quad occupancy","occupancy rooms","rooms though","must also","also provide","provide dormitory","dormitory accommodation","accommodation define","define hostel","hostel management","recent years","independent backpackers","backpackers hostels","increased greatly","greater numbers","overland multi","multi destination","gap year","year gap","gap year","year travellers","curfew daytime","require occupants","chores apart","food preparation","preparation hostelling","hostelling international","richard schirrmann","hostels rapidly","rapidly spread","spread overseas","eventually resulted","hostelling international","organisation composed","different youthostel","youthostel associations","associations representing","youthostels cater","school aged","aged children","children sometimes","school trips","parents witheir","witheir children","children whereas","whereas others","travellers intent","learning new","new cultures","cultures however","different cultures","many hostels","hostels particularly","popular tourist","tourist destinations","still many","many hostels","hostels providing","providing accommodation","bicycle touring","often small","small friendly","friendly hostels","hostels retaining","retaining much","original vision","often provide","provide valuable","valuable access","moremote regions","past several","several years","years hostelling","hostelling international","increasingly added","added hotels","package resorts","hostels hostelling","hostelling international","international selling","selling hotel","hotel rooms","rooms despite","countries membership","youth independent","independent hostels","hostels independent","independent hostels","necessarily affiliated","national bodies","hostelling international","international youthostel","youthostel association","hostel network","network often","word independent","hostels even","another hostelling","hostelling organization","backpackers canada","term youth","less often","often used","used withese","withese properties","properties unlike","hotel chain","diverse typically","membership card","independent hostels","hostels throughouthe","throughouthe world","jazz hostels","theast coast","banana bungalow","bungalow hostels","west coast","united states","generator hostels","equity point","point hostels","example one","one independent","independent hostel","hostel might","might feature","house gatherings","gatherings another","another might","might feature","feature daily","nightly tours","surrounding city","another might","independent hostel","frequenthe hostels","hostels offer","personality thathey","party hostel","hostel industry","independent hostels","similar withe","withe word","word backpackers","backpackers also","many hostelling","hostelling international","international hostels","boutique hostels","general backpacking","backpacking community","longer exclusively","extreme shoe","shoe string","string budgets","global nomad","nomad greg","greg richards","increasing competition","rapidly growing","growing number","overall quality","quality hostels","improved across","quality among","hostel new","new styles","design interior","rated star","star hostels","hostels awarded","phrase boutique","boutique hostel","often arbitrary","arbitrary marketing","marketing term","term typically","typically used","describe intimate","intimate luxurious","hostel environments","lose meaning","many boutique","boutique hostels","withat label","label also","online booking","include boutique","boutique hotels","boutique hostels","specific meaning","related term","often refers","slightly older","older tech","tech savvy","savvy clientele","practice many","new class","higher quality","quality hostels","hostels across","industry offer","tech oriented","oriented facilities","rapidly lost","lost popularity","style mobile","mobile hostels","hostels though","mobile hostel","fixed location","temporary building","building bus","bus van","shorterm agreement","permanent building","building mobile","mobile hostels","large festival","budget accommodation","regular hostels","hostels mobile","mobile hostels","hostels generally","generally provide","provide dormitory","dormitory accommodation","backpacking travel","travel backpackers","shoe string","string budgethe","budgethe first","first ever","commercial example","mobile hostel","carnival san","world cup","cup world","world cup","cup industry","industry growth","growth file","image kitchen","secret garden","garden krak","krak w","w hostel","hostel jpg","px kitchen","krak w","independent hostel","hostel industry","growing rapidly","many cities","cities around","new york","york rome","rome buenos","buenos aires","hostel chains","chains worldwide","worldwide list","hostel chains","chains hostel","recent eruption","eruption independent","independent hostels","called probably","single biggest","biggest news","safe arthur","arthur frommer","frommer online","low cost","cost private","private hostels","biggest developments","independent backpackers","backpackers hostels","strong business","business model","cities reporting","higher average","average income","income peroom","honolulu hawaii","hawaii upscale","upscale hotels","hostel rooms","per night","night due","one room","business even","many hostels","increased occupancy","occupancy numbers","hotel bookings","cnn story","story though","past hostels","low quality","quality accommodation","less wealthy","wealthy travellers","least one","one australian","australian study","study hashown","typically stay","backpackers due","longer stays","backpacking travel","travel backpackers","australia contribute","contribute nearly","nearly billion","average nights","nights compared","travellers international","international backpacker","inew zealand","zealand backpackers","backpackers hostels","accommodation guest","guest nights","youth travel","travel accommodation","accommodation industry","industry survey","survey annually","youth travel","travel accommodation","business operations","hostel sector","establish crucial","crucial business","identify trends","dynamic sector","web reservations","reservations international","study included","included average","average occupancy","occupancy rates","around occupancy","occupancy levels","beds accounted","reported revenue","revenue f","f b","b sales","sales accounted","total revenue","average bed","bed rate","rate varied","high season","low season","main cost","cost items","hostel establishments","together accounted","total expenses","expenses marketing","marketing costs","costs accounted","total budget","hostel operators","operators currently","currently participate","green certification","certification schemes","schemes according","youth travel","travel accommodation","annual survey","survey one","main reasons","relatively strong","strong performance","hostel sector","suit market","market conditions","facthat hostel","hostel operators","operators could","could generally","generally sustain","sustain business","business levels","main reasons","overall average","average bed","bed rates","popular culture","culture motion","motion picture","generally portrayed","portrayed hostels","two ways","fun places","young people","dangerous places","united states","states americans","americans face","face potential","eastern europe","europe seeg","seeg hostel","hostel film","film hostel","hostel part","part ii","urban legend","legend popular","halfway house","reflecthe high","high quality","many modern","also lodging","lodging backpacking","backpacking travel","travel boarding","boarding house","house hostal","lodging found","hispanic america","america pension","pension lodging","lodging pension","pension bed","breakfast guest","guest house","house notes","references history","german category","category hostels","hostels category","category adventure","adventure travel","travel category","category backpacking","backpacking category","category hotel","hotel types"],"new_description":"image hostel righthumb_px hostel dormitory room taiwan image altena righthumb_px world first hostel established altena castle germany hostels provide budget oriented lodging accommodation guests rent bed furniture bed usually bed dormitory share bathroom lounge sometimes kitchen rooms mixed single sex private rooms may_also available hostels often cheaper bothe operator occupants many_hostels long_term residents employ desk agents housekeeping staff exchange experience discounted accommodation countriesuch united_kingdom uk republic ireland indiand australia word hostel sometimes also refers establishments providing longer term accommodation india pakistand south_africa hostel also refers boarding school student dormitory dormitories resident colleges universities parts world word hostel mainly refers properties offering shared accommodation travelers backpacking_travel backpackers within traveller category another distinction drawn hostels members hostelling_international uk based non_profit organisation encouraging outdoor activities cultural_exchange young formerly independently operated hostels backpackers hostels began australiand_new_zealand differ hostels open day time often abbreviated backpackers file thumbnail poster dating women war time fund provided hostel housing women workers first_world_war altena castle germany richard_schirrmann created first permanent youthostel first youthostels vision german youth movemento let poor fresh air outdoors supposed manage hostel much possible chores keep costs build character physically active outdoors middle part day close day chores beyond washing self catered meals words hotel hostel hostal related coming thenglish_language old itselfrom late latin place rest nowadays however refer accommodation particular hostal used spanish either withe sense hostel also refer certain type pension lodging pension found mostly spain differences hotels image hostel righthumb youthostel japan several differences hostels hotels including hostels tend budget oriented rates considerably lower many_hostels programs share books items prefer informal environment hostels usually level hotels prefer socialize witheir fellow guests hostels usually common areas opportunities socialize dormitory aspect hostels also increases social factor hostels generally self_catering hostels normally close day keep cost customer hostel communal accommodation image thumb high electronic key locks less privacy hostel hotel sharing sleeping accommodation dormitory different staying private room hotel bed breakfast might comfortable requiring privacy hostels encourage social interaction guests due shared sleeping areas communal areasuch lounges kitchens internet cafes care taken personal guests may share common living space secure guests hostels offer sort system safely storing increasing_number hostels offer private things consider well choosing safe hostel whether guest curfew fire codes hour security noise make sleeping difficult occasions whether talking human sexual_activity sexual_activity late leaving early proximity many_people mitigate sleeping contained facilities services attempts attract visitors many_hostels nowadays provide additional services previously available airport shuttle internet caf swimming_pools spas tour booking hire hostels may_include hot meal price image aboriginal hostel thumb px dormitory hostel budapest hungary file thumb right px floating hostel museum traditional hostel format style accommodation newer hostels also suite accommodation single double quad occupancy rooms though considered hostel must_also_provide dormitory accommodation define hostel hostel management recent_years numbers independent backpackers hostels increased greatly cater greater numbers overland multi destination gap year gap year travellers rail quality places also curfew daytime require occupants chores apart washing food_preparation hostelling_international richard_schirrmann idea hostels rapidly spread overseas eventually resulted hostelling_international organisation composed different youthostel_associations representing youthostels countriesome youthostels cater school aged children sometimes school trips parents witheir children whereas others travellers intent learning new cultures however thexploration different cultures places many_hostels particularly cities popular_tourist_destinations still many_hostels providing accommodation outdoor climbing bicycle_touring often small friendly hostels retaining much original vision often provide valuable access moremote regions past several_years hostelling_international increasingly added hotels package resorts networks addition hostels hostelling_international selling hotel_rooms despite name countries membership limited youth independent hostels independent hostels necessarily affiliated one national bodies hostelling_international_youthostel_association hostel network often word independent used refer non hostels even hostels belong another hostelling organization backpackers canada term youth less often_used withese properties unlike hotel_chain hostels diverse typically requiring membership card chains independent hostels throughouthe_world jazz hostels theast_coast banana bungalow hostels west_coast united_states generator hostels equity point hostels europe india offers services travellers backpackers example one independent hostel might feature lot house gatherings another might feature daily nightly tours events surrounding city another might place relax located beach independent hostel personality travellers frequenthe hostels offer personality thathey frequently distinction party hostel hostel industry independent hostels hostels becoming similar withe word backpackers also applying many hostelling_international hostels boutique hostels general backpacking community longer exclusively extreme shoe string budgets global nomad greg richards response demand well increasing competition rapidly growing number hostels overall quality hostels improved across industry addition increase quality among styles hostel new styles hostels developed focus design interior also rated star hostels awarded phrase boutique hostel often arbitrary marketing term typically used describe intimate luxurious hostel environments term lose meaning facilities many boutique hostels different hostels referred withat label also online booking include boutique_hotels lists boutique hostels specific meaning phrase related term often refers hostels catering slightly older tech savvy clientele practice many new class higher quality hostels across industry offer tech oriented facilities even websites appeared peak neglected offline term rapidly lost popularity style mobile hostels though uncommon mobile hostel hostel fixed location exist form campsite temporary building bus van shorterm agreement permanent building mobile hostels large festival shortage budget accommodation regular hostels mobile hostels generally provide dormitory accommodation backpacking_travel backpackers travelers shoe string budgethe first_ever commercial example mobile hostel carnival san las world_cup world_cup industry growth file thumb right px image kitchen secret garden krak w hostel jpg thumb px kitchen hostel krak w independent hostel industry growing rapidly many cities around world new_york rome buenos_aires miami reflected development expansion dozens hostel chains worldwide list hostel chains hostel recent eruption independent hostels called probably single biggest news world low safe arthur_frommer online low_cost private hostels world among biggest developments budgetravel development independent backpackers hostels strong business_model cities reporting higher average income peroom hostels hotels example city honolulu hawaii upscale hotels making peroom hostel rooms city bring much per night due several residing one room business even many_hostels increased occupancy numbers time hotel bookings cnn story though past hostels seen low quality accommodation less wealthy travellers least_one australian study hashown backpackers typically stay backpackers due longer stays backpacking_travel backpackers australia contribute nearly billion stay average nights compared travellers international backpacker inew_zealand backpackers hostels share accommodation guest nights youth travel accommodation industry survey annually association youth travel accommodation review business operations hostel sector establish crucial business identify trends dynamic sector study undertaken partnership international web reservations international findings study included average occupancy rates around occupancy levels highest asia sale beds accounted reported revenue f b sales accounted total revenue average bed rate varied high season low season main cost items hostel establishments staff premises together accounted total expenses marketing costs accounted almost total budget hostel operators currently participate green certification schemes according youth travel accommodation annual survey one main reasons relatively strong performance hostel sector tendency operators products suit market conditions facthat hostel operators could generally sustain business levels downturn one main reasons overall average bed rates compared stay popular_culture motion picture generally portrayed hostels two ways fun places young_people stay example journey price map saturday alternatively dangerous_places united_states americans face potential eastern_europe seeg hostel film hostel part ii urban legend popular hostel kind halfway house reflecthe high_quality level professionalism many modern also lodging backpacking_travel boarding house hostal lodging found spain hispanic america pension lodging pension bed breakfast guest house notes references history hostels german category hostels category_adventure_travel_category backpacking category_hotel types"},{"title":"Hostelling International","description":"file day chostelinternationaljpg thumb right px hostelling int l washington dc hostelling international hi formerly known as international youthostel federation iyhf is the federation of more thanational youthostel associations in more than countries whichave over affiliated hostel s around the world hostelling international is a non governmental not for profit organisation working closely with united nations educational scientific and cultural organisation unesco and the world tourism organisation unwto hi has also been identified as the sixth largest provider of travel accommodations in the world origins of youthostelling and iyhf the youthostel movement began in when richard schirrmann a germany german schoolteacher and wilhelm nker a conservationist saw the need for overnight accommodation for school groups wanting to experience the countryside thistarted with schools being useduring the holidays the first youthostel opened in schirrmann s own school in altena westphalia in a permanent hostel in altena castle superseded the school building and a hostel still stands in the castle groundschirrmann founded the nationwide german youthostel association in the movement spread rapidly worldwide leading to the founding of the international youthostel federation iyhf on october coburn p in amsterdam by representatives from associations in switzerland czechoslovakia germany poland the netherlands norway denmark united kingdom britain irish free state ireland france and belgium in richard schirrmann became the president buthe nazis german government forced him to resign by in coburn p youthostels originally differed in setup from other modern hostel s although the growing popularity of the backpacking travel backpacker culture forced them to adapt so as noto lose customers most notably abandoning the idea of chores in all but a few of their locations the youthostels in the united statestarted by monroe smith where backpackers have not made as much of an impact as elsewhere are still closesto the original setup modern organisation file a villa in marina di carrara jpg thumb the main building of an hi hostel in marina di massa tuscany seventy one national youthostel associations are members of hostelling international with over hostels available worldwide based in welwyn garden city in england opposite the welwyn garden city railway station train station and the howard centre the organisation provideservices for travellers and coordinates the national organisations it also facilitates youth work and international and cross cultural understanding in conjunction with unesco hostelling international celebrated its th anniversary in withe first international conference being held in the ymca hotel in amsterdam on october national associations were present athis conference and agreement was reached on a standard international pattern for membership cards and on minimum standards for thequipment and supervision of youthostels founders had a strong desire that by working together associations could assist international youth travel and pave the way for new and peaceful migration of people since the hi network of youthostels has recorded over billion overnights though the parent hostelling international organization has charity status in the uk not all member organizations have charity nonprofit status hostelling international canada hostelling international canada lost a legal battle for charity status in and the youthostels association england wales yha in england wales considered becoming a commercial company during a consultation partially in response to increased competition from independent for profit hostels with nearly four million members it is one of the world s largest youth membership organisation and is the only global network of youthostel associations first sustainability survey in hi carried out a survey in order to monitor specifically how the network was changing and adapting to become morenvironmentally friendly the research which includedata from hostel s in different countries that receive more than million overnights annually was very insightful and will continue to help us develop the sustainable network local interaction withostel s washown to be high with of hostels providing quality budget accommodation to travellers as well as having interactive initiatives withe local community these projects oftenable touristravellers to interact and grasp a better understanding of the area they are visiting the tourism industry represents of total global emissions hostels are working to counteracthis and of our hostels provide comprehensive information and actively promote the use of public transporto guests or give discounts to those arriving to the hostel by bicycle or foot another scheme to reducemissions is growing vegetables on site which of all hostelsurveyed are now doing see also category hostelling international member associations containing pages for the individual member associations of hi references citationsources coburn oliver youthostel story londonational council of social service grassl anton and heath graham the magic triangle a short history of the world youthostel movement sl international youthostel federation heath graham richard schirrmann the first youthosteller copenhagen international youthostel federation externalinks category backpacking categoryouthostelling category organizations established in category international organisations based in the united kingdom category charities based in hertfordshire","main_words":["file","day","thumb","right","px","hostelling","int","l","washington","hostelling_international","formerly_known","international_youthostel","federation","iyhf","federation","youthostel_associations","countries","whichave","affiliated","hostel","around","world","hostelling_international","non_governmental","profit","organisation","working","closely","united_nations","educational","scientific","cultural","organisation","unwto","also","identified","sixth","largest","provider","travel","accommodations","world","origins","youthostelling","iyhf","youthostel","movement","began","richard_schirrmann","germany_german","saw","need","overnight","accommodation","school","groups","wanting","experience","countryside","schools","useduring","holidays","first","youthostel","opened","schirrmann","school","altena","westphalia","permanent","hostel","altena","castle","school","building","hostel","still","stands","castle","founded","nationwide","german","youthostel_association","movement","spread","rapidly","worldwide","leading","founding","international_youthostel","federation","iyhf","october","coburn","p","amsterdam","representatives","associations","switzerland","czechoslovakia","germany","poland","netherlands","norway","denmark","united_kingdom","britain","irish","free","state","ireland","france","belgium","richard_schirrmann","became","president","buthe","nazis","german","government","forced","resign","coburn","p","youthostels","originally","setup","modern","hostel","although","growing","popularity","backpacking_travel","backpacker","culture","forced","noto","lose","customers","notably","idea","chores","locations","youthostels","united","monroe","smith","backpackers","made","much","impact","elsewhere","still","original","setup","modern","organisation","file","villa","marina","jpg","thumb","main_building","hostel","marina","tuscany","one","national","youthostel_associations","members","hostelling_international","hostels","available","worldwide","based","welwyn","garden","city","england","opposite","welwyn","garden","city","railway_station","train","station","howard","centre","organisation","travellers","coordinates","national","organisations","also","facilitates","youth","work","international","cross","cultural","understanding","conjunction","unesco","hostelling_international","celebrated","th_anniversary","conference","held","ymca","hotel","amsterdam","october","national","associations","present","athis","conference","agreement","reached","standard","international","pattern","membership","cards","minimum","standards","thequipment","supervision","youthostels","founders","strong","desire","working","together","associations","could","assist","international","youth","travel","way","new","peaceful","migration","people","since","network","youthostels","recorded","billion","overnights","though","parent","hostelling_international","organization","charity","status","uk","member","organizations","charity","nonprofit","status","hostelling_international","canada","hostelling_international","canada","lost","legal","battle","charity","status","youthostels_association","england_wales","yha","england_wales","considered","becoming","commercial","company","consultation","partially","response","increased","competition","independent","profit","hostels","nearly","four","million_members","one","world","largest","youth","membership","organisation","global","network","youthostel_associations","first","sustainability","survey","carried","survey","order","monitor","specifically","network","changing","adapting","become","friendly","research","hostel","different_countries","receive","million","overnights","annually","continue","help","us","develop","sustainable","network","local","interaction","washown","high","hostels","providing","quality","budget","accommodation","travellers","well","interactive","initiatives","withe","local_community","projects","interact","better","understanding","area","visiting","tourism_industry","represents","total","global","emissions","hostels","working","hostels","provide","comprehensive","information","actively","promote","use","guests","give","discounts","arriving","hostel","bicycle","foot","another","scheme","growing","vegetables","site","see_also","category","hostelling_international_member_associations","containing","pages","individual","references","coburn","oliver","youthostel","story","council","social","service","anton","heath","graham","magic","triangle","short","history","world","youthostel","movement","international_youthostel","federation","heath","graham","richard_schirrmann","first","copenhagen","international_youthostel","federation","categoryouthostelling_category","organizations_established","category","international","organisations_based","united_kingdom","category","charities","based","hertfordshire"],"clean_bigrams":[["file","day"],["thumb","right"],["right","px"],["px","hostelling"],["hostelling","int"],["int","l"],["l","washington"],["hostelling","international"],["formerly","known"],["international","youthostel"],["youthostel","federation"],["federation","iyhf"],["youthostel","associations"],["countries","whichave"],["affiliated","hostel"],["world","hostelling"],["hostelling","international"],["non","governmental"],["profit","organisation"],["organisation","working"],["working","closely"],["united","nations"],["nations","educational"],["educational","scientific"],["cultural","organisation"],["organisation","unesco"],["world","tourism"],["tourism","organisation"],["organisation","unwto"],["sixth","largest"],["largest","provider"],["travel","accommodations"],["world","origins"],["youthostel","movement"],["movement","began"],["richard","schirrmann"],["germany","german"],["overnight","accommodation"],["school","groups"],["groups","wanting"],["first","youthostel"],["youthostel","opened"],["altena","westphalia"],["permanent","hostel"],["altena","castle"],["school","building"],["hostel","still"],["still","stands"],["nationwide","german"],["german","youthostel"],["youthostel","association"],["movement","spread"],["spread","rapidly"],["rapidly","worldwide"],["worldwide","leading"],["international","youthostel"],["youthostel","federation"],["federation","iyhf"],["october","coburn"],["coburn","p"],["switzerland","czechoslovakia"],["czechoslovakia","germany"],["germany","poland"],["netherlands","norway"],["norway","denmark"],["denmark","united"],["united","kingdom"],["kingdom","britain"],["britain","irish"],["irish","free"],["free","state"],["state","ireland"],["ireland","france"],["richard","schirrmann"],["schirrmann","became"],["president","buthe"],["buthe","nazis"],["nazis","german"],["german","government"],["government","forced"],["coburn","p"],["p","youthostels"],["youthostels","originally"],["setup","modern"],["modern","hostel"],["growing","popularity"],["backpacking","travel"],["travel","backpacker"],["backpacker","culture"],["culture","forced"],["noto","lose"],["lose","customers"],["monroe","smith"],["original","setup"],["setup","modern"],["modern","organisation"],["organisation","file"],["jpg","thumb"],["main","building"],["one","national"],["national","youthostel"],["youthostel","associations"],["hostelling","international"],["hostels","available"],["available","worldwide"],["worldwide","based"],["welwyn","garden"],["garden","city"],["england","opposite"],["welwyn","garden"],["garden","city"],["city","railway"],["railway","station"],["station","train"],["train","station"],["howard","centre"],["national","organisations"],["also","facilitates"],["facilitates","youth"],["youth","work"],["cross","cultural"],["cultural","understanding"],["unesco","hostelling"],["hostelling","international"],["international","celebrated"],["th","anniversary"],["withe","first"],["first","international"],["international","conference"],["ymca","hotel"],["october","national"],["national","associations"],["present","athis"],["athis","conference"],["standard","international"],["international","pattern"],["membership","cards"],["minimum","standards"],["youthostels","founders"],["strong","desire"],["working","together"],["together","associations"],["associations","could"],["could","assist"],["assist","international"],["international","youth"],["youth","travel"],["peaceful","migration"],["people","since"],["billion","overnights"],["overnights","though"],["parent","hostelling"],["hostelling","international"],["international","organization"],["charity","status"],["member","organizations"],["charity","nonprofit"],["nonprofit","status"],["status","hostelling"],["hostelling","international"],["international","canada"],["canada","hostelling"],["hostelling","international"],["international","canada"],["canada","lost"],["legal","battle"],["charity","status"],["youthostels","association"],["association","england"],["england","wales"],["wales","yha"],["england","wales"],["wales","considered"],["considered","becoming"],["commercial","company"],["consultation","partially"],["increased","competition"],["profit","hostels"],["nearly","four"],["four","million"],["million","members"],["largest","youth"],["youth","membership"],["membership","organisation"],["global","network"],["youthostel","associations"],["associations","first"],["first","sustainability"],["sustainability","survey"],["monitor","specifically"],["different","countries"],["million","overnights"],["overnights","annually"],["help","us"],["us","develop"],["sustainable","network"],["network","local"],["local","interaction"],["hostels","providing"],["providing","quality"],["quality","budget"],["budget","accommodation"],["interactive","initiatives"],["initiatives","withe"],["withe","local"],["local","community"],["better","understanding"],["tourism","industry"],["industry","represents"],["total","global"],["global","emissions"],["emissions","hostels"],["hostels","provide"],["provide","comprehensive"],["comprehensive","information"],["actively","promote"],["public","transporto"],["transporto","guests"],["give","discounts"],["foot","another"],["another","scheme"],["growing","vegetables"],["see","also"],["also","category"],["category","hostelling"],["hostelling","international"],["international","member"],["member","associations"],["associations","containing"],["containing","pages"],["individual","member"],["member","associations"],["coburn","oliver"],["oliver","youthostel"],["youthostel","story"],["social","service"],["heath","graham"],["magic","triangle"],["short","history"],["world","youthostel"],["youthostel","movement"],["international","youthostel"],["youthostel","federation"],["federation","heath"],["heath","graham"],["graham","richard"],["richard","schirrmann"],["copenhagen","international"],["international","youthostel"],["youthostel","federation"],["federation","externalinks"],["externalinks","category"],["category","backpacking"],["backpacking","categoryouthostelling"],["categoryouthostelling","category"],["category","organizations"],["organizations","established"],["category","international"],["international","organisations"],["organisations","based"],["united","kingdom"],["kingdom","category"],["category","charities"],["charities","based"]],"all_collocations":["file day","px hostelling","hostelling int","int l","l washington","hostelling international","formerly known","international youthostel","youthostel federation","federation iyhf","youthostel associations","countries whichave","affiliated hostel","world hostelling","hostelling international","non governmental","profit organisation","organisation working","working closely","united nations","nations educational","educational scientific","cultural organisation","organisation unesco","world tourism","tourism organisation","organisation unwto","sixth largest","largest provider","travel accommodations","world origins","youthostel movement","movement began","richard schirrmann","germany german","overnight accommodation","school groups","groups wanting","first youthostel","youthostel opened","altena westphalia","permanent hostel","altena castle","school building","hostel still","still stands","nationwide german","german youthostel","youthostel association","movement spread","spread rapidly","rapidly worldwide","worldwide leading","international youthostel","youthostel federation","federation iyhf","october coburn","coburn p","switzerland czechoslovakia","czechoslovakia germany","germany poland","netherlands norway","norway denmark","denmark united","united kingdom","kingdom britain","britain irish","irish free","free state","state ireland","ireland france","richard schirrmann","schirrmann became","president buthe","buthe nazis","nazis german","german government","government forced","coburn p","p youthostels","youthostels originally","setup modern","modern hostel","growing popularity","backpacking travel","travel backpacker","backpacker culture","culture forced","noto lose","lose customers","monroe smith","original setup","setup modern","modern organisation","organisation file","main building","one national","national youthostel","youthostel associations","hostelling international","hostels available","available worldwide","worldwide based","welwyn garden","garden city","england opposite","welwyn garden","garden city","city railway","railway station","station train","train station","howard centre","national organisations","also facilitates","facilitates youth","youth work","cross cultural","cultural understanding","unesco hostelling","hostelling international","international celebrated","th anniversary","withe first","first international","international conference","ymca hotel","october national","national associations","present athis","athis conference","standard international","international pattern","membership cards","minimum standards","youthostels founders","strong desire","working together","together associations","associations could","could assist","assist international","international youth","youth travel","peaceful migration","people since","billion overnights","overnights though","parent hostelling","hostelling international","international organization","charity status","member organizations","charity nonprofit","nonprofit status","status hostelling","hostelling international","international canada","canada hostelling","hostelling international","international canada","canada lost","legal battle","charity status","youthostels association","association england","england wales","wales yha","england wales","wales considered","considered becoming","commercial company","consultation partially","increased competition","profit hostels","nearly four","four million","million members","largest youth","youth membership","membership organisation","global network","youthostel associations","associations first","first sustainability","sustainability survey","monitor specifically","different countries","million overnights","overnights annually","help us","us develop","sustainable network","network local","local interaction","hostels providing","providing quality","quality budget","budget accommodation","interactive initiatives","initiatives withe","withe local","local community","better understanding","tourism industry","industry represents","total global","global emissions","emissions hostels","hostels provide","provide comprehensive","comprehensive information","actively promote","public transporto","transporto guests","give discounts","foot another","another scheme","growing vegetables","see also","also category","category hostelling","hostelling international","international member","member associations","associations containing","containing pages","individual member","member associations","coburn oliver","oliver youthostel","youthostel story","social service","heath graham","magic triangle","short history","world youthostel","youthostel movement","international youthostel","youthostel federation","federation heath","heath graham","graham richard","richard schirrmann","copenhagen international","international youthostel","youthostel federation","federation externalinks","externalinks category","category backpacking","backpacking categoryouthostelling","categoryouthostelling category","category organizations","organizations established","category international","international organisations","organisations based","united kingdom","kingdom category","category charities","charities based"],"new_description":"file day thumb right px hostelling int l washington hostelling_international formerly_known international_youthostel federation iyhf federation youthostel_associations countries whichave affiliated hostel around world hostelling_international non_governmental profit organisation working closely united_nations educational scientific cultural organisation unesco_world_tourism_organisation unwto also identified sixth largest provider travel accommodations world origins youthostelling iyhf youthostel movement began richard_schirrmann germany_german saw need overnight accommodation school groups wanting experience countryside schools useduring holidays first youthostel opened schirrmann school altena westphalia permanent hostel altena castle school building hostel still stands castle founded nationwide german youthostel_association movement spread rapidly worldwide leading founding international_youthostel federation iyhf october coburn p amsterdam representatives associations switzerland czechoslovakia germany poland netherlands norway denmark united_kingdom britain irish free state ireland france belgium richard_schirrmann became president buthe nazis german government forced resign coburn p youthostels originally setup modern hostel although growing popularity backpacking_travel backpacker culture forced noto lose customers notably idea chores locations youthostels united monroe smith backpackers made much impact elsewhere still original setup modern organisation file villa marina jpg thumb main_building hostel marina tuscany one national youthostel_associations members hostelling_international hostels available worldwide based welwyn garden city england opposite welwyn garden city railway_station train station howard centre organisation travellers coordinates national organisations also facilitates youth work international cross cultural understanding conjunction unesco hostelling_international celebrated th_anniversary withe_first_international conference held ymca hotel amsterdam october national associations present athis conference agreement reached standard international pattern membership cards minimum standards thequipment supervision youthostels founders strong desire working together associations could assist international youth travel way new peaceful migration people since network youthostels recorded billion overnights though parent hostelling_international organization charity status uk member organizations charity nonprofit status hostelling_international canada hostelling_international canada lost legal battle charity status youthostels_association england_wales yha england_wales considered becoming commercial company consultation partially response increased competition independent profit hostels nearly four million_members one world largest youth membership organisation global network youthostel_associations first sustainability survey carried survey order monitor specifically network changing adapting become friendly research hostel different_countries receive million overnights annually continue help us develop sustainable network local interaction washown high hostels providing quality budget accommodation travellers well interactive initiatives withe local_community projects interact better understanding area visiting tourism_industry represents total global emissions hostels working hostels provide comprehensive information actively promote use public_transporto guests give discounts arriving hostel bicycle foot another scheme growing vegetables site see_also category hostelling_international_member_associations containing pages individual member_associations references coburn oliver youthostel story council social service anton heath graham magic triangle short history world youthostel movement international_youthostel federation heath graham richard_schirrmann first copenhagen international_youthostel federation externalinks_category_backpacking categoryouthostelling_category organizations_established category international organisations_based united_kingdom category charities based hertfordshire"},{"title":"Hostelling International \u2013 Canada","description":"hostelling international canada hi canada is an organization providing youthostel accommodation in canada it is a member of the hostelling international federation the youthostelling movement wastarted in by richard schirrmann a german schoolteacher the movement was disrupted by world war i andid not reach other countries until the s following the launch of youthostel associations in several european countries between and the idea spread across the atlantic ocean canada waslightly ahead of the united states and the canadian youthostels association was founded in the american youthostels inc was not formed until file ottawa jail hostel ontario canada jpg thumbnail the ottawa hostel is located in a former jail canada s and north america s first hostel was opened in at bragg creek near calgary alberta by mary belle barclay the national office was located in calgary from in canada to in canada it was then moved toronto in then ottawa vancouver and in canada back tottawa where it remains today in canada the name was changed to the canadian hostelling association modern hostelling today hi canada s national office is in ottawand as of the association has hostels withostels located in each of the provinces of canada provinces but nothe territories in overnight stays werecorded in canadian hostels the glenbow museum holds the canadian hostelling association fonds including a substantial number of sorted and catalogued records up to the mid s photographic records from the s through the s and unprocessed records from the s through the see also hostelling international externalinks hostelling international canada official site auberge internationale de qu becanadian hostelling association fonds glenbow museum category hostels in canada categoryouthostelling category hostelling international member associations","main_words":["hostelling","international","canada","canada","organization","providing","youthostel","accommodation","canada","member","hostelling_international","federation","youthostelling","movement","wastarted","richard_schirrmann","german","movement","world_war","andid","reach","countries","following","launch","youthostel_associations","several","european_countries","idea","spread","across","atlantic_ocean","canada","ahead","united_states","canadian","youthostels_association","founded","american_youthostels","inc","formed","file","ottawa","jail","hostel","ontario_canada","jpg","thumbnail","ottawa","hostel","located","former","jail","canada","north_america","first","hostel","opened","creek","near","calgary","alberta","mary","belle","national_office","located","calgary","canada","canada","moved","toronto","ottawa","vancouver","canada","back","remains","today","canada","name","changed","canadian","hostelling","association","modern","hostelling","today","canada","national_office","association","hostels","located","provinces","canada","provinces","nothe","territories","overnight_stays","canadian","hostels","museum","holds","canadian","hostelling","association","including","substantial","number","records","mid","photographic","records","records","see_also","hostelling_international","externalinks","hostelling_international","canada","official_site","auberge","internationale","de","hostelling","association","museum","category","hostels","hostelling_international_member_associations"],"clean_bigrams":[["hostelling","international"],["international","canada"],["organization","providing"],["providing","youthostel"],["youthostel","accommodation"],["hostelling","international"],["international","federation"],["youthostelling","movement"],["movement","wastarted"],["richard","schirrmann"],["world","war"],["youthostel","associations"],["several","european"],["european","countries"],["idea","spread"],["spread","across"],["atlantic","ocean"],["ocean","canada"],["united","states"],["canadian","youthostels"],["youthostels","association"],["american","youthostels"],["youthostels","inc"],["file","ottawa"],["ottawa","jail"],["jail","hostel"],["hostel","ontario"],["ontario","canada"],["canada","jpg"],["jpg","thumbnail"],["ottawa","hostel"],["former","jail"],["jail","canada"],["north","america"],["first","hostel"],["creek","near"],["near","calgary"],["calgary","alberta"],["mary","belle"],["national","office"],["moved","toronto"],["ottawa","vancouver"],["canada","back"],["remains","today"],["canadian","hostelling"],["hostelling","association"],["association","modern"],["modern","hostelling"],["hostelling","today"],["national","office"],["canada","provinces"],["nothe","territories"],["overnight","stays"],["canadian","hostels"],["museum","holds"],["canadian","hostelling"],["hostelling","association"],["substantial","number"],["photographic","records"],["see","also"],["also","hostelling"],["hostelling","international"],["international","externalinks"],["externalinks","hostelling"],["hostelling","international"],["international","canada"],["canada","official"],["official","site"],["site","auberge"],["auberge","internationale"],["internationale","de"],["hostelling","association"],["museum","category"],["category","hostels"],["canada","categoryouthostelling"],["categoryouthostelling","category"],["category","hostelling"],["hostelling","international"],["international","member"],["member","associations"]],"all_collocations":["hostelling international","international canada","organization providing","providing youthostel","youthostel accommodation","hostelling international","international federation","youthostelling movement","movement wastarted","richard schirrmann","world war","youthostel associations","several european","european countries","idea spread","spread across","atlantic ocean","ocean canada","united states","canadian youthostels","youthostels association","american youthostels","youthostels inc","file ottawa","ottawa jail","jail hostel","hostel ontario","ontario canada","canada jpg","ottawa hostel","former jail","jail canada","north america","first hostel","creek near","near calgary","calgary alberta","mary belle","national office","moved toronto","ottawa vancouver","canada back","remains today","canadian hostelling","hostelling association","association modern","modern hostelling","hostelling today","national office","canada provinces","nothe territories","overnight stays","canadian hostels","museum holds","canadian hostelling","hostelling association","substantial number","photographic records","see also","also hostelling","hostelling international","international externalinks","externalinks hostelling","hostelling international","international canada","canada official","official site","site auberge","auberge internationale","internationale de","hostelling association","museum category","category hostels","canada categoryouthostelling","categoryouthostelling category","category hostelling","hostelling international","international member","member associations"],"new_description":"hostelling international canada canada organization providing youthostel accommodation canada member hostelling_international federation youthostelling movement wastarted richard_schirrmann german movement world_war andid reach countries following launch youthostel_associations several european_countries idea spread across atlantic_ocean canada ahead united_states canadian youthostels_association founded american_youthostels inc formed file ottawa jail hostel ontario_canada jpg thumbnail ottawa hostel located former jail canada north_america first hostel opened creek near calgary alberta mary belle national_office located calgary canada canada moved toronto ottawa vancouver canada back remains today canada name changed canadian hostelling association modern hostelling today canada national_office association hostels located provinces canada provinces nothe territories overnight_stays canadian hostels museum holds canadian hostelling association including substantial number records mid photographic records records see_also hostelling_international externalinks hostelling_international canada official_site auberge internationale de hostelling association museum category hostels canada_categoryouthostelling_category hostelling_international_member_associations"},{"title":"Hostelling International Northern Ireland","description":"hostelling international northern ireland hinis a not for profit organisation providing hostel youthostel accommodation inorthern ireland it is a member of the hostelling international federation the youthostels association of northern ireland was formed in around the same time as the youthostels association england wales yha e w and the scottish youthostels association syhall three arose from a slightly earlier proposal to form the youthostel association of great britain like all associations in its early days it offered spartan facilities for those on walking or cycling holidays to give them the opportunity to explore and experience the countryside inorthern ireland modern hostelling the name of the association changed to hostelling international northern ireland in the s it runs three hostels and one affiliated hostel the hostels are in belfast bushmills and whitepark bay near ballycastle county antrim ballycastle and the newly refurbished affiliated hostel isituated in armagh all of the hostels provide a range of rooms including private twins andoubles and are suitable for individual backpackers couples families and groupsee also hostelling international youthostels association england walescottish youthostels association an igexternalinks hini official site category tourism inorthern ireland categoryouthostelling category hostelling international member associations category walking in the united kingdom","main_words":["hostelling","international","northern_ireland","profit","organisation","providing","hostel","youthostel","accommodation","inorthern_ireland","member","hostelling_international","federation","youthostels_association","northern_ireland","formed","around","time","youthostels_association","england_wales","yha","e","w","scottish","youthostels_association","three","arose","slightly","earlier","proposal","form","youthostel_association","great_britain","like","associations","early","days","offered","spartan","facilities","walking","cycling","holidays","give","opportunity","explore","experience","countryside","inorthern_ireland","modern","hostelling","name","association","changed","hostelling_international","northern_ireland","runs","three","hostels","one","affiliated","hostel","hostels","belfast","bay","near","refurbished","affiliated","hostel","isituated","hostels","provide","range","rooms","including","private","twins","suitable","individual","backpackers","couples","families","also","association","england","youthostels_association","official_site_category","tourism","hostelling_international_member_associations","category","walking","united_kingdom"],"clean_bigrams":[["hostelling","international"],["international","northern"],["northern","ireland"],["profit","organisation"],["organisation","providing"],["providing","hostel"],["hostel","youthostel"],["youthostel","accommodation"],["accommodation","inorthern"],["inorthern","ireland"],["hostelling","international"],["international","federation"],["youthostels","association"],["northern","ireland"],["youthostels","association"],["association","england"],["england","wales"],["wales","yha"],["yha","e"],["e","w"],["scottish","youthostels"],["youthostels","association"],["three","arose"],["slightly","earlier"],["earlier","proposal"],["youthostel","association"],["great","britain"],["britain","like"],["early","days"],["offered","spartan"],["spartan","facilities"],["cycling","holidays"],["countryside","inorthern"],["inorthern","ireland"],["ireland","modern"],["modern","hostelling"],["association","changed"],["hostelling","international"],["international","northern"],["northern","ireland"],["runs","three"],["three","hostels"],["one","affiliated"],["affiliated","hostel"],["bay","near"],["newly","refurbished"],["refurbished","affiliated"],["affiliated","hostel"],["hostel","isituated"],["hostels","provide"],["rooms","including"],["including","private"],["private","twins"],["individual","backpackers"],["backpackers","couples"],["couples","families"],["also","hostelling"],["hostelling","international"],["international","youthostels"],["youthostels","association"],["association","england"],["youthostels","association"],["official","site"],["site","category"],["category","tourism"],["tourism","inorthern"],["inorthern","ireland"],["ireland","categoryouthostelling"],["categoryouthostelling","category"],["category","hostelling"],["hostelling","international"],["international","member"],["member","associations"],["associations","category"],["category","walking"],["united","kingdom"]],"all_collocations":["hostelling international","international northern","northern ireland","profit organisation","organisation providing","providing hostel","hostel youthostel","youthostel accommodation","accommodation inorthern","inorthern ireland","hostelling international","international federation","youthostels association","northern ireland","youthostels association","association england","england wales","wales yha","yha e","e w","scottish youthostels","youthostels association","three arose","slightly earlier","earlier proposal","youthostel association","great britain","britain like","early days","offered spartan","spartan facilities","cycling holidays","countryside inorthern","inorthern ireland","ireland modern","modern hostelling","association changed","hostelling international","international northern","northern ireland","runs three","three hostels","one affiliated","affiliated hostel","bay near","newly refurbished","refurbished affiliated","affiliated hostel","hostel isituated","hostels provide","rooms including","including private","private twins","individual backpackers","backpackers couples","couples families","also hostelling","hostelling international","international youthostels","youthostels association","association england","youthostels association","official site","site category","category tourism","tourism inorthern","inorthern ireland","ireland categoryouthostelling","categoryouthostelling category","category hostelling","hostelling international","international member","member associations","associations category","category walking","united kingdom"],"new_description":"hostelling international northern_ireland profit organisation providing hostel youthostel accommodation inorthern_ireland member hostelling_international federation youthostels_association northern_ireland formed around time youthostels_association england_wales yha e w scottish youthostels_association three arose slightly earlier proposal form youthostel_association great_britain like associations early days offered spartan facilities walking cycling holidays give opportunity explore experience countryside inorthern_ireland modern hostelling name association changed hostelling_international northern_ireland runs three hostels one affiliated hostel hostels belfast bay near county_newly refurbished affiliated hostel isituated hostels provide range rooms including private twins suitable individual backpackers couples families also hostelling_international_youthostels association england youthostels_association official_site_category tourism inorthern_ireland_categoryouthostelling_category hostelling_international_member_associations category walking united_kingdom"},{"title":"Hostelling International USA","description":"hostelling international usa hi usalso known as american youthostels inc ayh is a c organizationonprofit organization that operates youthostels and runs programs around those hostels it is the official united states affiliate of hostelling international hi also known as the international youthostel federation it is incorporated as a not for profit organization with its headquarters in silver spring maryland organizational profile national center for charitable statistics urban institute the first american youthostel was opened inorthfield massachusetts in by isabel and monroe smith and american youthostels was born within a year a network of more than hostels was operating throughout new england history of ayh official website accessed january josephine and frank duveneck opened hidden villa california s first youthostel in a rural setting withiking trails milesouth of san francisco accessed april in a preaching quaker minister leslie barry barret and his wife winnifred turned a rundownew england farm into a rustic retreat center and youthostel and called it friendly crossways julie moberly october like hidden villa friendly crossways attracted groups promoting peace and social justice when hidden villa dropped out of the hi usa system in friendly crossways became the longest continually operating hostel in the us pre war european political currents overshadowed much of the international movement in the late s during the war parts of theuropean youthostel system still continued toperate as well as a small network of ayhostels britain expanded its own hostel network while australiand new zealand started their associations thend of the war brought a time of worldwide rebuilding and reflection international youth travel was embraced by governments as a way of encouraging interaction and understanding and avoiding future conflict in the s and s the movement prospered public awareness and hostel use increased astudentravel becameven more widespread new hostel facility standards managementraining and more consistent operating policies improved the quality of the hostel stayh also sponsored self supported bicycle tours with overnights at its hostels to such places as the midwest and canadian rockies canadian rockies in the mid to late s the new york chapter staged the am ride through new york city riders began to assemble in washington square around am and at began to ride the deserted streets of manhattan aroundawn the riders took the staten island ferry and ended the ride at a beach on staten island the s marked a decade a growth for american youthostels major association hostels were opened in boston san francisco santa monica seattle and washington dc in ayh approved its firstrategic plan which affirmed the importance of ayhostels in major cities as well as membership growth and hostel based programming bothostel overnights and membership grew throughouthe decade the growth continued in hostel overnights throughouthe s and hostel programming exploded as ayh councils and hostels expanded their program offerings iyhf positioned the international movement for growth in the mid s withe adoption of a commoname and logo and new quality standards for its more than hostels as the us affiliate of iyhf ayh embraced hostelling international and the blue triangle and adopted a more focused hostel quality program becoming hi usa by thearly s hi usa made quality a priority and steadily closed hostels over the next decade that didn t meethe highest of standards the number of hostels went from in to in however hostel overnights have remained strong in fact in hi usa hosted as many overnights across as its hostels as it did in when it had hostels during the slimming down of hostels a new focus for hi usa took hold in the council model of governance whereby councils oversaw the majority of hostel operations was questioned as the most effective model for moving forward after several years of intensive research debate andiscussion the councils voted on june to dissolve their entities intone unified national organization as a way to combine assets and resources to become a stronger organization hi usa web page on unification plan accessed january by the process had begun and councils became part of the unified organization byear s end and hi usa had hostels in its network the rest of the councils arexpected to complete unification by thend of at which point hi usa will have one national office plus five regions northeast mid atlantic southeast central northwest and southwesthe flagship residence of the american youthostels in the united states is inew york city located in a landmark building designed by noted architect richard morris hunthis popular hostel occupies thentireast blockfront of tenth avenue manhattan amsterdam avenue between d and th streets in manhattanew york hostel the second largest hostel operated by american youthostels is in chicago illinois the mission of hi usa is to help all especially the youngain a greater understanding the world and its people throughostelling official site according to the hi usa website see also backpacking travel externalinks official site american youthostel records university archives and special collections joseph p healey library university of massachusetts boston category adventure travel category backpacking categoryouthostelling category hostelling international member associations","main_words":["hostelling","international","usa","known","american_youthostels","inc","ayh","c","organization","operates","youthostels","runs","programs","around","hostels","official","united_states","affiliate","hostelling_international","also_known","international_youthostel","federation","incorporated","profit_organization","headquarters","silver","spring","maryland","organizational","profile","national","center","charitable","statistics","urban","institute","first_american","youthostel","opened","massachusetts","isabel","monroe","smith","american_youthostels","born","within","year","network","hostels","operating","throughout","new_england","history","ayh","official_website","accessed","january","frank","opened","hidden","villa","california","first","youthostel","rural","setting","trails","san_francisco","accessed","april","quaker","minister","leslie","barry","wife","turned","england","farm","rustic","center","youthostel","called","friendly","julie","october","like","hidden","villa","friendly","attracted","groups","promoting","peace","social","justice","hidden","villa","dropped","usa","system","friendly","became","longest","continually","operating","hostel","us","pre_war","european","political","currents","much","international","movement","late","war","parts","theuropean","youthostel","system","still","continued","toperate","well","small","network","britain","expanded","hostel","network","australiand_new_zealand","started","associations","thend","war","brought","time","worldwide","rebuilding","reflection","international","youth","travel","embraced","governments","way","encouraging","interaction","understanding","avoiding","future","conflict","movement","prospered","public","awareness","hostel","use","increased","widespread","new","hostel","facility","standards","consistent","operating","policies","improved","quality","hostel","also","sponsored","self","supported","bicycle_tours","overnights","hostels","places","midwest","canadian_rockies","canadian_rockies","mid","late","new_york","chapter","staged","ride","new_york","city","riders","began","washington","square","around","began","ride","deserted","streets","manhattan","riders","took","island","ferry","ended","ride","beach","island","marked","decade","growth","american_youthostels","major","association","hostels","opened","boston","san_francisco","santa","seattle_washington","ayh","approved","plan","importance","major_cities","well","membership","growth","hostel","based","programming","overnights","membership","grew","throughouthe","decade","growth","continued","hostel","overnights","throughouthe","hostel","programming","exploded","ayh","councils","hostels","expanded","program","offerings","iyhf","positioned","international","movement","growth","mid","withe","adoption","logo","new","quality","standards","hostels","us","affiliate","iyhf","ayh","embraced","hostelling_international","blue","triangle","adopted","focused","hostel","quality","program","becoming","usa","thearly","usa","made","quality","priority","steadily","closed","hostels","next","decade","meethe","highest","standards","number","hostels","went","however","hostel","overnights","remained","strong","fact","usa","hosted","many","overnights","across","hostels","hostels","hostels","new","focus","usa","took","hold","council","model","governance","whereby","councils","oversaw","majority","hostel","operations","effective","model","moving","forward","several_years","intensive","research","debate","councils","voted","june","entities","intone","unified","national","organization","way","combine","assets","resources","become","stronger","organization","usa","web_page","unification","plan","accessed","january","process","begun","councils","became","part","unified","organization","byear","end","usa","hostels","network","rest","councils","arexpected","complete","unification","thend","point","usa","one","national_office","plus","five","regions","northeast","mid","atlantic","southeast","central","northwest","flagship","residence","american_youthostels","united_states","inew_york_city","located","landmark","building","designed","noted","architect","richard","morris","popular","hostel","occupies","tenth","avenue_manhattan","amsterdam","avenue","manhattanew","york","hostel","second_largest","hostel","operated","american_youthostels","chicago_illinois","mission","usa","help","especially","greater","understanding","world","people","official_site","according","usa","website","see_also","backpacking_travel","externalinks_official","site","american","youthostel","records","university","archives","special","collections","joseph","p","library","university","massachusetts","boston","category_adventure_travel_category","backpacking","categoryouthostelling_category","hostelling_international_member_associations"],"clean_bigrams":[["hostelling","international"],["international","usa"],["american","youthostels"],["youthostels","inc"],["inc","ayh"],["operates","youthostels"],["runs","programs"],["programs","around"],["official","united"],["united","states"],["states","affiliate"],["hostelling","international"],["also","known"],["international","youthostel"],["youthostel","federation"],["profit","organization"],["silver","spring"],["spring","maryland"],["maryland","organizational"],["organizational","profile"],["profile","national"],["national","center"],["charitable","statistics"],["statistics","urban"],["urban","institute"],["first","american"],["american","youthostel"],["monroe","smith"],["american","youthostels"],["born","within"],["operating","throughout"],["throughout","new"],["new","england"],["england","history"],["ayh","official"],["official","website"],["website","accessed"],["accessed","january"],["opened","hidden"],["hidden","villa"],["villa","california"],["first","youthostel"],["rural","setting"],["san","francisco"],["francisco","accessed"],["accessed","april"],["quaker","minister"],["minister","leslie"],["leslie","barry"],["england","farm"],["october","like"],["like","hidden"],["hidden","villa"],["villa","friendly"],["attracted","groups"],["groups","promoting"],["promoting","peace"],["social","justice"],["hidden","villa"],["villa","dropped"],["usa","system"],["longest","continually"],["continually","operating"],["operating","hostel"],["us","pre"],["pre","war"],["war","european"],["european","political"],["political","currents"],["international","movement"],["war","parts"],["theuropean","youthostel"],["youthostel","system"],["system","still"],["still","continued"],["continued","toperate"],["small","network"],["britain","expanded"],["hostel","network"],["australiand","new"],["new","zealand"],["zealand","started"],["associations","thend"],["war","brought"],["worldwide","rebuilding"],["reflection","international"],["international","youth"],["youth","travel"],["encouraging","interaction"],["avoiding","future"],["future","conflict"],["movement","prospered"],["prospered","public"],["public","awareness"],["hostel","use"],["use","increased"],["widespread","new"],["new","hostel"],["hostel","facility"],["facility","standards"],["consistent","operating"],["operating","policies"],["policies","improved"],["also","sponsored"],["sponsored","self"],["self","supported"],["supported","bicycle"],["bicycle","tours"],["canadian","rockies"],["rockies","canadian"],["canadian","rockies"],["new","york"],["york","chapter"],["chapter","staged"],["new","york"],["york","city"],["city","riders"],["riders","began"],["washington","square"],["square","around"],["deserted","streets"],["riders","took"],["island","ferry"],["american","youthostels"],["youthostels","major"],["major","association"],["association","hostels"],["boston","san"],["san","francisco"],["francisco","santa"],["ayh","approved"],["major","cities"],["membership","growth"],["hostel","based"],["based","programming"],["membership","grew"],["grew","throughouthe"],["throughouthe","decade"],["growth","continued"],["hostel","overnights"],["overnights","throughouthe"],["hostel","programming"],["programming","exploded"],["ayh","councils"],["hostels","expanded"],["program","offerings"],["offerings","iyhf"],["iyhf","positioned"],["international","movement"],["withe","adoption"],["new","quality"],["quality","standards"],["us","affiliate"],["iyhf","ayh"],["ayh","embraced"],["embraced","hostelling"],["hostelling","international"],["blue","triangle"],["focused","hostel"],["hostel","quality"],["quality","program"],["program","becoming"],["usa","made"],["made","quality"],["steadily","closed"],["closed","hostels"],["next","decade"],["meethe","highest"],["hostels","went"],["however","hostel"],["hostel","overnights"],["remained","strong"],["usa","hosted"],["many","overnights"],["overnights","across"],["new","focus"],["usa","took"],["took","hold"],["council","model"],["governance","whereby"],["whereby","councils"],["councils","oversaw"],["hostel","operations"],["effective","model"],["moving","forward"],["several","years"],["intensive","research"],["research","debate"],["councils","voted"],["entities","intone"],["intone","unified"],["unified","national"],["national","organization"],["combine","assets"],["stronger","organization"],["usa","web"],["web","page"],["unification","plan"],["plan","accessed"],["accessed","january"],["councils","became"],["became","part"],["unified","organization"],["organization","byear"],["councils","arexpected"],["complete","unification"],["one","national"],["national","office"],["office","plus"],["plus","five"],["five","regions"],["regions","northeast"],["northeast","mid"],["mid","atlantic"],["atlantic","southeast"],["southeast","central"],["central","northwest"],["flagship","residence"],["american","youthostels"],["united","states"],["inew","york"],["york","city"],["city","located"],["landmark","building"],["building","designed"],["noted","architect"],["architect","richard"],["richard","morris"],["popular","hostel"],["hostel","occupies"],["tenth","avenue"],["avenue","manhattan"],["manhattan","amsterdam"],["amsterdam","avenue"],["th","streets"],["manhattanew","york"],["york","hostel"],["second","largest"],["largest","hostel"],["hostel","operated"],["american","youthostels"],["chicago","illinois"],["greater","understanding"],["official","site"],["site","according"],["usa","website"],["website","see"],["see","also"],["also","backpacking"],["backpacking","travel"],["travel","externalinks"],["externalinks","official"],["official","site"],["site","american"],["american","youthostel"],["youthostel","records"],["records","university"],["university","archives"],["special","collections"],["collections","joseph"],["joseph","p"],["library","university"],["massachusetts","boston"],["boston","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","backpacking"],["backpacking","categoryouthostelling"],["categoryouthostelling","category"],["category","hostelling"],["hostelling","international"],["international","member"],["member","associations"]],"all_collocations":["hostelling international","international usa","american youthostels","youthostels inc","inc ayh","operates youthostels","runs programs","programs around","official united","united states","states affiliate","hostelling international","also known","international youthostel","youthostel federation","profit organization","silver spring","spring maryland","maryland organizational","organizational profile","profile national","national center","charitable statistics","statistics urban","urban institute","first american","american youthostel","monroe smith","american youthostels","born within","operating throughout","throughout new","new england","england history","ayh official","official website","website accessed","accessed january","opened hidden","hidden villa","villa california","first youthostel","rural setting","san francisco","francisco accessed","accessed april","quaker minister","minister leslie","leslie barry","england farm","october like","like hidden","hidden villa","villa friendly","attracted groups","groups promoting","promoting peace","social justice","hidden villa","villa dropped","usa system","longest continually","continually operating","operating hostel","us pre","pre war","war european","european political","political currents","international movement","war parts","theuropean youthostel","youthostel system","system still","still continued","continued toperate","small network","britain expanded","hostel network","australiand new","new zealand","zealand started","associations thend","war brought","worldwide rebuilding","reflection international","international youth","youth travel","encouraging interaction","avoiding future","future conflict","movement prospered","prospered public","public awareness","hostel use","use increased","widespread new","new hostel","hostel facility","facility standards","consistent operating","operating policies","policies improved","also sponsored","sponsored self","self supported","supported bicycle","bicycle tours","canadian rockies","rockies canadian","canadian rockies","new york","york chapter","chapter staged","new york","york city","city riders","riders began","washington square","square around","deserted streets","riders took","island ferry","american youthostels","youthostels major","major association","association hostels","boston san","san francisco","francisco santa","ayh approved","major cities","membership growth","hostel based","based programming","membership grew","grew throughouthe","throughouthe decade","growth continued","hostel overnights","overnights throughouthe","hostel programming","programming exploded","ayh councils","hostels expanded","program offerings","offerings iyhf","iyhf positioned","international movement","withe adoption","new quality","quality standards","us affiliate","iyhf ayh","ayh embraced","embraced hostelling","hostelling international","blue triangle","focused hostel","hostel quality","quality program","program becoming","usa made","made quality","steadily closed","closed hostels","next decade","meethe highest","hostels went","however hostel","hostel overnights","remained strong","usa hosted","many overnights","overnights across","new focus","usa took","took hold","council model","governance whereby","whereby councils","councils oversaw","hostel operations","effective model","moving forward","several years","intensive research","research debate","councils voted","entities intone","intone unified","unified national","national organization","combine assets","stronger organization","usa web","web page","unification plan","plan accessed","accessed january","councils became","became part","unified organization","organization byear","councils arexpected","complete unification","one national","national office","office plus","plus five","five regions","regions northeast","northeast mid","mid atlantic","atlantic southeast","southeast central","central northwest","flagship residence","american youthostels","united states","inew york","york city","city located","landmark building","building designed","noted architect","architect richard","richard morris","popular hostel","hostel occupies","tenth avenue","avenue manhattan","manhattan amsterdam","amsterdam avenue","th streets","manhattanew york","york hostel","second largest","largest hostel","hostel operated","american youthostels","chicago illinois","greater understanding","official site","site according","usa website","website see","see also","also backpacking","backpacking travel","travel externalinks","externalinks official","official site","site american","american youthostel","youthostel records","records university","university archives","special collections","collections joseph","joseph p","library university","massachusetts boston","boston category","category adventure","adventure travel","travel category","category backpacking","backpacking categoryouthostelling","categoryouthostelling category","category hostelling","hostelling international","international member","member associations"],"new_description":"hostelling international usa known american_youthostels inc ayh c organization operates youthostels runs programs around hostels official united_states affiliate hostelling_international also_known international_youthostel federation incorporated profit_organization headquarters silver spring maryland organizational profile national center charitable statistics urban institute first_american youthostel opened massachusetts isabel monroe smith american_youthostels born within year network hostels operating throughout new_england history ayh official_website accessed january frank opened hidden villa california first youthostel rural setting trails san_francisco accessed april quaker minister leslie barry wife turned england farm rustic center youthostel called friendly julie october like hidden villa friendly attracted groups promoting peace social justice hidden villa dropped usa system friendly became longest continually operating hostel us pre_war european political currents much international movement late war parts theuropean youthostel system still continued toperate well small network britain expanded hostel network australiand_new_zealand started associations thend war brought time worldwide rebuilding reflection international youth travel embraced governments way encouraging interaction understanding avoiding future conflict movement prospered public awareness hostel use increased widespread new hostel facility standards consistent operating policies improved quality hostel also sponsored self supported bicycle_tours overnights hostels places midwest canadian_rockies canadian_rockies mid late new_york chapter staged ride new_york city riders began washington square around began ride deserted streets manhattan riders took island ferry ended ride beach island marked decade growth american_youthostels major association hostels opened boston san_francisco santa seattle_washington ayh approved plan importance major_cities well membership growth hostel based programming overnights membership grew throughouthe decade growth continued hostel overnights throughouthe hostel programming exploded ayh councils hostels expanded program offerings iyhf positioned international movement growth mid withe adoption logo new quality standards hostels us affiliate iyhf ayh embraced hostelling_international blue triangle adopted focused hostel quality program becoming usa thearly usa made quality priority steadily closed hostels next decade meethe highest standards number hostels went however hostel overnights remained strong fact usa hosted many overnights across hostels hostels hostels new focus usa took hold council model governance whereby councils oversaw majority hostel operations effective model moving forward several_years intensive research debate councils voted june entities intone unified national organization way combine assets resources become stronger organization usa web_page unification plan accessed january process begun councils became part unified organization byear end usa hostels network rest councils arexpected complete unification thend point usa one national_office plus five regions northeast mid atlantic southeast central northwest flagship residence american_youthostels united_states inew_york_city located landmark building designed noted architect richard morris popular hostel occupies tenth avenue_manhattan amsterdam avenue th_streets manhattanew york hostel second_largest hostel operated american_youthostels chicago_illinois mission usa help especially greater understanding world people official_site according usa website see_also backpacking_travel externalinks_official site american youthostel records university archives special collections joseph p library university massachusetts boston category_adventure_travel_category backpacking categoryouthostelling_category hostelling_international_member_associations"},{"title":"Hotel","description":"file the peninsula parisjpg thumb the peninsula paris hotel x px a hotel is an establishmenthat provides paid lodging on a shorterm basis facilities provided may range from a modest quality mattress in a small room to large suites with bigger higher quality beds a dresser a fridge and other kitchen facilities upholstered chairs a flatscreen television and en suiten suite bathroom smallower priced hotels may offer only the most basic guest services and facilities larger higher priced hotels may provide additional guest facilitiesuch as a swimming pool business centre with computers printers and other officequipment childcare conference and event facilities tennis or basketball courts gymnasium restaurants day spand social function services hotel rooms are usually room numbered or named in some smaller hotels and bed and breakfast bs to allow guests to identify theiroom some boutique high end hotels have custom decorated roomsome hotels offer meals as part of a room and board arrangement in the united kingdom a hotel is required by law to serve food andrinks to all guests within certain stated hours in japan capsule hotel s provide a tiny room suitable only for sleeping and shared bathroom facilities file mercure hotel taksimjpg thumb a typical hotel room with a bedesk and television x px the precursor to the modern hotel was the inn of medieval europe for a period of about years from the mid th century coaching inn served as a place for lodging for coach carriage coach travelers inns began to cater to richer clients in the mid th century one of the first hotels in a modern sense was opened in exeter in hotels proliferated throughout western europe and north america in thearly th century and luxury hotels began to spring up in the later part of the th century hotel operations vary in size function and cost most hotels and major hospitality companies have set industry standards to classify hotel types an upscale full service hotel facility offers luxury goods luxury amenities full service accommodations an on site restaurant and the highest level of personalized service such as a concierge room service and clothes pressing staff conference and resort hotels full service hotels often contain upscale full service facilities with a large number ofull service accommodations an on site full service restaurant and a variety of on site amenity amenities boutique hotel s are smaller independent non branded hotels that often contain upscale facilitiesmall to medium sized hotel establishments offer a limited amount of on site amenity amenities economy hotels are small to medium sized hotel establishments that offer basic accommodations with little to no services extended stay hotel s are small to medium sized hotels that offer longer term full service accommodations compared to a traditional hotel timeshare andestination clubs are a form of property ownership involving ownership of an individual unit of accommodation for seasonal usage a motel is a small sized low rise lodging with direct access to individual rooms from the car park boutique hotel s are typically hotels with a uniquenvironment or intimate setting a number of hotels haventered the publiconsciousness through popular culture such as the ritz london hotel ritz hotel in london some hotels are built specifically as a destination in itselfor example at casino s and holiday resort s most hotel establishments are run by a general manager who serves as thead executive often referred to as the hotel manager department heads whoversee various departments within a hotel eg food service middle manager s administration of business administrative staff and line level supervisors the organizational chart and volume of job positions and hierarchy varies by hotel size function and class and is often determined by hotel ownership and managing companies the word hotel is derived from the french tel coming from the same origin as hospital which referred to a french version of a building seeing frequent visitors and providing care rather than a place offering accommodation in contemporary french usage h tel now has the sameaning as thenglish term and h tel particulier is used for the old meaning as well as h tel in some place namesuch as h tel dieu de paris h tel dieu in paris whichas been a hospital since the middle ages the french spelling withe circumflex was also used in english but is now rare the circumflex replaces the s found in thearlier hostel spelling which over time took on a new but closely related meaningrammatically hotels usually take the definite article hence the astoria hotel or simply the astoria file tabard inn mid thjpg righthumb uprighthe tabard inn london borough of southwark london facilities offering hospitality to travellers have been a feature of thearliest civilizations in greco roman culture hospitals forecuperation and rest were built athermal bath s during the middle ages various religious orders at monastery monasteries and abbey s would offer accommodation for travellers on the road the precursor to the modern hotel was the inn of medieval europe possibly dating back to the rule of ancient rome these would provide for the needs of travelers including food and lodging stable stabling and fodder for the traveler s horse s and freshorses for the mail coach famous london examples of inns include the george southwark george and the tabard a typicalayout of an inn had an inner court with bedrooms on the two sides withe kitchen and parlour athe front and the stables athe back for a period of about years from the mid th century coaching inn served as a place for lodging for coach carriage coach travelers in other words a roadhouse facility roadhouse coaching inn stabled teams of horse s for stagecoach es and mail coach es and replaced tired teams with fresh teams traditionally they were seven miles apart buthis depended very much on the terrain file tremonthouse ca s byjamesbennett boston simonsupnepng thumb leftremont house boston tremont house in boston united states a luxury hotel the firsto provide indoor plumbing somengland english towns had as many as ten such inn s and rivalry between them was intense not only for the income from the stagecoach operators but for the revenue for food andrink supplied to the wealthy passengers by thend of the century coaching inns were being run more professionally with a regular timetable being followed and fixed menus for foodcoaching era the stage and mail coach travel in and around bath bristol and somerset roy gallop fiducia inns began to cater foricher clients in the mid th century and consequently grew in grandeur and the level of service provided one of the first hotels in a modern sense was royal clarence hotel opened in exeter in although the idea only really caught on in thearly th century in claridge s mivart s hotel opened its doors in london later changing its name to claridge s hotels proliferated throughout western europe and north america in the th century and luxury hotels including the savoy hotel in the united kingdom and the c saritz ritz chain of hotels in london and paris and tremont house boston tremont house and astor house in the united states began to spring up in the later part of the century catering to an extremely wealthy clientele international scale hotels cater to travelers fromany countries and languagesince none country dominates the travel industry class wikitable sortable border country hotel rooms in average rooms per hotel overnightourists traveling from each country annual united states china japan italy germany spain mexico united kingdom france thailand na indonesia greece brazil turkey austria russia classortbottom global total hotel operations vary in size function and cost most hotels and major hospitality companies that operate hotels have set widely accepted industry standards to classify hotel types general categories include the following a luxury hotel offers high quality amenities full service accommodations on site full service restaurants and the highest level of personalized and professional service luxury hotels are normally classified with at least a four diamond or aaa five diamond award five diamond rating by american automobile association or a four or star classification five starating depending on the country and local classification standards examples include intercontinental hotels resorts intercontinental waldorf astoria hotels and resorts waldorf astoria four seasons hotels and resorts four seasons and the ritz carlton boutique and lifestyle hotels boutique hotel s are smaller independent non branded hotels that often contain upscale facilities of varying size in unique or intimate settings with full service accommodations these hotels are generally rooms or less lifestyle hotels are branded properties that appeal to a guest with specific lifestyle or personal image they are typically full service and sometimes classified as luxury a key characteristic of boutique and lifestyle hotels is their focus on providing a unique guest experience as opposed to simply providing lodging examples include w hotels andaz and kimpton hotels restaurants kimpton hotels full service conference and resort hotels full service hotels often provide a wide array of guest services and on site facilities commonly found amenities may include on site food and beverage room service and restaurants meeting and conference services and facilities fitness center and business center full service hotels range in quality fromid scale to luxury this classification is based upon the quality ofacilities and amenities offered by the hotel examples include holiday inn sheraton hotels and resortsheraton hilton hotels resorts hilton marriott international marriott and hyatt regency brands focused or select service small to medium sized hotel establishments that offer a limited number of on site amenities that only cater and marketo a specific demographic of travelersuch as the single business traveler most focused or select service hotels may still offer full service accommodations but may lack leisure amenitiesuch as an on site restaurant or a swimming pool examples include hyatt place courtyard by marriott and hilton garden inn economy and limited service small to medium sized hotel establishments that offer a very limited amount of on site amenities and often only offer basic accommodations with little to no services these facilities normally only cater and marketo a specific demographic of travelersuch as the budget minded traveler seeking a no frills accommodation limited service hotels often lack an on site restaurant but in return may offer a limited complimentary food and beverage amenity such as on site continental breakfast servicexamples include ibis budget hampton inn aloft hotels aloft holiday inn express fairfield inn by marriott fairfield inn four points by sheraton andays inn extended stay extended stay hotel s are small to medium sized hotels that offer longer term full service accommodations compared to a traditional hotel extended stay hotels may offer non traditional pricing methodsuch as a weekly rate that caters towards travelers ineed of shorterm accommodations for an extended period of time similar to limited and select service hotels on site amenities are normally limited and most extended stay hotels lack an on site restaurant examples include staybridge suites candlewood suites homewood suites by hilton home suites by hilton residence inn by marriott element by westin element and extended stay hotels timeshare andestination clubs timeshare andestination clubs are a form of property ownership also referred to as a vacation ownership involving the purchase and ownership of an individual unit of accommodation for seasonal usage during a specified period of timesharesorts often offer amenitiesimilar that of a full service hotel with on site restaurant swimming pools recreation grounds and other leisure oriented amenities destination clubs on the other hand may offer morexclusive private accommodationsuch as private houses in a neighborhood style setting examples of timeshare brands include hilton grand vacations marriott vacation club international westgate resorts disney vacation club and holiday inn holiday inn club vacations a motel an abbreviation for motor hotel is a small sized low rise lodging establishment similar to a limited service lower cost hotel butypically with direct access to individual rooms from the car park motels were builto serve road travellers including travellers on road trip vacations and workers who drive for their job travelling salespeople truck drivers etcommon during the s and s motels were often located adjacento a major highway where they were built on inexpensive land athedge of towns or along stretches ofreeway new motel construction is rare in the s as hotel chains have been building economy priced limited service franchised properties at freeway exits which compete for largely the same clientele largely saturating the market by the s motels are still useful in less populated areas for driving travelers buthe more populated an area becomes the more hotels move in to meethe demand for accommodation many of the motels which remain operation have joined national franchise chains often rebranding themselves as hotels inns or lodges management hotel management is a globally accepted professional career field and academic field of study degree programsuch as hospitality management studies a business degree and or certification programs formally prepare hotel managers for industry practice most hotel establishments consist of a general manager who serves as thead executive often referred to as the hotel manager department heads whoversee various departments within a hotel middle manager s administration of business administrative staff and line level supervisors the organizational chart and volume of job positions and hierarchy varies by hotel size function and is often determined by hotel ownership and managing companies unique and specialty hotels historic inns and boutique hotels file hotel astoriajpg thumb left hotel astoria saint petersburg hotel astoriand statue of nicholas i of russia tsar nicholas in saint petersburg russia boutique hotel s are typically hotels with a uniquenvironment or intimate setting some hotels have gained theirenown through tradition by hosting significant events or personsuch aschloss cecilienhof in potsdam germany which derives its fame from the potsdam conference of the world war ii allies winston churchill harry trumand joseph stalin the taj mahal palace tower in mumbais one of india s most famous and historic hotels because of its association withe indian independence movement somestablishments have givename to a particular meal or beverage as is the case withe waldorf astoria hotel waldorf astoria inew york city united states where the waldorf salad was first created or the hotel sacher in viennaustria home of the sachertorte others have achieved fame by association with dishes or cocktails created on their premisesuch as the hotel de paris where the cr pe suzette was invented or the raffles hotel in singapore where the singapore sling cocktail was devised file hotel ritz parisjpg thumb right h tel ritz paris in france a number of hotels haventered the publiconsciousness through popular culture such as the ritz london hotel ritz hotel in london through its association with irving berlin irving berlin song puttin on the ritz the algonquin hotel inew york city is famed as the meeting place of the literary group the algonquin round table and hotel chelsealso inew york city has been the subject of a number of songs and the scene of the stabbing of nancy spungen allegedly by her boyfriend sid vicious resort hotels file wynn jpg thumb right wynn las vegas united statesome hotels are built specifically as a destination in itself to create a captive tradexample at casino s amusement park s and holiday resort s though of course hotels have always been built in popular destinations the defining characteristic of a resort hotel is that it exists purely to serve another attraction the two having the same owners on the las vegastrip there is a tradition of one upmanship with luxurious and extravagant hotels in a concentrated area this trend now has extended totheresorts worldwide buthe concentration in las vegas istill the world s highest nineteen of the world s twenty five largest hotels by room count are on the strip with a total of overooms in europe center parcs might be considered a chain of resort hotelsince the sites are largely man made though set inatural surroundingsuch as country park s with captive trade whereas holiday camp such as butlins and pontin s are probably not considered as resort hotelsince they are set atraditional holiday destinations which existed before the camps other speciality hotels file hmsqueenmary photo d ramey loganjpg thumb right upright rms queen mary long beach california united states the burj al arab hotel in dubai united arab emirates built on an artificial island istructured in the shape of a boat sail the library hotel inew york city is unique in that each of its ten floors is assigned one category from the dewey decimal classification dewey decimal system the jailhotel wengraben in lucerne switzerland is a converted prisonow used as a hotel the luxor hoteluxor a hotel and casinon the las vegastrip in paradise nevada united states is unusual due to its pyramidal structure the liberty hotel in boston used to be the charlestreet jail hotel kakslauttanen in finland a collection of glass igloos in lapland that allow you to watch the northern lights built in scotland completed in the former ocean liner in long beach california united states uses its first classtaterooms as a hotel afteretiring in from transatlantic service the wigwamotel s used patented novelty architecture in which each motel room was a free standing concrete wigwam or teepee various caboose motel ored caboose inn properties are built from decommissioned rail cars throughouthe world there are several hotels built from converted airliners bunker hotels the null stern hotel in teufen ar teufen appenzellerland switzerland the concrete mushrooms in albaniare former nuclear bunker s transformed into hotels cave hotels the cuevas pedro antonio de alarc named after the pedro antonio de alarc n author in guadix spain as well aseveral hotels in cappadocia turkey are notable for being built into natural cave formationsome with rooms underground the desert cave hotel in coober pedy south australia is built into the remains of an opal mine cliff hotels file hotel riosol en gran canariajpg thumb on top of the cliff the riosol hotel in mog n located on the coast but high above sea level these hotels offer unobstructed panoramic views and a great sense of privacy withouthe feeling of total isolation somexamples from around the globe are the riosol hotel in gran canaria caruso belvedere hotel in amalfi coast italy aman resorts amankila in bali birkenhead house in hermanusouth africa the caves in jamaicand caesar augustus in capri breathtaking clifftop hotels capsule hotels file capsulehoteljpg thumb interior of a capsule hotel in osaka japan capsule hotel s are a type of economical hotel first introduced in japan where people sleep in stacks of rectangular containers day room hotelsome hotels fill daytime occupancy with day room hotel day rooms for example rodeway inn and suites near port everglades in fort lauderdale floriday rooms are booked in a block of hours typically between am and pm before the typical night shifthese are similar to transit hotels in thathey appeal to travelers however unlike transit hotels they do not eliminate the need to go through customs garden hotels garden hotels famous for their gardens before they became hotels include gravetye manor the home of garden designer william robinson gardener william robinson and cliveden designed by charles barry with a rose garden by geoffrey jellicoe ice snow and igloo hotels file icehotel entre msjpg thumb ice hotel in jukkasj rvi sweden the ice hotel in jukkasj rvi sweden was the first ice hotel in the world first built in it is built each winter and melts every spring other ice hotels include the igloo village in kakslauttanen finland the hotel de glace in duschenay canada they can also be included within larger ice complexes for example the mammut snow hotel in finland is located within the walls of the kemi snow castle and the lainio snow hotel is part of a snow village near yll s finland referral hotel a referral hotel is a hotel chain that offers branding to independently operated hotels the chain itself is founded by or owned by the member hotels as a group many formereferral chains have been converted to franchises the largest surviving member owned chain is best western railway hotels the first recorded purpose built railway hotel was the great western hotel readingreat western hotel which opened adjacento reading railway station in shortly after the great western railway opened its line from london the building still exists and although it has been used for other purposes over the years it is now again a hotel and a member of the malmaison hotel chain malmaison hotel chain frequently expanding railway companies built grand hotels atheir termini such as the midland hotel manchester nexto manchester central railway station the former manchester central station and in london the ones above st pancras railway station and charing cross railway station london also has the chiltern court hotel above baker streetube station there are also canada s grand railway hotels they are or were mostly but not exclusively used by those traveling by rail straw bale hotels the maya guesthouse inax mont noble in the swiss alps is the first hotel in europe built entirely with straw bales due to the insulation values of the walls it needs no conventional heating or air conditioning system although the maya guesthouse is built at an altitude of in the alps transit hotels transit hotels are short stay hotels typically used at international airports where passengers can stay while waiting to change airplanes the hotels are typically on the airside airport airside ando not require a visa for a stay ore admission through security checkpoints treehouse hotelsome hotels are built with living trees astructural elements for example the treehotel near pite sweden the costa rica tree house in the gandoca manzanillo wildlife refuge costa rica the treetops hotel in aberdare national parkenya the ariau towers near manaus brazil on the rio negro amazon rio negro in the amazon basin amazon and bayram s tree houses in olympos lycia olympos turkey underwater hotels file ithaa insidejpg thumb ithaa the first undersea restaurant athe conrad hotels conrad maldives rangali island resort some hotels have accommodation underwater such as utter inn in lake m laren sweden hydropolis project in dubai would have had suites on the bottom of the persian gulf and jules undersea lodge in key largo florida requirescuba diving to access its rooms overwater hotels file rehendi suite deck service jpg thumb an overwater bungalow on the island resort in the maldives a resort island is an island or an archipelago that contains resorts hotels overwater bungalows restaurants tourist attractions and its amenities maldives has the most overwater bungalows resorts largest in guinness world records listed the first world hotel in genting highlands malaysias the world s largest hotel with a total of rooms genting s first world recognized as world s largest hotel bernamacom the izmailovo hotel in moscow has the most beds with followed by the venetian las vegas the venetiand the palazzo complex in las vegas rooms and mgm grand las vegas complex rooms oldest according to the guinness book of world records the oldest hotel in operation is the nisiyama onsen keiunkan in yamanashi japan the hotel first opened in ad has been operated by the same family forty six generations the title was held until by the hoshi ryokan in the awazu onsen area of komatsu ishikawa komatsu japan which opened in the year as the history of the nisiyama onsen keiunkan was virtually unknown hoshi ryokan website accessed june ho shicojp retrieved on highesthe ritz carlton hong kong claims to be the world s highest hotel it is located on the top floors of the international commercentre in hong kong at above ground level most expensive purchase in october the anbang insurance group based in china purchased the waldorf astoria new york in manhattan for us billion making ithe world s most expensive hotel ever sold file waldorf astoria exteriorjpg thumb right uprighthe waldorf astoria new york the most expensive hotel ever sold cost us billion in long term residence a number of public figures have notably chosen to take up semi permanent or permanent residence in hotels fashion designer coco chanelived in the h tel ritz paris on and offor more than years inventor nikola tesla lived the lasten years of his life athe new yorker hotel until he died in his room in larry fine of the three stooges and his family lived in hotels due to his extravagant spending habits and his wife s dislike for housekeeping they first lived in the president hotel in atlanticity new jersey where his daughter phyllis was raised then the knickerbocker hotel in hollywood not until the late s did larry buy a home in the los feliz los angeles los feliz area of los angeles the waldorf astoria hotel and its affiliated waldorf towers has been the home of many famous persons over the years including former president herbert hoover who lived there from thend of his presidency in until his death in general douglas macarthur lived his last years in the penthouse of the waldorf towers and the composer cole porter also spenthe last years of his life in an apartment athe waldorf towers billionaire howard hughes lived in hotels during the lasten years of his life primarily in las vegas well as acapulco beverly hills boston freeport bahamas freeport london managua nassau bahamas nassau vancouver and others vladimir nabokov and his wife vera lived in the montreux palace hotel in montreux switzerland his death in actorichard harris lived athe savoy hotel while in london hotel archivist susan scott recounts anecdote that when he was being taken out of the building on a stretcher shortly before his death in he raised his hand told the diners it was the food home suite home bbc news retrieved on egyptian actor ahmed zaki actor ahmed zaki lived his last years in ramses hilton worldwide hilton hotel cairo british entrepreneur jack lyons financier jack lyons lived in the hotel mirador kempinskin switzerland for several years until his death in american actress elaine stritch lived in the savoy hotel in london for over a decade uruguayand argentinian tango composer horacio ferrer lived almost years from until his death in an apartment inside the alvear palace hotel in buenos aires one of the most exclusive hotels in the city see also list of hotels lists of hotels list of chained brand hotels list of defunct hotel chains casino hotelist of casino hotels list of adjectival tourisms niche tourismarkets industry and careers bellhop concierge front desk clerk a type of clerk position clerk general manager hotels general manager gopparevpar trevpar hotel profitability equations hospitality industry hotel rating innkeeper night auditor property caretaker tourism human habitation types apartment hotel boutique hotel caravanserai cruise ship dharamshala type of building dharamshala dak bungalow eco hotel guest house glamping homestay hospitality service hostal category human habitats human habitats inn serviced apartment vacation rental pop up hotel references furthereading category hotels category buildings and structures by type category hospitality management category hospitality occupations category tourist accommodations category travel technology","main_words":["file","peninsula","thumb","peninsula","paris","hotel","x","px","hotel","establishmenthat","provides","paid","lodging","shorterm","basis","facilities","provided","may","range","modest","quality","small","room","large","suites","bigger","higher","quality","beds","fridge","kitchen","facilities","chairs","television","suite","bathroom","priced","hotels","may_offer","basic","guest","services","facilities","larger","higher","priced","hotels","may","provide","additional","guest","facilitiesuch","swimming_pool","business","centre","computers","printers","conference","event","facilities","tennis","basketball","courts","restaurants","day","spand","social","function","services","hotel_rooms","usually","room","numbered","named","smaller","hotels","bed","breakfast","allow","guests","identify","boutique","high_end","hotels","custom","decorated","hotels","offer","meals","part","room","board","arrangement","united_kingdom","hotel","required","law","guests","within","certain","stated","hours","japan","capsule","hotel","provide","tiny","room","suitable","sleeping","shared","bathroom","facilities","file","hotel","thumb","typical","hotel_room","television","x","px","precursor","modern","hotel","inn","medieval_europe","period","years","mid_th","century","coaching_inn","served","place","lodging","coach","carriage","coach","travelers","inns","began","cater","richer","clients","mid_th","century","one","first","hotels","modern","sense","opened","exeter","hotels","proliferated","throughout","western_europe","north_america","thearly_th","century","luxury","hotels","began","spring","later","part","th_century","hotel","operations","vary","size","function","cost","hotels","major","hospitality","companies","set","industry","standards","hotel","types","upscale","full_service","hotel","facility","offers","luxury","goods","luxury","amenities","full_service","accommodations","site","restaurant","highest","level","personalized","service","concierge","room","service","clothes","pressing","staff","conference","resort","hotels","full_service","hotels","often","contain","upscale","full_service","facilities","large_number","ofull","service","accommodations","site","full_service","restaurant","variety","site","amenity","amenities","boutique_hotel","smaller","independent","non","branded","hotels","often","contain","upscale","medium_sized","hotel","establishments","offer","limited","amount","site","amenity","amenities","economy","hotels","small","medium_sized","hotel","establishments","offer","basic","accommodations","little","services","extended_stay","hotel","small","medium_sized","hotels","offer","longer","term","full_service","accommodations","compared","traditional","hotel","timeshare","andestination","clubs","form","property","ownership","involving","ownership","individual","unit","accommodation","seasonal","usage","motel","small","sized","low","rise","lodging","direct","access","individual","rooms","car","park","boutique_hotel","typically","hotels","intimate","setting","number","hotels","haventered","popular_culture","ritz","london","hotel","ritz","hotel","london","hotels","built","specifically","destination","example","casino","holiday","resort","hotel","establishments","run","general_manager","serves","thead","executive","often_referred","hotel_manager","department","heads","various","departments","within","hotel","food_service","middle","manager","administration","business","administrative","staff","line","level","supervisors","organizational","chart","volume","job","positions","hierarchy","varies","hotel","size","function","class","often","determined","hotel","ownership","managing","companies","word","hotel","derived","french","tel","coming","origin","hospital","referred","french","version","building","seeing","frequent","visitors","providing","care","rather","place","offering","accommodation","contemporary","french","usage","h_tel","thenglish","term","h_tel","used","old","meaning","well","h_tel","place","namesuch","h_tel","dieu","de","paris","h_tel","dieu","paris","whichas","hospital","since","middle_ages","french","spelling","withe","also_used","english","rare","replaces","found","thearlier","hostel","spelling","time","took","new","closely","related","hotels","usually","take","definite","article","hence","astoria","hotel","simply","astoria","file","tabard","inn","mid","righthumb","uprighthe","tabard","inn","london_borough","southwark","london","facilities","offering","hospitality","travellers","feature","thearliest","civilizations","roman","culture","hospitals","rest","built","bath","middle_ages","various","religious","orders","monastery","monasteries","abbey","would","offer","accommodation","travellers","road","precursor","modern","hotel","inn","medieval_europe","possibly","dating_back","rule","ancient_rome","would","provide","needs","travelers","including","food","lodging","stable","traveler","horse","mail","coach","famous","inns","include","george","southwark","george","tabard","inn","inner","court","bedrooms","two","sides","withe","kitchen","parlour","athe","front","stables","athe","back","period","years","mid_th","century","coaching_inn","served","place","lodging","coach","carriage","coach","travelers","words","roadhouse","facility","roadhouse","coaching_inn","teams","horse","stagecoach","mail","coach","replaced","tired","teams","fresh","teams","traditionally","seven","miles","apart","buthis","depended","much","terrain","file","boston","thumb","house","boston","house","boston","united_states","luxury","hotel","firsto","provide","indoor","plumbing","english","towns","many","ten","inn","rivalry","intense","income","stagecoach","operators","revenue","food_andrink","supplied","wealthy","passengers","thend","century","coaching_inns","run","professionally","regular","timetable","followed","fixed","menus","era","stage","mail","coach","travel","around","bath","bristol","somerset","roy","inns","began","cater","clients","mid_th","century","consequently","grew","level","service","provided","one","first","hotels","modern","sense","royal","clarence","hotel","opened","exeter","although","idea","really","caught","thearly_th","century","claridge","hotel","opened","doors","london","later","changing","name","claridge","hotels","proliferated","throughout","western_europe","north_america","th_century","luxury","hotels","including","savoy","hotel","united_kingdom","c","ritz","chain","hotels","london","paris","house","boston","house","house","united_states","began","spring","later","part","century","catering","extremely","wealthy","clientele","international","scale","hotels","cater","travelers","fromany","countries","none","country","travel_industry","class","wikitable","sortable","border","country","hotel_rooms","average","rooms","per","hotel","traveling","country","annual","united_states","china","japan","italy","germany","spain","mexico","united_kingdom","france","thailand","indonesia","greece","brazil","turkey","austria","russia","global","total","hotel","operations","vary","size","function","cost","hotels","major","hospitality","companies","operate","hotels","set","widely","accepted","industry","standards","hotel","types","general","categories","include","following","luxury","hotel","offers","high_quality","amenities","full_service","accommodations","site","full_service","restaurants","highest","level","personalized","professional","service","luxury","hotels","normally","classified","least","four","diamond","aaa","five","diamond","award","five","diamond","rating","american_automobile_association","four","star","classification","five","starating","depending","country","local","classification","standards","examples_include","intercontinental","hotels_resorts","intercontinental","waldorf","astoria","hotels_resorts","waldorf","astoria","four","seasons","hotels_resorts","four","seasons","ritz","carlton","boutique","lifestyle","hotels","boutique_hotel","smaller","independent","non","branded","hotels","often","contain","upscale","facilities","varying","size","unique","intimate","settings","full_service","accommodations","hotels","generally","rooms","less","lifestyle","hotels","branded","properties","appeal","guest","specific","lifestyle","personal","image","typically","full_service","sometimes","classified","luxury","key","characteristic","boutique","lifestyle","hotels","focus","providing","unique","guest","experience","opposed","simply","providing","lodging","examples_include","w","hotels","hotels_restaurants","hotels","full_service","conference","resort","hotels","full_service","hotels","often","provide","wide","array","guest","services","site","facilities","commonly","found","amenities","may_include","site","food","beverage","room","meeting","conference","services","facilities","fitness","center","business","center","full_service","hotels","range","quality","scale","luxury","classification","based_upon","quality","ofacilities","amenities","offered","hotel","examples_include","holiday_inn","sheraton","hotels","hilton","hotels_resorts","hilton","marriott","international","marriott","hyatt","regency","brands","focused","select","service","small","medium_sized","hotel","establishments","offer","limited","number","site","amenities","cater","marketo","specific","demographic","single","focused","select","service","hotels","may","still","offer","full_service","accommodations","may","lack","leisure","amenitiesuch","site","restaurant","swimming_pool","examples_include","hyatt","place","courtyard","marriott","hilton","garden","inn","economy","limited_service","small","medium_sized","hotel","establishments","offer","limited","amount","site","amenities","often","offer","basic","accommodations","little","services","facilities","normally","cater","marketo","specific","demographic","budget","minded","traveler","seeking","accommodation","limited_service","hotels","often","lack","site","restaurant","return","may_offer","limited","complimentary","food","beverage","amenity","site","continental","breakfast","include","budget","hampton","inn","hotels","holiday_inn","express","fairfield","inn","marriott","fairfield","inn","four","points","sheraton","inn","extended_stay","extended_stay","hotel","small","medium_sized","hotels","offer","longer","term","full_service","accommodations","compared","traditional","hotel","extended_stay","hotels","may_offer","non","traditional","pricing","weekly","rate","caters","towards","travelers","ineed","shorterm","accommodations","extended","period","time","similar","limited","select","service","hotels","site","amenities","normally","limited","extended_stay","hotels","lack","site","restaurant","examples_include","suites","suites","suites","hilton","home","suites","hilton","residence","inn","marriott","element","westin","element","extended_stay","hotels","timeshare","andestination","clubs","timeshare","andestination","clubs","form","property","ownership","also_referred","vacation","ownership","involving","purchase","ownership","individual","unit","accommodation","seasonal","usage","specified","period","often","offer","full_service","hotel","site","restaurant","swimming_pools","recreation","grounds","leisure","oriented","amenities","destination","clubs","hand","may_offer","private","private","houses","neighborhood","style","setting","examples","timeshare","brands","include","hilton","grand","vacations","marriott","vacation","club","international","westgate","resorts","disney","vacation","club","holiday_inn","holiday_inn","club","vacations","motel","abbreviation","motor","hotel","small","sized","low","rise","lodging","establishment","similar","limited_service","lower_cost","hotel","direct","access","individual","rooms","car","park","motels","builto","serve","including","travellers","road_trip","vacations","workers","drive","job","travelling","truck_drivers","motels","often","located","adjacento","major","highway","built","inexpensive","land","towns","along","stretches","new","motel","construction","rare","hotel_chains","building","economy","priced","limited_service","franchised","properties","freeway","exits","compete","largely","clientele","largely","market","motels","still","useful","less","populated","areas","driving","travelers","buthe","populated","area","becomes","hotels","move","meethe","demand","accommodation","many","motels","remain","operation","joined","national","franchise","chains","often","rebranding","hotels","inns","lodges","management","hotel_management","globally","accepted","professional","career","field","academic","field","study","degree","programsuch","hospitality_management_studies","business","degree","certification","programs","formally","prepare","industry","practice","hotel","establishments","consist","general_manager","serves","thead","executive","often_referred","hotel_manager","department","heads","various","departments","within","hotel","middle","manager","administration","business","administrative","staff","line","level","supervisors","organizational","chart","volume","job","positions","hierarchy","varies","hotel","size","function","often","determined","hotel","ownership","managing","companies","unique","specialty","hotels","historic","inns","boutique_hotels","file","hotel","thumb","left","hotel","astoria","saint","petersburg","hotel","statue","nicholas","russia","nicholas","saint","petersburg","russia","boutique_hotel","typically","hotels","intimate","setting","hotels","gained","tradition","hosting","significant","events","potsdam","germany","derives","fame","potsdam","conference","world_war","ii","allies","winston","harry","joseph","stalin","taj","mahal","palace","tower","one","india","famous","historic","hotels","association_withe","indian","independence","movement","somestablishments","particular","meal","beverage","case","withe","waldorf","astoria","hotel","waldorf","astoria","inew_york_city","united_states","waldorf","salad","first","created","hotel","viennaustria","home","others","achieved","fame","association","dishes","cocktails","created","hotel","de","paris","invented","raffles","hotel","singapore","singapore","cocktail","devised","file","hotel","ritz","thumb","right","h_tel","ritz","paris_france","number","hotels","haventered","popular_culture","ritz","london","hotel","ritz","hotel","london","association","irving","berlin","irving","berlin","song","ritz","hotel","inew_york_city","famed","meeting_place","literary","group","round","table","hotel","inew_york_city","subject","number","songs","scene","stabbing","nancy","allegedly","resort","hotels","file","wynn","jpg","thumb","right","wynn","las_vegas","united_statesome","hotels","built","specifically","destination","create","captive","casino","amusement_park","holiday","resort","though","course","hotels","always","built","popular_destinations","defining","characteristic","resort","hotel","exists","purely","serve","another","attraction","two","owners","las","tradition","one","luxurious","hotels","concentrated","area","trend","extended","worldwide","buthe","concentration","las_vegas","istill","world","highest","world","twenty","five","largest","hotels","room","count","strip","total","europe","center","might","considered","chain","resort","sites","largely","man_made","though","set","country","park","captive","trade","whereas","holiday","camp","probably","considered","resort","set","holiday","destinations","existed","camps","hotels","file","photo","ramey","loganjpg","thumb","right_upright","rms","queen","mary","long_beach_california","united_states","burj","arab","hotel","dubai","united_arab_emirates","built","artificial","island","shape","boat","sail","library","hotel","inew_york_city","unique","ten","floors","assigned","one","category","dewey","classification","dewey","system","lucerne","switzerland","converted","used","hotel","luxor","hotel","las","paradise","nevada","united_states","unusual","due","structure","liberty","hotel","boston","used","jail","hotel","finland","collection","glass","allow","watch","northern","lights","built","scotland","completed","former","ocean","liner","long_beach_california","united_states","uses","first","hotel","service","wigwamotel","used","patented","novelty","architecture","motel","room","free","standing","concrete","various","caboose","motel","ored","caboose","inn","properties","built","decommissioned","rail","cars","throughouthe_world","several","hotels","built","converted","bunker","hotels","stern","hotel","switzerland","concrete","mushrooms","former","nuclear","bunker","transformed","hotels","cave","hotels","pedro","antonio","de","named","pedro","antonio","de","n","author","spain","well","aseveral","hotels","turkey","notable","built","natural","cave","rooms","underground","desert","cave","hotel","south_australia","built","remains","mine","cliff","hotels","file","hotel","gran","thumb","top","cliff","hotel","n","located","coast","high","sea_level","hotels","offer","panoramic","views","great","sense","privacy","withouthe","feeling","total","isolation","somexamples","around","globe","hotel","gran","belvedere","hotel","coast","italy","resorts","bali","house","africa","caves","augustus","capri","breathtaking","hotels","capsule","hotels","file","thumb_interior","capsule","hotel","osaka","japan","capsule","hotel","type","hotel","first","introduced","japan","people","sleep","rectangular","containers","day","room","hotels","fill","daytime","occupancy","day","room","hotel","day","rooms","example","inn","suites","near","port","fort_lauderdale","rooms","booked","block","hours","typically","typical","night","similar","transit","hotels","thathey","appeal","travelers","however","unlike","transit","hotels","eliminate","need","go","customs","garden","hotels","garden","hotels","famous","gardens","became","hotels","include","manor","home","garden","designer","william","robinson","william","robinson","designed","charles","barry","rose","garden","geoffrey","ice","snow","hotels","file","icehotel","entre","thumb","ice","hotel","jukkasj","rvi","sweden","ice","hotel","jukkasj","rvi","sweden","first","ice","hotel","world","first","built","built","winter","every","spring","ice","hotels","include","village","finland","hotel","de","canada","also_included","within","larger","ice","complexes","example","snow","hotel","finland","located","within","walls","snow","castle","snow","hotel","part","snow","village","near","finland","referral","hotel","referral","hotel","hotel_chain","offers","branding","independently","operated","hotels","chain","founded","owned","member","hotels","group","many","chains","converted","franchises","largest","surviving","member","owned","chain","best","western","railway","hotels","first","recorded","purpose_built","railway","hotel","great","western","hotel","western","hotel","opened","adjacento","reading","railway_station","shortly","great","western","railway","opened","line","london","building","still","exists","although","used","purposes","years","hotel","member","malmaison","hotel_chain","malmaison","hotel_chain","frequently","expanding","railway","companies","built","grand","hotels","atheir","midland","hotel","manchester","nexto","manchester","central","railway_station","former","manchester","central","station","london","ones","st","railway_station","cross","railway_station","london","also","court","hotel","baker","station","also","canada","grand","railway","hotels","mostly","exclusively","used","traveling","rail","straw","hotels","maya","mont","noble","swiss","alps","first","hotel","europe","built","entirely","straw","due","values","walls","needs","conventional","heating","air_conditioning","system","although","maya","built","altitude","alps","transit","hotels","transit","hotels","short","stay","hotels","typically","used","international_airports","passengers","stay","waiting","change","airplanes","hotels","typically","airport","ando","require","visa","stay","admission","security","treehouse","hotels","built","living","trees","elements","example","near","sweden","costa_rica","tree","house","wildlife","refuge","costa_rica","hotel","national","towers","near","brazil","rio","negro","amazon","rio","negro","amazon","basin","amazon","tree","houses","turkey","underwater","hotels","file","thumb","first","restaurant","athe","conrad","hotels","conrad","maldives","island","resort","hotels","accommodation","underwater","inn","lake","sweden","project","dubai","would","suites","bottom","persian","gulf","jules","lodge","key","florida","diving","access","rooms","overwater","hotels","file","suite","deck","service","jpg","thumb","overwater","bungalow","island","resort","maldives","resort","island","island","archipelago","contains","resorts","hotels","overwater","restaurants","tourist_attractions","amenities","maldives","overwater","resorts","largest","guinness_world_records","listed","first_world","hotel","genting","highlands","world","largest","hotel","total","rooms","genting","first_world","recognized","world","largest","hotel","hotel","moscow","beds","followed","venetian","las_vegas","complex","las_vegas","rooms","mgm","grand","las_vegas","complex","rooms","oldest","according","guinness","book","world_records","oldest","hotel","operation","onsen","japan","hotel","first_opened","operated","family","forty","six","generations","title","held","ryokan","onsen","area","japan","opened","year","history","onsen","virtually","unknown","ryokan","website_accessed","june_retrieved","ritz","carlton","hong_kong","claims","world","highest","hotel","located","international","hong_kong","ground","level","expensive","purchase","october","insurance","group","based","china","purchased","waldorf","astoria","new_york","manhattan","us_billion","making_ithe","world","expensive","hotel","ever","sold","file","waldorf","astoria","thumb","right_uprighthe","waldorf","astoria","new_york","expensive","hotel","ever","sold","cost","us_billion","long_term","residence","number","public","figures","notably","chosen","take","semi","permanent","permanent","residence","hotels","fashion","designer","h_tel","ritz","paris","offor","years","inventor","lived","years","life","athe","new_yorker","hotel","died","room","larry","fine","three","family","lived","hotels","due","spending","habits","wife","housekeeping","first","lived","president","hotel","atlanticity","new_jersey","daughter","raised","hotel","hollywood","late","larry","buy","home","los","los_angeles","los","area","los_angeles","waldorf","astoria","hotel","affiliated","waldorf","towers","home","many","famous","persons","years","including","former","president","herbert","hoover","lived","thend","presidency","death","general","douglas","macarthur","lived","last_years","waldorf","towers","composer","cole","porter","also","last_years","life","apartment","athe","waldorf","towers","billionaire","howard","hughes","lived","hotels","years","life","primarily","las_vegas","well","beverly_hills","boston","bahamas","london","nassau","bahamas","nassau","vancouver","others","wife","vera","lived","palace","hotel","switzerland","death","harris","lived","athe","savoy","hotel","london","hotel","susan","scott","taken","building","shortly","death","raised","hand","told","diners","food","home","suite","home","bbc_news","retrieved","egyptian","actor","ahmed","actor","ahmed","lived","last_years","hilton","worldwide","hilton","hotel","cairo","british","entrepreneur","jack","lyons","jack","lyons","lived","hotel","switzerland","several_years","death","american","actress","lived","savoy","hotel","london","decade","composer","lived","almost","years","death","apartment","inside","palace","hotel","buenos_aires","one","exclusive","hotels","city","see_also","list","hotels","lists","hotels","list","brand","hotels","list","defunct","hotel_chains","casino","casino","hotels","list","adjectival","niche","tourismarkets","industry","careers","bellhop","concierge","front_desk","clerk","type","clerk","position","clerk","general_manager","hotels","general_manager","trevpar","hotel","profitability","hospitality_industry","hotel","rating","innkeeper","night_auditor","property","tourism","human","habitation","types","apartment","hotel","boutique_hotel","cruise_ship","type","building","bungalow","eco","hotel","guest","house","glamping","homestay","hospitality_service","hostal","category_human","habitats","human","habitats","inn","serviced","apartment","vacation_rental","pop","hotel","references_furthereading","category_hotels","category_buildings","structures","type","category_hospitality","accommodations","category_travel","technology"],"clean_bigrams":[["peninsula","paris"],["paris","hotel"],["hotel","x"],["x","px"],["establishmenthat","provides"],["provides","paid"],["paid","lodging"],["shorterm","basis"],["basis","facilities"],["facilities","provided"],["provided","may"],["may","range"],["modest","quality"],["small","room"],["large","suites"],["bigger","higher"],["higher","quality"],["quality","beds"],["kitchen","facilities"],["suite","bathroom"],["priced","hotels"],["hotels","may"],["may","offer"],["offer","basic"],["basic","guest"],["guest","services"],["facilities","larger"],["larger","higher"],["higher","priced"],["priced","hotels"],["hotels","may"],["may","provide"],["provide","additional"],["additional","guest"],["guest","facilitiesuch"],["swimming","pool"],["pool","business"],["business","centre"],["computers","printers"],["event","facilities"],["facilities","tennis"],["basketball","courts"],["restaurants","day"],["day","spand"],["spand","social"],["social","function"],["function","services"],["services","hotel"],["hotel","rooms"],["usually","room"],["room","numbered"],["smaller","hotels"],["allow","guests"],["boutique","high"],["high","end"],["end","hotels"],["custom","decorated"],["hotels","offer"],["offer","meals"],["board","arrangement"],["united","kingdom"],["serve","food"],["food","andrinks"],["guests","within"],["within","certain"],["certain","stated"],["stated","hours"],["japan","capsule"],["capsule","hotel"],["tiny","room"],["room","suitable"],["shared","bathroom"],["bathroom","facilities"],["facilities","file"],["file","hotel"],["typical","hotel"],["hotel","room"],["television","x"],["x","px"],["modern","hotel"],["medieval","europe"],["mid","th"],["th","century"],["century","coaching"],["coaching","inn"],["inn","served"],["coach","carriage"],["carriage","coach"],["coach","travelers"],["travelers","inns"],["inns","began"],["richer","clients"],["mid","th"],["th","century"],["century","one"],["first","hotels"],["modern","sense"],["hotels","proliferated"],["proliferated","throughout"],["throughout","western"],["western","europe"],["north","america"],["thearly","th"],["th","century"],["luxury","hotels"],["hotels","began"],["later","part"],["th","century"],["century","hotel"],["hotel","operations"],["operations","vary"],["size","function"],["major","hospitality"],["hospitality","companies"],["set","industry"],["industry","standards"],["hotel","types"],["upscale","full"],["full","service"],["service","hotel"],["hotel","facility"],["facility","offers"],["offers","luxury"],["luxury","goods"],["goods","luxury"],["luxury","amenities"],["amenities","full"],["full","service"],["service","accommodations"],["site","restaurant"],["highest","level"],["personalized","service"],["concierge","room"],["room","service"],["clothes","pressing"],["pressing","staff"],["staff","conference"],["resort","hotels"],["hotels","full"],["full","service"],["service","hotels"],["hotels","often"],["often","contain"],["contain","upscale"],["upscale","full"],["full","service"],["service","facilities"],["large","number"],["number","ofull"],["ofull","service"],["service","accommodations"],["site","full"],["full","service"],["service","restaurant"],["site","amenity"],["amenity","amenities"],["amenities","boutique"],["boutique","hotel"],["smaller","independent"],["independent","non"],["non","branded"],["branded","hotels"],["hotels","often"],["often","contain"],["contain","upscale"],["medium","sized"],["sized","hotel"],["hotel","establishments"],["establishments","offer"],["limited","amount"],["site","amenity"],["amenity","amenities"],["amenities","economy"],["economy","hotels"],["medium","sized"],["sized","hotel"],["hotel","establishments"],["establishments","offer"],["offer","basic"],["basic","accommodations"],["services","extended"],["extended","stay"],["stay","hotel"],["medium","sized"],["sized","hotels"],["hotels","offer"],["offer","longer"],["longer","term"],["term","full"],["full","service"],["service","accommodations"],["accommodations","compared"],["traditional","hotel"],["hotel","timeshare"],["timeshare","andestination"],["andestination","clubs"],["property","ownership"],["ownership","involving"],["involving","ownership"],["individual","unit"],["seasonal","usage"],["small","sized"],["sized","low"],["low","rise"],["rise","lodging"],["direct","access"],["individual","rooms"],["car","park"],["park","boutique"],["boutique","hotel"],["typically","hotels"],["intimate","setting"],["hotels","haventered"],["popular","culture"],["ritz","london"],["london","hotel"],["hotel","ritz"],["ritz","hotel"],["hotels","built"],["built","specifically"],["holiday","resort"],["resort","hotel"],["hotel","establishments"],["general","manager"],["thead","executive"],["executive","often"],["often","referred"],["hotel","manager"],["manager","department"],["department","heads"],["various","departments"],["departments","within"],["food","service"],["service","middle"],["middle","manager"],["business","administrative"],["administrative","staff"],["line","level"],["level","supervisors"],["organizational","chart"],["job","positions"],["hierarchy","varies"],["hotel","size"],["size","function"],["often","determined"],["hotel","ownership"],["managing","companies"],["word","hotel"],["french","tel"],["tel","coming"],["french","version"],["building","seeing"],["seeing","frequent"],["frequent","visitors"],["providing","care"],["care","rather"],["place","offering"],["offering","accommodation"],["contemporary","french"],["french","usage"],["usage","h"],["h","tel"],["thenglish","term"],["h","tel"],["old","meaning"],["h","tel"],["place","namesuch"],["h","tel"],["tel","dieu"],["dieu","de"],["de","paris"],["paris","h"],["h","tel"],["tel","dieu"],["paris","whichas"],["hospital","since"],["middle","ages"],["french","spelling"],["spelling","withe"],["also","used"],["thearlier","hostel"],["hostel","spelling"],["time","took"],["closely","related"],["hotels","usually"],["usually","take"],["definite","article"],["article","hence"],["astoria","hotel"],["astoria","file"],["file","tabard"],["tabard","inn"],["inn","mid"],["righthumb","uprighthe"],["uprighthe","tabard"],["tabard","inn"],["inn","london"],["london","borough"],["southwark","london"],["london","facilities"],["facilities","offering"],["offering","hospitality"],["thearliest","civilizations"],["greco","roman"],["roman","culture"],["culture","hospitals"],["middle","ages"],["ages","various"],["various","religious"],["religious","orders"],["monastery","monasteries"],["would","offer"],["offer","accommodation"],["modern","hotel"],["medieval","europe"],["europe","possibly"],["possibly","dating"],["dating","back"],["ancient","rome"],["would","provide"],["travelers","including"],["including","food"],["lodging","stable"],["mail","coach"],["coach","famous"],["famous","london"],["london","examples"],["inns","include"],["george","southwark"],["southwark","george"],["tabard","inn"],["inner","court"],["two","sides"],["sides","withe"],["withe","kitchen"],["parlour","athe"],["athe","front"],["stables","athe"],["athe","back"],["mid","th"],["th","century"],["century","coaching"],["coaching","inn"],["inn","served"],["coach","carriage"],["carriage","coach"],["coach","travelers"],["roadhouse","facility"],["facility","roadhouse"],["roadhouse","coaching"],["coaching","inn"],["mail","coach"],["replaced","tired"],["tired","teams"],["fresh","teams"],["teams","traditionally"],["seven","miles"],["miles","apart"],["apart","buthis"],["buthis","depended"],["terrain","file"],["house","boston"],["house","boston"],["boston","united"],["united","states"],["luxury","hotel"],["firsto","provide"],["provide","indoor"],["indoor","plumbing"],["english","towns"],["stagecoach","operators"],["food","andrink"],["andrink","supplied"],["wealthy","passengers"],["century","coaching"],["coaching","inns"],["regular","timetable"],["fixed","menus"],["mail","coach"],["coach","travel"],["around","bath"],["bath","bristol"],["somerset","roy"],["inns","began"],["mid","th"],["th","century"],["consequently","grew"],["service","provided"],["provided","one"],["first","hotels"],["modern","sense"],["royal","clarence"],["clarence","hotel"],["hotel","opened"],["really","caught"],["thearly","th"],["th","century"],["hotel","opened"],["london","later"],["later","changing"],["hotels","proliferated"],["proliferated","throughout"],["throughout","western"],["western","europe"],["north","america"],["th","century"],["luxury","hotels"],["hotels","including"],["savoy","hotel"],["united","kingdom"],["ritz","chain"],["house","boston"],["united","states"],["states","began"],["later","part"],["century","catering"],["extremely","wealthy"],["wealthy","clientele"],["clientele","international"],["international","scale"],["scale","hotels"],["hotels","cater"],["travelers","fromany"],["fromany","countries"],["none","country"],["travel","industry"],["industry","class"],["class","wikitable"],["wikitable","sortable"],["sortable","border"],["border","country"],["country","hotel"],["hotel","rooms"],["average","rooms"],["rooms","per"],["per","hotel"],["country","annual"],["annual","united"],["united","states"],["states","china"],["china","japan"],["japan","italy"],["italy","germany"],["germany","spain"],["spain","mexico"],["mexico","united"],["united","kingdom"],["kingdom","france"],["france","thailand"],["indonesia","greece"],["greece","brazil"],["brazil","turkey"],["turkey","austria"],["austria","russia"],["global","total"],["total","hotel"],["hotel","operations"],["operations","vary"],["size","function"],["major","hospitality"],["hospitality","companies"],["operate","hotels"],["set","widely"],["widely","accepted"],["accepted","industry"],["industry","standards"],["hotel","types"],["types","general"],["general","categories"],["categories","include"],["luxury","hotel"],["hotel","offers"],["offers","high"],["high","quality"],["quality","amenities"],["amenities","full"],["full","service"],["service","accommodations"],["site","full"],["full","service"],["service","restaurants"],["highest","level"],["professional","service"],["service","luxury"],["luxury","hotels"],["normally","classified"],["four","diamond"],["aaa","five"],["five","diamond"],["diamond","award"],["award","five"],["five","diamond"],["diamond","rating"],["american","automobile"],["automobile","association"],["star","classification"],["classification","five"],["five","starating"],["starating","depending"],["local","classification"],["classification","standards"],["standards","examples"],["examples","include"],["include","intercontinental"],["intercontinental","hotels"],["hotels","resorts"],["resorts","intercontinental"],["intercontinental","waldorf"],["waldorf","astoria"],["astoria","hotels"],["hotels","resorts"],["resorts","waldorf"],["waldorf","astoria"],["astoria","four"],["four","seasons"],["seasons","hotels"],["hotels","resorts"],["resorts","four"],["four","seasons"],["ritz","carlton"],["carlton","boutique"],["lifestyle","hotels"],["hotels","boutique"],["boutique","hotel"],["smaller","independent"],["independent","non"],["non","branded"],["branded","hotels"],["hotels","often"],["often","contain"],["contain","upscale"],["upscale","facilities"],["varying","size"],["intimate","settings"],["full","service"],["service","accommodations"],["generally","rooms"],["less","lifestyle"],["lifestyle","hotels"],["branded","properties"],["specific","lifestyle"],["personal","image"],["typically","full"],["full","service"],["sometimes","classified"],["key","characteristic"],["lifestyle","hotels"],["unique","guest"],["guest","experience"],["simply","providing"],["providing","lodging"],["lodging","examples"],["examples","include"],["include","w"],["w","hotels"],["hotels","restaurants"],["hotels","full"],["full","service"],["service","conference"],["resort","hotels"],["hotels","full"],["full","service"],["service","hotels"],["hotels","often"],["often","provide"],["wide","array"],["guest","services"],["site","facilities"],["facilities","commonly"],["commonly","found"],["found","amenities"],["amenities","may"],["may","include"],["site","food"],["beverage","room"],["room","service"],["service","restaurants"],["restaurants","meeting"],["conference","services"],["facilities","fitness"],["fitness","center"],["business","center"],["center","full"],["full","service"],["service","hotels"],["hotels","range"],["based","upon"],["quality","ofacilities"],["amenities","offered"],["hotel","examples"],["examples","include"],["include","holiday"],["holiday","inn"],["inn","sheraton"],["sheraton","hotels"],["hilton","hotels"],["hotels","resorts"],["resorts","hilton"],["hilton","marriott"],["marriott","international"],["international","marriott"],["hyatt","regency"],["regency","brands"],["brands","focused"],["select","service"],["service","small"],["medium","sized"],["sized","hotel"],["hotel","establishments"],["establishments","offer"],["limited","number"],["site","amenities"],["specific","demographic"],["single","business"],["business","traveler"],["select","service"],["service","hotels"],["hotels","may"],["may","still"],["still","offer"],["offer","full"],["full","service"],["service","accommodations"],["may","lack"],["lack","leisure"],["leisure","amenitiesuch"],["site","restaurant"],["restaurant","swimming"],["swimming","pool"],["pool","examples"],["examples","include"],["include","hyatt"],["hyatt","place"],["place","courtyard"],["hilton","garden"],["garden","inn"],["inn","economy"],["limited","service"],["service","small"],["medium","sized"],["sized","hotel"],["hotel","establishments"],["establishments","offer"],["limited","amount"],["site","amenities"],["often","offer"],["offer","basic"],["basic","accommodations"],["facilities","normally"],["specific","demographic"],["budget","minded"],["minded","traveler"],["traveler","seeking"],["accommodation","limited"],["limited","service"],["service","hotels"],["hotels","often"],["often","lack"],["site","restaurant"],["return","may"],["may","offer"],["limited","complimentary"],["complimentary","food"],["beverage","amenity"],["site","continental"],["continental","breakfast"],["budget","hampton"],["hampton","inn"],["holiday","inn"],["inn","express"],["express","fairfield"],["fairfield","inn"],["marriott","fairfield"],["fairfield","inn"],["inn","four"],["four","points"],["inn","extended"],["extended","stay"],["stay","extended"],["extended","stay"],["stay","hotel"],["medium","sized"],["sized","hotels"],["hotels","offer"],["offer","longer"],["longer","term"],["term","full"],["full","service"],["service","accommodations"],["accommodations","compared"],["traditional","hotel"],["hotel","extended"],["extended","stay"],["stay","hotels"],["hotels","may"],["may","offer"],["offer","non"],["non","traditional"],["traditional","pricing"],["weekly","rate"],["caters","towards"],["towards","travelers"],["travelers","ineed"],["shorterm","accommodations"],["extended","period"],["time","similar"],["select","service"],["service","hotels"],["site","amenities"],["normally","limited"],["extended","stay"],["stay","hotels"],["hotels","lack"],["site","restaurant"],["restaurant","examples"],["examples","include"],["hilton","home"],["home","suites"],["hilton","residence"],["residence","inn"],["marriott","element"],["westin","element"],["extended","stay"],["stay","hotels"],["hotels","timeshare"],["timeshare","andestination"],["andestination","clubs"],["clubs","timeshare"],["timeshare","andestination"],["andestination","clubs"],["property","ownership"],["ownership","also"],["also","referred"],["vacation","ownership"],["ownership","involving"],["individual","unit"],["seasonal","usage"],["specified","period"],["often","offer"],["offer","full"],["full","service"],["service","hotel"],["site","restaurant"],["restaurant","swimming"],["swimming","pools"],["pools","recreation"],["recreation","grounds"],["leisure","oriented"],["oriented","amenities"],["amenities","destination"],["destination","clubs"],["hand","may"],["may","offer"],["private","houses"],["neighborhood","style"],["style","setting"],["setting","examples"],["timeshare","brands"],["brands","include"],["include","hilton"],["hilton","grand"],["grand","vacations"],["vacations","marriott"],["marriott","vacation"],["vacation","club"],["club","international"],["international","westgate"],["westgate","resorts"],["resorts","disney"],["disney","vacation"],["vacation","club"],["holiday","inn"],["inn","holiday"],["holiday","inn"],["inn","club"],["club","vacations"],["motor","hotel"],["small","sized"],["sized","low"],["low","rise"],["rise","lodging"],["lodging","establishment"],["establishment","similar"],["limited","service"],["service","lower"],["lower","cost"],["cost","hotel"],["direct","access"],["individual","rooms"],["car","park"],["park","motels"],["builto","serve"],["serve","road"],["road","travellers"],["travellers","including"],["including","travellers"],["road","trip"],["trip","vacations"],["job","travelling"],["truck","drivers"],["often","located"],["located","adjacento"],["major","highway"],["inexpensive","land"],["along","stretches"],["new","motel"],["motel","construction"],["hotel","chains"],["building","economy"],["economy","priced"],["priced","limited"],["limited","service"],["service","franchised"],["franchised","properties"],["freeway","exits"],["clientele","largely"],["still","useful"],["less","populated"],["populated","areas"],["driving","travelers"],["travelers","buthe"],["area","becomes"],["hotels","move"],["meethe","demand"],["accommodation","many"],["remain","operation"],["joined","national"],["national","franchise"],["franchise","chains"],["chains","often"],["often","rebranding"],["hotels","inns"],["lodges","management"],["management","hotel"],["hotel","management"],["globally","accepted"],["accepted","professional"],["professional","career"],["career","field"],["academic","field"],["study","degree"],["degree","programsuch"],["hospitality","management"],["management","studies"],["business","degree"],["certification","programs"],["programs","formally"],["formally","prepare"],["prepare","hotel"],["hotel","managers"],["industry","practice"],["hotel","establishments"],["establishments","consist"],["general","manager"],["thead","executive"],["executive","often"],["often","referred"],["hotel","manager"],["manager","department"],["department","heads"],["various","departments"],["departments","within"],["hotel","middle"],["middle","manager"],["business","administrative"],["administrative","staff"],["line","level"],["level","supervisors"],["organizational","chart"],["job","positions"],["hierarchy","varies"],["hotel","size"],["size","function"],["often","determined"],["hotel","ownership"],["managing","companies"],["companies","unique"],["specialty","hotels"],["hotels","historic"],["historic","inns"],["boutique","hotels"],["hotels","file"],["file","hotel"],["thumb","left"],["left","hotel"],["hotel","astoria"],["astoria","saint"],["saint","petersburg"],["petersburg","hotel"],["saint","petersburg"],["petersburg","russia"],["russia","boutique"],["boutique","hotel"],["typically","hotels"],["intimate","setting"],["hosting","significant"],["significant","events"],["potsdam","germany"],["potsdam","conference"],["world","war"],["war","ii"],["ii","allies"],["allies","winston"],["joseph","stalin"],["taj","mahal"],["mahal","palace"],["palace","tower"],["historic","hotels"],["association","withe"],["withe","indian"],["indian","independence"],["independence","movement"],["movement","somestablishments"],["particular","meal"],["case","withe"],["withe","waldorf"],["waldorf","astoria"],["astoria","hotel"],["hotel","waldorf"],["waldorf","astoria"],["astoria","inew"],["inew","york"],["york","city"],["city","united"],["united","states"],["waldorf","salad"],["first","created"],["viennaustria","home"],["achieved","fame"],["cocktails","created"],["hotel","de"],["de","paris"],["raffles","hotel"],["devised","file"],["file","hotel"],["hotel","ritz"],["thumb","right"],["right","h"],["h","tel"],["tel","ritz"],["ritz","paris"],["hotels","haventered"],["popular","culture"],["ritz","london"],["london","hotel"],["hotel","ritz"],["ritz","hotel"],["irving","berlin"],["berlin","irving"],["irving","berlin"],["berlin","song"],["ritz","hotel"],["hotel","inew"],["inew","york"],["york","city"],["meeting","place"],["literary","group"],["round","table"],["hotel","inew"],["inew","york"],["york","city"],["resort","hotels"],["hotels","file"],["file","wynn"],["wynn","jpg"],["jpg","thumb"],["thumb","right"],["right","wynn"],["wynn","las"],["las","vegas"],["vegas","united"],["united","statesome"],["statesome","hotels"],["hotels","built"],["built","specifically"],["amusement","park"],["holiday","resort"],["course","hotels"],["popular","destinations"],["defining","characteristic"],["resort","hotel"],["exists","purely"],["serve","another"],["another","attraction"],["concentrated","area"],["worldwide","buthe"],["buthe","concentration"],["las","vegas"],["vegas","istill"],["twenty","five"],["five","largest"],["largest","hotels"],["room","count"],["europe","center"],["largely","man"],["man","made"],["made","though"],["though","set"],["country","park"],["captive","trade"],["trade","whereas"],["whereas","holiday"],["holiday","camp"],["holiday","destinations"],["hotels","file"],["ramey","loganjpg"],["loganjpg","thumb"],["thumb","right"],["right","upright"],["upright","rms"],["rms","queen"],["queen","mary"],["mary","long"],["long","beach"],["beach","california"],["california","united"],["united","states"],["arab","hotel"],["dubai","united"],["united","arab"],["arab","emirates"],["emirates","built"],["artificial","island"],["boat","sail"],["library","hotel"],["hotel","inew"],["inew","york"],["york","city"],["ten","floors"],["assigned","one"],["one","category"],["classification","dewey"],["lucerne","switzerland"],["paradise","nevada"],["nevada","united"],["united","states"],["unusual","due"],["liberty","hotel"],["boston","used"],["jail","hotel"],["northern","lights"],["lights","built"],["scotland","completed"],["former","ocean"],["ocean","liner"],["long","beach"],["beach","california"],["california","united"],["united","states"],["states","uses"],["first","hotel"],["used","patented"],["patented","novelty"],["novelty","architecture"],["motel","room"],["free","standing"],["standing","concrete"],["various","caboose"],["caboose","motel"],["motel","ored"],["ored","caboose"],["caboose","inn"],["inn","properties"],["decommissioned","rail"],["rail","cars"],["cars","throughouthe"],["throughouthe","world"],["several","hotels"],["hotels","built"],["bunker","hotels"],["stern","hotel"],["concrete","mushrooms"],["former","nuclear"],["nuclear","bunker"],["hotels","cave"],["cave","hotels"],["pedro","antonio"],["antonio","de"],["pedro","antonio"],["antonio","de"],["n","author"],["well","aseveral"],["aseveral","hotels"],["natural","cave"],["rooms","underground"],["desert","cave"],["cave","hotel"],["south","australia"],["mine","cliff"],["cliff","hotels"],["hotels","file"],["file","hotel"],["n","located"],["sea","level"],["hotels","offer"],["panoramic","views"],["great","sense"],["privacy","withouthe"],["withouthe","feeling"],["total","isolation"],["isolation","somexamples"],["belvedere","hotel"],["coast","italy"],["capri","breathtaking"],["hotels","capsule"],["capsule","hotels"],["hotels","file"],["thumb","interior"],["capsule","hotel"],["osaka","japan"],["japan","capsule"],["capsule","hotel"],["hotel","first"],["first","introduced"],["people","sleep"],["rectangular","containers"],["containers","day"],["day","room"],["hotels","fill"],["fill","daytime"],["daytime","occupancy"],["day","room"],["room","hotel"],["hotel","day"],["day","rooms"],["suites","near"],["near","port"],["fort","lauderdale"],["hours","typically"],["typical","night"],["transit","hotels"],["thathey","appeal"],["travelers","however"],["however","unlike"],["unlike","transit"],["transit","hotels"],["customs","garden"],["garden","hotels"],["hotels","garden"],["garden","hotels"],["hotels","famous"],["became","hotels"],["hotels","include"],["garden","designer"],["designer","william"],["william","robinson"],["william","robinson"],["charles","barry"],["rose","garden"],["ice","snow"],["hotels","file"],["file","icehotel"],["icehotel","entre"],["thumb","ice"],["ice","hotel"],["jukkasj","rvi"],["rvi","sweden"],["ice","hotel"],["jukkasj","rvi"],["rvi","sweden"],["first","ice"],["ice","hotel"],["world","first"],["first","built"],["every","spring"],["ice","hotels"],["hotels","include"],["hotel","de"],["included","within"],["within","larger"],["larger","ice"],["ice","complexes"],["snow","hotel"],["located","within"],["snow","castle"],["snow","hotel"],["snow","village"],["village","near"],["finland","referral"],["referral","hotel"],["referral","hotel"],["hotel","chain"],["offers","branding"],["independently","operated"],["operated","hotels"],["member","hotels"],["group","many"],["largest","surviving"],["surviving","member"],["member","owned"],["owned","chain"],["best","western"],["western","railway"],["railway","hotels"],["first","recorded"],["recorded","purpose"],["purpose","built"],["built","railway"],["railway","hotel"],["great","western"],["western","hotel"],["western","hotel"],["hotel","opened"],["opened","adjacento"],["adjacento","reading"],["reading","railway"],["railway","station"],["great","western"],["western","railway"],["railway","opened"],["building","still"],["still","exists"],["malmaison","hotel"],["hotel","chain"],["chain","malmaison"],["malmaison","hotel"],["hotel","chain"],["chain","frequently"],["frequently","expanding"],["expanding","railway"],["railway","companies"],["companies","built"],["built","grand"],["grand","hotels"],["hotels","atheir"],["midland","hotel"],["hotel","manchester"],["manchester","nexto"],["nexto","manchester"],["manchester","central"],["central","railway"],["railway","station"],["former","manchester"],["manchester","central"],["central","station"],["station","london"],["railway","station"],["cross","railway"],["railway","station"],["station","london"],["london","also"],["court","hotel"],["also","canada"],["grand","railway"],["railway","hotels"],["exclusively","used"],["rail","straw"],["mont","noble"],["swiss","alps"],["first","hotel"],["europe","built"],["built","entirely"],["conventional","heating"],["air","conditioning"],["conditioning","system"],["system","although"],["alps","transit"],["transit","hotels"],["hotels","transit"],["transit","hotels"],["short","stay"],["stay","hotels"],["hotels","typically"],["typically","used"],["international","airports"],["change","airplanes"],["hotels","typically"],["hotels","built"],["living","trees"],["costa","rica"],["rica","tree"],["tree","house"],["wildlife","refuge"],["refuge","costa"],["costa","rica"],["towers","near"],["rio","negro"],["negro","amazon"],["amazon","rio"],["rio","negro"],["negro","amazon"],["amazon","basin"],["basin","amazon"],["tree","houses"],["turkey","underwater"],["underwater","hotels"],["hotels","file"],["restaurant","athe"],["athe","conrad"],["conrad","hotels"],["hotels","conrad"],["conrad","maldives"],["island","resort"],["resort","hotels"],["accommodation","underwater"],["dubai","would"],["persian","gulf"],["rooms","overwater"],["overwater","hotels"],["hotels","file"],["suite","deck"],["deck","service"],["service","jpg"],["jpg","thumb"],["overwater","bungalow"],["island","resort"],["resort","island"],["contains","resorts"],["resorts","hotels"],["hotels","overwater"],["restaurants","tourist"],["tourist","attractions"],["amenities","maldives"],["resorts","largest"],["guinness","world"],["world","records"],["records","listed"],["first","world"],["world","hotel"],["genting","highlands"],["largest","hotel"],["rooms","genting"],["first","world"],["world","recognized"],["largest","hotel"],["venetian","las"],["las","vegas"],["vegas","complex"],["las","vegas"],["vegas","rooms"],["mgm","grand"],["grand","las"],["las","vegas"],["vegas","complex"],["complex","rooms"],["rooms","oldest"],["oldest","according"],["guinness","book"],["world","records"],["oldest","hotel"],["hotel","first"],["first","opened"],["family","forty"],["forty","six"],["six","generations"],["onsen","area"],["virtually","unknown"],["ryokan","website"],["website","accessed"],["accessed","june"],["ritz","carlton"],["carlton","hong"],["hong","kong"],["kong","claims"],["highest","hotel"],["top","floors"],["hong","kong"],["ground","level"],["expensive","purchase"],["insurance","group"],["group","based"],["china","purchased"],["waldorf","astoria"],["astoria","new"],["new","york"],["us","billion"],["billion","making"],["making","ithe"],["ithe","world"],["expensive","hotel"],["hotel","ever"],["ever","sold"],["sold","file"],["file","waldorf"],["waldorf","astoria"],["thumb","right"],["right","uprighthe"],["uprighthe","waldorf"],["waldorf","astoria"],["astoria","new"],["new","york"],["expensive","hotel"],["hotel","ever"],["ever","sold"],["sold","cost"],["cost","us"],["us","billion"],["long","term"],["term","residence"],["public","figures"],["notably","chosen"],["semi","permanent"],["permanent","residence"],["hotels","fashion"],["fashion","designer"],["h","tel"],["tel","ritz"],["ritz","paris"],["years","inventor"],["life","athe"],["athe","new"],["new","yorker"],["yorker","hotel"],["larry","fine"],["family","lived"],["hotels","due"],["spending","habits"],["first","lived"],["president","hotel"],["atlanticity","new"],["new","jersey"],["larry","buy"],["los","angeles"],["angeles","los"],["los","angeles"],["waldorf","astoria"],["astoria","hotel"],["affiliated","waldorf"],["waldorf","towers"],["many","famous"],["famous","persons"],["years","including"],["including","former"],["former","president"],["president","herbert"],["herbert","hoover"],["general","douglas"],["douglas","macarthur"],["macarthur","lived"],["last","years"],["waldorf","towers"],["composer","cole"],["cole","porter"],["porter","also"],["last","years"],["apartment","athe"],["athe","waldorf"],["waldorf","towers"],["towers","billionaire"],["billionaire","howard"],["howard","hughes"],["hughes","lived"],["life","primarily"],["las","vegas"],["vegas","well"],["beverly","hills"],["hills","boston"],["nassau","bahamas"],["bahamas","nassau"],["nassau","vancouver"],["wife","vera"],["vera","lived"],["palace","hotel"],["harris","lived"],["lived","athe"],["athe","savoy"],["savoy","hotel"],["london","hotel"],["susan","scott"],["hand","told"],["food","home"],["home","suite"],["suite","home"],["home","bbc"],["bbc","news"],["news","retrieved"],["egyptian","actor"],["actor","ahmed"],["actor","ahmed"],["last","years"],["hilton","worldwide"],["worldwide","hilton"],["hilton","hotel"],["hotel","cairo"],["cairo","british"],["british","entrepreneur"],["entrepreneur","jack"],["jack","lyons"],["jack","lyons"],["lyons","lived"],["several","years"],["american","actress"],["savoy","hotel"],["lived","almost"],["almost","years"],["apartment","inside"],["palace","hotel"],["buenos","aires"],["aires","one"],["exclusive","hotels"],["city","see"],["see","also"],["also","list"],["hotels","lists"],["hotels","list"],["brand","hotels"],["hotels","list"],["defunct","hotel"],["hotel","chains"],["chains","casino"],["casino","hotels"],["hotels","list"],["niche","tourismarkets"],["tourismarkets","industry"],["careers","bellhop"],["bellhop","concierge"],["concierge","front"],["front","desk"],["desk","clerk"],["clerk","position"],["position","clerk"],["clerk","general"],["general","manager"],["manager","hotels"],["hotels","general"],["general","manager"],["trevpar","hotel"],["hotel","profitability"],["hospitality","industry"],["industry","hotel"],["hotel","rating"],["rating","innkeeper"],["innkeeper","night"],["night","auditor"],["auditor","property"],["tourism","human"],["human","habitation"],["habitation","types"],["types","apartment"],["apartment","hotel"],["hotel","boutique"],["boutique","hotel"],["cruise","ship"],["bungalow","eco"],["eco","hotel"],["hotel","guest"],["guest","house"],["house","glamping"],["glamping","homestay"],["homestay","hospitality"],["hospitality","service"],["service","hostal"],["hostal","category"],["category","human"],["human","habitats"],["habitats","human"],["human","habitats"],["habitats","inn"],["inn","serviced"],["serviced","apartment"],["apartment","vacation"],["vacation","rental"],["rental","pop"],["hotel","references"],["references","furthereading"],["furthereading","category"],["category","hotels"],["hotels","category"],["category","buildings"],["type","category"],["category","hospitality"],["hospitality","management"],["management","category"],["category","hospitality"],["hospitality","occupations"],["occupations","category"],["category","tourist"],["tourist","accommodations"],["accommodations","category"],["category","travel"],["travel","technology"]],"all_collocations":["peninsula paris","paris hotel","hotel x","x px","establishmenthat provides","provides paid","paid lodging","shorterm basis","basis facilities","facilities provided","provided may","may range","modest quality","small room","large suites","bigger higher","higher quality","quality beds","kitchen facilities","suite bathroom","priced hotels","hotels may","may offer","offer basic","basic guest","guest services","facilities larger","larger higher","higher priced","priced hotels","hotels may","may provide","provide additional","additional guest","guest facilitiesuch","swimming pool","pool business","business centre","computers printers","event facilities","facilities tennis","basketball courts","restaurants day","day spand","spand social","social function","function services","services hotel","hotel rooms","usually room","room numbered","smaller hotels","allow guests","boutique high","high end","end hotels","custom decorated","hotels offer","offer meals","board arrangement","united kingdom","serve food","food andrinks","guests within","within certain","certain stated","stated hours","japan capsule","capsule hotel","tiny room","room suitable","shared bathroom","bathroom facilities","facilities file","file hotel","typical hotel","hotel room","television x","x px","modern hotel","medieval europe","mid th","th century","century coaching","coaching inn","inn served","coach carriage","carriage coach","coach travelers","travelers inns","inns began","richer clients","mid th","th century","century one","first hotels","modern sense","hotels proliferated","proliferated throughout","throughout western","western europe","north america","thearly th","th century","luxury hotels","hotels began","later part","th century","century hotel","hotel operations","operations vary","size function","major hospitality","hospitality companies","set industry","industry standards","hotel types","upscale full","full service","service hotel","hotel facility","facility offers","offers luxury","luxury goods","goods luxury","luxury amenities","amenities full","full service","service accommodations","site restaurant","highest level","personalized service","concierge room","room service","clothes pressing","pressing staff","staff conference","resort hotels","hotels full","full service","service hotels","hotels often","often contain","contain upscale","upscale full","full service","service facilities","large number","number ofull","ofull service","service accommodations","site full","full service","service restaurant","site amenity","amenity amenities","amenities boutique","boutique hotel","smaller independent","independent non","non branded","branded hotels","hotels often","often contain","contain upscale","medium sized","sized hotel","hotel establishments","establishments offer","limited amount","site amenity","amenity amenities","amenities economy","economy hotels","medium sized","sized hotel","hotel establishments","establishments offer","offer basic","basic accommodations","services extended","extended stay","stay hotel","medium sized","sized hotels","hotels offer","offer longer","longer term","term full","full service","service accommodations","accommodations compared","traditional hotel","hotel timeshare","timeshare andestination","andestination clubs","property ownership","ownership involving","involving ownership","individual unit","seasonal usage","small sized","sized low","low rise","rise lodging","direct access","individual rooms","car park","park boutique","boutique hotel","typically hotels","intimate setting","hotels haventered","popular culture","ritz london","london hotel","hotel ritz","ritz hotel","hotels built","built specifically","holiday resort","resort hotel","hotel establishments","general manager","thead executive","executive often","often referred","hotel manager","manager department","department heads","various departments","departments within","food service","service middle","middle manager","business administrative","administrative staff","line level","level supervisors","organizational chart","job positions","hierarchy varies","hotel size","size function","often determined","hotel ownership","managing companies","word hotel","french tel","tel coming","french version","building seeing","seeing frequent","frequent visitors","providing care","care rather","place offering","offering accommodation","contemporary french","french usage","usage h","h tel","thenglish term","h tel","old meaning","h tel","place namesuch","h tel","tel dieu","dieu de","de paris","paris h","h tel","tel dieu","paris whichas","hospital since","middle ages","french spelling","spelling withe","also used","thearlier hostel","hostel spelling","time took","closely related","hotels usually","usually take","definite article","article hence","astoria hotel","astoria file","file tabard","tabard inn","inn mid","righthumb uprighthe","uprighthe tabard","tabard inn","inn london","london borough","southwark london","london facilities","facilities offering","offering hospitality","thearliest civilizations","greco roman","roman culture","culture hospitals","middle ages","ages various","various religious","religious orders","monastery monasteries","would offer","offer accommodation","modern hotel","medieval europe","europe possibly","possibly dating","dating back","ancient rome","would provide","travelers including","including food","lodging stable","mail coach","coach famous","famous london","london examples","inns include","george southwark","southwark george","tabard inn","inner court","two sides","sides withe","withe kitchen","parlour athe","athe front","stables athe","athe back","mid th","th century","century coaching","coaching inn","inn served","coach carriage","carriage coach","coach travelers","roadhouse facility","facility roadhouse","roadhouse coaching","coaching inn","mail coach","replaced tired","tired teams","fresh teams","teams traditionally","seven miles","miles apart","apart buthis","buthis depended","terrain file","house boston","house boston","boston united","united states","luxury hotel","firsto provide","provide indoor","indoor plumbing","english towns","stagecoach operators","food andrink","andrink supplied","wealthy passengers","century coaching","coaching inns","regular timetable","fixed menus","mail coach","coach travel","around bath","bath bristol","somerset roy","inns began","mid th","th century","consequently grew","service provided","provided one","first hotels","modern sense","royal clarence","clarence hotel","hotel opened","really caught","thearly th","th century","hotel opened","london later","later changing","hotels proliferated","proliferated throughout","throughout western","western europe","north america","th century","luxury hotels","hotels including","savoy hotel","united kingdom","ritz chain","house boston","united states","states began","later part","century catering","extremely wealthy","wealthy clientele","clientele international","international scale","scale hotels","hotels cater","travelers fromany","fromany countries","none country","travel industry","industry class","sortable border","border country","country hotel","hotel rooms","average rooms","rooms per","per hotel","country annual","annual united","united states","states china","china japan","japan italy","italy germany","germany spain","spain mexico","mexico united","united kingdom","kingdom france","france thailand","indonesia greece","greece brazil","brazil turkey","turkey austria","austria russia","global total","total hotel","hotel operations","operations vary","size function","major hospitality","hospitality companies","operate hotels","set widely","widely accepted","accepted industry","industry standards","hotel types","types general","general categories","categories include","luxury hotel","hotel offers","offers high","high quality","quality amenities","amenities full","full service","service accommodations","site full","full service","service restaurants","highest level","professional service","service luxury","luxury hotels","normally classified","four diamond","aaa five","five diamond","diamond award","award five","five diamond","diamond rating","american automobile","automobile association","star classification","classification five","five starating","starating depending","local classification","classification standards","standards examples","examples include","include intercontinental","intercontinental hotels","hotels resorts","resorts intercontinental","intercontinental waldorf","waldorf astoria","astoria hotels","hotels resorts","resorts waldorf","waldorf astoria","astoria four","four seasons","seasons hotels","hotels resorts","resorts four","four seasons","ritz carlton","carlton boutique","lifestyle hotels","hotels boutique","boutique hotel","smaller independent","independent non","non branded","branded hotels","hotels often","often contain","contain upscale","upscale facilities","varying size","intimate settings","full service","service accommodations","generally rooms","less lifestyle","lifestyle hotels","branded properties","specific lifestyle","personal image","typically full","full service","sometimes classified","key characteristic","lifestyle hotels","unique guest","guest experience","simply providing","providing lodging","lodging examples","examples include","include w","w hotels","hotels restaurants","hotels full","full service","service conference","resort hotels","hotels full","full service","service hotels","hotels often","often provide","wide array","guest services","site facilities","facilities commonly","commonly found","found amenities","amenities may","may include","site food","beverage room","room service","service restaurants","restaurants meeting","conference services","facilities fitness","fitness center","business center","center full","full service","service hotels","hotels range","based upon","quality ofacilities","amenities offered","hotel examples","examples include","include holiday","holiday inn","inn sheraton","sheraton hotels","hilton hotels","hotels resorts","resorts hilton","hilton marriott","marriott international","international marriott","hyatt regency","regency brands","brands focused","select service","service small","medium sized","sized hotel","hotel establishments","establishments offer","limited number","site amenities","specific demographic","single business","business traveler","select service","service hotels","hotels may","may still","still offer","offer full","full service","service accommodations","may lack","lack leisure","leisure amenitiesuch","site restaurant","restaurant swimming","swimming pool","pool examples","examples include","include hyatt","hyatt place","place courtyard","hilton garden","garden inn","inn economy","limited service","service small","medium sized","sized hotel","hotel establishments","establishments offer","limited amount","site amenities","often offer","offer basic","basic accommodations","facilities normally","specific demographic","budget minded","minded traveler","traveler seeking","accommodation limited","limited service","service hotels","hotels often","often lack","site restaurant","return may","may offer","limited complimentary","complimentary food","beverage amenity","site continental","continental breakfast","budget hampton","hampton inn","holiday inn","inn express","express fairfield","fairfield inn","marriott fairfield","fairfield inn","inn four","four points","inn extended","extended stay","stay extended","extended stay","stay hotel","medium sized","sized hotels","hotels offer","offer longer","longer term","term full","full service","service accommodations","accommodations compared","traditional hotel","hotel extended","extended stay","stay hotels","hotels may","may offer","offer non","non traditional","traditional pricing","weekly rate","caters towards","towards travelers","travelers ineed","shorterm accommodations","extended period","time similar","select service","service hotels","site amenities","normally limited","extended stay","stay hotels","hotels lack","site restaurant","restaurant examples","examples include","hilton home","home suites","hilton residence","residence inn","marriott element","westin element","extended stay","stay hotels","hotels timeshare","timeshare andestination","andestination clubs","clubs timeshare","timeshare andestination","andestination clubs","property ownership","ownership also","also referred","vacation ownership","ownership involving","individual unit","seasonal usage","specified period","often offer","offer full","full service","service hotel","site restaurant","restaurant swimming","swimming pools","pools recreation","recreation grounds","leisure oriented","oriented amenities","amenities destination","destination clubs","hand may","may offer","private houses","neighborhood style","style setting","setting examples","timeshare brands","brands include","include hilton","hilton grand","grand vacations","vacations marriott","marriott vacation","vacation club","club international","international westgate","westgate resorts","resorts disney","disney vacation","vacation club","holiday inn","inn holiday","holiday inn","inn club","club vacations","motor hotel","small sized","sized low","low rise","rise lodging","lodging establishment","establishment similar","limited service","service lower","lower cost","cost hotel","direct access","individual rooms","car park","park motels","builto serve","serve road","road travellers","travellers including","including travellers","road trip","trip vacations","job travelling","truck drivers","often located","located adjacento","major highway","inexpensive land","along stretches","new motel","motel construction","hotel chains","building economy","economy priced","priced limited","limited service","service franchised","franchised properties","freeway exits","clientele largely","still useful","less populated","populated areas","driving travelers","travelers buthe","area becomes","hotels move","meethe demand","accommodation many","remain operation","joined national","national franchise","franchise chains","chains often","often rebranding","hotels inns","lodges management","management hotel","hotel management","globally accepted","accepted professional","professional career","career field","academic field","study degree","degree programsuch","hospitality management","management studies","business degree","certification programs","programs formally","formally prepare","prepare hotel","hotel managers","industry practice","hotel establishments","establishments consist","general manager","thead executive","executive often","often referred","hotel manager","manager department","department heads","various departments","departments within","hotel middle","middle manager","business administrative","administrative staff","line level","level supervisors","organizational chart","job positions","hierarchy varies","hotel size","size function","often determined","hotel ownership","managing companies","companies unique","specialty hotels","hotels historic","historic inns","boutique hotels","hotels file","file hotel","left hotel","hotel astoria","astoria saint","saint petersburg","petersburg hotel","saint petersburg","petersburg russia","russia boutique","boutique hotel","typically hotels","intimate setting","hosting significant","significant events","potsdam germany","potsdam conference","world war","war ii","ii allies","allies winston","joseph stalin","taj mahal","mahal palace","palace tower","historic hotels","association withe","withe indian","indian independence","independence movement","movement somestablishments","particular meal","case withe","withe waldorf","waldorf astoria","astoria hotel","hotel waldorf","waldorf astoria","astoria inew","inew york","york city","city united","united states","waldorf salad","first created","viennaustria home","achieved fame","cocktails created","hotel de","de paris","raffles hotel","devised file","file hotel","hotel ritz","right h","h tel","tel ritz","ritz paris","hotels haventered","popular culture","ritz london","london hotel","hotel ritz","ritz hotel","irving berlin","berlin irving","irving berlin","berlin song","ritz hotel","hotel inew","inew york","york city","meeting place","literary group","round table","hotel inew","inew york","york city","resort hotels","hotels file","file wynn","wynn jpg","right wynn","wynn las","las vegas","vegas united","united statesome","statesome hotels","hotels built","built specifically","amusement park","holiday resort","course hotels","popular destinations","defining characteristic","resort hotel","exists purely","serve another","another attraction","concentrated area","worldwide buthe","buthe concentration","las vegas","vegas istill","twenty five","five largest","largest hotels","room count","europe center","largely man","man made","made though","though set","country park","captive trade","trade whereas","whereas holiday","holiday camp","holiday destinations","hotels file","ramey loganjpg","loganjpg thumb","right upright","upright rms","rms queen","queen mary","mary long","long beach","beach california","california united","united states","arab hotel","dubai united","united arab","arab emirates","emirates built","artificial island","boat sail","library hotel","hotel inew","inew york","york city","ten floors","assigned one","one category","classification dewey","lucerne switzerland","paradise nevada","nevada united","united states","unusual due","liberty hotel","boston used","jail hotel","northern lights","lights built","scotland completed","former ocean","ocean liner","long beach","beach california","california united","united states","states uses","first hotel","used patented","patented novelty","novelty architecture","motel room","free standing","standing concrete","various caboose","caboose motel","motel ored","ored caboose","caboose inn","inn properties","decommissioned rail","rail cars","cars throughouthe","throughouthe world","several hotels","hotels built","bunker hotels","stern hotel","concrete mushrooms","former nuclear","nuclear bunker","hotels cave","cave hotels","pedro antonio","antonio de","pedro antonio","antonio de","n author","well aseveral","aseveral hotels","natural cave","rooms underground","desert cave","cave hotel","south australia","mine cliff","cliff hotels","hotels file","file hotel","n located","sea level","hotels offer","panoramic views","great sense","privacy withouthe","withouthe feeling","total isolation","isolation somexamples","belvedere hotel","coast italy","capri breathtaking","hotels capsule","capsule hotels","hotels file","thumb interior","capsule hotel","osaka japan","japan capsule","capsule hotel","hotel first","first introduced","people sleep","rectangular containers","containers day","day room","hotels fill","fill daytime","daytime occupancy","day room","room hotel","hotel day","day rooms","suites near","near port","fort lauderdale","hours typically","typical night","transit hotels","thathey appeal","travelers however","however unlike","unlike transit","transit hotels","customs garden","garden hotels","hotels garden","garden hotels","hotels famous","became hotels","hotels include","garden designer","designer william","william robinson","william robinson","charles barry","rose garden","ice snow","hotels file","file icehotel","icehotel entre","thumb ice","ice hotel","jukkasj rvi","rvi sweden","ice hotel","jukkasj rvi","rvi sweden","first ice","ice hotel","world first","first built","every spring","ice hotels","hotels include","hotel de","included within","within larger","larger ice","ice complexes","snow hotel","located within","snow castle","snow hotel","snow village","village near","finland referral","referral hotel","referral hotel","hotel chain","offers branding","independently operated","operated hotels","member hotels","group many","largest surviving","surviving member","member owned","owned chain","best western","western railway","railway hotels","first recorded","recorded purpose","purpose built","built railway","railway hotel","great western","western hotel","western hotel","hotel opened","opened adjacento","adjacento reading","reading railway","railway station","great western","western railway","railway opened","building still","still exists","malmaison hotel","hotel chain","chain malmaison","malmaison hotel","hotel chain","chain frequently","frequently expanding","expanding railway","railway companies","companies built","built grand","grand hotels","hotels atheir","midland hotel","hotel manchester","manchester nexto","nexto manchester","manchester central","central railway","railway station","former manchester","manchester central","central station","station london","railway station","cross railway","railway station","station london","london also","court hotel","also canada","grand railway","railway hotels","exclusively used","rail straw","mont noble","swiss alps","first hotel","europe built","built entirely","conventional heating","air conditioning","conditioning system","system although","alps transit","transit hotels","hotels transit","transit hotels","short stay","stay hotels","hotels typically","typically used","international airports","change airplanes","hotels typically","hotels built","living trees","costa rica","rica tree","tree house","wildlife refuge","refuge costa","costa rica","towers near","rio negro","negro amazon","amazon rio","rio negro","negro amazon","amazon basin","basin amazon","tree houses","turkey underwater","underwater hotels","hotels file","restaurant athe","athe conrad","conrad hotels","hotels conrad","conrad maldives","island resort","resort hotels","accommodation underwater","dubai would","persian gulf","rooms overwater","overwater hotels","hotels file","suite deck","deck service","service jpg","overwater bungalow","island resort","resort island","contains resorts","resorts hotels","hotels overwater","restaurants tourist","tourist attractions","amenities maldives","resorts largest","guinness world","world records","records listed","first world","world hotel","genting highlands","largest hotel","rooms genting","first world","world recognized","largest hotel","venetian las","las vegas","vegas complex","las vegas","vegas rooms","mgm grand","grand las","las vegas","vegas complex","complex rooms","rooms oldest","oldest according","guinness book","world records","oldest hotel","hotel first","first opened","family forty","forty six","six generations","onsen area","virtually unknown","ryokan website","website accessed","accessed june","ritz carlton","carlton hong","hong kong","kong claims","highest hotel","top floors","hong kong","ground level","expensive purchase","insurance group","group based","china purchased","waldorf astoria","astoria new","new york","us billion","billion making","making ithe","ithe world","expensive hotel","hotel ever","ever sold","sold file","file waldorf","waldorf astoria","right uprighthe","uprighthe waldorf","waldorf astoria","astoria new","new york","expensive hotel","hotel ever","ever sold","sold cost","cost us","us billion","long term","term residence","public figures","notably chosen","semi permanent","permanent residence","hotels fashion","fashion designer","h tel","tel ritz","ritz paris","years inventor","life athe","athe new","new yorker","yorker hotel","larry fine","family lived","hotels due","spending habits","first lived","president hotel","atlanticity new","new jersey","larry buy","los angeles","angeles los","los angeles","waldorf astoria","astoria hotel","affiliated waldorf","waldorf towers","many famous","famous persons","years including","including former","former president","president herbert","herbert hoover","general douglas","douglas macarthur","macarthur lived","last years","waldorf towers","composer cole","cole porter","porter also","last years","apartment athe","athe waldorf","waldorf towers","towers billionaire","billionaire howard","howard hughes","hughes lived","life primarily","las vegas","vegas well","beverly hills","hills boston","nassau bahamas","bahamas nassau","nassau vancouver","wife vera","vera lived","palace hotel","harris lived","lived athe","athe savoy","savoy hotel","london hotel","susan scott","hand told","food home","home suite","suite home","home bbc","bbc news","news retrieved","egyptian actor","actor ahmed","actor ahmed","last years","hilton worldwide","worldwide hilton","hilton hotel","hotel cairo","cairo british","british entrepreneur","entrepreneur jack","jack lyons","jack lyons","lyons lived","several years","american actress","savoy hotel","lived almost","almost years","apartment inside","palace hotel","buenos aires","aires one","exclusive hotels","city see","see also","also list","hotels lists","hotels list","brand hotels","hotels list","defunct hotel","hotel chains","chains casino","casino hotels","hotels list","niche tourismarkets","tourismarkets industry","careers bellhop","bellhop concierge","concierge front","front desk","desk clerk","clerk position","position clerk","clerk general","general manager","manager hotels","hotels general","general manager","trevpar hotel","hotel profitability","hospitality industry","industry hotel","hotel rating","rating innkeeper","innkeeper night","night auditor","auditor property","tourism human","human habitation","habitation types","types apartment","apartment hotel","hotel boutique","boutique hotel","cruise ship","bungalow eco","eco hotel","hotel guest","guest house","house glamping","glamping homestay","homestay hospitality","hospitality service","service hostal","hostal category","category human","human habitats","habitats human","human habitats","habitats inn","inn serviced","serviced apartment","apartment vacation","vacation rental","rental pop","hotel references","references furthereading","furthereading category","category hotels","hotels category","category buildings","type category","category hospitality","hospitality management","management category","category hospitality","hospitality occupations","occupations category","category tourist","tourist accommodations","accommodations category","category travel","travel technology"],"new_description":"file peninsula thumb peninsula paris hotel x px hotel establishmenthat provides paid lodging shorterm basis facilities provided may range modest quality small room large suites bigger higher quality beds fridge kitchen facilities chairs television suite bathroom priced hotels may_offer basic guest services facilities larger higher priced hotels may provide additional guest facilitiesuch swimming_pool business centre computers printers conference event facilities tennis basketball courts restaurants day spand social function services hotel_rooms usually room numbered named smaller hotels bed breakfast allow guests identify boutique high_end hotels custom decorated hotels offer meals part room board arrangement united_kingdom hotel required law serve_food_andrinks guests within certain stated hours japan capsule hotel provide tiny room suitable sleeping shared bathroom facilities file hotel thumb typical hotel_room television x px precursor modern hotel inn medieval_europe period years mid_th century coaching_inn served place lodging coach carriage coach travelers inns began cater richer clients mid_th century one first hotels modern sense opened exeter hotels proliferated throughout western_europe north_america thearly_th century luxury hotels began spring later part th_century hotel operations vary size function cost hotels major hospitality companies set industry standards hotel types upscale full_service hotel facility offers luxury goods luxury amenities full_service accommodations site restaurant highest level personalized service concierge room service clothes pressing staff conference resort hotels full_service hotels often contain upscale full_service facilities large_number ofull service accommodations site full_service restaurant variety site amenity amenities boutique_hotel smaller independent non branded hotels often contain upscale medium_sized hotel establishments offer limited amount site amenity amenities economy hotels small medium_sized hotel establishments offer basic accommodations little services extended_stay hotel small medium_sized hotels offer longer term full_service accommodations compared traditional hotel timeshare andestination clubs form property ownership involving ownership individual unit accommodation seasonal usage motel small sized low rise lodging direct access individual rooms car park boutique_hotel typically hotels intimate setting number hotels haventered popular_culture ritz london hotel ritz hotel london hotels built specifically destination example casino holiday resort hotel establishments run general_manager serves thead executive often_referred hotel_manager department heads various departments within hotel food_service middle manager administration business administrative staff line level supervisors organizational chart volume job positions hierarchy varies hotel size function class often determined hotel ownership managing companies word hotel derived french tel coming origin hospital referred french version building seeing frequent visitors providing care rather place offering accommodation contemporary french usage h_tel thenglish term h_tel used old meaning well h_tel place namesuch h_tel dieu de paris h_tel dieu paris whichas hospital since middle_ages french spelling withe also_used english rare replaces found thearlier hostel spelling time took new closely related hotels usually take definite article hence astoria hotel simply astoria file tabard inn mid righthumb uprighthe tabard inn london_borough southwark london facilities offering hospitality travellers feature thearliest civilizations greco roman culture hospitals rest built bath middle_ages various religious orders monastery monasteries abbey would offer accommodation travellers road precursor modern hotel inn medieval_europe possibly dating_back rule ancient_rome would provide needs travelers including food lodging stable traveler horse mail coach famous london_examples inns include george southwark george tabard inn inner court bedrooms two sides withe kitchen parlour athe front stables athe back period years mid_th century coaching_inn served place lodging coach carriage coach travelers words roadhouse facility roadhouse coaching_inn teams horse stagecoach mail coach replaced tired teams fresh teams traditionally seven miles apart buthis depended much terrain file boston thumb house boston house boston united_states luxury hotel firsto provide indoor plumbing english towns many ten inn rivalry intense income stagecoach operators revenue food_andrink supplied wealthy passengers thend century coaching_inns run professionally regular timetable followed fixed menus era stage mail coach travel around bath bristol somerset roy inns began cater clients mid_th century consequently grew level service provided one first hotels modern sense royal clarence hotel opened exeter although idea really caught thearly_th century claridge hotel opened doors london later changing name claridge hotels proliferated throughout western_europe north_america th_century luxury hotels including savoy hotel united_kingdom c ritz chain hotels london paris house boston house house united_states began spring later part century catering extremely wealthy clientele international scale hotels cater travelers fromany countries none country travel_industry class wikitable sortable border country hotel_rooms average rooms per hotel traveling country annual united_states china japan italy germany spain mexico united_kingdom france thailand indonesia greece brazil turkey austria russia global total hotel operations vary size function cost hotels major hospitality companies operate hotels set widely accepted industry standards hotel types general categories include following luxury hotel offers high_quality amenities full_service accommodations site full_service restaurants highest level personalized professional service luxury hotels normally classified least four diamond aaa five diamond award five diamond rating american_automobile_association four star classification five starating depending country local classification standards examples_include intercontinental hotels_resorts intercontinental waldorf astoria hotels_resorts waldorf astoria four seasons hotels_resorts four seasons ritz carlton boutique lifestyle hotels boutique_hotel smaller independent non branded hotels often contain upscale facilities varying size unique intimate settings full_service accommodations hotels generally rooms less lifestyle hotels branded properties appeal guest specific lifestyle personal image typically full_service sometimes classified luxury key characteristic boutique lifestyle hotels focus providing unique guest experience opposed simply providing lodging examples_include w hotels hotels_restaurants hotels full_service conference resort hotels full_service hotels often provide wide array guest services site facilities commonly found amenities may_include site food beverage room service_restaurants meeting conference services facilities fitness center business center full_service hotels range quality scale luxury classification based_upon quality ofacilities amenities offered hotel examples_include holiday_inn sheraton hotels hilton hotels_resorts hilton marriott international marriott hyatt regency brands focused select service small medium_sized hotel establishments offer limited number site amenities cater marketo specific demographic single business_traveler focused select service hotels may still offer full_service accommodations may lack leisure amenitiesuch site restaurant swimming_pool examples_include hyatt place courtyard marriott hilton garden inn economy limited_service small medium_sized hotel establishments offer limited amount site amenities often offer basic accommodations little services facilities normally cater marketo specific demographic budget minded traveler seeking accommodation limited_service hotels often lack site restaurant return may_offer limited complimentary food beverage amenity site continental breakfast include budget hampton inn hotels holiday_inn express fairfield inn marriott fairfield inn four points sheraton inn extended_stay extended_stay hotel small medium_sized hotels offer longer term full_service accommodations compared traditional hotel extended_stay hotels may_offer non traditional pricing weekly rate caters towards travelers ineed shorterm accommodations extended period time similar limited select service hotels site amenities normally limited extended_stay hotels lack site restaurant examples_include suites suites suites hilton home suites hilton residence inn marriott element westin element extended_stay hotels timeshare andestination clubs timeshare andestination clubs form property ownership also_referred vacation ownership involving purchase ownership individual unit accommodation seasonal usage specified period often offer full_service hotel site restaurant swimming_pools recreation grounds leisure oriented amenities destination clubs hand may_offer private private houses neighborhood style setting examples timeshare brands include hilton grand vacations marriott vacation club international westgate resorts disney vacation club holiday_inn holiday_inn club vacations motel abbreviation motor hotel small sized low rise lodging establishment similar limited_service lower_cost hotel direct access individual rooms car park motels builto serve road_travellers including travellers road_trip vacations workers drive job travelling truck_drivers motels often located adjacento major highway built inexpensive land towns along stretches new motel construction rare hotel_chains building economy priced limited_service franchised properties freeway exits compete largely clientele largely market motels still useful less populated areas driving travelers buthe populated area becomes hotels move meethe demand accommodation many motels remain operation joined national franchise chains often rebranding hotels inns lodges management hotel_management globally accepted professional career field academic field study degree programsuch hospitality_management_studies business degree certification programs formally prepare hotel_managers industry practice hotel establishments consist general_manager serves thead executive often_referred hotel_manager department heads various departments within hotel middle manager administration business administrative staff line level supervisors organizational chart volume job positions hierarchy varies hotel size function often determined hotel ownership managing companies unique specialty hotels historic inns boutique_hotels file hotel thumb left hotel astoria saint petersburg hotel statue nicholas russia nicholas saint petersburg russia boutique_hotel typically hotels intimate setting hotels gained tradition hosting significant events potsdam germany derives fame potsdam conference world_war ii allies winston harry joseph stalin taj mahal palace tower one india famous historic hotels association_withe indian independence movement somestablishments particular meal beverage case withe waldorf astoria hotel waldorf astoria inew_york_city united_states waldorf salad first created hotel viennaustria home others achieved fame association dishes cocktails created hotel de paris invented raffles hotel singapore singapore cocktail devised file hotel ritz thumb right h_tel ritz paris_france number hotels haventered popular_culture ritz london hotel ritz hotel london association irving berlin irving berlin song ritz hotel inew_york_city famed meeting_place literary group round table hotel inew_york_city subject number songs scene stabbing nancy allegedly resort hotels file wynn jpg thumb right wynn las_vegas united_statesome hotels built specifically destination create captive casino amusement_park holiday resort though course hotels always built popular_destinations defining characteristic resort hotel exists purely serve another attraction two owners las tradition one luxurious hotels concentrated area trend extended worldwide buthe concentration las_vegas istill world highest world twenty five largest hotels room count strip total europe center might considered chain resort sites largely man_made though set country park captive trade whereas holiday camp probably considered resort set holiday destinations existed camps hotels file photo ramey loganjpg thumb right_upright rms queen mary long_beach_california united_states burj arab hotel dubai united_arab_emirates built artificial island shape boat sail library hotel inew_york_city unique ten floors assigned one category dewey classification dewey system lucerne switzerland converted used hotel luxor hotel las paradise nevada united_states unusual due structure liberty hotel boston used jail hotel finland collection glass allow watch northern lights built scotland completed former ocean liner long_beach_california united_states uses first hotel service wigwamotel used patented novelty architecture motel room free standing concrete various caboose motel ored caboose inn properties built decommissioned rail cars throughouthe_world several hotels built converted bunker hotels stern hotel switzerland concrete mushrooms former nuclear bunker transformed hotels cave hotels pedro antonio de named pedro antonio de n author spain well aseveral hotels turkey notable built natural cave rooms underground desert cave hotel south_australia built remains mine cliff hotels file hotel gran thumb top cliff hotel n located coast high sea_level hotels offer panoramic views great sense privacy withouthe feeling total isolation somexamples around globe hotel gran belvedere hotel coast italy resorts bali house africa caves augustus capri breathtaking hotels capsule hotels file thumb_interior capsule hotel osaka japan capsule hotel type hotel first introduced japan people sleep rectangular containers day room hotels fill daytime occupancy day room hotel day rooms example inn suites near port fort_lauderdale rooms booked block hours typically typical night similar transit hotels thathey appeal travelers however unlike transit hotels eliminate need go customs garden hotels garden hotels famous gardens became hotels include manor home garden designer william robinson william robinson designed charles barry rose garden geoffrey ice snow hotels file icehotel entre thumb ice hotel jukkasj rvi sweden ice hotel jukkasj rvi sweden first ice hotel world first built built winter every spring ice hotels include village finland hotel de canada also_included within larger ice complexes example snow hotel finland located within walls snow castle snow hotel part snow village near finland referral hotel referral hotel hotel_chain offers branding independently operated hotels chain founded owned member hotels group many chains converted franchises largest surviving member owned chain best western railway hotels first recorded purpose_built railway hotel great western hotel western hotel opened adjacento reading railway_station shortly great western railway opened line london building still exists although used purposes years hotel member malmaison hotel_chain malmaison hotel_chain frequently expanding railway companies built grand hotels atheir midland hotel manchester nexto manchester central railway_station former manchester central station london ones st railway_station cross railway_station london also court hotel baker station also canada grand railway hotels mostly exclusively used traveling rail straw hotels maya mont noble swiss alps first hotel europe built entirely straw due values walls needs conventional heating air_conditioning system although maya built altitude alps transit hotels transit hotels short stay hotels typically used international_airports passengers stay waiting change airplanes hotels typically airport ando require visa stay admission security treehouse hotels built living trees elements example near sweden costa_rica tree house wildlife refuge costa_rica hotel national towers near brazil rio negro amazon rio negro amazon basin amazon tree houses turkey underwater hotels file thumb first restaurant athe conrad hotels conrad maldives island resort hotels accommodation underwater inn lake sweden project dubai would suites bottom persian gulf jules lodge key florida diving access rooms overwater hotels file suite deck service jpg thumb overwater bungalow island resort maldives resort island island archipelago contains resorts hotels overwater restaurants tourist_attractions amenities maldives overwater resorts largest guinness_world_records listed first_world hotel genting highlands world largest hotel total rooms genting first_world recognized world largest hotel hotel moscow beds followed venetian las_vegas complex las_vegas rooms mgm grand las_vegas complex rooms oldest according guinness book world_records oldest hotel operation onsen japan hotel first_opened operated family forty six generations title held ryokan onsen area japan opened year history onsen virtually unknown ryokan website_accessed june_retrieved ritz carlton hong_kong claims world highest hotel located top_floors international hong_kong ground level expensive purchase october insurance group based china purchased waldorf astoria new_york manhattan us_billion making_ithe world expensive hotel ever sold file waldorf astoria thumb right_uprighthe waldorf astoria new_york expensive hotel ever sold cost us_billion long_term residence number public figures notably chosen take semi permanent permanent residence hotels fashion designer h_tel ritz paris offor years inventor lived years life athe new_yorker hotel died room larry fine three family lived hotels due spending habits wife housekeeping first lived president hotel atlanticity new_jersey daughter raised hotel hollywood late larry buy home los los_angeles los area los_angeles waldorf astoria hotel affiliated waldorf towers home many famous persons years including former president herbert hoover lived thend presidency death general douglas macarthur lived last_years waldorf towers composer cole porter also last_years life apartment athe waldorf towers billionaire howard hughes lived hotels years life primarily las_vegas well beverly_hills boston bahamas london nassau bahamas nassau vancouver others wife vera lived palace hotel switzerland death harris lived athe savoy hotel london hotel susan scott taken building shortly death raised hand told diners food home suite home bbc_news retrieved egyptian actor ahmed actor ahmed lived last_years hilton worldwide hilton hotel cairo british entrepreneur jack lyons jack lyons lived hotel switzerland several_years death american actress lived savoy hotel london decade composer lived almost years death apartment inside palace hotel buenos_aires one exclusive hotels city see_also list hotels lists hotels list brand hotels list defunct hotel_chains casino casino hotels list adjectival niche tourismarkets industry careers bellhop concierge front_desk clerk type clerk position clerk general_manager hotels general_manager trevpar hotel profitability hospitality_industry hotel rating innkeeper night_auditor property tourism human habitation types apartment hotel boutique_hotel cruise_ship type building bungalow eco hotel guest house glamping homestay hospitality_service hostal category_human habitats human habitats inn serviced apartment vacation_rental pop hotel references_furthereading category_hotels category_buildings structures type category_hospitality management_category_hospitality_occupations_category_tourist accommodations category_travel technology"},{"title":"Hotel (book)","description":"hotel is a book by british writer illustrator and critic joanna walsh the book is in the bloomsbury series object lessons the book is an instalment in the bloomsbury academic series object lessons the series is intended to discuss the hidden lives ordinary things hotel examines the luxury sex power anonymity privacy of hotels places where desires gon holiday but also places where our desires are shaped by the hard realities of the marketplace in the financial times melissa harrison praised hotel as being densely patternedeeply personal and wrote that walsh s writing has intellectual rigour and bags oformal bravery and also stated thathe book is a boldly intellectual work that repays careful reading in the new statesman marina benjamin wrote that i loved hotel and would read it again for the pleasure of its playfulinguistic slips not all of them freudiand jokes and praised the hotel aslyly humorous and clever category non fiction books category bloomsbury publishing books category travel books category hotels","main_words":["hotel","book","british","writer","illustrator","critic","walsh","book","bloomsbury","series","object","lessons","book","bloomsbury","academic","series","object","lessons","series","intended","discuss","hidden","lives","ordinary","things","hotel","luxury","sex","power","anonymity","privacy","hotels","places","desires","gon","holiday","also","places","desires","shaped","hard","realities","marketplace","financial","times","melissa","harrison","praised","hotel","densely","personal","wrote","walsh","writing","intellectual","bags","also","stated_thathe","book","intellectual","work","careful","reading","new","statesman","marina","benjamin","wrote","loved","hotel","would","read","pleasure","jokes","praised","hotel","humorous","category_non","fiction","books_category","bloomsbury","publishing","books_category","travel_books","category_hotels"],"clean_bigrams":[["british","writer"],["writer","illustrator"],["bloomsbury","series"],["series","object"],["object","lessons"],["bloomsbury","academic"],["academic","series"],["series","object"],["object","lessons"],["hidden","lives"],["lives","ordinary"],["ordinary","things"],["things","hotel"],["luxury","sex"],["sex","power"],["power","anonymity"],["anonymity","privacy"],["hotels","places"],["desires","gon"],["gon","holiday"],["also","places"],["hard","realities"],["financial","times"],["times","melissa"],["melissa","harrison"],["harrison","praised"],["praised","hotel"],["also","stated"],["stated","thathe"],["thathe","book"],["intellectual","work"],["careful","reading"],["new","statesman"],["statesman","marina"],["marina","benjamin"],["benjamin","wrote"],["loved","hotel"],["would","read"],["praised","hotel"],["category","non"],["non","fiction"],["fiction","books"],["books","category"],["category","bloomsbury"],["bloomsbury","publishing"],["publishing","books"],["books","category"],["category","travel"],["travel","books"],["books","category"],["category","hotels"]],"all_collocations":["british writer","writer illustrator","bloomsbury series","series object","object lessons","bloomsbury academic","academic series","series object","object lessons","hidden lives","lives ordinary","ordinary things","things hotel","luxury sex","sex power","power anonymity","anonymity privacy","hotels places","desires gon","gon holiday","also places","hard realities","financial times","times melissa","melissa harrison","harrison praised","praised hotel","also stated","stated thathe","thathe book","intellectual work","careful reading","new statesman","statesman marina","marina benjamin","benjamin wrote","loved hotel","would read","praised hotel","category non","non fiction","fiction books","books category","category bloomsbury","bloomsbury publishing","publishing books","books category","category travel","travel books","books category","category hotels"],"new_description":"hotel book british writer illustrator critic walsh book bloomsbury series object lessons book bloomsbury academic series object lessons series intended discuss hidden lives ordinary things hotel luxury sex power anonymity privacy hotels places desires gon holiday also places desires shaped hard realities marketplace financial times melissa harrison praised hotel densely personal wrote walsh writing intellectual bags also stated_thathe book intellectual work careful reading new statesman marina benjamin wrote loved hotel would read pleasure jokes praised hotel humorous category_non fiction books_category bloomsbury publishing books_category travel_books category_hotels"},{"title":"Hotel Bristol","description":"file hotel bristoluggage labelsjpg thumb right px hotel bristolabels the hotel bristol is the name of more than hotels around the world they range from grand european hotelsuch as h tele bristol paris and the bristol in warsaw or vienna to budget hotelsuch as the sro single room only bristol in san francisco they are not a chain except in brazil where bristol hoteis resorts has around a dozen hotels throughouthe country withe bristol name file hotel bristol jpg thumb the hotel bristol in warsaw file hotel bristol neujpg thumb the hotel bristol in salzburg the first known hotel bristol was in place vend me in paris it opened in and became a favourite of the prince of wales later edward vii who had a suite there when it closed in its name was fought over and finally won by hippolyte jammet le bristol a palace hotel in its century by pierre jammet editions ho becke paris whopened h tele bristol paris inearby rue du faubourg saint honor today one of the city s five star palace hotels two possible origins of the name are the association withenglish port city of bristol and frederick hervey th earl of bristol frederick hervey the fourth earl of bristol and bishop of derry according to his biographer so widely famed was the bishop as a traveller and so great his reputation as a connoisseur of all good things that lord bristol s hotelcame to be the best known and regarded in every city or town where he sojourned and was thus the precursor of the hotels bristol to be found all over europe lord bristol died in italy athe start of the napoleonic wars which interrupted the grand tour the bristol in paris was one of many opened in thensuing peace hoping to restablish the continental touristrade the facthat many hotelsuch as the bernini bristol in rome use the coat of arms of the city of bristol in their logos leads to speculation thathey are named after the city and nothearl bishop buthere is no evidence thathe bristol family ever granted use of their arms to any hotel while the city s coat of arms can freely be adopted to give an aristocratic image modern distribution file bna fo jpg thumb right px the bristol hotel mar del plata italy now has the most hotels of this name with more than whilst france has around many luxury bristol hotels from thedwardian era for example in beaulieu sur mer london lugano mar del plata new york city naples and st petersburg have not survived but a new hotel bristol opened in st petersburg in and the bristol hotel odessa has reclaimed its name after changing ito the krasnaya hotel during the soviet era one of the oldestill functioning is the bernini bristol in rome which opened in bristol hotels also have a presence in the middleast in beirut since with le bristol hotel beirut modern hotels to use the name include those in frankfurt san diego and gurgaon india the city of bristol in englandid not have a bristol hotel until when jurys hotel bristol changed its name simply to the bristol h tele bristol paris a favourite ofilm stars and has monthly fashion shows in the bristol bar p g wodehouse was kepthere by the germans during world war ii amschel mayor james rothschild was found hanged in his room there in and polish millionairess kinga legg was murdered in heroom in valerie solanas author of the scumanifesto and attempted assassin of andy warhol died in room of the hotel bristol mason street san francisco richard ramirez aka richard ramirez night stalker stayed in the same hotel room during his killing spree in the comedy film what s up doc film what s up doc starring barbra streisand ryan o neal features the hilton hotel as the hotel bristol san francisco the famous black cat bar was originally in the basement of this building thenamed the athens hotel from to the black cat was later located inorth beach san francisco north beach at montgomery street in san francisco the hotel bristol oslo hotel bristol oslo was where inovember hans ferdinand mayer a german scientist who is on your side wrote the oslo report a major leak of technical information passed to the britishotel bristol warsaw opened in on krakowskie przedmie cie thoroughly refurbished in its original style in the s it was reopened by margarethatcher an eventhat forms the final chapter of her memoirsthatcher m the downing street years harpercollins hotel bristol berlin opened in and was destroyed in an airaid in it held the first international iaa internationale automobil ausstellung motor show in and was involved in the krupp scandal detailed in williamanchester s book on the arms manufacturer the five star luxury hotel in vienna opposite the vienna state opera house is one of the most exclusive hotels in austriand was restructured by the hotelier georg hochfilzer it has hosted many historical figures including teddy roosevelt it was here thathedward viii prince of wales and wallisimpson sojourned atheight of their affair in the most sumptuousuite is named after him in the hotel underwent aryanizationazism aryanization when its jewish owner samuel schallinger was forced to sell hishares before being deported to theresienstadt concentration camp where he died leon trotsky was accused of meeting with others to plot againstalin the hotel bristol copenhagen an alibi was established in when the dewey commission showed thathe hotel had burnedown in the le bristol hotel beirut le bristol hotel beirut is one of the most exclusive hotels in beirut where the cedarevolution lebanese independence from the occupying syrian military force was prepared in file zjpg thumbristol hotel in beirut see also bristol hotel disambiguation bristol hotel externalinks thearl of bristol did not sleep here buthe hotel might be named after him wall street journal sept high times athe hotel bristol twenty bedtime tales by roger williams bristol book publishing uk the bristol fashion telegraph travel april the mitred earl an eighteenth century eccentric by brian fothergill faber the arms of krupp by williamanchester details corruption in the berlin bristolittle brown thearl bishop the life ofrederick hervey bishop of derry earl of bristol by william shakespeare childe pemberton hurst blackett london vienna s touristrail of plunder guardian world news may bristol hotel in campbell california category hotels","main_words":["file","hotel","thumb","right","px","hotel","hotel_bristol","name","hotels","around","world","range","grand","european","h_tele","bristol","paris","bristol","warsaw","vienna","budget","single","room","bristol","san_francisco","chain","except","brazil","bristol","resorts","around","dozen","hotels","throughouthe_country","withe","bristol","name","file","hotel_bristol","jpg","thumb","hotel_bristol","warsaw","file","hotel_bristol","thumb","hotel_bristol","salzburg","first","known","hotel_bristol","place","paris","opened","became","favourite","prince","wales","later","edward","vii","suite","closed","name","fought","finally","bristol","palace","hotel","century","pierre","editions","paris","h_tele","bristol","paris","rue","saint","honor","today","one","city","five","star","palace","hotels","two","possible","origins","name","association","port","city","bristol","frederick","hervey","th","earl","bristol","frederick","hervey","fourth","earl","bristol","bishop","derry","according","biographer","widely","famed","bishop","traveller","great","reputation","good","things","lord","bristol","best_known","regarded","every","city","town","thus","precursor","hotels","bristol","found","europe","lord","bristol","died","italy","athe_start","wars","interrupted","grand_tour","bristol","paris","one","many","opened","peace","hoping","continental","facthat","many","bristol","rome","use","coat","arms","city","bristol","leads","thathey","named","city","bishop","buthere","evidence","thathe","bristol","family","ever","granted","use","arms","hotel","city","coat","arms","freely","adopted","give","aristocratic","image","modern","distribution","file_jpg","thumb","right","px","bristol_hotel","mar","del","plata","italy","hotels","name","whilst","france","around","many","luxury","era","example","sur","mer","london","mar","del","plata","new_york","city","naples","st_petersburg","survived","new","hotel_bristol","opened","st_petersburg","bristol_hotel","name","changing","ito","hotel","soviet","era","one","functioning","bristol","rome","opened","also","presence","middleast","beirut","since","bristol_hotel","beirut","modern","hotels","use","name","include","frankfurt","san_diego","india","city","bristol","bristol_hotel","hotel_bristol","changed","name","simply","bristol","h_tele","bristol","paris","favourite","ofilm","stars","monthly","fashion","shows","bristol","bar","p","g","germans","world_war","ii","mayor","james","found","room","polish","murdered","author","attempted","andy","died","room","hotel_bristol","mason","street","san_francisco","richard","aka","richard","night","stayed","hotel_room","killing","comedy","film","doc","film","doc","starring","ryan","neal","features","hilton","hotel","hotel_bristol","san_francisco","famous","black","cat","bar","originally","basement","building","athens","hotel","black","cat","later","located","inorth","beach","san_francisco","north","beach","montgomery","street","san_francisco","hotel_bristol","oslo","hotel_bristol","oslo","inovember","hans","ferdinand","mayer","german","scientist","side","wrote","oslo","report","major","leak","technical","information","passed","bristol","warsaw","opened","cie","refurbished","original","style","reopened","eventhat","forms","final","chapter","street","years","harpercollins","hotel_bristol","berlin","opened","destroyed","held","first_international","internationale","ausstellung","motor","show","involved","scandal","detailed","book","arms","manufacturer","five","star","luxury","hotel","vienna","opposite","vienna","state","opera_house","one","exclusive","hotels","austriand","restructured","hotelier","georg","hosted","many","historical","figures","including","teddy","roosevelt","viii","prince","wales","atheight","affair","named","hotel","underwent","jewish","owner","samuel","forced","sell","deported","concentration","camp","died","leon","accused","meeting","others","plot","hotel_bristol","copenhagen","alibi","established","dewey","commission","showed","thathe","hotel","burnedown","bristol_hotel","beirut","bristol_hotel","beirut","one","exclusive","hotels","beirut","lebanese","independence","syrian","military","force","prepared","file","hotel","beirut","see_also","bristol_hotel","disambiguation","bristol_hotel","externalinks","thearl","bristol","sleep","buthe","hotel","might","named","wall_street_journal","sept","high","times","athe","hotel_bristol","twenty","tales","roger","williams","bristol","uk","bristol","fashion","telegraph","travel","april","earl","eighteenth_century","eccentric","brian","faber","arms","details","corruption","berlin","brown","thearl","bishop","life","hervey","bishop","derry","earl","bristol","william","shakespeare","london","vienna","guardian","world","news","may","bristol_hotel","campbell","california_category","hotels"],"clean_bigrams":[["file","hotel"],["thumb","right"],["right","px"],["px","hotel"],["hotel","bristol"],["bristol","name"],["hotels","around"],["grand","european"],["h","tele"],["tele","bristol"],["bristol","paris"],["bristol","warsaw"],["single","room"],["bristol","san"],["san","francisco"],["chain","except"],["dozen","hotels"],["hotels","throughouthe"],["throughouthe","country"],["country","withe"],["withe","bristol"],["bristol","name"],["name","file"],["file","hotel"],["hotel","bristol"],["bristol","jpg"],["jpg","thumb"],["hotel","bristol"],["bristol","warsaw"],["warsaw","file"],["file","hotel"],["hotel","bristol"],["hotel","bristol"],["first","known"],["known","hotel"],["hotel","bristol"],["wales","later"],["later","edward"],["edward","vii"],["palace","hotel"],["h","tele"],["tele","bristol"],["bristol","paris"],["saint","honor"],["honor","today"],["today","one"],["five","star"],["star","palace"],["palace","hotels"],["hotels","two"],["two","possible"],["possible","origins"],["port","city"],["bristol","frederick"],["frederick","hervey"],["hervey","th"],["th","earl"],["bristol","frederick"],["frederick","hervey"],["fourth","earl"],["derry","according"],["widely","famed"],["good","things"],["lord","bristol"],["best","known"],["every","city"],["hotels","bristol"],["europe","lord"],["lord","bristol"],["bristol","died"],["italy","athe"],["athe","start"],["grand","tour"],["bristol","paris"],["many","opened"],["peace","hoping"],["facthat","many"],["rome","use"],["bishop","buthere"],["evidence","thathe"],["thathe","bristol"],["bristol","family"],["family","ever"],["ever","granted"],["granted","use"],["aristocratic","image"],["image","modern"],["modern","distribution"],["distribution","file"],["jpg","thumb"],["thumb","right"],["right","px"],["bristol","hotel"],["hotel","mar"],["mar","del"],["del","plata"],["plata","italy"],["whilst","france"],["around","many"],["many","luxury"],["luxury","bristol"],["bristol","hotels"],["sur","mer"],["mer","london"],["mar","del"],["del","plata"],["plata","new"],["new","york"],["york","city"],["city","naples"],["st","petersburg"],["new","hotel"],["hotel","bristol"],["bristol","opened"],["st","petersburg"],["bristol","hotel"],["changing","ito"],["soviet","era"],["era","one"],["bristol","hotels"],["hotels","also"],["beirut","since"],["bristol","hotel"],["hotel","beirut"],["beirut","modern"],["modern","hotels"],["name","include"],["frankfurt","san"],["san","diego"],["bristol","hotel"],["hotel","bristol"],["bristol","changed"],["name","simply"],["bristol","h"],["h","tele"],["tele","bristol"],["bristol","paris"],["favourite","ofilm"],["ofilm","stars"],["monthly","fashion"],["fashion","shows"],["bristol","bar"],["bar","p"],["p","g"],["world","war"],["war","ii"],["mayor","james"],["hotel","bristol"],["bristol","mason"],["mason","street"],["street","san"],["san","francisco"],["francisco","richard"],["aka","richard"],["hotel","room"],["comedy","film"],["doc","film"],["doc","starring"],["neal","features"],["hilton","hotel"],["hotel","bristol"],["bristol","san"],["san","francisco"],["famous","black"],["black","cat"],["cat","bar"],["athens","hotel"],["black","cat"],["later","located"],["located","inorth"],["inorth","beach"],["beach","san"],["san","francisco"],["francisco","north"],["north","beach"],["montgomery","street"],["street","san"],["san","francisco"],["hotel","bristol"],["bristol","oslo"],["oslo","hotel"],["hotel","bristol"],["bristol","oslo"],["inovember","hans"],["hans","ferdinand"],["ferdinand","mayer"],["german","scientist"],["side","wrote"],["oslo","report"],["major","leak"],["technical","information"],["information","passed"],["bristol","warsaw"],["warsaw","opened"],["original","style"],["eventhat","forms"],["final","chapter"],["street","years"],["years","harpercollins"],["harpercollins","hotel"],["hotel","bristol"],["bristol","berlin"],["berlin","opened"],["first","international"],["ausstellung","motor"],["motor","show"],["scandal","detailed"],["arms","manufacturer"],["five","star"],["star","luxury"],["luxury","hotel"],["vienna","opposite"],["vienna","state"],["state","opera"],["opera","house"],["exclusive","hotels"],["hotelier","georg"],["hosted","many"],["many","historical"],["historical","figures"],["figures","including"],["including","teddy"],["teddy","roosevelt"],["viii","prince"],["hotel","underwent"],["jewish","owner"],["owner","samuel"],["concentration","camp"],["died","leon"],["hotel","bristol"],["bristol","copenhagen"],["dewey","commission"],["commission","showed"],["showed","thathe"],["thathe","hotel"],["bristol","hotel"],["hotel","beirut"],["bristol","hotel"],["hotel","beirut"],["exclusive","hotels"],["lebanese","independence"],["syrian","military"],["military","force"],["file","hotel"],["hotel","beirut"],["beirut","see"],["see","also"],["also","bristol"],["bristol","hotel"],["hotel","disambiguation"],["disambiguation","bristol"],["bristol","hotel"],["hotel","externalinks"],["externalinks","thearl"],["buthe","hotel"],["hotel","might"],["wall","street"],["street","journal"],["journal","sept"],["sept","high"],["high","times"],["times","athe"],["athe","hotel"],["hotel","bristol"],["bristol","twenty"],["roger","williams"],["williams","bristol"],["bristol","book"],["book","publishing"],["publishing","uk"],["bristol","fashion"],["fashion","telegraph"],["telegraph","travel"],["travel","april"],["eighteenth","century"],["century","eccentric"],["details","corruption"],["brown","thearl"],["thearl","bishop"],["hervey","bishop"],["derry","earl"],["william","shakespeare"],["london","vienna"],["guardian","world"],["world","news"],["news","may"],["may","bristol"],["bristol","hotel"],["campbell","california"],["california","category"],["category","hotels"]],"all_collocations":["file hotel","px hotel","hotel bristol","bristol name","hotels around","grand european","h tele","tele bristol","bristol paris","bristol warsaw","single room","bristol san","san francisco","chain except","dozen hotels","hotels throughouthe","throughouthe country","country withe","withe bristol","bristol name","name file","file hotel","hotel bristol","bristol jpg","hotel bristol","bristol warsaw","warsaw file","file hotel","hotel bristol","hotel bristol","first known","known hotel","hotel bristol","wales later","later edward","edward vii","palace hotel","h tele","tele bristol","bristol paris","saint honor","honor today","today one","five star","star palace","palace hotels","hotels two","two possible","possible origins","port city","bristol frederick","frederick hervey","hervey th","th earl","bristol frederick","frederick hervey","fourth earl","derry according","widely famed","good things","lord bristol","best known","every city","hotels bristol","europe lord","lord bristol","bristol died","italy athe","athe start","grand tour","bristol paris","many opened","peace hoping","facthat many","rome use","bishop buthere","evidence thathe","thathe bristol","bristol family","family ever","ever granted","granted use","aristocratic image","image modern","modern distribution","distribution file","bristol hotel","hotel mar","mar del","del plata","plata italy","whilst france","around many","many luxury","luxury bristol","bristol hotels","sur mer","mer london","mar del","del plata","plata new","new york","york city","city naples","st petersburg","new hotel","hotel bristol","bristol opened","st petersburg","bristol hotel","changing ito","soviet era","era one","bristol hotels","hotels also","beirut since","bristol hotel","hotel beirut","beirut modern","modern hotels","name include","frankfurt san","san diego","bristol hotel","hotel bristol","bristol changed","name simply","bristol h","h tele","tele bristol","bristol paris","favourite ofilm","ofilm stars","monthly fashion","fashion shows","bristol bar","bar p","p g","world war","war ii","mayor james","hotel bristol","bristol mason","mason street","street san","san francisco","francisco richard","aka richard","hotel room","comedy film","doc film","doc starring","neal features","hilton hotel","hotel bristol","bristol san","san francisco","famous black","black cat","cat bar","athens hotel","black cat","later located","located inorth","inorth beach","beach san","san francisco","francisco north","north beach","montgomery street","street san","san francisco","hotel bristol","bristol oslo","oslo hotel","hotel bristol","bristol oslo","inovember hans","hans ferdinand","ferdinand mayer","german scientist","side wrote","oslo report","major leak","technical information","information passed","bristol warsaw","warsaw opened","original style","eventhat forms","final chapter","street years","years harpercollins","harpercollins hotel","hotel bristol","bristol berlin","berlin opened","first international","ausstellung motor","motor show","scandal detailed","arms manufacturer","five star","star luxury","luxury hotel","vienna opposite","vienna state","state opera","opera house","exclusive hotels","hotelier georg","hosted many","many historical","historical figures","figures including","including teddy","teddy roosevelt","viii prince","hotel underwent","jewish owner","owner samuel","concentration camp","died leon","hotel bristol","bristol copenhagen","dewey commission","commission showed","showed thathe","thathe hotel","bristol hotel","hotel beirut","bristol hotel","hotel beirut","exclusive hotels","lebanese independence","syrian military","military force","file hotel","hotel beirut","beirut see","see also","also bristol","bristol hotel","hotel disambiguation","disambiguation bristol","bristol hotel","hotel externalinks","externalinks thearl","buthe hotel","hotel might","wall street","street journal","journal sept","sept high","high times","times athe","athe hotel","hotel bristol","bristol twenty","roger williams","williams bristol","bristol book","book publishing","publishing uk","bristol fashion","fashion telegraph","telegraph travel","travel april","eighteenth century","century eccentric","details corruption","brown thearl","thearl bishop","hervey bishop","derry earl","william shakespeare","london vienna","guardian world","world news","news may","may bristol","bristol hotel","campbell california","california category","category hotels"],"new_description":"file hotel thumb right px hotel hotel_bristol name hotels around world range grand european h_tele bristol paris bristol warsaw vienna budget single room bristol san_francisco chain except brazil bristol resorts around dozen hotels throughouthe_country withe bristol name file hotel_bristol jpg thumb hotel_bristol warsaw file hotel_bristol thumb hotel_bristol salzburg first known hotel_bristol place paris opened became favourite prince wales later edward vii suite closed name fought finally bristol palace hotel century pierre editions paris h_tele bristol paris rue saint honor today one city five star palace hotels two possible origins name association port city bristol frederick hervey th earl bristol frederick hervey fourth earl bristol bishop derry according biographer widely famed bishop traveller great reputation good things lord bristol best_known regarded every city town thus precursor hotels bristol found europe lord bristol died italy athe_start wars interrupted grand_tour bristol paris one many opened peace hoping continental facthat many bristol rome use coat arms city bristol leads thathey named city bishop buthere evidence thathe bristol family ever granted use arms hotel city coat arms freely adopted give aristocratic image modern distribution file_jpg thumb right px bristol_hotel mar del plata italy hotels name whilst france around many luxury bristol_hotels era example sur mer london mar del plata new_york city naples st_petersburg survived new hotel_bristol opened st_petersburg bristol_hotel name changing ito hotel soviet era one functioning bristol rome opened bristol_hotels also presence middleast beirut since bristol_hotel beirut modern hotels use name include frankfurt san_diego india city bristol bristol_hotel hotel_bristol changed name simply bristol h_tele bristol paris favourite ofilm stars monthly fashion shows bristol bar p g germans world_war ii mayor james found room polish murdered author attempted andy died room hotel_bristol mason street san_francisco richard aka richard night stayed hotel_room killing comedy film doc film doc starring ryan neal features hilton hotel hotel_bristol san_francisco famous black cat bar originally basement building athens hotel black cat later located inorth beach san_francisco north beach montgomery street san_francisco hotel_bristol oslo hotel_bristol oslo inovember hans ferdinand mayer german scientist side wrote oslo report major leak technical information passed bristol warsaw opened cie refurbished original style reopened eventhat forms final chapter street years harpercollins hotel_bristol berlin opened destroyed held first_international internationale ausstellung motor show involved scandal detailed book arms manufacturer five star luxury hotel vienna opposite vienna state opera_house one exclusive hotels austriand restructured hotelier georg hosted many historical figures including teddy roosevelt viii prince wales atheight affair named hotel underwent jewish owner samuel forced sell deported concentration camp died leon accused meeting others plot hotel_bristol copenhagen alibi established dewey commission showed thathe hotel burnedown bristol_hotel beirut bristol_hotel beirut one exclusive hotels beirut lebanese independence syrian military force prepared file hotel beirut see_also bristol_hotel disambiguation bristol_hotel externalinks thearl bristol sleep buthe hotel might named wall_street_journal sept high times athe hotel_bristol twenty tales roger williams bristol book_publishing uk bristol fashion telegraph travel april earl eighteenth_century eccentric brian faber arms details corruption berlin brown thearl bishop life hervey bishop derry earl bristol william shakespeare london vienna guardian world news may bristol_hotel campbell california_category hotels"},{"title":"Hotel consolidator","description":"hotel consolidator also called a hotel broker or discounter is a travel company or business that buys up blocks of hotel rooms in top destinations and then resells them at discounted rates to the final customer hotel consolidatorseemingly to broker s buy in bulk and then resell at a predeterminediscounthus creating a big push search for discounted hotel deals online and passing the savings on to their customers global hotel consolidators usually offer discounted rooms in almost every major tourist wikt destination big city or popularesort while local consolidators focus only on a particular geographic area trying to be most competitive on a key for the company market hotel consolidator s activity can be separated into two main operations buying blocks of rooms at volume discounts in certain major cities distributing excess rooms offered by hotels not anticipating full occupancy for given dates the strength inumbers in comparison to individuals who contact hotels directly and ask for discounts and allowances discount s the consolidators are able to achieve deep discounts due to their buying power hotels are willing toffer dramatically reduced room rates to consolidators because they know it will yield a greater number of reservations many hotels are interested in selling room blocks allotmentravel industry allotments to consolidators because they know that discounted rooms mean more business in the long run and subsequently a greater profit for them final client benefits when booking through a hotel consolidator from hotel consolidator s retailer you can either gethe least appealing room in the hotel or you can get a surprising free upgrade to a higher class room if all other standard rooms have been sold outhe key advantage of booking a hotel room through a hotel consolidator is that just one call or just one website visit can get you a room at a to discounted price the key disadvantage is that prices are not negotiable and the cancellation and amendment charges can be pretty harsh additional benefit of hotel consolidators is thathey have rooms available when all other hotels are sold out during conventions and trade fairs category hospitality occupations","main_words":["hotel","consolidator","also_called","hotel","travel_company","business","buys","blocks","hotel_rooms","top","destinations","discounted","rates","final","customer","hotel","buy","bulk","creating","big","push","search","discounted","hotel","deals","online","passing","savings","customers","global","hotel","consolidators","usually","offer","discounted","rooms","almost","every","major","tourist","wikt","destination","big","city","local","consolidators","focus","particular","geographic","area","trying","competitive","key","company","market","hotel","consolidator","activity","separated","two_main","operations","buying","blocks","rooms","volume","discounts","certain","major_cities","excess","rooms","offered","hotels","full","occupancy","given","dates","strength","comparison","individuals","contact","hotels","directly","ask","discounts","discount","consolidators","able","achieve","deep","discounts","due","buying","power","hotels","willing","toffer","dramatically","reduced","room","rates","consolidators","know","yield","greater","number","reservations","many","hotels","interested","selling","room","blocks","industry","allotments","consolidators","know","discounted","rooms","mean","business","long","run","subsequently","greater","profit","final","client","benefits","booking","hotel","consolidator","hotel","consolidator","either","gethe","least","appealing","room","hotel","get","surprising","free","upgrade","higher","class","room","standard","rooms","sold","outhe","key","advantage","booking","hotel_room","hotel","consolidator","one","call","one","website","visit","get","room","discounted","price","key","disadvantage","prices","cancellation","amendment","charges","pretty","harsh","additional","benefit","hotel","consolidators","thathey","rooms","available","hotels","sold","conventions","trade","fairs","category_hospitality_occupations"],"clean_bigrams":[["hotel","consolidator"],["consolidator","also"],["also","called"],["travel","company"],["hotel","rooms"],["top","destinations"],["discounted","rates"],["final","customer"],["customer","hotel"],["big","push"],["push","search"],["discounted","hotel"],["hotel","deals"],["deals","online"],["customers","global"],["global","hotel"],["hotel","consolidators"],["consolidators","usually"],["usually","offer"],["offer","discounted"],["discounted","rooms"],["almost","every"],["every","major"],["major","tourist"],["tourist","wikt"],["wikt","destination"],["destination","big"],["big","city"],["local","consolidators"],["consolidators","focus"],["particular","geographic"],["geographic","area"],["area","trying"],["company","market"],["market","hotel"],["hotel","consolidator"],["two","main"],["main","operations"],["operations","buying"],["buying","blocks"],["volume","discounts"],["certain","major"],["major","cities"],["excess","rooms"],["rooms","offered"],["full","occupancy"],["given","dates"],["contact","hotels"],["hotels","directly"],["achieve","deep"],["deep","discounts"],["discounts","due"],["buying","power"],["power","hotels"],["willing","toffer"],["toffer","dramatically"],["dramatically","reduced"],["reduced","room"],["room","rates"],["greater","number"],["reservations","many"],["many","hotels"],["selling","room"],["room","blocks"],["industry","allotments"],["discounted","rooms"],["rooms","mean"],["long","run"],["greater","profit"],["final","client"],["client","benefits"],["hotel","consolidator"],["hotel","consolidator"],["either","gethe"],["gethe","least"],["least","appealing"],["appealing","room"],["surprising","free"],["free","upgrade"],["higher","class"],["class","room"],["standard","rooms"],["sold","outhe"],["outhe","key"],["key","advantage"],["hotel","room"],["hotel","consolidator"],["one","call"],["one","website"],["website","visit"],["discounted","price"],["key","disadvantage"],["amendment","charges"],["pretty","harsh"],["harsh","additional"],["additional","benefit"],["hotel","consolidators"],["rooms","available"],["trade","fairs"],["fairs","category"],["category","hospitality"],["hospitality","occupations"]],"all_collocations":["hotel consolidator","consolidator also","also called","travel company","hotel rooms","top destinations","discounted rates","final customer","customer hotel","big push","push search","discounted hotel","hotel deals","deals online","customers global","global hotel","hotel consolidators","consolidators usually","usually offer","offer discounted","discounted rooms","almost every","every major","major tourist","tourist wikt","wikt destination","destination big","big city","local consolidators","consolidators focus","particular geographic","geographic area","area trying","company market","market hotel","hotel consolidator","two main","main operations","operations buying","buying blocks","volume discounts","certain major","major cities","excess rooms","rooms offered","full occupancy","given dates","contact hotels","hotels directly","achieve deep","deep discounts","discounts due","buying power","power hotels","willing toffer","toffer dramatically","dramatically reduced","reduced room","room rates","greater number","reservations many","many hotels","selling room","room blocks","industry allotments","discounted rooms","rooms mean","long run","greater profit","final client","client benefits","hotel consolidator","hotel consolidator","either gethe","gethe least","least appealing","appealing room","surprising free","free upgrade","higher class","class room","standard rooms","sold outhe","outhe key","key advantage","hotel room","hotel consolidator","one call","one website","website visit","discounted price","key disadvantage","amendment charges","pretty harsh","harsh additional","additional benefit","hotel consolidators","rooms available","trade fairs","fairs category","category hospitality","hospitality occupations"],"new_description":"hotel consolidator also_called hotel travel_company business buys blocks hotel_rooms top destinations discounted rates final customer hotel buy bulk creating big push search discounted hotel deals online passing savings customers global hotel consolidators usually offer discounted rooms almost every major tourist wikt destination big city local consolidators focus particular geographic area trying competitive key company market hotel consolidator activity separated two_main operations buying blocks rooms volume discounts certain major_cities excess rooms offered hotels full occupancy given dates strength comparison individuals contact hotels directly ask discounts discount consolidators able achieve deep discounts due buying power hotels willing toffer dramatically reduced room rates consolidators know yield greater number reservations many hotels interested selling room blocks industry allotments consolidators know discounted rooms mean business long run subsequently greater profit final client benefits booking hotel consolidator hotel consolidator either gethe least appealing room hotel get surprising free upgrade higher class room standard rooms sold outhe key advantage booking hotel_room hotel consolidator one call one website visit get room discounted price key disadvantage prices cancellation amendment charges pretty harsh additional benefit hotel consolidators thathey rooms available hotels sold conventions trade fairs category_hospitality_occupations"},{"title":"Hotel detective","description":"a hotel detective is a plain clothes person engaged to monitor the security of a hotel and investigate variousecurity orule violations thereinothe same as uniformed security guard s employed by a hotel detectives are the type of detective s that were often retired and or ex police officer s with some training and feature prominently in certainoir fiction especially in the works of raymond chandler and are sometimes referred to as house dicks the term hotel detective is no longer widely used as most hotels now employ uniformed security staff who leave any investigations to law enforcement agenciesee also detectivexternalinks us bureau of labor and statistics private detectives and investigators category private detectives and investigators category hotel terminology detective category hospitality occupations","main_words":["hotel","detective","plain","clothes","person","engaged","monitor","security","hotel","investigate","violations","security","guard","employed","hotel","detectives","type","detective","often","retired","police","officer","training","feature","prominently","fiction","especially","works","chandler","sometimes","referred","house","term","hotel","detective","longer","widely_used","hotels","employ","security","staff","leave","investigations","law_enforcement","also","us","bureau","labor","statistics","private","detectives","investigators","detectives","investigators","category_hotel","terminology","detective","category_hospitality_occupations"],"clean_bigrams":[["hotel","detective"],["plain","clothes"],["clothes","person"],["person","engaged"],["security","guard"],["hotel","detectives"],["often","retired"],["police","officer"],["feature","prominently"],["fiction","especially"],["sometimes","referred"],["term","hotel"],["hotel","detective"],["longer","widely"],["widely","used"],["security","staff"],["law","enforcement"],["us","bureau"],["statistics","private"],["private","detectives"],["investigators","category"],["category","private"],["private","detectives"],["investigators","category"],["category","hotel"],["hotel","terminology"],["terminology","detective"],["detective","category"],["category","hospitality"],["hospitality","occupations"]],"all_collocations":["hotel detective","plain clothes","clothes person","person engaged","security guard","hotel detectives","often retired","police officer","feature prominently","fiction especially","sometimes referred","term hotel","hotel detective","longer widely","widely used","security staff","law enforcement","us bureau","statistics private","private detectives","investigators category","category private","private detectives","investigators category","category hotel","hotel terminology","terminology detective","detective category","category hospitality","hospitality occupations"],"new_description":"hotel detective plain clothes person engaged monitor security hotel investigate violations security guard employed hotel detectives type detective often retired police officer training feature prominently fiction especially works chandler sometimes referred house term hotel detective longer widely_used hotels employ security staff leave investigations law_enforcement also us bureau labor statistics private detectives investigators category_private detectives investigators category_hotel terminology detective category_hospitality_occupations"},{"title":"Hotel manager","description":"file sofia maria g fvert c jpg thumb hotel manager in the gamla stan old town of stockholm around a hotel manager hotelier or lodging manager is a person who manages the operation of a hotel motel resort or other lodging related establishment management of a hotel operation includes but is not limited to performance management of hotel staff management business management upkeep and sanitary standards of hotel facilities customer satisfaction guest satisfaction and customer service marketing management sales management revenue management financial accounting purchasing and other functions the title hotel manager or hotelier often refers to the hotel s general manager who serves as a hotel s head executive though their duties and responsibilities vary depending on the hotel size purpose and expectations from ownership the hotel s general manager is often supported by subordinate department managers that aresponsible for individual departments and key functions of the hotel operation hotel management structure the size and complexity of a hotel management organizational structure variesignificantly depending on the size features and function of the hotel oresort a small hotel operationormally may consist of a small core managementeam consisting of a hotel manager and a few key department supervisors who directly handle day to day operations on the other hand a large full service hotel oresort complex often operates more similarly to a large corporation with an executive board headed by the general manager and consisting of key directorserving as heads of individual hotel departments each department athe large hotel oresort complex may normally consist of subordinate line level managers and supervisors who handle day to day operations example of large full service hotel oresort complex a typical organizational chart for a large resort hotel operation may often resemble the followingeneral managereports to a regional vice president and or ownership investors general manager general manager or managing director assistant general manager oresident manager director of operations orooms division director ofront office or front office manager front desk manager shift manager bellhop bell captain concierge chief concierge valet parking valet captain or parking manager switchboard operator pbx communications manager night auditor overnight manager or head night auditor director of housekeeping or executive housekeeper assistant director of housekeeping or executive housekeeper floor manager shift manager industrialaundry laundry managerevenue management director of revenue management orevenue managereservations manager director of sales marketing senior sales manager sales manager leisure sales manager sales manager business travel sales manager sales manager social group sales manager sales manager corporate group sales manager sales manager marketing manager social media social media manager public relations public relations manager director ofood beverage restaurant managerestaurant manager assistant restaurant manager executive chef room service room service manager butlers manager club manager bar establishment bar lounge manager banquets manager director of events and catering assistant director of events convention services manager event management event manager catering manager comptroller director ofinance accounting manager payroll manager purchasing manager property maintenance director of engineering chief engineer maintenance manager facilities manager human resource manager director of human resources human resources managerecruitment recruiting manager training manager laborelations manager for unionized hotels chief of security recreation manager information technology manager additional management positions may exist for additional facilitiesuch as hotel owned golf courses casinos or spas example for smallimited service hotel a typical organizational chart for a smallow rise hotel operation may resemble the following hotel managereports to regional director and or ownership investors general manager guest service manager front of housekeeping manager chief engineer sales marketing manager food beverage manager administrative functions for a small scale hotel such as accounting payroll and human resources may normally be handled by a centralized corporate office or solely by the hotel manager additional auxiliary functionsuch asecurity may be handled by third party vendor services contracted by the hotel on an as needed basis hotel management is necessary to complete the look of the hotel typical qualifications the background and training required varies by the type of management position size of operation anduties involved industry experience has proven to be a basic qualification for nearly any management occupation within the lodging industry a bs degree bs degree in hospitality management studies hospitality management or an equivalent business degree is often strongly preferred by most employers in the industry but not always required a higher level graduate degree may be desired for a general manager type position but is oftenot required with sufficient management experience and industry tenure a graduate degree may however be required for a higher level corporatexecutive position or above such as a regional vice president whoversees multiple hotel properties and general managers working conditions hotel managers are generally exposed to long shifts that include late hours weekends and holidays due to the hour operation of a hotel the common workplacenvironment in hotels is fast paced withigh levels of interaction with guests employees investors and other managers upper management consisting of senior managers department heads and general manager s may sometimes enjoy a more desirable work schedule consisting of a more traditional business day with occasional weekends and holidays off depending on the size of the hotel a typical hotel manager s day may include assisting with operational duties managing employee performance handling dissatisfied guests managing work schedules purchasing supplies interviewing potential job candidates conducting physical walks and inspections of the hotel facilities and public areas and additional duties these duties may vary each day depending on the needs of the property the manager s responsibility also includes knowing about all current local events as well as thevents being held on the hotel property managers are often required to attend regular department meetings management meetings training seminars for professional development and additional functions a hotel casino property may require additional duties regarding special events being held on property for casino complimentary guestsalary expectations the mediannual wage in of the lodging managers in the united states was category hoteliers category management occupations category hospitality management category hospitality occupations","main_words":["file","sofia","maria","g","c","jpg","thumb","hotel_manager","stan","old","town","stockholm","around","hotel_manager","hotelier","lodging","manager","person","manages","operation","hotel","motel","resort","lodging","related","establishment","management","hotel","operation","includes","limited","performance","management","hotel","staff","management","business","management","sanitary","standards","hotel","facilities","customer","satisfaction","guest","satisfaction","customer_service","marketing","management","sales","management","revenue_management","financial","accounting","purchasing","functions","title","hotel_manager","hotelier","often","refers","hotel","general_manager","serves","hotel","head","executive","though","duties","responsibilities","vary","depending","hotel","size","purpose","expectations","ownership","hotel","general_manager","often","supported","department","managers","aresponsible","individual","departments","key","functions","hotel","operation","hotel_management","structure","size","complexity","hotel_management","organizational","structure","depending","size","features","function","hotel","oresort","small","hotel","may","consist","small","core","managementeam","consisting","hotel_manager","key","department","supervisors","directly","handle","day","day","operations","hand","large","full_service","hotel","oresort","complex","often","operates","similarly","large","corporation","executive","board","headed","general_manager","consisting","key","heads","individual","hotel","departments","department","athe","large","hotel","oresort","complex","may","normally","consist","line","level","managers","supervisors","handle","day","day","operations","example","large","full_service","hotel","oresort","complex","typical","organizational","chart","large","resort","hotel","operation","may","often","resemble","regional","vice_president","ownership","investors","general_manager","general_manager","managing_director","assistant","general_manager","manager","director","operations","division","director","office","front","office","manager","front_desk","manager","shift","manager","bellhop","bell","captain","concierge","chief","concierge","valet_parking","valet","captain","parking","manager","operator","communications","manager","night_auditor","overnight","manager","head","night_auditor","director","housekeeping","executive","housekeeper","assistant","director","housekeeping","executive","housekeeper","floor","manager","shift","manager","laundry","management","director","revenue_management","manager","director","sales","marketing","senior","sales_manager","sales_manager","leisure","sales_manager","sales_manager","business_travel","sales_manager","sales_manager","social","group","sales_manager","sales_manager","corporate","group","sales_manager","sales_manager","marketing","manager","social_media","social_media","manager","public_relations","public_relations","manager","director","ofood","beverage","restaurant","manager","assistant","restaurant","manager","executive","chef","room","service","room","service","manager","butlers","manager","club","manager","bar_establishment_bar","lounge","manager","manager","director","events","catering","assistant","director","events","convention","services","manager","event","management","event","manager","catering","manager","director","accounting","manager","payroll","manager","purchasing","manager","property","maintenance","director","engineering","chief","engineer","maintenance","manager","facilities","manager","human_resource","manager","director","human_resources","human_resources","manager","training","manager","manager","hotels","chief","security","recreation","manager","information_technology","manager","additional","management","positions","may","exist","additional","facilitiesuch","hotel","owned","golf","courses","casinos","spas","example","service","hotel","typical","organizational","chart","rise","hotel","operation","may","resemble","following","hotel","regional","director","ownership","investors","general_manager","guest","service","manager","front","housekeeping","manager","chief","engineer","sales","marketing","manager","food","beverage","manager","administrative","functions","small_scale","hotel","accounting","payroll","human_resources","may","normally","handled","centralized","corporate","office","solely","hotel_manager","additional","auxiliary","may","handled","third_party","vendor","services","contracted","hotel","needed","basis","hotel_management","necessary","complete","look","hotel","typical","qualifications","background","training","required","varies","type","management","position","size","operation","involved","industry","experience","proven","basic","qualification","nearly","management","occupation","within","lodging","industry","degree","degree","hospitality_management_studies","hospitality_management","equivalent","business","degree","often","strongly","preferred","employers","industry","always","required","higher","level","graduate","degree","may","desired","general_manager","type","position","oftenot","required","sufficient","management","experience","industry","tenure","graduate","degree","may","however","required","higher","level","position","regional","vice_president","multiple","hotel","properties","general_managers","working","conditions","generally","exposed","long","shifts","include","late","hours","weekends","holidays","due","hour","operation","hotel","common","hotels","fast","paced","withigh","levels","interaction","guests","employees","investors","managers","upper","management","consisting","senior","managers","department","heads","general_manager","may","sometimes","enjoy","desirable","work","schedule","consisting","traditional","business","day","occasional","weekends","holidays","depending","size","hotel","typical","hotel_manager","day","may_include","assisting","operational","duties","managing","employee","performance","handling","dissatisfied","guests","managing","work","schedules","purchasing","supplies","interviewing","potential","job","candidates","conducting","physical","walks","inspections","hotel","facilities","public","areas","additional","duties","duties","may","vary","day","depending","needs","property","manager","responsibility","also_includes","knowing","current","local","events","well","thevents","held","hotel","property","managers","often","required","attend","regular","department","meetings","management","meetings","training","seminars","professional","development","additional","functions","hotel","casino","property","may","require","additional","duties","regarding","special_events","held","property","casino","complimentary","expectations","wage","lodging","managers","united_states","category","management","occupations_category"],"clean_bigrams":[["file","sofia"],["sofia","maria"],["maria","g"],["c","jpg"],["jpg","thumb"],["thumb","hotel"],["hotel","manager"],["stan","old"],["old","town"],["stockholm","around"],["hotel","manager"],["manager","hotelier"],["lodging","manager"],["operation","hotel"],["hotel","motel"],["motel","resort"],["lodging","related"],["related","establishment"],["establishment","management"],["hotel","operation"],["operation","includes"],["performance","management"],["hotel","staff"],["staff","management"],["management","business"],["business","management"],["sanitary","standards"],["hotel","facilities"],["facilities","customer"],["customer","satisfaction"],["satisfaction","guest"],["guest","satisfaction"],["customer","service"],["service","marketing"],["marketing","management"],["management","sales"],["sales","management"],["management","revenue"],["revenue","management"],["management","financial"],["financial","accounting"],["accounting","purchasing"],["title","hotel"],["hotel","manager"],["manager","hotelier"],["hotelier","often"],["often","refers"],["general","manager"],["head","executive"],["executive","though"],["responsibilities","vary"],["vary","depending"],["hotel","size"],["size","purpose"],["general","manager"],["often","supported"],["department","managers"],["individual","departments"],["key","functions"],["hotel","operation"],["operation","hotel"],["hotel","management"],["management","structure"],["hotel","management"],["management","organizational"],["organizational","structure"],["size","features"],["hotel","oresort"],["small","hotel"],["may","consist"],["small","core"],["core","managementeam"],["managementeam","consisting"],["hotel","manager"],["key","department"],["department","supervisors"],["directly","handle"],["handle","day"],["day","operations"],["large","full"],["full","service"],["service","hotel"],["hotel","oresort"],["oresort","complex"],["complex","often"],["often","operates"],["large","corporation"],["executive","board"],["board","headed"],["general","manager"],["individual","hotel"],["hotel","departments"],["department","athe"],["athe","large"],["large","hotel"],["hotel","oresort"],["oresort","complex"],["complex","may"],["may","normally"],["normally","consist"],["line","level"],["level","managers"],["handle","day"],["day","operations"],["operations","example"],["large","full"],["full","service"],["service","hotel"],["hotel","oresort"],["oresort","complex"],["typical","organizational"],["organizational","chart"],["large","resort"],["resort","hotel"],["hotel","operation"],["operation","may"],["may","often"],["often","resemble"],["regional","vice"],["vice","president"],["ownership","investors"],["investors","general"],["general","manager"],["manager","general"],["general","manager"],["managing","director"],["director","assistant"],["assistant","general"],["general","manager"],["manager","director"],["division","director"],["front","office"],["office","manager"],["manager","front"],["front","desk"],["desk","manager"],["manager","shift"],["shift","manager"],["manager","bellhop"],["bellhop","bell"],["bell","captain"],["captain","concierge"],["concierge","chief"],["chief","concierge"],["concierge","valet"],["valet","parking"],["parking","valet"],["valet","captain"],["parking","manager"],["communications","manager"],["manager","night"],["night","auditor"],["auditor","overnight"],["overnight","manager"],["head","night"],["night","auditor"],["auditor","director"],["executive","housekeeper"],["housekeeper","assistant"],["assistant","director"],["executive","housekeeper"],["housekeeper","floor"],["floor","manager"],["manager","shift"],["shift","manager"],["management","director"],["revenue","management"],["manager","director"],["sales","marketing"],["marketing","senior"],["senior","sales"],["sales","manager"],["manager","sales"],["sales","manager"],["manager","leisure"],["leisure","sales"],["sales","manager"],["manager","sales"],["sales","manager"],["manager","business"],["business","travel"],["travel","sales"],["sales","manager"],["manager","sales"],["sales","manager"],["manager","social"],["social","group"],["group","sales"],["sales","manager"],["manager","sales"],["sales","manager"],["manager","corporate"],["corporate","group"],["group","sales"],["sales","manager"],["manager","sales"],["sales","manager"],["manager","marketing"],["marketing","manager"],["manager","social"],["social","media"],["media","social"],["social","media"],["media","manager"],["manager","public"],["public","relations"],["relations","public"],["public","relations"],["relations","manager"],["manager","director"],["director","ofood"],["ofood","beverage"],["beverage","restaurant"],["restaurant","manager"],["manager","assistant"],["assistant","restaurant"],["restaurant","manager"],["manager","executive"],["executive","chef"],["chef","room"],["room","service"],["service","room"],["room","service"],["service","manager"],["manager","butlers"],["butlers","manager"],["manager","club"],["club","manager"],["manager","bar"],["bar","establishment"],["establishment","bar"],["bar","lounge"],["lounge","manager"],["manager","director"],["catering","assistant"],["assistant","director"],["events","convention"],["convention","services"],["services","manager"],["manager","event"],["event","management"],["management","event"],["event","manager"],["manager","catering"],["catering","manager"],["manager","director"],["accounting","manager"],["manager","payroll"],["payroll","manager"],["manager","purchasing"],["purchasing","manager"],["manager","property"],["property","maintenance"],["maintenance","director"],["engineering","chief"],["chief","engineer"],["engineer","maintenance"],["maintenance","manager"],["manager","facilities"],["facilities","manager"],["manager","human"],["human","resource"],["resource","manager"],["manager","director"],["human","resources"],["resources","human"],["human","resources"],["manager","training"],["training","manager"],["hotels","chief"],["security","recreation"],["recreation","manager"],["manager","information"],["information","technology"],["technology","manager"],["manager","additional"],["additional","management"],["management","positions"],["positions","may"],["may","exist"],["additional","facilitiesuch"],["hotel","owned"],["owned","golf"],["golf","courses"],["courses","casinos"],["spas","example"],["service","hotel"],["hotel","typical"],["typical","organizational"],["organizational","chart"],["rise","hotel"],["hotel","operation"],["operation","may"],["may","resemble"],["following","hotel"],["regional","director"],["ownership","investors"],["investors","general"],["general","manager"],["manager","guest"],["guest","service"],["service","manager"],["manager","front"],["housekeeping","manager"],["manager","chief"],["chief","engineer"],["engineer","sales"],["sales","marketing"],["marketing","manager"],["manager","food"],["food","beverage"],["beverage","manager"],["manager","administrative"],["administrative","functions"],["small","scale"],["scale","hotel"],["accounting","payroll"],["human","resources"],["resources","may"],["may","normally"],["centralized","corporate"],["corporate","office"],["hotel","manager"],["manager","additional"],["additional","auxiliary"],["third","party"],["party","vendor"],["vendor","services"],["services","contracted"],["needed","basis"],["basis","hotel"],["hotel","management"],["hotel","typical"],["typical","qualifications"],["training","required"],["required","varies"],["management","position"],["position","size"],["involved","industry"],["industry","experience"],["basic","qualification"],["management","occupation"],["occupation","within"],["lodging","industry"],["hospitality","management"],["management","studies"],["studies","hospitality"],["hospitality","management"],["equivalent","business"],["business","degree"],["often","strongly"],["strongly","preferred"],["always","required"],["higher","level"],["level","graduate"],["graduate","degree"],["degree","may"],["general","manager"],["manager","type"],["type","position"],["oftenot","required"],["sufficient","management"],["management","experience"],["industry","tenure"],["graduate","degree"],["degree","may"],["may","however"],["higher","level"],["regional","vice"],["vice","president"],["multiple","hotel"],["hotel","properties"],["general","managers"],["managers","working"],["working","conditions"],["conditions","hotel"],["hotel","managers"],["generally","exposed"],["long","shifts"],["include","late"],["late","hours"],["hours","weekends"],["holidays","due"],["hour","operation"],["operation","hotel"],["fast","paced"],["paced","withigh"],["withigh","levels"],["guests","employees"],["employees","investors"],["managers","upper"],["upper","management"],["management","consisting"],["senior","managers"],["managers","department"],["department","heads"],["general","manager"],["may","sometimes"],["sometimes","enjoy"],["desirable","work"],["work","schedule"],["schedule","consisting"],["traditional","business"],["business","day"],["occasional","weekends"],["hotel","typical"],["typical","hotel"],["hotel","manager"],["day","may"],["may","include"],["include","assisting"],["operational","duties"],["duties","managing"],["managing","employee"],["employee","performance"],["performance","handling"],["handling","dissatisfied"],["dissatisfied","guests"],["guests","managing"],["managing","work"],["work","schedules"],["schedules","purchasing"],["purchasing","supplies"],["supplies","interviewing"],["interviewing","potential"],["potential","job"],["job","candidates"],["candidates","conducting"],["conducting","physical"],["physical","walks"],["hotel","facilities"],["public","areas"],["additional","duties"],["duties","may"],["may","vary"],["day","depending"],["responsibility","also"],["also","includes"],["includes","knowing"],["current","local"],["local","events"],["hotel","property"],["property","managers"],["often","required"],["attend","regular"],["regular","department"],["department","meetings"],["meetings","management"],["management","meetings"],["meetings","training"],["training","seminars"],["professional","development"],["additional","functions"],["hotel","casino"],["casino","property"],["property","may"],["may","require"],["require","additional"],["additional","duties"],["duties","regarding"],["regarding","special"],["special","events"],["casino","complimentary"],["lodging","managers"],["united","states"],["category","hoteliers"],["hoteliers","category"],["category","management"],["management","occupations"],["occupations","category"],["category","hospitality"],["hospitality","management"],["management","category"],["category","hospitality"],["hospitality","occupations"]],"all_collocations":["file sofia","sofia maria","maria g","c jpg","thumb hotel","hotel manager","stan old","old town","stockholm around","hotel manager","manager hotelier","lodging manager","operation hotel","hotel motel","motel resort","lodging related","related establishment","establishment management","hotel operation","operation includes","performance management","hotel staff","staff management","management business","business management","sanitary standards","hotel facilities","facilities customer","customer satisfaction","satisfaction guest","guest satisfaction","customer service","service marketing","marketing management","management sales","sales management","management revenue","revenue management","management financial","financial accounting","accounting purchasing","title hotel","hotel manager","manager hotelier","hotelier often","often refers","general manager","head executive","executive though","responsibilities vary","vary depending","hotel size","size purpose","general manager","often supported","department managers","individual departments","key functions","hotel operation","operation hotel","hotel management","management structure","hotel management","management organizational","organizational structure","size features","hotel oresort","small hotel","may consist","small core","core managementeam","managementeam consisting","hotel manager","key department","department supervisors","directly handle","handle day","day operations","large full","full service","service hotel","hotel oresort","oresort complex","complex often","often operates","large corporation","executive board","board headed","general manager","individual hotel","hotel departments","department athe","athe large","large hotel","hotel oresort","oresort complex","complex may","may normally","normally consist","line level","level managers","handle day","day operations","operations example","large full","full service","service hotel","hotel oresort","oresort complex","typical organizational","organizational chart","large resort","resort hotel","hotel operation","operation may","may often","often resemble","regional vice","vice president","ownership investors","investors general","general manager","manager general","general manager","managing director","director assistant","assistant general","general manager","manager director","division director","front office","office manager","manager front","front desk","desk manager","manager shift","shift manager","manager bellhop","bellhop bell","bell captain","captain concierge","concierge chief","chief concierge","concierge valet","valet parking","parking valet","valet captain","parking manager","communications manager","manager night","night auditor","auditor overnight","overnight manager","head night","night auditor","auditor director","executive housekeeper","housekeeper assistant","assistant director","executive housekeeper","housekeeper floor","floor manager","manager shift","shift manager","management director","revenue management","manager director","sales marketing","marketing senior","senior sales","sales manager","manager sales","sales manager","manager leisure","leisure sales","sales manager","manager sales","sales manager","manager business","business travel","travel sales","sales manager","manager sales","sales manager","manager social","social group","group sales","sales manager","manager sales","sales manager","manager corporate","corporate group","group sales","sales manager","manager sales","sales manager","manager marketing","marketing manager","manager social","social media","media social","social media","media manager","manager public","public relations","relations public","public relations","relations manager","manager director","director ofood","ofood beverage","beverage restaurant","restaurant manager","manager assistant","assistant restaurant","restaurant manager","manager executive","executive chef","chef room","room service","service room","room service","service manager","manager butlers","butlers manager","manager club","club manager","manager bar","bar establishment","establishment bar","bar lounge","lounge manager","manager director","catering assistant","assistant director","events convention","convention services","services manager","manager event","event management","management event","event manager","manager catering","catering manager","manager director","accounting manager","manager payroll","payroll manager","manager purchasing","purchasing manager","manager property","property maintenance","maintenance director","engineering chief","chief engineer","engineer maintenance","maintenance manager","manager facilities","facilities manager","manager human","human resource","resource manager","manager director","human resources","resources human","human resources","manager training","training manager","hotels chief","security recreation","recreation manager","manager information","information technology","technology manager","manager additional","additional management","management positions","positions may","may exist","additional facilitiesuch","hotel owned","owned golf","golf courses","courses casinos","spas example","service hotel","hotel typical","typical organizational","organizational chart","rise hotel","hotel operation","operation may","may resemble","following hotel","regional director","ownership investors","investors general","general manager","manager guest","guest service","service manager","manager front","housekeeping manager","manager chief","chief engineer","engineer sales","sales marketing","marketing manager","manager food","food beverage","beverage manager","manager administrative","administrative functions","small scale","scale hotel","accounting payroll","human resources","resources may","may normally","centralized corporate","corporate office","hotel manager","manager additional","additional auxiliary","third party","party vendor","vendor services","services contracted","needed basis","basis hotel","hotel management","hotel typical","typical qualifications","training required","required varies","management position","position size","involved industry","industry experience","basic qualification","management occupation","occupation within","lodging industry","hospitality management","management studies","studies hospitality","hospitality management","equivalent business","business degree","often strongly","strongly preferred","always required","higher level","level graduate","graduate degree","degree may","general manager","manager type","type position","oftenot required","sufficient management","management experience","industry tenure","graduate degree","degree may","may however","higher level","regional vice","vice president","multiple hotel","hotel properties","general managers","managers working","working conditions","conditions hotel","hotel managers","generally exposed","long shifts","include late","late hours","hours weekends","holidays due","hour operation","operation hotel","fast paced","paced withigh","withigh levels","guests employees","employees investors","managers upper","upper management","management consisting","senior managers","managers department","department heads","general manager","may sometimes","sometimes enjoy","desirable work","work schedule","schedule consisting","traditional business","business day","occasional weekends","hotel typical","typical hotel","hotel manager","day may","may include","include assisting","operational duties","duties managing","managing employee","employee performance","performance handling","handling dissatisfied","dissatisfied guests","guests managing","managing work","work schedules","schedules purchasing","purchasing supplies","supplies interviewing","interviewing potential","potential job","job candidates","candidates conducting","conducting physical","physical walks","hotel facilities","public areas","additional duties","duties may","may vary","day depending","responsibility also","also includes","includes knowing","current local","local events","hotel property","property managers","often required","attend regular","regular department","department meetings","meetings management","management meetings","meetings training","training seminars","professional development","additional functions","hotel casino","casino property","property may","may require","require additional","additional duties","duties regarding","regarding special","special events","casino complimentary","lodging managers","united states","category hoteliers","hoteliers category","category management","management occupations","occupations category","category hospitality","hospitality management","management category","category hospitality","hospitality occupations"],"new_description":"file sofia maria g c jpg thumb hotel_manager stan old town stockholm around hotel_manager hotelier lodging manager person manages operation hotel motel resort lodging related establishment management hotel operation includes limited performance management hotel staff management business management sanitary standards hotel facilities customer satisfaction guest satisfaction customer_service marketing management sales management revenue_management financial accounting purchasing functions title hotel_manager hotelier often refers hotel general_manager serves hotel head executive though duties responsibilities vary depending hotel size purpose expectations ownership hotel general_manager often supported department managers aresponsible individual departments key functions hotel operation hotel_management structure size complexity hotel_management organizational structure depending size features function hotel oresort small hotel may consist small core managementeam consisting hotel_manager key department supervisors directly handle day day operations hand large full_service hotel oresort complex often operates similarly large corporation executive board headed general_manager consisting key heads individual hotel departments department athe large hotel oresort complex may normally consist line level managers supervisors handle day day operations example large full_service hotel oresort complex typical organizational chart large resort hotel operation may often resemble regional vice_president ownership investors general_manager general_manager managing_director assistant general_manager manager director operations division director office front office manager front_desk manager shift manager bellhop bell captain concierge chief concierge valet_parking valet captain parking manager operator communications manager night_auditor overnight manager head night_auditor director housekeeping executive housekeeper assistant director housekeeping executive housekeeper floor manager shift manager laundry management director revenue_management manager director sales marketing senior sales_manager sales_manager leisure sales_manager sales_manager business_travel sales_manager sales_manager social group sales_manager sales_manager corporate group sales_manager sales_manager marketing manager social_media social_media manager public_relations public_relations manager director ofood beverage restaurant manager assistant restaurant manager executive chef room service room service manager butlers manager club manager bar_establishment_bar lounge manager manager director events catering assistant director events convention services manager event management event manager catering manager director accounting manager payroll manager purchasing manager property maintenance director engineering chief engineer maintenance manager facilities manager human_resource manager director human_resources human_resources manager training manager manager hotels chief security recreation manager information_technology manager additional management positions may exist additional facilitiesuch hotel owned golf courses casinos spas example service hotel typical organizational chart rise hotel operation may resemble following hotel regional director ownership investors general_manager guest service manager front housekeeping manager chief engineer sales marketing manager food beverage manager administrative functions small_scale hotel accounting payroll human_resources may normally handled centralized corporate office solely hotel_manager additional auxiliary may handled third_party vendor services contracted hotel needed basis hotel_management necessary complete look hotel typical qualifications background training required varies type management position size operation involved industry experience proven basic qualification nearly management occupation within lodging industry degree degree hospitality_management_studies hospitality_management equivalent business degree often strongly preferred employers industry always required higher level graduate degree may desired general_manager type position oftenot required sufficient management experience industry tenure graduate degree may however required higher level position regional vice_president multiple hotel properties general_managers working conditions hotel_managers generally exposed long shifts include late hours weekends holidays due hour operation hotel common hotels fast paced withigh levels interaction guests employees investors managers upper management consisting senior managers department heads general_manager may sometimes enjoy desirable work schedule consisting traditional business day occasional weekends holidays depending size hotel typical hotel_manager day may_include assisting operational duties managing employee performance handling dissatisfied guests managing work schedules purchasing supplies interviewing potential job candidates conducting physical walks inspections hotel facilities public areas additional duties duties may vary day depending needs property manager responsibility also_includes knowing current local events well thevents held hotel property managers often required attend regular department meetings management meetings training seminars professional development additional functions hotel casino property may require additional duties regarding special_events held property casino complimentary expectations wage lodging managers united_states category_hoteliers category management occupations_category hospitality_management_category_hospitality_occupations"},{"title":"Hotel Nikko San Francisco","description":"pushpin map united statesan francisco central california usa opening date october architect whisler patri architects amtad inc operator nikko hotels owner datam llc number of rooms number of suites number of restaurants anzu kanpai feinstein s athe nikko floors height parking valet only website wwwhotelnikkosfcom footnotes hotel nikko san francisco is a high rise hotel at mason street near union square san francisco california the storey story hotel has hotel rooms and is owned by datam llc and operated by nikko hotels the hotel is one block away from union square san francisco and five blocks from the moscone center the hotel opened in october description the hotel was designed by amtad inc and whisler patri architects and built by takenaka the hotel completed a million renovation commemorating its th anniversary in march the hotel has guest floors elevators a health club spa lounge cabaret room and a restaurant anzu is located on the nd floor and is visible from the lobby the hour health club nikko isq ft and includes a fitness center steam room sauna shiatsu massages and an atrium style poolocated on the th floor there is a sq ft outdoor terrace which includes a dog run both of which completeduring club nikko s renovation in early the terraces provides access to fresh air and naturalighthe hotel has an imperialounge located on the rd floor and is only accessible to gueststaying the imperial floors the lounge offers a light breakfast every morning as well as a wine and beereception every evening both available days a week in hotel nikko was named aaa diamond property and is also a forbestar property restaurant anzu specializes in californian cuisine with asian flare and is open for breakfast lunch andinner the critically acclaimed restautant anzu is overseen by hotel nikko s food and beverage director chef phillippe striffeler was named one ofive recipients of the prestigious antonin car medal presented by the american culinary federation san francisco chapter onovember amenities concierge hour business center hour in room dining restaurant anzu kanpai lounge feinstein s athe nikko laundry cleaning sq ft of event space in house audio visual anzu to you food truck starbucks coffee gift shop nicholas beauty salon beverley hills carental awards outstandingeneral manager of the year anna marie presutti bay area s best and brightest companies to work for by national association for business resources antonin car medal chef phillipe striffeler of restaurant anzu best hotel in the city by the san francisco examiner star of the industry award by california hotel and lodging association category special events and on going epa s energy star award forbestar aaa diamond since see also nikko hotels okura hotelsan francisco category skyscraper hotels in san francisco category establishments in california category buildings and structures completed in category hotels","main_words":["pushpin","map","united","francisco","central","california","usa","opening","date","october","architect","architects","inc","operator","nikko","hotels","owner","llc","number","rooms","number","suites","number","restaurants","anzu","feinstein","athe","nikko","floors","height","parking","valet","website_footnotes","hotel","nikko","san_francisco","high","rise","hotel","mason","street","near","union","square","san_francisco_california","storey","story","hotel","hotel_rooms","owned","llc","operated","nikko","hotels","hotel","one","block","away","union","square","san_francisco","five","blocks","center","hotel","opened","october","description","hotel","designed","inc","architects","built","hotel","completed","million","renovation","commemorating","th_anniversary","march","hotel","guest","floors","health","club","spa","lounge","cabaret","room","restaurant","anzu","located","floor","visible","lobby","hour","health","club","nikko","includes","fitness","center","steam","room","atrium","style","th_floor","outdoor","terrace","includes","dog","run","club","nikko","renovation","early","provides","access","fresh","air","hotel","located","floor","accessible","imperial","floors","lounge","offers","light","breakfast","every","morning","well","wine","every","evening","available","days","week","hotel","nikko","named","aaa","diamond","property","also","property","restaurant","anzu","specializes","cuisine","asian","flare","open","breakfast","lunch","andinner","critically","acclaimed","anzu","overseen","hotel","nikko","food","beverage","director","chef","named","one","ofive","recipients","prestigious","car","medal","presented","american","culinary","federation","san_francisco","chapter","onovember","amenities","concierge","hour","business","center","hour","room","dining","restaurant","anzu","lounge","feinstein","athe","nikko","laundry","cleaning","event","space","house","audio","visual","anzu","food_truck","starbucks","coffee","gift","shop","nicholas","beauty","salon","hills","carental","awards","manager","year","anna","marie","bay_area","best","companies","work","national","association","business","resources","car","medal","chef","restaurant","anzu","best","hotel","city","san_francisco","examiner","star","industry","award","california","hotel","lodging","association","category","special_events","going","epa","energy","star","award","aaa","diamond","since","see_also","nikko","hotels","skyscraper","hotels","san_francisco","category_establishments","california_category","buildings","structures_completed","category_hotels"],"clean_bigrams":[["pushpin","map"],["map","united"],["francisco","central"],["central","california"],["california","usa"],["usa","opening"],["opening","date"],["date","october"],["october","architect"],["inc","operator"],["operator","nikko"],["nikko","hotels"],["hotels","owner"],["llc","number"],["rooms","number"],["suites","number"],["restaurants","anzu"],["athe","nikko"],["nikko","floors"],["floors","height"],["height","parking"],["parking","valet"],["footnotes","hotel"],["hotel","nikko"],["nikko","san"],["san","francisco"],["high","rise"],["rise","hotel"],["mason","street"],["street","near"],["near","union"],["union","square"],["square","san"],["san","francisco"],["francisco","california"],["storey","story"],["story","hotel"],["hotel","rooms"],["nikko","hotels"],["one","block"],["block","away"],["union","square"],["square","san"],["san","francisco"],["five","blocks"],["hotel","opened"],["october","description"],["hotel","completed"],["million","renovation"],["renovation","commemorating"],["th","anniversary"],["guest","floors"],["health","club"],["club","spa"],["spa","lounge"],["lounge","cabaret"],["cabaret","room"],["restaurant","anzu"],["hour","health"],["health","club"],["club","nikko"],["fitness","center"],["center","steam"],["steam","room"],["atrium","style"],["th","floor"],["outdoor","terrace"],["dog","run"],["club","nikko"],["provides","access"],["fresh","air"],["imperial","floors"],["lounge","offers"],["light","breakfast"],["breakfast","every"],["every","morning"],["every","evening"],["available","days"],["hotel","nikko"],["named","aaa"],["aaa","diamond"],["diamond","property"],["property","restaurant"],["restaurant","anzu"],["anzu","specializes"],["asian","flare"],["breakfast","lunch"],["lunch","andinner"],["critically","acclaimed"],["hotel","nikko"],["beverage","director"],["director","chef"],["named","one"],["one","ofive"],["ofive","recipients"],["car","medal"],["medal","presented"],["american","culinary"],["culinary","federation"],["federation","san"],["san","francisco"],["francisco","chapter"],["chapter","onovember"],["onovember","amenities"],["amenities","concierge"],["concierge","hour"],["hour","business"],["business","center"],["center","hour"],["room","dining"],["dining","restaurant"],["restaurant","anzu"],["lounge","feinstein"],["athe","nikko"],["nikko","laundry"],["laundry","cleaning"],["event","space"],["house","audio"],["audio","visual"],["visual","anzu"],["food","truck"],["truck","starbucks"],["starbucks","coffee"],["coffee","gift"],["gift","shop"],["shop","nicholas"],["nicholas","beauty"],["beauty","salon"],["hills","carental"],["carental","awards"],["year","anna"],["anna","marie"],["bay","area"],["national","association"],["business","resources"],["car","medal"],["medal","chef"],["restaurant","anzu"],["anzu","best"],["best","hotel"],["san","francisco"],["francisco","examiner"],["examiner","star"],["industry","award"],["california","hotel"],["lodging","association"],["association","category"],["category","special"],["special","events"],["going","epa"],["energy","star"],["star","award"],["aaa","diamond"],["diamond","since"],["since","see"],["see","also"],["also","nikko"],["nikko","hotels"],["francisco","category"],["category","skyscraper"],["skyscraper","hotels"],["san","francisco"],["francisco","category"],["category","establishments"],["california","category"],["category","buildings"],["structures","completed"],["category","hotels"]],"all_collocations":["pushpin map","map united","francisco central","central california","california usa","usa opening","opening date","date october","october architect","inc operator","operator nikko","nikko hotels","hotels owner","llc number","rooms number","suites number","restaurants anzu","athe nikko","nikko floors","floors height","height parking","parking valet","footnotes hotel","hotel nikko","nikko san","san francisco","high rise","rise hotel","mason street","street near","near union","union square","square san","san francisco","francisco california","storey story","story hotel","hotel rooms","nikko hotels","one block","block away","union square","square san","san francisco","five blocks","hotel opened","october description","hotel completed","million renovation","renovation commemorating","th anniversary","guest floors","health club","club spa","spa lounge","lounge cabaret","cabaret room","restaurant anzu","hour health","health club","club nikko","fitness center","center steam","steam room","atrium style","th floor","outdoor terrace","dog run","club nikko","provides access","fresh air","imperial floors","lounge offers","light breakfast","breakfast every","every morning","every evening","available days","hotel nikko","named aaa","aaa diamond","diamond property","property restaurant","restaurant anzu","anzu specializes","asian flare","breakfast lunch","lunch andinner","critically acclaimed","hotel nikko","beverage director","director chef","named one","one ofive","ofive recipients","car medal","medal presented","american culinary","culinary federation","federation san","san francisco","francisco chapter","chapter onovember","onovember amenities","amenities concierge","concierge hour","hour business","business center","center hour","room dining","dining restaurant","restaurant anzu","lounge feinstein","athe nikko","nikko laundry","laundry cleaning","event space","house audio","audio visual","visual anzu","food truck","truck starbucks","starbucks coffee","coffee gift","gift shop","shop nicholas","nicholas beauty","beauty salon","hills carental","carental awards","year anna","anna marie","bay area","national association","business resources","car medal","medal chef","restaurant anzu","anzu best","best hotel","san francisco","francisco examiner","examiner star","industry award","california hotel","lodging association","association category","category special","special events","going epa","energy star","star award","aaa diamond","diamond since","since see","see also","also nikko","nikko hotels","francisco category","category skyscraper","skyscraper hotels","san francisco","francisco category","category establishments","california category","category buildings","structures completed","category hotels"],"new_description":"pushpin map united francisco central california usa opening date october architect architects inc operator nikko hotels owner llc number rooms number suites number restaurants anzu feinstein athe nikko floors height parking valet website_footnotes hotel nikko san_francisco high rise hotel mason street near union square san_francisco_california storey story hotel hotel_rooms owned llc operated nikko hotels hotel one block away union square san_francisco five blocks center hotel opened october description hotel designed inc architects built hotel completed million renovation commemorating th_anniversary march hotel guest floors health club spa lounge cabaret room restaurant anzu located floor visible lobby hour health club nikko includes fitness center steam room atrium style th_floor outdoor terrace includes dog run club nikko renovation early provides access fresh air hotel located floor accessible imperial floors lounge offers light breakfast every morning well wine every evening available days week hotel nikko named aaa diamond property also property restaurant anzu specializes cuisine asian flare open breakfast lunch andinner critically acclaimed anzu overseen hotel nikko food beverage director chef named one ofive recipients prestigious car medal presented american culinary federation san_francisco chapter onovember amenities concierge hour business center hour room dining restaurant anzu lounge feinstein athe nikko laundry cleaning event space house audio visual anzu food_truck starbucks coffee gift shop nicholas beauty salon hills carental awards manager year anna marie bay_area best companies work national association business resources car medal chef restaurant anzu best hotel city san_francisco examiner star industry award california hotel lodging association category special_events going epa energy star award aaa diamond since see_also nikko hotels francisco_category skyscraper hotels san_francisco category_establishments california_category buildings structures_completed category_hotels"},{"title":"Hotel thief","description":"a hotel thief isomeone who steals items from the rooms of guests at a hotel several factors may attract a thief to a hotel rooms are generally empty for most of the day with few hiding places for valuable possessions outside of a hotel safe which not all guests make use ofurthermore it is comparatively easy for a thief to leave a hotel without arousing suspicion as guests are continually coming and going with luggage althoughotel room security has improved with more advanced locks this has not eradicated hotel theft a thief can enter a room without needing to pick a lock for example by pretending to be a guest who has leftheir key in theiroom items can also be taken while a guest is distracted for example when checking in one of the most prolific hotel thieves was ernest le ford who stole thousands of dollars worth of jewels from hotels inew york city in thearly part of the twentieth century including taking worth from a room athe manhattan square hotel another nineteenth century hotel thief successfully stole worth of goldust from a san francisco hotel category hospitality industry category theft","main_words":["hotel","thief","items","rooms","guests","hotel","several","factors","may","attract","thief","hotel_rooms","generally","empty","day","hiding","places","valuable","outside","hotel","safe","guests","make","use","easy","thief","leave","hotel","without","suspicion","guests","continually","coming","going","luggage","room","security","improved","advanced","locks","hotel","theft","thief","enter","room","without","needing","pick","lock","example","guest","key","items","also","taken","guest","example","checking","one","prolific","hotel","ernest","ford","thousands","dollars","worth","hotels","inew_york_city","thearly","part","twentieth_century","including","taking","worth","room","athe","manhattan","square","hotel","another","nineteenth_century","hotel","thief","successfully","worth","san_francisco","hotel","category_hospitality_industry"],"clean_bigrams":[["hotel","thief"],["hotel","several"],["several","factors"],["factors","may"],["may","attract"],["hotel","rooms"],["generally","empty"],["hiding","places"],["hotel","safe"],["guests","make"],["make","use"],["hotel","without"],["continually","coming"],["room","security"],["advanced","locks"],["hotel","theft"],["room","without"],["without","needing"],["prolific","hotel"],["dollars","worth"],["hotels","inew"],["inew","york"],["york","city"],["thearly","part"],["twentieth","century"],["century","including"],["including","taking"],["taking","worth"],["room","athe"],["athe","manhattan"],["manhattan","square"],["square","hotel"],["hotel","another"],["another","nineteenth"],["nineteenth","century"],["century","hotel"],["hotel","thief"],["thief","successfully"],["san","francisco"],["francisco","hotel"],["hotel","category"],["category","hospitality"],["hospitality","industry"],["industry","category"],["category","theft"]],"all_collocations":["hotel thief","hotel several","several factors","factors may","may attract","hotel rooms","generally empty","hiding places","hotel safe","guests make","make use","hotel without","continually coming","room security","advanced locks","hotel theft","room without","without needing","prolific hotel","dollars worth","hotels inew","inew york","york city","thearly part","twentieth century","century including","including taking","taking worth","room athe","athe manhattan","manhattan square","square hotel","hotel another","another nineteenth","nineteenth century","century hotel","hotel thief","thief successfully","san francisco","francisco hotel","hotel category","category hospitality","hospitality industry","industry category","category theft"],"new_description":"hotel thief items rooms guests hotel several factors may attract thief hotel_rooms generally empty day hiding places valuable outside hotel safe guests make use easy thief leave hotel without suspicion guests continually coming going luggage room security improved advanced locks hotel theft thief enter room without needing pick lock example guest key items also taken guest example checking one prolific hotel ernest ford thousands dollars worth hotels inew_york_city thearly part twentieth_century including taking worth room athe manhattan square hotel another nineteenth_century hotel thief successfully worth san_francisco hotel category_hospitality_industry category_theft"},{"title":"Hotelschool The Hague","description":"file hotelschool the hague brusselselaan img jpg thumb hotelschool the hague file hotelschool the hague brusselselaan img jpg thumb hotelschool the hague file hotelschool the hague brusselselaan img jpg thumb the self run restaurant of hotelschool the hague file hotelschool the hague brusselselaan img jpg thumb hotelschool the hague hotelschool the hague is an international university of applied sciencespecialising in hospitality management studies hospitality management located in the hague and in amsterdam the netherlands hotelschool the hague is one of the independent single sector universities of applied sciences in the netherlands hotelschool the hague was founded and funded in by horecaf the former employers organisation in the hotel and catering sector since its foundation the hotelschool has become an international school specialised in hospitality management offering a year bachelor s degree in hotel and hospitality managementhis degree course is also available as the accelerated international fastrack programme in hotelschool the hague opened a campus in amsterdam withe same curriculum as the campus in the hague bachelor of business administration in hotel management hotelschool the hague offers a single bachelor s programme on its campuses in the hague and amsterdam the programme is taught in english for both national as well as international students the four year bachelor s course results in an internationally recognised bachelor of business administration in hotel managementhe bachelor s programme is a businesstudy set in the context of hospitality where students learn about hospitality from a strategic tactical and operational perspective and participate in two internships abroad the university offers a fastrack programme for students with previous hospitality qualifications the firstwo years of the regular bachelor s programme areplaced by a five week programme in the summer withe rest of the coursequal to the regular course master in hospitality management hotelschool the hague offers a month full time mba programme with a focus on business development concept innovation and change management in the mba has been ranked best master of business in the netherlands international reputation the course programmes have been accredited by the accreditation organisation of the netherlands and flanders nvao in the bachelor s programme was accredited with an excellent score for out of quality dimensions objectives of theducation curriculum personnel faculty facilities quality management and results of the programme in the hotel school was ranked number of the top hospitality and hotel management schools in the world by ceoworld magazine in hotelschool the hague was ranked among the top hospitality schools worldwide for preparing students for an international career in hospitality managementhe survey was conducted by tns global in hotelschool the hague was described as one of the besthree international centers of hotel management by caterer hotel keeper hotelschool the hague has a group of lecturers with experience in hospitality management education faculty dj russellabour law and legal issues of hospitality r gallicano specialist in food and beverage trends in hospitality d tromp statistical research in the hospitality industry sl feigenbaum services management and strategy g l hepburn ma leiden mapplied ethics utrecht business ethics and corporate social responsibility j lundy australia lecturer management leadership and human resource management j wouterstatistical research in the hospitality industry a de visser amundson senior lecturer in marketing and business model innovation mr fabian fagelecturer operations and strategic management category hospitality schools category vocational universities in the netherlands category organisations based in the hague","main_words":["file","hotelschool","hague","brusselselaan","img_jpg","thumb","hotelschool","hague","file","hotelschool","hague","brusselselaan","img_jpg","thumb","hotelschool","hague","file","hotelschool","hague","brusselselaan","img_jpg","thumb","self","run","restaurant","hotelschool","hague","file","hotelschool","hague","brusselselaan","img_jpg","thumb","hotelschool","hague","hotelschool","hague","international","university","applied","hospitality_management_studies","hospitality_management","located","hague","amsterdam","netherlands","hotelschool","hague","one","independent","single","sector","universities","applied","sciences","netherlands","hotelschool","hague","founded","funded","former","employers","organisation","hotel","catering","sector","since","foundation","hotelschool","become","international_school","specialised","hospitality_management","offering","year","bachelor","degree","hotel","hospitality","degree","course","also_available","accelerated","international","fastrack","programme","hotelschool","hague","opened","campus","amsterdam","withe","curriculum","campus","hague","bachelor","business_administration","hotel_management","hotelschool","hague","offers","single","bachelor","programme","campuses","hague","amsterdam","programme","taught","english","national","well","international","students","four","year","bachelor","course","results","internationally","recognised","bachelor","business_administration","bachelor","programme","set","context","hospitality","students","learn","hospitality","strategic","operational","perspective","participate","two","internships","abroad","university","offers","fastrack","programme","students","previous","hospitality","qualifications","firstwo","years","regular","bachelor","programme","five","week","programme","summer","withe","rest","regular","course","master","hospitality_management","hotelschool","hague","offers","month","full_time","programme","focus","business_development","concept","innovation","change","management","ranked","best","master","business","netherlands","international","reputation","course","programmes","accredited","accreditation","organisation","netherlands","bachelor","programme","accredited","excellent","score","quality","dimensions","objectives","theducation","curriculum","personnel","faculty","facilities","quality","management","results","programme","hotel","school","ranked","number","top","hospitality","hotel_management","schools","hotelschool","hague","ranked","among","top","worldwide","preparing","students","international","career","survey","conducted","global","hotelschool","hague","described","one","international","centers","hotel_management","hotel","keeper","hotelschool","hague","group","experience","hospitality_management","education","faculty","law","legal","issues","hospitality","r","specialist","food","beverage","trends","hospitality","statistical","research","hospitality_industry","services","management","strategy","g","l","ethics","business","ethics","corporate","social","responsibility","j","australia","lecturer","management","leadership","human_resource","management","j","research","hospitality_industry","de","senior","lecturer","marketing","business_model","innovation","operations","strategic","category","universities","hague"],"clean_bigrams":[["file","hotelschool"],["hague","brusselselaan"],["brusselselaan","img"],["img","jpg"],["jpg","thumb"],["thumb","hotelschool"],["hague","file"],["file","hotelschool"],["hague","brusselselaan"],["brusselselaan","img"],["img","jpg"],["jpg","thumb"],["thumb","hotelschool"],["hague","file"],["file","hotelschool"],["hague","brusselselaan"],["brusselselaan","img"],["img","jpg"],["jpg","thumb"],["self","run"],["run","restaurant"],["hague","file"],["file","hotelschool"],["hague","brusselselaan"],["brusselselaan","img"],["img","jpg"],["jpg","thumb"],["thumb","hotelschool"],["hague","hotelschool"],["international","university"],["hospitality","management"],["management","studies"],["studies","hospitality"],["hospitality","management"],["management","located"],["netherlands","hotelschool"],["independent","single"],["single","sector"],["sector","universities"],["applied","sciences"],["netherlands","hotelschool"],["former","employers"],["employers","organisation"],["catering","sector"],["sector","since"],["international","school"],["school","specialised"],["hospitality","management"],["management","offering"],["year","bachelor"],["degree","course"],["also","available"],["accelerated","international"],["international","fastrack"],["fastrack","programme"],["hague","opened"],["amsterdam","withe"],["hague","bachelor"],["business","administration"],["hotel","management"],["management","hotelschool"],["hague","offers"],["single","bachelor"],["international","students"],["four","year"],["year","bachelor"],["course","results"],["internationally","recognised"],["recognised","bachelor"],["business","administration"],["hotel","managementhe"],["managementhe","bachelor"],["students","learn"],["operational","perspective"],["two","internships"],["internships","abroad"],["university","offers"],["fastrack","programme"],["previous","hospitality"],["hospitality","qualifications"],["firstwo","years"],["regular","bachelor"],["five","week"],["week","programme"],["summer","withe"],["withe","rest"],["regular","course"],["course","master"],["hospitality","management"],["management","hotelschool"],["hague","offers"],["month","full"],["full","time"],["business","development"],["development","concept"],["concept","innovation"],["change","management"],["ranked","best"],["best","master"],["netherlands","international"],["international","reputation"],["course","programmes"],["accreditation","organisation"],["excellent","score"],["quality","dimensions"],["dimensions","objectives"],["theducation","curriculum"],["curriculum","personnel"],["personnel","faculty"],["faculty","facilities"],["facilities","quality"],["quality","management"],["hotel","school"],["ranked","number"],["top","hospitality"],["hotel","management"],["management","schools"],["ranked","among"],["top","hospitality"],["hospitality","schools"],["schools","worldwide"],["preparing","students"],["international","career"],["hospitality","managementhe"],["managementhe","survey"],["international","centers"],["hotel","management"],["hotel","keeper"],["keeper","hotelschool"],["hospitality","management"],["management","education"],["education","faculty"],["legal","issues"],["hospitality","r"],["beverage","trends"],["statistical","research"],["hospitality","industry"],["services","management"],["strategy","g"],["g","l"],["business","ethics"],["corporate","social"],["social","responsibility"],["responsibility","j"],["australia","lecturer"],["lecturer","management"],["management","leadership"],["human","resource"],["resource","management"],["management","j"],["hospitality","industry"],["senior","lecturer"],["business","model"],["model","innovation"],["strategic","management"],["management","category"],["category","hospitality"],["hospitality","schools"],["schools","category"],["netherlands","category"],["category","organisations"],["organisations","based"]],"all_collocations":["file hotelschool","hague brusselselaan","brusselselaan img","img jpg","thumb hotelschool","hague file","file hotelschool","hague brusselselaan","brusselselaan img","img jpg","thumb hotelschool","hague file","file hotelschool","hague brusselselaan","brusselselaan img","img jpg","self run","run restaurant","hague file","file hotelschool","hague brusselselaan","brusselselaan img","img jpg","thumb hotelschool","hague hotelschool","international university","hospitality management","management studies","studies hospitality","hospitality management","management located","netherlands hotelschool","independent single","single sector","sector universities","applied sciences","netherlands hotelschool","former employers","employers organisation","catering sector","sector since","international school","school specialised","hospitality management","management offering","year bachelor","degree course","also available","accelerated international","international fastrack","fastrack programme","hague opened","amsterdam withe","hague bachelor","business administration","hotel management","management hotelschool","hague offers","single bachelor","international students","four year","year bachelor","course results","internationally recognised","recognised bachelor","business administration","hotel managementhe","managementhe bachelor","students learn","operational perspective","two internships","internships abroad","university offers","fastrack programme","previous hospitality","hospitality qualifications","firstwo years","regular bachelor","five week","week programme","summer withe","withe rest","regular course","course master","hospitality management","management hotelschool","hague offers","month full","full time","business development","development concept","concept innovation","change management","ranked best","best master","netherlands international","international reputation","course programmes","accreditation organisation","excellent score","quality dimensions","dimensions objectives","theducation curriculum","curriculum personnel","personnel faculty","faculty facilities","facilities quality","quality management","hotel school","ranked number","top hospitality","hotel management","management schools","ranked among","top hospitality","hospitality schools","schools worldwide","preparing students","international career","hospitality managementhe","managementhe survey","international centers","hotel management","hotel keeper","keeper hotelschool","hospitality management","management education","education faculty","legal issues","hospitality r","beverage trends","statistical research","hospitality industry","services management","strategy g","g l","business ethics","corporate social","social responsibility","responsibility j","australia lecturer","lecturer management","management leadership","human resource","resource management","management j","hospitality industry","senior lecturer","business model","model innovation","strategic management","management category","category hospitality","hospitality schools","schools category","netherlands category","category organisations","organisations based"],"new_description":"file hotelschool hague brusselselaan img_jpg thumb hotelschool hague file hotelschool hague brusselselaan img_jpg thumb hotelschool hague file hotelschool hague brusselselaan img_jpg thumb self run restaurant hotelschool hague file hotelschool hague brusselselaan img_jpg thumb hotelschool hague hotelschool hague international university applied hospitality_management_studies hospitality_management located hague amsterdam netherlands hotelschool hague one independent single sector universities applied sciences netherlands hotelschool hague founded funded former employers organisation hotel catering sector since foundation hotelschool become international_school specialised hospitality_management offering year bachelor degree hotel hospitality degree course also_available accelerated international fastrack programme hotelschool hague opened campus amsterdam withe curriculum campus hague bachelor business_administration hotel_management hotelschool hague offers single bachelor programme campuses hague amsterdam programme taught english national well international students four year bachelor course results internationally recognised bachelor business_administration hotel_managementhe bachelor programme set context hospitality students learn hospitality strategic operational perspective participate two internships abroad university offers fastrack programme students previous hospitality qualifications firstwo years regular bachelor programme five week programme summer withe rest regular course master hospitality_management hotelschool hague offers month full_time programme focus business_development concept innovation change management ranked best master business netherlands international reputation course programmes accredited accreditation organisation netherlands bachelor programme accredited excellent score quality dimensions objectives theducation curriculum personnel faculty facilities quality management results programme hotel school ranked number top hospitality hotel_management schools world_magazine hotelschool hague ranked among top hospitality_schools worldwide preparing students international career hospitality_managementhe survey conducted global hotelschool hague described one international centers hotel_management hotel keeper hotelschool hague group experience hospitality_management education faculty law legal issues hospitality r specialist food beverage trends hospitality statistical research hospitality_industry services management strategy g l ethics business ethics corporate social responsibility j australia lecturer management leadership human_resource management j research hospitality_industry de senior lecturer marketing business_model innovation operations strategic management_category_hospitality_schools category universities netherlands_category_organisations_based hague"},{"title":"House sitting","description":"house sitting is the practice whereby a landlord or homeowner leaving their house for a period of timentrusts itone or more house sitters who by a mutual contract agreement arentitled to live therent free in exchange for assuming responsibilitiesuch as taking care of the homeowner s pets performingeneral maintenance repair and operations maintenance including pools lawns air conditioning system s etc keeping trespassers off the property readdressing the mail and in general making sure that everything runsmoothly just as if the owner was at home it is also generally implied that crime is deterred by the presence of the house sitter this supported by the facthat insurance companies in the united kingdom provide reduced rates for householders who use the services of house sitting agenciesome insurance companies will void a policy if the house is left vacant for more than days without prior arrangement house sitting is therefore considered a practical solution to managing properties which would otherwise stand vacant for long periods of time in the uk however homeowners are usually careful noto leave their properties in the care of a house sitter for longer than months it is often recommended that an agreement or form of contract is drawn up to ensure both parties are happy withe terms agreed in canada there can be insurance company issues with leaving homes empty for more than four days therefore it is important for homeowners to have someonenter their home at least oncevery four days they are absent hiring a house sitter can provide the support andocumentationeeded in theventhat claimust be made with an insurance company a newly developed version of house sitting whichas gained widespread acceptance is the contracting of house sitters who do not live on premises this house sitting arrangement requires the house sitter to provide regular visits to the homeowner s house the frequency of visits is determined in advance and is not less than the minimum requirements astipulated by the homeowner s insurance policy this type of service can perform similar functions as mentioned above it is becoming more popular as many homeowners do not wish to have someone living in their house while they are away the whole practice is open to negotiationotably as to whether a security deposit is required by the homeowner and whether a money payment should be made from one of the parties involved as itshare of the benefits is larger typically this considered to be the house sitter in lieu of paying for accommodation house sitting is a common way for either people on vacation or long term travelers to reduce the cost of travel thevolution of house sitting and the rise of the sharing economy house sitting has evolved from local paid sitters to networks of international house sitters thatravel the world looking after other peoples home and pets this a yearound phenomenon for people that now can live different and unorthodox lifestyles travelersoon realize the cost of traveling for extended periods can be daunting especially when living on a reduced income that s why house sitting has become an increasingly popular way to live away from home withouthe steeprice tag there are many popular international house sitting networks that matchouse sitters and homeowners allowing house sitters to find free accommodations in exchange for looking after a pet or home while the owners are away on holiday and homeowners to find someone reliable to look after their property or pets house sitters arecruited online and carry theireputations online withemembers of these websites pay annual subscription fee to be part of the network whether they wanto house sit or offer their house and pets up for sitting members can use the service as many times as they like for the duration of their memberships housesit match nomador trusted house sitters and housecarers arexamples of some of the more popular networks moreover these sites cater to pet owners who are happy to look after pets or have their pets looked after according to trusted house sitters percent of house sitting arrangements are due to pets for many peoplespecially parents the cost of pet care during holidays outstrips the cost of taking summer holidays pet sitting often pet sitter simultaneously assume the role of a house sitter while they are caring for a homeowner s pet sitters monitor a number of different animals this may or may not increase the pet sitter standard rate depending on the individual and the number of tasks required if the home pet owner is paying for a house sitter this depends on whether the homeowner is paying a house sitting agency or whether they have found a house pet sitter from a house sitting website that enables them to find house sitters free of charge there are a number of advantages andisadvantages to both including cost reading information about and choice of house pet sitter legal requirements assignments can be secured all over the world withe only limiting factor being the need forelevantourist oresidential visas any house sitter accepting payment for their services will be required tobtain the relevant work permit category personal care and service occupations category tourism","main_words":["house","sitting","practice","whereby","landlord","homeowner","leaving","house","period","house","sitters","mutual","contract","agreement","live","free","exchange","taking","care","homeowner","pets","maintenance","repair","operations","maintenance","including","pools","air_conditioning","system","etc","keeping","property","mail","general","making","sure","everything","owner","home","also","generally","implied","crime","presence","house","sitter","supported","facthat","insurance_companies","united_kingdom","provide","reduced","rates","use","services","house_sitting","insurance_companies","policy","house","left","vacant","days","without","prior","arrangement","house_sitting","therefore","considered","practical","solution","managing","properties","would","otherwise","stand","vacant","long_periods","time","uk","however","homeowners","usually","careful","noto","leave","properties","care","house","sitter","longer","months","often","recommended","agreement","form","contract","drawn","ensure","parties","happy","withe","terms","agreed","canada","insurance","company","issues","leaving","homes","empty","four","days","therefore","important","homeowners","home","least","oncevery","four","days","hiring","house","sitter","provide","support","made","insurance","company","newly","developed","version","house_sitting","whichas","gained","widespread","acceptance","house","sitters","live","premises","house_sitting","arrangement","requires","house","sitter","provide","regular","visits","homeowner","house","frequency","visits","determined","advance","less","minimum","requirements","homeowner","insurance","policy","type","service","perform","similar","functions","mentioned","becoming","popular","many","homeowners","wish","someone","living","house","away","whole","practice","open","whether","security","deposit","required","homeowner","whether","money","payment","made","one","parties","involved","benefits","larger","typically","considered","house","sitter","paying","accommodation","house_sitting","common","way","either","people","vacation","long_term","travelers","reduce","cost","travel","thevolution","house_sitting","rise","sharing","economy","house_sitting","evolved","local","paid","sitters","networks","international","house","sitters","thatravel","world","looking","peoples","home","pets","yearound","phenomenon","people","live","different","lifestyles","realize","cost","traveling","extended","periods","especially","living","reduced","income","house_sitting","become","increasingly_popular","way","live","away","home","withouthe","tag","many","popular","international","house_sitting","networks","sitters","homeowners","allowing","house","sitters","find","free","accommodations","exchange","looking","pet","home_owners","away","holiday","homeowners","find","someone","reliable","look","property","pets","house","sitters","online","carry","online","websites","pay","annual","subscription","fee","part","network","whether","wanto","house","sit","offer","house","pets","sitting","members","use","service","many_times","like","duration","match","trusted","house","sitters","arexamples","popular","networks","moreover","sites","cater","pet","owners","happy","look","pets","pets","looked","according","trusted","house","sitters","percent","house_sitting","arrangements","due","pets","many","parents","cost","pet","care","holidays","cost","taking","summer","holidays","pet","sitting","often","pet","sitter","simultaneously","assume","role","house","sitter","caring","homeowner","pet","sitters","monitor","number","different","animals","may","may","increase","pet","sitter","standard","rate","depending","individual","number","tasks","required","home","pet","owner","paying","house","sitter","depends","whether","homeowner","paying","house_sitting","agency","whether","found","house","pet","sitter","house_sitting","website","enables","find","house","sitters","free","charge","number","advantages","including","cost","reading","information","choice","house","pet","sitter","legal","requirements","secured","world","withe","limiting","factor","need","visas","house","sitter","accepting","payment","services","required","tobtain","relevant","work","permit","category","personal","care","service"],"clean_bigrams":[["house","sitting"],["practice","whereby"],["homeowner","leaving"],["house","sitters"],["mutual","contract"],["contract","agreement"],["taking","care"],["maintenance","repair"],["operations","maintenance"],["maintenance","including"],["including","pools"],["air","conditioning"],["conditioning","system"],["etc","keeping"],["general","making"],["making","sure"],["also","generally"],["generally","implied"],["house","sitter"],["facthat","insurance"],["insurance","companies"],["united","kingdom"],["kingdom","provide"],["provide","reduced"],["reduced","rates"],["house","sitting"],["insurance","companies"],["left","vacant"],["days","without"],["without","prior"],["prior","arrangement"],["arrangement","house"],["house","sitting"],["therefore","considered"],["practical","solution"],["managing","properties"],["would","otherwise"],["otherwise","stand"],["stand","vacant"],["long","periods"],["uk","however"],["however","homeowners"],["usually","careful"],["careful","noto"],["noto","leave"],["house","sitter"],["often","recommended"],["happy","withe"],["withe","terms"],["terms","agreed"],["insurance","company"],["company","issues"],["leaving","homes"],["homes","empty"],["four","days"],["days","therefore"],["least","oncevery"],["oncevery","four"],["four","days"],["house","sitter"],["insurance","company"],["newly","developed"],["developed","version"],["house","sitting"],["sitting","whichas"],["whichas","gained"],["gained","widespread"],["widespread","acceptance"],["house","sitters"],["house","sitting"],["sitting","arrangement"],["arrangement","requires"],["house","sitter"],["provide","regular"],["regular","visits"],["minimum","requirements"],["insurance","policy"],["perform","similar"],["similar","functions"],["many","homeowners"],["someone","living"],["whole","practice"],["security","deposit"],["money","payment"],["parties","involved"],["larger","typically"],["house","sitter"],["accommodation","house"],["house","sitting"],["common","way"],["either","people"],["long","term"],["term","travelers"],["travel","thevolution"],["house","sitting"],["sharing","economy"],["economy","house"],["house","sitting"],["local","paid"],["paid","sitters"],["international","house"],["house","sitters"],["sitters","thatravel"],["world","looking"],["peoples","home"],["yearound","phenomenon"],["live","different"],["extended","periods"],["reduced","income"],["house","sitting"],["increasingly","popular"],["popular","way"],["live","away"],["home","withouthe"],["many","popular"],["popular","international"],["international","house"],["house","sitting"],["sitting","networks"],["homeowners","allowing"],["allowing","house"],["house","sitters"],["find","free"],["free","accommodations"],["find","someone"],["someone","reliable"],["pets","house"],["house","sitters"],["websites","pay"],["pay","annual"],["annual","subscription"],["subscription","fee"],["network","whether"],["wanto","house"],["house","sit"],["sitting","members"],["many","times"],["trusted","house"],["house","sitters"],["popular","networks"],["networks","moreover"],["sites","cater"],["pet","owners"],["pets","looked"],["trusted","house"],["house","sitters"],["sitters","percent"],["house","sitting"],["sitting","arrangements"],["pet","care"],["taking","summer"],["summer","holidays"],["holidays","pet"],["pet","sitting"],["sitting","often"],["often","pet"],["pet","sitter"],["sitter","simultaneously"],["simultaneously","assume"],["house","sitter"],["pet","sitters"],["sitters","monitor"],["different","animals"],["pet","sitter"],["sitter","standard"],["standard","rate"],["rate","depending"],["tasks","required"],["home","pet"],["pet","owner"],["house","sitter"],["house","sitting"],["sitting","agency"],["house","pet"],["pet","sitter"],["house","sitting"],["sitting","website"],["find","house"],["house","sitters"],["sitters","free"],["including","cost"],["cost","reading"],["reading","information"],["house","pet"],["pet","sitter"],["sitter","legal"],["legal","requirements"],["world","withe"],["limiting","factor"],["house","sitter"],["sitter","accepting"],["accepting","payment"],["required","tobtain"],["relevant","work"],["work","permit"],["permit","category"],["category","personal"],["personal","care"],["service","occupations"],["occupations","category"],["category","tourism"]],"all_collocations":["house sitting","practice whereby","homeowner leaving","house sitters","mutual contract","contract agreement","taking care","maintenance repair","operations maintenance","maintenance including","including pools","air conditioning","conditioning system","etc keeping","general making","making sure","also generally","generally implied","house sitter","facthat insurance","insurance companies","united kingdom","kingdom provide","provide reduced","reduced rates","house sitting","insurance companies","left vacant","days without","without prior","prior arrangement","arrangement house","house sitting","therefore considered","practical solution","managing properties","would otherwise","otherwise stand","stand vacant","long periods","uk however","however homeowners","usually careful","careful noto","noto leave","house sitter","often recommended","happy withe","withe terms","terms agreed","insurance company","company issues","leaving homes","homes empty","four days","days therefore","least oncevery","oncevery four","four days","house sitter","insurance company","newly developed","developed version","house sitting","sitting whichas","whichas gained","gained widespread","widespread acceptance","house sitters","house sitting","sitting arrangement","arrangement requires","house sitter","provide regular","regular visits","minimum requirements","insurance policy","perform similar","similar functions","many homeowners","someone living","whole practice","security deposit","money payment","parties involved","larger typically","house sitter","accommodation house","house sitting","common way","either people","long term","term travelers","travel thevolution","house sitting","sharing economy","economy house","house sitting","local paid","paid sitters","international house","house sitters","sitters thatravel","world looking","peoples home","yearound phenomenon","live different","extended periods","reduced income","house sitting","increasingly popular","popular way","live away","home withouthe","many popular","popular international","international house","house sitting","sitting networks","homeowners allowing","allowing house","house sitters","find free","free accommodations","find someone","someone reliable","pets house","house sitters","websites pay","pay annual","annual subscription","subscription fee","network whether","wanto house","house sit","sitting members","many times","trusted house","house sitters","popular networks","networks moreover","sites cater","pet owners","pets looked","trusted house","house sitters","sitters percent","house sitting","sitting arrangements","pet care","taking summer","summer holidays","holidays pet","pet sitting","sitting often","often pet","pet sitter","sitter simultaneously","simultaneously assume","house sitter","pet sitters","sitters monitor","different animals","pet sitter","sitter standard","standard rate","rate depending","tasks required","home pet","pet owner","house sitter","house sitting","sitting agency","house pet","pet sitter","house sitting","sitting website","find house","house sitters","sitters free","including cost","cost reading","reading information","house pet","pet sitter","sitter legal","legal requirements","world withe","limiting factor","house sitter","sitter accepting","accepting payment","required tobtain","relevant work","work permit","permit category","category personal","personal care","service occupations","occupations category","category tourism"],"new_description":"house sitting practice whereby landlord homeowner leaving house period house sitters mutual contract agreement live free exchange taking care homeowner pets maintenance repair operations maintenance including pools air_conditioning system etc keeping property mail general making sure everything owner home also generally implied crime presence house sitter supported facthat insurance_companies united_kingdom provide reduced rates use services house_sitting insurance_companies policy house left vacant days without prior arrangement house_sitting therefore considered practical solution managing properties would otherwise stand vacant long_periods time uk however homeowners usually careful noto leave properties care house sitter longer months often recommended agreement form contract drawn ensure parties happy withe terms agreed canada insurance company issues leaving homes empty four days therefore important homeowners home least oncevery four days hiring house sitter provide support made insurance company newly developed version house_sitting whichas gained widespread acceptance house sitters live premises house_sitting arrangement requires house sitter provide regular visits homeowner house frequency visits determined advance less minimum requirements homeowner insurance policy type service perform similar functions mentioned becoming popular many homeowners wish someone living house away whole practice open whether security deposit required homeowner whether money payment made one parties involved benefits larger typically considered house sitter paying accommodation house_sitting common way either people vacation long_term travelers reduce cost travel thevolution house_sitting rise sharing economy house_sitting evolved local paid sitters networks international house sitters thatravel world looking peoples home pets yearound phenomenon people live different lifestyles realize cost traveling extended periods especially living reduced income house_sitting become increasingly_popular way live away home withouthe tag many popular international house_sitting networks sitters homeowners allowing house sitters find free accommodations exchange looking pet home_owners away holiday homeowners find someone reliable look property pets house sitters online carry online websites pay annual subscription fee part network whether wanto house sit offer house pets sitting members use service many_times like duration match trusted house sitters arexamples popular networks moreover sites cater pet owners happy look pets pets looked according trusted house sitters percent house_sitting arrangements due pets many parents cost pet care holidays cost taking summer holidays pet sitting often pet sitter simultaneously assume role house sitter caring homeowner pet sitters monitor number different animals may may increase pet sitter standard rate depending individual number tasks required home pet owner paying house sitter depends whether homeowner paying house_sitting agency whether found house pet sitter house_sitting website enables find house sitters free charge number advantages including cost reading information choice house pet sitter legal requirements secured world withe limiting factor need visas house sitter accepting payment services required tobtain relevant work permit category personal care service occupations_category_tourism"},{"title":"Houseboat","description":"file lakeunionhouseboatjpg righthumb a houseboat on lake union in seattle washington ustate washington usa file floating house iquitosgjpg righthumb floating house on the amazon iquitos peru file country boat in kollam back waterjpg righ thumb a houseboat on ashtamudi lake in kollam city india houseboat different from boathouse which is a shed for storing boats is a boathat has been designed or modified to be used primarily as a home some houseboats are not motorized because they are usually moored kept stationary at a fixed point and often tethered to land to provide utilities however many are capable of operation under their own power float house is a canadiand american term for a house on a float raft a roughouse may be called a shanty boat in western countries houseboats tend to beither owned privately orented outo holiday goers and on some canals in europeople dwell in houseboats all yearound examples of this include but are not limited to amsterdam london and paris in zimbabwe specifically on lake kariba houseboats have been in use since the creation of the lake in the late s early s a houseboat makes it easy to experience the zambezi basin and all the associated wildlife as a lot of game come down to the water for drinking and to cool down hong kong there is a houseboat and fishing community on the southern district hong kong southern side of hong kong island known as aberdeen floating village there was alsone such community in the yau ma tei typhoon shelter file humbleadministrator sgardenjpg thumb houseboat in humble administrator s garden india houseboats as accommodation for tourists are common the backwaters of kerala see below and on the dalake near srinagar in jammu and kashmir kerala houseboats file boat beauty wjpg thumbnaileft a kerala house boat in alappuzha india file house boat jpg thumbnaileft house boat near alleppey kerala india houseboats in kerala south indiare huge slow moving barges used for leisure trips they are a reworked model of kettuvallams in the malayalam language kettu means tied with ropes and vallameans boat which in earlier times were used to carry rice and spice s from kuttanad to the kochindia kochi port kerala houseboats were considered a convenient means of transportation the popularity of kettuvallams has returned in the function as major tourist attractionsuch a houseboat is about long and about wide athe middle the hull is made of wooden planks that are held together by rope s of coconut fiber the usual wood is anjali the roof is made of bamboo poles and palm tree palm leaves thexterior of the boat is painted with protective coats of cashew nut oil kashmir houseboats file houseboat dalake srinagar kashmirjpg thumb houseboat on dalake in srinagar kashmir file kashmir houseboatsjpg thumbnail right house boats onageen lake srinagar jammu kashmir india unlike their kettuvalloms counterparts in kerala the houseboats in srinagar jammu kashmir are usually stationary they are usually moored athedges of the dalake and nageen lakesome of the houseboats there were built in thearly s and are still being rented outo tourists these houseboats are made of wood and usually have intricately carved wood paneling the houseboats are of different sizesome having up to three bedrooms apart from a living room and kitchen many tourists are attracted to srinagar by the charm of staying on a houseboat which provides the uniquexperience of living on the water in a cedar paneled elegant bedroom with all the conveniences of a luxury hotel srinagar s thousand or so houseboats are moored along sections of the dal and nagin lakes and the jhelum river each decorated fancifully and named romantically and even whimsically like hotels houseboats vary in degree of luxury and have been accordingly graded by the department of tourism a luxury houseboat like a luxury hotel has fine furniture good carpets and modern bathroom fittings while the d category the lowest category of houseboats like low budget hotels ispartanly furnished like hotels too houseboats vary widely in their locationsome overlook the main road others look out onto lotus gardens and others face tiny local markets and villages which are also floating on the lake all houseboats regardless of category have highly personalized service not only is there always a houseboy for every boat buthe owner and his family are often close by the cost per day of hiring a houseboat includes all meals and free rides from the houseboato the nearest jetty and back as no houseboat on the lakes is directly accessible from the banks every standard houseboat provides a balcony in the front a lounge dining room pantry and three or more bedrooms with attached bathrooms all houseboats not moored to the bank of the river or lakes provide a shikaras a free service from the houseboato the nearest ghat jetty virtually every houseboat in srinagar has been provided with a municipal water connection in laos houseboats are used to accommodate tourists on the mekong river the houseboats are usually referred to aslow boats and exist in wooden or steel variants file berlin landwehrkanal houseboats jpg thumb houseboats on landwehrkanal berlin the port of hamburg has a sizable water borne community that includes a flussschifferkirche or boatman s church berlin also hasome houseboat neighborhoods notably on the landwehrkanal in friedrichshain kreuzberg file studentenboot zwollejpg thumb left houseboat for students in zwolle netherlands file amsterdamhouseboatseanmccleanjpg thumb right houseboat in amsterdam netherlands in europe some of the finest and costliest examples of houseboats can be seen along the canals of amsterdam which even has houseboat hotels houseboats are very expensive in amsterdam because of the limited number of moorings this expense has reduced the likelihood thathe approximately families that live on the inner waters of amsterdam will find themselves confronted by new neighbor boats the bloemenmarkt is a houseboat borne flower market along the singel amsterdam singel in amsterdam the town of maasbommel is pioneering floating houses with flexible connections for fluids and electricity these are not primarily intended for travel but rather to be safe against floodingamphibious housesdutch answer to flooding build houses that swim spiegel online international accessed october dutch pioneer floating eco homes by alix kroeger bbc news march accessed october staying above water by richard warren financial times march accessed october file houseboats belgrade serbiajpg thumb px left houseboats on ada ciganlija belgrade serbia houseboats are popular forecreation dining and clubbing in serbia they can be seen in large numbers in belgrade on the banks of the danube and sava rivers and on river islands united kingdom file houseboats richmond surrey ukjpg thumb houseboats in richmond london richmond surrey uk file narrowboats at braunstonjpg thumbnail right narrowboats at braunston the grand union canal uk file houseboats at hayling islandjpg thumbnail right beached hull house boats at hayling island uk in the united kingdom canal narrowboat s are used as homes and also as mobile rented holiday accommodationarrowboats were originally used for bulk transport of raw materials and fuel on canals constructed athe start of the industrial revolutionowadays the canal network is mainly used forecreation and is different from typical holiday locations which are usually based in coastal orural areas because canals are inland often pass through many former historical industrial urban areas in coastal regions of the united kingdom the beached hull watercraft hull s of old boats and ships have been used as homes in the past for example peggotty s houseboat of the s in the novel david copperfield today in the very same area hoo peninsula there are hundreds of converted ships barges and other boats being used as homes by many families over people live afloat in great britain liveaboards are attracted to their lifestyle for many reasons including economies of combining home with pleasure closeness to nature camaraderiescape from day to day pressures of life ashoresearchashown that liveaboards are not a subculture actually they are a very diverse group often they have a strong sense of their local community and its environmenthere are a number of residential houseboats moorings in the london port health authority lpha district although a significant number of houseboats are permanent floating residences many are occupied only at weekends and seldomove whilst others may periodically leave the moorings for short cruises the various mooringstretch from broadness creek and benfleet creek in the lower part of the london port health authority district up to twickenham in the upper part many of these are port of london authority pla licensed moorings which also have riparian local authority planning approval for their existence whilst others have neither north america in canada houseboats are gaining popularity in british columbia ontario and quebec as there is an abundance of perfectly suited rivers and lakes for houseboaters to enjoy houseboats in canadare generally motorised and used recreationally rather than as a permanent dwelling this mainly due to cold winter temperatures and accompanying frozen waterways the rideau canal system is a historic waterway known for its picturesque setting and quaint villages the town of sicamous on shuswap lake british columbia isaid to be the houseboat capital of the world float houses arelatively common along the pacificoast a float is a raft like construction or flat bottom boatoxford english dictionary second edition cd rom v oxford university press float a b toronto s bluffer s park is home to a small float home community with properties within the park s marina the homes in toronto are built on concrete barges chained to the lake bottom andocked athe marina to allow residence yearound these homes have no motor and thus are not vessels united states of america file doghouse jpg thumb right a doghouseboat on the charles river in cambridge massachusetts usa file houseboat in floridaspringsjpg thumb right a houseboat in silver glen springs just off lake george florida lake george florida usa file cumberland hb jpg thumb right a modern houseboat in lake cumberland near albany kentucky usa file lake bigeaux houseboatjpg thumb right a houseboat in lake bigeaux near henderson louisiana usa seattle is home to a relatively large collection of houseboats capable of moving under their own power or floating homes houses built on floats in several neighborhoods particularly in lake union and portage bay these began to appear soon after the time ofirst european settlement atheir peak in the first half of the th century there were over suchomes in the city not even counting seaworthy live aboard boats from the firsthey included floating slums of shabby shacks but gentrified houseboats go back at leasto when the yesler way cable careached leschi seattleschi on lake washington and a string of luxury summer getaways none of them surviving today lined the shore from there north to madison park seattle madison park there were about floating homes on lake union and a lesser number elsewhere in the city most houseboats are designed and built for inland lakes and waterways only portland oregon also has many houseboats along bothe willamette river and the columbia river withe neighborhood of hayden island portland oregon hayden island as a prominent example float houses are mostly used on the pacificoast renting houseboats has also become popular in addition houseboats have been used for commerce on the northerneck of virginia chesapeake national bank had a floating bank branch called the boat n bank that provided bank services to watermen halibut cove alaska has one of the only floating post offices in the us mystic island new jersey had a botel hotel for boaters with water access when it started in the s buthe building hasince changed ownership and no longer operates asuch sausalito californialso has one of the most noted collections ofloat homes that were owned at various times by the likes ofamous musicians film stars authors and other notables from the hippiera until even today nearby belvedere s houseboats date to the late s and houseboats in the area were homes to railway men shipping logs to san francisco via the ferry at sausalito like many areas where float homes have taken hold battles have brewed between float home owners local and state government and the local establishment which includes land based home owners float home owners had fought established land based tax schemes whereby float home ownersought reliefrom real estate taxes the state won the battle withe shadow tax allowing the state to make the case that property beneathe float home was improved by the shadow the float home cast upon the bottom forecreation houseboating is a very popularecreational activity for groups of people of all ages aboard houseboats of all varieties ranging fromore modest foot boats to plus luxury houseboat models houseboating is appealing due to the ability to more completely explore the local scenery remain close proximity tother outdoor activities hiking boating beaches etc and finally retain the potential to move the living quarters for a change of view or neighbors on a whim recreational houseboating in the united statestarted in the late s when people were looking to stay on the water for longer periods of time lake cumberland in kentucky is considered the birthplace of houseboating in the usa of america s manufactured houseboats are in the countiesurrounding lake cumberland kentucky has more lake style houseboats thany other place in the world monticello kentucky is known as the houseboat capital of the world today one can find motorized houseboats with over of living space houseboating lakes houseboating on lake powell is a popular vacation option since the glen canyon dam impounds water from the colorado river to form almost of shoreline lake mead the largest man made lake inorth americabout minutes from las vegas new bullards bareservoir in the sierra nevada usierra nevada foothills about minutes from nevada city californiand lake shasta in the mountains just outside redding californiare also popular spots for houseboats fourivers or arms merge to create this the sacramento mccloud squaw creek and pit shasta dam the highest center spillway dam in the world can be found athe southwest corner of the lake shasta caverns can only be reached from the lake houseboating is also common lake cumberland often referred to as the houseboat manufacturing capital of the world as the majority of american built houseboats are manufactured in the countiesurrounding lake cumberland lake cumberland other lakes in the southeast usuch as norris lake tn dale hollow lake ky tn center hillake tn lake lanier gand more offer very favorable houseboating conditions as the geography provides a vast number of coves and fingers that allow houseboats to tie up or anchor away from the main channel and provides the user a peaceful secluded atmosphere due to the large number of houseboat manufacturers located in the southeast us the new and used houseboat marketplace in the southeast is one of the most competitive and affordable areas for houseboats to be purchased in the nation houseboatransporters can also deliver a houseboato any body of water in the us houseboating is also popular on lake amistad trinity lake mohave and lake mead national recreation area inew york state new york houseboats have also become a major part of the great south bay on long island houseboats are also available forental at lake billy chinook in central oregon where waterskiing is popular lake billy chinook has many little coves to anchor the houseboat shanty boats roughly built float houses are sometimes called shanty boats but may be built on a raft or hull in historic logging operations workmen sometimes used an ark river boat ark as mobile dwellings image coomera houseboat holidays on the coomera river gold coastjpg thumb right alt houseboats moored in a river houseboats for hire coomera river gold coast australia in australia especially on the murray river and the sunny coastline of victoriaustralia victoria there are many motorized pontoon boat pontoon based houseboats with twor more bedroomsome of these houseboats have more than one level or multiple stories floorsome are privately owned as either a primary residence or a holiday shack many are also available for hirent aself driven holiday destinations with accommodation for four to perhaps a dozen persons coomera river the great sandy straits near the world s largest sand island fraser island in recentimes the tweed river near barrislanduring the popular tournament crabbing competitions arespecially popular with queenslanders and interstate tourists lakeildon in victoriand the hawkesbury river near sydney inew south wales are popular houseboating areas new zealand inew zealand houseboating is developing as a holiday activity whangaroa harbour onorthland regionorthland s east coast is a land locked harbour that provides houseboating south america in maracaibo venezuela there is a big house called la casa barco which was built by a former captain of the venezuelanavy in the th century the building resembles a real ship with its anchors lifeboats and radars floating on water it is located in the neighborhood la estrella nowadays la casa barco has become a city icon for tourists carbon monoxide from gasoline powered generators file a talk about niosh field studies and partnership co and houseboatswebm thumb a videon mitigating carbon monoxide hazards from houseboats many houseboats use gasoline powered generators the carbon monoxidexhaust from these generators has caused problems for some houseboat inhabitants the us national institute for occupational safety and health in tandem withe us national park service and the us coast guard performed a number of evaluations on air quality particularly carbon monoxide co levels on houseboats beginning in august since that initial investigation over boating related poisonings in the united states have been identified with over of these poisonings resulting in death over of the poisonings occurred on houseboats with more than of these poisonings attributed to generator exhaust alone some houseboat and generator manufacturers have begun working withese agencies to evaluatengineering controls to reduce concentrations in occupied areas on houseboats carbon monoxide dangers in boating national institute for occupational safety and health retrievedecember image shikarat nightjpg houseboat night image houseboat in kashmirjpg houseboat h b indoora image alexzander houseboatjpg alexzandra houseboat image houseboat dalakejpg houseboat dalake see also boathouse a structure which stores boats and boating equipment botel cabin cruiser floating hospital floating restaurant hotelship hulk ship kettuvallam prison ship seasteading stilt housexternalinks houseboat museum amsterdam the case of the hospitable houseboat popular science july pp category boatypes category house types boat category houseboats category tourist accommodations","main_words":["file","righthumb","houseboat","lake","union","seattle_washington","ustate","washington","usa","file","floating","house","righthumb","floating","house","amazon","iquitos","peru","file","country","boat","back","thumb","houseboat","lake_city","india","houseboat","different","boathouse","shed","storing","boats","designed","modified","used","primarily","home","houseboats","motorized","usually","moored","kept","stationary","fixed","point","often","land","provide","utilities","however_many","capable","operation","power","float","house","american","term","house","float","may","called","boat","western","countries","houseboats","tend","beither","owned","privately","outo","holiday","goers","canals","dwell","houseboats","yearound","examples_include","limited","amsterdam","london","paris","zimbabwe","specifically","lake","houseboats","use","since","creation","lake","late","early","houseboat","makes","easy","experience","zambezi","basin","associated","wildlife","lot","game","come","water","drinking","cool","hong_kong","houseboat","fishing","community","southern","district","hong_kong","southern","side","hong_kong","island","known","aberdeen","floating","village","alsone","community","typhoon","shelter","file","thumb","houseboat","humble","administrator","garden","india","houseboats","accommodation","tourists","common","kerala","see","dalake","near","srinagar","kashmir","kerala","houseboats","file","boat","beauty","kerala","house","boat","india","file","house","boat","jpg","house","boat","near","kerala","india","houseboats","kerala","south","indiare","huge","slow","moving","barges","used","leisure","trips","model","language","means","tied","ropes","boat","earlier","times","used","carry","rice","spice","port","kerala","houseboats","considered","convenient","means","transportation","popularity","returned","function","major","houseboat","long","wide","athe","middle","hull","made","wooden","held","together","rope","coconut","fiber","usual","wood","roof","made","bamboo","poles","palm","tree","palm","leaves","thexterior","boat","painted","protective","nut","oil","kashmir","houseboats","file","houseboat","dalake","srinagar","thumb","houseboat","dalake","srinagar","kashmir","file","kashmir","thumbnail_right","house","boats","lake","srinagar","kashmir","india","unlike","counterparts","kerala","houseboats","srinagar","kashmir","usually","stationary","usually","moored","dalake","houseboats","built","thearly","still","rented","outo","tourists","houseboats","made","wood","usually","carved","wood","houseboats","different","three","bedrooms","apart","living_room","kitchen","many","tourists","attracted","srinagar","charm","staying","houseboat","provides","uniquexperience","living","water","cedar","elegant","bedroom","luxury","hotel","srinagar","thousand","houseboats","moored","along","sections","dal","lakes","river","decorated","named","even","like","hotels","houseboats","vary","degree","luxury","accordingly","department","tourism","luxury","houseboat","like","luxury","hotel","fine","furniture","good","carpets","modern","bathroom","fittings","category","lowest","category","houseboats","like","low","budget","hotels","furnished","like","hotels","houseboats","vary","widely","overlook","main","road","others","look","onto","gardens","others","face","tiny","local","markets","villages","also","floating","lake","houseboats","regardless","category","highly","personalized","service","always","every","boat","buthe","owner","family","often","close","cost","per_day","hiring","houseboat","includes","meals","free","rides","nearest","back","houseboat","lakes","directly","accessible","banks","every","standard","houseboat","provides","balcony","front","lounge","dining_room","pantry","three","bedrooms","attached","bathrooms","houseboats","moored","bank","river","lakes","provide","free","service","nearest","virtually","every","houseboat","srinagar","provided","municipal","water","connection","laos","houseboats","used","accommodate","tourists","mekong","river","houseboats","usually","referred","boats","exist","wooden","steel","variants","file","berlin","houseboats","jpg","thumb","houseboats","berlin","port","hamburg","water","borne","community","includes","church","berlin","also","hasome","houseboat","neighborhoods","notably","file","thumb","left","houseboat","students","netherlands","file","thumb","right","houseboat","amsterdam","netherlands","europe","finest","examples","houseboats","seen","along","canals","amsterdam","even","houseboat","hotels","houseboats","expensive","amsterdam","limited","number","moorings","expense","reduced","likelihood","thathe","approximately","families","live","inner","waters","amsterdam","find","new","neighbor","boats","houseboat","borne","flower","market","along","amsterdam","amsterdam","town","pioneering","floating","houses","flexible","connections","electricity","primarily","intended","travel","rather","safe","answer","flooding","build","houses","swim","spiegel","online","international","accessed_october","dutch","pioneer","floating","eco","homes","bbc_news","march","accessed_october","staying","water","richard","warren","financial","times_march","accessed_october","file","houseboats","belgrade","thumb","px","left","houseboats","ada","belgrade","serbia","houseboats","popular","forecreation","dining","clubbing","serbia","seen","large_numbers","belgrade","banks","danube","rivers","river","islands","united_kingdom","file","houseboats","richmond","surrey","thumb","houseboats","richmond_london","richmond","surrey","uk","file","thumbnail_right","grand","union","canal","uk","file","houseboats","thumbnail_right","hull","house","boats","island","uk","united_kingdom","canal","used","homes","also","mobile","rented","holiday","originally","used","bulk","transport","raw","materials","fuel","canals","constructed","athe_start","industrial","canal","network","mainly","used","forecreation","different","typical","holiday","locations","usually","based","coastal","areas","canals","inland","often","pass","many","former","historical","industrial","urban_areas","coastal","regions","united_kingdom","hull","hull","old","boats","ships","used","homes","past","example","houseboat","novel","david","today","area","peninsula","hundreds","converted","ships","barges","boats","used","homes","many","families","people","live","great_britain","attracted","lifestyle","many","reasons","including","economies","combining","home","pleasure","nature","day","day","pressures","life","subculture","actually","diverse","group","often","strong","sense","local_community","number","residential","houseboats","moorings","london","port","health","authority","district","although","significant","number","houseboats","permanent","floating","residences","many","occupied","weekends","whilst","others","may","periodically","leave","moorings","short","cruises","various","creek","creek","lower","part","london","port","health","authority","district","twickenham","upper","part","many","port","london","authority","pla","licensed","moorings","also","local","authority","planning","approval","existence","whilst","others","neither","north_america","canada","houseboats","gaining","popularity","british_columbia","ontario","quebec","abundance","perfectly","suited","rivers","lakes","enjoy","houseboats","generally","used","rather","permanent","dwelling","mainly","due","cold","winter","temperatures","accompanying","frozen","waterways","rideau","canal","system","historic","waterway","known","picturesque","setting","quaint","villages","town","lake","british_columbia","isaid","houseboat","capital","world","float","houses","arelatively","common","along","pacificoast","float","like","construction","flat","bottom","english_dictionary","second","edition","rom","v","oxford_university_press","float","b","toronto","park","home","small","float","home","community","properties","within","park","marina","homes","toronto","built","concrete","barges","lake","bottom","athe","marina","allow","residence","yearound","homes","motor","thus","vessels","united_states","thumb","right","charles","river","cambridge_massachusetts","usa","file","houseboat","thumb","right","houseboat","silver","glen","springs","lake","george","florida","lake","george","florida","usa","file","cumberland","jpg","thumb","right","modern","houseboat","lake","cumberland","near","albany","kentucky","usa","file","lake","thumb","right","houseboat","lake","near","henderson","louisiana","usa","seattle","home","relatively","large","collection","houseboats","capable","moving","power","floating","homes","houses","built","several","neighborhoods","particularly","lake","union","bay","began","appear","soon","time","ofirst","european","settlement","atheir","peak","first_half","th_century","city","even","counting","live","aboard","boats","included","floating","slums","houseboats","go","back","way","cable","lake","washington","string","luxury","summer","none","surviving","today","lined","shore","north","madison","park","seattle","madison","park","floating","homes","lake","union","lesser","number","elsewhere","city","houseboats","designed","built","inland","lakes","waterways","portland_oregon","also","many","houseboats","along","bothe","river","columbia_river","withe","neighborhood","hayden","island","portland_oregon","hayden","island","prominent","example","float","houses","mostly","used","pacificoast","renting","houseboats","also","become_popular","addition","houseboats","used","commerce","virginia","chesapeake","national","bank","floating","bank","branch","called","boat","n","bank","provided","bank","services","cove","alaska","one","floating","us","mystic","island","new_jersey","hotel","boaters","water","access","started","buthe","building","hasince","changed","ownership","longer","operates","asuch","one","noted","collections","homes","owned","various","times","ofamous","musicians","film","stars","authors","even","today","nearby","belvedere","houseboats","date","late","houseboats","area","homes","railway","men","shipping","logs","san_francisco","via","ferry","like","many_areas","float","homes","taken","hold","battles","brewed","float","home_owners","local","state","government","local","establishment","includes","land","based","home_owners","float","home_owners","fought","established","land","based","tax","schemes","whereby","float","home","real_estate","taxes","state","battle","withe","shadow","tax","allowing","state","make","case","property","beneathe","float","home","improved","shadow","float","home","cast","upon","bottom","forecreation","houseboating","activity","groups","people","ages","aboard","houseboats","varieties","ranging","fromore","modest","foot","boats","plus","luxury","houseboat","models","houseboating","appealing","due","ability","completely","explore","local","scenery","remain","close_proximity","tother","outdoor","activities","hiking","boating","beaches","etc","finally","retain","potential","move","living","quarters","change","view","neighbors","recreational","houseboating","united","late","people","looking","stay","water","longer","periods","time","lake","cumberland","kentucky","considered","birthplace","houseboating","usa","america","manufactured","houseboats","lake","cumberland","kentucky","lake","style","houseboats","thany","place","world","monticello","kentucky","known","houseboat","capital","world","today","one","find","motorized","houseboats","living","space","houseboating","lakes","houseboating","lake","powell","popular","vacation","option","since","glen","canyon","dam","water","colorado","river","form","almost","shoreline","lake","mead","largest","man_made","lake","inorth","minutes","las_vegas","new","sierra_nevada","usierra","nevada","minutes","nevada","city","californiand","lake","shasta","mountains","outside","also_popular","spots","houseboats","arms","merge","create","sacramento","mccloud","creek","pit","shasta","dam","highest","center","dam","world","found","athe","southwest","corner","lake","shasta","caverns","reached","lake","houseboating","also_common","lake","cumberland","often_referred","houseboat","manufacturing","capital","world","majority","american","built","houseboats","manufactured","lake","cumberland","lake","cumberland","lakes","southeast","norris","lake","dale","hollow","lake","center","lake","gand","offer","favorable","houseboating","conditions","geography","provides","vast","number","fingers","allow","houseboats","tie","anchor","away","main","channel","provides","user","peaceful","atmosphere","due","large_number","houseboat","manufacturers","located","southeast","us","new","used","houseboat","marketplace","southeast","one","competitive","affordable","areas","houseboats","purchased","nation","also","deliver","body","water","us","houseboating","also_popular","lake","trinity","lake","lake","mead","national","recreation","area","inew_york","state_new_york","houseboats","also","become","major","part","great","south","bay","long","island","houseboats","also_available","lake","billy","central","oregon","popular","lake","billy","many","little","anchor","houseboat","boats","roughly","built","float","houses","sometimes_called","boats","may","built","hull","historic","logging","operations","sometimes","used","ark","river","boat","ark","mobile","dwellings","image","coomera","houseboat","holidays","coomera","river","gold","thumb","right_alt","houseboats","moored","river","houseboats","hire","coomera","river","gold_coast","australia","australia","especially","murray","river","sunny","coastline","victoriaustralia_victoria","many","motorized","boat","based","houseboats","twor","houseboats","one","level","multiple","stories","privately_owned","either","primary","residence","holiday","shack","many","also_available","driven","holiday","destinations","accommodation","four","perhaps","dozen","persons","coomera","river","great","sandy","straits","near","world","largest","sand","island","fraser","island","recentimes","tweed","river","near","popular","tournament","competitions","arespecially","popular","interstate","tourists","victoriand","river","near","sydney","inew","south_wales","popular","houseboating","areas","new_zealand","inew_zealand","houseboating","developing","holiday","activity","harbour","east_coast","land","locked","harbour","provides","houseboating","south_america","venezuela","big","house","called","la","casa","built","former","captain","th_century","building","resembles","real","ship","floating","water","located","neighborhood","la","nowadays","la","casa","become","city","icon","tourists","carbon","monoxide","gasoline","powered","generators","file","talk","field","studies","partnership","thumb","carbon","monoxide","hazards","houseboats","many","houseboats","use","gasoline","powered","generators","carbon","generators","caused","problems","houseboat","inhabitants","us_national","institute","occupational","safety","health","tandem","withe","us_national_park","service","us","coast","guard","performed","number","air","quality","particularly","carbon","monoxide","levels","houseboats","beginning","august","since","initial","investigation","boating","related","poisonings","united_states","identified","poisonings","resulting","death","poisonings","occurred","houseboats","poisonings","attributed","generator","alone","houseboat","generator","manufacturers","begun","working","withese","agencies","controls","reduce","occupied","areas","houseboats","carbon","monoxide","dangers","boating","national","institute","occupational","safety","health","retrievedecember","image","houseboat","night","image","houseboat","houseboat","h","b","image","houseboat","image","houseboat","houseboat","dalake","see_also","boathouse","structure","stores","boats","boating","equipment","cabin","cruiser","floating","hospital","floating_restaurant","ship","prison","ship","houseboat","museum","amsterdam","case","houseboat","popular_science","july","pp","category","category","house","types","boat","category","houseboats","category_tourist","accommodations"],"clean_bigrams":[["lake","union"],["seattle","washington"],["washington","ustate"],["ustate","washington"],["washington","usa"],["usa","file"],["file","floating"],["floating","house"],["righthumb","floating"],["floating","house"],["amazon","iquitos"],["iquitos","peru"],["peru","file"],["file","country"],["country","boat"],["thumb","houseboat"],["city","india"],["india","houseboat"],["houseboat","different"],["storing","boats"],["used","primarily"],["usually","moored"],["moored","kept"],["kept","stationary"],["fixed","point"],["provide","utilities"],["utilities","however"],["however","many"],["power","float"],["float","house"],["american","term"],["western","countries"],["countries","houseboats"],["houseboats","tend"],["beither","owned"],["owned","privately"],["outo","holiday"],["holiday","goers"],["yearound","examples"],["amsterdam","london"],["zimbabwe","specifically"],["houseboats","use"],["use","since"],["houseboat","makes"],["zambezi","basin"],["associated","wildlife"],["game","come"],["hong","kong"],["fishing","community"],["southern","district"],["district","hong"],["hong","kong"],["kong","southern"],["southern","side"],["hong","kong"],["kong","island"],["island","known"],["aberdeen","floating"],["floating","village"],["typhoon","shelter"],["shelter","file"],["thumb","houseboat"],["humble","administrator"],["garden","india"],["india","houseboats"],["kerala","see"],["dalake","near"],["near","srinagar"],["srinagar","kashmir"],["kashmir","kerala"],["kerala","houseboats"],["houseboats","file"],["file","boat"],["boat","beauty"],["kerala","house"],["house","boat"],["india","file"],["file","house"],["house","boat"],["boat","jpg"],["house","boat"],["boat","near"],["kerala","india"],["india","houseboats"],["kerala","south"],["south","indiare"],["indiare","huge"],["huge","slow"],["slow","moving"],["moving","barges"],["barges","used"],["leisure","trips"],["means","tied"],["earlier","times"],["carry","rice"],["port","kerala"],["kerala","houseboats"],["convenient","means"],["major","tourist"],["tourist","attractionsuch"],["wide","athe"],["athe","middle"],["held","together"],["coconut","fiber"],["usual","wood"],["bamboo","poles"],["palm","tree"],["tree","palm"],["palm","leaves"],["leaves","thexterior"],["nut","oil"],["oil","kashmir"],["kashmir","houseboats"],["houseboats","file"],["file","houseboat"],["houseboat","dalake"],["dalake","srinagar"],["thumb","houseboat"],["houseboat","dalake"],["dalake","srinagar"],["srinagar","kashmir"],["kashmir","file"],["file","kashmir"],["thumbnail","right"],["right","house"],["house","boats"],["lake","srinagar"],["srinagar","kashmir"],["kashmir","india"],["india","unlike"],["kerala","houseboats"],["srinagar","kashmir"],["usually","stationary"],["usually","moored"],["rented","outo"],["outo","tourists"],["carved","wood"],["three","bedrooms"],["bedrooms","apart"],["living","room"],["kitchen","many"],["many","tourists"],["houseboat","provides"],["elegant","bedroom"],["luxury","hotel"],["hotel","srinagar"],["houseboats","moored"],["moored","along"],["along","sections"],["like","hotels"],["hotels","houseboats"],["houseboats","vary"],["luxury","houseboat"],["houseboat","like"],["luxury","hotel"],["fine","furniture"],["furniture","good"],["good","carpets"],["modern","bathroom"],["bathroom","fittings"],["lowest","category"],["category","houseboats"],["houseboats","like"],["like","low"],["low","budget"],["budget","hotels"],["furnished","like"],["like","hotels"],["hotels","houseboats"],["houseboats","vary"],["vary","widely"],["main","road"],["road","others"],["others","look"],["others","face"],["face","tiny"],["tiny","local"],["local","markets"],["also","floating"],["houseboats","regardless"],["highly","personalized"],["personalized","service"],["every","boat"],["boat","buthe"],["buthe","owner"],["often","close"],["cost","per"],["per","day"],["houseboat","includes"],["free","rides"],["directly","accessible"],["banks","every"],["every","standard"],["standard","houseboat"],["houseboat","provides"],["lounge","dining"],["dining","room"],["room","pantry"],["three","bedrooms"],["attached","bathrooms"],["houseboats","moored"],["lakes","provide"],["free","service"],["virtually","every"],["every","houseboat"],["municipal","water"],["water","connection"],["laos","houseboats"],["accommodate","tourists"],["mekong","river"],["river","houseboats"],["usually","referred"],["steel","variants"],["variants","file"],["file","berlin"],["houseboats","jpg"],["jpg","thumb"],["thumb","houseboats"],["water","borne"],["borne","community"],["church","berlin"],["berlin","also"],["also","hasome"],["hasome","houseboat"],["houseboat","neighborhoods"],["neighborhoods","notably"],["thumb","left"],["left","houseboat"],["netherlands","file"],["thumb","right"],["right","houseboat"],["amsterdam","netherlands"],["seen","along"],["houseboat","hotels"],["hotels","houseboats"],["limited","number"],["likelihood","thathe"],["thathe","approximately"],["approximately","families"],["inner","waters"],["new","neighbor"],["neighbor","boats"],["houseboat","borne"],["borne","flower"],["flower","market"],["market","along"],["pioneering","floating"],["floating","houses"],["flexible","connections"],["primarily","intended"],["flooding","build"],["build","houses"],["swim","spiegel"],["spiegel","online"],["online","international"],["international","accessed"],["accessed","october"],["october","dutch"],["dutch","pioneer"],["pioneer","floating"],["floating","eco"],["eco","homes"],["bbc","news"],["news","march"],["march","accessed"],["accessed","october"],["october","staying"],["richard","warren"],["warren","financial"],["financial","times"],["times","march"],["march","accessed"],["accessed","october"],["october","file"],["file","houseboats"],["houseboats","belgrade"],["thumb","px"],["px","left"],["left","houseboats"],["belgrade","serbia"],["serbia","houseboats"],["popular","forecreation"],["forecreation","dining"],["large","numbers"],["river","islands"],["islands","united"],["united","kingdom"],["kingdom","file"],["file","houseboats"],["houseboats","richmond"],["richmond","surrey"],["thumb","houseboats"],["houseboats","richmond"],["richmond","london"],["london","richmond"],["richmond","surrey"],["surrey","uk"],["uk","file"],["thumbnail","right"],["grand","union"],["union","canal"],["canal","uk"],["uk","file"],["file","houseboats"],["thumbnail","right"],["hull","house"],["house","boats"],["island","uk"],["united","kingdom"],["kingdom","canal"],["mobile","rented"],["rented","holiday"],["originally","used"],["bulk","transport"],["raw","materials"],["canals","constructed"],["constructed","athe"],["athe","start"],["canal","network"],["mainly","used"],["used","forecreation"],["typical","holiday"],["holiday","locations"],["usually","based"],["inland","often"],["often","pass"],["many","former"],["former","historical"],["historical","industrial"],["industrial","urban"],["urban","areas"],["coastal","regions"],["united","kingdom"],["old","boats"],["novel","david"],["converted","ships"],["ships","barges"],["many","families"],["people","live"],["great","britain"],["many","reasons"],["reasons","including"],["including","economies"],["combining","home"],["day","pressures"],["subculture","actually"],["diverse","group"],["group","often"],["strong","sense"],["local","community"],["residential","houseboats"],["houseboats","moorings"],["london","port"],["port","health"],["health","authority"],["authority","district"],["district","although"],["significant","number"],["permanent","floating"],["floating","residences"],["residences","many"],["whilst","others"],["others","may"],["may","periodically"],["periodically","leave"],["short","cruises"],["lower","part"],["london","port"],["port","health"],["health","authority"],["authority","district"],["upper","part"],["part","many"],["london","authority"],["authority","pla"],["pla","licensed"],["licensed","moorings"],["local","authority"],["authority","planning"],["planning","approval"],["existence","whilst"],["whilst","others"],["neither","north"],["north","america"],["canada","houseboats"],["gaining","popularity"],["british","columbia"],["columbia","ontario"],["perfectly","suited"],["suited","rivers"],["enjoy","houseboats"],["permanent","dwelling"],["mainly","due"],["cold","winter"],["winter","temperatures"],["accompanying","frozen"],["frozen","waterways"],["rideau","canal"],["canal","system"],["historic","waterway"],["waterway","known"],["picturesque","setting"],["quaint","villages"],["lake","british"],["british","columbia"],["columbia","isaid"],["houseboat","capital"],["world","float"],["float","houses"],["houses","arelatively"],["arelatively","common"],["common","along"],["like","construction"],["flat","bottom"],["english","dictionary"],["dictionary","second"],["second","edition"],["rom","v"],["v","oxford"],["oxford","university"],["university","press"],["press","float"],["b","toronto"],["small","float"],["float","home"],["home","community"],["properties","within"],["concrete","barges"],["lake","bottom"],["athe","marina"],["allow","residence"],["residence","yearound"],["vessels","united"],["united","states"],["america","file"],["jpg","thumb"],["thumb","right"],["charles","river"],["cambridge","massachusetts"],["massachusetts","usa"],["usa","file"],["file","houseboat"],["thumb","right"],["right","houseboat"],["silver","glen"],["glen","springs"],["lake","george"],["george","florida"],["florida","lake"],["lake","george"],["george","florida"],["florida","usa"],["usa","file"],["file","cumberland"],["jpg","thumb"],["thumb","right"],["modern","houseboat"],["lake","cumberland"],["cumberland","near"],["near","albany"],["albany","kentucky"],["kentucky","usa"],["usa","file"],["file","lake"],["thumb","right"],["right","houseboat"],["near","henderson"],["henderson","louisiana"],["louisiana","usa"],["usa","seattle"],["relatively","large"],["large","collection"],["houseboats","capable"],["floating","homes"],["homes","houses"],["houses","built"],["several","neighborhoods"],["neighborhoods","particularly"],["lake","union"],["appear","soon"],["time","ofirst"],["ofirst","european"],["european","settlement"],["settlement","atheir"],["atheir","peak"],["first","half"],["th","century"],["even","counting"],["live","aboard"],["aboard","boats"],["included","floating"],["floating","slums"],["houseboats","go"],["go","back"],["way","cable"],["lake","washington"],["luxury","summer"],["surviving","today"],["today","lined"],["madison","park"],["park","seattle"],["seattle","madison"],["madison","park"],["floating","homes"],["lake","union"],["lesser","number"],["number","elsewhere"],["inland","lakes"],["portland","oregon"],["oregon","also"],["many","houseboats"],["houseboats","along"],["along","bothe"],["columbia","river"],["river","withe"],["withe","neighborhood"],["hayden","island"],["island","portland"],["portland","oregon"],["oregon","hayden"],["hayden","island"],["prominent","example"],["example","float"],["float","houses"],["mostly","used"],["pacificoast","renting"],["renting","houseboats"],["also","become"],["become","popular"],["addition","houseboats"],["virginia","chesapeake"],["chesapeake","national"],["national","bank"],["floating","bank"],["bank","branch"],["branch","called"],["boat","n"],["n","bank"],["provided","bank"],["bank","services"],["cove","alaska"],["floating","post"],["post","offices"],["us","mystic"],["mystic","island"],["island","new"],["new","jersey"],["water","access"],["buthe","building"],["building","hasince"],["hasince","changed"],["changed","ownership"],["longer","operates"],["operates","asuch"],["noted","collections"],["various","times"],["ofamous","musicians"],["musicians","film"],["film","stars"],["stars","authors"],["even","today"],["today","nearby"],["nearby","belvedere"],["houseboats","date"],["railway","men"],["men","shipping"],["shipping","logs"],["san","francisco"],["francisco","via"],["like","many"],["many","areas"],["float","homes"],["taken","hold"],["hold","battles"],["float","home"],["home","owners"],["owners","local"],["state","government"],["local","establishment"],["includes","land"],["land","based"],["based","home"],["home","owners"],["owners","float"],["float","home"],["home","owners"],["fought","established"],["established","land"],["land","based"],["based","tax"],["tax","schemes"],["schemes","whereby"],["whereby","float"],["float","home"],["real","estate"],["estate","taxes"],["battle","withe"],["withe","shadow"],["shadow","tax"],["tax","allowing"],["property","beneathe"],["beneathe","float"],["float","home"],["float","home"],["home","cast"],["cast","upon"],["bottom","forecreation"],["forecreation","houseboating"],["ages","aboard"],["aboard","houseboats"],["varieties","ranging"],["ranging","fromore"],["fromore","modest"],["modest","foot"],["foot","boats"],["plus","luxury"],["luxury","houseboat"],["houseboat","models"],["models","houseboating"],["appealing","due"],["completely","explore"],["local","scenery"],["scenery","remain"],["remain","close"],["close","proximity"],["proximity","tother"],["tother","outdoor"],["outdoor","activities"],["activities","hiking"],["hiking","boating"],["boating","beaches"],["beaches","etc"],["finally","retain"],["living","quarters"],["recreational","houseboating"],["longer","periods"],["time","lake"],["lake","cumberland"],["cumberland","kentucky"],["manufactured","houseboats"],["lake","cumberland"],["cumberland","kentucky"],["lake","style"],["style","houseboats"],["houseboats","thany"],["world","monticello"],["monticello","kentucky"],["houseboat","capital"],["world","today"],["today","one"],["find","motorized"],["motorized","houseboats"],["living","space"],["space","houseboating"],["houseboating","lakes"],["lakes","houseboating"],["lake","powell"],["popular","vacation"],["vacation","option"],["option","since"],["glen","canyon"],["canyon","dam"],["colorado","river"],["form","almost"],["shoreline","lake"],["lake","mead"],["largest","man"],["man","made"],["made","lake"],["lake","inorth"],["las","vegas"],["vegas","new"],["sierra","nevada"],["nevada","usierra"],["usierra","nevada"],["nevada","city"],["city","californiand"],["californiand","lake"],["lake","shasta"],["also","popular"],["popular","spots"],["arms","merge"],["sacramento","mccloud"],["pit","shasta"],["shasta","dam"],["highest","center"],["found","athe"],["athe","southwest"],["southwest","corner"],["lake","shasta"],["shasta","caverns"],["lake","houseboating"],["also","common"],["common","lake"],["lake","cumberland"],["cumberland","often"],["often","referred"],["houseboat","manufacturing"],["manufacturing","capital"],["american","built"],["built","houseboats"],["lake","cumberland"],["cumberland","lake"],["lake","cumberland"],["norris","lake"],["dale","hollow"],["hollow","lake"],["favorable","houseboating"],["houseboating","conditions"],["geography","provides"],["vast","number"],["allow","houseboats"],["anchor","away"],["main","channel"],["atmosphere","due"],["large","number"],["houseboat","manufacturers"],["manufacturers","located"],["southeast","us"],["used","houseboat"],["houseboat","marketplace"],["affordable","areas"],["also","deliver"],["us","houseboating"],["also","popular"],["popular","lake"],["trinity","lake"],["lake","mead"],["mead","national"],["national","recreation"],["recreation","area"],["area","inew"],["inew","york"],["york","state"],["state","new"],["new","york"],["york","houseboats"],["also","become"],["major","part"],["great","south"],["south","bay"],["long","island"],["island","houseboats"],["also","available"],["lake","billy"],["central","oregon"],["popular","lake"],["lake","billy"],["many","little"],["boats","roughly"],["roughly","built"],["built","float"],["float","houses"],["sometimes","called"],["historic","logging"],["logging","operations"],["sometimes","used"],["ark","river"],["river","boat"],["boat","ark"],["mobile","dwellings"],["dwellings","image"],["image","coomera"],["coomera","houseboat"],["houseboat","holidays"],["coomera","river"],["river","gold"],["thumb","right"],["right","alt"],["alt","houseboats"],["houseboats","moored"],["river","houseboats"],["hire","coomera"],["coomera","river"],["river","gold"],["gold","coast"],["coast","australia"],["australia","especially"],["murray","river"],["sunny","coastline"],["victoriaustralia","victoria"],["many","motorized"],["based","houseboats"],["one","level"],["multiple","stories"],["privately","owned"],["primary","residence"],["holiday","shack"],["shack","many"],["also","available"],["driven","holiday"],["holiday","destinations"],["dozen","persons"],["persons","coomera"],["coomera","river"],["great","sandy"],["sandy","straits"],["straits","near"],["largest","sand"],["sand","island"],["island","fraser"],["fraser","island"],["tweed","river"],["river","near"],["popular","tournament"],["competitions","arespecially"],["arespecially","popular"],["interstate","tourists"],["river","near"],["near","sydney"],["sydney","inew"],["inew","south"],["south","wales"],["popular","houseboating"],["houseboating","areas"],["areas","new"],["new","zealand"],["zealand","inew"],["inew","zealand"],["zealand","houseboating"],["holiday","activity"],["east","coast"],["land","locked"],["locked","harbour"],["provides","houseboating"],["houseboating","south"],["south","america"],["big","house"],["house","called"],["called","la"],["la","casa"],["former","captain"],["th","century"],["building","resembles"],["real","ship"],["neighborhood","la"],["nowadays","la"],["la","casa"],["city","icon"],["tourists","carbon"],["carbon","monoxide"],["gasoline","powered"],["powered","generators"],["generators","file"],["field","studies"],["carbon","monoxide"],["monoxide","hazards"],["houseboats","many"],["many","houseboats"],["houseboats","use"],["use","gasoline"],["gasoline","powered"],["powered","generators"],["caused","problems"],["houseboat","inhabitants"],["us","national"],["national","institute"],["occupational","safety"],["tandem","withe"],["withe","us"],["us","national"],["national","park"],["park","service"],["us","coast"],["coast","guard"],["guard","performed"],["air","quality"],["quality","particularly"],["particularly","carbon"],["carbon","monoxide"],["houseboats","beginning"],["august","since"],["initial","investigation"],["boating","related"],["related","poisonings"],["united","states"],["poisonings","resulting"],["poisonings","occurred"],["poisonings","attributed"],["generator","manufacturers"],["begun","working"],["working","withese"],["withese","agencies"],["occupied","areas"],["houseboats","carbon"],["carbon","monoxide"],["monoxide","dangers"],["boating","national"],["national","institute"],["occupational","safety"],["health","retrievedecember"],["retrievedecember","image"],["image","houseboat"],["houseboat","night"],["night","image"],["image","houseboat"],["houseboat","h"],["h","b"],["image","houseboat"],["houseboat","image"],["image","houseboat"],["houseboat","dalake"],["dalake","see"],["see","also"],["also","boathouse"],["stores","boats"],["boating","equipment"],["cabin","cruiser"],["cruiser","floating"],["floating","hospital"],["hospital","floating"],["floating","restaurant"],["hulk","ship"],["prison","ship"],["houseboat","museum"],["museum","amsterdam"],["houseboat","popular"],["popular","science"],["science","july"],["july","pp"],["pp","category"],["category","house"],["house","types"],["types","boat"],["boat","category"],["category","houseboats"],["houseboats","category"],["category","tourist"],["tourist","accommodations"]],"all_collocations":["lake union","seattle washington","washington ustate","ustate washington","washington usa","usa file","file floating","floating house","righthumb floating","floating house","amazon iquitos","iquitos peru","peru file","file country","country boat","thumb houseboat","city india","india houseboat","houseboat different","storing boats","used primarily","usually moored","moored kept","kept stationary","fixed point","provide utilities","utilities however","however many","power float","float house","american term","western countries","countries houseboats","houseboats tend","beither owned","owned privately","outo holiday","holiday goers","yearound examples","amsterdam london","zimbabwe specifically","houseboats use","use since","houseboat makes","zambezi basin","associated wildlife","game come","hong kong","fishing community","southern district","district hong","hong kong","kong southern","southern side","hong kong","kong island","island known","aberdeen floating","floating village","typhoon shelter","shelter file","thumb houseboat","humble administrator","garden india","india houseboats","kerala see","dalake near","near srinagar","srinagar kashmir","kashmir kerala","kerala houseboats","houseboats file","file boat","boat beauty","kerala house","house boat","india file","file house","house boat","boat jpg","house boat","boat near","kerala india","india houseboats","kerala south","south indiare","indiare huge","huge slow","slow moving","moving barges","barges used","leisure trips","means tied","earlier times","carry rice","port kerala","kerala houseboats","convenient means","major tourist","tourist attractionsuch","wide athe","athe middle","held together","coconut fiber","usual wood","bamboo poles","palm tree","tree palm","palm leaves","leaves thexterior","nut oil","oil kashmir","kashmir houseboats","houseboats file","file houseboat","houseboat dalake","dalake srinagar","thumb houseboat","houseboat dalake","dalake srinagar","srinagar kashmir","kashmir file","file kashmir","thumbnail right","right house","house boats","lake srinagar","srinagar kashmir","kashmir india","india unlike","kerala houseboats","srinagar kashmir","usually stationary","usually moored","rented outo","outo tourists","carved wood","three bedrooms","bedrooms apart","living room","kitchen many","many tourists","houseboat provides","elegant bedroom","luxury hotel","hotel srinagar","houseboats moored","moored along","along sections","like hotels","hotels houseboats","houseboats vary","luxury houseboat","houseboat like","luxury hotel","fine furniture","furniture good","good carpets","modern bathroom","bathroom fittings","lowest category","category houseboats","houseboats like","like low","low budget","budget hotels","furnished like","like hotels","hotels houseboats","houseboats vary","vary widely","main road","road others","others look","others face","face tiny","tiny local","local markets","also floating","houseboats regardless","highly personalized","personalized service","every boat","boat buthe","buthe owner","often close","cost per","per day","houseboat includes","free rides","directly accessible","banks every","every standard","standard houseboat","houseboat provides","lounge dining","dining room","room pantry","three bedrooms","attached bathrooms","houseboats moored","lakes provide","free service","virtually every","every houseboat","municipal water","water connection","laos houseboats","accommodate tourists","mekong river","river houseboats","usually referred","steel variants","variants file","file berlin","houseboats jpg","thumb houseboats","water borne","borne community","church berlin","berlin also","also hasome","hasome houseboat","houseboat neighborhoods","neighborhoods notably","left houseboat","netherlands file","right houseboat","amsterdam netherlands","seen along","houseboat hotels","hotels houseboats","limited number","likelihood thathe","thathe approximately","approximately families","inner waters","new neighbor","neighbor boats","houseboat borne","borne flower","flower market","market along","pioneering floating","floating houses","flexible connections","primarily intended","flooding build","build houses","swim spiegel","spiegel online","online international","international accessed","accessed october","october dutch","dutch pioneer","pioneer floating","floating eco","eco homes","bbc news","news march","march accessed","accessed october","october staying","richard warren","warren financial","financial times","times march","march accessed","accessed october","october file","file houseboats","houseboats belgrade","px left","left houseboats","belgrade serbia","serbia houseboats","popular forecreation","forecreation dining","large numbers","river islands","islands united","united kingdom","kingdom file","file houseboats","houseboats richmond","richmond surrey","thumb houseboats","houseboats richmond","richmond london","london richmond","richmond surrey","surrey uk","uk file","thumbnail right","grand union","union canal","canal uk","uk file","file houseboats","thumbnail right","hull house","house boats","island uk","united kingdom","kingdom canal","mobile rented","rented holiday","originally used","bulk transport","raw materials","canals constructed","constructed athe","athe start","canal network","mainly used","used forecreation","typical holiday","holiday locations","usually based","inland often","often pass","many former","former historical","historical industrial","industrial urban","urban areas","coastal regions","united kingdom","old boats","novel david","converted ships","ships barges","many families","people live","great britain","many reasons","reasons including","including economies","combining home","day pressures","subculture actually","diverse group","group often","strong sense","local community","residential houseboats","houseboats moorings","london port","port health","health authority","authority district","district although","significant number","permanent floating","floating residences","residences many","whilst others","others may","may periodically","periodically leave","short cruises","lower part","london port","port health","health authority","authority district","upper part","part many","london authority","authority pla","pla licensed","licensed moorings","local authority","authority planning","planning approval","existence whilst","whilst others","neither north","north america","canada houseboats","gaining popularity","british columbia","columbia ontario","perfectly suited","suited rivers","enjoy houseboats","permanent dwelling","mainly due","cold winter","winter temperatures","accompanying frozen","frozen waterways","rideau canal","canal system","historic waterway","waterway known","picturesque setting","quaint villages","lake british","british columbia","columbia isaid","houseboat capital","world float","float houses","houses arelatively","arelatively common","common along","like construction","flat bottom","english dictionary","dictionary second","second edition","rom v","v oxford","oxford university","university press","press float","b toronto","small float","float home","home community","properties within","concrete barges","lake bottom","athe marina","allow residence","residence yearound","vessels united","united states","america file","charles river","cambridge massachusetts","massachusetts usa","usa file","file houseboat","right houseboat","silver glen","glen springs","lake george","george florida","florida lake","lake george","george florida","florida usa","usa file","file cumberland","modern houseboat","lake cumberland","cumberland near","near albany","albany kentucky","kentucky usa","usa file","file lake","right houseboat","near henderson","henderson louisiana","louisiana usa","usa seattle","relatively large","large collection","houseboats capable","floating homes","homes houses","houses built","several neighborhoods","neighborhoods particularly","lake union","appear soon","time ofirst","ofirst european","european settlement","settlement atheir","atheir peak","first half","th century","even counting","live aboard","aboard boats","included floating","floating slums","houseboats go","go back","way cable","lake washington","luxury summer","surviving today","today lined","madison park","park seattle","seattle madison","madison park","floating homes","lake union","lesser number","number elsewhere","inland lakes","portland oregon","oregon also","many houseboats","houseboats along","along bothe","columbia river","river withe","withe neighborhood","hayden island","island portland","portland oregon","oregon hayden","hayden island","prominent example","example float","float houses","mostly used","pacificoast renting","renting houseboats","also become","become popular","addition houseboats","virginia chesapeake","chesapeake national","national bank","floating bank","bank branch","branch called","boat n","n bank","provided bank","bank services","cove alaska","floating post","post offices","us mystic","mystic island","island new","new jersey","water access","buthe building","building hasince","hasince changed","changed ownership","longer operates","operates asuch","noted collections","various times","ofamous musicians","musicians film","film stars","stars authors","even today","today nearby","nearby belvedere","houseboats date","railway men","men shipping","shipping logs","san francisco","francisco via","like many","many areas","float homes","taken hold","hold battles","float home","home owners","owners local","state government","local establishment","includes land","land based","based home","home owners","owners float","float home","home owners","fought established","established land","land based","based tax","tax schemes","schemes whereby","whereby float","float home","real estate","estate taxes","battle withe","withe shadow","shadow tax","tax allowing","property beneathe","beneathe float","float home","float home","home cast","cast upon","bottom forecreation","forecreation houseboating","ages aboard","aboard houseboats","varieties ranging","ranging fromore","fromore modest","modest foot","foot boats","plus luxury","luxury houseboat","houseboat models","models houseboating","appealing due","completely explore","local scenery","scenery remain","remain close","close proximity","proximity tother","tother outdoor","outdoor activities","activities hiking","hiking boating","boating beaches","beaches etc","finally retain","living quarters","recreational houseboating","longer periods","time lake","lake cumberland","cumberland kentucky","manufactured houseboats","lake cumberland","cumberland kentucky","lake style","style houseboats","houseboats thany","world monticello","monticello kentucky","houseboat capital","world today","today one","find motorized","motorized houseboats","living space","space houseboating","houseboating lakes","lakes houseboating","lake powell","popular vacation","vacation option","option since","glen canyon","canyon dam","colorado river","form almost","shoreline lake","lake mead","largest man","man made","made lake","lake inorth","las vegas","vegas new","sierra nevada","nevada usierra","usierra nevada","nevada city","city californiand","californiand lake","lake shasta","also popular","popular spots","arms merge","sacramento mccloud","pit shasta","shasta dam","highest center","found athe","athe southwest","southwest corner","lake shasta","shasta caverns","lake houseboating","also common","common lake","lake cumberland","cumberland often","often referred","houseboat manufacturing","manufacturing capital","american built","built houseboats","lake cumberland","cumberland lake","lake cumberland","norris lake","dale hollow","hollow lake","favorable houseboating","houseboating conditions","geography provides","vast number","allow houseboats","anchor away","main channel","atmosphere due","large number","houseboat manufacturers","manufacturers located","southeast us","used houseboat","houseboat marketplace","affordable areas","also deliver","us houseboating","also popular","popular lake","trinity lake","lake mead","mead national","national recreation","recreation area","area inew","inew york","york state","state new","new york","york houseboats","also become","major part","great south","south bay","long island","island houseboats","also available","lake billy","central oregon","popular lake","lake billy","many little","boats roughly","roughly built","built float","float houses","sometimes called","historic logging","logging operations","sometimes used","ark river","river boat","boat ark","mobile dwellings","dwellings image","image coomera","coomera houseboat","houseboat holidays","coomera river","river gold","right alt","alt houseboats","houseboats moored","river houseboats","hire coomera","coomera river","river gold","gold coast","coast australia","australia especially","murray river","sunny coastline","victoriaustralia victoria","many motorized","based houseboats","one level","multiple stories","privately owned","primary residence","holiday shack","shack many","also available","driven holiday","holiday destinations","dozen persons","persons coomera","coomera river","great sandy","sandy straits","straits near","largest sand","sand island","island fraser","fraser island","tweed river","river near","popular tournament","competitions arespecially","arespecially popular","interstate tourists","river near","near sydney","sydney inew","inew south","south wales","popular houseboating","houseboating areas","areas new","new zealand","zealand inew","inew zealand","zealand houseboating","holiday activity","east coast","land locked","locked harbour","provides houseboating","houseboating south","south america","big house","house called","called la","la casa","former captain","th century","building resembles","real ship","neighborhood la","nowadays la","la casa","city icon","tourists carbon","carbon monoxide","gasoline powered","powered generators","generators file","field studies","carbon monoxide","monoxide hazards","houseboats many","many houseboats","houseboats use","use gasoline","gasoline powered","powered generators","caused problems","houseboat inhabitants","us national","national institute","occupational safety","tandem withe","withe us","us national","national park","park service","us coast","coast guard","guard performed","air quality","quality particularly","particularly carbon","carbon monoxide","houseboats beginning","august since","initial investigation","boating related","related poisonings","united states","poisonings resulting","poisonings occurred","poisonings attributed","generator manufacturers","begun working","working withese","withese agencies","occupied areas","houseboats carbon","carbon monoxide","monoxide dangers","boating national","national institute","occupational safety","health retrievedecember","retrievedecember image","image houseboat","houseboat night","night image","image houseboat","houseboat h","h b","image houseboat","houseboat image","image houseboat","houseboat dalake","dalake see","see also","also boathouse","stores boats","boating equipment","cabin cruiser","cruiser floating","floating hospital","hospital floating","floating restaurant","hulk ship","prison ship","houseboat museum","museum amsterdam","houseboat popular","popular science","science july","july pp","pp category","category house","house types","types boat","boat category","category houseboats","houseboats category","category tourist","tourist accommodations"],"new_description":"file righthumb houseboat lake union seattle_washington ustate washington usa file floating house righthumb floating house amazon iquitos peru file country boat back thumb houseboat lake_city india houseboat different boathouse shed storing boats designed modified used primarily home houseboats motorized usually moored kept stationary fixed point often land provide utilities however_many capable operation power float house american term house float may called boat western countries houseboats tend beither owned privately outo holiday goers canals dwell houseboats yearound examples_include limited amsterdam london paris zimbabwe specifically lake houseboats use since creation lake late early houseboat makes easy experience zambezi basin associated wildlife lot game come water drinking cool hong_kong houseboat fishing community southern district hong_kong southern side hong_kong island known aberdeen floating village alsone community typhoon shelter file thumb houseboat humble administrator garden india houseboats accommodation tourists common kerala see dalake near srinagar kashmir kerala houseboats file boat beauty kerala house boat india file house boat jpg house boat near kerala india houseboats kerala south indiare huge slow moving barges used leisure trips model language means tied ropes boat earlier times used carry rice spice port kerala houseboats considered convenient means transportation popularity returned function major tourist_attractionsuch houseboat long wide athe middle hull made wooden held together rope coconut fiber usual wood roof made bamboo poles palm tree palm leaves thexterior boat painted protective nut oil kashmir houseboats file houseboat dalake srinagar thumb houseboat dalake srinagar kashmir file kashmir thumbnail_right house boats lake srinagar kashmir india unlike counterparts kerala houseboats srinagar kashmir usually stationary usually moored dalake houseboats built thearly still rented outo tourists houseboats made wood usually carved wood houseboats different three bedrooms apart living_room kitchen many tourists attracted srinagar charm staying houseboat provides uniquexperience living water cedar elegant bedroom luxury hotel srinagar thousand houseboats moored along sections dal lakes river decorated named even like hotels houseboats vary degree luxury accordingly department tourism luxury houseboat like luxury hotel fine furniture good carpets modern bathroom fittings category lowest category houseboats like low budget hotels furnished like hotels houseboats vary widely overlook main road others look onto gardens others face tiny local markets villages also floating lake houseboats regardless category highly personalized service always every boat buthe owner family often close cost per_day hiring houseboat includes meals free rides nearest back houseboat lakes directly accessible banks every standard houseboat provides balcony front lounge dining_room pantry three bedrooms attached bathrooms houseboats moored bank river lakes provide free service nearest virtually every houseboat srinagar provided municipal water connection laos houseboats used accommodate tourists mekong river houseboats usually referred boats exist wooden steel variants file berlin houseboats jpg thumb houseboats berlin port hamburg water borne community includes church berlin also hasome houseboat neighborhoods notably file thumb left houseboat students netherlands file thumb right houseboat amsterdam netherlands europe finest examples houseboats seen along canals amsterdam even houseboat hotels houseboats expensive amsterdam limited number moorings expense reduced likelihood thathe approximately families live inner waters amsterdam find new neighbor boats houseboat borne flower market along amsterdam amsterdam town pioneering floating houses flexible connections electricity primarily intended travel rather safe answer flooding build houses swim spiegel online international accessed_october dutch pioneer floating eco homes bbc_news march accessed_october staying water richard warren financial times_march accessed_october file houseboats belgrade thumb px left houseboats ada belgrade serbia houseboats popular forecreation dining clubbing serbia seen large_numbers belgrade banks danube rivers river islands united_kingdom file houseboats richmond surrey thumb houseboats richmond_london richmond surrey uk file thumbnail_right grand union canal uk file houseboats thumbnail_right hull house boats island uk united_kingdom canal used homes also mobile rented holiday originally used bulk transport raw materials fuel canals constructed athe_start industrial canal network mainly used forecreation different typical holiday locations usually based coastal areas canals inland often pass many former historical industrial urban_areas coastal regions united_kingdom hull hull old boats ships used homes past example houseboat novel david today area peninsula hundreds converted ships barges boats used homes many families people live great_britain attracted lifestyle many reasons including economies combining home pleasure nature day day pressures life subculture actually diverse group often strong sense local_community number residential houseboats moorings london port health authority district although significant number houseboats permanent floating residences many occupied weekends whilst others may periodically leave moorings short cruises various creek creek lower part london port health authority district twickenham upper part many port london authority pla licensed moorings also local authority planning approval existence whilst others neither north_america canada houseboats gaining popularity british_columbia ontario quebec abundance perfectly suited rivers lakes enjoy houseboats generally used rather permanent dwelling mainly due cold winter temperatures accompanying frozen waterways rideau canal system historic waterway known picturesque setting quaint villages town lake british_columbia isaid houseboat capital world float houses arelatively common along pacificoast float like construction flat bottom english_dictionary second edition rom v oxford_university_press float b toronto park home small float home community properties within park marina homes toronto built concrete barges lake bottom athe marina allow residence yearound homes motor thus vessels united_states america_file_jpg thumb right charles river cambridge_massachusetts usa file houseboat thumb right houseboat silver glen springs lake george florida lake george florida usa file cumberland jpg thumb right modern houseboat lake cumberland near albany kentucky usa file lake thumb right houseboat lake near henderson louisiana usa seattle home relatively large collection houseboats capable moving power floating homes houses built several neighborhoods particularly lake union bay began appear soon time ofirst european settlement atheir peak first_half th_century city even counting live aboard boats included floating slums houseboats go back way cable lake washington string luxury summer none surviving today lined shore north madison park seattle madison park floating homes lake union lesser number elsewhere city houseboats designed built inland lakes waterways portland_oregon also many houseboats along bothe river columbia_river withe neighborhood hayden island portland_oregon hayden island prominent example float houses mostly used pacificoast renting houseboats also become_popular addition houseboats used commerce virginia chesapeake national bank floating bank branch called boat n bank provided bank services cove alaska one floating post_offices us mystic island new_jersey hotel boaters water access started buthe building hasince changed ownership longer operates asuch one noted collections homes owned various times ofamous musicians film stars authors even today nearby belvedere houseboats date late houseboats area homes railway men shipping logs san_francisco via ferry like many_areas float homes taken hold battles brewed float home_owners local state government local establishment includes land based home_owners float home_owners fought established land based tax schemes whereby float home real_estate taxes state battle withe shadow tax allowing state make case property beneathe float home improved shadow float home cast upon bottom forecreation houseboating activity groups people ages aboard houseboats varieties ranging fromore modest foot boats plus luxury houseboat models houseboating appealing due ability completely explore local scenery remain close_proximity tother outdoor activities hiking boating beaches etc finally retain potential move living quarters change view neighbors recreational houseboating united late people looking stay water longer periods time lake cumberland kentucky considered birthplace houseboating usa america manufactured houseboats lake cumberland kentucky lake style houseboats thany place world monticello kentucky known houseboat capital world today one find motorized houseboats living space houseboating lakes houseboating lake powell popular vacation option since glen canyon dam water colorado river form almost shoreline lake mead largest man_made lake inorth minutes las_vegas new sierra_nevada usierra nevada minutes nevada city californiand lake shasta mountains outside also_popular spots houseboats arms merge create sacramento mccloud creek pit shasta dam highest center dam world found athe southwest corner lake shasta caverns reached lake houseboating also_common lake cumberland often_referred houseboat manufacturing capital world majority american built houseboats manufactured lake cumberland lake cumberland lakes southeast norris lake dale hollow lake center lake gand offer favorable houseboating conditions geography provides vast number fingers allow houseboats tie anchor away main channel provides user peaceful atmosphere due large_number houseboat manufacturers located southeast us new used houseboat marketplace southeast one competitive affordable areas houseboats purchased nation also deliver body water us houseboating also_popular lake trinity lake lake mead national recreation area inew_york state_new_york houseboats also become major part great south bay long island houseboats also_available lake billy central oregon popular lake billy many little anchor houseboat boats roughly built float houses sometimes_called boats may built hull historic logging operations sometimes used ark river boat ark mobile dwellings image coomera houseboat holidays coomera river gold thumb right_alt houseboats moored river houseboats hire coomera river gold_coast australia australia especially murray river sunny coastline victoriaustralia_victoria many motorized boat based houseboats twor houseboats one level multiple stories privately_owned either primary residence holiday shack many also_available driven holiday destinations accommodation four perhaps dozen persons coomera river great sandy straits near world largest sand island fraser island recentimes tweed river near popular tournament competitions arespecially popular interstate tourists victoriand river near sydney inew south_wales popular houseboating areas new_zealand inew_zealand houseboating developing holiday activity harbour east_coast land locked harbour provides houseboating south_america venezuela big house called la casa built former captain th_century building resembles real ship floating water located neighborhood la nowadays la casa become city icon tourists carbon monoxide gasoline powered generators file talk field studies partnership thumb carbon monoxide hazards houseboats many houseboats use gasoline powered generators carbon generators caused problems houseboat inhabitants us_national institute occupational safety health tandem withe us_national_park service us coast guard performed number air quality particularly carbon monoxide levels houseboats beginning august since initial investigation boating related poisonings united_states identified poisonings resulting death poisonings occurred houseboats poisonings attributed generator alone houseboat generator manufacturers begun working withese agencies controls reduce occupied areas houseboats carbon monoxide dangers boating national institute occupational safety health retrievedecember image houseboat night image houseboat houseboat h b image houseboat image houseboat houseboat dalake see_also boathouse structure stores boats boating equipment cabin cruiser floating hospital floating_restaurant hulk ship prison ship houseboat museum amsterdam case houseboat popular_science july pp category category house types boat category houseboats category_tourist accommodations"},{"title":"HRC Culinary Academy","description":"hrculinary academy is an accredited cooking school culinary school in sofia bulgaria founded in february the academy has more than full time students from nations hrculinary academy is the first culinary school in eastern europe curriculum the academy s culinary arts program is a two year course that preparestudents for careers in the international hotel and culinary art culinary industry the course focuses on hands on training the hrculinary academy program covers a curriculum from knife skills and sauce making to budget ing and menu engineering classes are taught by international chef instructors and guest chefs from around the world the instruction language athe hrculinary academy is english languagenglish students athe academy have the opportunity to work in restaurant or hotel kitchens during their two paid industry placements in europe middleast south africand the united states campus hrc academy facilities include training kitchen s a types of restaurants fine dining fine dining restaurant a la carte kitchen demonstration theatre wine cellar and culinary library the hrc academy features branch locations in bulgaria s capital sofia references externalinks hrculinary academy website training restaurant by hrculinary academy category cooking schools in europe category education in sofia category hospitality schools category educational institutions established in category schools in bulgaria category bulgarian cuisine","main_words":["hrculinary","academy","accredited","cooking","school","culinary","school","sofia","bulgaria","founded","february","academy","full_time","students","nations","hrculinary","academy","first","culinary","school","eastern_europe","curriculum","academy","culinary_arts","program","two_year","course","careers","international_hotel","culinary","art","culinary","industry","course","focuses","hands","training","hrculinary","academy","program","covers","curriculum","knife","skills","sauce","making","budget","ing","menu_engineering","classes","taught","international","chef","instructors","guest","chefs","around","world","instruction","language","athe","hrculinary","academy","english_languagenglish","students","athe","academy","opportunity","work","restaurant","hotel","kitchens","two","paid","industry","placements","europe","middleast","south_africand","united_states","campus","academy","facilities","include","training","kitchen","types","restaurants","fine_dining","fine_dining","restaurant","la_carte","kitchen","demonstration","theatre","wine","cellar","culinary","library","academy","features","branch","locations","bulgaria","capital","sofia","references_externalinks","hrculinary","academy","website","training","restaurant","hrculinary","academy","category","cooking","schools","sofia","category_hospitality_schools","category_educational","institutions","established","category","schools","bulgaria","category","cuisine"],"clean_bigrams":[["hrculinary","academy"],["accredited","cooking"],["cooking","school"],["school","culinary"],["culinary","school"],["sofia","bulgaria"],["bulgaria","founded"],["full","time"],["time","students"],["nations","hrculinary"],["hrculinary","academy"],["first","culinary"],["culinary","school"],["eastern","europe"],["europe","curriculum"],["culinary","arts"],["arts","program"],["two","year"],["year","course"],["international","hotel"],["culinary","art"],["art","culinary"],["culinary","industry"],["course","focuses"],["hrculinary","academy"],["academy","program"],["program","covers"],["knife","skills"],["sauce","making"],["budget","ing"],["menu","engineering"],["engineering","classes"],["international","chef"],["chef","instructors"],["guest","chefs"],["instruction","language"],["language","athe"],["athe","hrculinary"],["hrculinary","academy"],["english","languagenglish"],["languagenglish","students"],["students","athe"],["athe","academy"],["hotel","kitchens"],["two","paid"],["paid","industry"],["industry","placements"],["europe","middleast"],["middleast","south"],["south","africand"],["united","states"],["states","campus"],["academy","facilities"],["facilities","include"],["include","training"],["training","kitchen"],["restaurants","fine"],["fine","dining"],["dining","fine"],["fine","dining"],["dining","restaurant"],["la","carte"],["carte","kitchen"],["kitchen","demonstration"],["demonstration","theatre"],["theatre","wine"],["wine","cellar"],["culinary","library"],["academy","features"],["features","branch"],["branch","locations"],["capital","sofia"],["sofia","references"],["references","externalinks"],["externalinks","hrculinary"],["hrculinary","academy"],["academy","website"],["website","training"],["training","restaurant"],["hrculinary","academy"],["academy","category"],["category","cooking"],["cooking","schools"],["europe","category"],["category","education"],["sofia","category"],["category","hospitality"],["hospitality","schools"],["schools","category"],["category","educational"],["educational","institutions"],["institutions","established"],["category","schools"],["bulgaria","category"]],"all_collocations":["hrculinary academy","accredited cooking","cooking school","school culinary","culinary school","sofia bulgaria","bulgaria founded","full time","time students","nations hrculinary","hrculinary academy","first culinary","culinary school","eastern europe","europe curriculum","culinary arts","arts program","two year","year course","international hotel","culinary art","art culinary","culinary industry","course focuses","hrculinary academy","academy program","program covers","knife skills","sauce making","budget ing","menu engineering","engineering classes","international chef","chef instructors","guest chefs","instruction language","language athe","athe hrculinary","hrculinary academy","english languagenglish","languagenglish students","students athe","athe academy","hotel kitchens","two paid","paid industry","industry placements","europe middleast","middleast south","south africand","united states","states campus","academy facilities","facilities include","include training","training kitchen","restaurants fine","fine dining","dining fine","fine dining","dining restaurant","la carte","carte kitchen","kitchen demonstration","demonstration theatre","theatre wine","wine cellar","culinary library","academy features","features branch","branch locations","capital sofia","sofia references","references externalinks","externalinks hrculinary","hrculinary academy","academy website","website training","training restaurant","hrculinary academy","academy category","category cooking","cooking schools","europe category","category education","sofia category","category hospitality","hospitality schools","schools category","category educational","educational institutions","institutions established","category schools","bulgaria category"],"new_description":"hrculinary academy accredited cooking school culinary school sofia bulgaria founded february academy full_time students nations hrculinary academy first culinary school eastern_europe curriculum academy culinary_arts program two_year course careers international_hotel culinary art culinary industry course focuses hands training hrculinary academy program covers curriculum knife skills sauce making budget ing menu_engineering classes taught international chef instructors guest chefs around world instruction language athe hrculinary academy english_languagenglish students athe academy opportunity work restaurant hotel kitchens two paid industry placements europe middleast south_africand united_states campus academy facilities include training kitchen types restaurants fine_dining fine_dining restaurant la_carte kitchen demonstration theatre wine cellar culinary library academy features branch locations bulgaria capital sofia references_externalinks hrculinary academy website training restaurant hrculinary academy category cooking schools europe_category_education sofia category_hospitality_schools category_educational institutions established category schools bulgaria category cuisine"},{"title":"Hutchings' Illustrated California Magazine","description":"file new almaden quicksilver mine png thumb new almaden quicksilver mine from hutchings california magazine vol i no iii front cover illustration hutchings illustrated california magazine was a magazine published between and in san francisco which played an important role in popularizing california in general and to a largextent yosemite national park in particular publisher and promoter james hutchings was born in towcester england in came to the united states along with a vast wave of europeans that werescaping a maelstrom of economic political and religious oppression in the late shortly after he arrived gold was found in the sierra nevada usierra nevadand hutchings decided to seek his fortune his was a common story insofar as he did not make a good living miningold but what little he did make he invested in addition to attracting settlers to the west coasthe gold rush also broughtechnology in particular printing presses and hutchings learned to make a moderately lucrative living publishing and selling letter sheets which were printed broad sheets purposely left blank on the back so they could be used to write lettersomething akin to large format postcards they became very popular among miners who used them when they wrote home to friends and relatives in theast aside fromaking a living selling the letter sheets as hutchings traveled around california he gained a sense of what was important in the popular mind and came up withe idea of an illustrated magazine the news of the mariposa battalion s incursion into a valley thathe battalion members named yosemite for the purpose of tracking down alleged renegade indians was fairly widely published buthe news focused on the confrontation hutchings was one of the few people to note the mention of a foot waterfall and in when he was first formulating the idea of his illustrated magazine he decided that a trip into that valley might make for interesting stories in the inaugural issue of the magazine in the late spring of he hired artists to join him and when the party arrived in the foothills he hired two mi wuk men as guides as the party came around inspiration pointhey stopped long enough for thomas ayres artisthomas ayres to get a detailed sketch which was published as a lithographic poster that fall the first published image of yosemite valley in june thentire account was published in volume i of the magazine and included five of ayres drawings the magazine was published monthly from july to june five volumes totalthough yosemite was prominent it was a magazine of general interesthat focused on california s nascentourist attractions each issue contained travel narratives ranging from simple day trips out of san francisco to arduous transierra treks longer articles were interspersed with shorter and lighter piecesuch as poetry and tables of interesting facts the magazine popularized a number of well known legendary stories of the west including the pony express grizzly adams and snowshoe thompson the story of the naming of yosemite was first published in the magazine in an article by lafayette bunnellinks to magazine archives the following are links to issues of the magazine on the internet archive direct links to representative articles are also provided note that page numbering continues between issues for example the first page of the august issue is page noteworthy articles our introductory the introductory story on the journey to yosemite july pp the quicksilver mine of new almaden early history of mercury mining near san jose including travel narrative of stage coach ride down the peninsula september ppacking in the mountains details abouthe mule packing industry which supplied the mining camps december pp noteworthy articles mining for gold in california illustrated andetailed explanation of several gold mining methods july pp the history of a letter illustrated andetailed explanation of early california mail delivery january pp noteworthy articlescenes in the valleys and mountains of california illustrated andetailedescription of many early california interior towns may pp how the yo semite valley was discovered and named first written account of the origin of the name by lafayette bunnell may pp noteworthy articles notes and sketches of the washoe country illustrated account of early mining settlements inevada then still part of utah territory april pp noteworthy articles the pony express an early popularization of this transcontinental mail route july pp adventures of james capen adams mountaineer and grizzly bear hunter of california possibly the first published popularization of grizzly adamseptember pp category establishments in california category disestablishments in california category american monthly magazines category city guides category defunct magazines of the united states category english language magazines category local interest magazines category magazinestablished in category magazines disestablished in category magazines published in california category tourismagazines categoryosemite national park","main_words":["file","new","quicksilver","mine","png_thumb","new","quicksilver","mine","hutchings","california","magazine","vol","iii","front","cover","illustration","hutchings","illustrated","california","magazine","magazine_published","san_francisco","played","important_role","popularizing","california","general","yosemite","national_park","particular","publisher","promoter","james","hutchings","born","england","came","united_states","along","vast","wave","europeans","economic","political","religious","late","shortly","arrived","gold","found","sierra_nevada","usierra","nevadand","hutchings","decided","seek","fortune","common","story","make","good","living","little","make","invested","addition","attracting","settlers","gold","rush","also","particular","printing","presses","hutchings","learned","make","moderately","lucrative","living","publishing","selling","letter","sheets","printed","broad","sheets","purposely","left","blank","back","could","used","write","akin","large","format","postcards","used","wrote","home","friends","relatives","theast","aside","living","selling","letter","sheets","hutchings","traveled","around","california","gained","sense","important","popular","mind","came","withe_idea","illustrated","magazine","news","battalion","valley","thathe","battalion","members","named","yosemite","purpose","tracking","alleged","renegade","indians","fairly","widely","published","buthe","news","focused","hutchings","one","people","note","mention","foot","waterfall","first","idea","illustrated","magazine","decided","trip","valley","might","make","interesting","stories","inaugural","issue","magazine","late","spring","hired","artists","join","party","arrived","hired","two","men","guides","party","came","around","inspiration","stopped","long","enough","thomas","ayres","ayres","get","detailed","sketch","published","poster","fall","first_published","image","yosemite","valley","june","thentire","account","published","volume","magazine","included","five","ayres","drawings","magazine_published","monthly","july","june","five","volumes","yosemite","prominent","magazine","general","focused","california","attractions","issue","contained","travel","narratives","ranging","simple","day_trips","san_francisco","treks","longer","articles","shorter","lighter","poetry","tables","interesting","facts","magazine","popularized","number","well_known","legendary","stories","west","including","pony","express","grizzly","adams","thompson","story","naming","yosemite","first_published","magazine","article","lafayette","magazine","archives","following","links","issues","magazine","internet_archive","direct","links","representative","articles","also_provided","note","page","numbering","continues","issues","example","first","page","august","issue","page","noteworthy","articles","introductory","introductory","story","journey","yosemite","july","pp","quicksilver","mine","new","early","history","mercury","mining","near","san_jose","including","travel","narrative","stage","coach","ride","peninsula","september","mountains","details","abouthe","packing","industry","supplied","mining","camps","december","pp","noteworthy","articles","mining","gold","california","illustrated","andetailed","explanation","several","gold","mining","methods","july","pp","history","letter","illustrated","andetailed","explanation","early","california","mail","delivery","january","pp","noteworthy","valleys","mountains","california","illustrated","many","early","california","interior","towns","may","pp","valley","discovered","named","first","written","account","origin","name","lafayette","may","pp","noteworthy","articles","notes","sketches","country","illustrated","account","early","mining","settlements","inevada","still","part","utah","territory","april","pp","noteworthy","articles","pony","express","early","transcontinental","mail","route","july","pp","adventures","james","adams","grizzly","bear","hunter","california","possibly","first_published","grizzly","pp","category_establishments","california_category","disestablishments","california_category","category_defunct","magazines","united_states","category_english_language_magazines","category_local_interest_magazines","category_magazinestablished","category_magazines","disestablished","category_magazines_published","national_park"],"clean_bigrams":[["file","new"],["quicksilver","mine"],["mine","png"],["png","thumb"],["thumb","new"],["quicksilver","mine"],["hutchings","california"],["california","magazine"],["magazine","vol"],["iii","front"],["front","cover"],["cover","illustration"],["illustration","hutchings"],["hutchings","illustrated"],["illustrated","california"],["california","magazine"],["magazine","published"],["san","francisco"],["important","role"],["popularizing","california"],["yosemite","national"],["national","park"],["particular","publisher"],["promoter","james"],["james","hutchings"],["united","states"],["states","along"],["vast","wave"],["economic","political"],["late","shortly"],["arrived","gold"],["sierra","nevada"],["nevada","usierra"],["usierra","nevadand"],["nevadand","hutchings"],["hutchings","decided"],["common","story"],["good","living"],["attracting","settlers"],["west","coasthe"],["coasthe","gold"],["gold","rush"],["rush","also"],["particular","printing"],["printing","presses"],["hutchings","learned"],["moderately","lucrative"],["lucrative","living"],["living","publishing"],["selling","letter"],["letter","sheets"],["printed","broad"],["broad","sheets"],["sheets","purposely"],["purposely","left"],["left","blank"],["large","format"],["format","postcards"],["popular","among"],["wrote","home"],["theast","aside"],["living","selling"],["selling","letter"],["letter","sheets"],["hutchings","traveled"],["traveled","around"],["around","california"],["popular","mind"],["withe","idea"],["illustrated","magazine"],["valley","thathe"],["thathe","battalion"],["battalion","members"],["members","named"],["named","yosemite"],["alleged","renegade"],["renegade","indians"],["fairly","widely"],["widely","published"],["published","buthe"],["buthe","news"],["news","focused"],["foot","waterfall"],["illustrated","magazine"],["valley","might"],["might","make"],["interesting","stories"],["inaugural","issue"],["late","spring"],["hired","artists"],["party","arrived"],["hired","two"],["party","came"],["came","around"],["around","inspiration"],["stopped","long"],["long","enough"],["thomas","ayres"],["detailed","sketch"],["first","published"],["published","image"],["yosemite","valley"],["june","thentire"],["thentire","account"],["included","five"],["ayres","drawings"],["magazine","published"],["published","monthly"],["june","five"],["five","volumes"],["issue","contained"],["contained","travel"],["travel","narratives"],["narratives","ranging"],["simple","day"],["day","trips"],["san","francisco"],["treks","longer"],["longer","articles"],["interesting","facts"],["magazine","popularized"],["well","known"],["known","legendary"],["legendary","stories"],["west","including"],["pony","express"],["express","grizzly"],["grizzly","adams"],["first","published"],["magazine","archives"],["internet","archive"],["archive","direct"],["direct","links"],["representative","articles"],["also","provided"],["provided","note"],["page","numbering"],["numbering","continues"],["first","page"],["august","issue"],["page","noteworthy"],["noteworthy","articles"],["introductory","story"],["yosemite","july"],["july","pp"],["quicksilver","mine"],["early","history"],["mercury","mining"],["mining","near"],["near","san"],["san","jose"],["jose","including"],["including","travel"],["travel","narrative"],["stage","coach"],["coach","ride"],["peninsula","september"],["mountains","details"],["details","abouthe"],["packing","industry"],["mining","camps"],["camps","december"],["december","pp"],["pp","noteworthy"],["noteworthy","articles"],["articles","mining"],["california","illustrated"],["illustrated","andetailed"],["andetailed","explanation"],["several","gold"],["gold","mining"],["mining","methods"],["methods","july"],["july","pp"],["letter","illustrated"],["illustrated","andetailed"],["andetailed","explanation"],["early","california"],["california","mail"],["mail","delivery"],["delivery","january"],["january","pp"],["pp","noteworthy"],["california","illustrated"],["many","early"],["early","california"],["california","interior"],["interior","towns"],["towns","may"],["may","pp"],["named","first"],["first","written"],["written","account"],["may","pp"],["pp","noteworthy"],["noteworthy","articles"],["articles","notes"],["country","illustrated"],["illustrated","account"],["early","mining"],["mining","settlements"],["settlements","inevada"],["still","part"],["utah","territory"],["territory","april"],["april","pp"],["pp","noteworthy"],["noteworthy","articles"],["pony","express"],["transcontinental","mail"],["mail","route"],["route","july"],["july","pp"],["pp","adventures"],["grizzly","bear"],["bear","hunter"],["california","possibly"],["first","published"],["pp","category"],["category","establishments"],["california","category"],["category","disestablishments"],["california","category"],["category","american"],["american","monthly"],["monthly","magazines"],["magazines","category"],["category","city"],["city","guides"],["guides","category"],["category","defunct"],["defunct","magazines"],["united","states"],["states","category"],["category","english"],["english","language"],["language","magazines"],["magazines","category"],["category","local"],["local","interest"],["interest","magazines"],["magazines","category"],["category","magazinestablished"],["category","magazines"],["magazines","disestablished"],["category","magazines"],["magazines","published"],["california","category"],["category","tourismagazines"],["national","park"]],"all_collocations":["file new","quicksilver mine","mine png","png thumb","thumb new","quicksilver mine","hutchings california","california magazine","magazine vol","iii front","front cover","cover illustration","illustration hutchings","hutchings illustrated","illustrated california","california magazine","magazine published","san francisco","important role","popularizing california","yosemite national","national park","particular publisher","promoter james","james hutchings","united states","states along","vast wave","economic political","late shortly","arrived gold","sierra nevada","nevada usierra","usierra nevadand","nevadand hutchings","hutchings decided","common story","good living","attracting settlers","west coasthe","coasthe gold","gold rush","rush also","particular printing","printing presses","hutchings learned","moderately lucrative","lucrative living","living publishing","selling letter","letter sheets","printed broad","broad sheets","sheets purposely","purposely left","left blank","large format","format postcards","popular among","wrote home","theast aside","living selling","selling letter","letter sheets","hutchings traveled","traveled around","around california","popular mind","withe idea","illustrated magazine","valley thathe","thathe battalion","battalion members","members named","named yosemite","alleged renegade","renegade indians","fairly widely","widely published","published buthe","buthe news","news focused","foot waterfall","illustrated magazine","valley might","might make","interesting stories","inaugural issue","late spring","hired artists","party arrived","hired two","party came","came around","around inspiration","stopped long","long enough","thomas ayres","detailed sketch","first published","published image","yosemite valley","june thentire","thentire account","included five","ayres drawings","magazine published","published monthly","june five","five volumes","issue contained","contained travel","travel narratives","narratives ranging","simple day","day trips","san francisco","treks longer","longer articles","interesting facts","magazine popularized","well known","known legendary","legendary stories","west including","pony express","express grizzly","grizzly adams","first published","magazine archives","internet archive","archive direct","direct links","representative articles","also provided","provided note","page numbering","numbering continues","first page","august issue","page noteworthy","noteworthy articles","introductory story","yosemite july","july pp","quicksilver mine","early history","mercury mining","mining near","near san","san jose","jose including","including travel","travel narrative","stage coach","coach ride","peninsula september","mountains details","details abouthe","packing industry","mining camps","camps december","december pp","pp noteworthy","noteworthy articles","articles mining","california illustrated","illustrated andetailed","andetailed explanation","several gold","gold mining","mining methods","methods july","july pp","letter illustrated","illustrated andetailed","andetailed explanation","early california","california mail","mail delivery","delivery january","january pp","pp noteworthy","california illustrated","many early","early california","california interior","interior towns","towns may","may pp","named first","first written","written account","may pp","pp noteworthy","noteworthy articles","articles notes","country illustrated","illustrated account","early mining","mining settlements","settlements inevada","still part","utah territory","territory april","april pp","pp noteworthy","noteworthy articles","pony express","transcontinental mail","mail route","route july","july pp","pp adventures","grizzly bear","bear hunter","california possibly","first published","pp category","category establishments","california category","category disestablishments","california category","category american","american monthly","monthly magazines","magazines category","category city","city guides","guides category","category defunct","defunct magazines","united states","states category","category english","english language","language magazines","magazines category","category local","local interest","interest magazines","magazines category","category magazinestablished","category magazines","magazines disestablished","category magazines","magazines published","california category","category tourismagazines","national park"],"new_description":"file new quicksilver mine png_thumb new quicksilver mine hutchings california magazine vol iii front cover illustration hutchings illustrated california magazine magazine_published san_francisco played important_role popularizing california general yosemite national_park particular publisher promoter james hutchings born england came united_states along vast wave europeans economic political religious late shortly arrived gold found sierra_nevada usierra nevadand hutchings decided seek fortune common story make good living little make invested addition attracting settlers west_coasthe gold rush also particular printing presses hutchings learned make moderately lucrative living publishing selling letter sheets printed broad sheets purposely left blank back could used write akin large format postcards became_popular_among used wrote home friends relatives theast aside living selling letter sheets hutchings traveled around california gained sense important popular mind came withe_idea illustrated magazine news battalion valley thathe battalion members named yosemite purpose tracking alleged renegade indians fairly widely published buthe news focused hutchings one people note mention foot waterfall first idea illustrated magazine decided trip valley might make interesting stories inaugural issue magazine late spring hired artists join party arrived hired two men guides party came around inspiration stopped long enough thomas ayres ayres get detailed sketch published poster fall first_published image yosemite valley june thentire account published volume magazine included five ayres drawings magazine_published monthly july june five volumes yosemite prominent magazine general focused california attractions issue contained travel narratives ranging simple day_trips san_francisco treks longer articles shorter lighter poetry tables interesting facts magazine popularized number well_known legendary stories west including pony express grizzly adams thompson story naming yosemite first_published magazine article lafayette magazine archives following links issues magazine internet_archive direct links representative articles also_provided note page numbering continues issues example first page august issue page noteworthy articles introductory introductory story journey yosemite july pp quicksilver mine new early history mercury mining near san_jose including travel narrative stage coach ride peninsula september mountains details abouthe packing industry supplied mining camps december pp noteworthy articles mining gold california illustrated andetailed explanation several gold mining methods july pp history letter illustrated andetailed explanation early california mail delivery january pp noteworthy valleys mountains california illustrated many early california interior towns may pp valley discovered named first written account origin name lafayette may pp noteworthy articles notes sketches country illustrated account early mining settlements inevada still part utah territory april pp noteworthy articles pony express early transcontinental mail route july pp adventures james adams grizzly bear hunter california possibly first_published grizzly pp category_establishments california_category disestablishments california_category american_monthly_magazines_category_city_guides category_defunct magazines united_states category_english_language_magazines category_local_interest_magazines category_magazinestablished category_magazines disestablished category_magazines_published california_category_tourismagazines national_park"},{"title":"IATA New Distribution Capability","description":"ndc new distribution capability is a suggested airline distribution format promoted by the international air transport association iata for the development and market adoption of a xml basedata transmission standard between a small number of airlines and global distribution system s iata ndc was approved in october by iata followed by the us dot approval in august and with iata delivering the first set official standards on september the ndc format allows a limited number of airlines greater inventory control the travel agents across the world account for about of the value of all travel sold the information passed to the travel agents arestricted to price and schedule since travel agents use systems with pre internet messaging standards they do not have access to the same information and services that are being offered by the airlines through their website iata resolution clearly defines the scope of new distribution capability ndc enable airlines to respondirectly to shopping requests from travel agents manage order processing and enables true comparison shopping ndc is not a system or a software or a database but it is only a standard to exchange information between airlines and travel agents it is the various it providers who make it into systems and software certification process the ndcertification programanaged by iata confirms the scope and level of a particular organization s capability to provide ndc applications receive and sendc messages the certification program validates thathe ndc messages and application accurately follows the relevant version of the applicable ndc schemas and confirm the certification level iata is the only industry body that manages the ndc message validation and certification process following are the list of airlines who has already deployed andc based solution or working on launching a solution to address the same united airlines airlines flydubai british airways emirates airlinesaudi arabian airlines according to independent reviews ndc was designed to give airlines inventory data control while the true limitations are rooted in the facthat buyers do not control client and traveler data with a few exceptions travel agencies do not control their own client data today as it istored within the global distribution systems in a proprietary and mostly unstructured format any new distribution capability must first solve the problem of unstructured traveler data this not addressed by ndc a standard in travel that has already been widely adapted are the opentravel xml formats which also address airline ticket distribution externalinks category tourism category travel category aviation category transport software","main_words":["ndc","new","distribution","capability","suggested","airline","distribution","format","promoted","international","air","transport","association","iata","development","market","adoption","xml","transmission","standard","small","number","airlines","global","distribution","system","iata","ndc","approved","october","iata","followed","us","dot","approval","august","iata","delivering","first","set","official","standards","september","ndc","format","allows","limited","number","airlines","greater","inventory","control","travel_agents","across","world","account","value","travel","sold","information","passed","travel_agents","price","schedule","since","travel_agents","use","systems","pre","internet","messaging","standards","access","information","services","offered","airlines","website","iata","resolution","clearly","defines","scope","new","distribution","capability","ndc","enable","airlines","shopping","requests","travel_agents","manage","order","processing","enables","true","comparison","shopping","ndc","system","software","database","standard","exchange","information","airlines","travel_agents","various","providers","make","systems","software","certification","process","iata","scope","level","particular","organization","capability","provide","ndc","applications","receive","messages","certification","program","thathe","ndc","messages","application","accurately","follows","relevant","version","applicable","ndc","certification","level","iata","industry","body","manages","ndc","message","certification","process","following","list","airlines","already","deployed","based","solution","working","launching","solution","address","united","airlines","airlines","british","airways","emirates","arabian","airlines","according","independent","reviews","ndc","designed","give","airlines","inventory","data","control","true","limitations","rooted","facthat","buyers","control","client","traveler","data","exceptions","travel_agencies","control","client","data","today","within","global","distribution","systems","proprietary","mostly","format","new","distribution","capability","must","first","solve","problem","traveler","data","addressed","ndc","standard","travel","already","widely","adapted","xml","formats","also","address","airline","ticket","distribution","externalinks_category_tourism","category_travel","category","aviation","category_transport","software"],"clean_bigrams":[["ndc","new"],["new","distribution"],["distribution","capability"],["suggested","airline"],["airline","distribution"],["distribution","format"],["format","promoted"],["international","air"],["air","transport"],["transport","association"],["association","iata"],["market","adoption"],["transmission","standard"],["small","number"],["global","distribution"],["distribution","system"],["iata","ndc"],["iata","followed"],["us","dot"],["dot","approval"],["iata","delivering"],["first","set"],["set","official"],["official","standards"],["ndc","format"],["format","allows"],["limited","number"],["airlines","greater"],["greater","inventory"],["inventory","control"],["travel","agents"],["agents","across"],["world","account"],["travel","sold"],["information","passed"],["travel","agents"],["schedule","since"],["since","travel"],["travel","agents"],["agents","use"],["use","systems"],["pre","internet"],["internet","messaging"],["messaging","standards"],["website","iata"],["iata","resolution"],["resolution","clearly"],["clearly","defines"],["new","distribution"],["distribution","capability"],["capability","ndc"],["ndc","enable"],["enable","airlines"],["shopping","requests"],["travel","agents"],["agents","manage"],["manage","order"],["order","processing"],["enables","true"],["true","comparison"],["comparison","shopping"],["shopping","ndc"],["exchange","information"],["travel","agents"],["software","certification"],["certification","process"],["particular","organization"],["provide","ndc"],["ndc","applications"],["applications","receive"],["certification","program"],["thathe","ndc"],["ndc","messages"],["application","accurately"],["accurately","follows"],["relevant","version"],["applicable","ndc"],["certification","level"],["level","iata"],["industry","body"],["ndc","message"],["certification","process"],["process","following"],["already","deployed"],["based","solution"],["united","airlines"],["airlines","airlines"],["british","airways"],["airways","emirates"],["arabian","airlines"],["airlines","according"],["independent","reviews"],["reviews","ndc"],["give","airlines"],["airlines","inventory"],["inventory","data"],["data","control"],["true","limitations"],["facthat","buyers"],["control","client"],["traveler","data"],["exceptions","travel"],["travel","agencies"],["control","client"],["client","data"],["data","today"],["global","distribution"],["distribution","systems"],["new","distribution"],["distribution","capability"],["capability","must"],["must","first"],["first","solve"],["traveler","data"],["widely","adapted"],["xml","formats"],["also","address"],["address","airline"],["airline","ticket"],["ticket","distribution"],["distribution","externalinks"],["externalinks","category"],["category","tourism"],["tourism","category"],["category","travel"],["travel","category"],["category","aviation"],["aviation","category"],["category","transport"],["transport","software"]],"all_collocations":["ndc new","new distribution","distribution capability","suggested airline","airline distribution","distribution format","format promoted","international air","air transport","transport association","association iata","market adoption","transmission standard","small number","global distribution","distribution system","iata ndc","iata followed","us dot","dot approval","iata delivering","first set","set official","official standards","ndc format","format allows","limited number","airlines greater","greater inventory","inventory control","travel agents","agents across","world account","travel sold","information passed","travel agents","schedule since","since travel","travel agents","agents use","use systems","pre internet","internet messaging","messaging standards","website iata","iata resolution","resolution clearly","clearly defines","new distribution","distribution capability","capability ndc","ndc enable","enable airlines","shopping requests","travel agents","agents manage","manage order","order processing","enables true","true comparison","comparison shopping","shopping ndc","exchange information","travel agents","software certification","certification process","particular organization","provide ndc","ndc applications","applications receive","certification program","thathe ndc","ndc messages","application accurately","accurately follows","relevant version","applicable ndc","certification level","level iata","industry body","ndc message","certification process","process following","already deployed","based solution","united airlines","airlines airlines","british airways","airways emirates","arabian airlines","airlines according","independent reviews","reviews ndc","give airlines","airlines inventory","inventory data","data control","true limitations","facthat buyers","control client","traveler data","exceptions travel","travel agencies","control client","client data","data today","global distribution","distribution systems","new distribution","distribution capability","capability must","must first","first solve","traveler data","widely adapted","xml formats","also address","address airline","airline ticket","ticket distribution","distribution externalinks","externalinks category","category tourism","tourism category","category travel","travel category","category aviation","aviation category","category transport","transport software"],"new_description":"ndc new distribution capability suggested airline distribution format promoted international air transport association iata development market adoption xml transmission standard small number airlines global distribution system iata ndc approved october iata followed us dot approval august iata delivering first set official standards september ndc format allows limited number airlines greater inventory control travel_agents across world account value travel sold information passed travel_agents price schedule since travel_agents use systems pre internet messaging standards access information services offered airlines website iata resolution clearly defines scope new distribution capability ndc enable airlines shopping requests travel_agents manage order processing enables true comparison shopping ndc system software database standard exchange information airlines travel_agents various providers make systems software certification process iata scope level particular organization capability provide ndc applications receive messages certification program thathe ndc messages application accurately follows relevant version applicable ndc certification level iata industry body manages ndc message certification process following list airlines already deployed based solution working launching solution address united airlines airlines british airways emirates arabian airlines according independent reviews ndc designed give airlines inventory data control true limitations rooted facthat buyers control client traveler data exceptions travel_agencies control client data today within global distribution systems proprietary mostly format new distribution capability must first solve problem traveler data addressed ndc standard travel already widely adapted xml formats also address airline ticket distribution externalinks_category_tourism category_travel category aviation category_transport software"},{"title":"Ice cream cart","description":"an ice cream cart pseudonym aka ice cream stall is a mobile motor vehicle non motorized commercial vehicle that sells ice cream as a retail outlethe ice cream cart is usually useduring the summer and is generally spotted at public space park s beach eschool s or drive through neighborhoods residential areasometimes a bicycle is attached to the cart in order to improve its mobility file ice cream cart jpg thumb upright ice cream cart at galle face green colombo around the world file comacchio img jpg thumb upright an ice cream bike in comacchio emilia romagna italy singapore these are available in three forms it can be served in a cup sandwiched in a folded slice of bread pandan orainbow bread or between two thin wafer biscuits the ice cream flavors ice cream flavours that are usually sold around town are chocolate chip durian raspberry ripple raspberry ripple chocolate sweet potato yamango adzuki bean red beand sweet corn other flavours include blueberry caff mocha chipeppermint chocolate chip nata de coco matcha strawberry cheese caramel avocado cappucino and more the carts are run by singapore s pioneer generation and they are generally found in crowded public areasuch as the outside of the cathay and many spots along orchard road and bugis philippinesorbetesorbetero see also ice cream van references category commercial vehicles category food trucks category ice cream category street culture category types of restaurants","main_words":["ice","cream","cart","pseudonym","aka","ice_cream","stall","mobile","motor_vehicle","non","motorized","commercial","vehicle","sells","ice_cream","retail","ice_cream","cart","usually","useduring","summer","generally","spotted","public_space","park","beach","drive","neighborhoods","residential","bicycle","attached","cart","order","improve","mobility","file","ice_cream","cart","jpg","thumb","upright","ice_cream","cart","face","green","around","world","file","img_jpg","thumb","upright","ice_cream","bike","italy","singapore","available","three","forms","served","cup","folded","bread","bread","two","thin","biscuits","ice_cream","flavors","ice_cream","usually","sold","around","town","chocolate","chip","raspberry","raspberry","chocolate","sweet","potato","bean","red","sweet","corn","include","caff","chocolate","chip","de","cheese","caramel","carts","run","singapore","pioneer","generation","generally","found","crowded","public","areasuch","outside","many","spots","along","road","see_also","ice_cream","van","references_category","commercial","food_trucks","category","ice_cream","category_street","culture_category_types","restaurants"],"clean_bigrams":[["ice","cream"],["cream","cart"],["cart","pseudonym"],["pseudonym","aka"],["aka","ice"],["ice","cream"],["cream","stall"],["mobile","motor"],["motor","vehicle"],["vehicle","non"],["non","motorized"],["motorized","commercial"],["commercial","vehicle"],["sells","ice"],["ice","cream"],["ice","cream"],["cream","cart"],["usually","useduring"],["generally","spotted"],["public","space"],["space","park"],["neighborhoods","residential"],["mobility","file"],["file","ice"],["ice","cream"],["cream","cart"],["cart","jpg"],["jpg","thumb"],["thumb","upright"],["upright","ice"],["ice","cream"],["cream","cart"],["face","green"],["world","file"],["img","jpg"],["jpg","thumb"],["thumb","upright"],["upright","ice"],["ice","cream"],["cream","bike"],["italy","singapore"],["three","forms"],["two","thin"],["ice","cream"],["cream","flavors"],["flavors","ice"],["ice","cream"],["usually","sold"],["sold","around"],["around","town"],["chocolate","chip"],["chocolate","sweet"],["sweet","potato"],["bean","red"],["sweet","corn"],["chocolate","chip"],["cheese","caramel"],["pioneer","generation"],["generally","found"],["crowded","public"],["public","areasuch"],["many","spots"],["spots","along"],["see","also"],["also","ice"],["ice","cream"],["cream","van"],["van","references"],["references","category"],["category","commercial"],["commercial","vehicles"],["vehicles","category"],["category","food"],["food","trucks"],["trucks","category"],["category","ice"],["ice","cream"],["cream","category"],["category","street"],["street","culture"],["culture","category"],["category","types"]],"all_collocations":["ice cream","cream cart","cart pseudonym","pseudonym aka","aka ice","ice cream","cream stall","mobile motor","motor vehicle","vehicle non","non motorized","motorized commercial","commercial vehicle","sells ice","ice cream","ice cream","cream cart","usually useduring","generally spotted","public space","space park","neighborhoods residential","mobility file","file ice","ice cream","cream cart","cart jpg","upright ice","ice cream","cream cart","face green","world file","img jpg","upright ice","ice cream","cream bike","italy singapore","three forms","two thin","ice cream","cream flavors","flavors ice","ice cream","usually sold","sold around","around town","chocolate chip","chocolate sweet","sweet potato","bean red","sweet corn","chocolate chip","cheese caramel","pioneer generation","generally found","crowded public","public areasuch","many spots","spots along","see also","also ice","ice cream","cream van","van references","references category","category commercial","commercial vehicles","vehicles category","category food","food trucks","trucks category","category ice","ice cream","cream category","category street","street culture","culture category","category types"],"new_description":"ice cream cart pseudonym aka ice_cream stall mobile motor_vehicle non motorized commercial vehicle sells ice_cream retail ice_cream cart usually useduring summer generally spotted public_space park beach drive neighborhoods residential bicycle attached cart order improve mobility file ice_cream cart jpg thumb upright ice_cream cart face green around world file img_jpg thumb upright ice_cream bike italy singapore available three forms served cup folded bread bread two thin biscuits ice_cream flavors ice_cream usually sold around town chocolate chip raspberry raspberry chocolate sweet potato bean red sweet corn include caff chocolate chip de cheese caramel carts run singapore pioneer generation generally found crowded public areasuch outside many spots along road see_also ice_cream van references_category commercial vehicles_category food_trucks category ice_cream category_street culture_category_types restaurants"},{"title":"Ice cream parlor","description":"file venice cream parlor jpg thumb px gelato being served in a gelateria in venice italy ice cream parlors or parlours arestaurants that sell ice cream gelato sorbet and frozen yogurto consumers ice cream is typically sold as regular ice cream also called hard packed ice cream gelato and soft serve which is usually dispensed by a machine with a limited number oflavors eg chocolate vanilland twist a mix of the two it is customary for ice cream parlors toffer a number oflavors and items parlors often serve ice cream and other frozen desserts in cones or in dishes to beaten with a spoon some ice cream parlours prepare ice cream dessertsuch asundae s ice cream topped with syrup whipped cream and other toppings or milkshake s file sicilian ice cream parlorjpg thumb px gelato selections at a sicilian gelateria while the origins of ice cream are often debated most scholars trace the first ice cream parlor back to france in the th century in francesco procopio del coltelli opened paris first caf the caf procope named by itsicilian founder introduced gelato the french public the dessert waserved to its elite guests in small porcelain bowls until ice cream remained a rare and exotic dessert enjoyed mostly by thelite the introduction of insulated ice houses in the first ice cream factory in pennsylvania in and industrial refrigeration in the s made manufacturing and storing ice creamuch simpler the first ice cream factory was built by jacob fussell a milk dealer who bought dairy products from philadelphia farmers and sold them in baltimore the mass production of ice cream cuthe product s cost significantly making it more popular and more affordable for people of lower classes in thearly s an early form of an ice cream parlor was existent in philadelphia pennsylvania united states that sold all kinds of refreshments as ice cream syrups french cordials cakes clarets of the best kind jellies etc according tone source the first ice cream parlor opened inew york city united states in product overview gelato is italian ice cream that contains more milk and less cream compared to ice cream is denser in consistency and has a smoother texture milk fat in gelato varies from percent up to the latter of which isimilar to standard ice cream gelato parlors often produce their own product and are less likely to serve american style ice cream or soft serve sorbet is a frozen treat made from fruit syrup and ice no milk or cream is used frozen yogurt is a common low fat ice cream alternative with a smooth texture that isimilar to soft serve ice cream all of these frozen products may be sold in ice cream cone s cupsundae s and milkshake some parlors may also sell ice cream cake s ice cream bar s and other pre packaged frozen sweets in addition to frozen dessert productsome modern ice cream parlors also sell a variety of hot fast food s image italian parlourjpg an italian ice cream parlour with varieties of gelato ice cream imagenglish parlourjpg an english ice cream parlour with varieties of traditional ice cream file notz ice cream parlorjpg thumb right entry to an ice cream parlor in the united states parlors vary in terms of environment some only have an order window and outside seating while others have complete indoor facilities additionally some parlors have drive through windowsome parlors remain open all yearound typically in warmer weather locations and others in colder climatestay open only during warmer months particularly fromarch to november for example some ice cream parlors in viennaustria close in the winter months parlors in major metro areas including those in colder climates often remain throughouthe year to satisfy high consumer demand for frozen ice creams yogurts and sorbetsome ice cream parlors in moscow russia offer alcoholic beverages along with ice cream ice cream parlor chains because ice cream parlors are located throughouthe world there are both smallocal franchising franchise s as well as large global enterprisesome of the most notable large global ice cream parlors include baskin robbins ben jerry s bruster s ice cream carvel restaurant carvel cold stone creamery dairy queen dippin dots friendly s h agen dazs and maggiemoo s ice cream and treateryogurtland yogen fr z and sweet frog sweetfrog are notable frozen yogurt parlors just as the size style and selection within each ice cream parlor may differ so may its notoriety each july in the united states in honor of national ice creamonth several prominent publications rank the popularity of ice cream parlors throughouthe united states in traveleisure national geographic business insider food wine and tripadvisor published their top ranked ice cream parlors traveleisure america s best ice cream shops national geographic toplaces to eat ice cream business insider the best ice cream shops in the us according to pinterest users food wine best ice cream spots in the us tripadvisor best ice cream parlors in the us ranked by tripadvisor usersee also list of ice cream brands list of ice cream flavors list ofrozen yogurt companies externalinks category ice cream parlors category types of restaurants","main_words":["file","venice","cream","parlor","jpg","thumb","px","gelato","served","venice","italy","ice_cream","parlors","parlours","sell","ice_cream","gelato","frozen","consumers","ice_cream","typically","sold","regular","ice_cream","also_called","hard","packed","ice_cream","gelato","soft","serve","usually","machine","limited","number","chocolate","twist","mix","two","customary","ice_cream","parlors","toffer","number","items","parlors","often","serve","ice_cream","frozen","desserts","dishes","beaten","spoon","ice_cream","parlours","prepare","ice_cream","ice_cream","topped","syrup","whipped","cream","milkshake","file","ice_cream","thumb","px","gelato","selections","origins","ice_cream","often","scholars","trace","first","ice_cream","parlor","back","france","th_century","francesco","del","opened","paris","first","caf","caf","named","founder","introduced","gelato","french","public","dessert","waserved","elite","guests","small","porcelain","bowls","ice_cream","remained","rare","exotic","dessert","enjoyed","mostly","thelite","introduction","ice","houses","first","ice_cream","factory","pennsylvania","industrial","made","manufacturing","storing","ice","simpler","first","ice_cream","factory","built","jacob","fussell","milk","dealer","bought","dairy","products","philadelphia","farmers","sold","baltimore","mass","production","ice_cream","product","cost","significantly","making","popular","affordable","people","lower","classes","thearly","early","form","ice_cream","parlor","existent","philadelphia_pennsylvania","united_states","sold","kinds","ice_cream","french","cakes","best","kind","etc","according","tone","source","first","ice_cream","parlor","opened","inew_york_city","united_states","product","overview","gelato","italian","ice_cream","contains","milk","less","cream","compared","ice_cream","consistency","texture","milk","fat","gelato","varies","percent","latter","isimilar","standard","ice_cream","gelato","parlors","often","produce","product","less","likely","serve","american","style","ice_cream","soft","serve","frozen","treat","made","fruit","syrup","ice","milk","cream","used","frozen","yogurt","common","low","fat","ice_cream","alternative","smooth","texture","isimilar","soft","serve","ice_cream","frozen","products","may","sold","ice_cream","cone","milkshake","parlors","may_also","sell","ice_cream","cake","ice_cream","bar","pre","packaged","frozen","sweets","addition","frozen","dessert","modern","ice_cream","parlors","also_sell","variety","hot","fast_food","image","italian","italian","ice_cream","parlour","varieties","gelato","ice_cream","english","ice_cream","parlour","varieties","traditional","ice_cream","file","ice_cream","thumb","right","entry","ice_cream","parlor","united_states","parlors","vary","terms","environment","order","window","outside","seating","others","complete","indoor","facilities","additionally","parlors","drive","parlors","remain","open","yearound","typically","warmer","weather","locations","others","open","warmer","months","particularly","fromarch","november","example","ice_cream","parlors","viennaustria","close","winter","months","parlors","major","metro","areas","including","climates","often","remain","throughouthe","year","satisfy","high","consumer","demand","frozen","ice_creams","ice_cream","parlors","moscow","russia","offer","alcoholic_beverages","along","ice_cream","ice_cream","parlor","chains","ice_cream","parlors","located","throughouthe_world","franchising","franchise","well","large","global","notable","large","global","ice_cream","parlors","include","robbins","ben","jerry","ice_cream","restaurant","cold","stone","dairy","queen","friendly","h","ice_cream","sweet","frog","notable","frozen","yogurt","parlors","size","style","selection","within","ice_cream","parlor","may","differ","may","notoriety","july","united_states","honor","national","ice","several","prominent","publications","rank","popularity","ice_cream","parlors","throughouthe_united_states","traveleisure","national_geographic","business","insider","food","wine","tripadvisor","published","top","ranked","ice_cream","parlors","traveleisure","america","best","ice_cream","shops","national_geographic","eat","ice_cream","business","insider","best","ice_cream","shops","us","according","users","food","wine","best","ice_cream","spots","us","tripadvisor","best","ice_cream","parlors","us","ranked","tripadvisor","also_list","ice_cream","brands","list","ice_cream","flavors","list","yogurt","companies","externalinks_category","ice_cream","parlors","category_types","restaurants"],"clean_bigrams":[["file","venice"],["venice","cream"],["cream","parlor"],["parlor","jpg"],["jpg","thumb"],["thumb","px"],["px","gelato"],["venice","italy"],["italy","ice"],["ice","cream"],["cream","parlors"],["sell","ice"],["ice","cream"],["cream","gelato"],["consumers","ice"],["ice","cream"],["typically","sold"],["regular","ice"],["ice","cream"],["cream","also"],["also","called"],["called","hard"],["hard","packed"],["packed","ice"],["ice","cream"],["cream","gelato"],["soft","serve"],["limited","number"],["ice","cream"],["cream","parlors"],["parlors","toffer"],["items","parlors"],["parlors","often"],["often","serve"],["serve","ice"],["ice","cream"],["frozen","desserts"],["ice","cream"],["cream","parlours"],["parlours","prepare"],["prepare","ice"],["ice","cream"],["cream","ice"],["ice","cream"],["cream","topped"],["syrup","whipped"],["whipped","cream"],["ice","cream"],["thumb","px"],["px","gelato"],["gelato","selections"],["ice","cream"],["scholars","trace"],["first","ice"],["ice","cream"],["cream","parlor"],["parlor","back"],["th","century"],["opened","paris"],["paris","first"],["first","caf"],["founder","introduced"],["introduced","gelato"],["french","public"],["dessert","waserved"],["elite","guests"],["small","porcelain"],["porcelain","bowls"],["ice","cream"],["cream","remained"],["exotic","dessert"],["dessert","enjoyed"],["enjoyed","mostly"],["ice","houses"],["first","ice"],["ice","cream"],["cream","factory"],["made","manufacturing"],["storing","ice"],["first","ice"],["ice","cream"],["cream","factory"],["jacob","fussell"],["milk","dealer"],["bought","dairy"],["dairy","products"],["philadelphia","farmers"],["mass","production"],["ice","cream"],["cost","significantly"],["significantly","making"],["lower","classes"],["early","form"],["ice","cream"],["cream","parlor"],["philadelphia","pennsylvania"],["pennsylvania","united"],["united","states"],["ice","cream"],["best","kind"],["etc","according"],["according","tone"],["tone","source"],["first","ice"],["ice","cream"],["cream","parlor"],["parlor","opened"],["opened","inew"],["inew","york"],["york","city"],["city","united"],["united","states"],["product","overview"],["overview","gelato"],["italian","ice"],["ice","cream"],["less","cream"],["cream","compared"],["ice","cream"],["texture","milk"],["milk","fat"],["gelato","varies"],["standard","ice"],["ice","cream"],["cream","gelato"],["gelato","parlors"],["parlors","often"],["often","produce"],["less","likely"],["serve","american"],["american","style"],["style","ice"],["ice","cream"],["soft","serve"],["frozen","treat"],["treat","made"],["fruit","syrup"],["used","frozen"],["frozen","yogurt"],["common","low"],["low","fat"],["fat","ice"],["ice","cream"],["cream","alternative"],["smooth","texture"],["soft","serve"],["serve","ice"],["ice","cream"],["frozen","products"],["products","may"],["ice","cream"],["cream","cone"],["parlors","may"],["may","also"],["also","sell"],["sell","ice"],["ice","cream"],["cream","cake"],["ice","cream"],["cream","bar"],["pre","packaged"],["packaged","frozen"],["frozen","sweets"],["frozen","dessert"],["modern","ice"],["ice","cream"],["cream","parlors"],["parlors","also"],["also","sell"],["hot","fast"],["fast","food"],["image","italian"],["italian","ice"],["ice","cream"],["cream","parlour"],["gelato","ice"],["ice","cream"],["english","ice"],["ice","cream"],["cream","parlour"],["traditional","ice"],["ice","cream"],["cream","file"],["ice","cream"],["thumb","right"],["right","entry"],["ice","cream"],["cream","parlor"],["united","states"],["states","parlors"],["parlors","vary"],["order","window"],["outside","seating"],["complete","indoor"],["indoor","facilities"],["facilities","additionally"],["parlors","remain"],["remain","open"],["yearound","typically"],["warmer","weather"],["weather","locations"],["warmer","months"],["months","particularly"],["particularly","fromarch"],["ice","cream"],["cream","parlors"],["viennaustria","close"],["winter","months"],["months","parlors"],["major","metro"],["metro","areas"],["areas","including"],["climates","often"],["often","remain"],["remain","throughouthe"],["throughouthe","year"],["satisfy","high"],["high","consumer"],["consumer","demand"],["frozen","ice"],["ice","creams"],["ice","cream"],["cream","parlors"],["moscow","russia"],["russia","offer"],["offer","alcoholic"],["alcoholic","beverages"],["beverages","along"],["ice","cream"],["cream","ice"],["ice","cream"],["cream","parlor"],["parlor","chains"],["ice","cream"],["cream","parlors"],["located","throughouthe"],["throughouthe","world"],["franchising","franchise"],["large","global"],["notable","large"],["large","global"],["global","ice"],["ice","cream"],["cream","parlors"],["parlors","include"],["robbins","ben"],["ben","jerry"],["ice","cream"],["cold","stone"],["dairy","queen"],["ice","cream"],["sweet","frog"],["notable","frozen"],["frozen","yogurt"],["yogurt","parlors"],["size","style"],["selection","within"],["ice","cream"],["cream","parlor"],["parlor","may"],["may","differ"],["united","states"],["national","ice"],["several","prominent"],["prominent","publications"],["publications","rank"],["ice","cream"],["cream","parlors"],["parlors","throughouthe"],["throughouthe","united"],["united","states"],["traveleisure","national"],["national","geographic"],["geographic","business"],["business","insider"],["insider","food"],["food","wine"],["tripadvisor","published"],["top","ranked"],["ranked","ice"],["ice","cream"],["cream","parlors"],["parlors","traveleisure"],["traveleisure","america"],["best","ice"],["ice","cream"],["cream","shops"],["shops","national"],["national","geographic"],["eat","ice"],["ice","cream"],["cream","business"],["business","insider"],["best","ice"],["ice","cream"],["cream","shops"],["us","according"],["users","food"],["food","wine"],["wine","best"],["best","ice"],["ice","cream"],["cream","spots"],["us","tripadvisor"],["tripadvisor","best"],["best","ice"],["ice","cream"],["cream","parlors"],["us","ranked"],["also","list"],["ice","cream"],["cream","brands"],["brands","list"],["ice","cream"],["cream","flavors"],["flavors","list"],["yogurt","companies"],["companies","externalinks"],["externalinks","category"],["category","ice"],["ice","cream"],["cream","parlors"],["parlors","category"],["category","types"]],"all_collocations":["file venice","venice cream","cream parlor","parlor jpg","px gelato","venice italy","italy ice","ice cream","cream parlors","sell ice","ice cream","cream gelato","consumers ice","ice cream","typically sold","regular ice","ice cream","cream also","also called","called hard","hard packed","packed ice","ice cream","cream gelato","soft serve","limited number","ice cream","cream parlors","parlors toffer","items parlors","parlors often","often serve","serve ice","ice cream","frozen desserts","ice cream","cream parlours","parlours prepare","prepare ice","ice cream","cream ice","ice cream","cream topped","syrup whipped","whipped cream","ice cream","px gelato","gelato selections","ice cream","scholars trace","first ice","ice cream","cream parlor","parlor back","th century","opened paris","paris first","first caf","founder introduced","introduced gelato","french public","dessert waserved","elite guests","small porcelain","porcelain bowls","ice cream","cream remained","exotic dessert","dessert enjoyed","enjoyed mostly","ice houses","first ice","ice cream","cream factory","made manufacturing","storing ice","first ice","ice cream","cream factory","jacob fussell","milk dealer","bought dairy","dairy products","philadelphia farmers","mass production","ice cream","cost significantly","significantly making","lower classes","early form","ice cream","cream parlor","philadelphia pennsylvania","pennsylvania united","united states","ice cream","best kind","etc according","according tone","tone source","first ice","ice cream","cream parlor","parlor opened","opened inew","inew york","york city","city united","united states","product overview","overview gelato","italian ice","ice cream","less cream","cream compared","ice cream","texture milk","milk fat","gelato varies","standard ice","ice cream","cream gelato","gelato parlors","parlors often","often produce","less likely","serve american","american style","style ice","ice cream","soft serve","frozen treat","treat made","fruit syrup","used frozen","frozen yogurt","common low","low fat","fat ice","ice cream","cream alternative","smooth texture","soft serve","serve ice","ice cream","frozen products","products may","ice cream","cream cone","parlors may","may also","also sell","sell ice","ice cream","cream cake","ice cream","cream bar","pre packaged","packaged frozen","frozen sweets","frozen dessert","modern ice","ice cream","cream parlors","parlors also","also sell","hot fast","fast food","image italian","italian ice","ice cream","cream parlour","gelato ice","ice cream","english ice","ice cream","cream parlour","traditional ice","ice cream","cream file","ice cream","right entry","ice cream","cream parlor","united states","states parlors","parlors vary","order window","outside seating","complete indoor","indoor facilities","facilities additionally","parlors remain","remain open","yearound typically","warmer weather","weather locations","warmer months","months particularly","particularly fromarch","ice cream","cream parlors","viennaustria close","winter months","months parlors","major metro","metro areas","areas including","climates often","often remain","remain throughouthe","throughouthe year","satisfy high","high consumer","consumer demand","frozen ice","ice creams","ice cream","cream parlors","moscow russia","russia offer","offer alcoholic","alcoholic beverages","beverages along","ice cream","cream ice","ice cream","cream parlor","parlor chains","ice cream","cream parlors","located throughouthe","throughouthe world","franchising franchise","large global","notable large","large global","global ice","ice cream","cream parlors","parlors include","robbins ben","ben jerry","ice cream","cold stone","dairy queen","ice cream","sweet frog","notable frozen","frozen yogurt","yogurt parlors","size style","selection within","ice cream","cream parlor","parlor may","may differ","united states","national ice","several prominent","prominent publications","publications rank","ice cream","cream parlors","parlors throughouthe","throughouthe united","united states","traveleisure national","national geographic","geographic business","business insider","insider food","food wine","tripadvisor published","top ranked","ranked ice","ice cream","cream parlors","parlors traveleisure","traveleisure america","best ice","ice cream","cream shops","shops national","national geographic","eat ice","ice cream","cream business","business insider","best ice","ice cream","cream shops","us according","users food","food wine","wine best","best ice","ice cream","cream spots","us tripadvisor","tripadvisor best","best ice","ice cream","cream parlors","us ranked","also list","ice cream","cream brands","brands list","ice cream","cream flavors","flavors list","yogurt companies","companies externalinks","externalinks category","category ice","ice cream","cream parlors","parlors category","category types"],"new_description":"file venice cream parlor jpg thumb px gelato served venice italy ice_cream parlors parlours sell ice_cream gelato frozen consumers ice_cream typically sold regular ice_cream also_called hard packed ice_cream gelato soft serve usually machine limited number chocolate twist mix two customary ice_cream parlors toffer number items parlors often serve ice_cream frozen desserts dishes beaten spoon ice_cream parlours prepare ice_cream ice_cream topped syrup whipped cream milkshake file ice_cream thumb px gelato selections origins ice_cream often scholars trace first ice_cream parlor back france th_century francesco del opened paris first caf caf named founder introduced gelato french public dessert waserved elite guests small porcelain bowls ice_cream remained rare exotic dessert enjoyed mostly thelite introduction ice houses first ice_cream factory pennsylvania industrial made manufacturing storing ice simpler first ice_cream factory built jacob fussell milk dealer bought dairy products philadelphia farmers sold baltimore mass production ice_cream product cost significantly making popular affordable people lower classes thearly early form ice_cream parlor existent philadelphia_pennsylvania united_states sold kinds ice_cream french cakes best kind etc according tone source first ice_cream parlor opened inew_york_city united_states product overview gelato italian ice_cream contains milk less cream compared ice_cream consistency texture milk fat gelato varies percent latter isimilar standard ice_cream gelato parlors often produce product less likely serve american style ice_cream soft serve frozen treat made fruit syrup ice milk cream used frozen yogurt common low fat ice_cream alternative smooth texture isimilar soft serve ice_cream frozen products may sold ice_cream cone milkshake parlors may_also sell ice_cream cake ice_cream bar pre packaged frozen sweets addition frozen dessert modern ice_cream parlors also_sell variety hot fast_food image italian italian ice_cream parlour varieties gelato ice_cream english ice_cream parlour varieties traditional ice_cream file ice_cream thumb right entry ice_cream parlor united_states parlors vary terms environment order window outside seating others complete indoor facilities additionally parlors drive parlors remain open yearound typically warmer weather locations others open warmer months particularly fromarch november example ice_cream parlors viennaustria close winter months parlors major metro areas including climates often remain throughouthe year satisfy high consumer demand frozen ice_creams ice_cream parlors moscow russia offer alcoholic_beverages along ice_cream ice_cream parlor chains ice_cream parlors located throughouthe_world franchising franchise well large global notable large global ice_cream parlors include robbins ben jerry ice_cream restaurant cold stone dairy queen friendly h ice_cream sweet frog notable frozen yogurt parlors size style selection within ice_cream parlor may differ may notoriety july united_states honor national ice several prominent publications rank popularity ice_cream parlors throughouthe_united_states traveleisure national_geographic business insider food wine tripadvisor published top ranked ice_cream parlors traveleisure america best ice_cream shops national_geographic eat ice_cream business insider best ice_cream shops us according users food wine best ice_cream spots us tripadvisor best ice_cream parlors us ranked tripadvisor also_list ice_cream brands list ice_cream flavors list yogurt companies externalinks_category ice_cream parlors category_types restaurants"},{"title":"Ice cream van","description":"image vintage ice cream truckjpg thumb vintage ice cream truck in harper woods michigan united states an ice cream van british english british or ice cream truck american english american is a commercial vehicle that serves as a mobile retail outlet for ice cream usually during the summer ice cream van s are often seen parked at public events or near park s beach es or other areas where people congregate ice cream vans often travel near where children play outside school s in residential areas or in other locations they usually stop briefly before moving on to the next street image hollywood cone ice cream truck jpg lefthumb hollywood cone soft ice cream truck in torontontario canada ice cream vans are often brightly decorated and carry images of ice cream or some other adornment such as cartoon character s they may have painted onotices which can serve a commercial purpose stop me and buy one or a more serious one don t skid on a kid serving as a warning to passing motorists that children may run out into the road athe sight of the van or appear without warning from behind it along the sides a large sliding window acts as a serving hatch and this often covered with small pictures of the available products witheir associated prices a distinctive feature of ice cream vans is their melodichimes and often these take the form of a famous and recognizable tune usually in the united states usa mister softee the mister softee jingle turkey in the straw do your ears hang low pop goes the weasel thentertainerag thentertainer music box dancer home on the range it s a small world a tune from the opera le devin du village more commonly known as the american folk songo tell aunt rhody the picnic a japanese children song usually played with a recording of a woman saying hello athend of the song on ice cream trucks or camptown races or in australia new zealand the united kingdom greensleeves it s now or never song it s now or never song whistle while you work in crewe and nantwich you are my sunshine in vale royal teddy bears picnic in sheffield and match of the day in other places in some places in the us ice cream trucks play the song ice cream by andre nickatina essentially justurkey in the strawith bass image ice cream truck sydney australia croppng thumb right ford transit ice cream van in sydney australia image conequeenoperatorjpg thumb right ice cream van in brisbane australia most ice cream vans tend to sell both pre manufactured ice pop s in wrappers and soft serve ice cream from a machine served in a cone and often with a flake chocolate flake in britain or a sugary syrup flavoured with for example strawberry soft serve ice cream iserved topped with sprinkles for a slight extra charge while franchises or chains are rare within the ice cream truck community mostrucks are independently owned run some do exist in some locations ice cream van operators have diversified to fill gaps in the market economics market for soft drinks using their capacity forefrigeration refrigerated storage to sell chilled cans and bottles early ice cream vans carried simple ice cream during a time when most families did not own a freezer as freezers became more commonplace ice cream vans moved towardselling novelty ice cream itemsuch as bars and popsicles early vans used relatively primitive techniques theirefrigeration was ensured by large blocks of dry ice so thengine was always turned off when the van wastopped for sales the chimes were operated by a handriven crank or a take offrom thengine so they were not heard as often modern chimes are always electrically operated and amplified in asia file cambodia ice creamotorcyclejpg thumb motorcycle with attachment for ice cream vending in cambodia in southeast asia n countries including thailand cambodia ice cream is often sold fromodified motorcycles with freezer sidecars tunes played range from theme from titanic to the virginia company from pocahontas film disney s pocahontas file hk mobilesoftee saikungjpg righthumb px mobile softee ice cream van atsim sha tsui ferry pier in hong kong in hong kong ice cream vans operated by mobile softee serve soft ice creams and popcicles as in the united kingdom the vans play the blue danube to attract customers as the hong kongovernment no longer issues new mobile hawker licenses the company is restricted to just vans in all of hong kong there is usually one ice cream van parked outside the star ferry terminal on hong kong island on haiphong road in tsim sha tsui some organised crime syndicates used them for money laundering the proceeds of crime and as a front for drug dealing in australiand new zealand the original mrwhippy company commenced operations in sydney australia in october the vans were an instant hit withe australian public and soon appeared in most capital cities and larger towns approximately uk built commer karrier vans were imported to australia in thearly s precious few of these much loved original vans have survived today the staffamily of hervey bay queensland have been continuously operating ice cream vansince bob staff commenced working for the original mr whippy company in as a driver and later as a supervisor the family provided historical information stories and photos for british author steve tillyer s book the mr whippy story published in the family are dedicated to preserving these vintage mr whippy vans and continue operate a small fleet of s commer karrier whippy vans the immaculately presented vans feature their original italian carpigianice creamachinery the friend family of adelaide south australia were the firstown and operate ice creams vans on the streets of adelaide ice cream vans colloquially known as mr whippy vans are very popular near beaches parks and at major events in cities and towns most of the population buys the ice creams with standard cone or waffle cone there are a number of businesses that build custom ice cream vansuch as majors group mobile van builders nz and other business in australiand new zealand the first mr whippy business was adopted inew zealand in this was when the mr whippy brand began taking shape and worked towards creating a household name in the nation athis time the mr whippy brand was well established in the uk and australiand met rapid success and expansion inew zealand throughouthe s and s the brand name and business flourished as the lifestyles of kiwis changed mr whippy continued to remain a national icon representing the popular outdoor lifestyle and family values the soft serve ice cream sold in vans was popular among all kiwis it was much later that mr whippy also started its fixed sites inew zealand it started these sites at malls and shopping centres to testhe response of the community bothe mobile services as well as the fixed site services have been a great success today there are around mr whippy franchisees operating trucks and trading from northland regionorthland to southland region southland the mobile services franchise has also planned for a country wide rollout for fixed sites previously mr whippy was part of nz milk products which merged into fonterra in prior to this taylor freeze owned mr whippy and was also responsible for the reorganization of the franchising system over the past years the business has undergone a majorefurbishment into a modern franchise system under current owners flying kiwi holdings ltd mr whippy has grown dramatically and its brand products ensure it remains a much loved icon inew zealand home ice cream is another famous australian brand of ice cream the company is well known for its distribution system having over franchises from darwin to melbourne selling ice cream by the box unlike other ice cream vans in australia in canada file icecreamvantorontojpg thumb ice cream van in toronto ice cream trucks first appeared in toronto in the mid s they are a popular fixture and local torontonian tradition most are independently owned and operated in there are still numerous trucks operated by the same toronto vendors of the s and s outside city hall theaton center hospital row university avenue convention center lakefront royal ontario museum the beaches and at mirvish village at honest ed s the majority of truck operators are of greek descenthere are presently over ice cream trucks on the road in the greater toronto area delivering on side streets or in stationed positions products featured in the ice cream trucks include traditional soft serve treats conesundaes floatshakes parfaits blizzards cartwheels banana splits that are submerged with colourful coatings and toppingslush puppies and novelty frozen treats that are shipped from the us and part of the american ice cream truck culture ice cream distributors make ice cream fresh daily with premium quality cream unlike cheap versions found in chain stores while food trucks have gained some popularity in recent years given the television series food truck wars on the food network their heyday has long fizzled they were far more popular in the s and s when many street festival started popping up with little variety it is common to see vendors at variousporting events marchestreet festivals in parks and just about anywhere there is a crowd ice cream trucks have changed appearance over the years most are gruman painted white withand painted art in the late s the artwork first appeared on the truck owned and operated outside honest ed s today that artwork is a part of the tradition and seen on all trucksome recentrucks have been custom fabricated with unique quirky designsuch as the whirly s ice cream trucks in peru rather than vans or motorcycles ice cream sellers use an adapted bicycle to travel around the land witheir product using a trumpet rather than a music player they attract attention and mark their presence in beachesome gon foot with a special portable box to carry them in the nordicountries inordicountries the nordicountries the light blue hjem is trucks provide door to door sales of bulk pre packed ice cream the company is well known for its distribution system selling ice cream by the box unlike ice cream vans elsewhere in the world in the united kingdom image w ppy cps jpg righthumb a wall s ice cream ford transit van parked in clacton england image h eeu cps jpg righthumb a ford transit based ice cream van in colchester england there are mainly two types of ice cream vans in the united kingdom a hard van which sellscoop ice cream and is only equipped with a freezer and a soft van whichas a freezer and also a soft serve whippy machine for serving ice cream cone s and screwball ice cream screwballs they are usually converted from factory standard vans withe rear cut away and replaced with a fibre glass body to reduce the weight because of the climate of the united kingdom british climate running an ice cream van profitably is not only very difficult outside summer but is also an unpredictable business a summer heatwave climate heatwave can provoke a massive upturn in fortunes for a few days but after the weather has returned to a milder character sales drop off dramatically the need to take advantage of rare and short lived opportunities can result in fierce rivalry between ice cream vans in coterminous areas withe main disputes being over who is entitled to sell ice cream in a particular patch this has also led to some ice cream van vendors diversity business diversifying and selling other productsuch as crisps french fried potatoes chips burgers or hot dog s from their vehicles at other times of the year in a number of local authority areas particularly in london boroughs with existing street marketstreetrading regulations prohibit ice cream vans from remaining in one static location the legislation also contains powers to ban ice cream vans from specific streets proposals in the current london local authorities bill would allow only minutes trading per vehicle per street each day there also exists a nationwide code of practice for the use of chimes which limits the volume to db and the duration to four seconds buthese are rarely observed nor enforced chimes must not be played more often than every three minutes near hospitalschools and churches when they are in use also in scotland ice cream vans have been used to sell smuggled cigarettes and in the s glasgow ice cream wars as front organization s to sell illicit drugs the uk ice cream van industry has historically been a cash only industry however in keeping with public retail trends markes ices in kent claim it was the firsto introduce chip and pin to all their ice cream vans in the united states image jackandjilltruckjpg thumb right jack and jill ice cream truck in kentlands maryland united states apart from ice cream ice cream trucks may also sell snow cone s italian ice or italian ice water ice snack soft drink sodas and candy many trucks carry a sign in the shape of a stop sign that warns other drivers of children crossing the streeto buy food or ice cream they also play music to attract consumers to their trucks withe advent of social media networking many ice cream truck operators aredefining the traditional business model not satisfied withe traditional approach of cruising for customersome operatorsuch as gourmet ice cream sandwich maker coolhaus are developing followings on social media sites and announcing the location of their trucks novelty ice cream trucks professionally built ice cream trucks that sell prepackaged foods novelty trucks use commercial cold plate freezers that plug in overnight and when unplugged maintain their temperature for at least hours music systems are mechanical such as pianos or more commonly digital devices that have no tape or other moving parts each music box may be able to play one or multiple tunes the opening on the side that driverserve from is commonly referred to as a serving window and usually has a serving counter awnings can be attached to trucks over the serving window safety equipment usually comes in the form of an electric or vacuum swing out sign that may resemble a stop sign or a triangular shape as well as vinylettering or decals that advise others to use caution good humor is one of the most commoname brand ice cream trucks in america soft ice cream trucks a soft ice cream truck sellsoft serve ice cream instead of pre packaged novelties alone these trucks are not seen as often in the united states presumably because of thextra costs associated with building such a truck these trucks vary in their construction and how they power the machines on board power sources include an onboard generator an inverter system or power can be supplied from the vehicle s engine file london ice cream van at event with pearly king and queenjpg ice cream van at an event in the united kingdom image ice cream van interiorjpg the interior of an ice cream van with its enormous freezer image frosty treats vanjpg an chevrolet van used as an ice cream truck in metropolitan louisville kentucky louisville united states image conequeentruck rainbowjpg cone queen truck from brisbane australia file ice cream van at heath village fete derbyshirejpg a ford transit based ice cream van in the united kingdom file ice cream van helsinki helsingfors jpg finnish ice cream van ford transit in helsinki finland file ice cream vans for hire kent londonjpg ice cream vans in the united kingdom file ice cream van hire in london and kentjpg ice cream vans in the united kingdom file coolhaus truck with natashand freyajpg coolhaus gourmet ice cream truck in the united statesee also doner kebab good humor ice cream cart food truck refrigerator truck externalinks category ice cream van category vans category types of restaurants category street culture category food trucks category ice cream vans","main_words":["image","vintage","ice_cream","thumb","vintage","ice_cream","truck","harper","woods","michigan","united_states","ice_cream","van","british_english","british","ice_cream","truck","american_english","american","commercial","vehicle","serves","mobile","retail","outlet","ice_cream","usually","summer","ice_cream","van","often_seen","parked","public","events","near","park","beach","areas","people","congregate","ice_cream","vans","often","travel","near","children","play","outside","school","residential","areas","locations","usually","stop","briefly","moving","next","street","image","hollywood","cone","ice_cream","truck","jpg","lefthumb","hollywood","cone","soft","ice_cream","truck","torontontario","canada","ice_cream","vans","often","decorated","carry","images","ice_cream","cartoon","character","may","painted","serve","commercial","purpose","stop","buy","one","serious","one","kid","serving","warning","passing","motorists","children","may","run","road","athe","sight","van","appear","without","warning","behind","along","sides","large","window","acts","serving","often","covered","small","pictures","available","products","witheir","associated","prices","distinctive","feature","ice_cream","vans","often","take","form","famous","recognizable","tune","usually","united_states","usa","softee","softee","jingle","turkey","straw","ears","hang","low","pop","goes","weasel","music","box","dancer","home","range","small","world","tune","opera","village","commonly_known","american","folk","tell","aunt","picnic","japanese","children","song","usually","played","recording","woman","saying","athend","song","ice_cream","trucks","races","australia","new_zealand","united_kingdom","never","song","never","song","whistle","work","crewe","sunshine","vale","royal","teddy","bears","picnic","sheffield","match","day","places","places","us","ice_cream","trucks","play","song","ice_cream","andre","essentially","bass","image","ice_cream","truck","sydney_australia","thumb","right","ford","transit","ice_cream","van","sydney_australia","image","thumb","right","ice_cream","van","brisbane","australia","ice_cream","vans","tend","sell","pre","manufactured","ice","pop","soft","serve","ice_cream","machine","served","cone","often","chocolate","britain","sugary","syrup","flavoured","example","soft","serve","ice_cream","iserved","topped","slight","extra","charge","franchises","chains","rare","within","ice_cream","truck","community","independently","owned","run","exist","locations","ice_cream","van","operators","diversified","fill","gaps","market","economics","market","soft_drinks","using","capacity","storage","sell","cans","bottles","early","ice_cream","vans","carried","simple","ice_cream","time","families","freezer","freezers","became","commonplace","ice_cream","vans","moved","novelty","ice_cream","itemsuch","bars","early","vans","used","relatively","primitive","techniques","ensured","large","blocks","dry","ice","thengine","always","turned","van","sales","chimes","operated","take","offrom","thengine","heard","often","modern","chimes","always","electrically","operated","amplified","asia","file","cambodia","ice","thumb","motorcycle","ice_cream","vending","cambodia","southeast_asia","n","countries_including","thailand","cambodia","ice_cream","often","sold","freezer","tunes","played","range","theme","titanic","virginia","company","film","disney","file","righthumb_px","mobile","softee","ice_cream","van","sha","tsui","ferry","pier","hong_kong","hong_kong","ice_cream","vans","operated","mobile","softee","serve","soft","ice_creams","united_kingdom","vans","play","blue","danube","attract","customers","hong_kongovernment","longer","issues","new","mobile","hawker","licenses","company","restricted","vans","hong_kong","usually","one","ice_cream","van","parked","outside","star","ferry","terminal","hong_kong","island","road","sha","tsui","organised","crime","used","money","proceeds","crime","front","drug","dealing","australiand_new_zealand","original","company","commenced","operations","sydney_australia","october","vans","instant","hit","withe","australian","public","soon","appeared","capital","cities","larger","towns","approximately","uk","built","vans","imported","australia","thearly","precious","much","loved","original","vans","survived","today","hervey","bay","queensland","continuously","operating","ice_cream","bob","staff","commenced","working","original","whippy","company","driver","later","supervisor","family","provided","historical","information","stories","photos","british","author","steve","book","whippy","story","published","family","dedicated","preserving","vintage","whippy","vans","continue","operate","small","fleet","whippy","vans","presented","vans","feature","original","italian","friend","family","adelaide","south_australia","operate","ice_creams","vans","streets","adelaide","ice_cream","vans","colloquially","known","whippy","vans","popular","near","beaches","parks","major","events","cities","towns","population","buys","ice_creams","standard","cone","waffle","cone","number","businesses","build","custom","ice_cream","group","mobile","van","builders","business","australiand_new_zealand","first","whippy","business","adopted","inew_zealand","whippy","brand","began","taking","shape","worked","towards","creating","household","name","nation","athis","time","whippy","brand","well_established","uk","australiand","met","rapid","success","expansion","inew_zealand","throughouthe","brand_name","business","flourished","lifestyles","kiwis","changed","whippy","continued","remain","national","icon","representing","popular","outdoor","lifestyle","family","values","soft","serve","ice_cream","sold","vans","popular_among","kiwis","much","later","whippy","also","started","fixed","sites","inew_zealand","started","sites","malls","shopping","centres","testhe","response","community","bothe","mobile","services","well","fixed","site","services","great","success","today","around","whippy","franchisees","operating","trucks","trading","southland","region","southland","mobile","services","franchise","also","planned","country","wide","rollout","fixed","sites","previously","whippy","part","milk","products","merged","prior","taylor","freeze","owned","whippy","also","responsible","reorganization","franchising","system","past_years","business","modern","franchise","system","flying","holdings","ltd","whippy","grown","dramatically","brand","products","ensure","remains","much","loved","icon","inew_zealand","home","ice_cream","another","famous","australian","brand","ice_cream","company","well_known","distribution","system","franchises","darwin","melbourne","selling","ice_cream","box","unlike","ice_cream","vans","australia","canada","file","thumb","ice_cream","van","toronto","ice_cream","trucks","first_appeared","toronto","mid","popular","local","tradition","independently","owned","operated","still","numerous","trucks","operated","toronto","vendors","outside","city_hall","center","hospital","row","university","avenue","convention_center","royal","ontario","museum","beaches","village","honest","ed","majority","truck","operators","greek","presently","ice_cream","trucks","road","greater","toronto","area","delivering","side","streets","positions","products","featured","ice_cream","trucks","include","traditional","soft","serve","treats","banana","colourful","novelty","frozen","treats","shipped","us","part","american","ice_cream","truck","culture","ice_cream","distributors","make","ice_cream","fresh","daily","premium","quality","cream","unlike","cheap","versions","found","chain","stores","food_trucks","gained","popularity","recent_years","given","television_series","food_truck","wars","food_network","heyday","long","far","popular","many","street","festival","started","little","variety","common","see","vendors","events","festivals","parks","anywhere","crowd","ice_cream","trucks","changed","appearance","years","painted","white","painted","art","late","artwork","first_appeared","truck","owned","operated","outside","honest","ed","today","artwork","part","tradition","seen","custom","fabricated","unique","ice_cream","trucks","peru","rather","vans","ice_cream","sellers","use","adapted","bicycle_travel","around","land","witheir","product","using","rather","music","player","attract","attention","mark","presence","gon","foot","special","portable","box","carry","nordicountries","nordicountries","light","blue","trucks","provide","door","door","sales","bulk","pre","packed","ice_cream","company","well_known","distribution","system","selling","ice_cream","box","unlike","ice_cream","vans","elsewhere","world","united_kingdom","image","wall","ice_cream","ford","transit","van","parked","england","image","h","jpg_righthumb","ford","transit","based","ice_cream","van","england","mainly","two","types","ice_cream","vans","united_kingdom","hard","van","ice_cream","equipped","freezer","soft","van","whichas","freezer","also","soft","serve","whippy","machine","serving","ice_cream","cone","ice_cream","usually","converted","factory","standard","vans","withe","rear","cut","away","replaced","fibre","glass","body","reduce","weight","climate","united_kingdom","british","climate","running","ice_cream","van","difficult","outside","summer","also","unpredictable","business","summer","climate","massive","days","weather","returned","character","sales","drop","dramatically","need","take_advantage","rare","short_lived","opportunities","result","fierce","rivalry","ice_cream","vans","areas","withe","main","disputes","entitled","sell","ice_cream","particular","patch","also","led","ice_cream","van","vendors","diversity","business","selling","productsuch","french","fried","potatoes","chips","burgers","hot_dog","vehicles","times","year","number","local","authority","areas","particularly","london_boroughs","existing","street","regulations","prohibit","ice_cream","vans","remaining","one","static","location","legislation","also","contains","powers","ban","ice_cream","vans","specific","streets","proposals","current","london","local_authorities","bill","would","allow","minutes","trading","per","vehicle","per","street","day","also","exists","nationwide","code","practice","use","chimes","limits","volume","duration","four","seconds","buthese","rarely","observed","enforced","chimes","must","played","often","every","three","minutes","near","churches","use","also","scotland","ice_cream","vans","used","sell","cigarettes","glasgow","ice_cream","wars","front","organization","sell","illicit","drugs","uk","ice_cream","van","industry","historically","cash","industry","however","keeping","public","retail","trends","kent","claim","firsto","introduce","chip","pin","ice_cream","vans","united_states","image","thumb","right","jack","jill","ice_cream","truck","maryland","united_states","apart","ice_cream","ice_cream","trucks","may_also","sell","snow","cone","italian","ice","italian","ice","water","ice","snack","soft_drink","candy","many","trucks","carry","sign","shape","stop","sign","drivers","children","crossing","streeto","buy","food","ice_cream","also","play","music","attract","consumers","trucks","withe_advent","social_media","networking","many","ice_cream","truck","operators","traditional","business_model","satisfied","withe","traditional","approach","cruising","gourmet","ice_cream","sandwich","maker","coolhaus","developing","social_media","sites","announcing","location","trucks","novelty","ice_cream","trucks","professionally","built","ice_cream","trucks","sell","foods","novelty","trucks","use","commercial","cold","plate","freezers","plug","overnight","maintain","temperature","least","hours","music","systems","mechanical","commonly","digital","devices","moving","parts","music","box","may","able","play","one","multiple","tunes","opening","side","commonly_referred","serving","window","usually","serving","counter","attached","trucks","serving","window","safety","equipment","usually","comes","form","electric","vacuum","swing","sign","may","resemble","stop","sign","triangular","shape","well","advise","others","use","good","humor","one","brand","ice_cream","trucks","america","soft","ice_cream","trucks","soft","ice_cream","truck","serve","ice_cream","instead","pre","packaged","alone","trucks","seen","often","united_states","presumably","costs","associated","building","truck","trucks","vary","construction","power","machines","board","power","sources","include","onboard","generator","system","power","supplied","vehicle","engine","file","london","ice_cream","van","event","king","ice_cream","van","event","united_kingdom","image","ice_cream","van","interiorjpg","interior","ice_cream","van","enormous","freezer","image","frosty","treats","van","used","ice_cream","truck","metropolitan","louisville_kentucky","louisville","united_states","image","cone","queen","truck","brisbane","australia","file","ice_cream","van","heath","village","ford","transit","based","ice_cream","van","united_kingdom","file","ice_cream","van","helsinki","jpg","finnish","ice_cream","van","ford","transit","helsinki","finland","file","ice_cream","vans","hire","kent","ice_cream","vans","united_kingdom","file","ice_cream","van","hire","london","ice_cream","vans","united_kingdom","file","coolhaus","truck","coolhaus","gourmet","ice_cream","truck","united_statesee","also","doner","kebab","good","humor","ice_cream","cart","food_truck","refrigerator","truck","externalinks_category","ice_cream","van","category","vans","category_types","restaurants_category","street","culture_category","food_trucks","category","ice_cream","vans"],"clean_bigrams":[["image","vintage"],["vintage","ice"],["ice","cream"],["thumb","vintage"],["vintage","ice"],["ice","cream"],["cream","truck"],["harper","woods"],["woods","michigan"],["michigan","united"],["united","states"],["ice","cream"],["cream","van"],["van","british"],["british","english"],["english","british"],["ice","cream"],["cream","truck"],["truck","american"],["american","english"],["english","american"],["commercial","vehicle"],["mobile","retail"],["retail","outlet"],["ice","cream"],["cream","usually"],["summer","ice"],["ice","cream"],["cream","van"],["often","seen"],["seen","parked"],["public","events"],["near","park"],["people","congregate"],["congregate","ice"],["ice","cream"],["cream","vans"],["vans","often"],["often","travel"],["travel","near"],["children","play"],["play","outside"],["outside","school"],["residential","areas"],["usually","stop"],["stop","briefly"],["next","street"],["street","image"],["image","hollywood"],["hollywood","cone"],["cone","ice"],["ice","cream"],["cream","truck"],["truck","jpg"],["jpg","lefthumb"],["lefthumb","hollywood"],["hollywood","cone"],["cone","soft"],["soft","ice"],["ice","cream"],["cream","truck"],["torontontario","canada"],["canada","ice"],["ice","cream"],["cream","vans"],["vans","often"],["carry","images"],["ice","cream"],["cartoon","character"],["commercial","purpose"],["purpose","stop"],["buy","one"],["serious","one"],["kid","serving"],["passing","motorists"],["children","may"],["may","run"],["road","athe"],["athe","sight"],["appear","without"],["without","warning"],["window","acts"],["often","covered"],["small","pictures"],["available","products"],["products","witheir"],["witheir","associated"],["associated","prices"],["distinctive","feature"],["ice","cream"],["cream","vans"],["vans","often"],["recognizable","tune"],["tune","usually"],["united","states"],["states","usa"],["softee","jingle"],["jingle","turkey"],["ears","hang"],["hang","low"],["low","pop"],["pop","goes"],["music","box"],["box","dancer"],["dancer","home"],["small","world"],["commonly","known"],["american","folk"],["tell","aunt"],["japanese","children"],["children","song"],["song","usually"],["usually","played"],["woman","saying"],["song","ice"],["ice","cream"],["cream","trucks"],["australia","new"],["new","zealand"],["united","kingdom"],["never","song"],["never","song"],["song","whistle"],["vale","royal"],["royal","teddy"],["teddy","bears"],["bears","picnic"],["us","ice"],["ice","cream"],["cream","trucks"],["trucks","play"],["song","ice"],["ice","cream"],["bass","image"],["image","ice"],["ice","cream"],["cream","truck"],["truck","sydney"],["sydney","australia"],["thumb","right"],["right","ford"],["ford","transit"],["transit","ice"],["ice","cream"],["cream","van"],["sydney","australia"],["australia","image"],["thumb","right"],["right","ice"],["ice","cream"],["cream","van"],["brisbane","australia"],["ice","cream"],["cream","vans"],["vans","tend"],["pre","manufactured"],["manufactured","ice"],["ice","pop"],["soft","serve"],["serve","ice"],["ice","cream"],["machine","served"],["sugary","syrup"],["syrup","flavoured"],["soft","serve"],["serve","ice"],["ice","cream"],["cream","iserved"],["iserved","topped"],["slight","extra"],["extra","charge"],["rare","within"],["ice","cream"],["cream","truck"],["truck","community"],["independently","owned"],["owned","run"],["locations","ice"],["ice","cream"],["cream","van"],["van","operators"],["fill","gaps"],["market","economics"],["economics","market"],["soft","drinks"],["drinks","using"],["bottles","early"],["early","ice"],["ice","cream"],["cream","vans"],["vans","carried"],["carried","simple"],["simple","ice"],["ice","cream"],["freezers","became"],["commonplace","ice"],["ice","cream"],["cream","vans"],["vans","moved"],["novelty","ice"],["ice","cream"],["cream","itemsuch"],["early","vans"],["vans","used"],["used","relatively"],["relatively","primitive"],["primitive","techniques"],["large","blocks"],["dry","ice"],["always","turned"],["take","offrom"],["offrom","thengine"],["often","modern"],["modern","chimes"],["always","electrically"],["electrically","operated"],["asia","file"],["file","cambodia"],["cambodia","ice"],["thumb","motorcycle"],["ice","cream"],["cream","vending"],["southeast","asia"],["asia","n"],["n","countries"],["countries","including"],["including","thailand"],["thailand","cambodia"],["cambodia","ice"],["ice","cream"],["often","sold"],["tunes","played"],["played","range"],["virginia","company"],["film","disney"],["righthumb","px"],["px","mobile"],["mobile","softee"],["softee","ice"],["ice","cream"],["cream","van"],["sha","tsui"],["tsui","ferry"],["ferry","pier"],["hong","kong"],["hong","kong"],["kong","ice"],["ice","cream"],["cream","vans"],["vans","operated"],["mobile","softee"],["softee","serve"],["serve","soft"],["soft","ice"],["ice","creams"],["united","kingdom"],["vans","play"],["blue","danube"],["attract","customers"],["hong","kongovernment"],["longer","issues"],["issues","new"],["new","mobile"],["mobile","hawker"],["hawker","licenses"],["hong","kong"],["usually","one"],["one","ice"],["ice","cream"],["cream","van"],["van","parked"],["parked","outside"],["star","ferry"],["ferry","terminal"],["hong","kong"],["kong","island"],["sha","tsui"],["organised","crime"],["drug","dealing"],["australiand","new"],["new","zealand"],["company","commenced"],["commenced","operations"],["sydney","australia"],["instant","hit"],["hit","withe"],["withe","australian"],["australian","public"],["soon","appeared"],["capital","cities"],["larger","towns"],["towns","approximately"],["approximately","uk"],["uk","built"],["much","loved"],["loved","original"],["original","vans"],["survived","today"],["hervey","bay"],["bay","queensland"],["continuously","operating"],["operating","ice"],["ice","cream"],["bob","staff"],["staff","commenced"],["commenced","working"],["whippy","company"],["family","provided"],["provided","historical"],["historical","information"],["information","stories"],["british","author"],["author","steve"],["whippy","story"],["story","published"],["whippy","vans"],["continue","operate"],["small","fleet"],["whippy","vans"],["presented","vans"],["vans","feature"],["original","italian"],["friend","family"],["adelaide","south"],["south","australia"],["operate","ice"],["ice","creams"],["creams","vans"],["adelaide","ice"],["ice","cream"],["cream","vans"],["vans","colloquially"],["colloquially","known"],["whippy","vans"],["popular","near"],["near","beaches"],["beaches","parks"],["major","events"],["population","buys"],["ice","creams"],["standard","cone"],["waffle","cone"],["build","custom"],["custom","ice"],["ice","cream"],["group","mobile"],["mobile","van"],["van","builders"],["australiand","new"],["new","zealand"],["whippy","business"],["adopted","inew"],["inew","zealand"],["whippy","brand"],["brand","began"],["began","taking"],["taking","shape"],["worked","towards"],["towards","creating"],["household","name"],["nation","athis"],["athis","time"],["whippy","brand"],["well","established"],["australiand","met"],["met","rapid"],["rapid","success"],["expansion","inew"],["inew","zealand"],["zealand","throughouthe"],["brand","name"],["business","flourished"],["kiwis","changed"],["whippy","continued"],["national","icon"],["icon","representing"],["popular","outdoor"],["outdoor","lifestyle"],["family","values"],["soft","serve"],["serve","ice"],["ice","cream"],["cream","sold"],["popular","among"],["much","later"],["whippy","also"],["also","started"],["fixed","sites"],["sites","inew"],["inew","zealand"],["shopping","centres"],["testhe","response"],["community","bothe"],["bothe","mobile"],["mobile","services"],["fixed","site"],["site","services"],["great","success"],["success","today"],["whippy","franchisees"],["franchisees","operating"],["operating","trucks"],["southland","region"],["region","southland"],["mobile","services"],["services","franchise"],["also","planned"],["country","wide"],["wide","rollout"],["fixed","sites"],["sites","previously"],["milk","products"],["taylor","freeze"],["freeze","owned"],["whippy","also"],["also","responsible"],["franchising","system"],["past","years"],["modern","franchise"],["franchise","system"],["current","owners"],["owners","flying"],["holdings","ltd"],["grown","dramatically"],["brand","products"],["products","ensure"],["much","loved"],["loved","icon"],["icon","inew"],["inew","zealand"],["zealand","home"],["home","ice"],["ice","cream"],["another","famous"],["famous","australian"],["australian","brand"],["brand","ice"],["ice","cream"],["well","known"],["distribution","system"],["melbourne","selling"],["selling","ice"],["ice","cream"],["box","unlike"],["unlike","ice"],["ice","cream"],["cream","vans"],["canada","file"],["thumb","ice"],["ice","cream"],["cream","van"],["toronto","ice"],["ice","cream"],["cream","trucks"],["trucks","first"],["first","appeared"],["independently","owned"],["still","numerous"],["numerous","trucks"],["trucks","operated"],["toronto","vendors"],["outside","city"],["city","hall"],["center","hospital"],["hospital","row"],["row","university"],["university","avenue"],["avenue","convention"],["convention","center"],["royal","ontario"],["ontario","museum"],["honest","ed"],["truck","operators"],["ice","cream"],["cream","trucks"],["greater","toronto"],["toronto","area"],["area","delivering"],["side","streets"],["positions","products"],["products","featured"],["ice","cream"],["cream","trucks"],["trucks","include"],["include","traditional"],["traditional","soft"],["soft","serve"],["serve","treats"],["novelty","frozen"],["frozen","treats"],["american","ice"],["ice","cream"],["cream","truck"],["truck","culture"],["culture","ice"],["ice","cream"],["cream","distributors"],["distributors","make"],["make","ice"],["ice","cream"],["cream","fresh"],["fresh","daily"],["premium","quality"],["quality","cream"],["cream","unlike"],["unlike","cheap"],["cheap","versions"],["versions","found"],["chain","stores"],["food","trucks"],["recent","years"],["years","given"],["television","series"],["series","food"],["food","truck"],["truck","wars"],["food","network"],["many","street"],["street","festival"],["festival","started"],["little","variety"],["see","vendors"],["crowd","ice"],["ice","cream"],["cream","trucks"],["changed","appearance"],["painted","white"],["painted","art"],["artwork","first"],["first","appeared"],["truck","owned"],["operated","outside"],["outside","honest"],["honest","ed"],["custom","fabricated"],["ice","cream"],["cream","trucks"],["peru","rather"],["ice","cream"],["cream","sellers"],["sellers","use"],["adapted","bicycle"],["travel","around"],["land","witheir"],["witheir","product"],["product","using"],["music","player"],["attract","attention"],["gon","foot"],["special","portable"],["portable","box"],["light","blue"],["trucks","provide"],["provide","door"],["door","sales"],["bulk","pre"],["pre","packed"],["packed","ice"],["ice","cream"],["well","known"],["distribution","system"],["system","selling"],["selling","ice"],["ice","cream"],["box","unlike"],["unlike","ice"],["ice","cream"],["cream","vans"],["vans","elsewhere"],["united","kingdom"],["kingdom","image"],["image","w"],["jpg","righthumb"],["ice","cream"],["cream","ford"],["ford","transit"],["transit","van"],["van","parked"],["england","image"],["image","h"],["jpg","righthumb"],["ford","transit"],["transit","based"],["based","ice"],["ice","cream"],["cream","van"],["mainly","two"],["two","types"],["ice","cream"],["cream","vans"],["united","kingdom"],["hard","van"],["ice","cream"],["soft","van"],["van","whichas"],["soft","serve"],["serve","whippy"],["whippy","machine"],["serving","ice"],["ice","cream"],["cream","cone"],["cone","ice"],["ice","cream"],["cream","usually"],["usually","converted"],["factory","standard"],["standard","vans"],["vans","withe"],["withe","rear"],["rear","cut"],["cut","away"],["fibre","glass"],["glass","body"],["united","kingdom"],["kingdom","british"],["british","climate"],["climate","running"],["ice","cream"],["cream","van"],["difficult","outside"],["outside","summer"],["unpredictable","business"],["character","sales"],["sales","drop"],["take","advantage"],["short","lived"],["lived","opportunities"],["fierce","rivalry"],["ice","cream"],["cream","vans"],["areas","withe"],["withe","main"],["main","disputes"],["sell","ice"],["ice","cream"],["particular","patch"],["also","led"],["ice","cream"],["cream","van"],["van","vendors"],["vendors","diversity"],["diversity","business"],["french","fried"],["fried","potatoes"],["potatoes","chips"],["chips","burgers"],["hot","dog"],["local","authority"],["authority","areas"],["areas","particularly"],["london","boroughs"],["existing","street"],["regulations","prohibit"],["prohibit","ice"],["ice","cream"],["cream","vans"],["one","static"],["static","location"],["legislation","also"],["also","contains"],["contains","powers"],["ban","ice"],["ice","cream"],["cream","vans"],["specific","streets"],["streets","proposals"],["current","london"],["london","local"],["local","authorities"],["authorities","bill"],["bill","would"],["would","allow"],["minutes","trading"],["trading","per"],["per","vehicle"],["vehicle","per"],["per","street"],["also","exists"],["nationwide","code"],["four","seconds"],["seconds","buthese"],["rarely","observed"],["enforced","chimes"],["chimes","must"],["every","three"],["three","minutes"],["minutes","near"],["use","also"],["scotland","ice"],["ice","cream"],["cream","vans"],["vans","used"],["glasgow","ice"],["ice","cream"],["cream","wars"],["front","organization"],["sell","illicit"],["illicit","drugs"],["uk","ice"],["ice","cream"],["cream","van"],["van","industry"],["industry","however"],["public","retail"],["retail","trends"],["kent","claim"],["firsto","introduce"],["introduce","chip"],["ice","cream"],["cream","vans"],["united","states"],["states","image"],["thumb","right"],["right","jack"],["jill","ice"],["ice","cream"],["cream","truck"],["maryland","united"],["united","states"],["states","apart"],["ice","cream"],["cream","ice"],["ice","cream"],["cream","trucks"],["trucks","may"],["may","also"],["also","sell"],["sell","snow"],["snow","cone"],["italian","ice"],["italian","ice"],["ice","water"],["water","ice"],["ice","snack"],["snack","soft"],["soft","drink"],["candy","many"],["many","trucks"],["trucks","carry"],["stop","sign"],["children","crossing"],["streeto","buy"],["buy","food"],["ice","cream"],["also","play"],["play","music"],["attract","consumers"],["trucks","withe"],["withe","advent"],["social","media"],["media","networking"],["networking","many"],["many","ice"],["ice","cream"],["cream","truck"],["truck","operators"],["traditional","business"],["business","model"],["satisfied","withe"],["withe","traditional"],["traditional","approach"],["gourmet","ice"],["ice","cream"],["cream","sandwich"],["sandwich","maker"],["maker","coolhaus"],["social","media"],["media","sites"],["trucks","novelty"],["novelty","ice"],["ice","cream"],["cream","trucks"],["trucks","professionally"],["professionally","built"],["built","ice"],["ice","cream"],["cream","trucks"],["foods","novelty"],["novelty","trucks"],["trucks","use"],["use","commercial"],["commercial","cold"],["cold","plate"],["plate","freezers"],["least","hours"],["hours","music"],["music","systems"],["commonly","digital"],["digital","devices"],["moving","parts"],["music","box"],["box","may"],["play","one"],["multiple","tunes"],["commonly","referred"],["serving","window"],["serving","counter"],["serving","window"],["window","safety"],["safety","equipment"],["equipment","usually"],["usually","comes"],["vacuum","swing"],["may","resemble"],["stop","sign"],["triangular","shape"],["advise","others"],["good","humor"],["brand","ice"],["ice","cream"],["cream","trucks"],["america","soft"],["soft","ice"],["ice","cream"],["cream","trucks"],["soft","ice"],["ice","cream"],["cream","truck"],["serve","ice"],["ice","cream"],["cream","instead"],["pre","packaged"],["united","states"],["states","presumably"],["costs","associated"],["trucks","vary"],["board","power"],["power","sources"],["sources","include"],["onboard","generator"],["engine","file"],["file","london"],["london","ice"],["ice","cream"],["cream","van"],["ice","cream"],["cream","van"],["united","kingdom"],["kingdom","image"],["image","ice"],["ice","cream"],["cream","van"],["van","interiorjpg"],["ice","cream"],["cream","van"],["enormous","freezer"],["freezer","image"],["image","frosty"],["frosty","treats"],["van","used"],["ice","cream"],["cream","truck"],["metropolitan","louisville"],["louisville","kentucky"],["kentucky","louisville"],["louisville","united"],["united","states"],["states","image"],["cone","queen"],["queen","truck"],["brisbane","australia"],["australia","file"],["file","ice"],["ice","cream"],["cream","van"],["heath","village"],["ford","transit"],["transit","based"],["based","ice"],["ice","cream"],["cream","van"],["united","kingdom"],["kingdom","file"],["file","ice"],["ice","cream"],["cream","van"],["van","helsinki"],["jpg","finnish"],["finnish","ice"],["ice","cream"],["cream","van"],["van","ford"],["ford","transit"],["helsinki","finland"],["finland","file"],["file","ice"],["ice","cream"],["cream","vans"],["hire","kent"],["ice","cream"],["cream","vans"],["united","kingdom"],["kingdom","file"],["file","ice"],["ice","cream"],["cream","van"],["van","hire"],["london","ice"],["ice","cream"],["cream","vans"],["united","kingdom"],["kingdom","file"],["file","coolhaus"],["coolhaus","truck"],["coolhaus","gourmet"],["gourmet","ice"],["ice","cream"],["cream","truck"],["united","statesee"],["statesee","also"],["also","doner"],["doner","kebab"],["kebab","good"],["good","humor"],["humor","ice"],["ice","cream"],["cream","cart"],["cart","food"],["food","truck"],["truck","refrigerator"],["refrigerator","truck"],["truck","externalinks"],["externalinks","category"],["category","ice"],["ice","cream"],["cream","van"],["van","category"],["category","vans"],["vans","category"],["category","types"],["restaurants","category"],["category","street"],["street","culture"],["culture","category"],["category","food"],["food","trucks"],["trucks","category"],["category","ice"],["ice","cream"],["cream","vans"]],"all_collocations":["image vintage","vintage ice","ice cream","thumb vintage","vintage ice","ice cream","cream truck","harper woods","woods michigan","michigan united","united states","ice cream","cream van","van british","british english","english british","ice cream","cream truck","truck american","american english","english american","commercial vehicle","mobile retail","retail outlet","ice cream","cream usually","summer ice","ice cream","cream van","often seen","seen parked","public events","near park","people congregate","congregate ice","ice cream","cream vans","vans often","often travel","travel near","children play","play outside","outside school","residential areas","usually stop","stop briefly","next street","street image","image hollywood","hollywood cone","cone ice","ice cream","cream truck","truck jpg","jpg lefthumb","lefthumb hollywood","hollywood cone","cone soft","soft ice","ice cream","cream truck","torontontario canada","canada ice","ice cream","cream vans","vans often","carry images","ice cream","cartoon character","commercial purpose","purpose stop","buy one","serious one","kid serving","passing motorists","children may","may run","road athe","athe sight","appear without","without warning","window acts","often covered","small pictures","available products","products witheir","witheir associated","associated prices","distinctive feature","ice cream","cream vans","vans often","recognizable tune","tune usually","united states","states usa","softee jingle","jingle turkey","ears hang","hang low","low pop","pop goes","music box","box dancer","dancer home","small world","commonly known","american folk","tell aunt","japanese children","children song","song usually","usually played","woman saying","song ice","ice cream","cream trucks","australia new","new zealand","united kingdom","never song","never song","song whistle","vale royal","royal teddy","teddy bears","bears picnic","us ice","ice cream","cream trucks","trucks play","song ice","ice cream","bass image","image ice","ice cream","cream truck","truck sydney","sydney australia","right ford","ford transit","transit ice","ice cream","cream van","sydney australia","australia image","right ice","ice cream","cream van","brisbane australia","ice cream","cream vans","vans tend","pre manufactured","manufactured ice","ice pop","soft serve","serve ice","ice cream","machine served","sugary syrup","syrup flavoured","soft serve","serve ice","ice cream","cream iserved","iserved topped","slight extra","extra charge","rare within","ice cream","cream truck","truck community","independently owned","owned run","locations ice","ice cream","cream van","van operators","fill gaps","market economics","economics market","soft drinks","drinks using","bottles early","early ice","ice cream","cream vans","vans carried","carried simple","simple ice","ice cream","freezers became","commonplace ice","ice cream","cream vans","vans moved","novelty ice","ice cream","cream itemsuch","early vans","vans used","used relatively","relatively primitive","primitive techniques","large blocks","dry ice","always turned","take offrom","offrom thengine","often modern","modern chimes","always electrically","electrically operated","asia file","file cambodia","cambodia ice","thumb motorcycle","ice cream","cream vending","southeast asia","asia n","n countries","countries including","including thailand","thailand cambodia","cambodia ice","ice cream","often sold","tunes played","played range","virginia company","film disney","righthumb px","px mobile","mobile softee","softee ice","ice cream","cream van","sha tsui","tsui ferry","ferry pier","hong kong","hong kong","kong ice","ice cream","cream vans","vans operated","mobile softee","softee serve","serve soft","soft ice","ice creams","united kingdom","vans play","blue danube","attract customers","hong kongovernment","longer issues","issues new","new mobile","mobile hawker","hawker licenses","hong kong","usually one","one ice","ice cream","cream van","van parked","parked outside","star ferry","ferry terminal","hong kong","kong island","sha tsui","organised crime","drug dealing","australiand new","new zealand","company commenced","commenced operations","sydney australia","instant hit","hit withe","withe australian","australian public","soon appeared","capital cities","larger towns","towns approximately","approximately uk","uk built","much loved","loved original","original vans","survived today","hervey bay","bay queensland","continuously operating","operating ice","ice cream","bob staff","staff commenced","commenced working","whippy company","family provided","provided historical","historical information","information stories","british author","author steve","whippy story","story published","whippy vans","continue operate","small fleet","whippy vans","presented vans","vans feature","original italian","friend family","adelaide south","south australia","operate ice","ice creams","creams vans","adelaide ice","ice cream","cream vans","vans colloquially","colloquially known","whippy vans","popular near","near beaches","beaches parks","major events","population buys","ice creams","standard cone","waffle cone","build custom","custom ice","ice cream","group mobile","mobile van","van builders","australiand new","new zealand","whippy business","adopted inew","inew zealand","whippy brand","brand began","began taking","taking shape","worked towards","towards creating","household name","nation athis","athis time","whippy brand","well established","australiand met","met rapid","rapid success","expansion inew","inew zealand","zealand throughouthe","brand name","business flourished","kiwis changed","whippy continued","national icon","icon representing","popular outdoor","outdoor lifestyle","family values","soft serve","serve ice","ice cream","cream sold","popular among","much later","whippy also","also started","fixed sites","sites inew","inew zealand","shopping centres","testhe response","community bothe","bothe mobile","mobile services","fixed site","site services","great success","success today","whippy franchisees","franchisees operating","operating trucks","southland region","region southland","mobile services","services franchise","also planned","country wide","wide rollout","fixed sites","sites previously","milk products","taylor freeze","freeze owned","whippy also","also responsible","franchising system","past years","modern franchise","franchise system","current owners","owners flying","holdings ltd","grown dramatically","brand products","products ensure","much loved","loved icon","icon inew","inew zealand","zealand home","home ice","ice cream","another famous","famous australian","australian brand","brand ice","ice cream","well known","distribution system","melbourne selling","selling ice","ice cream","box unlike","unlike ice","ice cream","cream vans","canada file","thumb ice","ice cream","cream van","toronto ice","ice cream","cream trucks","trucks first","first appeared","independently owned","still numerous","numerous trucks","trucks operated","toronto vendors","outside city","city hall","center hospital","hospital row","row university","university avenue","avenue convention","convention center","royal ontario","ontario museum","honest ed","truck operators","ice cream","cream trucks","greater toronto","toronto area","area delivering","side streets","positions products","products featured","ice cream","cream trucks","trucks include","include traditional","traditional soft","soft serve","serve treats","novelty frozen","frozen treats","american ice","ice cream","cream truck","truck culture","culture ice","ice cream","cream distributors","distributors make","make ice","ice cream","cream fresh","fresh daily","premium quality","quality cream","cream unlike","unlike cheap","cheap versions","versions found","chain stores","food trucks","recent years","years given","television series","series food","food truck","truck wars","food network","many street","street festival","festival started","little variety","see vendors","crowd ice","ice cream","cream trucks","changed appearance","painted white","painted art","artwork first","first appeared","truck owned","operated outside","outside honest","honest ed","custom fabricated","ice cream","cream trucks","peru rather","ice cream","cream sellers","sellers use","adapted bicycle","travel around","land witheir","witheir product","product using","music player","attract attention","gon foot","special portable","portable box","light blue","trucks provide","provide door","door sales","bulk pre","pre packed","packed ice","ice cream","well known","distribution system","system selling","selling ice","ice cream","box unlike","unlike ice","ice cream","cream vans","vans elsewhere","united kingdom","kingdom image","image w","jpg righthumb","ice cream","cream ford","ford transit","transit van","van parked","england image","image h","jpg righthumb","ford transit","transit based","based ice","ice cream","cream van","mainly two","two types","ice cream","cream vans","united kingdom","hard van","ice cream","soft van","van whichas","soft serve","serve whippy","whippy machine","serving ice","ice cream","cream cone","cone ice","ice cream","cream usually","usually converted","factory standard","standard vans","vans withe","withe rear","rear cut","cut away","fibre glass","glass body","united kingdom","kingdom british","british climate","climate running","ice cream","cream van","difficult outside","outside summer","unpredictable business","character sales","sales drop","take advantage","short lived","lived opportunities","fierce rivalry","ice cream","cream vans","areas withe","withe main","main disputes","sell ice","ice cream","particular patch","also led","ice cream","cream van","van vendors","vendors diversity","diversity business","french fried","fried potatoes","potatoes chips","chips burgers","hot dog","local authority","authority areas","areas particularly","london boroughs","existing street","regulations prohibit","prohibit ice","ice cream","cream vans","one static","static location","legislation also","also contains","contains powers","ban ice","ice cream","cream vans","specific streets","streets proposals","current london","london local","local authorities","authorities bill","bill would","would allow","minutes trading","trading per","per vehicle","vehicle per","per street","also exists","nationwide code","four seconds","seconds buthese","rarely observed","enforced chimes","chimes must","every three","three minutes","minutes near","use also","scotland ice","ice cream","cream vans","vans used","glasgow ice","ice cream","cream wars","front organization","sell illicit","illicit drugs","uk ice","ice cream","cream van","van industry","industry however","public retail","retail trends","kent claim","firsto introduce","introduce chip","ice cream","cream vans","united states","states image","right jack","jill ice","ice cream","cream truck","maryland united","united states","states apart","ice cream","cream ice","ice cream","cream trucks","trucks may","may also","also sell","sell snow","snow cone","italian ice","italian ice","ice water","water ice","ice snack","snack soft","soft drink","candy many","many trucks","trucks carry","stop sign","children crossing","streeto buy","buy food","ice cream","also play","play music","attract consumers","trucks withe","withe advent","social media","media networking","networking many","many ice","ice cream","cream truck","truck operators","traditional business","business model","satisfied withe","withe traditional","traditional approach","gourmet ice","ice cream","cream sandwich","sandwich maker","maker coolhaus","social media","media sites","trucks novelty","novelty ice","ice cream","cream trucks","trucks professionally","professionally built","built ice","ice cream","cream trucks","foods novelty","novelty trucks","trucks use","use commercial","commercial cold","cold plate","plate freezers","least hours","hours music","music systems","commonly digital","digital devices","moving parts","music box","box may","play one","multiple tunes","commonly referred","serving window","serving counter","serving window","window safety","safety equipment","equipment usually","usually comes","vacuum swing","may resemble","stop sign","triangular shape","advise others","good humor","brand ice","ice cream","cream trucks","america soft","soft ice","ice cream","cream trucks","soft ice","ice cream","cream truck","serve ice","ice cream","cream instead","pre packaged","united states","states presumably","costs associated","trucks vary","board power","power sources","sources include","onboard generator","engine file","file london","london ice","ice cream","cream van","ice cream","cream van","united kingdom","kingdom image","image ice","ice cream","cream van","van interiorjpg","ice cream","cream van","enormous freezer","freezer image","image frosty","frosty treats","van used","ice cream","cream truck","metropolitan louisville","louisville kentucky","kentucky louisville","louisville united","united states","states image","cone queen","queen truck","brisbane australia","australia file","file ice","ice cream","cream van","heath village","ford transit","transit based","based ice","ice cream","cream van","united kingdom","kingdom file","file ice","ice cream","cream van","van helsinki","jpg finnish","finnish ice","ice cream","cream van","van ford","ford transit","helsinki finland","finland file","file ice","ice cream","cream vans","hire kent","ice cream","cream vans","united kingdom","kingdom file","file ice","ice cream","cream van","van hire","london ice","ice cream","cream vans","united kingdom","kingdom file","file coolhaus","coolhaus truck","coolhaus gourmet","gourmet ice","ice cream","cream truck","united statesee","statesee also","also doner","doner kebab","kebab good","good humor","humor ice","ice cream","cream cart","cart food","food truck","truck refrigerator","refrigerator truck","truck externalinks","externalinks category","category ice","ice cream","cream van","van category","category vans","vans category","category types","restaurants category","category street","street culture","culture category","category food","food trucks","trucks category","category ice","ice cream","cream vans"],"new_description":"image vintage ice_cream thumb vintage ice_cream truck harper woods michigan united_states ice_cream van british_english british ice_cream truck american_english american commercial vehicle serves mobile retail outlet ice_cream usually summer ice_cream van often_seen parked public events near park beach areas people congregate ice_cream vans often travel near children play outside school residential areas locations usually stop briefly moving next street image hollywood cone ice_cream truck jpg lefthumb hollywood cone soft ice_cream truck torontontario canada ice_cream vans often decorated carry images ice_cream cartoon character may painted serve commercial purpose stop buy one serious one kid serving warning passing motorists children may run road athe sight van appear without warning behind along sides large window acts serving often covered small pictures available products witheir associated prices distinctive feature ice_cream vans often take form famous recognizable tune usually united_states usa softee softee jingle turkey straw ears hang low pop goes weasel music box dancer home range small world tune opera village commonly_known american folk tell aunt picnic japanese children song usually played recording woman saying athend song ice_cream trucks races australia new_zealand united_kingdom never song never song whistle work crewe sunshine vale royal teddy bears picnic sheffield match day places places us ice_cream trucks play song ice_cream andre essentially bass image ice_cream truck sydney_australia thumb right ford transit ice_cream van sydney_australia image thumb right ice_cream van brisbane australia ice_cream vans tend sell pre manufactured ice pop soft serve ice_cream machine served cone often chocolate britain sugary syrup flavoured example soft serve ice_cream iserved topped slight extra charge franchises chains rare within ice_cream truck community independently owned run exist locations ice_cream van operators diversified fill gaps market economics market soft_drinks using capacity storage sell cans bottles early ice_cream vans carried simple ice_cream time families freezer freezers became commonplace ice_cream vans moved novelty ice_cream itemsuch bars early vans used relatively primitive techniques ensured large blocks dry ice thengine always turned van sales chimes operated take offrom thengine heard often modern chimes always electrically operated amplified asia file cambodia ice thumb motorcycle ice_cream vending cambodia southeast_asia n countries_including thailand cambodia ice_cream often sold freezer tunes played range theme titanic virginia company film disney file righthumb_px mobile softee ice_cream van sha tsui ferry pier hong_kong hong_kong ice_cream vans operated mobile softee serve soft ice_creams united_kingdom vans play blue danube attract customers hong_kongovernment longer issues new mobile hawker licenses company restricted vans hong_kong usually one ice_cream van parked outside star ferry terminal hong_kong island road sha tsui organised crime used money proceeds crime front drug dealing australiand_new_zealand original company commenced operations sydney_australia october vans instant hit withe australian public soon appeared capital cities larger towns approximately uk built vans imported australia thearly precious much loved original vans survived today hervey bay queensland continuously operating ice_cream bob staff commenced working original whippy company driver later supervisor family provided historical information stories photos british author steve book whippy story published family dedicated preserving vintage whippy vans continue operate small fleet whippy vans presented vans feature original italian friend family adelaide south_australia operate ice_creams vans streets adelaide ice_cream vans colloquially known whippy vans popular near beaches parks major events cities towns population buys ice_creams standard cone waffle cone number businesses build custom ice_cream group mobile van builders business australiand_new_zealand first whippy business adopted inew_zealand whippy brand began taking shape worked towards creating household name nation athis time whippy brand well_established uk australiand met rapid success expansion inew_zealand throughouthe brand_name business flourished lifestyles kiwis changed whippy continued remain national icon representing popular outdoor lifestyle family values soft serve ice_cream sold vans popular_among kiwis much later whippy also started fixed sites inew_zealand started sites malls shopping centres testhe response community bothe mobile services well fixed site services great success today around whippy franchisees operating trucks trading southland region southland mobile services franchise also planned country wide rollout fixed sites previously whippy part milk products merged prior taylor freeze owned whippy also responsible reorganization franchising system past_years business modern franchise system current_owners flying holdings ltd whippy grown dramatically brand products ensure remains much loved icon inew_zealand home ice_cream another famous australian brand ice_cream company well_known distribution system franchises darwin melbourne selling ice_cream box unlike ice_cream vans australia canada file thumb ice_cream van toronto ice_cream trucks first_appeared toronto mid popular local tradition independently owned operated still numerous trucks operated toronto vendors outside city_hall center hospital row university avenue convention_center royal ontario museum beaches village honest ed majority truck operators greek presently ice_cream trucks road greater toronto area delivering side streets positions products featured ice_cream trucks include traditional soft serve treats banana colourful novelty frozen treats shipped us part american ice_cream truck culture ice_cream distributors make ice_cream fresh daily premium quality cream unlike cheap versions found chain stores food_trucks gained popularity recent_years given television_series food_truck wars food_network heyday long far popular many street festival started little variety common see vendors events festivals parks anywhere crowd ice_cream trucks changed appearance years painted white painted art late artwork first_appeared truck owned operated outside honest ed today artwork part tradition seen custom fabricated unique ice_cream trucks peru rather vans ice_cream sellers use adapted bicycle_travel around land witheir product using rather music player attract attention mark presence gon foot special portable box carry nordicountries nordicountries light blue trucks provide door door sales bulk pre packed ice_cream company well_known distribution system selling ice_cream box unlike ice_cream vans elsewhere world united_kingdom image w_jpg_righthumb wall ice_cream ford transit van parked england image h jpg_righthumb ford transit based ice_cream van england mainly two types ice_cream vans united_kingdom hard van ice_cream equipped freezer soft van whichas freezer also soft serve whippy machine serving ice_cream cone ice_cream usually converted factory standard vans withe rear cut away replaced fibre glass body reduce weight climate united_kingdom british climate running ice_cream van difficult outside summer also unpredictable business summer climate massive days weather returned character sales drop dramatically need take_advantage rare short_lived opportunities result fierce rivalry ice_cream vans areas withe main disputes entitled sell ice_cream particular patch also led ice_cream van vendors diversity business selling productsuch french fried potatoes chips burgers hot_dog vehicles times year number local authority areas particularly london_boroughs existing street regulations prohibit ice_cream vans remaining one static location legislation also contains powers ban ice_cream vans specific streets proposals current london local_authorities bill would allow minutes trading per vehicle per street day also exists nationwide code practice use chimes limits volume duration four seconds buthese rarely observed enforced chimes must played often every three minutes near churches use also scotland ice_cream vans used sell cigarettes glasgow ice_cream wars front organization sell illicit drugs uk ice_cream van industry historically cash industry however keeping public retail trends kent claim firsto introduce chip pin ice_cream vans united_states image thumb right jack jill ice_cream truck maryland united_states apart ice_cream ice_cream trucks may_also sell snow cone italian ice italian ice water ice snack soft_drink candy many trucks carry sign shape stop sign drivers children crossing streeto buy food ice_cream also play music attract consumers trucks withe_advent social_media networking many ice_cream truck operators traditional business_model satisfied withe traditional approach cruising gourmet ice_cream sandwich maker coolhaus developing social_media sites announcing location trucks novelty ice_cream trucks professionally built ice_cream trucks sell foods novelty trucks use commercial cold plate freezers plug overnight maintain temperature least hours music systems mechanical commonly digital devices moving parts music box may able play one multiple tunes opening side commonly_referred serving window usually serving counter attached trucks serving window safety equipment usually comes form electric vacuum swing sign may resemble stop sign triangular shape well advise others use good humor one brand ice_cream trucks america soft ice_cream trucks soft ice_cream truck serve ice_cream instead pre packaged alone trucks seen often united_states presumably costs associated building truck trucks vary construction power machines board power sources include onboard generator system power supplied vehicle engine file london ice_cream van event king ice_cream van event united_kingdom image ice_cream van interiorjpg interior ice_cream van enormous freezer image frosty treats van used ice_cream truck metropolitan louisville_kentucky louisville united_states image cone queen truck brisbane australia file ice_cream van heath village ford transit based ice_cream van united_kingdom file ice_cream van helsinki jpg finnish ice_cream van ford transit helsinki finland file ice_cream vans hire kent ice_cream vans united_kingdom file ice_cream van hire london ice_cream vans united_kingdom file coolhaus truck coolhaus gourmet ice_cream truck united_statesee also doner kebab good humor ice_cream cart food_truck refrigerator truck externalinks_category ice_cream van category vans category_types restaurants_category street culture_category food_trucks category ice_cream vans"},{"title":"Icebar Orlando","description":"icebar orlando stylized as icebar orlando is an ice bar located international drive in orlando floridat over the company claims that it is the world s largest permanent ice bar its decor furniture and glassware constructed entirely of ice and the bar also has various ice sculpture ice carving s icebar orlando also runs a bar and nightclub named the fire lounge which is located nexto the ice bar and is maintained at a standard room temperature file vodkat icebar orlandojpg thumb upright vodka bottles in an ice sculpture at icebar orlando alt vodka in an ice sculpture at icebar orlando icebar orlando is composed of over ton s of carved ice and is maintained at a temperature of its interior including the furniture such as couches tables and chairs wallsculptures and various decor is entirely constructed out of ice it also has a fireplace sculpted in the appearance of old man winter which is fired with lowatt electric flames icebar orlando was first sculpted by aaron costic an ohio based artisthe facility was later expanded in by ice sculptor david berman in the projected monthly electric bill for icebar orlando was bioclimatic filters are used to reducelectricity costs people of all ages are allowed to visit icebar orlando and are provided with an insulated thermal cape and gloves to endure the coldness and keepatrons comfortable an admission fee is charged adults are provided with an alcoholic drink and those under the legal drinking age of are provided with a non alcoholic drinks are served in glasses made out of ice by servers wearing fur hats and snow suits for safety reasons visitors are allowed to remainside the ice bar for only minutes and the bar also serves warm drinkstaff is on a rotational schedule whereby they are in the facility for minutes and then outside of it for minutesome staff membersuch as bartenders bundle up in severalayers of clothing to keep warm events are hosted at icebar orlando such as annual new year s eve masquerade ball it has been described as a popular meeting place in central florida the fire lounge the fire lounge stylized as fire lounge is a bar and nightclub that is also located at icebar orlando and is maintained at a normal room temperature visitors to icebar orlando are first led through the fire lounge where they are provided with gloves and a thermal cape in mass media icebar orlando has been featured in extreme barhopping on the travel channel america s best cook on the food network andrinking madeasy with comedian zane lamprey on hdnet externalinks category bars category buildings and structures in orlando florida category drinking establishments category nightclubs in the united states","main_words":["orlando","icebar_orlando","ice","bar_located","international","drive","orlando","company","claims","world","largest","permanent","ice","bar","decor","furniture","constructed","entirely","ice","bar_also","various","ice","sculpture","ice","carving","icebar_orlando","also","runs","bar","nightclub","named","fire","lounge","located","nexto","ice","bar","maintained","standard","room","temperature","file","thumb","upright","vodka","bottles","ice","sculpture","icebar_orlando","alt","vodka","ice","sculpture","icebar_orlando","icebar_orlando","composed","ton","carved","ice","maintained","temperature","interior","including","furniture","tables","chairs","various","decor","entirely","constructed","ice","also","fireplace","appearance","old","man","winter","fired","electric","icebar_orlando","first","aaron","ohio","based","facility","later","expanded","ice","sculptor","david","projected","monthly","electric","bill","icebar_orlando","used","costs","people","ages","allowed","visit","icebar_orlando","provided","thermal","cape","gloves","endure","comfortable","admission","fee","charged","adults","provided","alcoholic","drink","legal","drinking_age","provided","non_alcoholic","drinks","served","glasses","made","ice","servers","wearing","fur","hats","snow","suits","safety","reasons","visitors","allowed","ice","bar","minutes","warm","schedule","whereby","facility","minutes","outside","staff","bartenders","clothing","keep","warm","events","hosted","icebar_orlando","annual","new","year","eve","masquerade","ball","described","popular","meeting_place","central","florida","fire","lounge","fire","lounge","fire","lounge","bar","nightclub","also","located","icebar_orlando","maintained","normal","room","temperature","visitors","icebar_orlando","first","led","fire","lounge","provided","gloves","thermal","cape","mass","media","icebar_orlando","featured","extreme","travel_channel","america","best","cook","food_network","andrinking","madeasy","comedian","externalinks_category","bars","category_buildings","structures","category_nightclubs","united_states"],"clean_bigrams":[["icebar","orlando"],["orlando","icebar"],["icebar","orlando"],["ice","bar"],["bar","located"],["located","international"],["international","drive"],["company","claims"],["largest","permanent"],["permanent","ice"],["ice","bar"],["decor","furniture"],["constructed","entirely"],["ice","bar"],["bar","also"],["various","ice"],["ice","sculpture"],["sculpture","ice"],["ice","carving"],["icebar","orlando"],["orlando","also"],["also","runs"],["nightclub","named"],["fire","lounge"],["located","nexto"],["ice","bar"],["standard","room"],["room","temperature"],["temperature","file"],["thumb","upright"],["upright","vodka"],["vodka","bottles"],["ice","sculpture"],["icebar","orlando"],["orlando","alt"],["alt","vodka"],["ice","sculpture"],["icebar","orlando"],["orlando","icebar"],["icebar","orlando"],["carved","ice"],["interior","including"],["various","decor"],["entirely","constructed"],["old","man"],["man","winter"],["icebar","orlando"],["ohio","based"],["later","expanded"],["ice","sculptor"],["sculptor","david"],["projected","monthly"],["monthly","electric"],["electric","bill"],["icebar","orlando"],["costs","people"],["visit","icebar"],["icebar","orlando"],["thermal","cape"],["admission","fee"],["charged","adults"],["alcoholic","drink"],["legal","drinking"],["drinking","age"],["non","alcoholic"],["alcoholic","drinks"],["glasses","made"],["servers","wearing"],["wearing","fur"],["fur","hats"],["snow","suits"],["safety","reasons"],["reasons","visitors"],["ice","bar"],["bar","also"],["also","serves"],["serves","warm"],["schedule","whereby"],["keep","warm"],["warm","events"],["icebar","orlando"],["annual","new"],["new","year"],["eve","masquerade"],["masquerade","ball"],["popular","meeting"],["meeting","place"],["central","florida"],["fire","lounge"],["fire","lounge"],["fire","lounge"],["also","located"],["icebar","orlando"],["normal","room"],["room","temperature"],["temperature","visitors"],["icebar","orlando"],["first","led"],["fire","lounge"],["thermal","cape"],["mass","media"],["media","icebar"],["icebar","orlando"],["travel","channel"],["channel","america"],["best","cook"],["food","network"],["network","andrinking"],["andrinking","madeasy"],["externalinks","category"],["category","bars"],["bars","category"],["category","buildings"],["orlando","florida"],["florida","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","nightclubs"],["united","states"]],"all_collocations":["icebar orlando","orlando icebar","icebar orlando","ice bar","bar located","located international","international drive","company claims","largest permanent","permanent ice","ice bar","decor furniture","constructed entirely","ice bar","bar also","various ice","ice sculpture","sculpture ice","ice carving","icebar orlando","orlando also","also runs","nightclub named","fire lounge","located nexto","ice bar","standard room","room temperature","temperature file","upright vodka","vodka bottles","ice sculpture","icebar orlando","orlando alt","alt vodka","ice sculpture","icebar orlando","orlando icebar","icebar orlando","carved ice","interior including","various decor","entirely constructed","old man","man winter","icebar orlando","ohio based","later expanded","ice sculptor","sculptor david","projected monthly","monthly electric","electric bill","icebar orlando","costs people","visit icebar","icebar orlando","thermal cape","admission fee","charged adults","alcoholic drink","legal drinking","drinking age","non alcoholic","alcoholic drinks","glasses made","servers wearing","wearing fur","fur hats","snow suits","safety reasons","reasons visitors","ice bar","bar also","also serves","serves warm","schedule whereby","keep warm","warm events","icebar orlando","annual new","new year","eve masquerade","masquerade ball","popular meeting","meeting place","central florida","fire lounge","fire lounge","fire lounge","also located","icebar orlando","normal room","room temperature","temperature visitors","icebar orlando","first led","fire lounge","thermal cape","mass media","media icebar","icebar orlando","travel channel","channel america","best cook","food network","network andrinking","andrinking madeasy","externalinks category","category bars","bars category","category buildings","orlando florida","florida category","category drinking","drinking establishments","establishments category","category nightclubs","united states"],"new_description":"icebar orlando icebar_orlando ice bar_located international drive orlando company claims world largest permanent ice bar decor furniture constructed entirely ice bar_also various ice sculpture ice carving icebar_orlando also runs bar nightclub named fire lounge located nexto ice bar maintained standard room temperature file icebar thumb upright vodka bottles ice sculpture icebar_orlando alt vodka ice sculpture icebar_orlando icebar_orlando composed ton carved ice maintained temperature interior including furniture tables chairs various decor entirely constructed ice also fireplace appearance old man winter fired electric icebar_orlando first aaron ohio based facility later expanded ice sculptor david projected monthly electric bill icebar_orlando used costs people ages allowed visit icebar_orlando provided thermal cape gloves endure comfortable admission fee charged adults provided alcoholic drink legal drinking_age provided non_alcoholic drinks served glasses made ice servers wearing fur hats snow suits safety reasons visitors allowed ice bar minutes bar_also_serves warm schedule whereby facility minutes outside staff bartenders clothing keep warm events hosted icebar_orlando annual new year eve masquerade ball described popular meeting_place central florida fire lounge fire lounge fire lounge bar nightclub also located icebar_orlando maintained normal room temperature visitors icebar_orlando first led fire lounge provided gloves thermal cape mass media icebar_orlando featured extreme travel_channel america best cook food_network andrinking madeasy comedian externalinks_category bars category_buildings structures orlando_florida_category_drinking_establishments category_nightclubs united_states"},{"title":"Identity tourism","description":"identity tourism research dates back to a special issue of annals of tourism research annals of tourism research guest edited by pierre l van den berghe and charles f keyes this volumexamines the ways in which tourism intersects withe re formation and revision of various forms of identity particularly ethnic and cultural identitiesince thatime variouscholars havexamined the intersection between dimensions of identity and tourism an important early contribution to the study of identity tourism was lanfant allcock and bruner s edited volume international tourism identity and change international tourism identity and change retrieved on february as withe keyes and van den berghe special issue of annals of tourism research this volume moved us away from studying the impact of tourism on identity to investigating the intersection of tourism and identity in more dynamic ways among other things looking at how local and tourist identities are mutually constructed likewise michel picard and robert wood s path breaking edited volume tourism ethnicity and the state in asiand pacific societies university of hawaii press examined the ways in which tourism intersections with ethnicultural regional and national identities as well as withe political agendas of pacific island southeast asian states tourism ethnicity and the state in asiand pacific societies retrieved on february abrams waldren and mcleod s volume tourists and tourism identifying with people and places tourists and tourism identifying with people and places alsoffered compelling case studies examining issuesurrounding the construction of identity in the context of tourism among other things the chapters in their volume investigated tourists views of themselves and others in the course of their travels the relationship of travelers to resident populations and the ways in which tourists quests for authenticity arentangled witheir own sensibilities aboutheir own identities various case studies of tourism and identity merit mention heredward bruner s edward bruner article the masai and the lion king authenticity nationalism and globalization in african tourism offers a penetrating examination of how various kenyan tourist sites entail displays of particular identities masai colonialist etc and how tourists engagements withese identity displays are varied nuanced and complex articulating witheir ownarrativesensibilities about african heritage and quests kathleen m adams work on tourism identity and the arts in toraja indonesia illustrates how tourism is drawn upon by different members of the community to elaborate different dimensions of identity in art as politics re crafting tourism identities and power in tana toraja indonesiart as politics re crafting tourism identities and power in tana toraja indonesia retrieved on february adams documents how tourism challenges older elite identities in the community reconfiguring artistic and ritual symbols once associated with elites as broader symbols of toraja ethnic group identity amanda stronza s amanda stronza work on tourism and identity in the amazon has illustrated how tourism appears to be causing new differentiation of identities within the community she researched see through a new mirroreflections on tourism and identity in the amazon a edited volume by burns and novelli alsoffers a number of case studies on the topic of tourism and social identities cyberspace themergence of the internet as a venue of identity expression is also relevanto theme of tourism and identity a edited volume on tourism social media transformations in identity community and culture by hospitality and businesschool scholarspotlightsome of these issues as moreover there are various programs and applicationsuch as chat rooms forums muds moos mmorpgs and others in which a user is allowed to establish an identity in that particular space this online identity could be different from a user s physical identity in race gender height weight or even species in chat rooms and forums a user creates their identity through text and the way they interact with others in mmorpgs users create a visual representation of their identity an avatar this allows users to easily tour more than just ethnic and cultural identities withe development of the internet and virtual reality identity tourism can become more salienthan previously thought with virtual reality for example a those who identify as transgender could create that identity in an mmorpg or forum lisa nakamura l race in for cyberspace identity tourism and racial passing on the internet retrieved on october hastudied identity tourism in cyberspace using ito describe the process of appropriating an identity involving another gender and orace than one s own on the web this kind of cyber identity tourismainly refers to the webut also touch other media formsuch as video games flew t and humphreys games technology industry culture new median introduction oxford university pressouth melbourne being able tour the internet with a new identity opens the possibility of the net being an identifiable space category identity category virtual communities category tourism","main_words":["identity","tourism_research","dates_back","special","issue","annals","tourism_research","annals","tourism_research","guest","edited","pierre","l","van","den","charles","f","ways","tourism","withe","formation","revision","various","forms","identity","particularly","ethnic","cultural","thatime","intersection","dimensions","identity","tourism","important","early","contribution","study","identity","tourism","bruner","edited","volume","international_tourism","identity","change","international_tourism","identity","change","retrieved_february","withe","van","den","special","issue","annals","tourism_research","volume","moved","us","away","studying","impact","tourism","identity","investigating","intersection","tourism","identity","dynamic","ways","among","things","looking","local","tourist","identities","constructed","likewise","michel","robert","wood","path","breaking","edited","volume","tourism","ethnicity","state","asiand","pacific","societies","university","hawaii","press","examined","ways","national","identities","well","withe","political","pacific","island","southeast_asian","states","tourism","ethnicity","state","asiand","pacific","societies","retrieved_february","volume","tourists","tourism","identifying","people","places","tourists","tourism","identifying","people","places","alsoffered","case_studies","examining","construction","identity","context","tourism","among","things","chapters","volume","investigated","tourists","views","others","course","travels","relationship","travelers","resident","populations","ways","tourists","authenticity","witheir","aboutheir","identities","various","case_studies","tourism","identity","merit","mention","bruner","edward","bruner","article","lion","king","authenticity","nationalism","globalization","african","tourism","offers","examination","various","kenyan","tourist_sites","entail","displays","particular","identities","etc","tourists","withese","identity","displays","varied","complex","witheir","african","heritage","kathleen","adams","work","tourism","identity","arts","toraja","indonesia","illustrates","tourism","drawn","upon","different","members","community","elaborate","different","dimensions","identity","art","politics","tourism","identities","power","toraja","politics","tourism","identities","power","toraja","indonesia","retrieved_february","adams","documents","tourism","challenges","older","elite","identities","community","artistic","ritual","symbols","associated","broader","symbols","toraja","ethnic","group","identity","amanda","amanda","work","tourism","identity","amazon","illustrated","tourism","appears","causing","new","identities","within","community","researched","see","new","tourism","identity","amazon","edited","volume","burns","alsoffers","number","case_studies","topic","tourism_social","identities","cyberspace","themergence","internet","venue","identity","expression","also","relevanto","theme","tourism","identity","edited","volume","transformations","identity","community","culture","hospitality","businesschool","issues","moreover","various","programs","chat","rooms","forums","others","user","allowed","establish","identity","particular","space","online","identity","could","different","user","physical","identity","race","gender","height","weight","even","species","chat","rooms","forums","user","creates","identity","text","way","interact","others","users","create","visual","representation","identity","allows_users","easily","tour","ethnic","cultural","identities","withe","development","internet","virtual_reality","identity","tourism","become","previously","thought","virtual_reality","example","identify","could","create","identity","forum","lisa","l","race","cyberspace","identity","tourism","racial","passing","internet","retrieved_october","identity","tourism","cyberspace","using","ito","describe","process","identity","involving","another","gender","one","web","kind","cyber","identity","refers","also","touch","media","video_games","flew","games","technology","industry","culture","new","median","introduction","oxford_university","melbourne","able","tour","internet","new","identity","opens","possibility","net","space","category","identity","category","virtual","communities","category_tourism"],"clean_bigrams":[["identity","tourism"],["tourism","research"],["research","dates"],["dates","back"],["special","issue"],["tourism","research"],["research","annals"],["tourism","research"],["research","guest"],["guest","edited"],["pierre","l"],["l","van"],["van","den"],["charles","f"],["various","forms"],["identity","particularly"],["particularly","ethnic"],["identity","tourism"],["important","early"],["early","contribution"],["identity","tourism"],["edited","volume"],["volume","international"],["international","tourism"],["tourism","identity"],["change","international"],["international","tourism"],["tourism","identity"],["change","retrieved"],["van","den"],["special","issue"],["tourism","research"],["volume","moved"],["moved","us"],["us","away"],["tourism","identity"],["tourism","identity"],["dynamic","ways"],["ways","among"],["things","looking"],["tourist","identities"],["constructed","likewise"],["likewise","michel"],["robert","wood"],["path","breaking"],["breaking","edited"],["edited","volume"],["volume","tourism"],["tourism","ethnicity"],["asiand","pacific"],["pacific","societies"],["societies","university"],["hawaii","press"],["press","examined"],["national","identities"],["withe","political"],["pacific","island"],["island","southeast"],["southeast","asian"],["asian","states"],["states","tourism"],["tourism","ethnicity"],["asiand","pacific"],["pacific","societies"],["societies","retrieved"],["volume","tourists"],["tourism","identifying"],["places","tourists"],["tourism","identifying"],["places","alsoffered"],["case","studies"],["studies","examining"],["tourism","among"],["volume","investigated"],["investigated","tourists"],["tourists","views"],["resident","populations"],["identities","various"],["various","case"],["case","studies"],["tourism","identity"],["identity","merit"],["merit","mention"],["edward","bruner"],["bruner","article"],["lion","king"],["king","authenticity"],["authenticity","nationalism"],["african","tourism"],["tourism","offers"],["various","kenyan"],["kenyan","tourist"],["tourist","sites"],["sites","entail"],["entail","displays"],["particular","identities"],["withese","identity"],["identity","displays"],["african","heritage"],["adams","work"],["tourism","identity"],["toraja","indonesia"],["indonesia","illustrates"],["drawn","upon"],["different","members"],["elaborate","different"],["different","dimensions"],["tourism","identities"],["tourism","identities"],["toraja","indonesia"],["indonesia","retrieved"],["february","adams"],["adams","documents"],["tourism","challenges"],["challenges","older"],["older","elite"],["elite","identities"],["ritual","symbols"],["broader","symbols"],["toraja","ethnic"],["ethnic","group"],["group","identity"],["identity","amanda"],["tourism","identity"],["tourism","appears"],["causing","new"],["identities","within"],["researched","see"],["tourism","identity"],["edited","volume"],["case","studies"],["tourism","social"],["social","identities"],["identities","cyberspace"],["cyberspace","themergence"],["identity","expression"],["also","relevanto"],["relevanto","theme"],["tourism","identity"],["edited","volume"],["volume","tourism"],["tourism","social"],["social","media"],["media","transformations"],["identity","community"],["various","programs"],["chat","rooms"],["rooms","forums"],["particular","space"],["online","identity"],["identity","could"],["physical","identity"],["race","gender"],["gender","height"],["height","weight"],["even","species"],["chat","rooms"],["rooms","forums"],["user","creates"],["users","create"],["visual","representation"],["allows","users"],["easily","tour"],["cultural","identities"],["identities","withe"],["withe","development"],["virtual","reality"],["reality","identity"],["identity","tourism"],["previously","thought"],["virtual","reality"],["could","create"],["forum","lisa"],["l","race"],["cyberspace","identity"],["identity","tourism"],["racial","passing"],["internet","retrieved"],["identity","tourism"],["cyberspace","using"],["using","ito"],["ito","describe"],["identity","involving"],["involving","another"],["another","gender"],["cyber","identity"],["also","touch"],["video","games"],["games","flew"],["games","technology"],["technology","industry"],["industry","culture"],["culture","new"],["new","median"],["median","introduction"],["introduction","oxford"],["oxford","university"],["able","tour"],["new","identity"],["identity","opens"],["space","category"],["category","identity"],["identity","category"],["category","virtual"],["virtual","communities"],["communities","category"],["category","tourism"]],"all_collocations":["identity tourism","tourism research","research dates","dates back","special issue","tourism research","research annals","tourism research","research guest","guest edited","pierre l","l van","van den","charles f","various forms","identity particularly","particularly ethnic","identity tourism","important early","early contribution","identity tourism","edited volume","volume international","international tourism","tourism identity","change international","international tourism","tourism identity","change retrieved","van den","special issue","tourism research","volume moved","moved us","us away","tourism identity","tourism identity","dynamic ways","ways among","things looking","tourist identities","constructed likewise","likewise michel","robert wood","path breaking","breaking edited","edited volume","volume tourism","tourism ethnicity","asiand pacific","pacific societies","societies university","hawaii press","press examined","national identities","withe political","pacific island","island southeast","southeast asian","asian states","states tourism","tourism ethnicity","asiand pacific","pacific societies","societies retrieved","volume tourists","tourism identifying","places tourists","tourism identifying","places alsoffered","case studies","studies examining","tourism among","volume investigated","investigated tourists","tourists views","resident populations","identities various","various case","case studies","tourism identity","identity merit","merit mention","edward bruner","bruner article","lion king","king authenticity","authenticity nationalism","african tourism","tourism offers","various kenyan","kenyan tourist","tourist sites","sites entail","entail displays","particular identities","withese identity","identity displays","african heritage","adams work","tourism identity","toraja indonesia","indonesia illustrates","drawn upon","different members","elaborate different","different dimensions","tourism identities","tourism identities","toraja indonesia","indonesia retrieved","february adams","adams documents","tourism challenges","challenges older","older elite","elite identities","ritual symbols","broader symbols","toraja ethnic","ethnic group","group identity","identity amanda","tourism identity","tourism appears","causing new","identities within","researched see","tourism identity","edited volume","case studies","tourism social","social identities","identities cyberspace","cyberspace themergence","identity expression","also relevanto","relevanto theme","tourism identity","edited volume","volume tourism","tourism social","social media","media transformations","identity community","various programs","chat rooms","rooms forums","particular space","online identity","identity could","physical identity","race gender","gender height","height weight","even species","chat rooms","rooms forums","user creates","users create","visual representation","allows users","easily tour","cultural identities","identities withe","withe development","virtual reality","reality identity","identity tourism","previously thought","virtual reality","could create","forum lisa","l race","cyberspace identity","identity tourism","racial passing","internet retrieved","identity tourism","cyberspace using","using ito","ito describe","identity involving","involving another","another gender","cyber identity","also touch","video games","games flew","games technology","technology industry","industry culture","culture new","new median","median introduction","introduction oxford","oxford university","able tour","new identity","identity opens","space category","category identity","identity category","category virtual","virtual communities","communities category","category tourism"],"new_description":"identity tourism_research dates_back special issue annals tourism_research annals tourism_research guest edited pierre l van den charles f ways tourism withe formation revision various forms identity particularly ethnic cultural thatime intersection dimensions identity tourism important early contribution study identity tourism bruner edited volume international_tourism identity change international_tourism identity change retrieved_february withe van den special issue annals tourism_research volume moved us away studying impact tourism identity investigating intersection tourism identity dynamic ways among things looking local tourist identities constructed likewise michel robert wood path breaking edited volume tourism ethnicity state asiand pacific societies university hawaii press examined ways tourism_regional national identities well withe political pacific island southeast_asian states tourism ethnicity state asiand pacific societies retrieved_february volume tourists tourism identifying people places tourists tourism identifying people places alsoffered case_studies examining construction identity context tourism among things chapters volume investigated tourists views others course travels relationship travelers resident populations ways tourists authenticity witheir aboutheir identities various case_studies tourism identity merit mention bruner edward bruner article lion king authenticity nationalism globalization african tourism offers examination various kenyan tourist_sites entail displays particular identities etc tourists withese identity displays varied complex witheir african heritage kathleen adams work tourism identity arts toraja indonesia illustrates tourism drawn upon different members community elaborate different dimensions identity art politics tourism identities power toraja politics tourism identities power toraja indonesia retrieved_february adams documents tourism challenges older elite identities community artistic ritual symbols associated broader symbols toraja ethnic group identity amanda amanda work tourism identity amazon illustrated tourism appears causing new identities within community researched see new tourism identity amazon edited volume burns alsoffers number case_studies topic tourism_social identities cyberspace themergence internet venue identity expression also relevanto theme tourism identity edited volume tourism_social_media transformations identity community culture hospitality businesschool issues moreover various programs chat rooms forums others user allowed establish identity particular space online identity could different user physical identity race gender height weight even species chat rooms forums user creates identity text way interact others users create visual representation identity allows_users easily tour ethnic cultural identities withe development internet virtual_reality identity tourism become previously thought virtual_reality example identify could create identity forum lisa l race cyberspace identity tourism racial passing internet retrieved_october identity tourism cyberspace using ito describe process identity involving another gender one web kind cyber identity refers also touch media video_games flew games technology industry culture new median introduction oxford_university melbourne able tour internet new identity opens possibility net space category identity category virtual communities category_tourism"},{"title":"Ikechi Uko","description":"birth place abia state nigeria occupation media consultantourism development expert organizations akwaabafrican travel market accra weizo abuja bantaba port harcourt bantaba years active present spouse married with children website ikechi uko born january andrew irokungbowadventures of ikechi uko new telegraph march retrieved on september is a nigerian travel business consultantravel promoter tourism development expert pan africanist ikechi uko shares thoughts on tourism the african dream septemberetrieved on september media consultant journalist and author he is the organizer of akwaabafrican travel markethe only international travel fair in west africaccra weizo abuja bantaband port harcourt bantaba he is the project director of seven wonders of nigeria naija wonders ceof jedidah promotions an international mediand tourismarketing firm for airlines hotels andestinations across africa ikechi uko appointed as carnival calabar consultant nigerian tribune septemberetrieved on september and publisher of africa travel quarterly magazine and atqnewscom early life ikechi uko is from abia state nigeria he was born on january into the family of mr samson uko and mrsalome uko n e azubuike at a young age uko had an eye on travel he could give up anything to discover new places he attended national secondary school nikenugu he worked as ticketing officer with nigeriairways abc in enugu he studied geography athe university of ibadand graduated in he did his national youth service corps in bauchi state from where he moved to kano state and taught in gwarzo secondary school gwarzo and rogo secondary school rogo in he returned to the university of ibadan tobtain his msc in geography with emphasis on environmental planning and remote sensing he graduated in and went ahead tobtain certificate in journalism from times institute of journalism and prince practitioners licence his father played a huge role in cementing his passion travel mr samson uko worked withe nigerian railway corporation and kept books as a child ikechi spent his holidays reading those books and travelling to new places in the course of his father s jobandrew irokungbowadventures of ikechi uko new telegraph march retrieved on may his late mother mrsalome uko a teacher steered his early life towards geography and taught him lessons in enterprise career file ikechi uko at akwaaba eventjpg thumb upright left upright alt at akwaaba event l r otunba runsewe ntdc former dg olusegun obasanjo former nigerian president dawda jawara former gambian president danny jordaan ikechi uko and obioma liyel imoke the abia state born travel enthusiast whose dressing is incomplete without a hat or a neck scarf is a very well traveled person traveling close to days in a yearandrew irokungbowadventures of ikechi uko new telegraph march retrieved on may he was editor of tourism factfinders a book onigeria published to mark nigeria s hosting of the organization of african unity oau summit in to he was tourism editor of happy land happy world tourist guide happy land happy world was the nigerian version of disneylandisney world a projecthat did not materialize when its certificate of occupancy was revoked by the lagostate government realizing the lack of literature that deeply documents the unique festive celebrations inigeria in he published festivals inigeria in collaboration withe nigerian tourism development corporationtdc his passion for traveling and adventures led him to the publication of travelers weekend magazine a weekly magazine in along whiche launched travelers awardsadie vanessa offiong nigeria will become major player in global tourism ikechi uko media trust may retrieved on may travelers weekend was the first regular travel magazine in west africa withe aim for the magazine to sethe pace and to be africa s forerunner in the travel world in travelers weekend magazine was rebranded as african travel quarterly atq in he launched travelers awards and exhibitions the first attempt at introducing an exhibition into the travel environment in travelers awards and exhibition was rebranded as akwaabafrican travel market akwaabafrican travel market is the only international travel fair in west africa with participation from international dealers in travel tourism aviation and the hospitality industries it is regarded as where africa meets the world akwaabafrican travel market is designated by the nigerian tourism development corporationtdc as the official travel exhibition inigeria it is the only international travel expo in west africa in partnership with ntdc listed by united nations world tourism organization unwto a partner event for african business travel association abta in west africabtannounces akwaaba partnership ghana web april retrieved on may partner event with national association of nigerian travel agencies nanta partners with akwaaba for w africa tourism fair media trust octoberetrieved on may and the only member of international tourism trade fairs association ittfa chinedu eze ittfa welcomes akwaabafrican travel markethisday july retrieved on may file ikechi uko at victoria falls zimbabwejpg thumb ikechi uko at victoria falls zimbabwe in withe atq magazine team he set up a committee to choose the wonders of nigeria popularly known as naija wondersearch for seven wonders inigeria begins the nigerian voice april retrieved on may this was inspired by the poems of pliny thelder on the ancient wonders of the world and the ancient principles of philof byzantium s collection of marvels from around the world seven wonders of nigeria jetlife nigeria july retrieved on may after a thorough andetailed search of two years by tourism hospitality and tour experts with public voting in by this day live beyond naija seven wonders nigerian homepage july retrieved on may the projecteam published the man made wonders of nigeriand the seven most sensitive critical and exquisitely unique of them were selected as the naija seven wonders naija wonders naija wonders announces results mainational daily national daily january retrieved on may kemi ashefon behold nigeria seven wonder sites the punch february retrieved on may these are the man made wonders of nigeria driven by the vision of the marcel proust quote the journey of discovery is not in seeing new things but in seeing old things with new eyes naija wonders nigeria most dramatic breathtaking and unique man made structure is endorsed by national bodies and associations in tourism and applauded by international organizations minister endorses naija wonders project for tourism development nigerian federal ministry of information february retrieved on may one of the least known of the seven wonders of nigeria sites the benin moat was visited by unesco led by prof wole soyinka naija wonders commends wole soyinka for benin moat visithe nation march retrieved on may visito benin moat uko commendsoyinka the punch march retrieved on may and former director general of nigerian tourism development corporation otunba segun runsewe referred to the naija wonders as an epoch in the advancement of tourism development inigeriaadewole ajao nigeria beyond naija seven wonders allafricacom july retrieved on may having noticed that inigeria mostravel businesses concentrate on lagos withoutaking cognizance of the huge travel potentials in other northern statespecially abuja being the capital of nigeria on july he launched abuja bantaba one day speedating event between investors and clients in the travel and tourism business the nation sheraton hosts abuja bantaba by akwaaba the nation june retrieved on may andrew irokungbowadventures of ikechi uko new telegraph march retrieved on may it also includes workshop that keeparticipants informed of what are going on in those industries to keep with pace withe rest of the world in celebration of the centenary of nigeria on april the th edition of abuja bantaba honored personalities who are key players tourism development inigeria wale olapade bantaba honours patriots nigerian tribune april retrieved on may oguru okorie bantaba to honour top nigerians the nation february retrieved on may in he launched atqnewscom the online version of african travel quarterly magazine according to uko it focuses on forecast market and political analyses which observe development in the areas of travel transport and tourism from a global perspective and the impact of these on theconomies of countries nigeriatqnews partners nanta for agm allafricacom april retrieved may on july he launched accra weizo an event which is targeted athe founding vision of ecowas to create a region of one people integrating and growing together accra weizo rallies travel professionals together to meet minds and work out a pathway for the future of the africa region hosting tourism aviation and immigration key players andecision makerswale olapade akwaaba launches weizo in ghana july nigerian tribune retrieved on august vanessa offiong weizo seekkseamless travel across w africa daily trust july retrieved on august in august he was appointed as the international tourism consultanto the calabar carnival ikechi uko appointed as carnival calabar consultant nigerian tribune septemberetrieved on september ikechi uko is presently pushing his proposal to build an aviation museum for nigeria using abandoned aircraft as exhibits he said thathe project would promote nigeria s tourism empower and educate a new generation of aviators draw international investors in the aviation industry to nigeriand would serve as an eye opener to look and work for a brighter future in the aviation industry let s use abandoned aircraft as aviation museum says ikechi uko thisday january retrieved on may naija wonders proposes aviation museum for disused planes national daily january retrieved on may tourism coy to build aviation museum silverbird television january retrieved on may awards and appointments in he was appointed a member of the tourism committee nigeria vision in the administration of president umaru musa yar adua ntdc fulfils promise records historic world tourism day the nigerian voice octoberetrieved on may file ikechi uko receiving his miceast africa s tourism and hospitality personality award in ethiopajpg thumb upright left upright alt ikechi uko receiving his miceast africa s tourism and hospitality personality award in ethiopia in july athe th anniversary of kwita izina the annual gorilla naming ceremony in rwanda one of the most prestigious festivals in rwanda uko was chosen by the government of rwandas a representative of nigeria to be a namer thousands gather to celebrate the th edition of kwita izinas newly born baby gorillas are givenames government of the republic of rwanda july retrieved on july file ikechi uko athe th kwita izina in rwandajpg thumb upright left upright alt ikechi uko athe th kwita izina in rwanda in he was appointed consultanto the calabar carnival by the cross river state governor prof ben ayade withe vision to reposition calabar carnival as the number one carnival event in africas the international tourism consultant for the calabar international festival ikechi uko brought in over ten countries across the continents of the world to participate in the calabar international festival brazilian band others return for calabar carnival the nation retrieved on january withe success of calabar carnival he was reappointed in for theditionchuks nwanne ikechi uko returns as calabar carnival consultanthe guardianigeria octoberetrieved on june ikechi uko vast expertise in tourism was in sheer display athe calabar carnival with accolades on the cross river state government in hosting thevento international standard to the delight of tourists international investors and nigerians in january the african sun times africa s number one and largest newspaper in americawarded mr ikechi uko as its tourism ambassador of the year charles ajunwa ikechi uko emerges tourism ambassador of the year thisday january retrieved on january according to the organizers of the award the award came on theels of ikechi s ardent practical tourism promotion andevelopment campaign inigeriand africa through different pet projectshowcasing the beauty and richness of africa to the world uko wins african man tourisman of the year nigerian tribune january retrieved on january athe miceast africa forum and expo held in addis ababa ethiopia ikechi uko was presented withe miceast africa s tourism and hospitality personality award the award was presented to him on his contributions towards the developments of tourism travel and hospitality businesses and investments in africachuks nwanne uko wins tourism awards in ethiopia the guardianigeria june retrieved on junexternalinks category births category st century nigerian businesspeople category branding consultants category igbo businesspeople category living people category media industry businesspeople category nigerian publishers people category tourism category travelers category university of ibadan alumni","main_words":["birth","place","state","nigeria","occupation","media","development","expert","organizations","akwaabafrican","travel_market","accra","weizo","abuja","bantaba","port","harcourt","bantaba","years","active","present","spouse","married","children","website","ikechi_uko","born","january","andrew","irokungbowadventures","ikechi_uko","new","telegraph","march_retrieved","september","nigerian","travel","business","promoter","tourism_development","expert","pan","ikechi_uko","shares","thoughts","tourism","african","dream","septemberetrieved","september","media","consultant","journalist","author","organizer","akwaabafrican","international_travel","fair","west","weizo","abuja","port","harcourt","bantaba","project","director","seven_wonders","nigeria","naija","wonders","ceof","promotions","international","mediand","tourismarketing","firm","airlines","hotels","andestinations","across","africa","ikechi_uko","appointed","carnival","calabar","consultant","nigerian","tribune","septemberetrieved","september","publisher","africa","travel","quarterly","magazine","early_life","ikechi_uko","state","nigeria","born","january","family","samson","uko","uko","n","e","young","age","uko","eye","travel","could","give","anything","discover","new","places","attended","national","secondary","school","worked","ticketing","officer","abc","studied","geography","athe_university","graduated","national","youth","service","corps","state","moved","state","taught","secondary","school","secondary","school","returned","university","tobtain","geography","emphasis","environmental","planning","remote","graduated","went","ahead","tobtain","certificate","journalism","times","institute","journalism","prince","practitioners","licence","father","played","huge","role","passion","travel","samson","uko","worked","withe","nigerian","railway","corporation","kept","books","child","spent","holidays","reading","books","travelling","new","places","course","father","irokungbowadventures","ikechi_uko","new","telegraph","march_retrieved_may","late","mother","uko","teacher","early_life","towards","geography","taught","lessons","enterprise","career","file","ikechi_uko","akwaaba","thumb","upright","left","upright","alt","akwaaba","event","l","r","former","former","nigerian","president","former","president","danny","ikechi_uko","state","born","travel","enthusiast","whose","dressing","incomplete","without","hat","neck","well","traveled","person","traveling","close","days","irokungbowadventures","ikechi_uko","new","telegraph","march_retrieved_may","editor","tourism","book","published","mark","nigeria","hosting","organization","african","unity","summit","tourism","editor","happy","land","happy","world","tourist_guide","happy","land","happy","world","nigerian","version","world","certificate","occupancy","government","lack","literature","deeply","documents","unique","celebrations","inigeria","published","festivals","inigeria","collaboration","withe","nigerian","tourism_development","passion","traveling","adventures","led","publication","travelers","weekend","magazine","weekly","magazine","along","whiche","launched","travelers","nigeria","become","major","player","global","tourism","ikechi_uko","media","trust","may","retrieved_may","travelers","weekend","first","regular","travel_magazine","west","africa","withe_aim","magazine","pace","africa","forerunner","travel","world_travelers","weekend","magazine","rebranded","african","travel","quarterly","launched","travelers","awards","exhibitions","first","attempt","introducing","exhibition","travel","environment","travelers","awards","exhibition","rebranded","akwaabafrican","travel_market","akwaabafrican","travel_market","international_travel","fair","west","africa","participation","international","dealers","travel_tourism","aviation","hospitality","industries","regarded","africa","meets","world","akwaabafrican","travel_market","designated","nigerian","tourism_development","official","travel","exhibition","inigeria","international_travel","expo","west","africa","partnership","listed","united_nations","world_tourism","organization","unwto","partner","event","african","west","akwaaba","partnership","ghana","web","april","retrieved_may","partner","event","national","association","nigerian","travel_agencies","partners","akwaaba","w","africa","tourism","fair","media","trust","octoberetrieved","may","member","international_tourism","trade","fairs","association","welcomes","akwaabafrican","travel","july_retrieved_may","file","ikechi_uko","victoria","falls","thumb","ikechi_uko","victoria","falls","zimbabwe","withe","magazine","team","set","committee","choose","wonders","nigeria","popularly","known","naija","seven_wonders","inigeria","begins","nigerian","voice","april","retrieved_may","inspired","poems","pliny","ancient","wonders","world","ancient","principles","collection","around","world","seven_wonders","nigeria","nigeria","july_retrieved_may","andetailed","search","two_years","tourism_hospitality","tour","experts","public","voting","day","live","beyond","naija","seven_wonders","nigerian","homepage","july_retrieved_may","published","man_made","wonders","seven","sensitive","critical","unique","selected","naija","seven_wonders","naija","wonders","naija","wonders","announces","results","daily","national","daily","january_retrieved_may","nigeria","seven","wonder","sites","punch","february","retrieved_may","man_made","wonders","nigeria","driven","vision","marcel","quote","journey","discovery","seeing","new","things","seeing","old","things","new","eyes","naija","wonders","nigeria","dramatic","breathtaking","unique","man_made","structure","endorsed","national","bodies","associations","tourism","international","organizations","minister","naija","wonders","project","tourism_development","nigerian","federal","ministry","information","february","retrieved_may","one","least","known","seven_wonders","nigeria","sites","benin","moat","visited","unesco","led","prof","naija","wonders","benin","moat","visithe","nation","march_retrieved_may","visito","benin","moat","uko","punch","march_retrieved_may","former","director","general","nigerian","tourism_development","corporation","referred","naija","wonders","advancement","tourism_development","nigeria","beyond","naija","seven_wonders","july_retrieved_may","noticed","inigeria","businesses","lagos","huge","travel","northern","abuja","capital","nigeria","july","launched","abuja","bantaba","one_day","event","investors","clients","travel_tourism","business","nation","sheraton","hosts","abuja","bantaba","akwaaba","nation","andrew","irokungbowadventures","ikechi_uko","new","telegraph","includes","workshop","informed","going","industries","keep","pace","withe","rest","world","celebration","centenary","nigeria","april","th_edition","abuja","bantaba","honored","personalities","key","players","tourism_development","inigeria","bantaba","honours","nigerian","tribune","april","retrieved_may","bantaba","honour","top","nation","february","retrieved_may","launched","online","version","african","travel","quarterly","magazine","according","uko","focuses","forecast","market","political","analyses","development","areas","travel","transport","tourism","global","perspective","impact","countries","partners","agm","april","retrieved_may","july","launched","accra","weizo","event","targeted","athe","founding","vision","create","region","one","people","integrating","growing","together","accra","weizo","rallies","travel","professionals","together","meet","minds","work","pathway","future","africa","region","hosting","tourism","aviation","immigration","key","players","akwaaba","launches","weizo","ghana","july","nigerian","tribune","retrieved","august","weizo","travel","across","w","africa","daily","trust","july_retrieved","august","august","appointed","international_tourism","calabar","carnival","ikechi_uko","appointed","carnival","calabar","consultant","nigerian","tribune","septemberetrieved","september","ikechi_uko","presently","pushing","proposal","build","aviation","museum","nigeria","using","abandoned","aircraft","exhibits","said","thathe","project","would","promote","nigeria","tourism","educate","new","generation","draw","international","investors","aviation","industry","would","serve","eye","look","work","brighter","future","aviation","industry","abandoned","aircraft","aviation","museum","says","ikechi_uko","january_retrieved_may","naija","wonders","aviation","museum","disused","planes","national","daily","january_retrieved_may","tourism","build","aviation","museum","television","january_retrieved_may","awards","appointed","member","tourism","committee","nigeria","vision","administration","president","promise","records","historic","world_tourism","day","nigerian","voice","octoberetrieved","may","file","ikechi_uko","receiving","miceast","africa","tourism_hospitality","personality","award","thumb","upright","left","upright","alt","ikechi_uko","receiving","miceast","africa","tourism_hospitality","personality","award","ethiopia","july","kwita","annual","gorilla","naming","ceremony","rwanda","one","prestigious","festivals","rwanda","uko","chosen","government","representative","nigeria","thousands","gather","celebrate","th_edition","kwita","newly","born","baby","gorillas","government","republic","rwanda","july_retrieved","july","file","ikechi_uko","athe_th","kwita","thumb","upright","left","upright","alt","ikechi_uko","athe_th","kwita","rwanda","appointed","calabar","carnival","cross","river","state","governor","prof","ben","withe","vision","calabar","carnival","number","one","carnival","event","africas","international_tourism","consultant","calabar","international","festival","ikechi_uko","brought","ten","countries","across","continents","world","participate","calabar","international","festival","brazilian","band","others","return","calabar","carnival","nation","retrieved_january","withe","success","calabar","carnival","ikechi_uko","returns","calabar","carnival","octoberetrieved","june","ikechi_uko","vast","expertise","tourism","sheer","display","athe","calabar","carnival","accolades","cross","river","state","government","hosting","international","standard","delight","tourists","international","investors","january","african","sun","times","africa","number","one","largest","newspaper","ikechi_uko","tourism","ambassador","year","charles","ikechi_uko","tourism","ambassador","year","january_retrieved_january","according","organizers","award","award","came","practical","tourism_promotion","andevelopment","campaign","africa","different","pet","beauty","africa","world","uko","wins","african","man","year","nigerian","tribune","january_retrieved_january","athe","miceast","africa","forum","expo","held","ethiopia","ikechi_uko","presented","withe","miceast","africa","tourism_hospitality","personality","award","award","presented","contributions","towards","developments","tourism_travel","hospitality","businesses","investments","uko","wins","tourism","awards","ethiopia","june_retrieved","category_births_category","st_century","nigerian","businesspeople","category","branding","consultants","category","businesspeople","industry","businesspeople","category","nigerian","publishers","category_university","alumni"],"clean_bigrams":[["birth","place"],["state","nigeria"],["nigeria","occupation"],["occupation","media"],["development","expert"],["expert","organizations"],["organizations","akwaabafrican"],["akwaabafrican","travel"],["travel","market"],["market","accra"],["accra","weizo"],["weizo","abuja"],["abuja","bantaba"],["bantaba","port"],["port","harcourt"],["harcourt","bantaba"],["bantaba","years"],["years","active"],["active","present"],["present","spouse"],["spouse","married"],["children","website"],["website","ikechi"],["ikechi","uko"],["uko","born"],["born","january"],["january","andrew"],["andrew","irokungbowadventures"],["ikechi","uko"],["uko","new"],["new","telegraph"],["telegraph","march"],["march","retrieved"],["nigerian","travel"],["travel","business"],["promoter","tourism"],["tourism","development"],["development","expert"],["expert","pan"],["ikechi","uko"],["uko","shares"],["shares","thoughts"],["african","dream"],["dream","septemberetrieved"],["september","media"],["media","consultant"],["consultant","journalist"],["akwaabafrican","travel"],["travel","markethe"],["international","travel"],["travel","fair"],["weizo","abuja"],["port","harcourt"],["harcourt","bantaba"],["project","director"],["seven","wonders"],["wonders","nigeria"],["nigeria","naija"],["naija","wonders"],["wonders","ceof"],["international","mediand"],["mediand","tourismarketing"],["tourismarketing","firm"],["airlines","hotels"],["hotels","andestinations"],["andestinations","across"],["across","africa"],["africa","ikechi"],["ikechi","uko"],["uko","appointed"],["carnival","calabar"],["calabar","consultant"],["consultant","nigerian"],["nigerian","tribune"],["tribune","septemberetrieved"],["africa","travel"],["travel","quarterly"],["quarterly","magazine"],["early","life"],["life","ikechi"],["ikechi","uko"],["state","nigeria"],["born","january"],["samson","uko"],["uko","n"],["n","e"],["young","age"],["age","uko"],["could","give"],["discover","new"],["new","places"],["attended","national"],["national","secondary"],["secondary","school"],["ticketing","officer"],["studied","geography"],["geography","athe"],["athe","university"],["national","youth"],["youth","service"],["service","corps"],["secondary","school"],["secondary","school"],["environmental","planning"],["went","ahead"],["ahead","tobtain"],["tobtain","certificate"],["times","institute"],["prince","practitioners"],["practitioners","licence"],["father","played"],["huge","role"],["passion","travel"],["samson","uko"],["uko","worked"],["worked","withe"],["withe","nigerian"],["nigerian","railway"],["railway","corporation"],["kept","books"],["child","ikechi"],["ikechi","spent"],["holidays","reading"],["new","places"],["ikechi","uko"],["uko","new"],["new","telegraph"],["telegraph","march"],["march","retrieved"],["retrieved","may"],["late","mother"],["early","life"],["life","towards"],["towards","geography"],["enterprise","career"],["career","file"],["file","ikechi"],["ikechi","uko"],["thumb","upright"],["upright","left"],["left","upright"],["upright","alt"],["akwaaba","event"],["event","l"],["l","r"],["former","nigerian"],["nigerian","president"],["president","danny"],["ikechi","uko"],["state","born"],["born","travel"],["travel","enthusiast"],["enthusiast","whose"],["whose","dressing"],["incomplete","without"],["well","traveled"],["traveled","person"],["person","traveling"],["traveling","close"],["ikechi","uko"],["uko","new"],["new","telegraph"],["telegraph","march"],["march","retrieved"],["retrieved","may"],["mark","nigeria"],["african","unity"],["tourism","editor"],["happy","land"],["land","happy"],["happy","world"],["world","tourist"],["tourist","guide"],["guide","happy"],["happy","land"],["land","happy"],["happy","world"],["nigerian","version"],["deeply","documents"],["celebrations","inigeria"],["published","festivals"],["festivals","inigeria"],["collaboration","withe"],["withe","nigerian"],["nigerian","tourism"],["tourism","development"],["adventures","led"],["travelers","weekend"],["weekend","magazine"],["weekly","magazine"],["along","whiche"],["whiche","launched"],["launched","travelers"],["become","major"],["major","player"],["global","tourism"],["tourism","ikechi"],["ikechi","uko"],["uko","media"],["media","trust"],["trust","may"],["may","retrieved"],["retrieved","may"],["may","travelers"],["travelers","weekend"],["first","regular"],["regular","travel"],["travel","magazine"],["west","africa"],["africa","withe"],["withe","aim"],["travel","world"],["travelers","weekend"],["weekend","magazine"],["african","travel"],["travel","quarterly"],["launched","travelers"],["travelers","awards"],["first","attempt"],["travel","environment"],["travelers","awards"],["akwaabafrican","travel"],["travel","market"],["market","akwaabafrican"],["akwaabafrican","travel"],["travel","market"],["international","travel"],["travel","fair"],["west","africa"],["international","dealers"],["travel","tourism"],["tourism","aviation"],["hospitality","industries"],["africa","meets"],["world","akwaabafrican"],["akwaabafrican","travel"],["travel","market"],["nigerian","tourism"],["tourism","development"],["official","travel"],["travel","exhibition"],["exhibition","inigeria"],["international","travel"],["travel","expo"],["west","africa"],["united","nations"],["nations","world"],["world","tourism"],["tourism","organization"],["organization","unwto"],["partner","event"],["african","business"],["business","travel"],["travel","association"],["akwaaba","partnership"],["partnership","ghana"],["ghana","web"],["web","april"],["april","retrieved"],["retrieved","may"],["may","partner"],["partner","event"],["national","association"],["nigerian","travel"],["travel","agencies"],["w","africa"],["africa","tourism"],["tourism","fair"],["fair","media"],["media","trust"],["trust","octoberetrieved"],["international","tourism"],["tourism","trade"],["trade","fairs"],["fairs","association"],["welcomes","akwaabafrican"],["akwaabafrican","travel"],["july","retrieved"],["retrieved","may"],["may","file"],["file","ikechi"],["ikechi","uko"],["victoria","falls"],["thumb","ikechi"],["ikechi","uko"],["victoria","falls"],["falls","zimbabwe"],["magazine","team"],["wonders","nigeria"],["nigeria","popularly"],["popularly","known"],["naija","seven"],["seven","wonders"],["wonders","inigeria"],["inigeria","begins"],["nigerian","voice"],["voice","april"],["april","retrieved"],["retrieved","may"],["ancient","wonders"],["ancient","principles"],["world","seven"],["seven","wonders"],["wonders","nigeria"],["nigeria","july"],["july","retrieved"],["retrieved","may"],["andetailed","search"],["two","years"],["tourism","hospitality"],["tour","experts"],["public","voting"],["day","live"],["live","beyond"],["beyond","naija"],["naija","seven"],["seven","wonders"],["wonders","nigerian"],["nigerian","homepage"],["homepage","july"],["july","retrieved"],["retrieved","may"],["man","made"],["made","wonders"],["sensitive","critical"],["naija","seven"],["seven","wonders"],["wonders","naija"],["naija","wonders"],["wonders","naija"],["naija","wonders"],["wonders","announces"],["announces","results"],["daily","national"],["national","daily"],["daily","january"],["january","retrieved"],["retrieved","may"],["nigeria","seven"],["seven","wonder"],["wonder","sites"],["punch","february"],["february","retrieved"],["retrieved","may"],["man","made"],["made","wonders"],["wonders","nigeria"],["nigeria","driven"],["seeing","new"],["new","things"],["seeing","old"],["old","things"],["new","eyes"],["eyes","naija"],["naija","wonders"],["wonders","nigeria"],["dramatic","breathtaking"],["unique","man"],["man","made"],["made","structure"],["national","bodies"],["international","organizations"],["organizations","minister"],["naija","wonders"],["wonders","project"],["tourism","development"],["development","nigerian"],["nigerian","federal"],["federal","ministry"],["information","february"],["february","retrieved"],["retrieved","may"],["may","one"],["least","known"],["seven","wonders"],["wonders","nigeria"],["nigeria","sites"],["benin","moat"],["unesco","led"],["naija","wonders"],["benin","moat"],["moat","visithe"],["visithe","nation"],["nation","march"],["march","retrieved"],["retrieved","may"],["may","visito"],["visito","benin"],["benin","moat"],["moat","uko"],["punch","march"],["march","retrieved"],["retrieved","may"],["former","director"],["director","general"],["nigerian","tourism"],["tourism","development"],["development","corporation"],["naija","wonders"],["tourism","development"],["nigeria","beyond"],["beyond","naija"],["naija","seven"],["seven","wonders"],["july","retrieved"],["retrieved","may"],["huge","travel"],["northern","statespecially"],["statespecially","abuja"],["nigeria","july"],["launched","abuja"],["abuja","bantaba"],["bantaba","one"],["one","day"],["travel","tourism"],["tourism","business"],["nation","sheraton"],["sheraton","hosts"],["hosts","abuja"],["abuja","bantaba"],["nation","june"],["june","retrieved"],["retrieved","may"],["may","andrew"],["andrew","irokungbowadventures"],["ikechi","uko"],["uko","new"],["new","telegraph"],["telegraph","march"],["march","retrieved"],["retrieved","may"],["also","includes"],["includes","workshop"],["pace","withe"],["withe","rest"],["th","edition"],["abuja","bantaba"],["bantaba","honored"],["honored","personalities"],["key","players"],["players","tourism"],["tourism","development"],["development","inigeria"],["bantaba","honours"],["nigerian","tribune"],["tribune","april"],["april","retrieved"],["retrieved","may"],["honour","top"],["nation","february"],["february","retrieved"],["retrieved","may"],["online","version"],["african","travel"],["travel","quarterly"],["quarterly","magazine"],["magazine","according"],["forecast","market"],["political","analyses"],["travel","transport"],["global","perspective"],["april","retrieved"],["retrieved","may"],["launched","accra"],["accra","weizo"],["targeted","athe"],["athe","founding"],["founding","vision"],["one","people"],["people","integrating"],["growing","together"],["together","accra"],["accra","weizo"],["weizo","rallies"],["rallies","travel"],["travel","professionals"],["professionals","together"],["meet","minds"],["africa","region"],["region","hosting"],["hosting","tourism"],["tourism","aviation"],["immigration","key"],["key","players"],["akwaaba","launches"],["launches","weizo"],["ghana","july"],["july","nigerian"],["nigerian","tribune"],["tribune","retrieved"],["travel","across"],["across","w"],["w","africa"],["africa","daily"],["daily","trust"],["trust","july"],["july","retrieved"],["international","tourism"],["calabar","carnival"],["carnival","ikechi"],["ikechi","uko"],["uko","appointed"],["carnival","calabar"],["calabar","consultant"],["consultant","nigerian"],["nigerian","tribune"],["tribune","septemberetrieved"],["september","ikechi"],["ikechi","uko"],["presently","pushing"],["build","aviation"],["aviation","museum"],["nigeria","using"],["using","abandoned"],["abandoned","aircraft"],["said","thathe"],["thathe","project"],["project","would"],["would","promote"],["promote","nigeria"],["new","generation"],["draw","international"],["international","investors"],["aviation","industry"],["would","serve"],["brighter","future"],["aviation","industry"],["industry","let"],["use","abandoned"],["abandoned","aircraft"],["aviation","museum"],["museum","says"],["says","ikechi"],["ikechi","uko"],["january","retrieved"],["retrieved","may"],["may","naija"],["naija","wonders"],["aviation","museum"],["disused","planes"],["planes","national"],["national","daily"],["daily","january"],["january","retrieved"],["retrieved","may"],["may","tourism"],["build","aviation"],["aviation","museum"],["television","january"],["january","retrieved"],["retrieved","may"],["may","awards"],["tourism","committee"],["committee","nigeria"],["nigeria","vision"],["promise","records"],["records","historic"],["historic","world"],["world","tourism"],["tourism","day"],["nigerian","voice"],["voice","octoberetrieved"],["may","file"],["file","ikechi"],["ikechi","uko"],["uko","receiving"],["miceast","africa"],["africa","tourism"],["tourism","hospitality"],["hospitality","personality"],["personality","award"],["thumb","upright"],["upright","left"],["left","upright"],["upright","alt"],["alt","ikechi"],["ikechi","uko"],["uko","receiving"],["miceast","africa"],["africa","tourism"],["tourism","hospitality"],["hospitality","personality"],["personality","award"],["july","athe"],["athe","th"],["th","anniversary"],["annual","gorilla"],["gorilla","naming"],["naming","ceremony"],["rwanda","one"],["prestigious","festivals"],["rwanda","uko"],["thousands","gather"],["th","edition"],["newly","born"],["born","baby"],["baby","gorillas"],["rwanda","july"],["july","retrieved"],["july","file"],["file","ikechi"],["ikechi","uko"],["uko","athe"],["athe","th"],["th","kwita"],["thumb","upright"],["upright","left"],["left","upright"],["upright","alt"],["alt","ikechi"],["ikechi","uko"],["uko","athe"],["athe","th"],["th","kwita"],["calabar","carnival"],["cross","river"],["river","state"],["state","governor"],["governor","prof"],["prof","ben"],["withe","vision"],["calabar","carnival"],["number","one"],["one","carnival"],["carnival","event"],["international","tourism"],["tourism","consultant"],["calabar","international"],["international","festival"],["festival","ikechi"],["ikechi","uko"],["uko","brought"],["ten","countries"],["countries","across"],["calabar","international"],["international","festival"],["festival","brazilian"],["brazilian","band"],["band","others"],["others","return"],["calabar","carnival"],["nation","retrieved"],["january","withe"],["withe","success"],["calabar","carnival"],["carnival","ikechi"],["ikechi","uko"],["uko","returns"],["calabar","carnival"],["june","ikechi"],["ikechi","uko"],["uko","vast"],["vast","expertise"],["sheer","display"],["display","athe"],["athe","calabar"],["calabar","carnival"],["cross","river"],["river","state"],["state","government"],["international","standard"],["tourists","international"],["international","investors"],["african","sun"],["sun","times"],["times","africa"],["number","one"],["largest","newspaper"],["ikechi","uko"],["tourism","ambassador"],["year","charles"],["ikechi","uko"],["tourism","ambassador"],["january","retrieved"],["january","according"],["award","came"],["practical","tourism"],["tourism","promotion"],["promotion","andevelopment"],["andevelopment","campaign"],["different","pet"],["world","uko"],["uko","wins"],["wins","african"],["african","man"],["year","nigerian"],["nigerian","tribune"],["tribune","january"],["january","retrieved"],["january","athe"],["athe","miceast"],["miceast","africa"],["africa","forum"],["expo","held"],["ethiopia","ikechi"],["ikechi","uko"],["presented","withe"],["withe","miceast"],["miceast","africa"],["africa","tourism"],["tourism","hospitality"],["hospitality","personality"],["personality","award"],["contributions","towards"],["tourism","travel"],["hospitality","businesses"],["uko","wins"],["wins","tourism"],["tourism","awards"],["june","retrieved"],["category","births"],["births","category"],["category","st"],["st","century"],["century","nigerian"],["nigerian","businesspeople"],["businesspeople","category"],["category","branding"],["branding","consultants"],["consultants","category"],["businesspeople","category"],["category","living"],["living","people"],["people","category"],["category","media"],["media","industry"],["industry","businesspeople"],["businesspeople","category"],["category","nigerian"],["nigerian","publishers"],["publishers","people"],["people","category"],["category","tourism"],["tourism","category"],["category","travelers"],["travelers","category"],["category","university"]],"all_collocations":["birth place","state nigeria","nigeria occupation","occupation media","development expert","expert organizations","organizations akwaabafrican","akwaabafrican travel","travel market","market accra","accra weizo","weizo abuja","abuja bantaba","bantaba port","port harcourt","harcourt bantaba","bantaba years","years active","active present","present spouse","spouse married","children website","website ikechi","ikechi uko","uko born","born january","january andrew","andrew irokungbowadventures","ikechi uko","uko new","new telegraph","telegraph march","march retrieved","nigerian travel","travel business","promoter tourism","tourism development","development expert","expert pan","ikechi uko","uko shares","shares thoughts","african dream","dream septemberetrieved","september media","media consultant","consultant journalist","akwaabafrican travel","travel markethe","international travel","travel fair","weizo abuja","port harcourt","harcourt bantaba","project director","seven wonders","wonders nigeria","nigeria naija","naija wonders","wonders ceof","international mediand","mediand tourismarketing","tourismarketing firm","airlines hotels","hotels andestinations","andestinations across","across africa","africa ikechi","ikechi uko","uko appointed","carnival calabar","calabar consultant","consultant nigerian","nigerian tribune","tribune septemberetrieved","africa travel","travel quarterly","quarterly magazine","early life","life ikechi","ikechi uko","state nigeria","born january","samson uko","uko n","n e","young age","age uko","could give","discover new","new places","attended national","national secondary","secondary school","ticketing officer","studied geography","geography athe","athe university","national youth","youth service","service corps","secondary school","secondary school","environmental planning","went ahead","ahead tobtain","tobtain certificate","times institute","prince practitioners","practitioners licence","father played","huge role","passion travel","samson uko","uko worked","worked withe","withe nigerian","nigerian railway","railway corporation","kept books","child ikechi","ikechi spent","holidays reading","new places","ikechi uko","uko new","new telegraph","telegraph march","march retrieved","retrieved may","late mother","early life","life towards","towards geography","enterprise career","career file","file ikechi","ikechi uko","upright left","left upright","upright alt","akwaaba event","event l","l r","former nigerian","nigerian president","president danny","ikechi uko","state born","born travel","travel enthusiast","enthusiast whose","whose dressing","incomplete without","well traveled","traveled person","person traveling","traveling close","ikechi uko","uko new","new telegraph","telegraph march","march retrieved","retrieved may","mark nigeria","african unity","tourism editor","happy land","land happy","happy world","world tourist","tourist guide","guide happy","happy land","land happy","happy world","nigerian version","deeply documents","celebrations inigeria","published festivals","festivals inigeria","collaboration withe","withe nigerian","nigerian tourism","tourism development","adventures led","travelers weekend","weekend magazine","weekly magazine","along whiche","whiche launched","launched travelers","become major","major player","global tourism","tourism ikechi","ikechi uko","uko media","media trust","trust may","may retrieved","retrieved may","may travelers","travelers weekend","first regular","regular travel","travel magazine","west africa","africa withe","withe aim","travel world","travelers weekend","weekend magazine","african travel","travel quarterly","launched travelers","travelers awards","first attempt","travel environment","travelers awards","akwaabafrican travel","travel market","market akwaabafrican","akwaabafrican travel","travel market","international travel","travel fair","west africa","international dealers","travel tourism","tourism aviation","hospitality industries","africa meets","world akwaabafrican","akwaabafrican travel","travel market","nigerian tourism","tourism development","official travel","travel exhibition","exhibition inigeria","international travel","travel expo","west africa","united nations","nations world","world tourism","tourism organization","organization unwto","partner event","african business","business travel","travel association","akwaaba partnership","partnership ghana","ghana web","web april","april retrieved","retrieved may","may partner","partner event","national association","nigerian travel","travel agencies","w africa","africa tourism","tourism fair","fair media","media trust","trust octoberetrieved","international tourism","tourism trade","trade fairs","fairs association","welcomes akwaabafrican","akwaabafrican travel","july retrieved","retrieved may","may file","file ikechi","ikechi uko","victoria falls","thumb ikechi","ikechi uko","victoria falls","falls zimbabwe","magazine team","wonders nigeria","nigeria popularly","popularly known","naija seven","seven wonders","wonders inigeria","inigeria begins","nigerian voice","voice april","april retrieved","retrieved may","ancient wonders","ancient principles","world seven","seven wonders","wonders nigeria","nigeria july","july retrieved","retrieved may","andetailed search","two years","tourism hospitality","tour experts","public voting","day live","live beyond","beyond naija","naija seven","seven wonders","wonders nigerian","nigerian homepage","homepage july","july retrieved","retrieved may","man made","made wonders","sensitive critical","naija seven","seven wonders","wonders naija","naija wonders","wonders naija","naija wonders","wonders announces","announces results","daily national","national daily","daily january","january retrieved","retrieved may","nigeria seven","seven wonder","wonder sites","punch february","february retrieved","retrieved may","man made","made wonders","wonders nigeria","nigeria driven","seeing new","new things","seeing old","old things","new eyes","eyes naija","naija wonders","wonders nigeria","dramatic breathtaking","unique man","man made","made structure","national bodies","international organizations","organizations minister","naija wonders","wonders project","tourism development","development nigerian","nigerian federal","federal ministry","information february","february retrieved","retrieved may","may one","least known","seven wonders","wonders nigeria","nigeria sites","benin moat","unesco led","naija wonders","benin moat","moat visithe","visithe nation","nation march","march retrieved","retrieved may","may visito","visito benin","benin moat","moat uko","punch march","march retrieved","retrieved may","former director","director general","nigerian tourism","tourism development","development corporation","naija wonders","tourism development","nigeria beyond","beyond naija","naija seven","seven wonders","july retrieved","retrieved may","huge travel","northern statespecially","statespecially abuja","nigeria july","launched abuja","abuja bantaba","bantaba one","one day","travel tourism","tourism business","nation sheraton","sheraton hosts","hosts abuja","abuja bantaba","nation june","june retrieved","retrieved may","may andrew","andrew irokungbowadventures","ikechi uko","uko new","new telegraph","telegraph march","march retrieved","retrieved may","also includes","includes workshop","pace withe","withe rest","th edition","abuja bantaba","bantaba honored","honored personalities","key players","players tourism","tourism development","development inigeria","bantaba honours","nigerian tribune","tribune april","april retrieved","retrieved may","honour top","nation february","february retrieved","retrieved may","online version","african travel","travel quarterly","quarterly magazine","magazine according","forecast market","political analyses","travel transport","global perspective","april retrieved","retrieved may","launched accra","accra weizo","targeted athe","athe founding","founding vision","one people","people integrating","growing together","together accra","accra weizo","weizo rallies","rallies travel","travel professionals","professionals together","meet minds","africa region","region hosting","hosting tourism","tourism aviation","immigration key","key players","akwaaba launches","launches weizo","ghana july","july nigerian","nigerian tribune","tribune retrieved","travel across","across w","w africa","africa daily","daily trust","trust july","july retrieved","international tourism","calabar carnival","carnival ikechi","ikechi uko","uko appointed","carnival calabar","calabar consultant","consultant nigerian","nigerian tribune","tribune septemberetrieved","september ikechi","ikechi uko","presently pushing","build aviation","aviation museum","nigeria using","using abandoned","abandoned aircraft","said thathe","thathe project","project would","would promote","promote nigeria","new generation","draw international","international investors","aviation industry","would serve","brighter future","aviation industry","industry let","use abandoned","abandoned aircraft","aviation museum","museum says","says ikechi","ikechi uko","january retrieved","retrieved may","may naija","naija wonders","aviation museum","disused planes","planes national","national daily","daily january","january retrieved","retrieved may","may tourism","build aviation","aviation museum","television january","january retrieved","retrieved may","may awards","tourism committee","committee nigeria","nigeria vision","promise records","records historic","historic world","world tourism","tourism day","nigerian voice","voice octoberetrieved","may file","file ikechi","ikechi uko","uko receiving","miceast africa","africa tourism","tourism hospitality","hospitality personality","personality award","upright left","left upright","upright alt","alt ikechi","ikechi uko","uko receiving","miceast africa","africa tourism","tourism hospitality","hospitality personality","personality award","july athe","athe th","th anniversary","annual gorilla","gorilla naming","naming ceremony","rwanda one","prestigious festivals","rwanda uko","thousands gather","th edition","newly born","born baby","baby gorillas","rwanda july","july retrieved","july file","file ikechi","ikechi uko","uko athe","athe th","th kwita","upright left","left upright","upright alt","alt ikechi","ikechi uko","uko athe","athe th","th kwita","calabar carnival","cross river","river state","state governor","governor prof","prof ben","withe vision","calabar carnival","number one","one carnival","carnival event","international tourism","tourism consultant","calabar international","international festival","festival ikechi","ikechi uko","uko brought","ten countries","countries across","calabar international","international festival","festival brazilian","brazilian band","band others","others return","calabar carnival","nation retrieved","january withe","withe success","calabar carnival","carnival ikechi","ikechi uko","uko returns","calabar carnival","june ikechi","ikechi uko","uko vast","vast expertise","sheer display","display athe","athe calabar","calabar carnival","cross river","river state","state government","international standard","tourists international","international investors","african sun","sun times","times africa","number one","largest newspaper","ikechi uko","tourism ambassador","year charles","ikechi uko","tourism ambassador","january retrieved","january according","award came","practical tourism","tourism promotion","promotion andevelopment","andevelopment campaign","different pet","world uko","uko wins","wins african","african man","year nigerian","nigerian tribune","tribune january","january retrieved","january athe","athe miceast","miceast africa","africa forum","expo held","ethiopia ikechi","ikechi uko","presented withe","withe miceast","miceast africa","africa tourism","tourism hospitality","hospitality personality","personality award","contributions towards","tourism travel","hospitality businesses","uko wins","wins tourism","tourism awards","june retrieved","category births","births category","category st","st century","century nigerian","nigerian businesspeople","businesspeople category","category branding","branding consultants","consultants category","businesspeople category","category living","living people","people category","category media","media industry","industry businesspeople","businesspeople category","category nigerian","nigerian publishers","publishers people","people category","category tourism","tourism category","category travelers","travelers category","category university"],"new_description":"birth place state nigeria occupation media development expert organizations akwaabafrican travel_market accra weizo abuja bantaba port harcourt bantaba years active present spouse married children website ikechi_uko born january andrew irokungbowadventures ikechi_uko new telegraph march_retrieved september nigerian travel business promoter tourism_development expert pan ikechi_uko shares thoughts tourism african dream septemberetrieved september media consultant journalist author organizer akwaabafrican travel_markethe international_travel fair west weizo abuja port harcourt bantaba project director seven_wonders nigeria naija wonders ceof promotions international mediand tourismarketing firm airlines hotels andestinations across africa ikechi_uko appointed carnival calabar consultant nigerian tribune septemberetrieved september publisher africa travel quarterly magazine early_life ikechi_uko state nigeria born january family samson uko uko n e young age uko eye travel could give anything discover new places attended national secondary school worked ticketing officer abc studied geography athe_university graduated national youth service corps state moved state taught secondary school secondary school returned university tobtain geography emphasis environmental planning remote graduated went ahead tobtain certificate journalism times institute journalism prince practitioners licence father played huge role passion travel samson uko worked withe nigerian railway corporation kept books child ikechi spent holidays reading books travelling new places course father irokungbowadventures ikechi_uko new telegraph march_retrieved_may late mother uko teacher early_life towards geography taught lessons enterprise career file ikechi_uko akwaaba thumb upright left upright alt akwaaba event l r former former nigerian president former president danny ikechi_uko state born travel enthusiast whose dressing incomplete without hat neck well traveled person traveling close days irokungbowadventures ikechi_uko new telegraph march_retrieved_may editor tourism book published mark nigeria hosting organization african unity summit tourism editor happy land happy world tourist_guide happy land happy world nigerian version world certificate occupancy government lack literature deeply documents unique celebrations inigeria published festivals inigeria collaboration withe nigerian tourism_development passion traveling adventures led publication travelers weekend magazine weekly magazine along whiche launched travelers nigeria become major player global tourism ikechi_uko media trust may retrieved_may travelers weekend first regular travel_magazine west africa withe_aim magazine pace africa forerunner travel world_travelers weekend magazine rebranded african travel quarterly launched travelers awards exhibitions first attempt introducing exhibition travel environment travelers awards exhibition rebranded akwaabafrican travel_market akwaabafrican travel_market international_travel fair west africa participation international dealers travel_tourism aviation hospitality industries regarded africa meets world akwaabafrican travel_market designated nigerian tourism_development official travel exhibition inigeria international_travel expo west africa partnership listed united_nations world_tourism organization unwto partner event african business_travel_association west akwaaba partnership ghana web april retrieved_may partner event national association nigerian travel_agencies partners akwaaba w africa tourism fair media trust octoberetrieved may member international_tourism trade fairs association welcomes akwaabafrican travel july_retrieved_may file ikechi_uko victoria falls thumb ikechi_uko victoria falls zimbabwe withe magazine team set committee choose wonders nigeria popularly known naija seven_wonders inigeria begins nigerian voice april retrieved_may inspired poems pliny ancient wonders world ancient principles collection around world seven_wonders nigeria nigeria july_retrieved_may andetailed search two_years tourism_hospitality tour experts public voting day live beyond naija seven_wonders nigerian homepage july_retrieved_may published man_made wonders seven sensitive critical unique selected naija seven_wonders naija wonders naija wonders announces results daily national daily january_retrieved_may nigeria seven wonder sites punch february retrieved_may man_made wonders nigeria driven vision marcel quote journey discovery seeing new things seeing old things new eyes naija wonders nigeria dramatic breathtaking unique man_made structure endorsed national bodies associations tourism international organizations minister naija wonders project tourism_development nigerian federal ministry information february retrieved_may one least known seven_wonders nigeria sites benin moat visited unesco led prof naija wonders benin moat visithe nation march_retrieved_may visito benin moat uko punch march_retrieved_may former director general nigerian tourism_development corporation referred naija wonders advancement tourism_development nigeria beyond naija seven_wonders july_retrieved_may noticed inigeria businesses lagos huge travel northern statespecially abuja capital nigeria july launched abuja bantaba one_day event investors clients travel_tourism business nation sheraton hosts abuja bantaba akwaaba nation june_retrieved_may andrew irokungbowadventures ikechi_uko new telegraph march_retrieved_may_also includes workshop informed going industries keep pace withe rest world celebration centenary nigeria april th_edition abuja bantaba honored personalities key players tourism_development inigeria bantaba honours nigerian tribune april retrieved_may bantaba honour top nation february retrieved_may launched online version african travel quarterly magazine according uko focuses forecast market political analyses development areas travel transport tourism global perspective impact countries partners agm april retrieved_may july launched accra weizo event targeted athe founding vision create region one people integrating growing together accra weizo rallies travel professionals together meet minds work pathway future africa region hosting tourism aviation immigration key players akwaaba launches weizo ghana july nigerian tribune retrieved august weizo travel across w africa daily trust july_retrieved august august appointed international_tourism calabar carnival ikechi_uko appointed carnival calabar consultant nigerian tribune septemberetrieved september ikechi_uko presently pushing proposal build aviation museum nigeria using abandoned aircraft exhibits said thathe project would promote nigeria tourism educate new generation draw international investors aviation industry would serve eye look work brighter future aviation industry let_use abandoned aircraft aviation museum says ikechi_uko january_retrieved_may naija wonders aviation museum disused planes national daily january_retrieved_may tourism build aviation museum television january_retrieved_may awards appointed member tourism committee nigeria vision administration president promise records historic world_tourism day nigerian voice octoberetrieved may file ikechi_uko receiving miceast africa tourism_hospitality personality award thumb upright left upright alt ikechi_uko receiving miceast africa tourism_hospitality personality award ethiopia july athe_th_anniversary kwita annual gorilla naming ceremony rwanda one prestigious festivals rwanda uko chosen government representative nigeria thousands gather celebrate th_edition kwita newly born baby gorillas government republic rwanda july_retrieved july file ikechi_uko athe_th kwita thumb upright left upright alt ikechi_uko athe_th kwita rwanda appointed calabar carnival cross river state governor prof ben withe vision calabar carnival number one carnival event africas international_tourism consultant calabar international festival ikechi_uko brought ten countries across continents world participate calabar international festival brazilian band others return calabar carnival nation retrieved_january withe success calabar carnival ikechi_uko returns calabar carnival octoberetrieved june ikechi_uko vast expertise tourism sheer display athe calabar carnival accolades cross river state government hosting international standard delight tourists international investors january african sun times africa number one largest newspaper ikechi_uko tourism ambassador year charles ikechi_uko tourism ambassador year january_retrieved_january according organizers award award came ikechi practical tourism_promotion andevelopment campaign africa different pet beauty africa world uko wins african man year nigerian tribune january_retrieved_january athe miceast africa forum expo held ethiopia ikechi_uko presented withe miceast africa tourism_hospitality personality award award presented contributions towards developments tourism_travel hospitality businesses investments uko wins tourism awards ethiopia june_retrieved category_births_category st_century nigerian businesspeople category branding consultants category businesspeople category_living_people_category_media industry businesspeople category nigerian publishers people_category_tourism category_travelers category_university alumni"},{"title":"Illustrated Europe","description":"image illustrated europe no png thumb right illustrated europe no imageuropaische wanderbilder no png thumb right europ ische wanderbilder no illustrated europe was a series of travel guide book s to europe published by orell fussli cof z rich and c smith son of london it also appeared in a german languagedition europ ische wanderbilder and a french languagedition l europe illustr the guidescribed localities in austria germany hungary italy and switzerland in the s furthereadingerman ed category travel guide books category series of books category publications established in the s","main_words":["image","illustrated","europe","png_thumb","right","illustrated","europe","png_thumb","right","europ","illustrated","europe","series","travel_guide_book","europe","published","rich","c","smith","son","london","also","appeared","german","europ","french","l","europe","austria","germany","hungary","italy","switzerland","ed","category_travel_guide_books","category_series","books_category","publications_established"],"clean_bigrams":[["image","illustrated"],["illustrated","europe"],["png","thumb"],["thumb","right"],["right","illustrated"],["illustrated","europe"],["png","thumb"],["thumb","right"],["right","europ"],["illustrated","europe"],["travel","guide"],["guide","book"],["europe","published"],["c","smith"],["smith","son"],["also","appeared"],["l","europe"],["austria","germany"],["germany","hungary"],["hungary","italy"],["ed","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","publications"],["publications","established"]],"all_collocations":["image illustrated","illustrated europe","png thumb","right illustrated","illustrated europe","png thumb","right europ","illustrated europe","travel guide","guide book","europe published","c smith","smith son","also appeared","l europe","austria germany","germany hungary","hungary italy","ed category","category travel","travel guide","guide books","books category","category series","books category","category publications","publications established"],"new_description":"image illustrated europe png_thumb right illustrated europe png_thumb right europ illustrated europe series travel_guide_book europe published rich c smith son london also appeared german europ french l europe austria germany hungary italy switzerland ed category_travel_guide_books category_series books_category publications_established"},{"title":"Imaginarium","description":"an imaginarium refers to a place devoted to the imagination there are various types of imaginaria centers largely devoted to stimulating and cultivating the imagination towardscientific artisticommercial recreational or spiritual ends existing imaginariums the imaginarium convention of louisville kentucky louisville kentucky is a writers convention meeting convention that offers panels workshops art a film festival a masquerade ball that hosts a costume cosplay contest it is a melting pot for writers aspiring writers publishers readers and anyone in the creative writing business to meet and network and learn imaginarium takes place september st athe louisville kentucky crown plaza expo center imaginarium for kids is as educational center and licensedaycare in richmond hill ontario the center opened in and provides childcare after school camp and enrichment programs during the weekends the imaginarium aka the imaginarium at dreams playland is a recreational and educational center in vaughan ontario in the center launchedaycare after school and camprograms the imaginarium is a place where students build confidence creativity and leadership skills the imaginarium discovery center is a children science discovery center within the anchorage museum in anchorage alaskanchorage in the ustate of alaska the imaginarium of south texas is a children s museum and informal sciencenter at mall del norte in laredo texas laredo texas the imaginarium sciencenter is a science museum and aquarium in fort myers florida it featuresciencexhibits a d theatre dinosaurs aquarium displays a touch tank with stingrays and more the imaginarium sciencentre of devonportasmania is a hands on science museum that is part of pandemonium discovery and adventure centre imaginarium events is a fetishism fetish nightclub promotion company based in london england their events encourage visitors to explore their sensual imaginations in a friendly safe and consensual space currently their events are held athe unionightclub in vauxhallondon england vauxhall the alan turing imaginarium is an eventspace at bbc mediacityuk in city of salford england imaginaria in popular culture in the imaginarium of doctor parnassus the immortal mystic doctor parnassus runs a nomadic theater troupe who lure people through a mirror that shows them a world of their deepest subconscious desires where their souls are puto the test category tourist attractions category lists of tourist attractions category types of museum category imagination","main_words":["imaginarium","refers","place","devoted","imagination","various","types","centers","largely","devoted","stimulating","cultivating","imagination","recreational","spiritual","ends","existing","imaginarium","convention","louisville_kentucky","louisville_kentucky","writers","convention_meeting","convention","offers","panels","workshops","art","film_festival","masquerade","ball","hosts","costume","cosplay","contest","melting","pot","writers","aspiring","writers","publishers","readers","anyone","creative","writing","business","meet","network","learn","imaginarium","takes_place","september","st","athe","louisville_kentucky","crown","plaza","expo","center","imaginarium","kids","educational","center","richmond","hill","ontario","center","opened","provides","school","camp","enrichment","programs","weekends","imaginarium","aka","imaginarium","dreams","playland","recreational","educational","center","vaughan","ontario","center","school","imaginarium","place","students","build","confidence","creativity","leadership","skills","imaginarium","discovery","center","children","science","discovery","center","within","anchorage","museum","anchorage","ustate","alaska","imaginarium","south","texas","children","museum","informal","sciencenter","mall","del","texas","texas","imaginarium","sciencenter","science","museum","aquarium","fort","florida","theatre","dinosaurs","aquarium","displays","touch","tank","imaginarium","hands","science","museum","part","pandemonium","discovery","adventure","centre","imaginarium","events","fetish","nightclub","promotion","company_based","london_england","events","encourage","visitors","explore","friendly","safe","space","currently","events","held_athe","england","vauxhall","alan","turing","imaginarium","bbc","city","salford","england","popular_culture","imaginarium","doctor","mystic","doctor","runs","nomadic","theater","lure","people","mirror","shows","world","desires","souls","test","category_tourist","attractions_category","lists","tourist_attractions","category_types","museum","category","imagination"],"clean_bigrams":[["imaginarium","refers"],["place","devoted"],["various","types"],["centers","largely"],["largely","devoted"],["spiritual","ends"],["ends","existing"],["imaginarium","convention"],["louisville","kentucky"],["kentucky","louisville"],["louisville","kentucky"],["writers","convention"],["convention","meeting"],["meeting","convention"],["offers","panels"],["panels","workshops"],["workshops","art"],["film","festival"],["masquerade","ball"],["costume","cosplay"],["cosplay","contest"],["melting","pot"],["writers","aspiring"],["aspiring","writers"],["writers","publishers"],["publishers","readers"],["creative","writing"],["writing","business"],["learn","imaginarium"],["imaginarium","takes"],["takes","place"],["place","september"],["september","st"],["st","athe"],["athe","louisville"],["louisville","kentucky"],["kentucky","crown"],["crown","plaza"],["plaza","expo"],["expo","center"],["center","imaginarium"],["educational","center"],["richmond","hill"],["hill","ontario"],["center","opened"],["school","camp"],["enrichment","programs"],["imaginarium","aka"],["dreams","playland"],["educational","center"],["vaughan","ontario"],["students","build"],["build","confidence"],["confidence","creativity"],["leadership","skills"],["imaginarium","discovery"],["discovery","center"],["children","science"],["science","discovery"],["discovery","center"],["center","within"],["anchorage","museum"],["south","texas"],["informal","sciencenter"],["mall","del"],["imaginarium","sciencenter"],["science","museum"],["theatre","dinosaurs"],["dinosaurs","aquarium"],["aquarium","displays"],["touch","tank"],["science","museum"],["pandemonium","discovery"],["adventure","centre"],["centre","imaginarium"],["imaginarium","events"],["fetish","nightclub"],["nightclub","promotion"],["promotion","company"],["company","based"],["london","england"],["events","encourage"],["encourage","visitors"],["friendly","safe"],["space","currently"],["held","athe"],["england","vauxhall"],["alan","turing"],["turing","imaginarium"],["salford","england"],["popular","culture"],["mystic","doctor"],["nomadic","theater"],["lure","people"],["test","category"],["category","tourist"],["tourist","attractions"],["attractions","category"],["category","lists"],["tourist","attractions"],["attractions","category"],["category","types"],["museum","category"],["category","imagination"]],"all_collocations":["imaginarium refers","place devoted","various types","centers largely","largely devoted","spiritual ends","ends existing","imaginarium convention","louisville kentucky","kentucky louisville","louisville kentucky","writers convention","convention meeting","meeting convention","offers panels","panels workshops","workshops art","film festival","masquerade ball","costume cosplay","cosplay contest","melting pot","writers aspiring","aspiring writers","writers publishers","publishers readers","creative writing","writing business","learn imaginarium","imaginarium takes","takes place","place september","september st","st athe","athe louisville","louisville kentucky","kentucky crown","crown plaza","plaza expo","expo center","center imaginarium","educational center","richmond hill","hill ontario","center opened","school camp","enrichment programs","imaginarium aka","dreams playland","educational center","vaughan ontario","students build","build confidence","confidence creativity","leadership skills","imaginarium discovery","discovery center","children science","science discovery","discovery center","center within","anchorage museum","south texas","informal sciencenter","mall del","imaginarium sciencenter","science museum","theatre dinosaurs","dinosaurs aquarium","aquarium displays","touch tank","science museum","pandemonium discovery","adventure centre","centre imaginarium","imaginarium events","fetish nightclub","nightclub promotion","promotion company","company based","london england","events encourage","encourage visitors","friendly safe","space currently","held athe","england vauxhall","alan turing","turing imaginarium","salford england","popular culture","mystic doctor","nomadic theater","lure people","test category","category tourist","tourist attractions","attractions category","category lists","tourist attractions","attractions category","category types","museum category","category imagination"],"new_description":"imaginarium refers place devoted imagination various types centers largely devoted stimulating cultivating imagination recreational spiritual ends existing imaginarium convention louisville_kentucky louisville_kentucky writers convention_meeting convention offers panels workshops art film_festival masquerade ball hosts costume cosplay contest melting pot writers aspiring writers publishers readers anyone creative writing business meet network learn imaginarium takes_place september st athe louisville_kentucky crown plaza expo center imaginarium kids educational center richmond hill ontario center opened provides school camp enrichment programs weekends imaginarium aka imaginarium dreams playland recreational educational center vaughan ontario center school imaginarium place students build confidence creativity leadership skills imaginarium discovery center children science discovery center within anchorage museum anchorage ustate alaska imaginarium south texas children museum informal sciencenter mall del texas texas imaginarium sciencenter science museum aquarium fort florida theatre dinosaurs aquarium displays touch tank imaginarium hands science museum part pandemonium discovery adventure centre imaginarium events fetish nightclub promotion company_based london_england events encourage visitors explore friendly safe space currently events held_athe england vauxhall alan turing imaginarium bbc city salford england popular_culture imaginarium doctor mystic doctor runs nomadic theater lure people mirror shows world desires souls test category_tourist attractions_category lists tourist_attractions category_types museum category imagination"},{"title":"Imaginary voyage","description":"imaginary voyage is a kind of narrative in which utopia n or satire satirical representation or some popular science content is put into a fictional frame of travel account history it is very archaic narrative technique preceding romanticism romance and novel istic forms two known examples from greek literature areuhemerusacred history and iambulus islands of the sun their utopian islands are apparently modeled fromythological fortunate isles lucian s true history parodizes the whole genre of imaginary voyage and in his foreword lucian cites iambulus as one of objects of parody photios i of constantinople photiustates though in his bibliotheca photius bibliotheca that its main object was antonius diogenes the incredible wonders beyond thule a genre blending ofantastic voyage and greek romance which popularized pythagoreanism pythagorean teachings the firsto revive this form in the modern era was thomas more in his utopia book utopia to be followed a century later by proliferation of utopian islands johannes valentinus andreae s reipublicae christianopolitanae descriptio tommaso campanella s the city of the sun francis bacon s new atlantis jacobidermann s utopia denis vairasse the history of the sevarambi gabriel de foigny s la terre australe connue gabriel daniel s voyage du monde descartes fran ois lefebvre s relation du voyage de l isle d eutopie as well as many others lucian satiricaline was exploited by fran ois rabelais gargantuand pantagruel andeveloped later on in josephall bishop josephall s mundus alter et idem fran ois h delin s histoire du temps cyrano de bergerac writer cyrano de bergerac s histoire comique contenant les tats et empires de la lune and fragments d histoire comique contenant les tats et empires du soleil charlesorel s nouvelle d couverte du royaume de frisquemore margaret cavendish s the blazing world joshua barnes gerania bernarde fontenelle s relation de le de born o daniel defoe s the consolidator and most notably in jonathan swift s gulliver s travels imaginary voyage has become a natural medium for promoting new astronomic ideas first literary space flights after lucian were juan maldonado somnium johann kepler somnium francis godwin s the man in the moone john wilkins the discovery of a world in the moone athanasius kircher s itinerarium extaticum david russen s iter lunare diego de torres villarroel s viaje fant stico eberhard kindermann s die geschwinde reise auf dem luftschiff nach der obern welthe first flighto planets robert paltock s the life and adventures of peter wilkins voltaire s microm gas literature fantastic voyage in encyclopedia of science fiction ed by john clute david winston iambulus islands of the sun and hellenistic literary utopias in science fiction studies volume part november externalinks derrick moors imaginary voyages about us category science fiction genres category literary genres category travel writing category science fantasy","main_words":["imaginary","voyage","kind","narrative","utopia","n","representation","popular_science","content","put","fictional","frame","travel","account","history","narrative","technique","preceding","romanticism","romance","novel","forms","two","known","examples","greek","literature","history","islands","sun","islands","apparently","modeled","lucian","true","history","whole","genre","imaginary","voyage","foreword","lucian","cites","one","objects","parody","constantinople","though","main","object","incredible","wonders","beyond","genre","voyage","greek","romance","popularized","firsto","revive","form","modern","era","thomas","utopia","book","utopia","followed","century","later","proliferation","islands","johannes","city","sun","francis","bacon","new","atlantis","utopia","denis","history","gabriel","de_la","terre","gabriel","daniel","voyage","monde","fran_ois","relation","voyage","de","l","isle","well","many_others","lucian","exploited","fran_ois","andeveloped","later","bishop","alter","fran_ois","h","histoire","temps","de","writer","de","histoire","les","empires","de_la","fragments","histoire","les","empires","nouvelle","de","margaret","world","joshua","barnes","relation","de","de","born","daniel","consolidator","notably","jonathan","travels","imaginary","voyage","become","natural","medium","promoting","new","ideas","first","literary","space","flights","lucian","juan","maldonado","johann","francis","man","moone","john","discovery","world","moone","david","diego","de","viaje","stico","die","reise","auf","dem","nach","der","robert","life","adventures","peter","gas","literature","fantastic","voyage","encyclopedia","science_fiction","ed","john","david","winston","islands","sun","literary","science_fiction","studies","volume","part","november","externalinks","imaginary","voyages","us","category","science_fiction","genres","category","literary","genres","category_travel","science","fantasy"],"clean_bigrams":[["imaginary","voyage"],["utopia","n"],["popular","science"],["science","content"],["fictional","frame"],["travel","account"],["account","history"],["narrative","technique"],["technique","preceding"],["preceding","romanticism"],["romanticism","romance"],["forms","two"],["two","known"],["known","examples"],["greek","literature"],["apparently","modeled"],["isles","lucian"],["true","history"],["whole","genre"],["imaginary","voyage"],["foreword","lucian"],["lucian","cites"],["main","object"],["incredible","wonders"],["wonders","beyond"],["greek","romance"],["firsto","revive"],["modern","era"],["utopia","book"],["book","utopia"],["century","later"],["islands","johannes"],["sun","francis"],["francis","bacon"],["new","atlantis"],["utopia","denis"],["gabriel","de"],["de","la"],["la","terre"],["gabriel","daniel"],["fran","ois"],["voyage","de"],["de","l"],["l","isle"],["many","others"],["others","lucian"],["fran","ois"],["andeveloped","later"],["fran","ois"],["ois","h"],["empires","de"],["de","la"],["world","joshua"],["joshua","barnes"],["relation","de"],["de","born"],["travels","imaginary"],["imaginary","voyage"],["natural","medium"],["promoting","new"],["ideas","first"],["first","literary"],["literary","space"],["space","flights"],["juan","maldonado"],["moone","john"],["diego","de"],["reise","auf"],["auf","dem"],["nach","der"],["first","flighto"],["gas","literature"],["literature","fantastic"],["fantastic","voyage"],["science","fiction"],["fiction","ed"],["david","winston"],["science","fiction"],["fiction","studies"],["studies","volume"],["volume","part"],["part","november"],["november","externalinks"],["imaginary","voyages"],["us","category"],["category","science"],["science","fiction"],["fiction","genres"],["genres","category"],["category","literary"],["literary","genres"],["genres","category"],["category","travel"],["travel","writing"],["writing","category"],["category","science"],["science","fantasy"]],"all_collocations":["imaginary voyage","utopia n","popular science","science content","fictional frame","travel account","account history","narrative technique","technique preceding","preceding romanticism","romanticism romance","forms two","two known","known examples","greek literature","apparently modeled","isles lucian","true history","whole genre","imaginary voyage","foreword lucian","lucian cites","main object","incredible wonders","wonders beyond","greek romance","firsto revive","modern era","utopia book","book utopia","century later","islands johannes","sun francis","francis bacon","new atlantis","utopia denis","gabriel de","de la","la terre","gabriel daniel","fran ois","voyage de","de l","l isle","many others","others lucian","fran ois","andeveloped later","fran ois","ois h","empires de","de la","world joshua","joshua barnes","relation de","de born","travels imaginary","imaginary voyage","natural medium","promoting new","ideas first","first literary","literary space","space flights","juan maldonado","moone john","diego de","reise auf","auf dem","nach der","first flighto","gas literature","literature fantastic","fantastic voyage","science fiction","fiction ed","david winston","science fiction","fiction studies","studies volume","volume part","part november","november externalinks","imaginary voyages","us category","category science","science fiction","fiction genres","genres category","category literary","literary genres","genres category","category travel","travel writing","writing category","category science","science fantasy"],"new_description":"imaginary voyage kind narrative utopia n representation popular_science content put fictional frame travel account history narrative technique preceding romanticism romance novel forms two known examples greek literature history islands sun islands apparently modeled isles lucian true history whole genre imaginary voyage foreword lucian cites one objects parody constantinople though main object incredible wonders beyond genre voyage greek romance popularized firsto revive form modern era thomas utopia book utopia followed century later proliferation islands johannes descriptio city sun francis bacon new atlantis utopia denis history gabriel de_la terre gabriel daniel voyage monde fran_ois relation voyage de l isle well many_others lucian exploited fran_ois andeveloped later bishop alter fran_ois h histoire temps de writer de histoire les empires de_la fragments histoire les empires nouvelle de margaret world joshua barnes relation de de born daniel consolidator notably jonathan travels imaginary voyage become natural medium promoting new ideas first literary space flights lucian juan maldonado johann francis man moone john discovery world moone david diego de viaje stico die reise auf dem nach der first_flighto robert life adventures peter gas literature fantastic voyage encyclopedia science_fiction ed john david winston islands sun literary science_fiction studies volume part november externalinks imaginary voyages us category science_fiction genres category literary genres category_travel writing_category science fantasy"},{"title":"Impacts of tourism","description":"the study of the impacthatourism has on environment and communities involved is relatively new impacts are not easily categorized having direct and indirect componentsmason tourism impacts planning and management an introduction tourism impacts chapter also tourism is often seasonal and impacts only become apparent after time with varying effects and at different stages of developmentpearce d g butler w tourism research critiques and challenges routledge tourism research critiques and challenges routledge there are three main categories environmental impacts that affecthe carrying capacity of the area vegetation air quality bodies of water the water table wildlife and natural phenomena social and cultural impacts associated with interactions between peoples and culture background attitudes and behaviors and relationships to material goodsmason p the socio cultural impacts of tourism impacts planning and management chapter the introduction of tourists to sensitive areas can be detrimental cause a loss of culture or alternatively contribute to the preservation of culture and cultural sites through increased resources economic impacts usually seen as positive contributing to employment better services and social stabilityrollins r dearden p and fennell d tourism ecotourism and protected areas in p dearden rollins and m needham ed parks and protected areas in canada planning and management fourth edition pp torontoxford universitypress yethese impacts can also contribute to high living costs within the community pushing local business out of the areas and raising costs for locals environmental impacts ecotourism nature tourism wildlife tourism and adventure tourism all take place in topologiesuch as rain forest s high alpine wilderness lakes and rivers coastlines and marinenvironment as well as rural villages and coastline resorts withe desire for people to more authentic and challenging experiences their destinations become moremote and occupy the few remaining pristine and natural environments left on the planethe positive impact of this can be an increased environmental awareness of pro environmental behaviourmoghimehfar f halpenny e a how do people negotiate through their constraints to engage in pro environmental behavior a study ofront country campers in alberta canada tourismanagementhe negative impact can be a destruction of the very experience that people are seeking there are direct and indirect impacts immediate and long term impacts and there are impacts that are both proximal andistal to the tourist destination these impacts can be separated into three categories facility impacts tourist activities and the transit effect facility impacts this when a regional area develops from exploration to involvement and then into the development stage of the tourist area life cycle modelbutler w the concept of a tourist area cycle of evolution implications for management of resources the canadian geographer le g ographe canadien during the latter phase there can be both direct and indirect environmental impacts through the construction of superstructure such as hotels restaurants and shops and infrastructure such as roads and power supply as the destination develops more touristseek outhexperience consequently their impacts increase accordingly the requirement for water for washing waste disposal andrinking increases rivers can be altered excessively extracted and polluted by the demand placed by the facility noise pollution has the capacity to disturb wildlife and alter behavior and light pollution can disrupthe feeding and reproductive behaviour of many creatures when power isupplied by diesel or gasoline generators there is additional noise and pollution general waste and garbage are also a result of the facilities as more tourists arrive there is an increase in food and beverages consumed which in turn creates waste plastic and non biodegradable products tourist activities for many tourists the main reason for their vacation is to engage in various types of physical activities and enjoy interacting with nature in a way thathey would not ordinarily be able to do these activitiesuch as hiking trekking kayaking bird watching wildlife safari surfing snorkelling scuba diving all have an impact on the local ecology even the most environmentally aware tourist cannot help cause some degree of impact while partaking in their activity there are a range of impacts from hiking trekking and camping that directly affecthe activity area the most obvious is therosion and compaction of the trail itself the daily use of the trail by hikers the trail wears the trail down and compacts it if there are any obstaclesuch as fallen trees or puddles of mud then the trail becomes widened or informal trails are created to bypass the obstaclemarion jl recreation ecology research findings implications for wilderness and park managers in proceedings of the national outdoor ethics conference april st louis mo gaithersburg md izaak walton league of america pp there is a multitude of other direct impacts exacted on the tread area such as damage oremoval of vegetation loss of vegetation height reduction in foliage cover exposure of tree root systems migration of trampled vegetation and immigration of nonative species marion j leung y f trail resource impacts and an examination of alternative assessmentechniques journal of park and recreation administration as well as the direct impacts there are indirect impacts on the trailsuch as a change in soil porosity changes to microflora composition problems with seedispersion and germination andegradation of the soil nutrient compositionhammitt w e cole d n monz c a wildland recreation ecology and management john wiley sons as many hikers and trekkers partake in multi day trips a large number will camp overnight either in formal orandom campgrounds there are similar impacts on campgroundsuch asoil compaction erosion and composition loss of vegetation and foliage plus the additional issues of campfires for cooking and heat informal trails are created around the campsite in order to collect firewood and water and trees and saplings can be trampledamaged or cut down for fuel theat or burning of the campfire can harm the tree root system in formal campgrounds tent pad areas are normally devoid of any vegetation while random camping can damage sensitive plants and grasses during a single overnight stay as with most recreation activities including hiking and camping there will be waste generated food scraps and human waste in both cases this can cause human wildlife interactionsuch as the habituation of wildlife to human contact and unusual food sources this can have a detrimental effect on the wildlife and cause danger for the human the provision for deposit collection and removal of all waste will also have a direct impact on the local environment another activity that can have severe direct and indirect impacts on thenvironment is wildlife viewing this happens in a range oformats on land in the ocean wildlife safaris in african countriesuch as kenya botswanand tanzania have been very popular for manyears they specialize in the big five game big five gamegafauna the african lion african elephant african leopard cape buffalo and rhinoceros as with every human wildlife interaction there is a change in the natural interaction of the species the very presence of humans can increase theart rate and stress hormones of even the largest animalmillspaugh j burke t dyk g slotow r washburn b e woods r j stress response of working african elephant s to transportation and safari adventures the journal of wildlife management other changes in behavior have been recognized for example baboons and hyenas have learnto track tourist safari vehicles to lead them to cheetah kills which they then stealroe d leader williams n dalal clayton d b take only photographs leave only footprints thenvironmental impacts of wildlife tourism no iied this direct impact of tourism can severely damage the delicate balance of the food webs and keystone species in a similar vein there is a small but significant number of tourists that choose to pay vast sums of money in order to trophy hunting trophy hunt lion s rhino leopard s and even giraffes it has been argued thathere is a positive and negative direct and indirect environmental impact caused by trophy hunting there is a continuediscussion at federal and international government level as to thethics ofunding conservation efforts throughunting activitiesripple w j newsome t m kerley g i does trophy hunting support biodiversity a response to di minin et al trends in ecology evolution another tourism destination activity iscuba diving there are many negative direct environmental impacts caused by recreational diving the most apparent is the damage caused by poorly skillediverstanding on the reef itself or by accidentally hitting the fragile coral witheir finstudies have shown that na ve divers who are participating in underwater photography are considerably more likely to accidentally damage the reefsorice m g oh c o ditton r b managing scuba divers to meet ecological goals for coral reef conservation ambio a journal of the human environment as the cost of underwater photography equipment has reduced and the availability increased it is inevitable thathere will be an increase of direct damage to reefs by divers other direct impact include over fishing for marine curiosedimentation and in fillhawkins j p roberts c m the growth of coastal tourism in the red sea present and futureffects on coral reefs ambio there is also direct environmental impact due to disturbed and altered species behaviour from fish feeding as well as import of invasive species and pollution caused by dive boats there are also indirect impactsuch ashoreline construction of superstructure and infrastructure transit effectsince there has been a steadyearly increase in the amount of tourist arrivals worldwide of approximately in there were million tourist arrivals worldwide of which arrived air travel by air million by motor vehicle ship transport by water million and percent by rail travel rail million world tourism organization unwtourism highlights edition internet accessed onov th to puthese figures into context a seven hour flight on a boeing produces tonnes of co which is thequivalent of driving an average size family saloon car for a days or thenergy requirement for an average family home for nearly seventeen yearsyou sustainternet available from wwwyousustaincom accessed onov th withever increasing amount of tourist arrivals there is an ever increasing amount of global greenhouse gases ghg being produced by the tourism industry in it is estimated that of the global ghg release was attributed to air travel alone the irony is that as moreco touristseek remote pristine undeveloped regions and practise low impact leave no trace adventure vacations their ghg contributions have increased exponentially as a result of the accumulation of ghgs the annual average global temperature is rising each year new records were set in and it is predicted that will yet again exceed the previous highest average global temperaturerosenzweig c karoly d vicarelli m neofotis p wu q casassa g tryjanowski p attributing physical and biological impacts to anthropogeniclimate change nature intergovernmental panel on climate change ipcc internet available from accessed onov th it is causing the oceans to warm and causing increased frequency of abnormal weather eventsuch as floods and hurricanes the increase in the amount of co dissolved into the oceans is changing the ph leading tocean acidification of the oceans which in turn has led to coral bleaching of coral reef s worldwide in it was determined thathe world s largest coral reef the great barriereef iso badly affected by bleaching that only ten percent remained unspoiled and the remaining ninety percent has varying degrees of degradationcoral coalition great barriereef bleaching internet available from wwwcoralcoeorgau accessed onov th a recently discovered issue in the pacific northwest caused by acidification is the decreased survival of pteropod s a key source ofood for salmon these microscopic invertebrates known asea butterflies are unable to form their outer shells andieorr j c fabry v j aumont o bopp l doney s c feely r a key r m anthropogenic ocean acidification over the twenty first century and its impact on calcifying organisms nature these tiny creatures make up a significant portion of the salmon diet withouthis nutrition available to the salmon they may not grow to maturity and return to their spawningrounds to reproduce and provide food for the bears nutrient cycle nutrients through the forest where tourist come to view or hunthe bears thus the food web is disturbed anthropogeniclimate change has both a direct and indirect impact on tourism socio cultural impacts of tourism an inherent aspect of tourism is the seeking of authenticity the desire to experience a different cultural setting in its natural environment fernandes fagence although cultural tourism provides opportunities for understanding and education there are some serious impacts that arise as a result it is not only the volume of tourism that is important here buthe types of social interaction s that occur between tourist and hosthere are three broad effects athe localevel the commodification of culture the demonstration effect and the acculturation of another culture commodification of culture it is common for destinations to use some aspect of culture as a means to attractourists this means making culture a commodity and hence packaging and selling it for consumption it is through this attaching of economic value to heritage that it loses its inherent meaning this in turn leads to fundamental social and cultural changes and sometimes even to themergence of a culture which is no longer authentic however the cultural tourists that come to experience the local culture wanto see authenticity and not what results from commodification the more staged a culture becomes the less attractive it becomes tourists hence increased commodification generally leads to a decrease in tourism yet commodification can bring benefits it allows for the sharing of culture griffin et al it brings economic benefits which can solve social problems empower the community and give it influence over governmental decisions it may also reinvigorate interest in lost arts and skills and foster community cohesion demonstration effect a demonstration effect occurs when there is a high degree of difference between the host and the tourist as is common when tourists visit developing communities mason tourism impacts planning and managementhe tourist demonstrates a way of life that seems desirable and this copied to varying extents it is mainly themulation of tourist consumption patterns but can also includes behaviours attitudes and even certain ways of thinking the youth are particularly vulnerable this can drive a wedge between the old and the new and widen the generation gap between parent and child the acculturation from tourism is not as pronounced as acculturation which occurs when the a culture isubsumed within a dominant culture as in migration here it is more a case of the developed world out competing the culture of the developing world this creates detachment for thexisting culture potentially it can also affects the visitors experience and affecthe authenticity of the cultural experience positive socio cultural impacts of tourism can beneficial for the host community as it provides the financial means and the incentive to preserve cultural histories local heritage sites and customs it stimulates interest in local crafts traditional activitiesongs dance and oral histories it alsopens up the community to the wider world new ideas new experiences and neways of thinkingryan c recreational tourism demand impacts vol channel view publications negative socio cultural impacts there can be negativeffects from cultural interactionslong v h techniques for socially sustainable tourism development lessons fromexico department of geography publication series university of waterloo tourists can violate customs dearden p cultural aspects of tourism and sustainable developmentourism and the hilltribes of northern thailandepartment of geography publication series university of waterloo andisrespect culturally sensitive locations the introduction of different cultural beliefs by visitors tends to create disconnects between the older and younger generations locals can suffer increased stresses trying to co exist with tourists the number of tourists can overwhelm the host community challenging their ability to preserve their lifestyle another potential impact is the rise of illicit activitiesuch as prostitution substance abuse drug use and crimeconomic impacts global tourism in contributed billion to the world s gross domestic product gdp with its total contribution rising to almost of world gross domestic product gdp turner travel and tourism economic impact world ppublication london wto this influx of gross domestic product gdp comes from the over billion international tourists worldwide a number that has been growing by annually since muchapondwa e stage j theconomic impacts of tourism in botswanamibiand south africa is poverty subsiding natural resources forum norjanah mohd b jaafar masturand mohamadiana perceptions of local communities on theconomic impacts of tourism development in langkawi malaysia shs web of conferences vol pp visitation and economicontributions to gross domestic product gdp arexpected to continue to rise in the near future as falling oil prices contribute to reduced living costs and increased available income for households as well as reduced costs for air travel tourism can be divided into subcategories into which impacts fall spending from visitors on tourism experiences like beacholidays and theme parks domestic and international spending on leisure items like bicycles businesspending and capital investmentzhang j madsen b jensen butler c regional economic impacts of tourism the case of denmark regional studies theconomicontribution of tourism is felt in both direct and indirect ways where direct economic impacts are created when commodities like the following are sold accommodation and entertainment food and beverageservices and retail opportunities residents visitors businesses and various levels of governments municipal to federall influence directourism impacts through their spending in or near a given tourism areagoeldner c ritchie j b tourism principles practices philosophies john wiley sons the key component of direct economic impacts of tourism is thathey occur within a country s borders and are implemented by residents and non residents for business and leisure purposes in contrast indirect economic impacts of tourism can be found investment spending surrounding a tourism offering from private and governmental interests this investment may not explicitly be related tourism but benefits the tourist and local project stakeholders all the same indirect impacts of tourism arexemplified by the purchase and sale of intermediary items like additional supplies forestaurants during the high tourism season or widened sidewalks in busy downtown centres indirect economic impacts the supply chainvestment and government collective account for of the total gdp contribution from travel and tourism induced spending the re circulation of a tourist dollar within a community is another way thatourism indirectly has an impact on a communityrollins r dearden p and fennell d tourism ecotourism and protected areas in p dearden rollins and m needham eds parks and protected areas in canada planning and management fourth edition pp torontoxford university press for example a foreign tourist injects money into the local economy when they spend a dollar on a souvenir made by a local athe tourism destination that individual goes on to spend that dollar on lunch from a local vendor and that vendor goes on to spend it locally toomason p tourism impacts planning and management routledgewagner j estimating theconomic impacts of tourism annals of tourism research positive and negativeconomic impacts of tourism there are both positive and negativeffects on communities related to theconomic impacts of tourism in their communities a positive impact can refer to the increase in jobs a higher quality of life for locals and an increase in wealth of an area tourism also has the advantage of rebuilding and restoring historic sites and encouraging the revitalization of culturesrobert wyllie tourism and society a guide to problems and issues venture publishing state college pennsylvania chapters a positive impact is to increase or to make better either for the touristhe host community and residence and or the tourist destination the positive impacts arelated more to the materialistic well being rather than to the happiness of a host community or tourist kyungmi k doctor of philosophy in hospitality and tourism and managementheffects of tourism impacts upon quality of life of residents in the community virginia polytechnic institute and state university retrieved from november the tourist destination is having positive impacts if there have been improvements to the natural environment such as protectionational parks or man made infrastructure waste treatment plantstourism provides theconomic stimulus to allow for diversification of employment and income potential andevelop resources within the community improvements infrastructure and services can benefit bothe locals and the tourists whereas heritage tourism focus on the local history or historical eventhat occurred in the areand tends to promoteducation pigram j planning for tourism in rural areas bridging the policy implementation gap tourism research critiques and challenges routledge london positive impacts begin when there is an increase in job opportunities for locals as the tourism industry becomes more developed there is also an increase in average income that spreads throughouthe community when tourism is capitalized on in addition the local economy istimulated andiversified goods are manufactured more locally and new markets open for local business owners to expand to unfortunately these benefits are not universal or invulnerable while moremployment may be available tourism related jobs are often seasonal and low paying for entrants into the job market prices are known to fluctuate throughouthe year they rise in the high tourism season to take advantage of more tourist dollars but have the sideffect of pricingoods above theconomic reach of local residents effectively starving them out of a place that was once their home negative impacts are theffects that are caused in most cases athe tourist destination site with detrimental impacts to the social and cultural areas well as the natural environment as the population increaseso do the impacts resources become unsustainable and exhausted the carrying capacity for tourists in a destination site may become depletedjg nelson r butler g wall tourism and sustainable development a civic approacheritage resourcentre joint publicationumber university of waterloo andepartment of geography publication series number university of waterloo typically whenegative impacts are occurring it is too late to place restrictions and regulations tourist destinationseem to discover that many of the negative impacts are found in the development stage of the tourism area life cycle talc nelson j g butler wall g tourism and sustainable development a civic approach department of geography university of waterloo canadadditionally theconomics of tourism have been shown to push out local tourism business owners in favour of strangers to the region foreign ownership creates leakage revenues leaving the host community for another nation or multi national business which strip the opportunity for locals to make meaningful profitstyrrell t johnston r j theconomic impacts of tourism a special issue journal of travel research the foreign companies are also known to hire non resident seasonal workers because they can pay those individuals lower wages which further contributes to economic leakage tourism can raise property prices near the tourism area effectively pushing out locals and encouraging businesses to migrate inwards to encourage and take advantage of more tourist spending employment and both its availability and exclusivity are subsets of economic impacts of tourism travel and tourism create of the total available jobs worldwide in bothe direct and indirectourism sectors directourism jobs those that provide the visitor witheir tourism experience include but are not limited to accommodation building cleaning managing food andrink services entertainment manufacturing and shopping indirectourism employment opportunities include the manufacturing of aircraft boats and other transportation as well as the construction of additional superstructure and infrastructure necessary to accommodate these travel products airports harbours etc tourism satellite accountsa the world travel and tourism council wttc tourism satellite accountsa is a system of measurement recognized by the united nations to define thextent of an economic sector that is not so easily defined as industries like forest industry forestry or oil and gas industry oil and gas tourism does not fit neatly into a statistical model because it is not so much dependent on the physical movement of products and services as it is on the position of the consumer therefore tsas were designed to standardize these many offerings for an international scale to facilitate better understanding of currentourism circumstances locally and abroad the standardization includes concepts classifications andefinitions and is meanto enable researchers industry professionals and the average tourism business owner to view international comparisons before tsas were widely implemented a gap existed in the available knowledge aboutourism as an economic driver for gross domestic product gdp employment investment and industry consumption indicators were primarily approximations and therefore lacking in scientific and analytical viewpointsbuhalis d costa c tourismanagement dynamics trends management and toolsroutledge this gap meant missed opportunities for development as tourism stakeholders were unable to understand where they might be able to better establish themselves in the tourism economy for example a tsa can measure tax revenues related tourism which is a key contributor to the level of enthusiasm any level of government might have towards potential tourism investment in addition tyrrell and johnston suggesthat stakeholders in tourism benefit from the tsa because it provides credible data on the impact of tourism and the associated employment is a framework forganizing statistical data on tourism is an international standard endorsed by the un statistical commission is an instrument for designing economic policies related tourism development provides data on tourism s impact on a nation s balance of payments provides information tourism human resource characteristics through collection of more qualitative datand translating it into a more concise and effective form for tourism providers tsas are able to fill the previous knowledge gap information delivered and measured by a tsa includes tax revenues economic impact onational balances human resources employment and tourism s contribution to gross domestic product projections for predictions for thextento which impacts of tourism will impacthe world economy world s economic system appear to agree thathe number of international tourist arrivals will reach approximately billion by the year of those tourists billion arexpected to be intra regional and million to be long haul of these travelers arrivals in developing countries arexpected to continue growing from the recorded of total arrivals recorded in as access to these moremote locations becomes easier direct contributions of travel and tourism to the world economy and gross domestic product gdp arexpected to rise from in to in withe most impacts found in the investment and supply chain sectors employment ratemployment is anticipated to rise parallel to gdp contributions reaching of world employment in up from in directourism employment in will be an estimated of total world employment up from approximately in while indirectourism employment will be at approximately up from in see also sustainable tourism references category tourism category economy and thenvironment","main_words":["study","environment","communities","involved","relatively","new","impacts","easily","categorized","direct","indirect","tourism","impacts","planning","management","introduction","tourism","impacts","chapter","also_tourism","often","seasonal","impacts","become","apparent","time","varying","effects","different","stages","g","butler","w","tourism_research","critiques","challenges","routledge","tourism_research","critiques","challenges","routledge","three","main","categories","environmental_impacts","affecthe","carrying_capacity","area","vegetation","air","quality","bodies","water","water","table","wildlife","natural","phenomena","social","cultural","impacts","associated","interactions","peoples","culture","background","attitudes","behaviors","relationships","material","p","socio","cultural","impacts","tourism","impacts","planning","management","chapter","introduction","tourists","sensitive","areas","detrimental","cause","loss","culture","alternatively","contribute","preservation","culture","cultural","sites","increased","resources","economic_impacts","usually","seen","positive","contributing","employment","better","services","social","r","dearden","p","tourism_ecotourism","protected_areas","p","dearden","needham","ed","parks","protected_areas","canada","planning","management","fourth_edition","pp","impacts","also","contribute","high","living","costs","within","community","pushing","local","business","areas","raising","costs","locals","environmental_impacts","ecotourism","nature","tourism_wildlife","tourism","adventure_tourism","take_place","rain","forest","high","alpine","wilderness","lakes","rivers","well","rural","villages","coastline","resorts","withe","desire","people","authentic","challenging","experiences","destinations","become","moremote","occupy","remaining","pristine","natural_environments","left","positive","impact","increased","environmental","awareness","pro","environmental","f","e","people","negotiate","constraints","engage","pro","environmental","behavior","study","country","campers","alberta_canada","negative","impact","destruction","experience","people","seeking","direct","indirect","impacts","immediate","long_term","impacts","impacts","tourist_destination","impacts","separated","three","categories","facility","impacts","tourist_activities","transit","effect","facility","impacts","regional","area","develops","exploration","involvement","development","stage","tourist","area","life","cycle","w","concept","tourist","area","cycle","evolution","implications","management","resources","canadian","geographer","g","latter","phase","direct","indirect","environmental_impacts","construction","hotels_restaurants","shops","infrastructure","roads","power","supply","destination","develops","consequently","impacts","increase","accordingly","requirement","water","washing","waste","disposal","andrinking","increases","rivers","altered","extracted","demand","placed","facility","noise","pollution","capacity","disturb","wildlife","alter","behavior","light","pollution","feeding","reproductive","behaviour","many","creatures","power","diesel","gasoline","generators","additional","noise","pollution","general","waste","garbage","also","result","facilities","tourists","arrive","increase","food","beverages","consumed","turn","creates","waste","plastic","non","products","tourist_activities","many","tourists","main","reason","vacation","engage","various","types","physical","activities","enjoy","interacting","nature","way","thathey_would","ordinarily","able","activitiesuch","hiking","trekking","kayaking","bird","watching","wildlife","safari","surfing","scuba","diving","impact","local","ecology","even","environmentally","aware","tourist","cannot","help","cause","degree","impact","activity","range","impacts","hiking","trekking","camping","directly","affecthe","activity","area","obvious","trail","daily","use","trail","hikers","trail","trail","fallen","trees","mud","trail","becomes","informal","trails","created","bypass","recreation","ecology","research","findings","implications","wilderness","park","managers","proceedings","national","outdoor","ethics","conference","april","st_louis","walton","league","america","pp","multitude","direct","impacts","area","damage","vegetation","loss","vegetation","height","reduction","foliage","cover","exposure","tree","root","systems","migration","vegetation","immigration","species","marion","j","leung","f","trail","resource","impacts","examination","alternative","journal","park","recreation","administration","well","direct","impacts","indirect","impacts","change","soil","changes","composition","problems","soil","w","e","cole","n","c","recreation","ecology","management","john","wiley","sons","many","hikers","multi","day_trips","large_number","camp","overnight","either","formal","campgrounds","similar","impacts","erosion","composition","loss","vegetation","foliage","plus","additional","issues","campfires","cooking","heat","informal","trails","created","around","campsite","order","collect","firewood","water","trees","cut","fuel","theat","burning","campfire","harm","tree","root","system","formal","campgrounds","tent","pad","areas","normally","vegetation","random","camping","damage","sensitive","plants","grasses","single","overnight","stay","recreation","activities","including","hiking","camping","waste","generated","food","human","waste","cases","cause","human","wildlife","wildlife","human","contact","unusual","food","sources","detrimental","effect","wildlife","cause","danger","human","provision","deposit","collection","removal","waste","also","direct","impact","local","environment","another","activity","severe","direct","indirect","impacts","thenvironment","wildlife","viewing","happens","range","land","ocean","wildlife","safaris","african","countriesuch","kenya","tanzania","popular","manyears","specialize","big","five","game","big","five","african","lion","african","elephant","african","leopard","cape","buffalo","rhinoceros","every","human","wildlife","interaction","change","natural","interaction","species","presence","humans","increase","theart","rate","stress","even","largest","j","burke","g","r","b","e","woods","r","j","stress","response","working","african","elephant","transportation","safari","adventures","journal","wildlife","management","changes","behavior","recognized","example","baboons","track","tourist","safari","vehicles","lead","cheetah","leader","williams","n","clayton","b","take","photographs","leave","thenvironmental","impacts","wildlife","tourism","direct","impact","tourism","severely","damage","delicate","balance","food","species","similar","vein","small","significant","number","tourists","choose","pay","vast","sums","money","order","trophy","hunting","trophy","hunt","lion","leopard","even","argued","thathere","positive","negative","direct","indirect","environmental_impact","caused","trophy","hunting","federal","international","government","level","thethics","ofunding","conservation_efforts","w","j","g","trophy","hunting","support","biodiversity","response","trends","ecology","evolution","another","tourism_destination","activity","diving","many","negative","direct","environmental_impacts","caused","recreational","diving","apparent","damage","caused","poorly","reef","accidentally","fragile","coral","witheir","shown","divers","participating","underwater","photography","considerably","likely","accidentally","damage","g","c","r","b","managing","scuba","divers","meet","ecological","goals","coral","reef","conservation","journal","human","environment","cost","underwater","photography","equipment","reduced","availability","increased","thathere","increase","direct","damage","reefs","divers","direct","impact","include","fishing","marine","j","p","roberts","c","growth","coastal","tourism","red","sea","present","coral","reefs","also","direct","environmental_impact","due","disturbed","altered","species","behaviour","fish","feeding","well","import","invasive","species","pollution","caused","dive","boats","also","indirect","construction","infrastructure","transit","increase","amount","tourist_arrivals","worldwide","approximately","million","tourist_arrivals","worldwide","arrived","air_travel","air","million","motor_vehicle","ship","transport","water","million","percent","rail","travel","rail","million","world_tourism","organization","highlights","edition","internet","accessed","onov","th","figures","context","seven","hour","flight","boeing","produces","tonnes","thequivalent","driving","average","size","family","saloon","car","days","thenergy","requirement","average","family","home","nearly","seventeen","available","accessed","onov","th","increasing","amount","tourist_arrivals","ever","increasing","amount","global","greenhouse","ghg","produced","tourism_industry","estimated","global","ghg","release","attributed","air_travel","alone","irony","remote","pristine","undeveloped","regions","low_impact","leave","trace","adventure","vacations","ghg","contributions","increased","result","annual","average","global","temperature","rising","year","new","records","set","predicted","yet","exceed","previous","highest","average","global","c","p","g","p","physical","biological","impacts","change","nature","intergovernmental","panel","climate_change","internet","available","accessed","onov","th","causing","oceans","warm","causing","increased","frequency","abnormal","weather","eventsuch","increase","amount","dissolved","oceans","changing","leading","oceans","turn","led","coral","bleaching","coral","reef","worldwide","determined","thathe","world","largest","coral","reef","great","barriereef","iso","badly","affected","bleaching","ten","percent","remained","remaining","ninety","percent","varying","degrees","coalition","great","barriereef","bleaching","internet","available","accessed","onov","th","recently","discovered","issue","pacific_northwest","caused","decreased","survival","key","source","ofood","salmon","known","butterflies","unable","form","outer","shells","j","c","v","j","l","c","r","key","r","ocean","twenty","first_century","impact","organisms","nature","tiny","creatures","make","significant","portion","salmon","diet","nutrition","available","salmon","may","grow","return","reproduce","provide","food","bears","cycle","forest","tourist","come","view","bears","thus","food","web","disturbed","change","direct","indirect","impact","tourism","socio","cultural","impacts","tourism","inherent","aspect","tourism","seeking","authenticity","desire","experience","different","cultural","setting","natural_environment","although","cultural_tourism","provides","opportunities","understanding","education","serious","impacts","arise","result","volume","tourism","important","buthe","types","social","interaction","occur","tourist","three","broad","effects","athe","commodification","culture","demonstration","effect","another","culture","commodification","culture","common","destinations","use","aspect","culture","means","attractourists","means","making","culture","commodity","hence","packaging","selling","consumption","attaching","economic","value","heritage","loses","inherent","meaning","turn","leads","fundamental","social","cultural","changes","sometimes","even","themergence","culture","longer","authentic","however","cultural","tourists","come","experience","local_culture","wanto","see","authenticity","results","commodification","staged","culture","becomes","less","attractive","becomes","tourists","hence","increased","commodification","generally","leads","decrease","tourism","yet","commodification","bring","benefits","allows","sharing","culture","griffin","brings","economic_benefits","solve","social","problems","community","give","influence","governmental","decisions","may_also","interest","lost","arts","skills","foster","community","demonstration","effect","demonstration","effect","occurs","high","degree","difference","host","tourist","common","tourists","visit","developing","communities","mason","tourism","impacts","planning","managementhe","tourist","way","life","seems","desirable","copied","varying","mainly","tourist","consumption","patterns","also_includes","behaviours","attitudes","even","certain","ways","thinking","youth","particularly","vulnerable","drive","old","new","generation","gap","parent","child","tourism","pronounced","occurs","culture","within","dominant","culture","migration","case","developed","world","competing","culture","developing","world","creates","detachment","thexisting","culture","potentially","also","affects","visitors","experience","affecthe","authenticity","cultural","experience","positive","socio","cultural","impacts","tourism","beneficial","host","community","provides","financial","means","incentive","preserve","cultural","histories","local","heritage_sites","customs","interest","local","crafts","traditional","dance","oral","histories","community","wider","world","new","ideas","new","experiences","c","recreational","tourism","demand","impacts","vol","channel","view","publications","negative","socio","cultural","impacts","negativeffects","cultural","v","h","techniques","socially","sustainable_tourism_development","lessons","department","geography","publication","series","university","waterloo","tourists","violate","customs","dearden","p","cultural","aspects","tourism","sustainable","northern","geography","publication","series","university","waterloo","culturally","sensitive","locations","introduction","different","cultural","beliefs","visitors","tends","create","older","younger","generations","locals","suffer","increased","stresses","trying","exist","tourists","number","tourists","host","community","challenging","ability","preserve","lifestyle","another","potential","impact","rise","illicit","activitiesuch","prostitution","substance","abuse","drug_use","impacts","global","tourism","contributed","billion","world","gross","domestic","product","gdp","total","contribution","rising","almost","world","gross","domestic","product","gdp","turner","travel_tourism","economic_impact","world","influx","gross","domestic","product","gdp","comes","billion","international_tourists","worldwide","number","growing","annually","since","e","stage","j","theconomic","impacts","tourism","south_africa","poverty","natural_resources","forum","b","perceptions","local_communities","theconomic","impacts","tourism_development","malaysia","web","conferences","vol","pp","visitation","gross","domestic","product","gdp","arexpected","continue","rise","near","future","falling","oil","prices","contribute","reduced","living","costs","increased","available","income","households","well","reduced","costs","divided","impacts","fall","spending","visitors","tourism","experiences","like","theme_parks","domestic","international","spending","leisure","items","like","bicycles","capital","j","b","jensen","butler","c","regional","economic_impacts","tourism","case","denmark","regional","studies","tourism","felt","direct","indirect","ways","direct","economic_impacts","created","commodities","like","following","sold","accommodation","entertainment","food","retail","opportunities","residents","visitors","businesses","various","levels","governments","municipal","influence","impacts","spending","near","given","tourism","c","j","b","tourism","principles","practices","john","wiley","sons","key","component","direct","economic_impacts","tourism","thathey","occur","within","country","borders","implemented","residents","non","residents","business","leisure","purposes","contrast","indirect","economic_impacts","tourism","found","investment","spending","surrounding","tourism","offering","private","governmental","interests","investment","may","explicitly","related_tourism","benefits","tourist","local","project","stakeholders","indirect","impacts","tourism","purchase","sale","items","like","additional","supplies","forestaurants","high","tourism","season","busy","downtown","centres","indirect","economic_impacts","supply","government","collective","account","total","gdp","contribution","travel_tourism","induced","spending","circulation","tourist","dollar","within","community","another","way","thatourism","impact","r","dearden","p","tourism_ecotourism","protected_areas","p","dearden","needham","eds","parks","protected_areas","canada","planning","management","fourth_edition","pp","university_press","example","foreign","tourist","money","local_economy","spend","dollar","souvenir","made","local","athe","tourism_destination","individual","goes","spend","dollar","lunch","local","vendor","vendor","goes","spend","locally","p","tourism","impacts","planning","management","j","estimating","theconomic","impacts","tourism","annals","tourism_research","positive","negativeconomic","impacts","tourism","positive","negativeffects","communities","related","theconomic","impacts","tourism","communities","positive","impact","refer","increase","jobs","higher","quality","life","locals","increase","wealth","area","tourism_also","advantage","rebuilding","historic_sites","encouraging","revitalization","tourism","society","guide","problems","issues","venture","publishing","state","college","pennsylvania","chapters","positive","impact","increase","make","better","either","host","community","residence","tourist_destination","positive","impacts","arelated","well","rather","happiness","host","community","tourist","k","doctor","philosophy","hospitality_tourism","tourism","impacts","upon","quality","life","residents","community","virginia","polytechnic","institute","state_university","retrieved_november","tourist_destination","positive","impacts","improvements","natural_environment","parks","man_made","infrastructure","waste","treatment","provides","theconomic","stimulus","allow","diversification","employment","income","potential","andevelop","resources","within","community","improvements","infrastructure","services","benefit","bothe","locals","tourists","whereas","heritage_tourism","focus","local","history","historical","eventhat","occurred","areand","tends","j","planning","tourism","rural_areas","policy","implementation","gap","tourism_research","critiques","challenges","routledge","london","positive","impacts","begin","increase","job","opportunities","locals","tourism_industry","becomes","developed","also","increase","average","income","spreads","throughouthe","community","tourism","addition","local_economy","goods","manufactured","locally","new","markets","open","local","business","owners","expand","unfortunately","benefits","universal","may","available","tourism_related","jobs","often","seasonal","low","paying","entrants","job","market","prices","known","throughouthe","year","rise","high","tourism","season","take_advantage","tourist","dollars","theconomic","reach","local_residents","effectively","place","home","negative_impacts","theffects","caused","cases","athe","tourist_destination","site","detrimental","impacts","social","cultural","areas","well","natural_environment","population","impacts","resources","become","carrying_capacity","tourists","destination","site","may","become","nelson","r","butler","g","wall","tourism","sustainable_development","civic","joint","university","waterloo","geography","publication","series","number","university","waterloo","typically","impacts","occurring","late","place","restrictions","regulations","tourist","discover","many","negative_impacts","found","development","stage","tourism","area","life","cycle","nelson","j","g","butler","wall","g","tourism","sustainable_development","civic","approach","department","geography","university","waterloo","theconomics","tourism","shown","push","local","tourism_business","owners","favour","strangers","region","foreign","ownership","creates","leakage","revenues","leaving","host","community","another","nation","multi","national","business","strip","opportunity","locals","make","meaningful","johnston","r","j","theconomic","impacts","tourism","special","issue","journal","travel","research","foreign","companies","also_known","hire","non","resident","seasonal","workers","pay","individuals","lower","wages","contributes","economic","leakage","tourism","raise","property","prices","near","tourism","area","effectively","pushing","locals","encouraging","businesses","encourage","take_advantage","tourist","spending","employment","availability","economic_impacts","create","total","available","jobs","worldwide","bothe","direct","sectors","jobs","provide","visitor","witheir","tourism","experience","include","limited","accommodation","building","cleaning","managing","food_andrink","services","entertainment","manufacturing","shopping","employment","opportunities","include","manufacturing","aircraft","boats","transportation","well","construction","additional","infrastructure","necessary","accommodate","travel","products","airports","etc","tourism","satellite","council","tourism","satellite","system","measurement","recognized","united_nations","define","thextent","economic","sector","easily","defined","industries","like","forest","industry","forestry","oil","gas","industry","oil","gas","tourism","fit","statistical","model","much","dependent","physical","movement","products","services","position","consumer","therefore","designed","many","offerings","international","scale","facilitate","better","understanding","circumstances","locally","abroad","standardization","includes","concepts","meanto","enable","researchers","industry","professionals","average","tourism_business","owner","view","international","comparisons","widely","implemented","gap","existed","available","knowledge","aboutourism","economic","driver","gross","domestic","product","gdp","employment","investment","industry","consumption","indicators","primarily","therefore","lacking","scientific","analytical","costa","c","tourismanagement","dynamics","trends","management","gap","meant","missed","opportunities","development","tourism","stakeholders","unable","understand","might","able","better","establish","tourism","economy","example","tsa","measure","tax","revenues","related_tourism","key","contributor","level","enthusiasm","level","government","might","towards","potential","tourism","investment","addition","johnston","suggesthat","stakeholders","tourism","benefit","tsa","provides","data","impact","tourism","associated","employment","framework","statistical","data","tourism","international","standard","endorsed","statistical","commission","instrument","designing","economic","policies","provides","data","tourism","impact","nation","balance","payments","provides_information","tourism","human_resource","characteristics","collection","qualitative","datand","effective","form","tourism","providers","able","fill","previous","knowledge","gap","information","delivered","measured","tsa","includes","tax","revenues","economic_impact","onational","human_resources","employment","tourism","contribution","gross","domestic","product","projections","thextento","impacts","tourism","impacthe","world","economy","world","economic","system","appear","agree","thathe","number","international_tourist","arrivals","reach","approximately","billion","year","tourists","billion","arexpected","regional","million","long_haul","travelers","arrivals","developing_countries","arexpected","continue","growing","recorded","total","arrivals","recorded","access","moremote","locations","becomes","easier","direct","contributions","travel_tourism","world","economy","gross","domestic","product","gdp","arexpected","rise","withe","impacts","found","investment","supply","chain","sectors","employment","anticipated","rise","parallel","gdp","contributions","reaching","world","employment","employment","estimated","total","world","employment","approximately","employment","approximately","see_also","sustainable_tourism","references_category_tourism","category_economy","thenvironment"],"clean_bigrams":[["communities","involved"],["relatively","new"],["new","impacts"],["easily","categorized"],["tourism","impacts"],["impacts","planning"],["introduction","tourism"],["tourism","impacts"],["impacts","chapter"],["chapter","also"],["also","tourism"],["often","seasonal"],["become","apparent"],["varying","effects"],["different","stages"],["g","butler"],["butler","w"],["w","tourism"],["tourism","research"],["research","critiques"],["challenges","routledge"],["routledge","tourism"],["tourism","research"],["research","critiques"],["challenges","routledge"],["three","main"],["main","categories"],["categories","environmental"],["environmental","impacts"],["affecthe","carrying"],["carrying","capacity"],["area","vegetation"],["vegetation","air"],["air","quality"],["quality","bodies"],["water","table"],["table","wildlife"],["natural","phenomena"],["phenomena","social"],["cultural","impacts"],["impacts","associated"],["culture","background"],["background","attitudes"],["socio","cultural"],["cultural","impacts"],["tourism","impacts"],["impacts","planning"],["management","chapter"],["sensitive","areas"],["detrimental","cause"],["alternatively","contribute"],["cultural","sites"],["increased","resources"],["resources","economic"],["economic","impacts"],["impacts","usually"],["usually","seen"],["positive","contributing"],["employment","better"],["better","services"],["r","dearden"],["dearden","p"],["p","tourism"],["tourism","ecotourism"],["protected","areas"],["p","dearden"],["needham","ed"],["ed","parks"],["protected","areas"],["canada","planning"],["management","fourth"],["fourth","edition"],["edition","pp"],["also","contribute"],["high","living"],["living","costs"],["costs","within"],["community","pushing"],["pushing","local"],["local","business"],["raising","costs"],["locals","environmental"],["environmental","impacts"],["impacts","ecotourism"],["ecotourism","nature"],["nature","tourism"],["tourism","wildlife"],["wildlife","tourism"],["adventure","tourism"],["take","place"],["rain","forest"],["high","alpine"],["alpine","wilderness"],["wilderness","lakes"],["rural","villages"],["coastline","resorts"],["resorts","withe"],["withe","desire"],["challenging","experiences"],["destinations","become"],["become","moremote"],["remaining","pristine"],["natural","environments"],["environments","left"],["planethe","positive"],["positive","impact"],["increased","environmental"],["environmental","awareness"],["pro","environmental"],["people","negotiate"],["pro","environmental"],["environmental","behavior"],["country","campers"],["alberta","canada"],["negative","impact"],["indirect","impacts"],["impacts","immediate"],["long","term"],["term","impacts"],["impacts","tourist"],["tourist","destination"],["three","categories"],["categories","facility"],["facility","impacts"],["impacts","tourist"],["tourist","activities"],["transit","effect"],["effect","facility"],["facility","impacts"],["regional","area"],["area","develops"],["development","stage"],["tourist","area"],["area","life"],["life","cycle"],["tourist","area"],["area","cycle"],["evolution","implications"],["canadian","geographer"],["latter","phase"],["indirect","environmental"],["environmental","impacts"],["hotels","restaurants"],["power","supply"],["destination","develops"],["impacts","increase"],["increase","accordingly"],["washing","waste"],["waste","disposal"],["disposal","andrinking"],["andrinking","increases"],["increases","rivers"],["demand","placed"],["facility","noise"],["noise","pollution"],["disturb","wildlife"],["alter","behavior"],["light","pollution"],["reproductive","behaviour"],["many","creatures"],["gasoline","generators"],["additional","noise"],["noise","pollution"],["pollution","general"],["general","waste"],["tourists","arrive"],["beverages","consumed"],["turn","creates"],["creates","waste"],["waste","plastic"],["products","tourist"],["tourist","activities"],["many","tourists"],["main","reason"],["various","types"],["physical","activities"],["enjoy","interacting"],["way","thathey"],["thathey","would"],["hiking","trekking"],["trekking","kayaking"],["kayaking","bird"],["bird","watching"],["watching","wildlife"],["wildlife","safari"],["safari","surfing"],["scuba","diving"],["local","ecology"],["ecology","even"],["environmentally","aware"],["aware","tourist"],["help","cause"],["hiking","trekking"],["directly","affecthe"],["affecthe","activity"],["activity","area"],["daily","use"],["fallen","trees"],["trail","becomes"],["informal","trails"],["recreation","ecology"],["ecology","research"],["research","findings"],["findings","implications"],["park","managers"],["national","outdoor"],["outdoor","ethics"],["ethics","conference"],["conference","april"],["april","st"],["st","louis"],["walton","league"],["america","pp"],["direct","impacts"],["vegetation","loss"],["vegetation","height"],["height","reduction"],["foliage","cover"],["cover","exposure"],["tree","root"],["root","systems"],["systems","migration"],["species","marion"],["marion","j"],["j","leung"],["f","trail"],["trail","resource"],["resource","impacts"],["recreation","administration"],["direct","impacts"],["indirect","impacts"],["composition","problems"],["w","e"],["e","cole"],["recreation","ecology"],["management","john"],["john","wiley"],["wiley","sons"],["many","hikers"],["multi","day"],["day","trips"],["large","number"],["camp","overnight"],["overnight","either"],["formal","campgrounds"],["similar","impacts"],["composition","loss"],["foliage","plus"],["additional","issues"],["heat","informal"],["informal","trails"],["created","around"],["collect","firewood"],["fuel","theat"],["tree","root"],["root","system"],["formal","campgrounds"],["campgrounds","tent"],["tent","pad"],["pad","areas"],["random","camping"],["damage","sensitive"],["sensitive","plants"],["single","overnight"],["overnight","stay"],["recreation","activities"],["activities","including"],["including","hiking"],["waste","generated"],["generated","food"],["human","waste"],["cause","human"],["human","wildlife"],["human","contact"],["unusual","food"],["food","sources"],["detrimental","effect"],["cause","danger"],["deposit","collection"],["also","direct"],["direct","impact"],["local","environment"],["environment","another"],["another","activity"],["severe","direct"],["indirect","impacts"],["wildlife","viewing"],["ocean","wildlife"],["wildlife","safaris"],["african","countriesuch"],["big","five"],["five","game"],["game","big"],["big","five"],["african","lion"],["lion","african"],["african","elephant"],["elephant","african"],["african","leopard"],["leopard","cape"],["cape","buffalo"],["every","human"],["human","wildlife"],["wildlife","interaction"],["natural","interaction"],["increase","theart"],["theart","rate"],["j","burke"],["r","b"],["b","e"],["e","woods"],["woods","r"],["r","j"],["j","stress"],["stress","response"],["working","african"],["african","elephant"],["safari","adventures"],["wildlife","management"],["example","baboons"],["track","tourist"],["tourist","safari"],["safari","vehicles"],["leader","williams"],["williams","n"],["b","take"],["photographs","leave"],["thenvironmental","impacts"],["wildlife","tourism"],["direct","impact"],["severely","damage"],["delicate","balance"],["similar","vein"],["significant","number"],["pay","vast"],["vast","sums"],["trophy","hunting"],["hunting","trophy"],["trophy","hunt"],["hunt","lion"],["argued","thathere"],["negative","direct"],["indirect","environmental"],["environmental","impact"],["impact","caused"],["trophy","hunting"],["international","government"],["government","level"],["thethics","ofunding"],["ofunding","conservation"],["conservation","efforts"],["w","j"],["j","g"],["trophy","hunting"],["hunting","support"],["support","biodiversity"],["ecology","evolution"],["evolution","another"],["another","tourism"],["tourism","destination"],["destination","activity"],["many","negative"],["negative","direct"],["direct","environmental"],["environmental","impacts"],["impacts","caused"],["recreational","diving"],["damage","caused"],["fragile","coral"],["coral","witheir"],["underwater","photography"],["accidentally","damage"],["r","b"],["b","managing"],["managing","scuba"],["scuba","divers"],["meet","ecological"],["ecological","goals"],["coral","reef"],["reef","conservation"],["human","environment"],["underwater","photography"],["photography","equipment"],["availability","increased"],["direct","damage"],["direct","impact"],["impact","include"],["j","p"],["p","roberts"],["roberts","c"],["coastal","tourism"],["red","sea"],["sea","present"],["coral","reefs"],["also","direct"],["direct","environmental"],["environmental","impact"],["impact","due"],["altered","species"],["species","behaviour"],["fish","feeding"],["invasive","species"],["pollution","caused"],["dive","boats"],["also","indirect"],["infrastructure","transit"],["tourist","arrivals"],["arrivals","worldwide"],["million","tourist"],["tourist","arrivals"],["arrivals","worldwide"],["arrived","air"],["air","travel"],["air","million"],["motor","vehicle"],["vehicle","ship"],["ship","transport"],["water","million"],["rail","travel"],["travel","rail"],["rail","million"],["million","world"],["world","tourism"],["tourism","organization"],["highlights","edition"],["edition","internet"],["internet","accessed"],["accessed","onov"],["onov","th"],["seven","hour"],["hour","flight"],["boeing","produces"],["produces","tonnes"],["average","size"],["size","family"],["family","saloon"],["saloon","car"],["thenergy","requirement"],["average","family"],["family","home"],["nearly","seventeen"],["accessed","onov"],["onov","th"],["increasing","amount"],["tourist","arrivals"],["ever","increasing"],["increasing","amount"],["global","greenhouse"],["tourism","industry"],["global","ghg"],["ghg","release"],["air","travel"],["travel","alone"],["remote","pristine"],["pristine","undeveloped"],["undeveloped","regions"],["low","impact"],["impact","leave"],["trace","adventure"],["adventure","vacations"],["ghg","contributions"],["annual","average"],["average","global"],["global","temperature"],["year","new"],["new","records"],["previous","highest"],["highest","average"],["average","global"],["biological","impacts"],["change","nature"],["nature","intergovernmental"],["intergovernmental","panel"],["climate","change"],["internet","available"],["accessed","onov"],["onov","th"],["causing","increased"],["increased","frequency"],["abnormal","weather"],["weather","eventsuch"],["coral","bleaching"],["coral","reef"],["determined","thathe"],["thathe","world"],["largest","coral"],["coral","reef"],["great","barriereef"],["barriereef","iso"],["iso","badly"],["badly","affected"],["ten","percent"],["percent","remained"],["remaining","ninety"],["ninety","percent"],["varying","degrees"],["coalition","great"],["great","barriereef"],["barriereef","bleaching"],["bleaching","internet"],["internet","available"],["accessed","onov"],["onov","th"],["recently","discovered"],["discovered","issue"],["pacific","northwest"],["northwest","caused"],["decreased","survival"],["key","source"],["source","ofood"],["outer","shells"],["j","c"],["v","j"],["key","r"],["twenty","first"],["first","century"],["organisms","nature"],["tiny","creatures"],["creatures","make"],["significant","portion"],["salmon","diet"],["nutrition","available"],["provide","food"],["tourist","come"],["bears","thus"],["food","web"],["indirect","impact"],["tourism","socio"],["socio","cultural"],["cultural","impacts"],["inherent","aspect"],["different","cultural"],["cultural","setting"],["natural","environment"],["although","cultural"],["cultural","tourism"],["tourism","provides"],["provides","opportunities"],["serious","impacts"],["buthe","types"],["social","interaction"],["three","broad"],["broad","effects"],["effects","athe"],["demonstration","effect"],["another","culture"],["culture","commodification"],["means","making"],["making","culture"],["hence","packaging"],["economic","value"],["inherent","meaning"],["turn","leads"],["fundamental","social"],["cultural","changes"],["sometimes","even"],["longer","authentic"],["authentic","however"],["cultural","tourists"],["local","culture"],["culture","wanto"],["wanto","see"],["see","authenticity"],["culture","becomes"],["less","attractive"],["becomes","tourists"],["tourists","hence"],["hence","increased"],["increased","commodification"],["commodification","generally"],["generally","leads"],["tourism","yet"],["yet","commodification"],["bring","benefits"],["culture","griffin"],["brings","economic"],["economic","benefits"],["solve","social"],["social","problems"],["governmental","decisions"],["may","also"],["lost","arts"],["foster","community"],["demonstration","effect"],["demonstration","effect"],["effect","occurs"],["high","degree"],["tourists","visit"],["visit","developing"],["developing","communities"],["communities","mason"],["mason","tourism"],["tourism","impacts"],["impacts","planning"],["managementhe","tourist"],["seems","desirable"],["tourist","consumption"],["consumption","patterns"],["also","includes"],["includes","behaviours"],["behaviours","attitudes"],["even","certain"],["certain","ways"],["particularly","vulnerable"],["generation","gap"],["dominant","culture"],["developed","world"],["developing","world"],["creates","detachment"],["thexisting","culture"],["culture","potentially"],["also","affects"],["visitors","experience"],["affecthe","authenticity"],["cultural","experience"],["experience","positive"],["positive","socio"],["socio","cultural"],["cultural","impacts"],["host","community"],["financial","means"],["preserve","cultural"],["cultural","histories"],["histories","local"],["local","heritage"],["heritage","sites"],["local","crafts"],["crafts","traditional"],["oral","histories"],["wider","world"],["world","new"],["new","ideas"],["ideas","new"],["new","experiences"],["c","recreational"],["recreational","tourism"],["tourism","demand"],["demand","impacts"],["impacts","vol"],["vol","channel"],["channel","view"],["view","publications"],["publications","negative"],["negative","socio"],["socio","cultural"],["cultural","impacts"],["v","h"],["h","techniques"],["socially","sustainable"],["sustainable","tourism"],["tourism","development"],["development","lessons"],["geography","publication"],["publication","series"],["series","university"],["waterloo","tourists"],["violate","customs"],["customs","dearden"],["dearden","p"],["p","cultural"],["cultural","aspects"],["geography","publication"],["publication","series"],["series","university"],["culturally","sensitive"],["sensitive","locations"],["different","cultural"],["cultural","beliefs"],["visitors","tends"],["younger","generations"],["generations","locals"],["suffer","increased"],["increased","stresses"],["stresses","trying"],["host","community"],["community","challenging"],["lifestyle","another"],["another","potential"],["potential","impact"],["illicit","activitiesuch"],["prostitution","substance"],["substance","abuse"],["abuse","drug"],["drug","use"],["impacts","global"],["global","tourism"],["contributed","billion"],["world","gross"],["gross","domestic"],["domestic","product"],["product","gdp"],["total","contribution"],["contribution","rising"],["world","gross"],["gross","domestic"],["domestic","product"],["product","gdp"],["gdp","turner"],["turner","travel"],["travel","tourism"],["tourism","economic"],["economic","impact"],["impact","world"],["london","wto"],["gross","domestic"],["domestic","product"],["product","gdp"],["gdp","comes"],["billion","international"],["international","tourists"],["tourists","worldwide"],["annually","since"],["e","stage"],["stage","j"],["j","theconomic"],["theconomic","impacts"],["south","africa"],["natural","resources"],["resources","forum"],["local","communities"],["theconomic","impacts"],["tourism","development"],["conferences","vol"],["vol","pp"],["pp","visitation"],["gross","domestic"],["domestic","product"],["product","gdp"],["gdp","arexpected"],["near","future"],["falling","oil"],["oil","prices"],["prices","contribute"],["reduced","living"],["living","costs"],["increased","available"],["available","income"],["reduced","costs"],["air","travel"],["travel","tourism"],["impacts","fall"],["fall","spending"],["tourism","experiences"],["experiences","like"],["theme","parks"],["parks","domestic"],["international","spending"],["leisure","items"],["items","like"],["like","bicycles"],["j","b"],["b","jensen"],["jensen","butler"],["butler","c"],["c","regional"],["regional","economic"],["economic","impacts"],["denmark","regional"],["regional","studies"],["indirect","ways"],["direct","economic"],["economic","impacts"],["commodities","like"],["sold","accommodation"],["entertainment","food"],["retail","opportunities"],["opportunities","residents"],["residents","visitors"],["visitors","businesses"],["various","levels"],["governments","municipal"],["given","tourism"],["j","b"],["b","tourism"],["tourism","principles"],["principles","practices"],["john","wiley"],["wiley","sons"],["key","component"],["direct","economic"],["economic","impacts"],["thathey","occur"],["occur","within"],["non","residents"],["leisure","purposes"],["contrast","indirect"],["indirect","economic"],["economic","impacts"],["found","investment"],["investment","spending"],["spending","surrounding"],["tourism","offering"],["governmental","interests"],["investment","may"],["related","tourism"],["local","project"],["project","stakeholders"],["indirect","impacts"],["items","like"],["like","additional"],["additional","supplies"],["supplies","forestaurants"],["high","tourism"],["tourism","season"],["busy","downtown"],["downtown","centres"],["centres","indirect"],["indirect","economic"],["economic","impacts"],["government","collective"],["collective","account"],["total","gdp"],["gdp","contribution"],["travel","tourism"],["tourism","induced"],["induced","spending"],["tourist","dollar"],["dollar","within"],["another","way"],["way","thatourism"],["r","dearden"],["dearden","p"],["p","tourism"],["tourism","ecotourism"],["protected","areas"],["p","dearden"],["needham","eds"],["eds","parks"],["protected","areas"],["canada","planning"],["management","fourth"],["fourth","edition"],["edition","pp"],["university","press"],["foreign","tourist"],["local","economy"],["souvenir","made"],["local","athe"],["athe","tourism"],["tourism","destination"],["individual","goes"],["local","vendor"],["vendor","goes"],["p","tourism"],["tourism","impacts"],["impacts","planning"],["j","estimating"],["estimating","theconomic"],["theconomic","impacts"],["tourism","annals"],["tourism","research"],["research","positive"],["negativeconomic","impacts"],["communities","related"],["theconomic","impacts"],["positive","impact"],["higher","quality"],["area","tourism"],["tourism","also"],["historic","sites"],["issues","venture"],["venture","publishing"],["publishing","state"],["state","college"],["college","pennsylvania"],["pennsylvania","chapters"],["positive","impact"],["make","better"],["better","either"],["host","community"],["tourist","destination"],["positive","impacts"],["impacts","arelated"],["host","community"],["k","doctor"],["tourism","impacts"],["impacts","upon"],["upon","quality"],["community","virginia"],["virginia","polytechnic"],["polytechnic","institute"],["state","university"],["university","retrieved"],["tourist","destination"],["positive","impacts"],["natural","environment"],["man","made"],["made","infrastructure"],["infrastructure","waste"],["waste","treatment"],["provides","theconomic"],["theconomic","stimulus"],["income","potential"],["potential","andevelop"],["andevelop","resources"],["resources","within"],["community","improvements"],["improvements","infrastructure"],["benefit","bothe"],["bothe","locals"],["tourists","whereas"],["whereas","heritage"],["heritage","tourism"],["tourism","focus"],["local","history"],["historical","eventhat"],["eventhat","occurred"],["areand","tends"],["j","planning"],["rural","areas"],["policy","implementation"],["implementation","gap"],["gap","tourism"],["tourism","research"],["research","critiques"],["challenges","routledge"],["routledge","london"],["london","positive"],["positive","impacts"],["impacts","begin"],["job","opportunities"],["tourism","industry"],["industry","becomes"],["average","income"],["spreads","throughouthe"],["throughouthe","community"],["local","economy"],["new","markets"],["markets","open"],["local","business"],["business","owners"],["available","tourism"],["tourism","related"],["related","jobs"],["often","seasonal"],["low","paying"],["job","market"],["market","prices"],["throughouthe","year"],["high","tourism"],["tourism","season"],["take","advantage"],["tourist","dollars"],["theconomic","reach"],["local","residents"],["residents","effectively"],["home","negative"],["negative","impacts"],["cases","athe"],["athe","tourist"],["tourist","destination"],["destination","site"],["detrimental","impacts"],["cultural","areas"],["areas","well"],["natural","environment"],["impacts","resources"],["resources","become"],["carrying","capacity"],["destination","site"],["site","may"],["may","become"],["nelson","r"],["r","butler"],["butler","g"],["g","wall"],["wall","tourism"],["sustainable","development"],["geography","publication"],["publication","series"],["series","number"],["number","university"],["waterloo","typically"],["place","restrictions"],["regulations","tourist"],["many","negative"],["negative","impacts"],["impacts","found"],["development","stage"],["tourism","area"],["area","life"],["life","cycle"],["nelson","j"],["j","g"],["g","butler"],["butler","wall"],["wall","g"],["g","tourism"],["sustainable","development"],["civic","approach"],["approach","department"],["geography","university"],["local","tourism"],["tourism","business"],["business","owners"],["region","foreign"],["foreign","ownership"],["ownership","creates"],["creates","leakage"],["leakage","revenues"],["revenues","leaving"],["host","community"],["another","nation"],["multi","national"],["national","business"],["make","meaningful"],["johnston","r"],["r","j"],["j","theconomic"],["theconomic","impacts"],["special","issue"],["issue","journal"],["travel","research"],["foreign","companies"],["also","known"],["hire","non"],["non","resident"],["resident","seasonal"],["seasonal","workers"],["individuals","lower"],["lower","wages"],["economic","leakage"],["leakage","tourism"],["raise","property"],["property","prices"],["prices","near"],["tourism","area"],["area","effectively"],["effectively","pushing"],["encouraging","businesses"],["take","advantage"],["tourist","spending"],["spending","employment"],["economic","impacts"],["tourism","travel"],["travel","tourism"],["tourism","create"],["total","available"],["available","jobs"],["jobs","worldwide"],["bothe","direct"],["visitor","witheir"],["witheir","tourism"],["tourism","experience"],["experience","include"],["accommodation","building"],["building","cleaning"],["cleaning","managing"],["managing","food"],["food","andrink"],["andrink","services"],["services","entertainment"],["entertainment","manufacturing"],["employment","opportunities"],["opportunities","include"],["aircraft","boats"],["infrastructure","necessary"],["travel","products"],["products","airports"],["etc","tourism"],["tourism","satellite"],["world","travel"],["travel","tourism"],["tourism","council"],["tourism","satellite"],["measurement","recognized"],["united","nations"],["define","thextent"],["economic","sector"],["easily","defined"],["industries","like"],["like","forest"],["forest","industry"],["industry","forestry"],["gas","industry"],["industry","oil"],["gas","tourism"],["statistical","model"],["much","dependent"],["physical","movement"],["consumer","therefore"],["many","offerings"],["international","scale"],["facilitate","better"],["better","understanding"],["circumstances","locally"],["standardization","includes"],["includes","concepts"],["meanto","enable"],["enable","researchers"],["researchers","industry"],["industry","professionals"],["average","tourism"],["tourism","business"],["business","owner"],["view","international"],["international","comparisons"],["widely","implemented"],["gap","existed"],["available","knowledge"],["knowledge","aboutourism"],["economic","driver"],["gross","domestic"],["domestic","product"],["product","gdp"],["gdp","employment"],["employment","investment"],["industry","consumption"],["consumption","indicators"],["therefore","lacking"],["costa","c"],["c","tourismanagement"],["tourismanagement","dynamics"],["dynamics","trends"],["trends","management"],["gap","meant"],["meant","missed"],["missed","opportunities"],["tourism","stakeholders"],["better","establish"],["tourism","economy"],["measure","tax"],["tax","revenues"],["revenues","related"],["related","tourism"],["key","contributor"],["government","might"],["towards","potential"],["potential","tourism"],["tourism","investment"],["johnston","suggesthat"],["suggesthat","stakeholders"],["tourism","benefit"],["provides","data"],["associated","employment"],["statistical","data"],["international","standard"],["standard","endorsed"],["statistical","commission"],["designing","economic"],["economic","policies"],["policies","related"],["related","tourism"],["tourism","development"],["development","provides"],["provides","data"],["payments","provides"],["provides","information"],["information","tourism"],["tourism","human"],["human","resource"],["resource","characteristics"],["qualitative","datand"],["effective","form"],["tourism","providers"],["previous","knowledge"],["knowledge","gap"],["gap","information"],["information","delivered"],["tsa","includes"],["includes","tax"],["tax","revenues"],["revenues","economic"],["economic","impact"],["impact","onational"],["human","resources"],["resources","employment"],["gross","domestic"],["domestic","product"],["product","projections"],["impacthe","world"],["world","economy"],["economy","world"],["economic","system"],["system","appear"],["agree","thathe"],["thathe","number"],["international","tourist"],["tourist","arrivals"],["reach","approximately"],["approximately","billion"],["tourists","billion"],["billion","arexpected"],["long","haul"],["travelers","arrivals"],["developing","countries"],["countries","arexpected"],["continue","growing"],["total","arrivals"],["arrivals","recorded"],["moremote","locations"],["locations","becomes"],["becomes","easier"],["easier","direct"],["direct","contributions"],["travel","tourism"],["world","economy"],["gross","domestic"],["domestic","product"],["product","gdp"],["gdp","arexpected"],["impacts","found"],["found","investment"],["supply","chain"],["chain","sectors"],["sectors","employment"],["rise","parallel"],["gdp","contributions"],["contributions","reaching"],["world","employment"],["total","world"],["world","employment"],["see","also"],["also","sustainable"],["sustainable","tourism"],["tourism","references"],["references","category"],["category","tourism"],["tourism","category"],["category","economy"]],"all_collocations":["communities involved","relatively new","new impacts","easily categorized","tourism impacts","impacts planning","introduction tourism","tourism impacts","impacts chapter","chapter also","also tourism","often seasonal","become apparent","varying effects","different stages","g butler","butler w","w tourism","tourism research","research critiques","challenges routledge","routledge tourism","tourism research","research critiques","challenges routledge","three main","main categories","categories environmental","environmental impacts","affecthe carrying","carrying capacity","area vegetation","vegetation air","air quality","quality bodies","water table","table wildlife","natural phenomena","phenomena social","cultural impacts","impacts associated","culture background","background attitudes","socio cultural","cultural impacts","tourism impacts","impacts planning","management chapter","sensitive areas","detrimental cause","alternatively contribute","cultural sites","increased resources","resources economic","economic impacts","impacts usually","usually seen","positive contributing","employment better","better services","r dearden","dearden p","p tourism","tourism ecotourism","protected areas","p dearden","needham ed","ed parks","protected areas","canada planning","management fourth","fourth edition","edition pp","also contribute","high living","living costs","costs within","community pushing","pushing local","local business","raising costs","locals environmental","environmental impacts","impacts ecotourism","ecotourism nature","nature tourism","tourism wildlife","wildlife tourism","adventure tourism","take place","rain forest","high alpine","alpine wilderness","wilderness lakes","rural villages","coastline resorts","resorts withe","withe desire","challenging experiences","destinations become","become moremote","remaining pristine","natural environments","environments left","planethe positive","positive impact","increased environmental","environmental awareness","pro environmental","people negotiate","pro environmental","environmental behavior","country campers","alberta canada","negative impact","indirect impacts","impacts immediate","long term","term impacts","impacts tourist","tourist destination","three categories","categories facility","facility impacts","impacts tourist","tourist activities","transit effect","effect facility","facility impacts","regional area","area develops","development stage","tourist area","area life","life cycle","tourist area","area cycle","evolution implications","canadian geographer","latter phase","indirect environmental","environmental impacts","hotels restaurants","power supply","destination develops","impacts increase","increase accordingly","washing waste","waste disposal","disposal andrinking","andrinking increases","increases rivers","demand placed","facility noise","noise pollution","disturb wildlife","alter behavior","light pollution","reproductive behaviour","many creatures","gasoline generators","additional noise","noise pollution","pollution general","general waste","tourists arrive","beverages consumed","turn creates","creates waste","waste plastic","products tourist","tourist activities","many tourists","main reason","various types","physical activities","enjoy interacting","way thathey","thathey would","hiking trekking","trekking kayaking","kayaking bird","bird watching","watching wildlife","wildlife safari","safari surfing","scuba diving","local ecology","ecology even","environmentally aware","aware tourist","help cause","hiking trekking","directly affecthe","affecthe activity","activity area","daily use","fallen trees","trail becomes","informal trails","recreation ecology","ecology research","research findings","findings implications","park managers","national outdoor","outdoor ethics","ethics conference","conference april","april st","st louis","walton league","america pp","direct impacts","vegetation loss","vegetation height","height reduction","foliage cover","cover exposure","tree root","root systems","systems migration","species marion","marion j","j leung","f trail","trail resource","resource impacts","recreation administration","direct impacts","indirect impacts","composition problems","w e","e cole","recreation ecology","management john","john wiley","wiley sons","many hikers","multi day","day trips","large number","camp overnight","overnight either","formal campgrounds","similar impacts","composition loss","foliage plus","additional issues","heat informal","informal trails","created around","collect firewood","fuel theat","tree root","root system","formal campgrounds","campgrounds tent","tent pad","pad areas","random camping","damage sensitive","sensitive plants","single overnight","overnight stay","recreation activities","activities including","including hiking","waste generated","generated food","human waste","cause human","human wildlife","human contact","unusual food","food sources","detrimental effect","cause danger","deposit collection","also direct","direct impact","local environment","environment another","another activity","severe direct","indirect impacts","wildlife viewing","ocean wildlife","wildlife safaris","african countriesuch","big five","five game","game big","big five","african lion","lion african","african elephant","elephant african","african leopard","leopard cape","cape buffalo","every human","human wildlife","wildlife interaction","natural interaction","increase theart","theart rate","j burke","r b","b e","e woods","woods r","r j","j stress","stress response","working african","african elephant","safari adventures","wildlife management","example baboons","track tourist","tourist safari","safari vehicles","leader williams","williams n","b take","photographs leave","thenvironmental impacts","wildlife tourism","direct impact","severely damage","delicate balance","similar vein","significant number","pay vast","vast sums","trophy hunting","hunting trophy","trophy hunt","hunt lion","argued thathere","negative direct","indirect environmental","environmental impact","impact caused","trophy hunting","international government","government level","thethics ofunding","ofunding conservation","conservation efforts","w j","j g","trophy hunting","hunting support","support biodiversity","ecology evolution","evolution another","another tourism","tourism destination","destination activity","many negative","negative direct","direct environmental","environmental impacts","impacts caused","recreational diving","damage caused","fragile coral","coral witheir","underwater photography","accidentally damage","r b","b managing","managing scuba","scuba divers","meet ecological","ecological goals","coral reef","reef conservation","human environment","underwater photography","photography equipment","availability increased","direct damage","direct impact","impact include","j p","p roberts","roberts c","coastal tourism","red sea","sea present","coral reefs","also direct","direct environmental","environmental impact","impact due","altered species","species behaviour","fish feeding","invasive species","pollution caused","dive boats","also indirect","infrastructure transit","tourist arrivals","arrivals worldwide","million tourist","tourist arrivals","arrivals worldwide","arrived air","air travel","air million","motor vehicle","vehicle ship","ship transport","water million","rail travel","travel rail","rail million","million world","world tourism","tourism organization","highlights edition","edition internet","internet accessed","accessed onov","onov th","seven hour","hour flight","boeing produces","produces tonnes","average size","size family","family saloon","saloon car","thenergy requirement","average family","family home","nearly seventeen","accessed onov","onov th","increasing amount","tourist arrivals","ever increasing","increasing amount","global greenhouse","tourism industry","global ghg","ghg release","air travel","travel alone","remote pristine","pristine undeveloped","undeveloped regions","low impact","impact leave","trace adventure","adventure vacations","ghg contributions","annual average","average global","global temperature","year new","new records","previous highest","highest average","average global","biological impacts","change nature","nature intergovernmental","intergovernmental panel","climate change","internet available","accessed onov","onov th","causing increased","increased frequency","abnormal weather","weather eventsuch","coral bleaching","coral reef","determined thathe","thathe world","largest coral","coral reef","great barriereef","barriereef iso","iso badly","badly affected","ten percent","percent remained","remaining ninety","ninety percent","varying degrees","coalition great","great barriereef","barriereef bleaching","bleaching internet","internet available","accessed onov","onov th","recently discovered","discovered issue","pacific northwest","northwest caused","decreased survival","key source","source ofood","outer shells","j c","v j","key r","twenty first","first century","organisms nature","tiny creatures","creatures make","significant portion","salmon diet","nutrition available","provide food","tourist come","bears thus","food web","indirect impact","tourism socio","socio cultural","cultural impacts","inherent aspect","different cultural","cultural setting","natural environment","although cultural","cultural tourism","tourism provides","provides opportunities","serious impacts","buthe types","social interaction","three broad","broad effects","effects athe","demonstration effect","another culture","culture commodification","means making","making culture","hence packaging","economic value","inherent meaning","turn leads","fundamental social","cultural changes","sometimes even","longer authentic","authentic however","cultural tourists","local culture","culture wanto","wanto see","see authenticity","culture becomes","less attractive","becomes tourists","tourists hence","hence increased","increased commodification","commodification generally","generally leads","tourism yet","yet commodification","bring benefits","culture griffin","brings economic","economic benefits","solve social","social problems","governmental decisions","may also","lost arts","foster community","demonstration effect","demonstration effect","effect occurs","high degree","tourists visit","visit developing","developing communities","communities mason","mason tourism","tourism impacts","impacts planning","managementhe tourist","seems desirable","tourist consumption","consumption patterns","also includes","includes behaviours","behaviours attitudes","even certain","certain ways","particularly vulnerable","generation gap","dominant culture","developed world","developing world","creates detachment","thexisting culture","culture potentially","also affects","visitors experience","affecthe authenticity","cultural experience","experience positive","positive socio","socio cultural","cultural impacts","host community","financial means","preserve cultural","cultural histories","histories local","local heritage","heritage sites","local crafts","crafts traditional","oral histories","wider world","world new","new ideas","ideas new","new experiences","c recreational","recreational tourism","tourism demand","demand impacts","impacts vol","vol channel","channel view","view publications","publications negative","negative socio","socio cultural","cultural impacts","v h","h techniques","socially sustainable","sustainable tourism","tourism development","development lessons","geography publication","publication series","series university","waterloo tourists","violate customs","customs dearden","dearden p","p cultural","cultural aspects","geography publication","publication series","series university","culturally sensitive","sensitive locations","different cultural","cultural beliefs","visitors tends","younger generations","generations locals","suffer increased","increased stresses","stresses trying","host community","community challenging","lifestyle another","another potential","potential impact","illicit activitiesuch","prostitution substance","substance abuse","abuse drug","drug use","impacts global","global tourism","contributed billion","world gross","gross domestic","domestic product","product gdp","total contribution","contribution rising","world gross","gross domestic","domestic product","product gdp","gdp turner","turner travel","travel tourism","tourism economic","economic impact","impact world","london wto","gross domestic","domestic product","product gdp","gdp comes","billion international","international tourists","tourists worldwide","annually since","e stage","stage j","j theconomic","theconomic impacts","south africa","natural resources","resources forum","local communities","theconomic impacts","tourism development","conferences vol","vol pp","pp visitation","gross domestic","domestic product","product gdp","gdp arexpected","near future","falling oil","oil prices","prices contribute","reduced living","living costs","increased available","available income","reduced costs","air travel","travel tourism","impacts fall","fall spending","tourism experiences","experiences like","theme parks","parks domestic","international spending","leisure items","items like","like bicycles","j b","b jensen","jensen butler","butler c","c regional","regional economic","economic impacts","denmark regional","regional studies","indirect ways","direct economic","economic impacts","commodities like","sold accommodation","entertainment food","retail opportunities","opportunities residents","residents visitors","visitors businesses","various levels","governments municipal","given tourism","j b","b tourism","tourism principles","principles practices","john wiley","wiley sons","key component","direct economic","economic impacts","thathey occur","occur within","non residents","leisure purposes","contrast indirect","indirect economic","economic impacts","found investment","investment spending","spending surrounding","tourism offering","governmental interests","investment may","related tourism","local project","project stakeholders","indirect impacts","items like","like additional","additional supplies","supplies forestaurants","high tourism","tourism season","busy downtown","downtown centres","centres indirect","indirect economic","economic impacts","government collective","collective account","total gdp","gdp contribution","travel tourism","tourism induced","induced spending","tourist dollar","dollar within","another way","way thatourism","r dearden","dearden p","p tourism","tourism ecotourism","protected areas","p dearden","needham eds","eds parks","protected areas","canada planning","management fourth","fourth edition","edition pp","university press","foreign tourist","local economy","souvenir made","local athe","athe tourism","tourism destination","individual goes","local vendor","vendor goes","p tourism","tourism impacts","impacts planning","j estimating","estimating theconomic","theconomic impacts","tourism annals","tourism research","research positive","negativeconomic impacts","communities related","theconomic impacts","positive impact","higher quality","area tourism","tourism also","historic sites","issues venture","venture publishing","publishing state","state college","college pennsylvania","pennsylvania chapters","positive impact","make better","better either","host community","tourist destination","positive impacts","impacts arelated","host community","k doctor","tourism impacts","impacts upon","upon quality","community virginia","virginia polytechnic","polytechnic institute","state university","university retrieved","tourist destination","positive impacts","natural environment","man made","made infrastructure","infrastructure waste","waste treatment","provides theconomic","theconomic stimulus","income potential","potential andevelop","andevelop resources","resources within","community improvements","improvements infrastructure","benefit bothe","bothe locals","tourists whereas","whereas heritage","heritage tourism","tourism focus","local history","historical eventhat","eventhat occurred","areand tends","j planning","rural areas","policy implementation","implementation gap","gap tourism","tourism research","research critiques","challenges routledge","routledge london","london positive","positive impacts","impacts begin","job opportunities","tourism industry","industry becomes","average income","spreads throughouthe","throughouthe community","local economy","new markets","markets open","local business","business owners","available tourism","tourism related","related jobs","often seasonal","low paying","job market","market prices","throughouthe year","high tourism","tourism season","take advantage","tourist dollars","theconomic reach","local residents","residents effectively","home negative","negative impacts","cases athe","athe tourist","tourist destination","destination site","detrimental impacts","cultural areas","areas well","natural environment","impacts resources","resources become","carrying capacity","destination site","site may","may become","nelson r","r butler","butler g","g wall","wall tourism","sustainable development","geography publication","publication series","series number","number university","waterloo typically","place restrictions","regulations tourist","many negative","negative impacts","impacts found","development stage","tourism area","area life","life cycle","nelson j","j g","g butler","butler wall","wall g","g tourism","sustainable development","civic approach","approach department","geography university","local tourism","tourism business","business owners","region foreign","foreign ownership","ownership creates","creates leakage","leakage revenues","revenues leaving","host community","another nation","multi national","national business","make meaningful","johnston r","r j","j theconomic","theconomic impacts","special issue","issue journal","travel research","foreign companies","also known","hire non","non resident","resident seasonal","seasonal workers","individuals lower","lower wages","economic leakage","leakage tourism","raise property","property prices","prices near","tourism area","area effectively","effectively pushing","encouraging businesses","take advantage","tourist spending","spending employment","economic impacts","tourism travel","travel tourism","tourism create","total available","available jobs","jobs worldwide","bothe direct","visitor witheir","witheir tourism","tourism experience","experience include","accommodation building","building cleaning","cleaning managing","managing food","food andrink","andrink services","services entertainment","entertainment manufacturing","employment opportunities","opportunities include","aircraft boats","infrastructure necessary","travel products","products airports","etc tourism","tourism satellite","world travel","travel tourism","tourism council","tourism satellite","measurement recognized","united nations","define thextent","economic sector","easily defined","industries like","like forest","forest industry","industry forestry","gas industry","industry oil","gas tourism","statistical model","much dependent","physical movement","consumer therefore","many offerings","international scale","facilitate better","better understanding","circumstances locally","standardization includes","includes concepts","meanto enable","enable researchers","researchers industry","industry professionals","average tourism","tourism business","business owner","view international","international comparisons","widely implemented","gap existed","available knowledge","knowledge aboutourism","economic driver","gross domestic","domestic product","product gdp","gdp employment","employment investment","industry consumption","consumption indicators","therefore lacking","costa c","c tourismanagement","tourismanagement dynamics","dynamics trends","trends management","gap meant","meant missed","missed opportunities","tourism stakeholders","better establish","tourism economy","measure tax","tax revenues","revenues related","related tourism","key contributor","government might","towards potential","potential tourism","tourism investment","johnston suggesthat","suggesthat stakeholders","tourism benefit","provides data","associated employment","statistical data","international standard","standard endorsed","statistical commission","designing economic","economic policies","policies related","related tourism","tourism development","development provides","provides data","payments provides","provides information","information tourism","tourism human","human resource","resource characteristics","qualitative datand","effective form","tourism providers","previous knowledge","knowledge gap","gap information","information delivered","tsa includes","includes tax","tax revenues","revenues economic","economic impact","impact onational","human resources","resources employment","gross domestic","domestic product","product projections","impacthe world","world economy","economy world","economic system","system appear","agree thathe","thathe number","international tourist","tourist arrivals","reach approximately","approximately billion","tourists billion","billion arexpected","long haul","travelers arrivals","developing countries","countries arexpected","continue growing","total arrivals","arrivals recorded","moremote locations","locations becomes","becomes easier","easier direct","direct contributions","travel tourism","world economy","gross domestic","domestic product","product gdp","gdp arexpected","impacts found","found investment","supply chain","chain sectors","sectors employment","rise parallel","gdp contributions","contributions reaching","world employment","total world","world employment","see also","also sustainable","sustainable tourism","tourism references","references category","category tourism","tourism category","category economy"],"new_description":"study environment communities involved relatively new impacts easily categorized direct indirect tourism impacts planning management introduction tourism impacts chapter also_tourism often seasonal impacts become apparent time varying effects different stages g butler w tourism_research critiques challenges routledge tourism_research critiques challenges routledge three main categories environmental_impacts affecthe carrying_capacity area vegetation air quality bodies water water table wildlife natural phenomena social cultural impacts associated interactions peoples culture background attitudes behaviors relationships material p socio cultural impacts tourism impacts planning management chapter introduction tourists sensitive areas detrimental cause loss culture alternatively contribute preservation culture cultural sites increased resources economic_impacts usually seen positive contributing employment better services social r dearden p tourism_ecotourism protected_areas p dearden needham ed parks protected_areas canada planning management fourth_edition pp impacts also contribute high living costs within community pushing local business areas raising costs locals environmental_impacts ecotourism nature tourism_wildlife tourism adventure_tourism take_place rain forest high alpine wilderness lakes rivers well rural villages coastline resorts withe desire people authentic challenging experiences destinations become moremote occupy remaining pristine natural_environments left planethe positive impact increased environmental awareness pro environmental f e people negotiate constraints engage pro environmental behavior study country campers alberta_canada negative impact destruction experience people seeking direct indirect impacts immediate long_term impacts impacts tourist_destination impacts separated three categories facility impacts tourist_activities transit effect facility impacts regional area develops exploration involvement development stage tourist area life cycle w concept tourist area cycle evolution implications management resources canadian geographer g latter phase direct indirect environmental_impacts construction hotels_restaurants shops infrastructure roads power supply destination develops consequently impacts increase accordingly requirement water washing waste disposal andrinking increases rivers altered extracted demand placed facility noise pollution capacity disturb wildlife alter behavior light pollution feeding reproductive behaviour many creatures power diesel gasoline generators additional noise pollution general waste garbage also result facilities tourists arrive increase food beverages consumed turn creates waste plastic non products tourist_activities many tourists main reason vacation engage various types physical activities enjoy interacting nature way thathey_would ordinarily able activitiesuch hiking trekking kayaking bird watching wildlife safari surfing scuba diving impact local ecology even environmentally aware tourist cannot help cause degree impact activity range impacts hiking trekking camping directly affecthe activity area obvious trail daily use trail hikers trail trail fallen trees mud trail becomes informal trails created bypass recreation ecology research findings implications wilderness park managers proceedings national outdoor ethics conference april st_louis walton league america pp multitude direct impacts area damage vegetation loss vegetation height reduction foliage cover exposure tree root systems migration vegetation immigration species marion j leung f trail resource impacts examination alternative journal park recreation administration well direct impacts indirect impacts change soil changes composition problems soil w e cole n c recreation ecology management john wiley sons many hikers multi day_trips large_number camp overnight either formal campgrounds similar impacts erosion composition loss vegetation foliage plus additional issues campfires cooking heat informal trails created around campsite order collect firewood water trees cut fuel theat burning campfire harm tree root system formal campgrounds tent pad areas normally vegetation random camping damage sensitive plants grasses single overnight stay recreation activities including hiking camping waste generated food human waste cases cause human wildlife wildlife human contact unusual food sources detrimental effect wildlife cause danger human provision deposit collection removal waste also direct impact local environment another activity severe direct indirect impacts thenvironment wildlife viewing happens range land ocean wildlife safaris african countriesuch kenya tanzania popular manyears specialize big five game big five african lion african elephant african leopard cape buffalo rhinoceros every human wildlife interaction change natural interaction species presence humans increase theart rate stress even largest j burke g r b e woods r j stress response working african elephant transportation safari adventures journal wildlife management changes behavior recognized example baboons track tourist safari vehicles lead cheetah leader williams n clayton b take photographs leave thenvironmental impacts wildlife tourism direct impact tourism severely damage delicate balance food species similar vein small significant number tourists choose pay vast sums money order trophy hunting trophy hunt lion leopard even argued thathere positive negative direct indirect environmental_impact caused trophy hunting federal international government level thethics ofunding conservation_efforts w j g trophy hunting support biodiversity response trends ecology evolution another tourism_destination activity diving many negative direct environmental_impacts caused recreational diving apparent damage caused poorly reef accidentally fragile coral witheir shown divers participating underwater photography considerably likely accidentally damage g c r b managing scuba divers meet ecological goals coral reef conservation journal human environment cost underwater photography equipment reduced availability increased thathere increase direct damage reefs divers direct impact include fishing marine j p roberts c growth coastal tourism red sea present coral reefs also direct environmental_impact due disturbed altered species behaviour fish feeding well import invasive species pollution caused dive boats also indirect construction infrastructure transit increase amount tourist_arrivals worldwide approximately million tourist_arrivals worldwide arrived air_travel air million motor_vehicle ship transport water million percent rail travel rail million world_tourism organization highlights edition internet accessed onov th figures context seven hour flight boeing produces tonnes thequivalent driving average size family saloon car days thenergy requirement average family home nearly seventeen available accessed onov th increasing amount tourist_arrivals ever increasing amount global greenhouse ghg produced tourism_industry estimated global ghg release attributed air_travel alone irony remote pristine undeveloped regions low_impact leave trace adventure vacations ghg contributions increased result annual average global temperature rising year new records set predicted yet exceed previous highest average global c p g p physical biological impacts change nature intergovernmental panel climate_change internet available accessed onov th causing oceans warm causing increased frequency abnormal weather eventsuch increase amount dissolved oceans changing leading oceans turn led coral bleaching coral reef worldwide determined thathe world largest coral reef great barriereef iso badly affected bleaching ten percent remained remaining ninety percent varying degrees coalition great barriereef bleaching internet available accessed onov th recently discovered issue pacific_northwest caused decreased survival key source ofood salmon known butterflies unable form outer shells j c v j l c r key r ocean twenty first_century impact organisms nature tiny creatures make significant portion salmon diet nutrition available salmon may grow return reproduce provide food bears cycle forest tourist come view bears thus food web disturbed change direct indirect impact tourism socio cultural impacts tourism inherent aspect tourism seeking authenticity desire experience different cultural setting natural_environment although cultural_tourism provides opportunities understanding education serious impacts arise result volume tourism important buthe types social interaction occur tourist three broad effects athe commodification culture demonstration effect another culture commodification culture common destinations use aspect culture means attractourists means making culture commodity hence packaging selling consumption attaching economic value heritage loses inherent meaning turn leads fundamental social cultural changes sometimes even themergence culture longer authentic however cultural tourists come experience local_culture wanto see authenticity results commodification staged culture becomes less attractive becomes tourists hence increased commodification generally leads decrease tourism yet commodification bring benefits allows sharing culture griffin brings economic_benefits solve social problems community give influence governmental decisions may_also interest lost arts skills foster community demonstration effect demonstration effect occurs high degree difference host tourist common tourists visit developing communities mason tourism impacts planning managementhe tourist way life seems desirable copied varying mainly tourist consumption patterns also_includes behaviours attitudes even certain ways thinking youth particularly vulnerable drive old new generation gap parent child tourism pronounced occurs culture within dominant culture migration case developed world competing culture developing world creates detachment thexisting culture potentially also affects visitors experience affecthe authenticity cultural experience positive socio cultural impacts tourism beneficial host community provides financial means incentive preserve cultural histories local heritage_sites customs interest local crafts traditional dance oral histories community wider world new ideas new experiences c recreational tourism demand impacts vol channel view publications negative socio cultural impacts negativeffects cultural v h techniques socially sustainable_tourism_development lessons department geography publication series university waterloo tourists violate customs dearden p cultural aspects tourism sustainable northern geography publication series university waterloo culturally sensitive locations introduction different cultural beliefs visitors tends create older younger generations locals suffer increased stresses trying exist tourists number tourists host community challenging ability preserve lifestyle another potential impact rise illicit activitiesuch prostitution substance abuse drug_use impacts global tourism contributed billion world gross domestic product gdp total contribution rising almost world gross domestic product gdp turner travel_tourism economic_impact world london_wto influx gross domestic product gdp comes billion international_tourists worldwide number growing annually since e stage j theconomic impacts tourism south_africa poverty natural_resources forum b perceptions local_communities theconomic impacts tourism_development malaysia web conferences vol pp visitation gross domestic product gdp arexpected continue rise near future falling oil prices contribute reduced living costs increased available income households well reduced costs air_travel_tourism divided impacts fall spending visitors tourism experiences like theme_parks domestic international spending leisure items like bicycles capital j b jensen butler c regional economic_impacts tourism case denmark regional studies tourism felt direct indirect ways direct economic_impacts created commodities like following sold accommodation entertainment food retail opportunities residents visitors businesses various levels governments municipal influence impacts spending near given tourism c j b tourism principles practices john wiley sons key component direct economic_impacts tourism thathey occur within country borders implemented residents non residents business leisure purposes contrast indirect economic_impacts tourism found investment spending surrounding tourism offering private governmental interests investment may explicitly related_tourism benefits tourist local project stakeholders indirect impacts tourism purchase sale items like additional supplies forestaurants high tourism season busy downtown centres indirect economic_impacts supply government collective account total gdp contribution travel_tourism induced spending circulation tourist dollar within community another way thatourism impact r dearden p tourism_ecotourism protected_areas p dearden needham eds parks protected_areas canada planning management fourth_edition pp university_press example foreign tourist money local_economy spend dollar souvenir made local athe tourism_destination individual goes spend dollar lunch local vendor vendor goes spend locally p tourism impacts planning management j estimating theconomic impacts tourism annals tourism_research positive negativeconomic impacts tourism positive negativeffects communities related theconomic impacts tourism communities positive impact refer increase jobs higher quality life locals increase wealth area tourism_also advantage rebuilding historic_sites encouraging revitalization tourism society guide problems issues venture publishing state college pennsylvania chapters positive impact increase make better either host community residence tourist_destination positive impacts arelated well rather happiness host community tourist k doctor philosophy hospitality_tourism tourism impacts upon quality life residents community virginia polytechnic institute state_university retrieved_november tourist_destination positive impacts improvements natural_environment parks man_made infrastructure waste treatment provides theconomic stimulus allow diversification employment income potential andevelop resources within community improvements infrastructure services benefit bothe locals tourists whereas heritage_tourism focus local history historical eventhat occurred areand tends j planning tourism rural_areas policy implementation gap tourism_research critiques challenges routledge london positive impacts begin increase job opportunities locals tourism_industry becomes developed also increase average income spreads throughouthe community tourism addition local_economy goods manufactured locally new markets open local business owners expand unfortunately benefits universal may available tourism_related jobs often seasonal low paying entrants job market prices known throughouthe year rise high tourism season take_advantage tourist dollars theconomic reach local_residents effectively place home negative_impacts theffects caused cases athe tourist_destination site detrimental impacts social cultural areas well natural_environment population impacts resources become carrying_capacity tourists destination site may become nelson r butler g wall tourism sustainable_development civic joint university waterloo geography publication series number university waterloo typically impacts occurring late place restrictions regulations tourist discover many negative_impacts found development stage tourism area life cycle nelson j g butler wall g tourism sustainable_development civic approach department geography university waterloo theconomics tourism shown push local tourism_business owners favour strangers region foreign ownership creates leakage revenues leaving host community another nation multi national business strip opportunity locals make meaningful johnston r j theconomic impacts tourism special issue journal travel research foreign companies also_known hire non resident seasonal workers pay individuals lower wages contributes economic leakage tourism raise property prices near tourism area effectively pushing locals encouraging businesses encourage take_advantage tourist spending employment availability economic_impacts tourism_travel_tourism create total available jobs worldwide bothe direct sectors jobs provide visitor witheir tourism experience include limited accommodation building cleaning managing food_andrink services entertainment manufacturing shopping employment opportunities include manufacturing aircraft boats transportation well construction additional infrastructure necessary accommodate travel products airports etc tourism satellite world_travel_tourism council tourism satellite system measurement recognized united_nations define thextent economic sector easily defined industries like forest industry forestry oil gas industry oil gas tourism fit statistical model much dependent physical movement products services position consumer therefore designed many offerings international scale facilitate better understanding circumstances locally abroad standardization includes concepts meanto enable researchers industry professionals average tourism_business owner view international comparisons widely implemented gap existed available knowledge aboutourism economic driver gross domestic product gdp employment investment industry consumption indicators primarily therefore lacking scientific analytical costa c tourismanagement dynamics trends management gap meant missed opportunities development tourism stakeholders unable understand might able better establish tourism economy example tsa measure tax revenues related_tourism key contributor level enthusiasm level government might towards potential tourism investment addition johnston suggesthat stakeholders tourism benefit tsa provides data impact tourism associated employment framework statistical data tourism international standard endorsed statistical commission instrument designing economic policies related_tourism_development provides data tourism impact nation balance payments provides_information tourism human_resource characteristics collection qualitative datand effective form tourism providers able fill previous knowledge gap information delivered measured tsa includes tax revenues economic_impact onational human_resources employment tourism contribution gross domestic product projections thextento impacts tourism impacthe world economy world economic system appear agree thathe number international_tourist arrivals reach approximately billion year tourists billion arexpected regional million long_haul travelers arrivals developing_countries arexpected continue growing recorded total arrivals recorded access moremote locations becomes easier direct contributions travel_tourism world economy gross domestic product gdp arexpected rise withe impacts found investment supply chain sectors employment anticipated rise parallel gdp contributions reaching world employment employment estimated total world employment approximately employment approximately see_also sustainable_tourism references_category_tourism category_economy thenvironment"},{"title":"In Your Pocket City Guides","description":"file in your pocket logopng righthumb px in your pocket iyp is a european city guide publisher and online tourist information provider as of april it publishes city guides to destinations and provides free online information tover cities in countries in europe from athens to z rich belfasto bucharestallinn to tiranand st petersburg to sofia distributed locally mainly in hotels and newsstands thentire content of most guides can also be downloaded from the website free of charge as a pdf document which allows travellers to read and print outhe full guide before departure the first in your pocket city guide vilnius in your pocket was written in late by german journalist matthias l fkens and belgian brothers george oliver and nicolas ortiz in vilnius lithuania since then the four founders have franchised the in your pocket guides which cover key tourist cities as well as obscure off beat destinationsuch as athens belfast berlin bra ov bucharest cagliari eskrumlov derry dubrovnik frankfurt gda sk gdynia haapsalu kaliningrad kaunas kiev klaip da kor a krak w leipzig liep ja ljubljana d lviv milan minsk moscow narva nida lithuania nida odessa oristano palanga p rnu pe poiana bra ov pozna prague pristina prizren riga rijeka s hertogenbosch shkodra iauliai sofia sopot st petersburg tallinn tarn w tartu tirana trieste utrecht venice vilnius warsawroc aw zadar zagreb and z rich in june in your pocket published print and online city guides to all the football world cup venues in germany and in june is published bespoke guides for all euro venues in poland in september in your pocket published its first iphone application this free travel app in your pocket city essentials now available for ios android the guidebooks have received much praise in the international media the wall street journal described the style as tongue in cheek advice with brutal honesty visitors beware lithuania s unorthodox approach tourism wall street journal september accessed september the international herald tribune described them as an eastern european publishing phenomenon a pocketful of tips on eastern europe international herald tribune may accessed march and the times wrote thathey are the best guides to eastern europe alternative city guidebooks and websites the timeseptember accessed march adding thathe website is a literally priceless firstop before your holiday inside information the times july accessed march the new york times notes it is a good all around information site cultured traveler the new york times july accessed march and the independent lists their website among the ten bestravel websites because the writers compilers live locally and the guides are frequently updated the ten bestravel websites the independent january accessed march the guardian observes that inyourpocketcom was the first online travel guide to come up withe idea offering free downloadable city guides in printable pdformat best of the net essential sites the guardian may accessed march noting that it is a brilliant resource written by excellent writers whose slant is always off the trail blog by bloguide to art in europe the guardian february accessed march and the observer says it is the most reliable source what is a kerthe observer may accessed march the guides are frequently mentioned in traditional guidebooksuch as lonely planet let s go travel guides orough guides references externalinks category travel guide books category series of books category travel websites","main_words":["file","pocket","logopng","righthumb_px","pocket","european","city_guide","publisher","online","tourist_information","provider","april","publishes","city_guides","destinations","provides","free","online","information","tover","cities","countries","europe","athens","rich","st_petersburg","sofia","distributed","locally","mainly","hotels","newsstands","thentire","content","guides","also","downloaded","website","free","charge","pdf","document","allows","travellers","read","print","outhe","full","guide","departure","first","pocket","city_guide","vilnius","pocket","written","late","german","journalist","matthias","l","belgian","brothers","george","oliver","nicolas","vilnius","lithuania","since","four","founders","franchised","pocket","guides","cover","key","tourist","cities","well","obscure","beat","destinationsuch","athens","belfast","berlin","bra","bucharest","derry","frankfurt","kiev","krak","w","leipzig","lviv","milan","moscow","lithuania","p","bra","prague","sofia","st_petersburg","tallinn","w","venice","vilnius","zagreb","rich","june","pocket","published","print","online","city_guides","football","world_cup","venues","germany","june","published","guides","euro","venues","poland","september","pocket","published","first","iphone","application","free","travel","app","pocket","city","available","ios","android","guidebooks","received","much","praise","international","media","wall_street_journal","described","style","tongue","advice","brutal","visitors","lithuania","approach","tourism","wall_street_journal","september","accessed","september","international","herald","tribune","described","eastern_european","publishing","phenomenon","tips","eastern_europe","international","herald","tribune","may","accessed_march","times","wrote","thathey","best","guides","eastern_europe","alternative","websites","accessed_march","adding","thathe","website","literally","holiday","inside","information","times","july","accessed_march","new_york","times","notes","good","around","information","site","traveler","new_york","times","july","accessed_march","independent","lists","website","among","ten","bestravel","websites","writers","live","locally","guides","frequently","updated","ten","bestravel","websites","independent","january","accessed_march","guardian","observes","first","come","withe_idea","offering","free","city_guides","best","net","essential","sites","guardian","may","accessed_march","noting","brilliant","resource","written","excellent","writers","whose","always","trail","blog","art","europe","guardian","february","accessed_march","observer","says","reliable","source","observer","may","accessed_march","guides","frequently","mentioned","traditional","lonely_planet","let","go_travel_guides","guides","references_externalinks","category_travel_guide_books","category_series","books_category","travel_websites"],"clean_bigrams":[["pocket","logopng"],["logopng","righthumb"],["righthumb","px"],["european","city"],["city","guide"],["guide","publisher"],["online","tourist"],["tourist","information"],["information","provider"],["publishes","city"],["city","guides"],["provides","free"],["free","online"],["online","information"],["information","tover"],["tover","cities"],["st","petersburg"],["sofia","distributed"],["distributed","locally"],["locally","mainly"],["newsstands","thentire"],["thentire","content"],["website","free"],["pdf","document"],["allows","travellers"],["print","outhe"],["outhe","full"],["full","guide"],["pocket","city"],["city","guide"],["guide","vilnius"],["german","journalist"],["journalist","matthias"],["matthias","l"],["belgian","brothers"],["brothers","george"],["george","oliver"],["vilnius","lithuania"],["lithuania","since"],["four","founders"],["pocket","guides"],["cover","key"],["key","tourist"],["tourist","cities"],["beat","destinationsuch"],["athens","belfast"],["belfast","berlin"],["berlin","bra"],["krak","w"],["w","leipzig"],["lviv","milan"],["st","petersburg"],["petersburg","tallinn"],["venice","vilnius"],["pocket","published"],["published","print"],["online","city"],["city","guides"],["football","world"],["world","cup"],["cup","venues"],["euro","venues"],["pocket","published"],["first","iphone"],["iphone","application"],["free","travel"],["travel","app"],["pocket","city"],["ios","android"],["received","much"],["much","praise"],["international","media"],["wall","street"],["street","journal"],["journal","described"],["approach","tourism"],["tourism","wall"],["wall","street"],["street","journal"],["journal","september"],["september","accessed"],["accessed","september"],["international","herald"],["herald","tribune"],["tribune","described"],["eastern","european"],["european","publishing"],["publishing","phenomenon"],["eastern","europe"],["europe","international"],["international","herald"],["herald","tribune"],["tribune","may"],["may","accessed"],["accessed","march"],["times","wrote"],["wrote","thathey"],["best","guides"],["eastern","europe"],["europe","alternative"],["alternative","city"],["city","guidebooks"],["accessed","march"],["march","adding"],["adding","thathe"],["thathe","website"],["holiday","inside"],["inside","information"],["times","july"],["july","accessed"],["accessed","march"],["new","york"],["york","times"],["times","notes"],["around","information"],["information","site"],["new","york"],["york","times"],["times","july"],["july","accessed"],["accessed","march"],["independent","lists"],["website","among"],["ten","bestravel"],["bestravel","websites"],["live","locally"],["frequently","updated"],["ten","bestravel"],["bestravel","websites"],["independent","january"],["january","accessed"],["accessed","march"],["guardian","observes"],["first","online"],["online","travel"],["travel","guide"],["withe","idea"],["idea","offering"],["offering","free"],["city","guides"],["net","essential"],["essential","sites"],["guardian","may"],["may","accessed"],["accessed","march"],["march","noting"],["brilliant","resource"],["resource","written"],["excellent","writers"],["writers","whose"],["trail","blog"],["guardian","february"],["february","accessed"],["accessed","march"],["observer","says"],["reliable","source"],["observer","may"],["may","accessed"],["accessed","march"],["frequently","mentioned"],["lonely","planet"],["planet","let"],["go","travel"],["travel","guides"],["guides","references"],["references","externalinks"],["externalinks","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","series"],["books","category"],["category","travel"],["travel","websites"]],"all_collocations":["pocket logopng","logopng righthumb","righthumb px","european city","city guide","guide publisher","online tourist","tourist information","information provider","publishes city","city guides","provides free","free online","online information","information tover","tover cities","st petersburg","sofia distributed","distributed locally","locally mainly","newsstands thentire","thentire content","website free","pdf document","allows travellers","print outhe","outhe full","full guide","pocket city","city guide","guide vilnius","german journalist","journalist matthias","matthias l","belgian brothers","brothers george","george oliver","vilnius lithuania","lithuania since","four founders","pocket guides","cover key","key tourist","tourist cities","beat destinationsuch","athens belfast","belfast berlin","berlin bra","krak w","w leipzig","lviv milan","st petersburg","petersburg tallinn","venice vilnius","pocket published","published print","online city","city guides","football world","world cup","cup venues","euro venues","pocket published","first iphone","iphone application","free travel","travel app","pocket city","ios android","received much","much praise","international media","wall street","street journal","journal described","approach tourism","tourism wall","wall street","street journal","journal september","september accessed","accessed september","international herald","herald tribune","tribune described","eastern european","european publishing","publishing phenomenon","eastern europe","europe international","international herald","herald tribune","tribune may","may accessed","accessed march","times wrote","wrote thathey","best guides","eastern europe","europe alternative","alternative city","city guidebooks","accessed march","march adding","adding thathe","thathe website","holiday inside","inside information","times july","july accessed","accessed march","new york","york times","times notes","around information","information site","new york","york times","times july","july accessed","accessed march","independent lists","website among","ten bestravel","bestravel websites","live locally","frequently updated","ten bestravel","bestravel websites","independent january","january accessed","accessed march","guardian observes","first online","online travel","travel guide","withe idea","idea offering","offering free","city guides","net essential","essential sites","guardian may","may accessed","accessed march","march noting","brilliant resource","resource written","excellent writers","writers whose","trail blog","guardian february","february accessed","accessed march","observer says","reliable source","observer may","may accessed","accessed march","frequently mentioned","lonely planet","planet let","go travel","travel guides","guides references","references externalinks","externalinks category","category travel","travel guide","guide books","books category","category series","books category","category travel","travel websites"],"new_description":"file pocket logopng righthumb_px pocket european city_guide publisher online tourist_information provider april publishes city_guides destinations provides free online information tover cities countries europe athens rich st_petersburg sofia distributed locally mainly hotels newsstands thentire content guides also downloaded website free charge pdf document allows travellers read print outhe full guide departure first pocket city_guide vilnius pocket written late german journalist matthias l belgian brothers george oliver nicolas vilnius lithuania since four founders franchised pocket guides cover key tourist cities well obscure beat destinationsuch athens belfast berlin bra bucharest derry frankfurt kiev krak w leipzig lviv milan moscow lithuania p bra prague sofia st_petersburg tallinn w venice vilnius zagreb rich june pocket published print online city_guides football world_cup venues germany june published guides euro venues poland september pocket published first iphone application free travel app pocket city available ios android guidebooks received much praise international media wall_street_journal described style tongue advice brutal visitors lithuania approach tourism wall_street_journal september accessed september international herald tribune described eastern_european publishing phenomenon tips eastern_europe international herald tribune may accessed_march times wrote thathey best guides eastern_europe alternative city_guidebooks websites accessed_march adding thathe website literally holiday inside information times july accessed_march new_york times notes good around information site traveler new_york times july accessed_march independent lists website among ten bestravel websites writers live locally guides frequently updated ten bestravel websites independent january accessed_march guardian observes first online_travel_guide come withe_idea offering free city_guides best net essential sites guardian may accessed_march noting brilliant resource written excellent writers whose always trail blog art europe guardian february accessed_march observer says reliable source observer may accessed_march guides frequently mentioned traditional lonely_planet let go_travel_guides guides references_externalinks category_travel_guide_books category_series books_category travel_websites"},{"title":"Index of drinking establishment-related articles","description":"file ye olde fighting cocks jpg thumb px ye olde fighting cocks in st albans hertfordshire holds the guinness world records guinness world record for the oldest pub in england this an index of drinking establishment related articles file five bartenders behind st charles hotel barjpg thumbartender s athe st charles hotel in toronto circa types of drinking establishment alcohol free bar australian pubar establishment bar beer hall biker bar botequim brewpub cantina cider house cigar bar dance bar dive bar drinking establishment fern bar gastropub gay bar gothenburg public house system honky tonk host and hostess clubs ice bar inn irish pub izakaya juke joint lesbian bar micropub nightclub ratskelleroadhouse facility roadhouse shebeen speakeasy tavern tied house tiki bar western saloon lists of pubs list of award winning pubs in london list ofictional bars and pubs list oformer public houses and coffeehouses in boston list of pubs in australia list of pubs in dublin list of pubs in london list of pubs in sheffield list of pubs in the united kingdom list of pubs named carpenter arms pubs and inns in grantham bar terminology bar back bartender bartending terminology beer engine beer garden cocktail waitress flair bartending happy hour ladies night last call bar term last call act of parliament clock alcoholicensing laws of the united kingdom anti saloon league b image hofbraeukeller jpg thumb a beer garden in munich germany beerhouse act birmingham pubombings c file cantina el nivel jpg thumb customers at a cantina campaign foreale cheers sitcom classicocktail eire pub dorchester massachusetts visited by presidents and prime ministers and political candidates g the good pub guide guildford pubombings ice luge j d wetherspoon king street run l image longest bar mildurajpg righthumb the mildura working man s club in bar establishment bar length it has been considered as one of the longest bar in australia longest bars in australia list of microbreweries longest bar in australia microbrewery national pub of the year pub chain pub church pub crawl pub design awards pub games pub golf pub names pub philosophy image pubquizjpg thumb a pub quiz team in amsterdam pub quiz pub rock australia pub rock united kingdom pub song pub token cuisine of montevideo public houses public houses of montevideo punch taverns rail ale ramble s file steese roadhouse alaskajpg thumb steese roadhouse facility roadhouse in centralaska is the sole bar general store and gastation in central file shebeen in joe slovo parkjpg thumb a shebeen in joe slovo park cape town santacon six o clock swill skeptics in the pub stonegate pub company world of pub sitcom the world s end film the world s end film zombie pub crawl file faro card gamejpg men in an arizona western saloon in playing a game ofaro card game faro file cookscorner jpg cook s corner a biker bar circa see also alcoholic beverage beer and breweries by region cocktail drinking culture drinkingame list of alcoholic beverages list of bartenders list of cocktails list of drinkingames mixedrinks externalinks category pubs list category drinking establishments category drinking culture category hospitality industry","main_words":["file","olde","fighting","cocks","jpg","thumb","px","olde","fighting","cocks","st_albans","hertfordshire","holds","guinness_world_records","guinness_world_record","oldest","pub","england","index","drinking_establishment","related_articles","file","five","bartenders","behind","st","charles","hotel","barjpg","athe","st","charles","hotel","toronto","circa","types","drinking_establishment","alcohol_free_bar","australian","beer","hall","biker","bar","brewpub","cantina","cider","house","bar","dance_bar","dive_bar","drinking_establishment","bar","gastropub","gay","bar","gothenburg","public_house","system","honky","tonk","host","hostess","clubs","ice","bar","inn","irish_pub","izakaya","juke_joint","lesbian","bar","nightclub","facility","roadhouse","shebeen","speakeasy","tavern","tied","house","tiki","bar","western","saloon","lists","pubs","list","award_winning","pubs","london","list","ofictional","bars","pubs","list","oformer","public_houses","coffeehouses","boston","list","pubs","australia","list","pubs","dublin","list","pubs","london","list","pubs","sheffield","list","pubs","united_kingdom","list","pubs","named","arms","pubs","inns","bar","terminology","bar","back","bartender","bartending","terminology","beer","engine","beer_garden","cocktail","waitress","bartending","happy_hour","ladies","night","last","call","bar","term","last","call","act","parliament","clock","laws","united_kingdom","anti","saloon","league","b","image","jpg","thumb","beer_garden","munich","germany","act","birmingham","c","file","cantina","el","nivel","jpg","thumb","customers","cantina","campaign_foreale","pub","massachusetts","visited","presidents","political","candidates","g","good","pub_guide","ice","j","king_street","run","l","image","longest","bar","righthumb","working","man","club","bar_establishment_bar","length","considered","one","longest","bar","australia","longest","bars","australia","list","microbreweries","longest","bar","australia","microbrewery","national_pub","year","pub_chain","pub","church","pub","crawl","pub","design","awards","pub","games","pub","golf","pub","names","pub","philosophy","image","thumb","pub","quiz","team","amsterdam","pub","quiz","pub","rock","australia","pub","rock","united_kingdom","pub","song","pub","token","cuisine","montevideo","public_houses","public_houses","montevideo","punch","taverns","rail","ale","file","roadhouse","thumb","roadhouse","facility","roadhouse","sole","bar","general","store","gastation","central","file","shebeen","joe","parkjpg","thumb","shebeen","joe","park","cape_town","six","clock","pub","pub_company","world","pub","world","end","film","world","end","film","pub","crawl","file","faro","card","men","arizona","western","saloon","playing","game","card","game","faro","file_jpg","cook","corner","biker","bar","circa","see_also","alcoholic_beverage","beer","breweries","region","cocktail","drinking_culture","list","alcoholic_beverages","list","bartenders","list","cocktails","list","externalinks_category","pubs","list","category_drinking_establishments","culture_category","hospitality_industry"],"clean_bigrams":[["olde","fighting"],["fighting","cocks"],["cocks","jpg"],["jpg","thumb"],["thumb","px"],["olde","fighting"],["fighting","cocks"],["st","albans"],["albans","hertfordshire"],["hertfordshire","holds"],["guinness","world"],["world","records"],["records","guinness"],["guinness","world"],["world","record"],["oldest","pub"],["drinking","establishment"],["establishment","related"],["related","articles"],["articles","file"],["file","five"],["five","bartenders"],["bartenders","behind"],["behind","st"],["st","charles"],["charles","hotel"],["hotel","barjpg"],["athe","st"],["st","charles"],["charles","hotel"],["toronto","circa"],["circa","types"],["drinking","establishment"],["establishment","alcohol"],["alcohol","free"],["free","bar"],["bar","australian"],["establishment","bar"],["bar","beer"],["beer","hall"],["hall","biker"],["biker","bar"],["brewpub","cantina"],["cantina","cider"],["cider","house"],["bar","dance"],["dance","bar"],["bar","dive"],["dive","bar"],["bar","drinking"],["drinking","establishment"],["establishment","bar"],["bar","gastropub"],["gastropub","gay"],["gay","bar"],["bar","gothenburg"],["gothenburg","public"],["public","house"],["house","system"],["system","honky"],["honky","tonk"],["tonk","host"],["hostess","clubs"],["clubs","ice"],["ice","bar"],["bar","inn"],["inn","irish"],["irish","pub"],["pub","izakaya"],["izakaya","juke"],["juke","joint"],["joint","lesbian"],["lesbian","bar"],["facility","roadhouse"],["roadhouse","shebeen"],["shebeen","speakeasy"],["speakeasy","tavern"],["tavern","tied"],["tied","house"],["house","tiki"],["tiki","bar"],["bar","western"],["western","saloon"],["saloon","lists"],["pubs","list"],["award","winning"],["winning","pubs"],["london","list"],["list","ofictional"],["ofictional","bars"],["pubs","list"],["list","oformer"],["oformer","public"],["public","houses"],["boston","list"],["australia","list"],["dublin","list"],["london","list"],["sheffield","list"],["united","kingdom"],["kingdom","list"],["pubs","named"],["arms","pubs"],["bar","terminology"],["terminology","bar"],["bar","back"],["back","bartender"],["bartender","bartending"],["bartending","terminology"],["terminology","beer"],["beer","engine"],["engine","beer"],["beer","garden"],["garden","cocktail"],["cocktail","waitress"],["bartending","happy"],["happy","hour"],["hour","ladies"],["ladies","night"],["night","last"],["last","call"],["call","bar"],["bar","term"],["term","last"],["last","call"],["call","act"],["parliament","clock"],["united","kingdom"],["kingdom","anti"],["anti","saloon"],["saloon","league"],["league","b"],["b","image"],["jpg","thumb"],["beer","garden"],["munich","germany"],["act","birmingham"],["c","file"],["file","cantina"],["cantina","el"],["el","nivel"],["nivel","jpg"],["jpg","thumb"],["thumb","customers"],["cantina","campaign"],["campaign","foreale"],["massachusetts","visited"],["prime","ministers"],["political","candidates"],["candidates","g"],["good","pub"],["pub","guide"],["king","street"],["street","run"],["run","l"],["l","image"],["image","longest"],["longest","bar"],["working","man"],["bar","establishment"],["establishment","bar"],["bar","length"],["longest","bar"],["australia","longest"],["longest","bars"],["australia","list"],["microbreweries","longest"],["longest","bar"],["australia","microbrewery"],["microbrewery","national"],["national","pub"],["year","pub"],["pub","chain"],["chain","pub"],["pub","church"],["church","pub"],["pub","crawl"],["crawl","pub"],["pub","design"],["design","awards"],["awards","pub"],["pub","games"],["games","pub"],["pub","golf"],["golf","pub"],["pub","names"],["names","pub"],["pub","philosophy"],["philosophy","image"],["pub","quiz"],["quiz","team"],["amsterdam","pub"],["pub","quiz"],["quiz","pub"],["pub","rock"],["rock","australia"],["australia","pub"],["pub","rock"],["rock","united"],["united","kingdom"],["kingdom","pub"],["pub","song"],["song","pub"],["pub","token"],["token","cuisine"],["montevideo","public"],["public","houses"],["houses","public"],["public","houses"],["montevideo","punch"],["punch","taverns"],["taverns","rail"],["rail","ale"],["roadhouse","facility"],["facility","roadhouse"],["sole","bar"],["bar","general"],["general","store"],["central","file"],["file","shebeen"],["parkjpg","thumb"],["park","cape"],["cape","town"],["pub","company"],["company","world"],["end","film"],["end","film"],["pub","crawl"],["crawl","file"],["file","faro"],["faro","card"],["arizona","western"],["western","saloon"],["card","game"],["game","faro"],["faro","file"],["jpg","cook"],["biker","bar"],["bar","circa"],["circa","see"],["see","also"],["also","alcoholic"],["alcoholic","beverage"],["beverage","beer"],["region","cocktail"],["cocktail","drinking"],["drinking","culture"],["alcoholic","beverages"],["beverages","list"],["bartenders","list"],["cocktails","list"],["externalinks","category"],["category","pubs"],["pubs","list"],["list","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","drinking"],["drinking","culture"],["culture","category"],["category","hospitality"],["hospitality","industry"]],"all_collocations":["olde fighting","fighting cocks","cocks jpg","olde fighting","fighting cocks","st albans","albans hertfordshire","hertfordshire holds","guinness world","world records","records guinness","guinness world","world record","oldest pub","drinking establishment","establishment related","related articles","articles file","file five","five bartenders","bartenders behind","behind st","st charles","charles hotel","hotel barjpg","athe st","st charles","charles hotel","toronto circa","circa types","drinking establishment","establishment alcohol","alcohol free","free bar","bar australian","establishment bar","bar beer","beer hall","hall biker","biker bar","brewpub cantina","cantina cider","cider house","bar dance","dance bar","bar dive","dive bar","bar drinking","drinking establishment","establishment bar","bar gastropub","gastropub gay","gay bar","bar gothenburg","gothenburg public","public house","house system","system honky","honky tonk","tonk host","hostess clubs","clubs ice","ice bar","bar inn","inn irish","irish pub","pub izakaya","izakaya juke","juke joint","joint lesbian","lesbian bar","facility roadhouse","roadhouse shebeen","shebeen speakeasy","speakeasy tavern","tavern tied","tied house","house tiki","tiki bar","bar western","western saloon","saloon lists","pubs list","award winning","winning pubs","london list","list ofictional","ofictional bars","pubs list","list oformer","oformer public","public houses","boston list","australia list","dublin list","london list","sheffield list","united kingdom","kingdom list","pubs named","arms pubs","bar terminology","terminology bar","bar back","back bartender","bartender bartending","bartending terminology","terminology beer","beer engine","engine beer","beer garden","garden cocktail","cocktail waitress","bartending happy","happy hour","hour ladies","ladies night","night last","last call","call bar","bar term","term last","last call","call act","parliament clock","united kingdom","kingdom anti","anti saloon","saloon league","league b","b image","beer garden","munich germany","act birmingham","c file","file cantina","cantina el","el nivel","nivel jpg","thumb customers","cantina campaign","campaign foreale","massachusetts visited","prime ministers","political candidates","candidates g","good pub","pub guide","king street","street run","run l","l image","image longest","longest bar","working man","bar establishment","establishment bar","bar length","longest bar","australia longest","longest bars","australia list","microbreweries longest","longest bar","australia microbrewery","microbrewery national","national pub","year pub","pub chain","chain pub","pub church","church pub","pub crawl","crawl pub","pub design","design awards","awards pub","pub games","games pub","pub golf","golf pub","pub names","names pub","pub philosophy","philosophy image","pub quiz","quiz team","amsterdam pub","pub quiz","quiz pub","pub rock","rock australia","australia pub","pub rock","rock united","united kingdom","kingdom pub","pub song","song pub","pub token","token cuisine","montevideo public","public houses","houses public","public houses","montevideo punch","punch taverns","taverns rail","rail ale","roadhouse facility","facility roadhouse","sole bar","bar general","general store","central file","file shebeen","parkjpg thumb","park cape","cape town","pub company","company world","end film","end film","pub crawl","crawl file","file faro","faro card","arizona western","western saloon","card game","game faro","faro file","jpg cook","biker bar","bar circa","circa see","see also","also alcoholic","alcoholic beverage","beverage beer","region cocktail","cocktail drinking","drinking culture","alcoholic beverages","beverages list","bartenders list","cocktails list","externalinks category","category pubs","pubs list","list category","category drinking","drinking establishments","establishments category","category drinking","drinking culture","culture category","category hospitality","hospitality industry"],"new_description":"file olde fighting cocks jpg thumb px olde fighting cocks st_albans hertfordshire holds guinness_world_records guinness_world_record oldest pub england index drinking_establishment related_articles file five bartenders behind st charles hotel barjpg athe st charles hotel toronto circa types drinking_establishment alcohol_free_bar australian establishment_bar beer hall biker bar brewpub cantina cider house bar dance_bar dive_bar drinking_establishment bar gastropub gay bar gothenburg public_house system honky tonk host hostess clubs ice bar inn irish_pub izakaya juke_joint lesbian bar nightclub facility roadhouse shebeen speakeasy tavern tied house tiki bar western saloon lists pubs list award_winning pubs london list ofictional bars pubs list oformer public_houses coffeehouses boston list pubs australia list pubs dublin list pubs london list pubs sheffield list pubs united_kingdom list pubs named arms pubs inns bar terminology bar back bartender bartending terminology beer engine beer_garden cocktail waitress bartending happy_hour ladies night last call bar term last call act parliament clock laws united_kingdom anti saloon league b image jpg thumb beer_garden munich germany act birmingham c file cantina el nivel jpg thumb customers cantina campaign_foreale pub massachusetts visited presidents prime_ministers political candidates g good pub_guide ice j king_street run l image longest bar righthumb working man club bar_establishment_bar length considered one longest bar australia longest bars australia list microbreweries longest bar australia microbrewery national_pub year pub_chain pub church pub crawl pub design awards pub games pub golf pub names pub philosophy image thumb pub quiz team amsterdam pub quiz pub rock australia pub rock united_kingdom pub song pub token cuisine montevideo public_houses public_houses montevideo punch taverns rail ale file roadhouse thumb roadhouse facility roadhouse sole bar general store gastation central file shebeen joe parkjpg thumb shebeen joe park cape_town six clock pub pub_company world pub world end film world end film pub crawl file faro card men arizona western saloon playing game card game faro file_jpg cook corner biker bar circa see_also alcoholic_beverage beer breweries region cocktail drinking_culture list alcoholic_beverages list bartenders list cocktails list externalinks_category pubs list category_drinking_establishments category_drinking culture_category hospitality_industry"},{"title":"Indonesia Handbook","description":"bill dalton s indonesia handbook published by moon publications in california was the main english language tourist guide book for the whole of indonesia between the s and the s history the book originated in as a typewritten publication a traveler s notes indonesia printed by dalton when he was travelling in australiand reprinthis ledalton to form his company moon publications when he returned to californiand expand publishis travel notes as a full book the indonesia handbook thearlier editions in the late s were much smaller than the later editions during the suharto era the guide book was atimes banned by the time of the last edition published in the book was pages long moon expanded its range to publish a large number of travel handbooks following the successful format of the indonesia handbook to cover other areas for example the south pacific handbook moon handbooksouth pacific by david stanley moon travel guides website green travel talk with david stanley dalton sold his interest in moon publications in and the new owners dropped the title other publications the department of information of the government of indonesia published a volume withe same title between and it had been compiled and produced by japenpa foreign languages publishing institute in the title indonesia handbook was used for a new guide book by footprint books publisher of the south american handbook joshua eliot indonesia handbook publication details dalton bill indonesia handbook nd ed chico calif moon publications rights in hong kong location of printer p dalton bill indonesia handbook rd ed updated and rev chico ca moon publications p dalton bill indonesia handbook th ed chico calif usa moon publications p dalton bill indonesia handbook th ed chico calif usa moon publications p references externalinks biographical details and interviewith dalton category travel guide books category tourism indonesia category books about indonesia","main_words":["bill","dalton","indonesia","handbook","published","moon","publications","california","main","english_language","whole","indonesia","history","book","originated","publication","traveler","notes","indonesia","printed","dalton","travelling","australiand","form","company","moon","publications","returned","californiand","expand","travel","notes","full","book","indonesia","handbook","thearlier","editions","late","much_smaller","later","editions","era","guide_book","atimes","banned","time","last","edition_published","book","pages","long","moon","expanded","range","publish","large_number","travel","handbooks","following","successful","format","indonesia","handbook","cover","areas","example","south_pacific","handbook","moon","pacific","david","stanley","moon","travel_guides","website","green","travel","talk","david","stanley","dalton","sold","interest","moon","publications","new","owners","dropped","title","publications","department","information","government","indonesia","published","volume","withe","title","compiled","produced","foreign","languages","publishing","institute","title","indonesia","handbook","used","new","guide_book","footprint","south_american","handbook","joshua","indonesia","handbook","publication","details","dalton","bill","indonesia","handbook","ed","chico","calif","moon","publications","rights","hong_kong","location","printer","p","dalton","bill","indonesia","handbook","ed","updated","rev","chico","moon","publications","p","dalton","bill","indonesia","handbook","th_ed","chico","calif","usa","moon","publications","p","dalton","bill","indonesia","handbook","th_ed","chico","calif","usa","moon","publications","p","references_externalinks","biographical","details","interviewith","dalton","category_travel_guide_books","category_tourism","indonesia","category_books","indonesia"],"clean_bigrams":[["bill","dalton"],["indonesia","handbook"],["handbook","published"],["moon","publications"],["main","english"],["english","language"],["language","tourist"],["tourist","guide"],["guide","book"],["book","originated"],["notes","indonesia"],["indonesia","printed"],["company","moon"],["moon","publications"],["californiand","expand"],["travel","notes"],["full","book"],["indonesia","handbook"],["handbook","thearlier"],["thearlier","editions"],["much","smaller"],["later","editions"],["guide","book"],["atimes","banned"],["last","edition"],["edition","published"],["pages","long"],["long","moon"],["moon","expanded"],["large","number"],["travel","handbooks"],["handbooks","following"],["successful","format"],["indonesia","handbook"],["south","pacific"],["pacific","handbook"],["handbook","moon"],["david","stanley"],["stanley","moon"],["moon","travel"],["travel","guides"],["guides","website"],["website","green"],["green","travel"],["travel","talk"],["david","stanley"],["stanley","dalton"],["dalton","sold"],["moon","publications"],["new","owners"],["owners","dropped"],["indonesia","published"],["volume","withe"],["foreign","languages"],["languages","publishing"],["publishing","institute"],["title","indonesia"],["indonesia","handbook"],["new","guide"],["guide","book"],["footprint","books"],["books","publisher"],["south","american"],["american","handbook"],["handbook","joshua"],["indonesia","handbook"],["handbook","publication"],["publication","details"],["details","dalton"],["dalton","bill"],["bill","indonesia"],["indonesia","handbook"],["ed","chico"],["chico","calif"],["calif","moon"],["moon","publications"],["publications","rights"],["hong","kong"],["kong","location"],["printer","p"],["p","dalton"],["dalton","bill"],["bill","indonesia"],["indonesia","handbook"],["ed","updated"],["rev","chico"],["moon","publications"],["publications","p"],["p","dalton"],["dalton","bill"],["bill","indonesia"],["indonesia","handbook"],["handbook","th"],["th","ed"],["ed","chico"],["chico","calif"],["calif","usa"],["usa","moon"],["moon","publications"],["publications","p"],["p","dalton"],["dalton","bill"],["bill","indonesia"],["indonesia","handbook"],["handbook","th"],["th","ed"],["ed","chico"],["chico","calif"],["calif","usa"],["usa","moon"],["moon","publications"],["publications","p"],["p","references"],["references","externalinks"],["externalinks","biographical"],["biographical","details"],["interviewith","dalton"],["dalton","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","tourism"],["tourism","indonesia"],["indonesia","category"],["category","books"]],"all_collocations":["bill dalton","indonesia handbook","handbook published","moon publications","main english","english language","language tourist","tourist guide","guide book","book originated","notes indonesia","indonesia printed","company moon","moon publications","californiand expand","travel notes","full book","indonesia handbook","handbook thearlier","thearlier editions","much smaller","later editions","guide book","atimes banned","last edition","edition published","pages long","long moon","moon expanded","large number","travel handbooks","handbooks following","successful format","indonesia handbook","south pacific","pacific handbook","handbook moon","david stanley","stanley moon","moon travel","travel guides","guides website","website green","green travel","travel talk","david stanley","stanley dalton","dalton sold","moon publications","new owners","owners dropped","indonesia published","volume withe","foreign languages","languages publishing","publishing institute","title indonesia","indonesia handbook","new guide","guide book","footprint books","books publisher","south american","american handbook","handbook joshua","indonesia handbook","handbook publication","publication details","details dalton","dalton bill","bill indonesia","indonesia handbook","ed chico","chico calif","calif moon","moon publications","publications rights","hong kong","kong location","printer p","p dalton","dalton bill","bill indonesia","indonesia handbook","ed updated","rev chico","moon publications","publications p","p dalton","dalton bill","bill indonesia","indonesia handbook","handbook th","th ed","ed chico","chico calif","calif usa","usa moon","moon publications","publications p","p dalton","dalton bill","bill indonesia","indonesia handbook","handbook th","th ed","ed chico","chico calif","calif usa","usa moon","moon publications","publications p","p references","references externalinks","externalinks biographical","biographical details","interviewith dalton","dalton category","category travel","travel guide","guide books","books category","category tourism","tourism indonesia","indonesia category","category books"],"new_description":"bill dalton indonesia handbook published moon publications california main english_language tourist_guide_book whole indonesia history book originated publication traveler notes indonesia printed dalton travelling australiand form company moon publications returned californiand expand travel notes full book indonesia handbook thearlier editions late much_smaller later editions era guide_book atimes banned time last edition_published book pages long moon expanded range publish large_number travel handbooks following successful format indonesia handbook cover areas example south_pacific handbook moon pacific david stanley moon travel_guides website green travel talk david stanley dalton sold interest moon publications new owners dropped title publications department information government indonesia published volume withe title compiled produced foreign languages publishing institute title indonesia handbook used new guide_book footprint books_publisher south_american handbook joshua indonesia handbook publication details dalton bill indonesia handbook ed chico calif moon publications rights hong_kong location printer p dalton bill indonesia handbook ed updated rev chico moon publications p dalton bill indonesia handbook th_ed chico calif usa moon publications p dalton bill indonesia handbook th_ed chico calif usa moon publications p references_externalinks biographical details interviewith dalton category_travel_guide_books category_tourism indonesia category_books indonesia"},{"title":"Industrial tourism","description":"industrial tourism is tourism in which the desiredestination includes industrial sites peculiar to a particular location the concept is not new as it includes wine tourism wine tour s in france visits to cheesemakers in the netherlands jack daniel s distillery tours in the united states available since but has taken on renewed interest in recentimes with both industrial heritage sites and modern industry attracting tourism attractiveness even if the concept isubjective depending on a person s preferences it has beenoticed through market researches that people like to see and experience the present or historic heritage production processes of goods with a symbolicharacter for a region from coal and energy in ruhr to bananas and coffee in guatemala branded luxury goods like cars watches and jewels technologically demanding innovative goods like computers and airplanes handcrafted goods like porcelain and blacksmith products drinks and foods an attractions directory for some central seuropean countries illustrates and includes this classification the attractiveness perception is also influenced by the cities of destination ability to build touristic packages that reflectheir industrial image and or identity respectively in the case of tour operators by mastering the industrial component in their attraction mix in the offered packages presently even on the mature markets there arelatively few tour operators providing industrial tourism packages completing other offers and almost always missing the specialized ones as researched in a market study conducted by one of the tour operators providing such specialized services destinations the most obvious industrial tourism destinations are cities and regions with a solid industrial base for them industrial tourism is a potential growth sector that matches witheir identity the sector offers opportunities to strengthen their distinctiveness and image notably by building onto their already existing assets however successful achievements are few and mostly in the developed countries in western europespecially germany the united kingdom the netherlands as well as in the usand japan where a culture of leadership and collaboration between the different stakeholders athe community s governance level already exists there is a positive trend and some remarkable achievements in central europe austria hungary the czech republic poland chinand india too also attention is being paid worldwide to reconvert economically collapsed mono industrial areas especially mining and metallurgic ones through industrial tourism krivoi rog re i and petro animportant conditions for evaluating a destination s industrial tourism potential are the quality of the location local infrastructure serviceconomy services environment biophysical environment other attractions etc the accessibility of the attractions thease of reaching the in situ visitor services facilities or at least free access to and information about cultural heritage objectives visitors centers or at leasthe possibility of scheduling individual guided tours at relevant companies qualified staff the availability of information public private marketing cooperation particularities of the demand the largest majority of industrial tourists are fromature outgoing markets germany netherlands united kingdom japan well travelled tourists already saturated by the classic attractions museums churches or second time visitorshift from pleasure travel to in depth experience and education increased curiosity abouthe manufacturing sector and industrial works from the younger generation for which due to the new technologies and globalization the domain is almost historic activelderly oretired workers and professionals driven by nostalgiand professional curiosity local visitors families with children a combination with other attractions cultural natural educational and business purposearching for work or business to business collaboration international associations organizations being a universal cultural assethe industrial heritage and archeology gets a serious institutional nonprofit academic and governmental interest worldwide in the last decades positively impacting its touristic potential too the international committee for the conservation of the industrial heritage society for industrial archeology the association for industrial archaeology unesco references externalinks family heritage tourism industrial heritage inordrhein westfalen industrial tourism in japan report on development of industrial tourism in kryvyi rih in the international committee for the conservation of the industrial heritage society for industrial archeology the association for industrial archaeology industrial heritage analysis industrial tourism in silesia category tourism category types of tourism category industrial tourism","main_words":["industrial","tourism","tourism","includes","industrial","sites","peculiar","particular","location","concept","new","includes","wine_tourism","wine","tour","france","visits","netherlands","jack","daniel","distillery","tours","united_states","available","since","taken","renewed","interest","recentimes","modern","industry","attracting","tourism","even","concept","depending","person","preferences","market","researches","people","like","see","experience","present","historic","heritage","production","processes","goods","region","coal","energy","bananas","coffee","guatemala","branded","luxury","goods","like","cars","demanding","innovative","goods","like","computers","airplanes","goods","like","porcelain","products","drinks","foods","attractions","directory","central","countries","illustrates","includes","classification","perception","also","influenced","cities","destination","ability","build","touristic","packages","industrial","image","identity","respectively","case","tour_operators","industrial","component","attraction","mix","offered","packages","presently","even","mature","markets","arelatively","tour_operators","providing","industrial_tourism","packages","completing","offers","almost","always","missing","specialized","ones","researched","market","study","conducted","one","tour_operators","providing","specialized","services","destinations","obvious","cities","regions","solid","industrial","base","industrial_tourism","potential","growth","sector","matches","witheir","identity","sector","offers","opportunities","strengthen","image","notably","building","onto","already","existing","assets","however","successful","achievements","mostly","developed_countries","germany","united_kingdom","netherlands","well","usand","japan","culture","leadership","collaboration","different","stakeholders","athe","community","governance","level","already","exists","positive","trend","remarkable","achievements","central_europe","austria","hungary","czech_republic","poland","chinand","india","also","attention","paid","worldwide","economically","collapsed","mono","industrial","areas","especially","mining","ones","industrial_tourism","conditions","evaluating","destination","industrial_tourism","potential","quality","location","local","infrastructure","services","environment","environment","attractions","etc","accessibility","attractions","thease","reaching","situ","visitor","services","facilities","least","free","access","information","cultural_heritage","objectives","visitors","centers","leasthe","possibility","scheduling","individual","guided_tours","relevant","companies","qualified","staff","availability","information","public_private","marketing","cooperation","demand","largest","majority","industrial","tourists","markets","germany","netherlands","united_kingdom","japan","well","travelled","tourists","already","classic","attractions","museums","churches","second","time","pleasure","travel","depth","experience","education","increased","curiosity","abouthe","manufacturing","sector","industrial","works","younger","generation","due","new","technologies","globalization","domain","almost","historic","workers","professionals","driven","professional","curiosity","local","visitors","families","children","combination","attractions","cultural","natural","educational","business","work","business","business","collaboration","international_associations","organizations","universal","cultural","industrial_heritage","gets","serious","institutional","nonprofit","academic","governmental","interest","worldwide","last","decades","positively","touristic","potential","international","committee","conservation","industrial_heritage","society","industrial","association","industrial","archaeology","unesco","references_externalinks","family","heritage_tourism","industrial_heritage","industrial_tourism","japan","report","development","industrial_tourism","international","committee","conservation","industrial_heritage","society","industrial","association","industrial","archaeology","industrial_heritage","analysis","category_types","tourism_category","industrial_tourism"],"clean_bigrams":[["industrial","tourism"],["includes","industrial"],["industrial","sites"],["sites","peculiar"],["particular","location"],["includes","wine"],["wine","tourism"],["tourism","wine"],["wine","tour"],["france","visits"],["netherlands","jack"],["jack","daniel"],["distillery","tours"],["united","states"],["states","available"],["available","since"],["renewed","interest"],["industrial","heritage"],["heritage","sites"],["modern","industry"],["industry","attracting"],["attracting","tourism"],["market","researches"],["people","like"],["historic","heritage"],["heritage","production"],["production","processes"],["guatemala","branded"],["branded","luxury"],["luxury","goods"],["goods","like"],["like","cars"],["demanding","innovative"],["innovative","goods"],["goods","like"],["like","computers"],["goods","like"],["like","porcelain"],["products","drinks"],["attractions","directory"],["countries","illustrates"],["also","influenced"],["destination","ability"],["build","touristic"],["touristic","packages"],["industrial","image"],["identity","respectively"],["tour","operators"],["industrial","component"],["attraction","mix"],["offered","packages"],["packages","presently"],["presently","even"],["mature","markets"],["tour","operators"],["operators","providing"],["providing","industrial"],["industrial","tourism"],["tourism","packages"],["packages","completing"],["almost","always"],["always","missing"],["specialized","ones"],["market","study"],["study","conducted"],["tour","operators"],["operators","providing"],["specialized","services"],["services","destinations"],["obvious","industrial"],["industrial","tourism"],["tourism","destinations"],["solid","industrial"],["industrial","base"],["industrial","tourism"],["tourism","potential"],["potential","growth"],["growth","sector"],["matches","witheir"],["witheir","identity"],["sector","offers"],["offers","opportunities"],["image","notably"],["building","onto"],["already","existing"],["existing","assets"],["assets","however"],["however","successful"],["successful","achievements"],["developed","countries"],["western","europespecially"],["europespecially","germany"],["united","kingdom"],["usand","japan"],["different","stakeholders"],["stakeholders","athe"],["athe","community"],["governance","level"],["level","already"],["already","exists"],["positive","trend"],["remarkable","achievements"],["central","europe"],["europe","austria"],["austria","hungary"],["czech","republic"],["republic","poland"],["poland","chinand"],["chinand","india"],["also","attention"],["paid","worldwide"],["economically","collapsed"],["collapsed","mono"],["mono","industrial"],["industrial","areas"],["areas","especially"],["especially","mining"],["industrial","tourism"],["industrial","tourism"],["tourism","potential"],["location","local"],["local","infrastructure"],["services","environment"],["attractions","etc"],["attractions","thease"],["situ","visitor"],["visitor","services"],["services","facilities"],["least","free"],["free","access"],["cultural","heritage"],["heritage","objectives"],["objectives","visitors"],["visitors","centers"],["leasthe","possibility"],["scheduling","individual"],["individual","guided"],["guided","tours"],["relevant","companies"],["companies","qualified"],["qualified","staff"],["information","public"],["public","private"],["private","marketing"],["marketing","cooperation"],["largest","majority"],["industrial","tourists"],["markets","germany"],["germany","netherlands"],["netherlands","united"],["united","kingdom"],["kingdom","japan"],["japan","well"],["well","travelled"],["travelled","tourists"],["tourists","already"],["classic","attractions"],["attractions","museums"],["museums","churches"],["second","time"],["pleasure","travel"],["depth","experience"],["education","increased"],["increased","curiosity"],["curiosity","abouthe"],["abouthe","manufacturing"],["manufacturing","sector"],["industrial","works"],["younger","generation"],["new","technologies"],["almost","historic"],["professionals","driven"],["professional","curiosity"],["curiosity","local"],["local","visitors"],["visitors","families"],["attractions","cultural"],["cultural","natural"],["natural","educational"],["business","collaboration"],["collaboration","international"],["international","associations"],["associations","organizations"],["universal","cultural"],["industrial","heritage"],["serious","institutional"],["institutional","nonprofit"],["nonprofit","academic"],["governmental","interest"],["interest","worldwide"],["last","decades"],["decades","positively"],["touristic","potential"],["international","committee"],["industrial","heritage"],["heritage","society"],["industrial","archaeology"],["archaeology","unesco"],["unesco","references"],["references","externalinks"],["externalinks","family"],["family","heritage"],["heritage","tourism"],["tourism","industrial"],["industrial","heritage"],["industrial","tourism"],["japan","report"],["industrial","tourism"],["international","committee"],["industrial","heritage"],["heritage","society"],["industrial","archaeology"],["archaeology","industrial"],["industrial","heritage"],["heritage","analysis"],["analysis","industrial"],["industrial","tourism"],["tourism","category"],["category","tourism"],["tourism","category"],["category","types"],["tourism","category"],["category","industrial"],["industrial","tourism"]],"all_collocations":["industrial tourism","includes industrial","industrial sites","sites peculiar","particular location","includes wine","wine tourism","tourism wine","wine tour","france visits","netherlands jack","jack daniel","distillery tours","united states","states available","available since","renewed interest","industrial heritage","heritage sites","modern industry","industry attracting","attracting tourism","market researches","people like","historic heritage","heritage production","production processes","guatemala branded","branded luxury","luxury goods","goods like","like cars","demanding innovative","innovative goods","goods like","like computers","goods like","like porcelain","products drinks","attractions directory","countries illustrates","also influenced","destination ability","build touristic","touristic packages","industrial image","identity respectively","tour operators","industrial component","attraction mix","offered packages","packages presently","presently even","mature markets","tour operators","operators providing","providing industrial","industrial tourism","tourism packages","packages completing","almost always","always missing","specialized ones","market study","study conducted","tour operators","operators providing","specialized services","services destinations","obvious industrial","industrial tourism","tourism destinations","solid industrial","industrial base","industrial tourism","tourism potential","potential growth","growth sector","matches witheir","witheir identity","sector offers","offers opportunities","image notably","building onto","already existing","existing assets","assets however","however successful","successful achievements","developed countries","western europespecially","europespecially germany","united kingdom","usand japan","different stakeholders","stakeholders athe","athe community","governance level","level already","already exists","positive trend","remarkable achievements","central europe","europe austria","austria hungary","czech republic","republic poland","poland chinand","chinand india","also attention","paid worldwide","economically collapsed","collapsed mono","mono industrial","industrial areas","areas especially","especially mining","industrial tourism","industrial tourism","tourism potential","location local","local infrastructure","services environment","attractions etc","attractions thease","situ visitor","visitor services","services facilities","least free","free access","cultural heritage","heritage objectives","objectives visitors","visitors centers","leasthe possibility","scheduling individual","individual guided","guided tours","relevant companies","companies qualified","qualified staff","information public","public private","private marketing","marketing cooperation","largest majority","industrial tourists","markets germany","germany netherlands","netherlands united","united kingdom","kingdom japan","japan well","well travelled","travelled tourists","tourists already","classic attractions","attractions museums","museums churches","second time","pleasure travel","depth experience","education increased","increased curiosity","curiosity abouthe","abouthe manufacturing","manufacturing sector","industrial works","younger generation","new technologies","almost historic","professionals driven","professional curiosity","curiosity local","local visitors","visitors families","attractions cultural","cultural natural","natural educational","business collaboration","collaboration international","international associations","associations organizations","universal cultural","industrial heritage","serious institutional","institutional nonprofit","nonprofit academic","governmental interest","interest worldwide","last decades","decades positively","touristic potential","international committee","industrial heritage","heritage society","industrial archaeology","archaeology unesco","unesco references","references externalinks","externalinks family","family heritage","heritage tourism","tourism industrial","industrial heritage","industrial tourism","japan report","industrial tourism","international committee","industrial heritage","heritage society","industrial archaeology","archaeology industrial","industrial heritage","heritage analysis","analysis industrial","industrial tourism","tourism category","category tourism","tourism category","category types","tourism category","category industrial","industrial tourism"],"new_description":"industrial tourism tourism includes industrial sites peculiar particular location concept new includes wine_tourism wine tour france visits netherlands jack daniel distillery tours united_states available since taken renewed interest recentimes industrial_heritage_sites modern industry attracting tourism even concept depending person preferences market researches people like see experience present historic heritage production processes goods region coal energy bananas coffee guatemala branded luxury goods like cars demanding innovative goods like computers airplanes goods like porcelain products drinks foods attractions directory central countries illustrates includes classification perception also influenced cities destination ability build touristic packages industrial image identity respectively case tour_operators industrial component attraction mix offered packages presently even mature markets arelatively tour_operators providing industrial_tourism packages completing offers almost always missing specialized ones researched market study conducted one tour_operators providing specialized services destinations obvious industrial_tourism_destinations cities regions solid industrial base industrial_tourism potential growth sector matches witheir identity sector offers opportunities strengthen image notably building onto already existing assets however successful achievements mostly developed_countries western_europespecially germany united_kingdom netherlands well usand japan culture leadership collaboration different stakeholders athe community governance level already exists positive trend remarkable achievements central_europe austria hungary czech_republic poland chinand india also attention paid worldwide economically collapsed mono industrial areas especially mining ones industrial_tourism conditions evaluating destination industrial_tourism potential quality location local infrastructure services environment environment attractions etc accessibility attractions thease reaching situ visitor services facilities least free access information cultural_heritage objectives visitors centers leasthe possibility scheduling individual guided_tours relevant companies qualified staff availability information public_private marketing cooperation demand largest majority industrial tourists markets germany netherlands united_kingdom japan well travelled tourists already classic attractions museums churches second time pleasure travel depth experience education increased curiosity abouthe manufacturing sector industrial works younger generation due new technologies globalization domain almost historic workers professionals driven professional curiosity local visitors families children combination attractions cultural natural educational business work business business collaboration international_associations organizations universal cultural industrial_heritage gets serious institutional nonprofit academic governmental interest worldwide last decades positively touristic potential international committee conservation industrial_heritage society industrial association industrial archaeology unesco references_externalinks family heritage_tourism industrial_heritage industrial_tourism japan report development industrial_tourism international committee conservation industrial_heritage society industrial association industrial archaeology industrial_heritage analysis industrial_tourism_category_tourism category_types tourism_category industrial_tourism"},{"title":"Inside New York","description":"inside new york is a new york city guidebook written and published annually by students of several universities including columbia university new york university the new school and other new york city universities founded in as the columbia guide to new york and given exclusively to incoming freshmen it currently is distributed to several colleges graduate programs and businesses throughout new york city in addition to being sold at independent bookstore s and majoretailers inside new york will be launching the first electronic edition of the guide book in september externalinks inside new york official site category travel guide books category columbia university category books about new york city","main_words":["inside","new_york","new_york","written","published","annually","students","several","universities","including","columbia","university","new_york","university","new","school","new_york","city","universities","founded","columbia","guide","new_york","given","exclusively","incoming","currently","distributed","several","colleges","graduate","programs","businesses","throughout","new_york","city","addition","sold","independent","bookstore","inside","new_york","launching","first","electronic","edition","guide_book","september","externalinks","inside","new_york","official_site_category","travel_guide_books","category","columbia","university","category_books","new_york","city"],"clean_bigrams":[["inside","new"],["new","york"],["new","york"],["york","city"],["city","guidebook"],["guidebook","written"],["published","annually"],["several","universities"],["universities","including"],["including","columbia"],["columbia","university"],["university","new"],["new","york"],["york","university"],["university","new"],["new","school"],["new","york"],["york","city"],["city","universities"],["universities","founded"],["columbia","guide"],["new","york"],["given","exclusively"],["several","colleges"],["colleges","graduate"],["graduate","programs"],["businesses","throughout"],["throughout","new"],["new","york"],["york","city"],["independent","bookstore"],["inside","new"],["new","york"],["first","electronic"],["electronic","edition"],["guide","book"],["september","externalinks"],["externalinks","inside"],["inside","new"],["new","york"],["york","official"],["official","site"],["site","category"],["category","travel"],["travel","guide"],["guide","books"],["books","category"],["category","columbia"],["columbia","university"],["university","category"],["category","books"],["new","york"],["york","city"]],"all_collocations":["inside new","new york","new york","york city","city guidebook","guidebook written","published annually","several universities","universities including","including columbia","columbia university","university new","new york","york university","university new","new school","new york","york city","city universities","universities founded","columbia guide","new york","given exclusively","several colleges","colleges graduate","graduate programs","businesses throughout","throughout new","new york","york city","independent bookstore","inside new","new york","first electronic","electronic edition","guide book","september externalinks","externalinks inside","inside new","new york","york official","official site","site category","category travel","travel guide","guide books","books category","category columbia","columbia university","university category","category books","new york","york city"],"new_description":"inside new_york new_york city_guidebook written published annually students several universities including columbia university new_york university new school new_york city universities founded columbia guide new_york given exclusively incoming currently distributed several colleges graduate programs businesses throughout new_york city addition sold independent bookstore inside new_york launching first electronic edition guide_book september externalinks inside new_york official_site_category travel_guide_books category columbia university category_books new_york city"},{"title":"Insight Guides","description":"insight guides founded by hans johannes hofer is a travel company based in london with offices inew york hong kong singapore and warsaw they sell customized travel packages as well as travel guides for both business travel commerce b and end customers purposes b c they also produce maps globes and travel gadgets for both experienced and new travelers insight guides combines full colour photography with essays written by local experts dar alysed by insight guides japan th ed pages apa publications world of maps insight guides wwwinsightguidescom giving readers reliable practical information was the driving force behind the concept but insight guides also puts a historical and cultural spin on their content hofer s first book published in was based on the island of bali and was funded by a local hotel from there he grew his business creating over guide books tover destinations in the late s he sold hishare of the company to langenscheidt kg insight guides was acquired by the swiss company apa publications uk ltd the company launched a dazzling new site insight guides is changing in september that focuses on selling customized travel packages prepared by local experts they also frequently publish travel related articles and news on their blog externalinks insight guides home category atlases category cartography category travel guide books","main_words":["insight","guides","founded","hans","johannes","travel_company","based","london","offices","inew_york","hong_kong","singapore","warsaw","sell","customized","travel","packages","well","travel_guides","business_travel","commerce","b","end","customers","purposes","b","c","also","produce","maps","travel","experienced","new","travelers","insight_guides","combines","full","colour","photography","essays","written","local","experts","dar","insight_guides","japan","th_ed","pages","apa","publications","world","maps","insight_guides","giving","readers","reliable","practical_information","driving","force","behind","concept","insight_guides","also","puts","historical","cultural","spin","content","first","book","published","based","island","bali","funded","local","hotel","grew","business","creating","guide_books","tover","destinations","late","sold","company","langenscheidt","insight_guides","acquired","swiss","company","apa","publications","uk","ltd","company","launched","new","site","insight_guides","changing","september","focuses","selling","customized","travel","packages","prepared","local","experts","also","frequently","publish","news","blog","externalinks","insight_guides","home","category","category","category_travel_guide_books"],"clean_bigrams":[["insight","guides"],["guides","founded"],["hans","johannes"],["travel","company"],["company","based"],["offices","inew"],["inew","york"],["york","hong"],["hong","kong"],["kong","singapore"],["sell","customized"],["customized","travel"],["travel","packages"],["travel","guides"],["business","travel"],["travel","commerce"],["commerce","b"],["end","customers"],["customers","purposes"],["purposes","b"],["b","c"],["also","produce"],["produce","maps"],["new","travelers"],["travelers","insight"],["insight","guides"],["guides","combines"],["combines","full"],["full","colour"],["colour","photography"],["essays","written"],["local","experts"],["experts","dar"],["insight","guides"],["guides","japan"],["japan","th"],["th","ed"],["ed","pages"],["pages","apa"],["apa","publications"],["publications","world"],["maps","insight"],["insight","guides"],["giving","readers"],["readers","reliable"],["reliable","practical"],["practical","information"],["driving","force"],["force","behind"],["insight","guides"],["guides","also"],["also","puts"],["cultural","spin"],["first","book"],["book","published"],["local","hotel"],["business","creating"],["guide","books"],["books","tover"],["tover","destinations"],["insight","guides"],["swiss","company"],["company","apa"],["apa","publications"],["publications","uk"],["uk","ltd"],["company","launched"],["new","site"],["site","insight"],["insight","guides"],["selling","customized"],["customized","travel"],["travel","packages"],["packages","prepared"],["local","experts"],["also","frequently"],["frequently","publish"],["publish","travel"],["travel","related"],["related","articles"],["blog","externalinks"],["externalinks","insight"],["insight","guides"],["guides","home"],["home","category"],["category","travel"],["travel","guide"],["guide","books"]],"all_collocations":["insight guides","guides founded","hans johannes","travel company","company based","offices inew","inew york","york hong","hong kong","kong singapore","sell customized","customized travel","travel packages","travel guides","business travel","travel commerce","commerce b","end customers","customers purposes","purposes b","b c","also produce","produce maps","new travelers","travelers insight","insight guides","guides combines","combines full","full colour","colour photography","essays written","local experts","experts dar","insight guides","guides japan","japan th","th ed","ed pages","pages apa","apa publications","publications world","maps insight","insight guides","giving readers","readers reliable","reliable practical","practical information","driving force","force behind","insight guides","guides also","also puts","cultural spin","first book","book published","local hotel","business creating","guide books","books tover","tover destinations","insight guides","swiss company","company apa","apa publications","publications uk","uk ltd","company launched","new site","site insight","insight guides","selling customized","customized travel","travel packages","packages prepared","local experts","also frequently","frequently publish","publish travel","travel related","related articles","blog externalinks","externalinks insight","insight guides","guides home","home category","category travel","travel guide","guide books"],"new_description":"insight guides founded hans johannes travel_company based london offices inew_york hong_kong singapore warsaw sell customized travel packages well travel_guides business_travel commerce b end customers purposes b c also produce maps travel experienced new travelers insight_guides combines full colour photography essays written local experts dar insight_guides japan th_ed pages apa publications world maps insight_guides giving readers reliable practical_information driving force behind concept insight_guides also puts historical cultural spin content first book published based island bali funded local hotel grew business creating guide_books tover destinations late sold company langenscheidt insight_guides acquired swiss company apa publications uk ltd company launched new site insight_guides changing september focuses selling customized travel packages prepared local experts also frequently publish travel_related_articles news blog externalinks insight_guides home category category category_travel_guide_books"},{"title":"Institute for Tourism Studies, Macao","description":"institute for tourism studies ift is a public institution of higher education located in macau china which is administered by the secretary for social affairs and culture of the macao sar governmenthe institution offers degrees in tourism heritage and hospitality the institution was established in schools of ift file classroom inspiration buildingjpg px righthumb one of the classrooms inspiration building estourism college the tourism college one of the schools of the institute for tourism studies offers the following four year bachelor s degree programmes bachelor of arts in culinary arts management bachelor of science in tourism business management bachelor of science in heritage management bachelor of science in hotel management bachelor of science in tourism event management bachelor of science in tourism retail and marketing management besides accepting local and international students it also receives exchange students for a one semester study to date students fromainland china canada south korea usand many european countries had participated in our exchange programmetih tourism and hotel school tourism and hotel school was initially established in and reported to the macao governmentourist office the school started with a small teaching body of and offered courses namely reception and housekeeping at its temporary premises located nexto the pousada de mong h in the following years more courses were added to the list such as culinary languages and tour guiding in as a strategy to supportourism development macao government decided to create a higher education institute which would focus only on tourism education and training a committee was established to carry out its preparation works and years later in the institute for tourism studies was born athe same time tourism and hotel school was integrated to the institute today ths is one of the schools of the institute providing courses to a varied range of students who join us with different objectives manyoungsters attend pre vocational courses to learn more abouthe industry before making their own academic and career choices others join professional programmes tobtain essential knowledge before start looking for their first job or before setting up their own business industry staff take assessments to have their skills certified and recognized internationally some aggressive workers come to acquire more skills and high level knowledge to further develop their career some people simply join our courses to learn something different withe aim ofurther developing the local workforce and to push ito a higher level besides offering courses to the general public the school also works with local industry partners and community associations customizing courses according to their needs programmes are offered at elementary intermediate and advanced levels in the following categories hospitality and catering heritage and tourism retail business and management it and creative studies health spand beauty language and culture and personal developmenthe campus of ift can be divided into the main campus and the taipa campus main campus file bird eye view of instituto de forma o tur sticajpg thumb right px the main campus of ift fileducational restaurant no instituto de forma o tur sticajpg px righthumbuidliing of educational restaurant inspiration building pousada de mong h team building educational restaurantaipa campus file iftaipajpg px righthumb iftaipa campusee also list of universities and colleges in macau externalinks institute for tourism studies list of members of unescobkk category education in macau category establishments in macau category tourism geography category educational institutions established in","main_words":["institute","tourism_studies","ift","public","institution","higher_education","located","macau","china","administered","secretary","social","affairs","culture","macao","governmenthe","institution","offers","degrees","tourism","heritage","hospitality","institution","established","schools","ift","file","classroom","inspiration","px","righthumb","one","classrooms","inspiration","building","college","tourism","college","one","schools","institute","tourism_studies","offers","following","four","year","bachelor","degree","programmes","bachelor","arts","culinary_arts","management","bachelor","science","tourism_business","management","bachelor","science","heritage","management","bachelor","science","hotel_management","bachelor","science","tourism","event","management","bachelor","science","tourism","retail","marketing","management","besides","accepting","local","international","students","also","receives","exchange","students","one","semester","study","date","students","china","canada","south_korea","usand","many","european_countries","participated","exchange","tourism","hotel","school","tourism","hotel","school","initially","established","reported","macao","governmentourist","office","school","started","small","teaching","body","offered","courses","namely","reception","housekeeping","temporary","premises","located","nexto","de","mong","h","following_years","courses","added","list","culinary","languages","tour","guiding","strategy","development","macao","government","decided","create","higher_education","institute","would","focus","tourism","education","training","committee","established","carry","preparation","works","years_later","institute","tourism_studies","born","athe_time","tourism","hotel","school","integrated","institute","today","one","schools","institute","providing","courses","varied","range","students","join","us","different","objectives","attend","pre","courses","learn","abouthe","industry","making","academic","career","choices","others","join","professional","programmes","tobtain","essential","knowledge","start","looking","first","job","setting","business","industry","staff","take","skills","certified","recognized","internationally","aggressive","workers","come","acquire","skills","high_level","knowledge","develop","career","people","simply","join","courses","learn","something","different","withe_aim","developing","local","workforce","push","ito","higher","level","besides","offering","courses","general_public","school","also","works","local","industry","partners","community","associations","courses","according","needs","programmes","offered","elementary","intermediate","advanced","levels","following","categories","hospitality","catering","heritage_tourism","retail","business","management","creative","studies","health","spand","beauty","language","culture","personal","developmenthe","campus","ift","divided","main","campus","campus","main","campus","file","bird","eye","view","instituto","de","tur","thumb","right","px","main","campus","ift","restaurant","instituto","de","tur","px","educational","restaurant","inspiration","building","de","mong","h","team","building","educational","campus","file","px","righthumb","also_list","universities","colleges","macau","externalinks","institute","tourism_studies","list","members","category_education","macau","category_establishments","macau","category_tourism","geography","category_educational","institutions","established"],"clean_bigrams":[["tourism","studies"],["studies","ift"],["public","institution"],["higher","education"],["education","located"],["macau","china"],["social","affairs"],["governmenthe","institution"],["institution","offers"],["offers","degrees"],["tourism","heritage"],["ift","file"],["file","classroom"],["classroom","inspiration"],["px","righthumb"],["righthumb","one"],["classrooms","inspiration"],["inspiration","building"],["tourism","college"],["college","one"],["tourism","studies"],["studies","offers"],["following","four"],["four","year"],["year","bachelor"],["degree","programmes"],["programmes","bachelor"],["culinary","arts"],["arts","management"],["management","bachelor"],["tourism","business"],["business","management"],["management","bachelor"],["heritage","management"],["management","bachelor"],["hotel","management"],["management","bachelor"],["tourism","event"],["event","management"],["management","bachelor"],["tourism","retail"],["marketing","management"],["management","besides"],["besides","accepting"],["accepting","local"],["international","students"],["also","receives"],["receives","exchange"],["exchange","students"],["one","semester"],["semester","study"],["date","students"],["china","canada"],["canada","south"],["south","korea"],["korea","usand"],["usand","many"],["many","european"],["european","countries"],["hotel","school"],["school","tourism"],["hotel","school"],["initially","established"],["macao","governmentourist"],["governmentourist","office"],["school","started"],["small","teaching"],["teaching","body"],["offered","courses"],["courses","namely"],["namely","reception"],["temporary","premises"],["premises","located"],["located","nexto"],["de","mong"],["mong","h"],["following","years"],["culinary","languages"],["tour","guiding"],["development","macao"],["macao","government"],["government","decided"],["higher","education"],["education","institute"],["would","focus"],["tourism","education"],["preparation","works"],["years","later"],["tourism","studies"],["born","athe"],["time","tourism"],["hotel","school"],["institute","today"],["institute","providing"],["providing","courses"],["varied","range"],["join","us"],["different","objectives"],["attend","pre"],["abouthe","industry"],["career","choices"],["choices","others"],["others","join"],["join","professional"],["professional","programmes"],["programmes","tobtain"],["tobtain","essential"],["essential","knowledge"],["start","looking"],["first","job"],["business","industry"],["industry","staff"],["staff","take"],["skills","certified"],["recognized","internationally"],["aggressive","workers"],["workers","come"],["high","level"],["level","knowledge"],["people","simply"],["simply","join"],["learn","something"],["something","different"],["different","withe"],["withe","aim"],["local","workforce"],["push","ito"],["higher","level"],["level","besides"],["besides","offering"],["offering","courses"],["general","public"],["school","also"],["also","works"],["local","industry"],["industry","partners"],["community","associations"],["courses","according"],["needs","programmes"],["elementary","intermediate"],["advanced","levels"],["following","categories"],["categories","hospitality"],["catering","heritage"],["tourism","retail"],["retail","business"],["business","management"],["creative","studies"],["studies","health"],["health","spand"],["spand","beauty"],["beauty","language"],["personal","developmenthe"],["developmenthe","campus"],["main","campus"],["campus","main"],["main","campus"],["campus","file"],["file","bird"],["bird","eye"],["eye","view"],["instituto","de"],["thumb","right"],["right","px"],["main","campus"],["instituto","de"],["educational","restaurant"],["restaurant","inspiration"],["inspiration","building"],["de","mong"],["mong","h"],["h","team"],["team","building"],["building","educational"],["campus","file"],["px","righthumb"],["also","list"],["macau","externalinks"],["externalinks","institute"],["tourism","studies"],["studies","list"],["category","education"],["macau","category"],["category","establishments"],["macau","category"],["category","tourism"],["tourism","geography"],["geography","category"],["category","educational"],["educational","institutions"],["institutions","established"]],"all_collocations":["tourism studies","studies ift","public institution","higher education","education located","macau china","social affairs","governmenthe institution","institution offers","offers degrees","tourism heritage","ift file","file classroom","classroom inspiration","px righthumb","righthumb one","classrooms inspiration","inspiration building","tourism college","college one","tourism studies","studies offers","following four","four year","year bachelor","degree programmes","programmes bachelor","culinary arts","arts management","management bachelor","tourism business","business management","management bachelor","heritage management","management bachelor","hotel management","management bachelor","tourism event","event management","management bachelor","tourism retail","marketing management","management besides","besides accepting","accepting local","international students","also receives","receives exchange","exchange students","one semester","semester study","date students","china canada","canada south","south korea","korea usand","usand many","many european","european countries","hotel school","school tourism","hotel school","initially established","macao governmentourist","governmentourist office","school started","small teaching","teaching body","offered courses","courses namely","namely reception","temporary premises","premises located","located nexto","de mong","mong h","following years","culinary languages","tour guiding","development macao","macao government","government decided","higher education","education institute","would focus","tourism education","preparation works","years later","tourism studies","born athe","time tourism","hotel school","institute today","institute providing","providing courses","varied range","join us","different objectives","attend pre","abouthe industry","career choices","choices others","others join","join professional","professional programmes","programmes tobtain","tobtain essential","essential knowledge","start looking","first job","business industry","industry staff","staff take","skills certified","recognized internationally","aggressive workers","workers come","high level","level knowledge","people simply","simply join","learn something","something different","different withe","withe aim","local workforce","push ito","higher level","level besides","besides offering","offering courses","general public","school also","also works","local industry","industry partners","community associations","courses according","needs programmes","elementary intermediate","advanced levels","following categories","categories hospitality","catering heritage","tourism retail","retail business","business management","creative studies","studies health","health spand","spand beauty","beauty language","personal developmenthe","developmenthe campus","main campus","campus main","main campus","campus file","file bird","bird eye","eye view","instituto de","main campus","instituto de","educational restaurant","restaurant inspiration","inspiration building","de mong","mong h","h team","team building","building educational","campus file","px righthumb","also list","macau externalinks","externalinks institute","tourism studies","studies list","category education","macau category","category establishments","macau category","category tourism","tourism geography","geography category","category educational","educational institutions","institutions established"],"new_description":"institute tourism_studies ift public institution higher_education located macau china administered secretary social affairs culture macao governmenthe institution offers degrees tourism heritage hospitality institution established schools ift file classroom inspiration px righthumb one classrooms inspiration building college tourism college one schools institute tourism_studies offers following four year bachelor degree programmes bachelor arts culinary_arts management bachelor science tourism_business management bachelor science heritage management bachelor science hotel_management bachelor science tourism event management bachelor science tourism retail marketing management besides accepting local international students also receives exchange students one semester study date students china canada south_korea usand many european_countries participated exchange tourism hotel school tourism hotel school initially established reported macao governmentourist office school started small teaching body offered courses namely reception housekeeping temporary premises located nexto de mong h following_years courses added list culinary languages tour guiding strategy development macao government decided create higher_education institute would focus tourism education training committee established carry preparation works years_later institute tourism_studies born athe_time tourism hotel school integrated institute today one schools institute providing courses varied range students join us different objectives attend pre courses learn abouthe industry making academic career choices others join professional programmes tobtain essential knowledge start looking first job setting business industry staff take skills certified recognized internationally aggressive workers come acquire skills high_level knowledge develop career people simply join courses learn something different withe_aim developing local workforce push ito higher level besides offering courses general_public school also works local industry partners community associations courses according needs programmes offered elementary intermediate advanced levels following categories hospitality catering heritage_tourism retail business management creative studies health spand beauty language culture personal developmenthe campus ift divided main campus campus main campus file bird eye view instituto de tur thumb right px main campus ift restaurant instituto de tur px educational restaurant inspiration building de mong h team building educational campus file px righthumb also_list universities colleges macau externalinks institute tourism_studies list members category_education macau category_establishments macau category_tourism geography category_educational institutions established"},{"title":"International Expeditions","description":"international expeditions ie is a travel company specializing in small group adventure travel the company was founded in and is located in helenalabama it is owned by tui group company overview international expeditions providesmall group adventurexperiences in various exoticountries these include land based trips to places likecuador kenya tanzaniand patagonias well as cruisexcursions inotable wildlife and natural areasuch as the peruvian amazon and gal pagos islands galapagos islands while it focuses primarily on land based activities ie charters a variety of riverboats and yachts for cruise programs in patagonia india cuba the amazon and galapagos international expeditions date access date deadurl bot unknown archiveurl archivedate df have tips will travel website wwwindependenttravelercom access date international expeditions date access date deadurl bot unknown archiveurl archivedate df the company s cruise adventures are tailored for customers who are years old well educated and affluent ie is a subsidiary of tui group a multinational travel and tourism company headquartered in hanover hannover germany capa centre for aviation website centreforaviationcom access date it is a part of the adventure specialist group within tui specialist group which also includes american adventures exodus grand american adventures headwater quark expeditionsawadee trekamerica world challenge and zegrahm expeditions ie is currently managed by travelopia the international ecotourism society website wwwecotourismorg languagen access date and steve cox ryel also served as the chairman of the board of the international ecotourism society van perry was appointed the president of international expeditions inovember he is also the president of zegrahm expeditions an adventure travel company located in seattle washington travel agent central date website wwwtravelagentcentralcom access date controversy in april a cabin on international expeditions estrellamazonica now known as amazon star caught fire killing two american passengers drs larry and christy hammer according to investigators the fire was caused by a power strip that wasupplied by the boat and lacked surge protection and safety and flammability ratings the hammers room lacked an in room fire alarm surveillance video footage shows that itook thestrellamazonica s crew more than minutes to extract dr larry hammer from the room after the fire was located and another six minutes to extract dr christy hammer in the days following the fire international expeditions claimed thathe chief ofire department loreto region a chief ofire prevention and investigation unit a chief of instruction and investigation the commanding deputy district attorney the tourism police force and port authorities cleared the vessel safe to carry guests these claims have not been verified perry and international expeditions are criticized for declaring the boat safe to travel and for the ship to resume sailing within two days of the tragedy given that perry and international expeditions did not know athatime what caused the fire why no alarm sounded anywhere on the boat and why the crew failed to respond effectively in september perry told people magazine people thathe boat now has enhanced fire fighting equipment and thathe crew has been provided with refresher fire training no safety officials or third parties have been able to publicly verify the statement in april the wall street journal the wall street journal s joe palazzolo shined new light on the hammer tragedy citing a newly released peruvianavy report on the fire palazzolo writes the riverboat s fire alarm did not operate at all and its crew lacking training and equipmentook more than minutes to enter the hammers cabin peruvian authoritiesaid in an octobereport on the fire citing a litany of violations of the nation s maritime regulations he also explains the death on the high seas act which may allow international expeditions to escape accountability for the hammers deaths because of the law the cruise industry enjoys broad immunity from damages in wrongful death cases involving retirees and other passengers who have no financial dependents international expeditions the alabama based company that charters the cruise and helpedesign the riverboat has told the daughters through its lawyers that it has no financial obligation to the family under the law the omaha world herald and cruise law news also covered the peruvianavy report in the words of jim walker a maritime lawyer and publisher of cruise law news the pointo come away with aftereading abouthis terrible ordeal is thathis thexactly the resulthathe cruise lines want after cruise passengers have been killed walker also calls the death on the high seas act one of the cruelest and most unfair if not completely callous laws imaginable references category travel and holiday companies of the united states category american companiestablished in category cruise lines category adventure travel category tourism","main_words":["international","expeditions","travel_company","specializing","small","group","adventure_travel","company","founded","located","owned","tui","group","company","overview","international_expeditions","group","various","include","land","based","trips","places","kenya","well","wildlife","natural","areasuch","peruvian","amazon","gal","islands","galapagos_islands","focuses","primarily","land","based","activities","charters","variety","yachts","cruise","programs","patagonia","india","cuba","amazon","galapagos","international_expeditions","date","access_date","unknown","tips","travel_website","access_date","international_expeditions","date","access_date","unknown","company","cruise","adventures","tailored","customers","years_old","well","educated","affluent","subsidiary","tui","group","multinational","headquartered","hanover","germany","centre","aviation","website","access_date","part","adventure","specialist","group","within","tui","specialist","group","also_includes","american","adventures","grand","american","adventures","world","challenge","expeditions","currently","managed","international","ecotourism","society","website","languagen","access_date","steve","cox","also_served","chairman","board","international","ecotourism","society","van","perry","appointed","president","international_expeditions","inovember","also","president","expeditions","adventure_travel","company","located","seattle_washington","travel_agent","central","date","website","access_date","controversy","april","cabin","international_expeditions","known","amazon","star","caught","fire","killing","two","american","passengers","larry","christy","hammer","according","investigators","fire","caused","power","strip","wasupplied","boat","lacked","protection","safety","ratings","room","lacked","room","fire","alarm","surveillance","video","footage","shows","itook","crew","minutes","larry","hammer","room","fire","located","another","six","minutes","christy","hammer","days","following","fire","international_expeditions","claimed","thathe","chief","ofire","department","region","chief","ofire","prevention","investigation","unit","chief","instruction","investigation","deputy","district","attorney","tourism","police","force","port","authorities","cleared","vessel","safe","carry","guests","claims","verified","perry","international_expeditions","criticized","boat","safe","travel","ship","resume","sailing","within","two_days","tragedy","given","perry","international_expeditions","know","athatime","caused","fire","alarm","sounded","anywhere","boat","crew","failed","respond","effectively","september","perry","told","people","magazine","people","thathe","boat","enhanced","fire","fighting","equipment","thathe","crew","provided","fire","training","safety","officials","third","parties","able","publicly","verify","statement","april","wall_street_journal","wall_street_journal","joe","new","light","hammer","tragedy","citing","newly","released","report","fire","writes","riverboat","fire","alarm","operate","crew","lacking","training","minutes","enter","cabin","peruvian","fire","citing","violations","nation","maritime","regulations","also","explains","death","high","seas","act","may","allow","international_expeditions","escape","accountability","deaths","law","cruise","industry","enjoys","broad","immunity","damages","death","cases","involving","passengers","financial","international_expeditions","alabama","based","company","charters","cruise","riverboat","told","daughters","lawyers","financial","obligation","family","law","omaha","world","herald","cruise","law","news","also","covered","report","words","jim","walker","maritime","lawyer","publisher","cruise","law","news","pointo","come","away","abouthis","thathis","cruise_lines","want","cruise","passengers","killed","walker","also","calls","death","high","seas","act","one","unfair","completely","laws","holiday_companies","united_states","category_american","companiestablished","category","cruise_lines"],"clean_bigrams":[["international","expeditions"],["travel","company"],["company","specializing"],["small","group"],["group","adventure"],["adventure","travel"],["travel","company"],["tui","group"],["group","company"],["company","overview"],["overview","international"],["international","expeditions"],["include","land"],["land","based"],["based","trips"],["natural","areasuch"],["peruvian","amazon"],["islands","galapagos"],["galapagos","islands"],["focuses","primarily"],["land","based"],["based","activities"],["cruise","programs"],["patagonia","india"],["india","cuba"],["galapagos","international"],["international","expeditions"],["expeditions","date"],["date","access"],["access","date"],["travel","website"],["access","date"],["date","international"],["international","expeditions"],["expeditions","date"],["date","access"],["access","date"],["cruise","adventures"],["years","old"],["old","well"],["well","educated"],["tui","group"],["multinational","travel"],["tourism","company"],["company","headquartered"],["aviation","website"],["access","date"],["adventure","specialist"],["specialist","group"],["group","within"],["within","tui"],["tui","specialist"],["specialist","group"],["also","includes"],["includes","american"],["american","adventures"],["grand","american"],["american","adventures"],["world","challenge"],["currently","managed"],["international","ecotourism"],["ecotourism","society"],["society","website"],["languagen","access"],["access","date"],["steve","cox"],["also","served"],["international","ecotourism"],["ecotourism","society"],["society","van"],["van","perry"],["international","expeditions"],["expeditions","inovember"],["adventure","travel"],["travel","company"],["company","located"],["seattle","washington"],["washington","travel"],["travel","agent"],["agent","central"],["central","date"],["date","website"],["access","date"],["date","controversy"],["international","expeditions"],["amazon","star"],["star","caught"],["caught","fire"],["fire","killing"],["killing","two"],["two","american"],["american","passengers"],["christy","hammer"],["hammer","according"],["power","strip"],["room","lacked"],["room","fire"],["fire","alarm"],["alarm","surveillance"],["surveillance","video"],["video","footage"],["footage","shows"],["larry","hammer"],["room","fire"],["another","six"],["six","minutes"],["christy","hammer"],["days","following"],["fire","international"],["international","expeditions"],["expeditions","claimed"],["claimed","thathe"],["thathe","chief"],["chief","ofire"],["ofire","department"],["chief","ofire"],["ofire","prevention"],["investigation","unit"],["deputy","district"],["district","attorney"],["tourism","police"],["police","force"],["port","authorities"],["authorities","cleared"],["vessel","safe"],["carry","guests"],["verified","perry"],["international","expeditions"],["boat","safe"],["resume","sailing"],["sailing","within"],["within","two"],["two","days"],["tragedy","given"],["international","expeditions"],["know","athatime"],["fire","alarm"],["alarm","sounded"],["sounded","anywhere"],["crew","failed"],["respond","effectively"],["september","perry"],["perry","told"],["told","people"],["people","magazine"],["magazine","people"],["people","thathe"],["thathe","boat"],["enhanced","fire"],["fire","fighting"],["fighting","equipment"],["thathe","crew"],["fire","training"],["safety","officials"],["third","parties"],["publicly","verify"],["wall","street"],["street","journal"],["wall","street"],["street","journal"],["new","light"],["hammer","tragedy"],["tragedy","citing"],["newly","released"],["fire","alarm"],["crew","lacking"],["lacking","training"],["cabin","peruvian"],["fire","citing"],["maritime","regulations"],["also","explains"],["high","seas"],["seas","act"],["may","allow"],["allow","international"],["international","expeditions"],["escape","accountability"],["cruise","industry"],["industry","enjoys"],["enjoys","broad"],["broad","immunity"],["death","cases"],["cases","involving"],["international","expeditions"],["alabama","based"],["based","company"],["financial","obligation"],["omaha","world"],["world","herald"],["cruise","law"],["law","news"],["news","also"],["also","covered"],["jim","walker"],["maritime","lawyer"],["cruise","law"],["law","news"],["pointo","come"],["come","away"],["cruise","lines"],["lines","want"],["cruise","passengers"],["killed","walker"],["walker","also"],["also","calls"],["high","seas"],["seas","act"],["act","one"],["references","category"],["category","travel"],["holiday","companies"],["united","states"],["states","category"],["category","american"],["american","companiestablished"],["category","cruise"],["cruise","lines"],["lines","category"],["category","adventure"],["adventure","travel"],["travel","category"],["category","tourism"]],"all_collocations":["international expeditions","travel company","company specializing","small group","group adventure","adventure travel","travel company","tui group","group company","company overview","overview international","international expeditions","include land","land based","based trips","natural areasuch","peruvian amazon","islands galapagos","galapagos islands","focuses primarily","land based","based activities","cruise programs","patagonia india","india cuba","galapagos international","international expeditions","expeditions date","date access","access date","travel website","access date","date international","international expeditions","expeditions date","date access","access date","cruise adventures","years old","old well","well educated","tui group","multinational travel","tourism company","company headquartered","aviation website","access date","adventure specialist","specialist group","group within","within tui","tui specialist","specialist group","also includes","includes american","american adventures","grand american","american adventures","world challenge","currently managed","international ecotourism","ecotourism society","society website","languagen access","access date","steve cox","also served","international ecotourism","ecotourism society","society van","van perry","international expeditions","expeditions inovember","adventure travel","travel company","company located","seattle washington","washington travel","travel agent","agent central","central date","date website","access date","date controversy","international expeditions","amazon star","star caught","caught fire","fire killing","killing two","two american","american passengers","christy hammer","hammer according","power strip","room lacked","room fire","fire alarm","alarm surveillance","surveillance video","video footage","footage shows","larry hammer","room fire","another six","six minutes","christy hammer","days following","fire international","international expeditions","expeditions claimed","claimed thathe","thathe chief","chief ofire","ofire department","chief ofire","ofire prevention","investigation unit","deputy district","district attorney","tourism police","police force","port authorities","authorities cleared","vessel safe","carry guests","verified perry","international expeditions","boat safe","resume sailing","sailing within","within two","two days","tragedy given","international expeditions","know athatime","fire alarm","alarm sounded","sounded anywhere","crew failed","respond effectively","september perry","perry told","told people","people magazine","magazine people","people thathe","thathe boat","enhanced fire","fire fighting","fighting equipment","thathe crew","fire training","safety officials","third parties","publicly verify","wall street","street journal","wall street","street journal","new light","hammer tragedy","tragedy citing","newly released","fire alarm","crew lacking","lacking training","cabin peruvian","fire citing","maritime regulations","also explains","high seas","seas act","may allow","allow international","international expeditions","escape accountability","cruise industry","industry enjoys","enjoys broad","broad immunity","death cases","cases involving","international expeditions","alabama based","based company","financial obligation","omaha world","world herald","cruise law","law news","news also","also covered","jim walker","maritime lawyer","cruise law","law news","pointo come","come away","cruise lines","lines want","cruise passengers","killed walker","walker also","also calls","high seas","seas act","act one","references category","category travel","holiday companies","united states","states category","category american","american companiestablished","category cruise","cruise lines","lines category","category adventure","adventure travel","travel category","category tourism"],"new_description":"international expeditions travel_company specializing small group adventure_travel company founded located owned tui group company overview international_expeditions group various include land based trips places kenya well wildlife natural areasuch peruvian amazon gal islands galapagos_islands focuses primarily land based activities charters variety yachts cruise programs patagonia india cuba amazon galapagos international_expeditions date access_date unknown tips travel_website access_date international_expeditions date access_date unknown company cruise adventures tailored customers years_old well educated affluent subsidiary tui group multinational travel_tourism_company headquartered hanover germany centre aviation website access_date part adventure specialist group within tui specialist group also_includes american adventures grand american adventures world challenge expeditions currently managed international ecotourism society website languagen access_date steve cox also_served chairman board international ecotourism society van perry appointed president international_expeditions inovember also president expeditions adventure_travel company located seattle_washington travel_agent central date website access_date controversy april cabin international_expeditions known amazon star caught fire killing two american passengers larry christy hammer according investigators fire caused power strip wasupplied boat lacked protection safety ratings room lacked room fire alarm surveillance video footage shows itook crew minutes larry hammer room fire located another six minutes christy hammer days following fire international_expeditions claimed thathe chief ofire department region chief ofire prevention investigation unit chief instruction investigation deputy district attorney tourism police force port authorities cleared vessel safe carry guests claims verified perry international_expeditions criticized boat safe travel ship resume sailing within two_days tragedy given perry international_expeditions know athatime caused fire alarm sounded anywhere boat crew failed respond effectively september perry told people magazine people thathe boat enhanced fire fighting equipment thathe crew provided fire training safety officials third parties able publicly verify statement april wall_street_journal wall_street_journal joe new light hammer tragedy citing newly released report fire writes riverboat fire alarm operate crew lacking training minutes enter cabin peruvian fire citing violations nation maritime regulations also explains death high seas act may allow international_expeditions escape accountability deaths law cruise industry enjoys broad immunity damages death cases involving passengers financial international_expeditions alabama based company charters cruise riverboat told daughters lawyers financial obligation family law omaha world herald cruise law news also covered report words jim walker maritime lawyer publisher cruise law news pointo come away abouthis thathis cruise_lines want cruise passengers killed walker also calls death high seas act one unfair completely laws references_category_travel holiday_companies united_states category_american companiestablished category cruise_lines category_adventure_travel_category_tourism"},{"title":"International healthcare accreditation","description":"due to the near universal desire for safe and good quality healthcare there is a growing interest international healthcare accreditation lovern e nov accreditation gains attention modern healthcare providing healthcarespecially of an adequate standard of care standard is a complex and challenging process healthcare is a vital and emotive issue its importance pervades all aspects of society societies and it has medical social political ethical business and financial ramifications in any part of the world healthcare services can be provided either by the public sector by the private sector by a combination of both and the site of delivery of healthcare can be located in hospitals or be accessed through practitioners working in the community such as general medical practitioners andentists this occurring in most parts of the developed world in a setting in which people arexpressing ever greater expectations of hospitals and healthcare services this trend is especially strong where socialized medicine socialised medical systems exist for example in theuropean union patients havever greater expectations of what health systems oughto deliver although there has been a continuous rise in costs of services determined by scientific and technological innovation office for international public health and social affairs contribution to the reflection process for a new eu health strategy venice italy regional health and social department and in one particular eu member state the united kingdom people are going to increase demand they have also got an increased expectation of whathe nhs can deliver uk parliament select committee on health february minutes of evidencexamination of witnesses bernie hurn and michael hall questions the usa manifestsome differences here and is an unusual andistinct oddity among developed western countries in million of the overall us population ie had no health insurance whatsoeversherman a r greenstein and s parrott august poverty and share of americans without healthcare were higher in washington centre for budget and policy priorities yet in the usa spent nearly trillion healthcare or of the country s gross domestic product more than twice as much per capitas the oecd average because of thisome us citizens are having to look outside of their country to find affordable healthcare through the medium of medical tourism also known as global healthcare see below apart from using hospital s and healthcare services to regain their health if it has become impaired or to prevent ill health occurring in the first place people the world over may also use them for a wide variety of other services for example improving uponatureg cosmetic surgery sex reassignment surgery gendereassignment surgery or acquiring help tovercome difficulties with becoming a parent eg infertility treatment healthcare and hospital accreditation fundamentally healthcare and hospital accreditation is about improving how care is delivered to patients and the quality of the care they receive accreditation has been defined as a self assessment and external peer assessment process used by health care organisations to accurately assess their level of performance in relation to established standards and to implement ways to continuously improve interest in hospital accreditation ascends as far as the world health organisation seexternalinks accreditation is one important component in patient safety however there is limited and contested evidence supporting theffectiveness of accreditation programs in the usa in thearly th century there was concern over how to best create an appropriatenvironment in which clinicians could work standards to improve the control of the hospital environment were thus generated and these subsequently grew into accreditation schemes withe remito facilitate and improve organisational development part of the process is not only about assessing quality but also about promoting and improving quality similar accreditation schemes were soon developed elsewhere in the world in countriesuch as the united kingdom the united states australia new zealand canada sophisticated accreditation groups have grown up to survey hospitals and in some cases healthcare in the community furthermore other accreditation groups have been set up with openly declared remits to look after just one particularea of healthcare such as laboratory medicine or psychiatric services or sexual health accreditation systems are structured so as to provide objective measures for thexternal evaluation of quality and quality management accreditation schemeshould ideally focus primarily on the patient and their pathway through thealthcare system this includes how they access care how they are cared for after discharge from hospital and the quality of the services provided for them atheart of these schemes is a list of standards which ideally serve to assess evaluate in a systematic and comprehensive way the standards of professional performance in a hospital this includes not only hand on patient care but also training and education of staff credentials clinical governance and audit research activity ethical standards etc the standards can also be used internally by hospitals to develop and improve their quality standards and quality management some international accreditation schemes believe thathe standards applied should be fixed and are nonegotiable while others operate a system of negotiation over standards however whatever approach is taken thevery aspect of the processhould bevidence based medicinevidence based international standardization groups also exist but it must be pointed outhathe mere achieving of set standards is nothe only factor involved in quality accreditation there is also the significant matter of the incorporating into participating hospitalsystems of self examination problem solving and self improvement and hence there is more to accreditation than following some sort of overall standardization process as governments and the general public have increasingly come to demand more and more openness about health care and its delivery including and especially hospital quality and safety and the clinical performance of doctors and these accreditation systems have generally adapted to fulfill this extended role however accreditation should ideally be independent of governmental control and accreditation groupshould assess hospitals holistically and not just some isolated facet of the hospital s activities or servicesuch as the laboratories pharmacy services infection control financial health or information technology services indeed partial accreditation of this type should be publicly acknowledged asuch by bothe accreditation scheme and the hospital the best accreditation schemes also assess academic and intellectual activity such as teaching and research within those hospitals thathey survey see later and have a clear andeclared interest in medical ethics in some parts of the world accessing healthcare can be very expensiveven prohibitively so while some countries havelected to provide comprehensive healthcare services for all of their populations others appear to be satisfied with leaving portions of their population without access to healthcare when it comes to who pays the bills for healthcare it may be the government or it may be the individual sometimes either by direct payment and sometimes through employerun schemes insurance companies etc or a combination of bothowever healthcare canever be truly free someone somewhere will always have to pay and the payer will always wanthe best value for money possible affordability of healthcare can be the insurmountable hurdle for some human beings value for money is hence another factor in assessing the true quality of healthcare background a number of larger countries engage in hospital accreditation that is provided internally taking the usas an example numerous groups provide accreditation for internal healthcare organizations including the aaahc accreditation association for ambulatory health care doing business internationally as acreditas global community health accreditation program chap the joint commission tjc the accreditation commission for health care inc achc thexemplary provider program of the compliance teamerican accreditation commission international aaci and thealthcare quality association accreditation hqaa some other countries have looked towards accessing the services of the major international healthcare accreditation groups based in other countries to assess their healthcare services there are many reasons for this including cost a desire to improve healthcare quality for one s own citizens good governance is athe basis of all high quality healthcare or a desire to market one s healthcare services to medical touristsee below some hospitals go for international healthcare accreditation as a de facto form of advertising in response to this marketing opportunity some national accreditation groups havexpanded their wings internationally and gone on to survey and accredit hospitals outside of their ownational borders when they choose to do thisuch groups can be said to be providing international healthcare accreditation this process of accreditation has been made increasingly complicated by the facthat in many parts of the world more and more human beings are choosing to cross international borders to access healthcare a phenomenon known as medical tourism or global healthcare medical tourism global healthcare cannot be ignored as a key issue international healthcare accreditation it is becoming increasingly important as millions of especially europeans and americanseek healthcare overseas outside of their own countries for a variety of reasons including and especially affordability and it represents a growing multibillion euro dollar pound business of increasing importance to theconomies of many countriesuch asingapore thailand india hong kong malaysiand the philippines the importance of medical tourism global healthcare to theconomy of developing countries is increasingly the subject of academic study and thisynergy has a clear knock on effect for those organizations based within the developed world who are seeking to develop the medical tourism global healthcare markethe reasons why patients are seeking out medical tourism global healthcare options are manifold a healthcare may be too expensive at home b waiting lists may be too long c patients wish to access treatments not available at homeg stem cell therapy termination of pregnancy unlicensed medications gendere assignment surgery d patients wish for greater confidentiality than may be feasible at homeg hiv aids treatment infertility treatment gendere assignment surgery face lifts e new challenges arise from time to time such as new medical developments which are not universally accessible themergence of the so called superbugs eg methicillin resistant staphylococcus aureus mrsa vrsa vre clostridium difficilesbl producing e coli problems withe blood transfusion supply eg chaga s disease in the usa hiv htlv etc and the social imponderablesuch as war political change and natural disasters any of these factors may lead to a loss of publiconfidence in healthcare services and a desire to seek out healthcare overseas thenvironmental and political situation will constantly vary throughouthe world and this will need to be factored into thequations the following quotation taken from the website of partners harvard medical international crystallizes the increasing relevance of international health care accreditation and its growing commercial importance particularly in relation to medical tourism global healthcare in competitive health care markets where patients have an increasing array of choices quality is the most important differentiator forganizationstriving for sustainability and both national and regionaleadership international accreditation has become a powerful indicator of a health care organization s commitmento high quality care and patient safety reflecting this much of the discussion medical tourism blog sites reflects the increasing importance of international healthcare and hospital accreditation to this industry how does an individual contemplating becoming a medical tourist ensure thathe overseas healthcare they are planning to access is asafe as possible and is of adequate quality for sure it is not simply a matter of looking at hospital buildings and at mattresses and it is certainly not just an issue of looking only athe prices charged while architecturally pleasing rooms and easier access to satellitelevision and the internet may improve personal comfort and a bargain basement price may help the wallet what is often more important may include such issues as the standards of governance in the hospital or clinic thealthcare providing establishment s commitmento self improvement and to learn positively from errors the overall medical ethics medical ethical standards operating within the organization the clinical staff s ethical standards and their personal and collective commitmento caring for patients and the wider community the quality of the clinical staff including their background educational attainment and training and evidence of continuing professional development by those staff the quality and ethical standards of the management and their personal and collective commitmento caring for patients and the wider community the clinical track record of the hospital or clinic the infection control track record of the hospital or clinic the hospital may be located in a country where thenvironment and climate may bring a patient into contact with infectious and or tropical diseases that are unfamiliar to them evidence of a robust just and fair system to deal with complaints made by patients when things go wrong as they inevitably will from time to time and where appropriate to compensate the injured party in a fair and reasonable way the above list is not exhaustive but it represents a good start also the intending medical tourist should check whether or not a hospital is wholly accredited by an international accreditation group or if it is only partly accredited eg for infection control the latter being less inclined to create confidence in a potential consumer how does the person in the street access this type of quality information this can be very difficult accreditation schemes well recognised as providing services in the international healthcare accreditation field include joint commission international jci based in the united states trent accreditation scheme based in uk europe the former trent scheme which ended in was the first scheme to accredit a hospital in asia in hong kong in the different accreditation schemes vary in approach quality size intent sourcing of surveyors and the skill of their marketing they also vary in terms of how much they charge hospitals and healthcare institutions for their services they all have web sites umbrella organizations the international society for quality in health care isqua is an umbrella organisation for such organisations providing international healthcare accreditation its offices are based in the republic of ireland isqua is a small non profit limited company with members in over countries isqua works to provide services to guide health professionals providers researchers agencies policy makers and consumers to achievexcellence in healthcare delivery to all people and to continuously improve the quality and safety of care isqua does not actually survey or accredit hospitals or clinics itself the united kingdom accreditation forum or united kingdom accreditation forum ukaf is a uk based umbrella organisation forganisations providing healthcare accreditation its offices are based in london like isqua ukaf does not actually survey and accredit hospitals itself india becomes th nation to join isquaccreditation services if a hospital or clinic simply wishes to improve itservices to patients wherever those patients come from locally or from further afield or wishes to attract medical tourists how do they choose who to go to when contemplating accessing external peereview by an accreditation group such as those listed above none healthcare system has a monopoly of excellence and none provider country or scheme can claim to be the total arbiter of quality the same is true of healthcare accreditation schemes for example some countriesuch as the usa perform very poorly when it comes to providing anything close to universal access to healthcare of adequate quality to the population living within their own borders othersuch as the united kingdom and australia have created state funded systems which provideverything withouthe assistance of the private sector different accreditation schemes are sourced out of different parts of the world for example in hospitals there isee map joint commission international jci out of the accreditation canada qha trent out of the united australian council on health care standards international in as no single international accreditation schemenjoys exclusive rights to be seen as an overall worldwide relevant scheme some hospitals are looking towards multiple accreditation to achieve performance credibility in different parts of the world file locations of bases of int accred schemesjpg thumb locations of geographical bases ofour of the world s leading international hospital accreditation schemes other fields of accreditation exist such astronger use of general medical practicesometimes known as gp or family medicine isome westernised countries gp accreditation servicesuch as the royal college of general practitioners rgcp in the united kingdom and australian general practice accreditation limited agpal in australia provide accreditation services for these practices with respecto the cost of accreditation this can vary enormously and it can be hard to find out precise data in the case of joint commission international jci the costs can be substantial this based on the country size and operations of an organisation with respecto hospital work international organization for standardization iso the international organization for standardization is often mistakenly considered to be an international healthcare accreditation scheme however it is not see also accreditation hospital accreditation evidence based medicine health tourism provider health insurance hospitalist of international healthcare accreditation organizations medical tourism patient safety patient safety organization medical ethics international sos international organization for standardization united kingdom accreditation forum externalinks editorial arce hospital accreditation as a means of achieving international quality standards in health international journal for quality in health care volume number december pp role of who in hospital accreditation who regional office for theastern mediterranean partners harvard medical international making quality the competitivedge raik e aged care accreditation in australia bmj rapid response novemberobinson r book review accreditation protecting the professional or the consumer bmj rawlins r hospital accreditation is important bmj category quality assurance category healthcare industry category accreditation category healthcare quality category medical tourism","main_words":["due","near","universal","desire","safe","good","quality","healthcare","growing","interest","international_healthcare_accreditation","e","nov","accreditation","gains","attention","modern","healthcare","providing","adequate","standard","care","standard","complex","challenging","process","healthcare","vital","issue","importance","aspects","society","societies","medical","social","political","ethical","business","financial","part","world","healthcare_services","provided","either","public","sector","private_sector","combination","site","delivery","healthcare","located","hospitals","accessed","practitioners","working","community","general","medical","practitioners","occurring","parts","developed","world","setting","people","ever","greater","expectations","hospitals","healthcare_services","trend","especially","strong","medicine","medical","systems","exist","example","theuropean_union","patients","greater","expectations","health","systems","deliver","although","continuous","rise","costs","services","determined","scientific","technological","innovation","office","international","public_health","social","affairs","contribution","reflection","process","new","health","strategy","venice","italy","regional","health","social","department","one","particular","member","state","united_kingdom","people","going","increase","demand","also","got","increased","expectation","whathe","nhs","deliver","uk","parliament","select","committee","health","february","minutes","michael","hall","questions","usa","differences","unusual","among","developed","western","countries","million","overall","us","population","health_insurance","r","august","poverty","share","americans","without","healthcare","higher","washington","centre","budget","policy","priorities","yet","usa","spent","nearly","trillion","healthcare","country","gross","domestic","product","twice","much","per","average","us","citizens","look","outside","country","find","affordable","healthcare","medium","medical_tourism","also_known","global","healthcare","see","apart","using","hospital","healthcare_services","regain","health","become","prevent","ill","health","occurring","first","place","people","world","may_also","use","wide_variety","services","example","improving","cosmetic","surgery","sex","surgery","surgery","acquiring","help","difficulties","becoming","parent","infertility","treatment","healthcare","hospital_accreditation","fundamentally","healthcare","hospital_accreditation","improving","care","delivered","patients","quality","care","receive","accreditation","defined","self","assessment","external","peer","assessment","process","used","health_care","organisations","accurately","assess","level","performance","relation","established","standards","implement","ways","continuously","improve","interest","hospital_accreditation","far","world","health","organisation","accreditation","one","important","component","patient","safety","however","limited","contested","evidence","supporting","accreditation","programs","usa","thearly_th","century","concern","best","create","could","work","standards","improve","control","hospital","environment","thus","generated","subsequently","grew","accreditation_schemes","withe","facilitate","improve","organisational","development","part","process","assessing","quality","also","promoting","improving","quality","similar","accreditation_schemes","soon","developed","elsewhere","world","countriesuch","united_kingdom","united_states","australia","new_zealand","canada","sophisticated","accreditation","groups","grown","survey","hospitals","cases","healthcare","community","furthermore","accreditation","groups","set","openly","declared","look","one","particularea","healthcare","laboratory","medicine","services","sexual","health","accreditation","systems","structured","provide","objective","measures","thexternal","evaluation","quality","quality","management","accreditation","ideally","focus","primarily","patient","pathway","thealthcare","system","includes","access","care","discharge","hospital","quality_services","provided","atheart","schemes","list","standards","ideally","serve","assess","evaluate","systematic","comprehensive","way","standards","professional","performance","hospital","includes","hand","patient","care","also","training","education","staff","credentials","clinical","governance","audit","research","activity","ethical","standards","etc","standards","also_used","internally","hospitals","develop","improve","quality","standards","quality","management","international_accreditation","schemes","believe","thathe","standards","applied","fixed","others","operate","system","standards","however","whatever","approach","taken","aspect","based","based","international","standardization","groups","also","exist","must","pointed","mere","achieving","set","standards","nothe","factor","involved","quality","accreditation","also","significant","matter","incorporating","participating","self","examination","problem","self","improvement","hence","accreditation","following","sort","overall","standardization","process","governments","general_public","increasingly","come","demand","health_care","delivery","including","especially","hospital","quality","safety","clinical","performance","doctors","accreditation","systems","generally","adapted","extended","role","however","accreditation","ideally","independent","governmental","control","accreditation","assess","hospitals","isolated","hospital","activities","servicesuch","laboratories","services","infection","control","financial","health","information_technology","services","indeed","partial","accreditation","type","publicly","acknowledged","asuch","bothe","accreditation","scheme","hospital","best","accreditation_schemes","also","assess","academic","intellectual","activity","teaching","research","within","hospitals","thathey","survey","see","later","clear","interest","medical","ethics","parts","world","accessing","healthcare","countries","provide","comprehensive","healthcare_services","populations","others","appear","satisfied","leaving","portions","population","without","access","healthcare","comes","pays","bills","healthcare","may","government","may","individual","sometimes","either","direct","payment","sometimes","schemes","insurance_companies","etc","combination","healthcare","truly","free","someone","somewhere","always","pay","always","wanthe","best","value","money","possible","affordability","healthcare","human","beings","value","money","hence","another","factor","assessing","true","quality","healthcare","background","number","larger","countries","engage","hospital_accreditation","provided","internally","taking","example","numerous","groups","provide","accreditation","internal","healthcare","organizations","including","accreditation","association","health_care","business","internationally","global","community","health","accreditation","program","joint_commission","accreditation","commission","health_care","inc","provider","program","compliance","accreditation","thealthcare","quality","association","accreditation","countries","looked","towards","accessing","services","groups","based","countries","assess","healthcare_services","many","reasons","including","cost","desire","improve","healthcare","quality","one","citizens","good","governance","athe","basis","high_quality","healthcare","desire","market","one","healthcare_services","medical","hospitals","go","international_healthcare_accreditation","de","facto","form","advertising","response","marketing","opportunity","national","accreditation","groups","wings","internationally","gone","survey","accredit","hospitals","outside","borders","choose","groups","said","providing","international_healthcare_accreditation","process","accreditation","made","increasingly","complicated","facthat","many_parts","world","human","beings","choosing","cross","international","borders","access","healthcare","phenomenon","known","medical_tourism","global","healthcare","medical_tourism","global","healthcare","cannot","key","issue","international_healthcare_accreditation","becoming_increasingly","important","millions","especially","europeans","healthcare","overseas","outside","countries","variety","reasons","including","especially","affordability","represents","growing","multibillion","euro","dollar","pound","business","increasing","importance","many_countriesuch","thailand","india","hong_kong","malaysiand","philippines","importance","medical_tourism","global","healthcare","theconomy","developing_countries","increasingly","subject","academic","study","clear","effect","organizations_based","within","developed","world","seeking","develop","medical_tourism","global","healthcare","markethe","reasons","patients","seeking","medical_tourism","global","healthcare","options","healthcare","may","expensive","home","b","waiting","lists","may","long","c","patients","wish","access","treatments","available","stem","cell","therapy","termination","pregnancy","unlicensed","assignment","surgery","patients","wish","greater","may","feasible","hiv","aids","treatment","infertility","treatment","assignment","surgery","face","e","new","challenges","arise","time","time","new","medical","developments","universally","accessible","themergence","called","producing","e","coli","problems","withe","blood","supply","disease","usa","hiv","etc","social","war","political","change","natural","disasters","factors","may","lead","loss","healthcare_services","desire","seek","healthcare","overseas","thenvironmental","political","situation","constantly","vary","throughouthe_world","need","following","taken","website","partners","harvard","medical","international","increasing","relevance","international","health_care","accreditation","growing","commercial","importance","particularly","relation","medical_tourism","global","healthcare","competitive","health_care","markets","patients","increasing","array","choices","quality","important","sustainability","national","international_accreditation","become","powerful","indicator","health_care","organization","commitmento","high_quality","care","patient","safety","reflecting","much","discussion","medical_tourism","blog","sites","reflects","increasing","importance","hospital_accreditation","industry","individual","becoming","medical","tourist","ensure_thathe","overseas","healthcare","planning","access","possible","adequate","quality","sure","simply","matter","looking","hospital","buildings","mattresses","certainly","issue","looking","athe","prices","charged","rooms","easier","access","internet","may","improve","personal","comfort","basement","price","may","help","wallet","often","important","may_include","issues","standards","governance","hospital","clinic","thealthcare","providing","establishment","commitmento","self","improvement","learn","positively","errors","overall","medical","ethics","medical","ethical","standards","operating","within","organization","clinical","staff","ethical","standards","personal","collective","commitmento","caring","patients","wider","community","quality","clinical","staff","including","background","educational","training","evidence","continuing","professional","development","staff","quality","ethical","standards","management","personal","collective","commitmento","caring","patients","wider","community","clinical","track","record","hospital","clinic","infection","control","track","record","hospital","clinic","hospital","may","located","country","thenvironment","climate","may","bring","patient","contact","infectious","tropical","diseases","unfamiliar","evidence","robust","fair","system","deal","complaints","made","patients","things","go","wrong","inevitably","time","time","appropriate","injured","party","fair","reasonable","way","list","represents","good","start","also","intending","medical","tourist","check","whether","hospital","wholly","accredited","international_accreditation","group","partly","accredited","infection","control","latter","less","inclined","create","confidence","potential","consumer","person","street","access","type","quality","information","difficult","accreditation_schemes","well","recognised","providing","services","international_healthcare_accreditation","field","include","joint_commission_international","jci","based","united_states","trent","accreditation","scheme","based","uk","europe","former","trent","scheme","ended","first","scheme","accredit","hospital","asia","hong_kong","different","accreditation_schemes","vary","approach","quality","size","intent","sourcing","skill","marketing","also","vary","terms","much","charge","hospitals","healthcare","institutions","services","web_sites","umbrella","organizations","international","society","quality","health_care","isqua","umbrella","organisation","organisations","providing","international_healthcare_accreditation","offices","based","republic","ireland","isqua","small","non_profit","limited","company","members","countries","isqua","works","provide","services","guide","health","professionals","providers","researchers","agencies","policy","makers","consumers","healthcare","delivery","people","continuously","improve","quality","safety","care","isqua","actually","survey","accredit","hospitals","clinics","united_kingdom","accreditation","forum","united_kingdom","accreditation","forum","uk","based","umbrella","organisation","providing","offices","based","london","like","isqua","actually","survey","accredit","hospitals","india","becomes","th","nation","join","services","hospital","clinic","simply","wishes","improve","patients","wherever","patients","come","locally","wishes","attract","medical_tourists","choose","go","accessing","external","accreditation","group","listed","none","healthcare","system","monopoly","excellence","none","provider","country","scheme","claim","total","quality","true","example","countriesuch","usa","perform","poorly","comes","providing","anything","close","universal","access","healthcare","adequate","quality","population","living","within","borders","othersuch","united_kingdom","australia","created","state","funded","systems","withouthe","assistance","private_sector","different","accreditation_schemes","sourced","different_parts","world","example","hospitals","map","joint_commission_international","jci","accreditation","canada","trent","united","australian","council","health_care","standards","international","single","international_accreditation","exclusive","rights","seen","overall","worldwide","relevant","scheme","hospitals","looking","towards","multiple","accreditation","achieve","performance","credibility","different_parts","world","file","locations","bases","int","thumb","locations","geographical","bases","ofour","world","leading","international","fields","accreditation","exist","use","general","medical","known","family","medicine","countries","accreditation","servicesuch","royal","college","general","practitioners","united_kingdom","australian","general","practice","accreditation","limited","australia","provide","accreditation","services","practices","respecto","cost","accreditation","vary","hard","find","precise","data","case","joint_commission_international","jci","costs","substantial","based","country","size","operations","organisation","respecto","hospital","work","international","organization","standardization","iso","international","organization","standardization","often","considered","international_healthcare_accreditation","scheme","however","see_also","accreditation","hospital_accreditation","evidence","based","medicine","health_tourism","provider","health_insurance","international_healthcare_accreditation","organizations","medical_tourism","patient","safety","patient","safety","organization","medical","ethics","international","international","organization","standardization","united_kingdom","accreditation","forum","externalinks","editorial","hospital_accreditation","means","achieving","international","quality","standards","health","international_journal","quality","health_care","volume","number","december","pp","role","hospital_accreditation","regional","office","theastern","mediterranean","partners","harvard","medical","international","making","quality","e","aged","care","accreditation","australia","rapid","response","r","book","review","accreditation","protecting","professional","consumer","r","hospital_accreditation","important","category","quality","assurance","category","healthcare","accreditation","category","healthcare","quality","category_medical","tourism"],"clean_bigrams":[["near","universal"],["universal","desire"],["good","quality"],["quality","healthcare"],["growing","interest"],["interest","international"],["international","healthcare"],["healthcare","accreditation"],["e","nov"],["nov","accreditation"],["accreditation","gains"],["gains","attention"],["attention","modern"],["modern","healthcare"],["healthcare","providing"],["adequate","standard"],["care","standard"],["challenging","process"],["process","healthcare"],["society","societies"],["medical","social"],["social","political"],["political","ethical"],["ethical","business"],["world","healthcare"],["healthcare","services"],["services","provided"],["provided","either"],["public","sector"],["private","sector"],["practitioners","working"],["general","medical"],["medical","practitioners"],["developed","world"],["ever","greater"],["greater","expectations"],["healthcare","services"],["especially","strong"],["medical","systems"],["systems","exist"],["theuropean","union"],["union","patients"],["greater","expectations"],["health","systems"],["deliver","although"],["continuous","rise"],["services","determined"],["technological","innovation"],["innovation","office"],["international","public"],["public","health"],["social","affairs"],["affairs","contribution"],["reflection","process"],["health","strategy"],["strategy","venice"],["venice","italy"],["italy","regional"],["regional","health"],["social","department"],["one","particular"],["member","state"],["united","kingdom"],["kingdom","people"],["increase","demand"],["also","got"],["increased","expectation"],["whathe","nhs"],["deliver","uk"],["uk","parliament"],["parliament","select"],["select","committee"],["health","february"],["february","minutes"],["michael","hall"],["hall","questions"],["among","developed"],["developed","western"],["western","countries"],["overall","us"],["us","population"],["health","insurance"],["august","poverty"],["americans","without"],["without","healthcare"],["washington","centre"],["policy","priorities"],["priorities","yet"],["usa","spent"],["spent","nearly"],["nearly","trillion"],["trillion","healthcare"],["gross","domestic"],["domestic","product"],["much","per"],["us","citizens"],["look","outside"],["find","affordable"],["affordable","healthcare"],["medical","tourism"],["tourism","also"],["also","known"],["global","healthcare"],["healthcare","see"],["using","hospital"],["healthcare","services"],["prevent","ill"],["ill","health"],["health","occurring"],["first","place"],["place","people"],["may","also"],["also","use"],["wide","variety"],["example","improving"],["cosmetic","surgery"],["surgery","sex"],["acquiring","help"],["infertility","treatment"],["treatment","healthcare"],["hospital","accreditation"],["accreditation","fundamentally"],["fundamentally","healthcare"],["hospital","accreditation"],["quality","care"],["receive","accreditation"],["self","assessment"],["external","peer"],["peer","assessment"],["assessment","process"],["process","used"],["health","care"],["care","organisations"],["accurately","assess"],["established","standards"],["implement","ways"],["continuously","improve"],["improve","interest"],["hospital","accreditation"],["world","health"],["health","organisation"],["one","important"],["important","component"],["patient","safety"],["safety","however"],["contested","evidence"],["evidence","supporting"],["accreditation","programs"],["thearly","th"],["th","century"],["best","create"],["could","work"],["work","standards"],["hospital","environment"],["thus","generated"],["subsequently","grew"],["accreditation","schemes"],["schemes","withe"],["improve","organisational"],["organisational","development"],["development","part"],["assessing","quality"],["improving","quality"],["quality","similar"],["similar","accreditation"],["accreditation","schemes"],["soon","developed"],["developed","elsewhere"],["united","kingdom"],["united","states"],["states","australia"],["australia","new"],["new","zealand"],["zealand","canada"],["canada","sophisticated"],["sophisticated","accreditation"],["accreditation","groups"],["survey","hospitals"],["cases","healthcare"],["community","furthermore"],["accreditation","groups"],["openly","declared"],["one","particularea"],["laboratory","medicine"],["sexual","health"],["health","accreditation"],["accreditation","systems"],["provide","objective"],["objective","measures"],["thexternal","evaluation"],["quality","management"],["management","accreditation"],["ideally","focus"],["focus","primarily"],["thealthcare","system"],["access","care"],["hospital","quality"],["services","provided"],["ideally","serve"],["assess","evaluate"],["comprehensive","way"],["professional","performance"],["patient","care"],["also","training"],["staff","credentials"],["credentials","clinical"],["clinical","governance"],["audit","research"],["research","activity"],["activity","ethical"],["ethical","standards"],["standards","etc"],["used","internally"],["quality","standards"],["quality","management"],["international","accreditation"],["accreditation","schemes"],["schemes","believe"],["believe","thathe"],["thathe","standards"],["standards","applied"],["others","operate"],["standards","however"],["however","whatever"],["whatever","approach"],["based","international"],["international","standardization"],["standardization","groups"],["groups","also"],["also","exist"],["mere","achieving"],["set","standards"],["factor","involved"],["quality","accreditation"],["significant","matter"],["self","examination"],["examination","problem"],["self","improvement"],["overall","standardization"],["standardization","process"],["general","public"],["increasingly","come"],["health","care"],["delivery","including"],["especially","hospital"],["hospital","quality"],["clinical","performance"],["accreditation","systems"],["generally","adapted"],["extended","role"],["role","however"],["however","accreditation"],["governmental","control"],["assess","hospitals"],["services","infection"],["infection","control"],["control","financial"],["financial","health"],["information","technology"],["technology","services"],["services","indeed"],["indeed","partial"],["partial","accreditation"],["publicly","acknowledged"],["acknowledged","asuch"],["bothe","accreditation"],["accreditation","scheme"],["best","accreditation"],["accreditation","schemes"],["schemes","also"],["also","assess"],["assess","academic"],["intellectual","activity"],["research","within"],["hospitals","thathey"],["thathey","survey"],["survey","see"],["see","later"],["medical","ethics"],["world","accessing"],["accessing","healthcare"],["provide","comprehensive"],["comprehensive","healthcare"],["healthcare","services"],["populations","others"],["others","appear"],["leaving","portions"],["population","without"],["without","access"],["access","healthcare"],["healthcare","may"],["individual","sometimes"],["sometimes","either"],["direct","payment"],["schemes","insurance"],["insurance","companies"],["companies","etc"],["truly","free"],["free","someone"],["someone","somewhere"],["always","wanthe"],["wanthe","best"],["best","value"],["money","possible"],["possible","affordability"],["human","beings"],["beings","value"],["hence","another"],["another","factor"],["true","quality"],["quality","healthcare"],["healthcare","background"],["larger","countries"],["countries","engage"],["hospital","accreditation"],["provided","internally"],["internally","taking"],["example","numerous"],["numerous","groups"],["groups","provide"],["provide","accreditation"],["internal","healthcare"],["healthcare","organizations"],["organizations","including"],["accreditation","association"],["health","care"],["business","internationally"],["global","community"],["community","health"],["health","accreditation"],["accreditation","program"],["joint","commission"],["accreditation","commission"],["health","care"],["care","inc"],["provider","program"],["accreditation","commission"],["commission","international"],["thealthcare","quality"],["quality","association"],["association","accreditation"],["looked","towards"],["towards","accessing"],["major","international"],["international","healthcare"],["healthcare","accreditation"],["accreditation","groups"],["groups","based"],["healthcare","services"],["many","reasons"],["reasons","including"],["including","cost"],["improve","healthcare"],["healthcare","quality"],["citizens","good"],["good","governance"],["athe","basis"],["high","quality"],["quality","healthcare"],["market","one"],["healthcare","services"],["hospitals","go"],["international","healthcare"],["healthcare","accreditation"],["de","facto"],["facto","form"],["marketing","opportunity"],["national","accreditation"],["accreditation","groups"],["wings","internationally"],["accredit","hospitals"],["hospitals","outside"],["providing","international"],["international","healthcare"],["healthcare","accreditation"],["made","increasingly"],["increasingly","complicated"],["many","parts"],["human","beings"],["cross","international"],["international","borders"],["access","healthcare"],["phenomenon","known"],["medical","tourism"],["tourism","global"],["global","healthcare"],["healthcare","medical"],["medical","tourism"],["tourism","global"],["global","healthcare"],["key","issue"],["issue","international"],["international","healthcare"],["healthcare","accreditation"],["becoming","increasingly"],["increasingly","important"],["especially","europeans"],["healthcare","overseas"],["overseas","outside"],["reasons","including"],["especially","affordability"],["growing","multibillion"],["multibillion","euro"],["euro","dollar"],["dollar","pound"],["pound","business"],["increasing","importance"],["many","countriesuch"],["thailand","india"],["india","hong"],["hong","kong"],["kong","malaysiand"],["medical","tourism"],["tourism","global"],["global","healthcare"],["developing","countries"],["academic","study"],["organizations","based"],["based","within"],["developed","world"],["medical","tourism"],["tourism","global"],["global","healthcare"],["healthcare","markethe"],["markethe","reasons"],["medical","tourism"],["tourism","global"],["global","healthcare"],["healthcare","options"],["healthcare","may"],["home","b"],["b","waiting"],["waiting","lists"],["lists","may"],["long","c"],["c","patients"],["patients","wish"],["access","treatments"],["stem","cell"],["cell","therapy"],["therapy","termination"],["pregnancy","unlicensed"],["assignment","surgery"],["patients","wish"],["hiv","aids"],["aids","treatment"],["treatment","infertility"],["infertility","treatment"],["assignment","surgery"],["surgery","face"],["e","new"],["new","challenges"],["challenges","arise"],["new","medical"],["medical","developments"],["universally","accessible"],["accessible","themergence"],["producing","e"],["e","coli"],["coli","problems"],["problems","withe"],["withe","blood"],["usa","hiv"],["war","political"],["political","change"],["natural","disasters"],["factors","may"],["may","lead"],["healthcare","services"],["healthcare","overseas"],["overseas","thenvironmental"],["political","situation"],["constantly","vary"],["vary","throughouthe"],["throughouthe","world"],["partners","harvard"],["harvard","medical"],["medical","international"],["increasing","relevance"],["international","health"],["health","care"],["care","accreditation"],["growing","commercial"],["commercial","importance"],["importance","particularly"],["medical","tourism"],["tourism","global"],["global","healthcare"],["competitive","health"],["health","care"],["care","markets"],["increasing","array"],["choices","quality"],["international","accreditation"],["powerful","indicator"],["health","care"],["care","organization"],["commitmento","high"],["high","quality"],["quality","care"],["patient","safety"],["safety","reflecting"],["discussion","medical"],["medical","tourism"],["tourism","blog"],["blog","sites"],["sites","reflects"],["increasing","importance"],["international","healthcare"],["hospital","accreditation"],["medical","tourist"],["tourist","ensure"],["ensure","thathe"],["thathe","overseas"],["overseas","healthcare"],["adequate","quality"],["hospital","buildings"],["athe","prices"],["prices","charged"],["easier","access"],["internet","may"],["may","improve"],["improve","personal"],["personal","comfort"],["basement","price"],["price","may"],["may","help"],["important","may"],["may","include"],["clinic","thealthcare"],["thealthcare","providing"],["providing","establishment"],["commitmento","self"],["self","improvement"],["learn","positively"],["overall","medical"],["medical","ethics"],["ethics","medical"],["medical","ethical"],["ethical","standards"],["standards","operating"],["operating","within"],["clinical","staff"],["ethical","standards"],["collective","commitmento"],["commitmento","caring"],["wider","community"],["clinical","staff"],["staff","including"],["background","educational"],["continuing","professional"],["professional","development"],["ethical","standards"],["collective","commitmento"],["commitmento","caring"],["wider","community"],["clinical","track"],["track","record"],["infection","control"],["control","track"],["track","record"],["hospital","may"],["climate","may"],["may","bring"],["tropical","diseases"],["fair","system"],["complaints","made"],["things","go"],["go","wrong"],["injured","party"],["reasonable","way"],["good","start"],["start","also"],["intending","medical"],["medical","tourist"],["check","whether"],["wholly","accredited"],["international","accreditation"],["accreditation","group"],["partly","accredited"],["infection","control"],["less","inclined"],["create","confidence"],["potential","consumer"],["street","access"],["quality","information"],["difficult","accreditation"],["accreditation","schemes"],["schemes","well"],["well","recognised"],["providing","services"],["international","healthcare"],["healthcare","accreditation"],["accreditation","field"],["field","include"],["include","joint"],["joint","commission"],["commission","international"],["international","jci"],["jci","based"],["united","states"],["states","trent"],["trent","accreditation"],["accreditation","scheme"],["scheme","based"],["uk","europe"],["former","trent"],["trent","scheme"],["first","scheme"],["hong","kong"],["different","accreditation"],["accreditation","schemes"],["schemes","vary"],["approach","quality"],["quality","size"],["size","intent"],["intent","sourcing"],["also","vary"],["charge","hospitals"],["healthcare","institutions"],["web","sites"],["sites","umbrella"],["umbrella","organizations"],["international","society"],["health","care"],["care","isqua"],["umbrella","organisation"],["organisations","providing"],["providing","international"],["international","healthcare"],["healthcare","accreditation"],["ireland","isqua"],["small","non"],["non","profit"],["profit","limited"],["limited","company"],["countries","isqua"],["isqua","works"],["provide","services"],["guide","health"],["health","professionals"],["professionals","providers"],["providers","researchers"],["researchers","agencies"],["agencies","policy"],["policy","makers"],["healthcare","delivery"],["continuously","improve"],["care","isqua"],["actually","survey"],["accredit","hospitals"],["united","kingdom"],["kingdom","accreditation"],["accreditation","forum"],["united","kingdom"],["kingdom","accreditation"],["accreditation","forum"],["uk","based"],["based","umbrella"],["umbrella","organisation"],["providing","healthcare"],["healthcare","accreditation"],["london","like"],["like","isqua"],["actually","survey"],["accredit","hospitals"],["india","becomes"],["becomes","th"],["th","nation"],["clinic","simply"],["simply","wishes"],["patients","wherever"],["patients","come"],["attract","medical"],["medical","tourists"],["accessing","external"],["accreditation","group"],["none","healthcare"],["healthcare","system"],["none","provider"],["provider","country"],["healthcare","accreditation"],["accreditation","schemes"],["usa","perform"],["providing","anything"],["anything","close"],["universal","access"],["access","healthcare"],["adequate","quality"],["population","living"],["living","within"],["borders","othersuch"],["united","kingdom"],["created","state"],["state","funded"],["funded","systems"],["withouthe","assistance"],["private","sector"],["sector","different"],["different","accreditation"],["accreditation","schemes"],["different","parts"],["map","joint"],["joint","commission"],["commission","international"],["international","jci"],["accreditation","canada"],["united","australian"],["australian","council"],["health","care"],["care","standards"],["standards","international"],["single","international"],["international","accreditation"],["exclusive","rights"],["overall","worldwide"],["worldwide","relevant"],["relevant","scheme"],["looking","towards"],["towards","multiple"],["multiple","accreditation"],["achieve","performance"],["performance","credibility"],["different","parts"],["world","file"],["file","locations"],["thumb","locations"],["geographical","bases"],["bases","ofour"],["leading","international"],["international","hospital"],["hospital","accreditation"],["accreditation","schemes"],["accreditation","exist"],["general","medical"],["family","medicine"],["accreditation","servicesuch"],["royal","college"],["general","practitioners"],["united","kingdom"],["australian","general"],["general","practice"],["practice","accreditation"],["accreditation","limited"],["australia","provide"],["provide","accreditation"],["accreditation","services"],["precise","data"],["joint","commission"],["commission","international"],["international","jci"],["country","size"],["respecto","hospital"],["hospital","work"],["work","international"],["international","organization"],["standardization","iso"],["international","organization"],["international","healthcare"],["healthcare","accreditation"],["accreditation","scheme"],["scheme","however"],["see","also"],["also","accreditation"],["accreditation","hospital"],["hospital","accreditation"],["accreditation","evidence"],["evidence","based"],["based","medicine"],["medicine","health"],["health","tourism"],["tourism","provider"],["provider","health"],["health","insurance"],["international","healthcare"],["healthcare","accreditation"],["accreditation","organizations"],["organizations","medical"],["medical","tourism"],["tourism","patient"],["patient","safety"],["safety","patient"],["patient","safety"],["safety","organization"],["organization","medical"],["medical","ethics"],["ethics","international"],["international","organization"],["standardization","united"],["united","kingdom"],["kingdom","accreditation"],["accreditation","forum"],["forum","externalinks"],["externalinks","editorial"],["hospital","accreditation"],["achieving","international"],["international","quality"],["quality","standards"],["health","international"],["international","journal"],["health","care"],["care","volume"],["volume","number"],["number","december"],["december","pp"],["pp","role"],["hospital","accreditation"],["regional","office"],["theastern","mediterranean"],["mediterranean","partners"],["partners","harvard"],["harvard","medical"],["medical","international"],["international","making"],["making","quality"],["e","aged"],["aged","care"],["care","accreditation"],["rapid","response"],["r","book"],["book","review"],["review","accreditation"],["accreditation","protecting"],["r","hospital"],["hospital","accreditation"],["category","quality"],["quality","assurance"],["assurance","category"],["category","healthcare"],["healthcare","industry"],["industry","category"],["category","accreditation"],["accreditation","category"],["category","healthcare"],["healthcare","quality"],["quality","category"],["category","medical"],["medical","tourism"]],"all_collocations":["near universal","universal desire","good quality","quality healthcare","growing interest","interest international","international healthcare","healthcare accreditation","e nov","nov accreditation","accreditation gains","gains attention","attention modern","modern healthcare","healthcare providing","adequate standard","care standard","challenging process","process healthcare","society societies","medical social","social political","political ethical","ethical business","world healthcare","healthcare services","services provided","provided either","public sector","private sector","practitioners working","general medical","medical practitioners","developed world","ever greater","greater expectations","healthcare services","especially strong","medical systems","systems exist","theuropean union","union patients","greater expectations","health systems","deliver although","continuous rise","services determined","technological innovation","innovation office","international public","public health","social affairs","affairs contribution","reflection process","health strategy","strategy venice","venice italy","italy regional","regional health","social department","one particular","member state","united kingdom","kingdom people","increase demand","also got","increased expectation","whathe nhs","deliver uk","uk parliament","parliament select","select committee","health february","february minutes","michael hall","hall questions","among developed","developed western","western countries","overall us","us population","health insurance","august poverty","americans without","without healthcare","washington centre","policy priorities","priorities yet","usa spent","spent nearly","nearly trillion","trillion healthcare","gross domestic","domestic product","much per","us citizens","look outside","find affordable","affordable healthcare","medical tourism","tourism also","also known","global healthcare","healthcare see","using hospital","healthcare services","prevent ill","ill health","health occurring","first place","place people","may also","also use","wide variety","example improving","cosmetic surgery","surgery sex","acquiring help","infertility treatment","treatment healthcare","hospital accreditation","accreditation fundamentally","fundamentally healthcare","hospital accreditation","quality care","receive accreditation","self assessment","external peer","peer assessment","assessment process","process used","health care","care organisations","accurately assess","established standards","implement ways","continuously improve","improve interest","hospital accreditation","world health","health organisation","one important","important component","patient safety","safety however","contested evidence","evidence supporting","accreditation programs","thearly th","th century","best create","could work","work standards","hospital environment","thus generated","subsequently grew","accreditation schemes","schemes withe","improve organisational","organisational development","development part","assessing quality","improving quality","quality similar","similar accreditation","accreditation schemes","soon developed","developed elsewhere","united kingdom","united states","states australia","australia new","new zealand","zealand canada","canada sophisticated","sophisticated accreditation","accreditation groups","survey hospitals","cases healthcare","community furthermore","accreditation groups","openly declared","one particularea","laboratory medicine","sexual health","health accreditation","accreditation systems","provide objective","objective measures","thexternal evaluation","quality management","management accreditation","ideally focus","focus primarily","thealthcare system","access care","hospital quality","services provided","ideally serve","assess evaluate","comprehensive way","professional performance","patient care","also training","staff credentials","credentials clinical","clinical governance","audit research","research activity","activity ethical","ethical standards","standards etc","used internally","quality standards","quality management","international accreditation","accreditation schemes","schemes believe","believe thathe","thathe standards","standards applied","others operate","standards however","however whatever","whatever approach","based international","international standardization","standardization groups","groups also","also exist","mere achieving","set standards","factor involved","quality accreditation","significant matter","self examination","examination problem","self improvement","overall standardization","standardization process","general public","increasingly come","health care","delivery including","especially hospital","hospital quality","clinical performance","accreditation systems","generally adapted","extended role","role however","however accreditation","governmental control","assess hospitals","services infection","infection control","control financial","financial health","information technology","technology services","services indeed","indeed partial","partial accreditation","publicly acknowledged","acknowledged asuch","bothe accreditation","accreditation scheme","best accreditation","accreditation schemes","schemes also","also assess","assess academic","intellectual activity","research within","hospitals thathey","thathey survey","survey see","see later","medical ethics","world accessing","accessing healthcare","provide comprehensive","comprehensive healthcare","healthcare services","populations others","others appear","leaving portions","population without","without access","access healthcare","healthcare may","individual sometimes","sometimes either","direct payment","schemes insurance","insurance companies","companies etc","truly free","free someone","someone somewhere","always wanthe","wanthe best","best value","money possible","possible affordability","human beings","beings value","hence another","another factor","true quality","quality healthcare","healthcare background","larger countries","countries engage","hospital accreditation","provided internally","internally taking","example numerous","numerous groups","groups provide","provide accreditation","internal healthcare","healthcare organizations","organizations including","accreditation association","health care","business internationally","global community","community health","health accreditation","accreditation program","joint commission","accreditation commission","health care","care inc","provider program","accreditation commission","commission international","thealthcare quality","quality association","association accreditation","looked towards","towards accessing","major international","international healthcare","healthcare accreditation","accreditation groups","groups based","healthcare services","many reasons","reasons including","including cost","improve healthcare","healthcare quality","citizens good","good governance","athe basis","high quality","quality healthcare","market one","healthcare services","hospitals go","international healthcare","healthcare accreditation","de facto","facto form","marketing opportunity","national accreditation","accreditation groups","wings internationally","accredit hospitals","hospitals outside","providing international","international healthcare","healthcare accreditation","made increasingly","increasingly complicated","many parts","human beings","cross international","international borders","access healthcare","phenomenon known","medical tourism","tourism global","global healthcare","healthcare medical","medical tourism","tourism global","global healthcare","key issue","issue international","international healthcare","healthcare accreditation","becoming increasingly","increasingly important","especially europeans","healthcare overseas","overseas outside","reasons including","especially affordability","growing multibillion","multibillion euro","euro dollar","dollar pound","pound business","increasing importance","many countriesuch","thailand india","india hong","hong kong","kong malaysiand","medical tourism","tourism global","global healthcare","developing countries","academic study","organizations based","based within","developed world","medical tourism","tourism global","global healthcare","healthcare markethe","markethe reasons","medical tourism","tourism global","global healthcare","healthcare options","healthcare may","home b","b waiting","waiting lists","lists may","long c","c patients","patients wish","access treatments","stem cell","cell therapy","therapy termination","pregnancy unlicensed","assignment surgery","patients wish","hiv aids","aids treatment","treatment infertility","infertility treatment","assignment surgery","surgery face","e new","new challenges","challenges arise","new medical","medical developments","universally accessible","accessible themergence","producing e","e coli","coli problems","problems withe","withe blood","usa hiv","war political","political change","natural disasters","factors may","may lead","healthcare services","healthcare overseas","overseas thenvironmental","political situation","constantly vary","vary throughouthe","throughouthe world","partners harvard","harvard medical","medical international","increasing relevance","international health","health care","care accreditation","growing commercial","commercial importance","importance particularly","medical tourism","tourism global","global healthcare","competitive health","health care","care markets","increasing array","choices quality","international accreditation","powerful indicator","health care","care organization","commitmento high","high quality","quality care","patient safety","safety reflecting","discussion medical","medical tourism","tourism blog","blog sites","sites reflects","increasing importance","international healthcare","hospital accreditation","medical tourist","tourist ensure","ensure thathe","thathe overseas","overseas healthcare","adequate quality","hospital buildings","athe prices","prices charged","easier access","internet may","may improve","improve personal","personal comfort","basement price","price may","may help","important may","may include","clinic thealthcare","thealthcare providing","providing establishment","commitmento self","self improvement","learn positively","overall medical","medical ethics","ethics medical","medical ethical","ethical standards","standards operating","operating within","clinical staff","ethical standards","collective commitmento","commitmento caring","wider community","clinical staff","staff including","background educational","continuing professional","professional development","ethical standards","collective commitmento","commitmento caring","wider community","clinical track","track record","infection control","control track","track record","hospital may","climate may","may bring","tropical diseases","fair system","complaints made","things go","go wrong","injured party","reasonable way","good start","start also","intending medical","medical tourist","check whether","wholly accredited","international accreditation","accreditation group","partly accredited","infection control","less inclined","create confidence","potential consumer","street access","quality information","difficult accreditation","accreditation schemes","schemes well","well recognised","providing services","international healthcare","healthcare accreditation","accreditation field","field include","include joint","joint commission","commission international","international jci","jci based","united states","states trent","trent accreditation","accreditation scheme","scheme based","uk europe","former trent","trent scheme","first scheme","hong kong","different accreditation","accreditation schemes","schemes vary","approach quality","quality size","size intent","intent sourcing","also vary","charge hospitals","healthcare institutions","web sites","sites umbrella","umbrella organizations","international society","health care","care isqua","umbrella organisation","organisations providing","providing international","international healthcare","healthcare accreditation","ireland isqua","small non","non profit","profit limited","limited company","countries isqua","isqua works","provide services","guide health","health professionals","professionals providers","providers researchers","researchers agencies","agencies policy","policy makers","healthcare delivery","continuously improve","care isqua","actually survey","accredit hospitals","united kingdom","kingdom accreditation","accreditation forum","united kingdom","kingdom accreditation","accreditation forum","uk based","based umbrella","umbrella organisation","providing healthcare","healthcare accreditation","london like","like isqua","actually survey","accredit hospitals","india becomes","becomes th","th nation","clinic simply","simply wishes","patients wherever","patients come","attract medical","medical tourists","accessing external","accreditation group","none healthcare","healthcare system","none provider","provider country","healthcare accreditation","accreditation schemes","usa perform","providing anything","anything close","universal access","access healthcare","adequate quality","population living","living within","borders othersuch","united kingdom","created state","state funded","funded systems","withouthe assistance","private sector","sector different","different accreditation","accreditation schemes","different parts","map joint","joint commission","commission international","international jci","accreditation canada","united australian","australian council","health care","care standards","standards international","single international","international accreditation","exclusive rights","overall worldwide","worldwide relevant","relevant scheme","looking towards","towards multiple","multiple accreditation","achieve performance","performance credibility","different parts","world file","file locations","thumb locations","geographical bases","bases ofour","leading international","international hospital","hospital accreditation","accreditation schemes","accreditation exist","general medical","family medicine","accreditation servicesuch","royal college","general practitioners","united kingdom","australian general","general practice","practice accreditation","accreditation limited","australia provide","provide accreditation","accreditation services","precise data","joint commission","commission international","international jci","country size","respecto hospital","hospital work","work international","international organization","standardization iso","international organization","international healthcare","healthcare accreditation","accreditation scheme","scheme however","see also","also accreditation","accreditation hospital","hospital accreditation","accreditation evidence","evidence based","based medicine","medicine health","health tourism","tourism provider","provider health","health insurance","international healthcare","healthcare accreditation","accreditation organizations","organizations medical","medical tourism","tourism patient","patient safety","safety patient","patient safety","safety organization","organization medical","medical ethics","ethics international","international organization","standardization united","united kingdom","kingdom accreditation","accreditation forum","forum externalinks","externalinks editorial","hospital accreditation","achieving international","international quality","quality standards","health international","international journal","health care","care volume","volume number","number december","december pp","pp role","hospital accreditation","regional office","theastern mediterranean","mediterranean partners","partners harvard","harvard medical","medical international","international making","making quality","e aged","aged care","care accreditation","rapid response","r book","book review","review accreditation","accreditation protecting","r hospital","hospital accreditation","category quality","quality assurance","assurance category","category healthcare","healthcare industry","industry category","category accreditation","accreditation category","category healthcare","healthcare quality","quality category","category medical","medical tourism"],"new_description":"due near universal desire safe good quality healthcare growing interest international_healthcare_accreditation e nov accreditation gains attention modern healthcare providing adequate standard care standard complex challenging process healthcare vital issue importance aspects society societies medical social political ethical business financial part world healthcare_services provided either public sector private_sector combination site delivery healthcare located hospitals accessed practitioners working community general medical practitioners occurring parts developed world setting people ever greater expectations hospitals healthcare_services trend especially strong medicine medical systems exist example theuropean_union patients greater expectations health systems deliver although continuous rise costs services determined scientific technological innovation office international public_health social affairs contribution reflection process new health strategy venice italy regional health social department one particular member state united_kingdom people going increase demand also got increased expectation whathe nhs deliver uk parliament select committee health february minutes michael hall questions usa differences unusual among developed western countries million overall us population health_insurance r august poverty share americans without healthcare higher washington centre budget policy priorities yet usa spent nearly trillion healthcare country gross domestic product twice much per average us citizens look outside country find affordable healthcare medium medical_tourism also_known global healthcare see apart using hospital healthcare_services regain health become prevent ill health occurring first place people world may_also use wide_variety services example improving cosmetic surgery sex surgery surgery acquiring help difficulties becoming parent infertility treatment healthcare hospital_accreditation fundamentally healthcare hospital_accreditation improving care delivered patients quality care receive accreditation defined self assessment external peer assessment process used health_care organisations accurately assess level performance relation established standards implement ways continuously improve interest hospital_accreditation far world health organisation accreditation one important component patient safety however limited contested evidence supporting accreditation programs usa thearly_th century concern best create could work standards improve control hospital environment thus generated subsequently grew accreditation_schemes withe facilitate improve organisational development part process assessing quality also promoting improving quality similar accreditation_schemes soon developed elsewhere world countriesuch united_kingdom united_states australia new_zealand canada sophisticated accreditation groups grown survey hospitals cases healthcare community furthermore accreditation groups set openly declared look one particularea healthcare laboratory medicine services sexual health accreditation systems structured provide objective measures thexternal evaluation quality quality management accreditation ideally focus primarily patient pathway thealthcare system includes access care discharge hospital quality_services provided atheart schemes list standards ideally serve assess evaluate systematic comprehensive way standards professional performance hospital includes hand patient care also training education staff credentials clinical governance audit research activity ethical standards etc standards also_used internally hospitals develop improve quality standards quality management international_accreditation schemes believe thathe standards applied fixed others operate system standards however whatever approach taken aspect based based international standardization groups also exist must pointed mere achieving set standards nothe factor involved quality accreditation also significant matter incorporating participating self examination problem self improvement hence accreditation following sort overall standardization process governments general_public increasingly come demand health_care delivery including especially hospital quality safety clinical performance doctors accreditation systems generally adapted extended role however accreditation ideally independent governmental control accreditation assess hospitals isolated hospital activities servicesuch laboratories services infection control financial health information_technology services indeed partial accreditation type publicly acknowledged asuch bothe accreditation scheme hospital best accreditation_schemes also assess academic intellectual activity teaching research within hospitals thathey survey see later clear interest medical ethics parts world accessing healthcare countries provide comprehensive healthcare_services populations others appear satisfied leaving portions population without access healthcare comes pays bills healthcare may government may individual sometimes either direct payment sometimes schemes insurance_companies etc combination healthcare truly free someone somewhere always pay always wanthe best value money possible affordability healthcare human beings value money hence another factor assessing true quality healthcare background number larger countries engage hospital_accreditation provided internally taking example numerous groups provide accreditation internal healthcare organizations including accreditation association health_care business internationally global community health accreditation program joint_commission accreditation commission health_care inc provider program compliance accreditation commission_international thealthcare quality association accreditation countries looked towards accessing services major_international_healthcare_accreditation groups based countries assess healthcare_services many reasons including cost desire improve healthcare quality one citizens good governance athe basis high_quality healthcare desire market one healthcare_services medical hospitals go international_healthcare_accreditation de facto form advertising response marketing opportunity national accreditation groups wings internationally gone survey accredit hospitals outside borders choose groups said providing international_healthcare_accreditation process accreditation made increasingly complicated facthat many_parts world human beings choosing cross international borders access healthcare phenomenon known medical_tourism global healthcare medical_tourism global healthcare cannot key issue international_healthcare_accreditation becoming_increasingly important millions especially europeans healthcare overseas outside countries variety reasons including especially affordability represents growing multibillion euro dollar pound business increasing importance many_countriesuch thailand india hong_kong malaysiand philippines importance medical_tourism global healthcare theconomy developing_countries increasingly subject academic study clear effect organizations_based within developed world seeking develop medical_tourism global healthcare markethe reasons patients seeking medical_tourism global healthcare options healthcare may expensive home b waiting lists may long c patients wish access treatments available stem cell therapy termination pregnancy unlicensed assignment surgery patients wish greater may feasible hiv aids treatment infertility treatment assignment surgery face e new challenges arise time time new medical developments universally accessible themergence called producing e coli problems withe blood supply disease usa hiv etc social war political change natural disasters factors may lead loss healthcare_services desire seek healthcare overseas thenvironmental political situation constantly vary throughouthe_world need following taken website partners harvard medical international increasing relevance international health_care accreditation growing commercial importance particularly relation medical_tourism global healthcare competitive health_care markets patients increasing array choices quality important sustainability national international_accreditation become powerful indicator health_care organization commitmento high_quality care patient safety reflecting much discussion medical_tourism blog sites reflects increasing importance international_healthcare hospital_accreditation industry individual becoming medical tourist ensure_thathe overseas healthcare planning access possible adequate quality sure simply matter looking hospital buildings mattresses certainly issue looking athe prices charged rooms easier access internet may improve personal comfort basement price may help wallet often important may_include issues standards governance hospital clinic thealthcare providing establishment commitmento self improvement learn positively errors overall medical ethics medical ethical standards operating within organization clinical staff ethical standards personal collective commitmento caring patients wider community quality clinical staff including background educational training evidence continuing professional development staff quality ethical standards management personal collective commitmento caring patients wider community clinical track record hospital clinic infection control track record hospital clinic hospital may located country thenvironment climate may bring patient contact infectious tropical diseases unfamiliar evidence robust fair system deal complaints made patients things go wrong inevitably time time appropriate injured party fair reasonable way list represents good start also intending medical tourist check whether hospital wholly accredited international_accreditation group partly accredited infection control latter less inclined create confidence potential consumer person street access type quality information difficult accreditation_schemes well recognised providing services international_healthcare_accreditation field include joint_commission_international jci based united_states trent accreditation scheme based uk europe former trent scheme ended first scheme accredit hospital asia hong_kong different accreditation_schemes vary approach quality size intent sourcing skill marketing also vary terms much charge hospitals healthcare institutions services web_sites umbrella organizations international society quality health_care isqua umbrella organisation organisations providing international_healthcare_accreditation offices based republic ireland isqua small non_profit limited company members countries isqua works provide services guide health professionals providers researchers agencies policy makers consumers healthcare delivery people continuously improve quality safety care isqua actually survey accredit hospitals clinics united_kingdom accreditation forum united_kingdom accreditation forum uk based umbrella organisation providing healthcare_accreditation offices based london like isqua actually survey accredit hospitals india becomes th nation join services hospital clinic simply wishes improve patients wherever patients come locally wishes attract medical_tourists choose go accessing external accreditation group listed none healthcare system monopoly excellence none provider country scheme claim total quality true healthcare_accreditation_schemes example countriesuch usa perform poorly comes providing anything close universal access healthcare adequate quality population living within borders othersuch united_kingdom australia created state funded systems withouthe assistance private_sector different accreditation_schemes sourced different_parts world example hospitals map joint_commission_international jci accreditation canada trent united australian council health_care standards international single international_accreditation exclusive rights seen overall worldwide relevant scheme hospitals looking towards multiple accreditation achieve performance credibility different_parts world file locations bases int thumb locations geographical bases ofour world leading international hospital_accreditation_schemes fields accreditation exist use general medical known family medicine countries accreditation servicesuch royal college general practitioners united_kingdom australian general practice accreditation limited australia provide accreditation services practices respecto cost accreditation vary hard find precise data case joint_commission_international jci costs substantial based country size operations organisation respecto hospital work international organization standardization iso international organization standardization often considered international_healthcare_accreditation scheme however see_also accreditation hospital_accreditation evidence based medicine health_tourism provider health_insurance international_healthcare_accreditation organizations medical_tourism patient safety patient safety organization medical ethics international international organization standardization united_kingdom accreditation forum externalinks editorial hospital_accreditation means achieving international quality standards health international_journal quality health_care volume number december pp role hospital_accreditation regional office theastern mediterranean partners harvard medical international making quality e aged care accreditation australia rapid response r book review accreditation protecting professional consumer r hospital_accreditation important category quality assurance category healthcare industry_category accreditation category healthcare quality category_medical tourism"},{"title":"International tourism","description":"international tourism refers tourism that crosses national borders globalization has made tourism a popular globaleisure activity the world tourism organization defines tourists as people traveling to and staying in places outside their usual environment for not more than one consecutive year for leisure business and other purposes the world health organization who estimates that up to people are in flight at any one time swine flu prompts eu warning on travel to us the guardian april file boardingeasyjetarpjpg thumb modern aviation has made it possible to travelong distances quickly as a result of the late s recession international travel behavior travel demand suffered a strong slowdown from the second half of through thend of this negative trend intensifieduring exacerbated in some countries due to the outbreak of the flu pandemic h n influenza virus resulting in a worldwidecline of in to million international tourists arrivals and a decline international tourism receipts international tourism reached us b growing over corresponding to an increase in real versus nominal valueconomics real terms of in there were over million international tourist arrivals worldwide category tourism category economic globalization","main_words":["international","tourism","refers","tourism","crosses","national","borders","globalization","made","tourism","popular","activity","world_tourism","organization","defines","tourists","people","traveling","staying","places","outside","usual","environment","one","consecutive","year","leisure","business","purposes","world","health","organization","estimates","people","flight","one_time","flu","warning","travel","us","guardian","april","file","thumb","modern","aviation","made","possible","distances","quickly","result","late","recession","international_travel","behavior","travel","demand","suffered","strong","slowdown","second_half","thend","negative","trend","countries","due","outbreak","flu","h","n","virus","resulting","million","international_tourists","arrivals","decline","international_tourism","receipts","international_tourism","reached","us","b","growing","corresponding","increase","real","versus","nominal","real","terms","million","international_tourist","arrivals","worldwide","category_tourism","category","economic","globalization"],"clean_bigrams":[["international","tourism"],["tourism","refers"],["refers","tourism"],["crosses","national"],["national","borders"],["borders","globalization"],["made","tourism"],["world","tourism"],["tourism","organization"],["organization","defines"],["defines","tourists"],["people","traveling"],["places","outside"],["usual","environment"],["one","consecutive"],["consecutive","year"],["leisure","business"],["world","health"],["health","organization"],["one","time"],["guardian","april"],["april","file"],["thumb","modern"],["modern","aviation"],["distances","quickly"],["recession","international"],["international","travel"],["travel","behavior"],["behavior","travel"],["travel","demand"],["demand","suffered"],["strong","slowdown"],["second","half"],["negative","trend"],["countries","due"],["h","n"],["virus","resulting"],["million","international"],["international","tourists"],["tourists","arrivals"],["decline","international"],["international","tourism"],["tourism","receipts"],["receipts","international"],["international","tourism"],["tourism","reached"],["reached","us"],["us","b"],["b","growing"],["real","versus"],["versus","nominal"],["real","terms"],["million","international"],["international","tourist"],["tourist","arrivals"],["arrivals","worldwide"],["worldwide","category"],["category","tourism"],["tourism","category"],["category","economic"],["economic","globalization"]],"all_collocations":["international tourism","tourism refers","refers tourism","crosses national","national borders","borders globalization","made tourism","world tourism","tourism organization","organization defines","defines tourists","people traveling","places outside","usual environment","one consecutive","consecutive year","leisure business","world health","health organization","one time","guardian april","april file","thumb modern","modern aviation","distances quickly","recession international","international travel","travel behavior","behavior travel","travel demand","demand suffered","strong slowdown","second half","negative trend","countries due","h n","virus resulting","million international","international tourists","tourists arrivals","decline international","international tourism","tourism receipts","receipts international","international tourism","tourism reached","reached us","us b","b growing","real versus","versus nominal","real terms","million international","international tourist","tourist arrivals","arrivals worldwide","worldwide category","category tourism","tourism category","category economic","economic globalization"],"new_description":"international tourism refers tourism crosses national borders globalization made tourism popular activity world_tourism organization defines tourists people traveling staying places outside usual environment one consecutive year leisure business purposes world health organization estimates people flight one_time flu warning travel us guardian april file thumb modern aviation made possible distances quickly result late recession international_travel behavior travel demand suffered strong slowdown second_half thend negative trend countries due outbreak flu h n virus resulting million international_tourists arrivals decline international_tourism receipts international_tourism reached us b growing corresponding increase real versus nominal real terms million international_tourist arrivals worldwide category_tourism category economic globalization"},{"title":"International tourism advertising","description":"file visitbamiyanjpg thumb visitbamiyan was created in augusto market bamiyan to the rest of the world international tourism advertising is tourism related marketing on the part of a private or public entity directed towards audiences abroad and mightarget potential travelers and non travelers alike wholly private firmsuch as travel agencies hotel chains cruise agencies non governmental organizationon governmental organizations ngos often run their own advertising campaigns to marketheir existence mission or services and or goods offered to the consumer and these advertisementseldom carry intentional political messages on the other hand advertising distributed by governments themselvesuch as through tourisministries or government owned private sector enterprises isometimes intended to convey more than simply the value of the product service or experience governments can use tourism ads as a channel for communicating directly to the public of other countries because tourism is a common and internationally encouraged industry and the advertising of it isubjecto minimal content regulation as the global travel market continues to expand with yearly increasing flights among international destinations advertising efforts on the part of the major actors in this market are also increasing advertising campaigns to promote travel to destinations abroad are particularly prevalent in western countries where the general public s expenditures on tourism tend to be consistently high even in light of the late s recession economic recession many advertisers which include both privatentities and foreign governments themselveshare the intended goal of increasing their own revenue by popularizing their serviceg airline or hotel chain or destination to boost receipts from travelers however some travel campaigns have additional or alternative purposesuch as promotingood public sentiments or improving existing ones towards them among the target audience sometimestates may use the branding of a product or service itself as a means of conveying a specific message without explicitly stating the message this tactic is often used to soften the implied message itself thus allowing the brander to sidestep or minimize controversy and or opposition tourism advertising can take many forms utilize a wide array of advertising tactics and be driven by a scope of private or public intents destination advertising is designed to make a location itself seemore appealing while travel services advertising seeks to gain an audience s buy in for the tourism related service or product below are some instances of international tourism advertising overlapping with states political economic and or social interests destination advertising a great degree of ads promoting foreign countries are produced andistributed by the tourisministries of those countrieso these ads often serve as public diplomacy vehicles for political statements and or depictions of the destination country s desired foreign public perception s following are only a few of the many examples of government produced tourism destination advertising that also serve political or social functions the bahamas are commonly considered to be a focal point of leisure and recreational travel in the caribbeand the island nation advertises itself asuch television ads and website produced by the government of the bahamaspecifically foster the image of the islands providing a care freexciting culturally rich and even romantic experience for travelers a recent slogan for the marketing campaign was it s better in the bahamas to reinforce the contrast between the desired perception as a low stress getaway and thectic nature of whatever living environmentourists would be leaving behind the bahamas have however actually traditionally seen high violent crime rateso the tourismarketing attempts to focus the audience s attention the azure water and beaches andraw it away from any negativelements of life there perception management managing perceptions is a common part of advertising of many consumer products and services focusing the audience s mind solely on the desirable aspects of whatever is being sold and away from any possible drawbacks or consequences the common impression of india in the west has long been either negative including perceptions of widespread poverty lack of sophisticated hygiene and violent ethnic and religious clashes or ambivalent so the indian government s ministry of tourism began a marketing campaign incredible ndia to emphasize the country s rich culture historic sites tourist attractions and general sense of excitement andynamism to western audiences tourism is an extremely lucrative and growinglobal industry so it is no surprise that india developing nation istriving to capitalize on that marketo boost its economy in addition india is also looking to strengthen its international security andiplomatic ties while broadening andeepening its trade relationships especially withe uso it is india s interesto promote a positive light for itself among the americand western voting populations in order to garner future international support and aid after the release of the sacha baron cohen comedy borat culturalearnings of america for make benefit glorious nation of kazakhstan borat which depicts a politically incorrect and socially oblivious fictional kazakhi reporter who travels throughouthe united states interviewing and meeting americans from various walks of life the government of kazakhstan was highly offended by the depiction of its less than two decade old country and borat culturalearnings of america for make benefit glorious nation of kazakhstan criticism by kazakhstan criticized the film and its creator as being defamatory and slanderous the issue of preserving kazakhstan s public image in light of the movie was of suchigh importance that kazakh president nursultanazarbayev had it listed as a main issue when he traveled to the us in september to meet withen president george w bush coupled with nazarbeyev s visit according to kazakhstan embassy spokesman roman vassilenko the kazakh government staged a large scale public relations blitz including running four page ads in the new york times and us news and world report and commercials on cnn and the local abc affiliate in washington dc as well as launching tv ads to promote tourism to kazakhstan these travel adspecifically featured cultural and historical features of the country as well as views of its developed infrastructure specifically to counter the type of impression given by the borat character to the westhat kazakhstan isocially and physically underdeveloped recently in the tourism board of mexico a public office that aggregates the resources and interests of the federal state and municipal governments launched a tourism advertising campaign in the united states and canada mexico s two north american free trade agreement north american free trade agreement nafta partners geared towards renovating common public political and social perceptions of mexico including impressions of poverty government and law enforcement corruption petty and organized crime andrug trading and illegal immigration into the us the new campaign s purpose is expressly demonstrated by its marketing slogan mexico the place you thought you knew the print and television ads feature views of mexico s beaches natural wonders cultural festivities and historical artifacts like mayan pyramids and spanish churches in order to provide a counterbalance to the less preferable popular preconceptions the tourism board stated goal of the advertising surge is to generat e more than three positive impressions person among the north american audience theventual goal is likely to increase tourism revenue for the country but for now the tourism board is focusing on public diplomacy managing perceptions among the general populations of mexico s two major neighboring trade partners official website of the tourism board of mexico destination slogans many countries use slogans in their international tourism advertising destination slogans aim to promote a positive identity for the country academic studies of these slogans have identified several common themesuch as the physical beauty of the location or the positivexperiences travellers can expecto have there class wikitable country slogan albania go your own way algeria tourism for everybody andorra the pyrenean country antiguand barbuda the beach is justhe beginning argentina beats to yourhythm armenia visit armenia it is beautiful australia there s nothing like australiaustriarrive and revive bahamas life is grand bahrain ours yours bahrain bangladesh beautiful bangladesh barbados brilliant barbados belarus hospitality beyond borders belgium the place to belize mother nature s best kept secret bhutan happiness is a place bolivia awaits you bosniand herzegovina theart shaped land botswana our pride your destination brazil brasil sensational brunei darussalam a kingdom of unexpected treasures bulgaria discovery to share burundi beautiful burundi cabo verde no stress cambodia kingdom of wonder cameroon all of africa in one country canada keep exploring chad oasis of the sahel chile all are welcome china like never before colombia the only risk is wanting to stay colombia is magical realism costa rica essential costa rica croatia full of life cubautentica cuba cyprus in your heart czech republic land of stories denmark happiest place on earth djibouti djibeauty dominica the nature islandominican republic dominican republic has it all ecuador all you need is equador egypt where it all begins el salvador the minute country estonia epic estonia ethiopia land of origins fiji where happiness finds you finland i wish i was in finland france rendez vous en france gambia the smiling coast of africa georgia country georgia for the best moments of your life germany simply inspiringreece all time classic grenada pure grenada guatemala heart of the mayan world guyana south america undiscovered haiti experience it honduras everything is here hungary think hungary more than expected iceland inspired by iceland india incredible india incredible ndia indonesia wonderful indonesia iran you are invited iraq the other iraq kurdistan ireland jump into ireland israeland of creation italy made in italy jamaica get all right japan endless discovery jordan yes it is jordan kazakhstan the land of wonders kenya magical kenya kiribati for travellers kyrgyzstan oasis on the great silk road laosimply beautifulatvia best enjoyed slowly lebanon live love lebanon lesotho the kingdom in the sky liechtenstein experience princely moments lithuania see it feel it love it real is beautiful world tourism organization unwto website mediaunwtoorg languagen access date luxembourg live your unexpected luxembourg republic of macedonia macedonia timeless madagascar a genuine island a world apart malawi the warm heart of africa malaysia truly asia maldives the sunny side of life malta truly mediterranean mauritius it s a pleasure mexico live ito believe it micronesia federated states of experience the warmth monaco easy going monaco moldova discover the routes of life mongolia go nomadic experience mongolia nomadic by nature montenegro wild beauty morocco much mor mozambique come to where it all started myanmar lethe journey beginamibia endless horizons nepal once is not enough netherlands the original cool new zealand pure nicaragua unica original nigeria good people great nationorway powered by nature oman beauty has an address hoteliermiddleeastcom lastaffirst hotelier middleast work hoteliermiddleeastcom access date palau pristime paradise palau panama surprises papua new guinea million different journeys paraguayou have to feel it peru land of the incas philippines it is more fun in the philippines poland move your imagination portugal europe s west coast qatar where dreams come to life romania explore the carpathian garden russian federation reveal your own russia rwanda remarkable rwanda saint kitts and nevis follow your heart saint lucia simply beautiful saint vincent and the grenadines discover svg samoa beautiful samoa san marino san marino for all saudi arabia experience to discover serbia my serbia seychelles another world sierra leone the freedom to explore singapore your singapore slovakia travel in slovakia good idea slovenia i feel slovenia solomon islandseek the unexplored south africa inspiring newaysouth korea imagine your korea spainindetail sri lanka sri lanka small miracle refreshingly sri lanka the wonder of asia wonder of asia the sundaytimesri lanka website wwwsundaytimeslk access date suriname a colorful experiencexotic beyond wordswaziland a royal experience switzerland get natural syrian arab republic always beautiful tajikistan feel the friendship tanzania the land of kilimanjaro zanzibar and the serengeti thailand amazing thailand it begins withe people timor leste being first has its rewards tonga the true south pacific trinidad and tobago the true caribbean tunisia i feelike tunisia turkey be our guestuvalu timeless tuvaluganda you are welcome ukraine it is all about united arab emirates discover all that is possible united kingdom ukok great britain home of amazing moments united states of americall within youreach uruguay natural uzbekistanaturally irresistible vanuatu discover what matters venezuela is your destination vietnam timeless charm zambia let s explore zimbabwe a world of wonders travel services advertising additionally a wide range oforeign airlines and travel related services which also advertiseparately from the destinations themselves are owned by theirespective governmentsuch as themirates airlinemirates airline dubai qatar airways qatar chinairlines taiwan republic of chinand air china people s republic of china airways and air china airlines is the official flag carrier airline of taiwan the taiwanese government refers to itstate as the republic of chinand considers itself to be the legitimate non communist leadership in exile of all of china since the communist overthrow in the mid s the name of the airline carries the message of the long lasting and ongoing cultural and crosstrait relations political conflict between communist mainland people s republic of china prc and taiwan thathe republic of china is the true chinand thathe state commonly referred to as china is illegitimate and usurped control of the country from the rightfuleadership similarly the prcounters this message by having named one of its largest international carriers air china to reinforce the prc s claim to be the legitimate of the two chinas the implicit conflict between the two states is likely lost on the majority of the general public outside theast asia immediate region such as the united states and europe buthe strategic use of using advertising and targeting the international community through tourism is apparent on both sides through advertising for themirates airline one of the major themes that dubai promotes is its evolving status as a geographic and economic player in the middleast emirates advertising describes dubai as the perfect hub for an expandinglobal network and illustrates this claim in the airline s centre of the world television ad on the other handubai subtly promotes an official stance of multinationalism and a stated intento cater to the comfort of travelers from abroad in themirates multinational cabin crew television ad these positions among others are portrayed via visually and audibly appealing commercials which are designed to relate to the target audience s and make the ads messages maximally amenable to global viewers emirates additionally adds to its efforto appeal to the westhrough itsponsorship of the arsenal fc arsenal football club including constructing the team s new venuemiratestadium which opened in july and prominently displays themirates branding on thexterior in this way any depictions of the stadium will result in de facto advertising and reinforce the public recognition of themirates company as one that is associated with western sports and culture in may three arsenal players kieran gibbs alex oxlade chamberlain and carl jenkinson took an a flight simulator challenge swapping their usual airline passenger seats and stepping into the cockpithe players attempted to land an a in dubai emirates along withe aviation services company dnata is owned by the parent company themirates group which in turn is wholly owned by the government of dubai the chairmand ceof themirates group hh sheikh ahmed bin saeed al maktoum ahmed bin saeed al maktoum is the younger brother of the formeruler of dubai hh sheikh rashid bin saeed al maktoum rashid bin saeed al maktoum and uncle of the current ruler hh sheikh mohammed bin rashid al maktoumohammed bin rashid al maktoum in sheikh ahmed was appointed president of the dubai department of civil aviation dca the governing body for airline regulation and airport control and operation the dca was restructured and expanded in thus creating the dubai civil aviation authority dcaa whichasince been the airline regulatory authority in themirate and the dubairports company which owns and operates dubai s airports dubainternational and the currently under construction dubai world central maktoum international dubainternational iata dxb is a primary international hub in the middleast offering flights to every continent except antarcticas of november dxb is the th busiest airport in the world for cargo traffic and the thighest passenger throughput of all international airportsheikh ahmed currently simultaneously holds the positions of chairmand ceof emirates airline group which includes themirates airline andnatair services company chairman of the dubairports company and president of the dubai civil aviation authority because dubai s government leadership is directly involved and intertwined with private sector enterprises including themirates airline and many other facets of the tourism industry the governmenthere necessarily has a vested interest in the public perception of dubai references externalinks forbes emirates air spoiling for a fight world economic forum s the travel tourism competitiveness report category advertising category tourism","main_words":["file","thumb","created","market","rest","world","international_tourism","advertising","tourism_related","marketing","part","private","public","entity","directed","towards","audiences","abroad","potential","travelers","non","travelers","alike","wholly","private","travel_agencies","hotel_chains","cruise","agencies","non_governmental","governmental","organizations","ngos","often","run","advertising","campaigns","existence","mission","services","goods","offered","consumer","carry","intentional","political","messages","hand","advertising","distributed","governments","government","owned","private_sector","enterprises","isometimes","intended","convey","simply","value","product","service","experience","governments","use","tourism","ads","channel","communicating","directly","public","countries","tourism","common","internationally","encouraged","industry","advertising","isubjecto","minimal","content","regulation","global","travel_market","continues","expand","yearly","increasing","flights","among","international","destinations","advertising","efforts","part","major","actors","market","also","increasing","advertising","campaigns","promote","travel_destinations","abroad","particularly","prevalent","western","countries","general_public","expenditures","tourism","tend","consistently","high","even","light","late","recession","economic","recession","many","advertisers","include","foreign","governments","intended","goal","increasing","revenue","popularizing","airline","hotel_chain","destination","boost","receipts","travelers","however","travel","campaigns","additional","alternative","purposesuch","public","improving","existing","ones","towards","among","target","audience","may","use","branding","product","service","means","specific","message","without","explicitly","stating","message","often_used","implied","message","thus","allowing","minimize","controversy","opposition","tourism","advertising","take","many","forms","utilize","wide","array","advertising","tactics","driven","scope","private","public","destination","advertising","designed","make","location","appealing","travel","services","advertising","seeks","gain","audience","buy","tourism_related","service","product","instances","international_tourism","advertising","states","political","economic","social","interests","destination","advertising","great","degree","ads","promoting","foreign_countries","produced","andistributed","ads","often","serve","public","vehicles","political","statements","depictions","destination","country","desired","foreign","public","perception","following","many","examples","government","produced","tourism_destination","advertising","also_serve","political","social","functions","bahamas","commonly","considered","focal","point","leisure","recreational","travel","caribbeand","island","nation","advertises","asuch","television","ads","website","produced","government","foster","image","islands","providing","care","culturally","rich","even","romantic","experience","travelers","recent","slogan","marketing","campaign","better","bahamas","reinforce","contrast","desired","perception","low","stress","getaway","nature","whatever","living","would","leaving","behind","bahamas","however","actually","traditionally","seen","high","violent","crime","tourismarketing","attempts","focus","audience","attention","water","beaches","away","life","perception","management","managing","perceptions","common","part","advertising","many","consumer","products","services","focusing","audience","mind","solely","desirable","aspects","whatever","sold","away","possible","consequences","common","impression","india","west","long","either","negative","including","perceptions","widespread","poverty","lack","sophisticated","hygiene","violent","ethnic","religious","indian","government","ministry","tourism","began","marketing","campaign","incredible","emphasize","country","rich","culture","historic_sites","tourist_attractions","general","sense","western","audiences","tourism","extremely","lucrative","industry","surprise","india","developing","nation","capitalize","marketo","boost","economy","addition","india","also","looking","strengthen","international","security","ties","trade","relationships","especially","withe","india","interesto","promote","positive","light","among","americand","western","voting","populations","order","garner","future","international","support","aid","release","baron","cohen","comedy","borat","america","make","benefit","glorious","nation","kazakhstan","borat","depicts","politically","incorrect","socially","fictional","reporter","travels","throughouthe_united_states","interviewing","meeting","americans","various","walks","life","government","kazakhstan","highly","depiction","less","two","decade","old","country","borat","america","make","benefit","glorious","nation","kazakhstan","criticism","kazakhstan","criticized","film","creator","issue","preserving","kazakhstan","public","image","light","movie","importance","kazakh","president","listed","main","issue","traveled","us","september","meet","president","george","w","bush","coupled","visit","according","kazakhstan","embassy","spokesman","roman","kazakh","government","staged","large_scale","public_relations","blitz","including","running","four","page","ads","new_york","times","us","news","world","report","commercials","cnn","local","abc","affiliate","washington","well","launching","ads","promote_tourism","kazakhstan","travel","featured","cultural","historical","features","country","well","views","developed","infrastructure","specifically","counter","type","impression","given","borat","character","kazakhstan","physically","underdeveloped","recently","tourism_board","mexico","public","office","resources","interests","federal","state","municipal","governments","launched","tourism","advertising","campaign","united_states","canada","mexico","two","north_american","free_trade","agreement","north_american","free_trade","agreement","partners","geared_towards","common","public","political","social","perceptions","mexico","including","impressions","poverty","government","law_enforcement","corruption","petty","organized","crime","andrug","trading","illegal","immigration","us","new","campaign","purpose","expressly","demonstrated","marketing","slogan","mexico","place","thought","knew","print","television","ads","feature","views","mexico","beaches","natural","wonders","cultural","festivities","historical","artifacts","like","mayan","pyramids","spanish","churches","order","provide","less","popular","tourism_board","stated","goal","advertising","e","three","positive","impressions","person","among","north_american","audience","theventual","goal","likely","increase","tourism","revenue","country","tourism_board","focusing","public","managing","perceptions","among","general","populations","mexico","two_major","neighboring","trade","partners","official_website","tourism_board","mexico","destination","slogans","many_countries","use","slogans","international_tourism","advertising","destination","slogans","aim","promote","positive","identity","country","academic","studies","slogans","identified","several","common","physical","beauty","location","travellers","expecto","class","wikitable","country","slogan","albania","go","way","tourism","country","beach","justhe","beginning","argentina","beats","armenia","visit","armenia","beautiful","australia","nothing","like","revive","bahamas","life","grand","bahrain","bahrain","bangladesh","beautiful","bangladesh","barbados","brilliant","barbados","hospitality","beyond_borders","belgium","place","belize","mother","nature","secret","happiness","place","bolivia","bosniand","herzegovina","theart","shaped","land","pride","destination","brazil","brasil","kingdom","unexpected","treasures","bulgaria","discovery","share","burundi","beautiful","burundi","cabo","verde","stress","cambodia","kingdom","wonder","cameroon","africa","one","country","canada","keep","exploring","oasis","chile","welcome","china","like","never","colombia","risk","wanting","stay","colombia","magical","costa_rica","essential","costa_rica","croatia","full","life","cuba","cyprus","heart","czech_republic","land","stories","denmark","place","earth","nature","republic","dominican","republic","ecuador","need","egypt","begins","el_salvador","minute","country","estonia","epic","estonia","ethiopia","land","origins","fiji","happiness","finds","finland","wish","finland","france","france","gambia","coast","africa","georgia","country","georgia","best","moments","life","germany","simply","time","classic","grenada","pure","grenada","guatemala","heart","mayan","world","south_america","undiscovered","haiti","experience","honduras","everything","hungary","think","hungary","expected","iceland","inspired","iceland","india","incredible","india","incredible","indonesia","wonderful","indonesia","iran","invited","iraq","iraq","ireland","jump","ireland","creation","italy","made","italy","jamaica","get","right","japan","discovery","jordan","yes","jordan","kazakhstan","land","wonders","kenya","magical","kenya","travellers","oasis","great","silk","road","best","enjoyed","slowly","lebanon","live","love","lebanon","kingdom","sky","experience","princely","moments","lithuania","see","feel","love","real","beautiful","world_tourism","organization","unwto","website","languagen","access_date","luxembourg","live","unexpected","luxembourg","republic","macedonia","macedonia","timeless","madagascar","genuine","island","world","apart","malawi","warm","heart","africa","malaysia","truly","asia","maldives","sunny","side","life","malta","truly","mediterranean","mauritius","pleasure","mexico","live","ito","believe","states","experience","warmth","monaco","easy","going","monaco","discover","routes","life","mongolia","go","nomadic","experience","mongolia","nomadic","nature","montenegro","wild","beauty","morocco","much","come","started","myanmar","lethe","journey","nepal","enough","netherlands","original","cool","new_zealand","pure","nicaragua","original","nigeria","good","people","great","powered","nature","oman","beauty","address","hotelier","middleast","work","access_date","paradise","panama","papua_new_guinea","million","different","journeys","feel","peru","land","philippines","fun","philippines","poland","move","imagination","portugal","europe","west_coast","qatar","dreams","come","life","romania","explore","garden","russian","federation","reveal","russia","rwanda","remarkable","rwanda","saint","follow","heart","saint","simply","beautiful","saint","vincent","discover","svg","samoa","beautiful","samoa","san","marino","san","marino","saudi_arabia","experience","discover","serbia","serbia","another","world","sierra_leone","freedom","explore","singapore","singapore","slovakia","travel","slovakia","good","idea","slovenia","feel","slovenia","solomon","south_africa","inspiring","korea","korea","sri_lanka","sri_lanka","small","miracle","sri_lanka","wonder","asia","wonder","asia","website","access_date","colorful","beyond","royal","experience","switzerland","get","natural","syrian","arab","republic","always","beautiful","feel","friendship","tanzania","land","kilimanjaro","zanzibar","thailand","amazing","thailand","begins","withe","people","first","rewards","tonga","true","south_pacific","trinidad","tobago","true","caribbean","tunisia","tunisia","turkey","timeless","welcome","ukraine","united_arab_emirates","discover","possible","united_kingdom","great_britain","home","amazing","moments","united_states","within","uruguay","natural","discover","matters","venezuela","destination","vietnam","timeless","charm","zambia","let","explore","zimbabwe","world","wonders","travel","services","advertising","additionally","wide_range","oforeign","airlines","travel_related","services","also","destinations","owned","theirespective","themirates","airline","dubai","qatar","airways","qatar","taiwan","republic","chinand","air","china","people","republic","china","airways","air","china","airlines","official","flag","carrier","airline","taiwan","taiwanese","government","refers","republic","chinand","considers","legitimate","non","communist","leadership","china","since","communist","mid","name","airline","carries","message","long","lasting","ongoing","cultural","crosstrait","relations","political","conflict","communist","mainland","people","republic","china","taiwan","thathe","republic","china","true","chinand","thathe","state","commonly_referred","china","control","country","similarly","message","named","one","largest","international","carriers","air","china","reinforce","claim","legitimate","two","conflict","two","states","likely","lost","majority","general_public","outside","theast","asia","immediate","region","united_states","europe","buthe","strategic","use","using","advertising","targeting","international","community","tourism","apparent","sides","advertising","themirates","airline","one","major","themes","dubai","promotes","evolving","status","geographic","economic","player","middleast","emirates","advertising","describes","dubai","perfect","hub","network","illustrates","claim","airline","centre","world","television","promotes","official","stance","stated","cater","comfort","travelers","abroad","themirates","multinational","cabin","crew","television","positions","among_others","portrayed","via","visually","appealing","commercials","designed","relate","target","audience","make","ads","messages","global","viewers","emirates","additionally","adds","efforto","appeal","arsenal","arsenal","football","club","including","constructing","team","new","opened","july","prominently","displays","themirates","branding","thexterior","way","depictions","stadium","result","de","facto","advertising","reinforce","public","recognition","themirates","company","one","associated","western","sports","culture","may","three","arsenal","players","alex","chamberlain","carl","took","flight","simulator","challenge","swapping","usual","airline","passenger","seats","players","attempted","land","dubai","emirates","along_withe","aviation","services","company","owned","parent_company","themirates","group","turn","wholly","owned","government","dubai","chairmand","ceof","themirates","group","sheikh","ahmed","bin","saeed","maktoum","ahmed","bin","saeed","maktoum","younger","brother","dubai","sheikh","rashid","bin","saeed","maktoum","rashid","bin","saeed","maktoum","uncle","current","sheikh","mohammed","bin","rashid","bin","rashid","maktoum","sheikh","ahmed","appointed","president","dubai","department","civil_aviation","governing","body","airline","regulation","airport","control","operation","restructured","expanded","thus","creating","dubai","civil_aviation","authority","airline","regulatory","authority","company","owns","operates","dubai","airports","currently","construction","dubai","world","central","maktoum","international","iata","primary","international","hub","middleast","offering","flights","every","continent","except","november","th","busiest","airport","world","cargo","traffic","passenger","international","ahmed","currently","simultaneously","holds","positions","chairmand","ceof","emirates","airline","group","includes","themirates","airline","services","company","chairman","company","president","dubai","civil_aviation","authority","dubai","government","leadership","directly","involved","private_sector","enterprises","including","themirates","airline","many","facets","tourism_industry","necessarily","interest","public","perception","dubai","references_externalinks","forbes","emirates","air","fight","world","economic","forum","travel_tourism","competitiveness","report","category","advertising","category_tourism"],"clean_bigrams":[["world","international"],["international","tourism"],["tourism","advertising"],["tourism","related"],["related","marketing"],["public","entity"],["entity","directed"],["directed","towards"],["towards","audiences"],["audiences","abroad"],["potential","travelers"],["non","travelers"],["travelers","alike"],["alike","wholly"],["wholly","private"],["travel","agencies"],["agencies","hotel"],["hotel","chains"],["chains","cruise"],["cruise","agencies"],["agencies","non"],["non","governmental"],["governmental","organizations"],["organizations","ngos"],["ngos","often"],["often","run"],["advertising","campaigns"],["existence","mission"],["goods","offered"],["carry","intentional"],["intentional","political"],["political","messages"],["hand","advertising"],["advertising","distributed"],["government","owned"],["owned","private"],["private","sector"],["sector","enterprises"],["enterprises","isometimes"],["isometimes","intended"],["product","service"],["experience","governments"],["use","tourism"],["tourism","ads"],["communicating","directly"],["internationally","encouraged"],["encouraged","industry"],["isubjecto","minimal"],["minimal","content"],["content","regulation"],["global","travel"],["travel","market"],["market","continues"],["yearly","increasing"],["increasing","flights"],["flights","among"],["among","international"],["international","destinations"],["destinations","advertising"],["advertising","efforts"],["major","actors"],["also","increasing"],["increasing","advertising"],["advertising","campaigns"],["promote","travel"],["destinations","abroad"],["particularly","prevalent"],["western","countries"],["general","public"],["tourism","tend"],["consistently","high"],["high","even"],["recession","economic"],["economic","recession"],["recession","many"],["many","advertisers"],["foreign","governments"],["intended","goal"],["hotel","chain"],["boost","receipts"],["travelers","however"],["travel","campaigns"],["alternative","purposesuch"],["improving","existing"],["existing","ones"],["ones","towards"],["target","audience"],["may","use"],["product","service"],["specific","message"],["message","without"],["without","explicitly"],["explicitly","stating"],["often","used"],["implied","message"],["thus","allowing"],["minimize","controversy"],["opposition","tourism"],["tourism","advertising"],["take","many"],["many","forms"],["forms","utilize"],["wide","array"],["advertising","tactics"],["destination","advertising"],["travel","services"],["services","advertising"],["advertising","seeks"],["tourism","related"],["related","service"],["international","tourism"],["tourism","advertising"],["states","political"],["political","economic"],["social","interests"],["interests","destination"],["destination","advertising"],["great","degree"],["ads","promoting"],["promoting","foreign"],["foreign","countries"],["produced","andistributed"],["ads","often"],["often","serve"],["political","statements"],["destination","country"],["desired","foreign"],["foreign","public"],["public","perception"],["many","examples"],["government","produced"],["produced","tourism"],["tourism","destination"],["destination","advertising"],["also","serve"],["serve","political"],["social","functions"],["commonly","considered"],["focal","point"],["recreational","travel"],["island","nation"],["nation","advertises"],["asuch","television"],["television","ads"],["website","produced"],["islands","providing"],["culturally","rich"],["even","romantic"],["romantic","experience"],["recent","slogan"],["marketing","campaign"],["desired","perception"],["low","stress"],["stress","getaway"],["whatever","living"],["leaving","behind"],["however","actually"],["actually","traditionally"],["traditionally","seen"],["seen","high"],["high","violent"],["violent","crime"],["tourismarketing","attempts"],["perception","management"],["management","managing"],["managing","perceptions"],["common","part"],["many","consumer"],["consumer","products"],["services","focusing"],["mind","solely"],["desirable","aspects"],["common","impression"],["either","negative"],["negative","including"],["including","perceptions"],["widespread","poverty"],["poverty","lack"],["sophisticated","hygiene"],["violent","ethnic"],["indian","government"],["tourism","began"],["marketing","campaign"],["campaign","incredible"],["rich","culture"],["culture","historic"],["historic","sites"],["sites","tourist"],["tourist","attractions"],["general","sense"],["western","audiences"],["audiences","tourism"],["extremely","lucrative"],["india","developing"],["developing","nation"],["marketo","boost"],["addition","india"],["also","looking"],["international","security"],["trade","relationships"],["relationships","especially"],["especially","withe"],["interesto","promote"],["positive","light"],["americand","western"],["western","voting"],["voting","populations"],["garner","future"],["future","international"],["international","support"],["baron","cohen"],["cohen","comedy"],["comedy","borat"],["make","benefit"],["benefit","glorious"],["glorious","nation"],["kazakhstan","borat"],["politically","incorrect"],["travels","throughouthe"],["throughouthe","united"],["united","states"],["states","interviewing"],["meeting","americans"],["various","walks"],["two","decade"],["decade","old"],["old","country"],["make","benefit"],["benefit","glorious"],["glorious","nation"],["kazakhstan","criticism"],["kazakhstan","criticized"],["preserving","kazakhstan"],["public","image"],["kazakh","president"],["main","issue"],["president","george"],["george","w"],["w","bush"],["bush","coupled"],["visit","according"],["kazakhstan","embassy"],["embassy","spokesman"],["spokesman","roman"],["kazakh","government"],["government","staged"],["large","scale"],["scale","public"],["public","relations"],["relations","blitz"],["blitz","including"],["including","running"],["running","four"],["four","page"],["page","ads"],["new","york"],["york","times"],["us","news"],["world","report"],["local","abc"],["abc","affiliate"],["launching","tv"],["tv","ads"],["promote","tourism"],["featured","cultural"],["historical","features"],["developed","infrastructure"],["infrastructure","specifically"],["impression","given"],["borat","character"],["physically","underdeveloped"],["underdeveloped","recently"],["tourism","board"],["public","office"],["federal","state"],["municipal","governments"],["governments","launched"],["tourism","advertising"],["advertising","campaign"],["united","states"],["canada","mexico"],["two","north"],["north","american"],["american","free"],["free","trade"],["trade","agreement"],["agreement","north"],["north","american"],["american","free"],["free","trade"],["trade","agreement"],["partners","geared"],["geared","towards"],["common","public"],["public","political"],["social","perceptions"],["mexico","including"],["including","impressions"],["poverty","government"],["law","enforcement"],["enforcement","corruption"],["corruption","petty"],["organized","crime"],["crime","andrug"],["andrug","trading"],["illegal","immigration"],["new","campaign"],["expressly","demonstrated"],["marketing","slogan"],["slogan","mexico"],["television","ads"],["ads","feature"],["feature","views"],["beaches","natural"],["natural","wonders"],["wonders","cultural"],["cultural","festivities"],["historical","artifacts"],["artifacts","like"],["like","mayan"],["mayan","pyramids"],["spanish","churches"],["tourism","board"],["board","stated"],["stated","goal"],["three","positive"],["positive","impressions"],["impressions","person"],["person","among"],["north","american"],["american","audience"],["audience","theventual"],["theventual","goal"],["increase","tourism"],["tourism","revenue"],["tourism","board"],["managing","perceptions"],["perceptions","among"],["general","populations"],["two","major"],["major","neighboring"],["neighboring","trade"],["trade","partners"],["partners","official"],["official","website"],["tourism","board"],["mexico","destination"],["destination","slogans"],["slogans","many"],["many","countries"],["countries","use"],["use","slogans"],["international","tourism"],["tourism","advertising"],["advertising","destination"],["destination","slogans"],["slogans","aim"],["positive","identity"],["country","academic"],["academic","studies"],["identified","several"],["several","common"],["physical","beauty"],["class","wikitable"],["wikitable","country"],["country","slogan"],["slogan","albania"],["albania","go"],["justhe","beginning"],["beginning","argentina"],["argentina","beats"],["armenia","visit"],["visit","armenia"],["beautiful","australia"],["nothing","like"],["revive","bahamas"],["bahamas","life"],["grand","bahrain"],["bahrain","bangladesh"],["bangladesh","beautiful"],["beautiful","bangladesh"],["bangladesh","barbados"],["barbados","brilliant"],["brilliant","barbados"],["hospitality","beyond"],["beyond","borders"],["borders","belgium"],["belize","mother"],["mother","nature"],["best","kept"],["kept","secret"],["place","bolivia"],["bosniand","herzegovina"],["herzegovina","theart"],["theart","shaped"],["shaped","land"],["destination","brazil"],["brazil","brasil"],["unexpected","treasures"],["treasures","bulgaria"],["bulgaria","discovery"],["share","burundi"],["burundi","beautiful"],["beautiful","burundi"],["burundi","cabo"],["cabo","verde"],["stress","cambodia"],["cambodia","kingdom"],["wonder","cameroon"],["one","country"],["country","canada"],["canada","keep"],["keep","exploring"],["welcome","china"],["china","like"],["like","never"],["stay","colombia"],["costa","rica"],["rica","essential"],["essential","costa"],["costa","rica"],["rica","croatia"],["croatia","full"],["cuba","cyprus"],["heart","czech"],["czech","republic"],["republic","land"],["stories","denmark"],["republic","dominican"],["dominican","republic"],["begins","el"],["el","salvador"],["minute","country"],["country","estonia"],["estonia","epic"],["epic","estonia"],["estonia","ethiopia"],["ethiopia","land"],["origins","fiji"],["happiness","finds"],["finland","france"],["france","gambia"],["africa","georgia"],["georgia","country"],["country","georgia"],["best","moments"],["life","germany"],["germany","simply"],["time","classic"],["classic","grenada"],["grenada","pure"],["pure","grenada"],["grenada","guatemala"],["guatemala","heart"],["mayan","world"],["south","america"],["america","undiscovered"],["undiscovered","haiti"],["haiti","experience"],["honduras","everything"],["hungary","think"],["think","hungary"],["expected","iceland"],["iceland","inspired"],["iceland","india"],["india","incredible"],["incredible","india"],["india","incredible"],["indonesia","wonderful"],["wonderful","indonesia"],["indonesia","iran"],["invited","iraq"],["ireland","jump"],["creation","italy"],["italy","made"],["italy","jamaica"],["jamaica","get"],["right","japan"],["discovery","jordan"],["jordan","yes"],["jordan","kazakhstan"],["wonders","kenya"],["kenya","magical"],["magical","kenya"],["great","silk"],["silk","road"],["best","enjoyed"],["enjoyed","slowly"],["slowly","lebanon"],["lebanon","live"],["live","love"],["love","lebanon"],["experience","princely"],["princely","moments"],["moments","lithuania"],["lithuania","see"],["beautiful","world"],["world","tourism"],["tourism","organization"],["organization","unwto"],["unwto","website"],["languagen","access"],["access","date"],["date","luxembourg"],["luxembourg","live"],["unexpected","luxembourg"],["luxembourg","republic"],["macedonia","macedonia"],["macedonia","timeless"],["timeless","madagascar"],["genuine","island"],["world","apart"],["apart","malawi"],["warm","heart"],["africa","malaysia"],["malaysia","truly"],["truly","asia"],["asia","maldives"],["sunny","side"],["life","malta"],["malta","truly"],["truly","mediterranean"],["mediterranean","mauritius"],["pleasure","mexico"],["mexico","live"],["live","ito"],["ito","believe"],["warmth","monaco"],["monaco","easy"],["easy","going"],["going","monaco"],["life","mongolia"],["mongolia","go"],["go","nomadic"],["nomadic","experience"],["experience","mongolia"],["mongolia","nomadic"],["nature","montenegro"],["montenegro","wild"],["wild","beauty"],["beauty","morocco"],["morocco","much"],["started","myanmar"],["myanmar","lethe"],["lethe","journey"],["enough","netherlands"],["original","cool"],["cool","new"],["new","zealand"],["zealand","pure"],["pure","nicaragua"],["original","nigeria"],["nigeria","good"],["good","people"],["people","great"],["nature","oman"],["oman","beauty"],["hotelier","middleast"],["middleast","work"],["access","date"],["papua","new"],["new","guinea"],["guinea","million"],["million","different"],["different","journeys"],["peru","land"],["philippines","poland"],["poland","move"],["imagination","portugal"],["portugal","europe"],["west","coast"],["coast","qatar"],["dreams","come"],["life","romania"],["romania","explore"],["garden","russian"],["russian","federation"],["federation","reveal"],["russia","rwanda"],["rwanda","remarkable"],["remarkable","rwanda"],["rwanda","saint"],["heart","saint"],["simply","beautiful"],["beautiful","saint"],["saint","vincent"],["discover","svg"],["svg","samoa"],["samoa","beautiful"],["beautiful","samoa"],["samoa","san"],["san","marino"],["marino","san"],["san","marino"],["saudi","arabia"],["arabia","experience"],["discover","serbia"],["another","world"],["world","sierra"],["sierra","leone"],["explore","singapore"],["singapore","slovakia"],["slovakia","travel"],["slovakia","good"],["good","idea"],["idea","slovenia"],["feel","slovenia"],["slovenia","solomon"],["south","africa"],["africa","inspiring"],["sri","lanka"],["lanka","sri"],["sri","lanka"],["lanka","small"],["small","miracle"],["sri","lanka"],["asia","wonder"],["lanka","website"],["access","date"],["royal","experience"],["experience","switzerland"],["switzerland","get"],["get","natural"],["natural","syrian"],["syrian","arab"],["arab","republic"],["republic","always"],["always","beautiful"],["friendship","tanzania"],["kilimanjaro","zanzibar"],["thailand","amazing"],["amazing","thailand"],["begins","withe"],["withe","people"],["rewards","tonga"],["true","south"],["south","pacific"],["pacific","trinidad"],["true","caribbean"],["caribbean","tunisia"],["tunisia","turkey"],["welcome","ukraine"],["united","arab"],["arab","emirates"],["emirates","discover"],["possible","united"],["united","kingdom"],["great","britain"],["britain","home"],["amazing","moments"],["moments","united"],["united","states"],["uruguay","natural"],["matters","venezuela"],["destination","vietnam"],["vietnam","timeless"],["timeless","charm"],["charm","zambia"],["zambia","let"],["explore","zimbabwe"],["wonders","travel"],["travel","services"],["services","advertising"],["advertising","additionally"],["wide","range"],["range","oforeign"],["oforeign","airlines"],["travel","related"],["related","services"],["themirates","airline"],["airline","dubai"],["dubai","qatar"],["qatar","airways"],["airways","qatar"],["taiwan","republic"],["chinand","air"],["air","china"],["china","people"],["china","airways"],["air","china"],["china","airlines"],["official","flag"],["flag","carrier"],["carrier","airline"],["taiwanese","government"],["government","refers"],["chinand","considers"],["legitimate","non"],["non","communist"],["communist","leadership"],["china","since"],["airline","carries"],["long","lasting"],["ongoing","cultural"],["crosstrait","relations"],["relations","political"],["political","conflict"],["communist","mainland"],["mainland","people"],["taiwan","thathe"],["thathe","republic"],["true","chinand"],["chinand","thathe"],["thathe","state"],["state","commonly"],["commonly","referred"],["named","one"],["largest","international"],["international","carriers"],["carriers","air"],["air","china"],["two","states"],["likely","lost"],["general","public"],["public","outside"],["outside","theast"],["theast","asia"],["asia","immediate"],["immediate","region"],["united","states"],["europe","buthe"],["buthe","strategic"],["strategic","use"],["using","advertising"],["international","community"],["themirates","airline"],["airline","one"],["major","themes"],["dubai","promotes"],["evolving","status"],["economic","player"],["middleast","emirates"],["emirates","advertising"],["advertising","describes"],["describes","dubai"],["perfect","hub"],["world","television"],["official","stance"],["themirates","multinational"],["multinational","cabin"],["cabin","crew"],["crew","television"],["positions","among"],["among","others"],["portrayed","via"],["via","visually"],["appealing","commercials"],["target","audience"],["ads","messages"],["global","viewers"],["viewers","emirates"],["emirates","additionally"],["additionally","adds"],["efforto","appeal"],["arsenal","football"],["football","club"],["club","including"],["including","constructing"],["prominently","displays"],["displays","themirates"],["themirates","branding"],["de","facto"],["facto","advertising"],["public","recognition"],["themirates","company"],["western","sports"],["may","three"],["three","arsenal"],["arsenal","players"],["flight","simulator"],["simulator","challenge"],["challenge","swapping"],["usual","airline"],["airline","passenger"],["passenger","seats"],["players","attempted"],["dubai","emirates"],["emirates","along"],["along","withe"],["withe","aviation"],["aviation","services"],["services","company"],["parent","company"],["company","themirates"],["themirates","group"],["wholly","owned"],["chairmand","ceof"],["ceof","themirates"],["themirates","group"],["sheikh","ahmed"],["ahmed","bin"],["bin","saeed"],["maktoum","ahmed"],["ahmed","bin"],["bin","saeed"],["younger","brother"],["sheikh","rashid"],["rashid","bin"],["bin","saeed"],["maktoum","rashid"],["rashid","bin"],["bin","saeed"],["sheikh","mohammed"],["mohammed","bin"],["bin","rashid"],["rashid","bin"],["bin","rashid"],["sheikh","ahmed"],["appointed","president"],["dubai","department"],["civil","aviation"],["governing","body"],["airline","regulation"],["airport","control"],["thus","creating"],["dubai","civil"],["civil","aviation"],["aviation","authority"],["airline","regulatory"],["regulatory","authority"],["operates","dubai"],["construction","dubai"],["dubai","world"],["world","central"],["central","maktoum"],["maktoum","international"],["primary","international"],["international","hub"],["middleast","offering"],["offering","flights"],["every","continent"],["continent","except"],["th","busiest"],["busiest","airport"],["cargo","traffic"],["ahmed","currently"],["currently","simultaneously"],["simultaneously","holds"],["chairmand","ceof"],["ceof","emirates"],["emirates","airline"],["airline","group"],["includes","themirates"],["themirates","airline"],["services","company"],["company","chairman"],["dubai","civil"],["civil","aviation"],["aviation","authority"],["government","leadership"],["directly","involved"],["private","sector"],["sector","enterprises"],["enterprises","including"],["including","themirates"],["themirates","airline"],["tourism","industry"],["public","perception"],["dubai","references"],["references","externalinks"],["externalinks","forbes"],["forbes","emirates"],["emirates","air"],["fight","world"],["world","economic"],["economic","forum"],["travel","tourism"],["tourism","competitiveness"],["competitiveness","report"],["report","category"],["category","advertising"],["advertising","category"],["category","tourism"]],"all_collocations":["world international","international tourism","tourism advertising","tourism related","related marketing","public entity","entity directed","directed towards","towards audiences","audiences abroad","potential travelers","non travelers","travelers alike","alike wholly","wholly private","travel agencies","agencies hotel","hotel chains","chains cruise","cruise agencies","agencies non","non governmental","governmental organizations","organizations ngos","ngos often","often run","advertising campaigns","existence mission","goods offered","carry intentional","intentional political","political messages","hand advertising","advertising distributed","government owned","owned private","private sector","sector enterprises","enterprises isometimes","isometimes intended","product service","experience governments","use tourism","tourism ads","communicating directly","internationally encouraged","encouraged industry","isubjecto minimal","minimal content","content regulation","global travel","travel market","market continues","yearly increasing","increasing flights","flights among","among international","international destinations","destinations advertising","advertising efforts","major actors","also increasing","increasing advertising","advertising campaigns","promote travel","destinations abroad","particularly prevalent","western countries","general public","tourism tend","consistently high","high even","recession economic","economic recession","recession many","many advertisers","foreign governments","intended goal","hotel chain","boost receipts","travelers however","travel campaigns","alternative purposesuch","improving existing","existing ones","ones towards","target audience","may use","product service","specific message","message without","without explicitly","explicitly stating","often used","implied message","thus allowing","minimize controversy","opposition tourism","tourism advertising","take many","many forms","forms utilize","wide array","advertising tactics","destination advertising","travel services","services advertising","advertising seeks","tourism related","related service","international tourism","tourism advertising","states political","political economic","social interests","interests destination","destination advertising","great degree","ads promoting","promoting foreign","foreign countries","produced andistributed","ads often","often serve","political statements","destination country","desired foreign","foreign public","public perception","many examples","government produced","produced tourism","tourism destination","destination advertising","also serve","serve political","social functions","commonly considered","focal point","recreational travel","island nation","nation advertises","asuch television","television ads","website produced","islands providing","culturally rich","even romantic","romantic experience","recent slogan","marketing campaign","desired perception","low stress","stress getaway","whatever living","leaving behind","however actually","actually traditionally","traditionally seen","seen high","high violent","violent crime","tourismarketing attempts","perception management","management managing","managing perceptions","common part","many consumer","consumer products","services focusing","mind solely","desirable aspects","common impression","either negative","negative including","including perceptions","widespread poverty","poverty lack","sophisticated hygiene","violent ethnic","indian government","tourism began","marketing campaign","campaign incredible","rich culture","culture historic","historic sites","sites tourist","tourist attractions","general sense","western audiences","audiences tourism","extremely lucrative","india developing","developing nation","marketo boost","addition india","also looking","international security","trade relationships","relationships especially","especially withe","interesto promote","positive light","americand western","western voting","voting populations","garner future","future international","international support","baron cohen","cohen comedy","comedy borat","make benefit","benefit glorious","glorious nation","kazakhstan borat","politically incorrect","travels throughouthe","throughouthe united","united states","states interviewing","meeting americans","various walks","two decade","decade old","old country","make benefit","benefit glorious","glorious nation","kazakhstan criticism","kazakhstan criticized","preserving kazakhstan","public image","kazakh president","main issue","president george","george w","w bush","bush coupled","visit according","kazakhstan embassy","embassy spokesman","spokesman roman","kazakh government","government staged","large scale","scale public","public relations","relations blitz","blitz including","including running","running four","four page","page ads","new york","york times","us news","world report","local abc","abc affiliate","launching tv","tv ads","promote tourism","featured cultural","historical features","developed infrastructure","infrastructure specifically","impression given","borat character","physically underdeveloped","underdeveloped recently","tourism board","public office","federal state","municipal governments","governments launched","tourism advertising","advertising campaign","united states","canada mexico","two north","north american","american free","free trade","trade agreement","agreement north","north american","american free","free trade","trade agreement","partners geared","geared towards","common public","public political","social perceptions","mexico including","including impressions","poverty government","law enforcement","enforcement corruption","corruption petty","organized crime","crime andrug","andrug trading","illegal immigration","new campaign","expressly demonstrated","marketing slogan","slogan mexico","television ads","ads feature","feature views","beaches natural","natural wonders","wonders cultural","cultural festivities","historical artifacts","artifacts like","like mayan","mayan pyramids","spanish churches","tourism board","board stated","stated goal","three positive","positive impressions","impressions person","person among","north american","american audience","audience theventual","theventual goal","increase tourism","tourism revenue","tourism board","managing perceptions","perceptions among","general populations","two major","major neighboring","neighboring trade","trade partners","partners official","official website","tourism board","mexico destination","destination slogans","slogans many","many countries","countries use","use slogans","international tourism","tourism advertising","advertising destination","destination slogans","slogans aim","positive identity","country academic","academic studies","identified several","several common","physical beauty","wikitable country","country slogan","slogan albania","albania go","justhe beginning","beginning argentina","argentina beats","armenia visit","visit armenia","beautiful australia","nothing like","revive bahamas","bahamas life","grand bahrain","bahrain bangladesh","bangladesh beautiful","beautiful bangladesh","bangladesh barbados","barbados brilliant","brilliant barbados","hospitality beyond","beyond borders","borders belgium","belize mother","mother nature","best kept","kept secret","place bolivia","bosniand herzegovina","herzegovina theart","theart shaped","shaped land","destination brazil","brazil brasil","unexpected treasures","treasures bulgaria","bulgaria discovery","share burundi","burundi beautiful","beautiful burundi","burundi cabo","cabo verde","stress cambodia","cambodia kingdom","wonder cameroon","one country","country canada","canada keep","keep exploring","welcome china","china like","like never","stay colombia","costa rica","rica essential","essential costa","costa rica","rica croatia","croatia full","cuba cyprus","heart czech","czech republic","republic land","stories denmark","republic dominican","dominican republic","begins el","el salvador","minute country","country estonia","estonia epic","epic estonia","estonia ethiopia","ethiopia land","origins fiji","happiness finds","finland france","france gambia","africa georgia","georgia country","country georgia","best moments","life germany","germany simply","time classic","classic grenada","grenada pure","pure grenada","grenada guatemala","guatemala heart","mayan world","south america","america undiscovered","undiscovered haiti","haiti experience","honduras everything","hungary think","think hungary","expected iceland","iceland inspired","iceland india","india incredible","incredible india","india incredible","indonesia wonderful","wonderful indonesia","indonesia iran","invited iraq","ireland jump","creation italy","italy made","italy jamaica","jamaica get","right japan","discovery jordan","jordan yes","jordan kazakhstan","wonders kenya","kenya magical","magical kenya","great silk","silk road","best enjoyed","enjoyed slowly","slowly lebanon","lebanon live","live love","love lebanon","experience princely","princely moments","moments lithuania","lithuania see","beautiful world","world tourism","tourism organization","organization unwto","unwto website","languagen access","access date","date luxembourg","luxembourg live","unexpected luxembourg","luxembourg republic","macedonia macedonia","macedonia timeless","timeless madagascar","genuine island","world apart","apart malawi","warm heart","africa malaysia","malaysia truly","truly asia","asia maldives","sunny side","life malta","malta truly","truly mediterranean","mediterranean mauritius","pleasure mexico","mexico live","live ito","ito believe","warmth monaco","monaco easy","easy going","going monaco","life mongolia","mongolia go","go nomadic","nomadic experience","experience mongolia","mongolia nomadic","nature montenegro","montenegro wild","wild beauty","beauty morocco","morocco much","started myanmar","myanmar lethe","lethe journey","enough netherlands","original cool","cool new","new zealand","zealand pure","pure nicaragua","original nigeria","nigeria good","good people","people great","nature oman","oman beauty","hotelier middleast","middleast work","access date","papua new","new guinea","guinea million","million different","different journeys","peru land","philippines poland","poland move","imagination portugal","portugal europe","west coast","coast qatar","dreams come","life romania","romania explore","garden russian","russian federation","federation reveal","russia rwanda","rwanda remarkable","remarkable rwanda","rwanda saint","heart saint","simply beautiful","beautiful saint","saint vincent","discover svg","svg samoa","samoa beautiful","beautiful samoa","samoa san","san marino","marino san","san marino","saudi arabia","arabia experience","discover serbia","another world","world sierra","sierra leone","explore singapore","singapore slovakia","slovakia travel","slovakia good","good idea","idea slovenia","feel slovenia","slovenia solomon","south africa","africa inspiring","sri lanka","lanka sri","sri lanka","lanka small","small miracle","sri lanka","asia wonder","lanka website","access date","royal experience","experience switzerland","switzerland get","get natural","natural syrian","syrian arab","arab republic","republic always","always beautiful","friendship tanzania","kilimanjaro zanzibar","thailand amazing","amazing thailand","begins withe","withe people","rewards tonga","true south","south pacific","pacific trinidad","true caribbean","caribbean tunisia","tunisia turkey","welcome ukraine","united arab","arab emirates","emirates discover","possible united","united kingdom","great britain","britain home","amazing moments","moments united","united states","uruguay natural","matters venezuela","destination vietnam","vietnam timeless","timeless charm","charm zambia","zambia let","explore zimbabwe","wonders travel","travel services","services advertising","advertising additionally","wide range","range oforeign","oforeign airlines","travel related","related services","themirates airline","airline dubai","dubai qatar","qatar airways","airways qatar","taiwan republic","chinand air","air china","china people","china airways","air china","china airlines","official flag","flag carrier","carrier airline","taiwanese government","government refers","chinand considers","legitimate non","non communist","communist leadership","china since","airline carries","long lasting","ongoing cultural","crosstrait relations","relations political","political conflict","communist mainland","mainland people","taiwan thathe","thathe republic","true chinand","chinand thathe","thathe state","state commonly","commonly referred","named one","largest international","international carriers","carriers air","air china","two states","likely lost","general public","public outside","outside theast","theast asia","asia immediate","immediate region","united states","europe buthe","buthe strategic","strategic use","using advertising","international community","themirates airline","airline one","major themes","dubai promotes","evolving status","economic player","middleast emirates","emirates advertising","advertising describes","describes dubai","perfect hub","world television","official stance","themirates multinational","multinational cabin","cabin crew","crew television","positions among","among others","portrayed via","via visually","appealing commercials","target audience","ads messages","global viewers","viewers emirates","emirates additionally","additionally adds","efforto appeal","arsenal football","football club","club including","including constructing","prominently displays","displays themirates","themirates branding","de facto","facto advertising","public recognition","themirates company","western sports","may three","three arsenal","arsenal players","flight simulator","simulator challenge","challenge swapping","usual airline","airline passenger","passenger seats","players attempted","dubai emirates","emirates along","along withe","withe aviation","aviation services","services company","parent company","company themirates","themirates group","wholly owned","chairmand ceof","ceof themirates","themirates group","sheikh ahmed","ahmed bin","bin saeed","maktoum ahmed","ahmed bin","bin saeed","younger brother","sheikh rashid","rashid bin","bin saeed","maktoum rashid","rashid bin","bin saeed","sheikh mohammed","mohammed bin","bin rashid","rashid bin","bin rashid","sheikh ahmed","appointed president","dubai department","civil aviation","governing body","airline regulation","airport control","thus creating","dubai civil","civil aviation","aviation authority","airline regulatory","regulatory authority","operates dubai","construction dubai","dubai world","world central","central maktoum","maktoum international","primary international","international hub","middleast offering","offering flights","every continent","continent except","th busiest","busiest airport","cargo traffic","ahmed currently","currently simultaneously","simultaneously holds","chairmand ceof","ceof emirates","emirates airline","airline group","includes themirates","themirates airline","services company","company chairman","dubai civil","civil aviation","aviation authority","government leadership","directly involved","private sector","sector enterprises","enterprises including","including themirates","themirates airline","tourism industry","public perception","dubai references","references externalinks","externalinks forbes","forbes emirates","emirates air","fight world","world economic","economic forum","travel tourism","tourism competitiveness","competitiveness report","report category","category advertising","advertising category","category tourism"],"new_description":"file thumb created market rest world international_tourism advertising tourism_related marketing part private public entity directed towards audiences abroad potential travelers non travelers alike wholly private travel_agencies hotel_chains cruise agencies non_governmental governmental organizations ngos often run advertising campaigns existence mission services goods offered consumer carry intentional political messages hand advertising distributed governments tourisministries government owned private_sector enterprises isometimes intended convey simply value product service experience governments use tourism ads channel communicating directly public countries tourism common internationally encouraged industry advertising isubjecto minimal content regulation global travel_market continues expand yearly increasing flights among international destinations advertising efforts part major actors market also increasing advertising campaigns promote travel_destinations abroad particularly prevalent western countries general_public expenditures tourism tend consistently high even light late recession economic recession many advertisers include foreign governments intended goal increasing revenue popularizing airline hotel_chain destination boost receipts travelers however travel campaigns additional alternative purposesuch public improving existing ones towards among target audience may use branding product service means specific message without explicitly stating message often_used implied message thus allowing minimize controversy opposition tourism advertising take many forms utilize wide array advertising tactics driven scope private public destination advertising designed make location appealing travel services advertising seeks gain audience buy tourism_related service product instances international_tourism advertising states political economic social interests destination advertising great degree ads promoting foreign_countries produced andistributed tourisministries ads often serve public vehicles political statements depictions destination country desired foreign public perception following many examples government produced tourism_destination advertising also_serve political social functions bahamas commonly considered focal point leisure recreational travel caribbeand island nation advertises asuch television ads website produced government foster image islands providing care culturally rich even romantic experience travelers recent slogan marketing campaign better bahamas reinforce contrast desired perception low stress getaway nature whatever living would leaving behind bahamas however actually traditionally seen high violent crime tourismarketing attempts focus audience attention water beaches away life perception management managing perceptions common part advertising many consumer products services focusing audience mind solely desirable aspects whatever sold away possible consequences common impression india west long either negative including perceptions widespread poverty lack sophisticated hygiene violent ethnic religious indian government ministry tourism began marketing campaign incredible emphasize country rich culture historic_sites tourist_attractions general sense western audiences tourism extremely lucrative industry surprise india developing nation capitalize marketo boost economy addition india also looking strengthen international security ties trade relationships especially withe india interesto promote positive light among americand western voting populations order garner future international support aid release baron cohen comedy borat america make benefit glorious nation kazakhstan borat depicts politically incorrect socially fictional reporter travels throughouthe_united_states interviewing meeting americans various walks life government kazakhstan highly depiction less two decade old country borat america make benefit glorious nation kazakhstan criticism kazakhstan criticized film creator issue preserving kazakhstan public image light movie importance kazakh president listed main issue traveled us september meet president george w bush coupled visit according kazakhstan embassy spokesman roman kazakh government staged large_scale public_relations blitz including running four page ads new_york times us news world report commercials cnn local abc affiliate washington well launching tv ads promote_tourism kazakhstan travel featured cultural historical features country well views developed infrastructure specifically counter type impression given borat character kazakhstan physically underdeveloped recently tourism_board mexico public office resources interests federal state municipal governments launched tourism advertising campaign united_states canada mexico two north_american free_trade agreement north_american free_trade agreement partners geared_towards common public political social perceptions mexico including impressions poverty government law_enforcement corruption petty organized crime andrug trading illegal immigration us new campaign purpose expressly demonstrated marketing slogan mexico place thought knew print television ads feature views mexico beaches natural wonders cultural festivities historical artifacts like mayan pyramids spanish churches order provide less popular tourism_board stated goal advertising e three positive impressions person among north_american audience theventual goal likely increase tourism revenue country tourism_board focusing public managing perceptions among general populations mexico two_major neighboring trade partners official_website tourism_board mexico destination slogans many_countries use slogans international_tourism advertising destination slogans aim promote positive identity country academic studies slogans identified several common physical beauty location travellers expecto class wikitable country slogan albania go way tourism country beach justhe beginning argentina beats armenia visit armenia beautiful australia nothing like revive bahamas life grand bahrain bahrain bangladesh beautiful bangladesh barbados brilliant barbados hospitality beyond_borders belgium place belize mother nature best_kept secret happiness place bolivia bosniand herzegovina theart shaped land pride destination brazil brasil kingdom unexpected treasures bulgaria discovery share burundi beautiful burundi cabo verde stress cambodia kingdom wonder cameroon africa one country canada keep exploring oasis chile welcome china like never colombia risk wanting stay colombia magical costa_rica essential costa_rica croatia full life cuba cyprus heart czech_republic land stories denmark place earth nature republic dominican republic ecuador need egypt begins el_salvador minute country estonia epic estonia ethiopia land origins fiji happiness finds finland wish finland france france gambia coast africa georgia country georgia best moments life germany simply time classic grenada pure grenada guatemala heart mayan world south_america undiscovered haiti experience honduras everything hungary think hungary expected iceland inspired iceland india incredible india incredible indonesia wonderful indonesia iran invited iraq iraq ireland jump ireland creation italy made italy jamaica get right japan discovery jordan yes jordan kazakhstan land wonders kenya magical kenya travellers oasis great silk road best enjoyed slowly lebanon live love lebanon kingdom sky experience princely moments lithuania see feel love real beautiful world_tourism organization unwto website languagen access_date luxembourg live unexpected luxembourg republic macedonia macedonia timeless madagascar genuine island world apart malawi warm heart africa malaysia truly asia maldives sunny side life malta truly mediterranean mauritius pleasure mexico live ito believe states experience warmth monaco easy going monaco discover routes life mongolia go nomadic experience mongolia nomadic nature montenegro wild beauty morocco much come started myanmar lethe journey nepal enough netherlands original cool new_zealand pure nicaragua original nigeria good people great powered nature oman beauty address hotelier middleast work access_date paradise panama papua_new_guinea million different journeys feel peru land philippines fun philippines poland move imagination portugal europe west_coast qatar dreams come life romania explore garden russian federation reveal russia rwanda remarkable rwanda saint follow heart saint simply beautiful saint vincent discover svg samoa beautiful samoa san marino san marino saudi_arabia experience discover serbia serbia another world sierra_leone freedom explore singapore singapore slovakia travel slovakia good idea slovenia feel slovenia solomon south_africa inspiring korea korea sri_lanka sri_lanka small miracle sri_lanka wonder asia wonder asia lanka website access_date colorful beyond royal experience switzerland get natural syrian arab republic always beautiful feel friendship tanzania land kilimanjaro zanzibar thailand amazing thailand begins withe people first rewards tonga true south_pacific trinidad tobago true caribbean tunisia tunisia turkey timeless welcome ukraine united_arab_emirates discover possible united_kingdom great_britain home amazing moments united_states within uruguay natural discover matters venezuela destination vietnam timeless charm zambia let explore zimbabwe world wonders travel services advertising additionally wide_range oforeign airlines travel_related services also destinations owned theirespective themirates airline dubai qatar airways qatar taiwan republic chinand air china people republic china airways air china airlines official flag carrier airline taiwan taiwanese government refers republic chinand considers legitimate non communist leadership china since communist mid name airline carries message long lasting ongoing cultural crosstrait relations political conflict communist mainland people republic china taiwan thathe republic china true chinand thathe state commonly_referred china control country similarly message named one largest international carriers air china reinforce claim legitimate two conflict two states likely lost majority general_public outside theast asia immediate region united_states europe buthe strategic use using advertising targeting international community tourism apparent sides advertising themirates airline one major themes dubai promotes evolving status geographic economic player middleast emirates advertising describes dubai perfect hub network illustrates claim airline centre world television promotes official stance stated cater comfort travelers abroad themirates multinational cabin crew television positions among_others portrayed via visually appealing commercials designed relate target audience make ads messages global viewers emirates additionally adds efforto appeal arsenal arsenal football club including constructing team new opened july prominently displays themirates branding thexterior way depictions stadium result de facto advertising reinforce public recognition themirates company one associated western sports culture may three arsenal players alex chamberlain carl took flight simulator challenge swapping usual airline passenger seats players attempted land dubai emirates along_withe aviation services company owned parent_company themirates group turn wholly owned government dubai chairmand ceof themirates group sheikh ahmed bin saeed maktoum ahmed bin saeed maktoum younger brother dubai sheikh rashid bin saeed maktoum rashid bin saeed maktoum uncle current sheikh mohammed bin rashid bin rashid maktoum sheikh ahmed appointed president dubai department civil_aviation governing body airline regulation airport control operation restructured expanded thus creating dubai civil_aviation authority airline regulatory authority company owns operates dubai airports currently construction dubai world central maktoum international iata primary international hub middleast offering flights every continent except november th busiest airport world cargo traffic passenger international ahmed currently simultaneously holds positions chairmand ceof emirates airline group includes themirates airline services company chairman company president dubai civil_aviation authority dubai government leadership directly involved private_sector enterprises including themirates airline many facets tourism_industry necessarily interest public perception dubai references_externalinks forbes emirates air fight world economic forum travel_tourism competitiveness report category advertising category_tourism"},{"title":"International volunteering","description":"international volunteering is when a volunteering volunteers their time to work forganisations or cause outside of their home country in most cases volunteers work in developing countries on international development programmes with local volunteer organisations that conduct activitiesuch as health promotion education and environmental conservation trendshow that international volunteering has become increasingly popular across many countries over the past few decadesanheier h k salamon l m volunteering in cross national perspective initial comparisons law and contemporary problems international volunteering is a broad term which is used to capture multi year skilled placements as well ashorterm roles recently termed voluntourism and a range of activities in between conducted by governments charities and travel agents formal overseas volunteering can be traced back over one hundred years to when the british red crosset up the voluntary aidetachment vad scheme in the vad volunteers as well as volunteers fromany other national red cross organisations worked in battlefields across europe and the middleast during world war i to treat soldiers and civilians regardless of the side they fought for fileleanoroosevelt jfk peace corpsjpg thumb px eleanoroosevelt and president john f kennedy discuss the peace corps up to the mid th century overseas volunteering projects were mainly undertaken by people with direct connections to a particular cause and were considered more ashorterm inature the more formal inception of international volunteering organisations can be linked torganisationsuch as australian volunteers international formerly the volunteer graduate scheme which formed international voluntary services in the united states and voluntary services overseas vso in the united kingdominternational voluntary services international voluntary services harpers ferry wv international voluntary services alumni association printheservices and that of the us peace corps established in during the kennedy administration paved the way for broaderecognition of overseas volunteering in later years during the s and s a movement of volunteerism and study abroad programs became popular among university students and graduates and the united nations launched the united nations volunteers un volunteers programme for young professionals to take part in a long term year plus overseas programme in recent years the accessibility of international volunteering has increased significantly with many smaller charities connecting volunteers with non governmental organisations in developing countries travel companies have also increasingly been offering paid for volunteering opportunities this growth coincided withe increasing number of young people takingap year s and has been termed volunteer tourism and voluntourism to denote shorterm voluntary work that is not necessarily the sole purpose of the trip however many opportunities medium and long term opportunities for skilled international volunteers remain for example the publicised role of volunteers in addressing thebola virus epidemic in west africa volunteer base international volunteering appeals to a broad crossection of society buthe majority of volunteers are in their twenties and thirties potentially due to perceptions of volunteering abroad being a more risky activity the average of vso volunteers however ishowing a broad range of participation across age groups many participants use these trips to boostheiresumes travel with friends and as a way to gain world experience and see new countries recently there has also been an increase in baby boomer volunteers one possiblexplanation for the increase is that baby boomers are transitioning into a new stage of life and their focus may shiftoward finding activities that give their life new meaning shorterm voluntourism is therefore appealing to some as it is targeted atravellers who wanto make a positive change in the world while still providing a touristic experience people generally volunteer in order to increase their international awareness to contextualize poverty and its effects as an education opportunity and to helpeople while having a morally rewarding experience many believe thathe trip will change the way they think when they return home however others are just looking to give tothers ando not believe thatheir experience will cause them to think twice aboutheir lives back home critiques and challenges there are noted critiques and challenges of international volunteering some critiques andifficulties are as follows outcomes of international volunteering measuring the outcomes of international volunteering is an ongoing challenge sometimes the costs invested in these partnerships are high the intangible nature of impact and outcomes is hard to measure and researchas been proposed in this areasherraden m s lough b mcbride a m effects of international volunteering and service individual and institutional predictors voluntas international journal of voluntary and nonprofit organizationsimilarly how to measure the success of a volunteer and the supporting organisation s performance is complicated to allow volunteers to integrate properly into the community it is essential that volunteers have some useful skills and areasonably well informed and trained before the placement costs associated with international volunteering related to the impact of international volunteering cost associated withaving an international volunteer has been cited as another area of concern especially costs for air tickets allowances insurance training and logistics local staff would not require such costs and the local organisations could puthese funds into more important issues however many volunteers pay thesexpenses personally some institutions provide scholarships for international volunteering volunteers are far cheaper than other forms of long term technical assistance because they live and work under local conditions expatriates who work in the same capacity can be paid multiple times more thany allowances volunteers receive if any the cost benefit of international volunteers is hard to quantify though studies have highlighted improvements in well being and inter cultural understanding in communities and schools as a result of international exchanges and volunteers integration in the workplace file plan te urgence cong solidaire indejpg thumb px an international volunteer provides technical assistance in southern india consideration is that volunteers may dominate the workplace undermine local management and work culturespecially in small organisations this due to volunteers often being considered more highly educated than local staff even if they do not have direct experience coming from a different culture can also lead to volunteers imposing their values on organisations indeed volunteers can have a strong influence on organisations especially those who deal with governance and management however volunteers are often trained to respecthe working culture and ethics also since they report directly to local organisations they can have their contracts terminated if they break any local regulations which further minimises the fear of domination skills experience and understanding of local context international volunteers come from outside the host community can lack an understanding of the local context and sometimes may not have the correct skill seto achieve their project goal there is often a vetting or selection process for volunteers before they arecruited to serve in developing countries however this vetting has atimes been found wantingmangold k struggling to do the righthing challenges during international volunteering third world quarterly however most international volunteers today receive significantraining before and often during their placement which can address this deficit filevs trainingroupjpg thumb px a group of european voluntary service volunteers during training motivations of volunteers people volunteer for many reasons but seldom does anyone volunteer strictly for monetary reasons as very few organisations offer a stipend for volunteeringpalmer michael on the pros and cons of volunteering abroadevelopment in practice vol no pp more compelling motives includexperience of another culture meeting new people or the advancement of one s career prospectsuch motivations are common among younger volunteers who are looking for experience or direction in their careers a common motivation is to make a difference and to achieve something positive for others rehberg w altruistic individualists motivations for international volunteering among young adults in switzerland voluntas international journal of voluntary and nonprofit organizations who are less fortunate than the volunteer many volunteers tend to concur thathere are disadvantaged people in their home countries buthe scale of disadvantage outside their home countries is felto be greater volunteering at home may elicit images of helping the less fortunate or campaigning with a local pressure group volunteering abroad has tended to be associated with international development and bridging the divide between the rich and poor worlds volunteering abroad often seems a more worthy contribution in this contexto the volunteers than work in their own country this perspective is particularly true of volunteers who are older and looking for something more value based as they near thend of their professional careers or after their children have left home neo colonialism there have been allegations from some quarters of neo colonial advances disguised as an efforto tackle poverty asome volunteer organisations are connected to national governments eg the peace corps waset up by the american government despite this challenge most volunteer organisations are non governmental ngos and are not influenced by government policiesdevereux p international volunteering for development and sustainability outdated paternalism or a radical response to globalisation development in practice the present structures of international volunteering are alsoften aimed at impacts on a local community scale which isharply in contrast withe macro political government strategies of the colonial era see also intervol peace corps institution for field research expeditions voluntary service overseas virtual volunteering category international relations category types of tourism category volunteering","main_words":["international","volunteering","volunteering","volunteers","time","work","cause","outside","home_country","cases","volunteers","work","developing_countries","local","volunteer","organisations","conduct","activitiesuch","health","promotion","education","environmental","conservation","international_volunteering","become","increasingly_popular","across","many_countries","past","h","k","l","volunteering","cross","national","perspective","initial","comparisons","law","contemporary","problems","international_volunteering","broad","term_used","capture","multi","year","skilled","placements","well","roles","recently","termed","voluntourism","range","activities","conducted","governments","charities","travel_agents","formal","overseas","volunteering","traced","back","one","hundred","years","british","red","voluntary","scheme","volunteers","well","volunteers","fromany","national","red","cross","organisations","worked","battlefields","across_europe","middleast","world_war","treat","soldiers","civilians","regardless","side","fought","peace","thumb","px","president","john_f","kennedy","discuss","peace","corps","mid_th","century","overseas","volunteering","projects","mainly","undertaken","people","direct","connections","particular","cause","considered","inature","formal","inception","international_volunteering","organisations","linked","australian","volunteers","international","formerly","volunteer","graduate","scheme","formed","international","voluntary","services","united_states","voluntary","services","overseas","vso","united","voluntary","services","international","voluntary","services","ferry","international","voluntary","services","alumni","association","us","peace","corps","established","kennedy","administration","paved","way","overseas","volunteering","later","years","movement","study","abroad","programs","university","students","graduates","united_nations","launched","united_nations","volunteers","volunteers","programme","young","professionals","take_part","long_term","year","plus","overseas","programme","recent_years","accessibility","international_volunteering","increased","significantly","many","smaller","charities","connecting","volunteers","non_governmental","organisations","developing_countries","travel","companies","also","increasingly","offering","paid","volunteering","opportunities","growth","coincided","withe","increasing_number","young_people","year","termed","volunteer","tourism","voluntourism","denote","shorterm","voluntary","work","necessarily","sole","purpose","trip","however_many","opportunities","medium","long_term","opportunities","skilled","international","volunteers","remain","example","role","volunteers","addressing","virus","epidemic","west","africa","volunteer","base","international_volunteering","appeals","broad","crossection","society","buthe","majority","volunteers","potentially","due","perceptions","volunteering","abroad","risky","activity","average","vso","volunteers","however","broad","range","participation","across","age","groups","many","participants","use","trips","travel","friends","way","gain","world","experience","see","new","countries","recently","also","increase","baby","volunteers","one","increase","baby","boomers","new","stage","life","focus","may","finding","activities","give","life","new","meaning","shorterm","voluntourism","therefore","appealing","targeted","wanto","make","positive","change","world","still","providing","touristic","experience","people","generally","volunteer","order","increase","international","awareness","poverty","effects","education","opportunity","morally","rewarding","experience","many","believe","thathe","trip","change","way","think","return","home","however","others","looking","give","ando","believe","thatheir","experience","cause","think","twice","aboutheir","lives","back","home","critiques","challenges","noted","critiques","challenges","international_volunteering","critiques","follows","outcomes","international_volunteering","measuring","outcomes","international_volunteering","ongoing","challenge","sometimes","costs","invested","partnerships","high","nature","impact","outcomes","hard","measure","researchas","proposed","b","effects","international_volunteering","service","individual","institutional","international_journal","voluntary","nonprofit","measure","success","volunteer","supporting","organisation","performance","complicated","allow","volunteers","integrate","properly","community","essential","volunteers","useful","skills","well","informed","trained","placement","costs","associated","international_volunteering","related","impact","international_volunteering","cost","associated","withaving","international","volunteer","cited","another","area","concern","especially","costs","air","tickets","insurance","training","logistics","local","staff","would","require","costs","local","organisations","could","funds","important","issues","however_many","volunteers","institutions","provide","scholarships","international_volunteering","volunteers","far","cheaper","forms","long_term","technical","assistance","live","work","local","conditions","expatriates","work","capacity","paid","multiple","times","thany","volunteers","receive","cost","benefit","international","volunteers","hard","though","studies","highlighted","improvements","well","inter","cultural","understanding","communities","schools","result","international","exchanges","volunteers","integration","workplace","file","plan","thumb","px","international","volunteer","provides","technical","assistance","southern","india","consideration","volunteers","may","dominate","workplace","undermine","local","management","work","small","organisations","due","volunteers","often","considered","highly","educated","local","staff","even","direct","experience","coming","different","culture","also","lead","volunteers","imposing","values","organisations","indeed","volunteers","strong","influence","organisations","especially","deal","governance","management","however","volunteers","often","trained","respecthe","working","culture","ethics","also","since","report","directly","local","organisations","contracts","terminated","break","local","regulations","fear","domination","skills","experience","understanding","local","context","international","volunteers","come","outside","host","community","lack","understanding","local","context","sometimes","may","correct","skill","seto","achieve","project","goal","often","selection","process","volunteers","serve","developing_countries","however","atimes","found","k","challenges","international_volunteering","third_world","quarterly","however","international","volunteers","today","receive","often","placement","address","thumb","px","group","european","voluntary","service","volunteers","training","motivations","volunteers","people","volunteer","many","reasons","anyone","volunteer","strictly","monetary","reasons","organisations","offer","michael","volunteering","practice","vol","pp","motives","another","culture","meeting","new","people","advancement","one","career","motivations","common","among","younger","volunteers","looking","experience","direction","careers","common","motivation","make","difference","achieve","something","positive","others","w","motivations","international_volunteering","among","young","adults","switzerland","international_journal","voluntary","nonprofit","organizations","less","volunteer","many","volunteers","tend","thathere","people","home_countries","buthe","scale","disadvantage","outside","home_countries","greater","volunteering","home","may","images","helping","less","campaigning","local","pressure","group","volunteering","abroad","tended","associated","international_development","divide","rich","poor","worlds","volunteering","abroad","often","seems","worthy","contribution","volunteers","work","country","perspective","particularly","true","volunteers","older","looking","something","value","based","near","thend","professional","careers","children","left","home","neo","colonialism","allegations","quarters","neo","colonial","advances","disguised","efforto","poverty","asome","volunteer","organisations","connected","national","governments","peace","corps","waset","american","government","despite","challenge","volunteer","organisations","non_governmental","ngos","influenced","government","p","international_volunteering","development","sustainability","outdated","radical","response","development","practice","present","structures","international_volunteering","alsoften","aimed","impacts","local_community","scale","contrast","withe","political","government","strategies","colonial","era","see_also","peace","corps","institution","field","research","expeditions","voluntary","service","overseas","virtual","volunteering","category","international","relations","category_types","tourism_category","volunteering"],"clean_bigrams":[["international","volunteering"],["volunteering","volunteers"],["cause","outside"],["home","country"],["cases","volunteers"],["volunteers","work"],["developing","countries"],["international","development"],["development","programmes"],["local","volunteer"],["volunteer","organisations"],["conduct","activitiesuch"],["health","promotion"],["promotion","education"],["environmental","conservation"],["international","volunteering"],["become","increasingly"],["increasingly","popular"],["popular","across"],["across","many"],["many","countries"],["h","k"],["cross","national"],["national","perspective"],["perspective","initial"],["initial","comparisons"],["comparisons","law"],["contemporary","problems"],["problems","international"],["international","volunteering"],["broad","term"],["capture","multi"],["multi","year"],["year","skilled"],["skilled","placements"],["roles","recently"],["recently","termed"],["termed","voluntourism"],["governments","charities"],["travel","agents"],["agents","formal"],["formal","overseas"],["overseas","volunteering"],["traced","back"],["one","hundred"],["hundred","years"],["british","red"],["volunteers","fromany"],["national","red"],["red","cross"],["cross","organisations"],["organisations","worked"],["battlefields","across"],["across","europe"],["world","war"],["treat","soldiers"],["civilians","regardless"],["thumb","px"],["president","john"],["john","f"],["f","kennedy"],["kennedy","discuss"],["peace","corps"],["mid","th"],["th","century"],["century","overseas"],["overseas","volunteering"],["volunteering","projects"],["mainly","undertaken"],["direct","connections"],["particular","cause"],["formal","inception"],["international","volunteering"],["volunteering","organisations"],["australian","volunteers"],["volunteers","international"],["international","formerly"],["volunteer","graduate"],["graduate","scheme"],["formed","international"],["international","voluntary"],["voluntary","services"],["united","states"],["voluntary","services"],["services","overseas"],["overseas","vso"],["voluntary","services"],["services","international"],["international","voluntary"],["voluntary","services"],["international","voluntary"],["voluntary","services"],["services","alumni"],["alumni","association"],["us","peace"],["peace","corps"],["corps","established"],["kennedy","administration"],["administration","paved"],["overseas","volunteering"],["later","years"],["study","abroad"],["abroad","programs"],["programs","became"],["became","popular"],["popular","among"],["among","university"],["university","students"],["united","nations"],["nations","launched"],["united","nations"],["nations","volunteers"],["volunteers","programme"],["young","professionals"],["take","part"],["long","term"],["term","year"],["year","plus"],["plus","overseas"],["overseas","programme"],["recent","years"],["international","volunteering"],["increased","significantly"],["many","smaller"],["smaller","charities"],["charities","connecting"],["connecting","volunteers"],["non","governmental"],["governmental","organisations"],["developing","countries"],["countries","travel"],["travel","companies"],["also","increasingly"],["offering","paid"],["volunteering","opportunities"],["growth","coincided"],["coincided","withe"],["withe","increasing"],["increasing","number"],["young","people"],["termed","volunteer"],["volunteer","tourism"],["denote","shorterm"],["shorterm","voluntary"],["voluntary","work"],["sole","purpose"],["trip","however"],["however","many"],["many","opportunities"],["opportunities","medium"],["long","term"],["term","opportunities"],["skilled","international"],["international","volunteers"],["volunteers","remain"],["virus","epidemic"],["west","africa"],["africa","volunteer"],["volunteer","base"],["base","international"],["international","volunteering"],["volunteering","appeals"],["broad","crossection"],["society","buthe"],["buthe","majority"],["potentially","due"],["volunteering","abroad"],["risky","activity"],["vso","volunteers"],["volunteers","however"],["broad","range"],["participation","across"],["across","age"],["age","groups"],["groups","many"],["many","participants"],["participants","use"],["gain","world"],["world","experience"],["see","new"],["new","countries"],["countries","recently"],["volunteers","one"],["baby","boomers"],["new","stage"],["focus","may"],["finding","activities"],["life","new"],["new","meaning"],["meaning","shorterm"],["shorterm","voluntourism"],["therefore","appealing"],["wanto","make"],["positive","change"],["still","providing"],["touristic","experience"],["experience","people"],["people","generally"],["generally","volunteer"],["international","awareness"],["education","opportunity"],["morally","rewarding"],["rewarding","experience"],["experience","many"],["many","believe"],["believe","thathe"],["thathe","trip"],["return","home"],["home","however"],["however","others"],["believe","thatheir"],["thatheir","experience"],["think","twice"],["twice","aboutheir"],["aboutheir","lives"],["lives","back"],["back","home"],["home","critiques"],["noted","critiques"],["international","volunteering"],["follows","outcomes"],["international","volunteering"],["volunteering","measuring"],["international","volunteering"],["ongoing","challenge"],["challenge","sometimes"],["costs","invested"],["international","volunteering"],["service","individual"],["international","journal"],["supporting","organisation"],["allow","volunteers"],["integrate","properly"],["useful","skills"],["well","informed"],["placement","costs"],["costs","associated"],["international","volunteering"],["volunteering","related"],["international","volunteering"],["volunteering","cost"],["cost","associated"],["associated","withaving"],["international","volunteer"],["another","area"],["concern","especially"],["especially","costs"],["air","tickets"],["insurance","training"],["logistics","local"],["local","staff"],["staff","would"],["local","organisations"],["organisations","could"],["important","issues"],["issues","however"],["however","many"],["many","volunteers"],["volunteers","pay"],["institutions","provide"],["provide","scholarships"],["international","volunteering"],["volunteering","volunteers"],["far","cheaper"],["long","term"],["term","technical"],["technical","assistance"],["local","conditions"],["conditions","expatriates"],["paid","multiple"],["multiple","times"],["volunteers","receive"],["cost","benefit"],["international","volunteers"],["though","studies"],["highlighted","improvements"],["inter","cultural"],["cultural","understanding"],["international","exchanges"],["volunteers","integration"],["workplace","file"],["file","plan"],["thumb","px"],["international","volunteer"],["volunteer","provides"],["provides","technical"],["technical","assistance"],["southern","india"],["india","consideration"],["volunteers","may"],["may","dominate"],["workplace","undermine"],["undermine","local"],["local","management"],["small","organisations"],["volunteers","often"],["highly","educated"],["local","staff"],["staff","even"],["direct","experience"],["experience","coming"],["different","culture"],["also","lead"],["volunteers","imposing"],["organisations","indeed"],["indeed","volunteers"],["strong","influence"],["organisations","especially"],["management","however"],["however","volunteers"],["volunteers","often"],["often","trained"],["respecthe","working"],["working","culture"],["ethics","also"],["also","since"],["report","directly"],["local","organisations"],["contracts","terminated"],["local","regulations"],["domination","skills"],["skills","experience"],["local","context"],["context","international"],["international","volunteers"],["volunteers","come"],["host","community"],["local","context"],["sometimes","may"],["correct","skill"],["skill","seto"],["seto","achieve"],["project","goal"],["selection","process"],["developing","countries"],["countries","however"],["international","volunteering"],["volunteering","third"],["third","world"],["world","quarterly"],["quarterly","however"],["international","volunteers"],["volunteers","today"],["today","receive"],["thumb","px"],["european","voluntary"],["voluntary","service"],["service","volunteers"],["training","motivations"],["volunteers","people"],["people","volunteer"],["volunteer","many"],["many","reasons"],["anyone","volunteer"],["volunteer","strictly"],["monetary","reasons"],["organisations","offer"],["practice","vol"],["another","culture"],["culture","meeting"],["meeting","new"],["new","people"],["common","among"],["among","younger"],["younger","volunteers"],["common","motivation"],["achieve","something"],["something","positive"],["international","volunteering"],["volunteering","among"],["among","young"],["young","adults"],["international","journal"],["nonprofit","organizations"],["volunteer","many"],["many","volunteers"],["volunteers","tend"],["home","countries"],["countries","buthe"],["buthe","scale"],["disadvantage","outside"],["home","countries"],["greater","volunteering"],["home","may"],["local","pressure"],["pressure","group"],["group","volunteering"],["volunteering","abroad"],["international","development"],["poor","worlds"],["worlds","volunteering"],["volunteering","abroad"],["abroad","often"],["often","seems"],["worthy","contribution"],["volunteers","work"],["particularly","true"],["value","based"],["near","thend"],["professional","careers"],["left","home"],["home","neo"],["neo","colonialism"],["neo","colonial"],["colonial","advances"],["advances","disguised"],["poverty","asome"],["asome","volunteer"],["volunteer","organisations"],["national","governments"],["peace","corps"],["corps","waset"],["american","government"],["government","despite"],["volunteer","organisations"],["non","governmental"],["governmental","ngos"],["p","international"],["international","volunteering"],["sustainability","outdated"],["radical","response"],["present","structures"],["international","volunteering"],["alsoften","aimed"],["local","community"],["community","scale"],["contrast","withe"],["political","government"],["government","strategies"],["colonial","era"],["era","see"],["see","also"],["peace","corps"],["corps","institution"],["field","research"],["research","expeditions"],["expeditions","voluntary"],["voluntary","service"],["service","overseas"],["overseas","virtual"],["virtual","volunteering"],["volunteering","category"],["category","international"],["international","relations"],["relations","category"],["category","types"],["tourism","category"],["category","volunteering"]],"all_collocations":["international volunteering","volunteering volunteers","cause outside","home country","cases volunteers","volunteers work","developing countries","international development","development programmes","local volunteer","volunteer organisations","conduct activitiesuch","health promotion","promotion education","environmental conservation","international volunteering","become increasingly","increasingly popular","popular across","across many","many countries","h k","cross national","national perspective","perspective initial","initial comparisons","comparisons law","contemporary problems","problems international","international volunteering","broad term","capture multi","multi year","year skilled","skilled placements","roles recently","recently termed","termed voluntourism","governments charities","travel agents","agents formal","formal overseas","overseas volunteering","traced back","one hundred","hundred years","british red","volunteers fromany","national red","red cross","cross organisations","organisations worked","battlefields across","across europe","world war","treat soldiers","civilians regardless","president john","john f","f kennedy","kennedy discuss","peace corps","mid th","th century","century overseas","overseas volunteering","volunteering projects","mainly undertaken","direct connections","particular cause","formal inception","international volunteering","volunteering organisations","australian volunteers","volunteers international","international formerly","volunteer graduate","graduate scheme","formed international","international voluntary","voluntary services","united states","voluntary services","services overseas","overseas vso","voluntary services","services international","international voluntary","voluntary services","international voluntary","voluntary services","services alumni","alumni association","us peace","peace corps","corps established","kennedy administration","administration paved","overseas volunteering","later years","study abroad","abroad programs","programs became","became popular","popular among","among university","university students","united nations","nations launched","united nations","nations volunteers","volunteers programme","young professionals","take part","long term","term year","year plus","plus overseas","overseas programme","recent years","international volunteering","increased significantly","many smaller","smaller charities","charities connecting","connecting volunteers","non governmental","governmental organisations","developing countries","countries travel","travel companies","also increasingly","offering paid","volunteering opportunities","growth coincided","coincided withe","withe increasing","increasing number","young people","termed volunteer","volunteer tourism","denote shorterm","shorterm voluntary","voluntary work","sole purpose","trip however","however many","many opportunities","opportunities medium","long term","term opportunities","skilled international","international volunteers","volunteers remain","virus epidemic","west africa","africa volunteer","volunteer base","base international","international volunteering","volunteering appeals","broad crossection","society buthe","buthe majority","potentially due","volunteering abroad","risky activity","vso volunteers","volunteers however","broad range","participation across","across age","age groups","groups many","many participants","participants use","gain world","world experience","see new","new countries","countries recently","volunteers one","baby boomers","new stage","focus may","finding activities","life new","new meaning","meaning shorterm","shorterm voluntourism","therefore appealing","wanto make","positive change","still providing","touristic experience","experience people","people generally","generally volunteer","international awareness","education opportunity","morally rewarding","rewarding experience","experience many","many believe","believe thathe","thathe trip","return home","home however","however others","believe thatheir","thatheir experience","think twice","twice aboutheir","aboutheir lives","lives back","back home","home critiques","noted critiques","international volunteering","follows outcomes","international volunteering","volunteering measuring","international volunteering","ongoing challenge","challenge sometimes","costs invested","international volunteering","service individual","international journal","supporting organisation","allow volunteers","integrate properly","useful skills","well informed","placement costs","costs associated","international volunteering","volunteering related","international volunteering","volunteering cost","cost associated","associated withaving","international volunteer","another area","concern especially","especially costs","air tickets","insurance training","logistics local","local staff","staff would","local organisations","organisations could","important issues","issues however","however many","many volunteers","volunteers pay","institutions provide","provide scholarships","international volunteering","volunteering volunteers","far cheaper","long term","term technical","technical assistance","local conditions","conditions expatriates","paid multiple","multiple times","volunteers receive","cost benefit","international volunteers","though studies","highlighted improvements","inter cultural","cultural understanding","international exchanges","volunteers integration","workplace file","file plan","international volunteer","volunteer provides","provides technical","technical assistance","southern india","india consideration","volunteers may","may dominate","workplace undermine","undermine local","local management","small organisations","volunteers often","highly educated","local staff","staff even","direct experience","experience coming","different culture","also lead","volunteers imposing","organisations indeed","indeed volunteers","strong influence","organisations especially","management however","however volunteers","volunteers often","often trained","respecthe working","working culture","ethics also","also since","report directly","local organisations","contracts terminated","local regulations","domination skills","skills experience","local context","context international","international volunteers","volunteers come","host community","local context","sometimes may","correct skill","skill seto","seto achieve","project goal","selection process","developing countries","countries however","international volunteering","volunteering third","third world","world quarterly","quarterly however","international volunteers","volunteers today","today receive","european voluntary","voluntary service","service volunteers","training motivations","volunteers people","people volunteer","volunteer many","many reasons","anyone volunteer","volunteer strictly","monetary reasons","organisations offer","practice vol","another culture","culture meeting","meeting new","new people","common among","among younger","younger volunteers","common motivation","achieve something","something positive","international volunteering","volunteering among","among young","young adults","international journal","nonprofit organizations","volunteer many","many volunteers","volunteers tend","home countries","countries buthe","buthe scale","disadvantage outside","home countries","greater volunteering","home may","local pressure","pressure group","group volunteering","volunteering abroad","international development","poor worlds","worlds volunteering","volunteering abroad","abroad often","often seems","worthy contribution","volunteers work","particularly true","value based","near thend","professional careers","left home","home neo","neo colonialism","neo colonial","colonial advances","advances disguised","poverty asome","asome volunteer","volunteer organisations","national governments","peace corps","corps waset","american government","government despite","volunteer organisations","non governmental","governmental ngos","p international","international volunteering","sustainability outdated","radical response","present structures","international volunteering","alsoften aimed","local community","community scale","contrast withe","political government","government strategies","colonial era","era see","see also","peace corps","corps institution","field research","research expeditions","expeditions voluntary","voluntary service","service overseas","overseas virtual","virtual volunteering","volunteering category","category international","international relations","relations category","category types","tourism category","category volunteering"],"new_description":"international volunteering volunteering volunteers time work cause outside home_country cases volunteers work developing_countries international_development_programmes local volunteer organisations conduct activitiesuch health promotion education environmental conservation international_volunteering become increasingly_popular across many_countries past h k l volunteering cross national perspective initial comparisons law contemporary problems international_volunteering broad term_used capture multi year skilled placements well roles recently termed voluntourism range activities conducted governments charities travel_agents formal overseas volunteering traced back one hundred years british red voluntary scheme volunteers well volunteers fromany national red cross organisations worked battlefields across_europe middleast world_war treat soldiers civilians regardless side fought peace thumb px president john_f kennedy discuss peace corps mid_th century overseas volunteering projects mainly undertaken people direct connections particular cause considered inature formal inception international_volunteering organisations linked australian volunteers international formerly volunteer graduate scheme formed international voluntary services united_states voluntary services overseas vso united voluntary services international voluntary services ferry international voluntary services alumni association us peace corps established kennedy administration paved way overseas volunteering later years movement study abroad programs became_popular_among university students graduates united_nations launched united_nations volunteers volunteers programme young professionals take_part long_term year plus overseas programme recent_years accessibility international_volunteering increased significantly many smaller charities connecting volunteers non_governmental organisations developing_countries travel companies also increasingly offering paid volunteering opportunities growth coincided withe increasing_number young_people year termed volunteer tourism voluntourism denote shorterm voluntary work necessarily sole purpose trip however_many opportunities medium long_term opportunities skilled international volunteers remain example role volunteers addressing virus epidemic west africa volunteer base international_volunteering appeals broad crossection society buthe majority volunteers potentially due perceptions volunteering abroad risky activity average vso volunteers however broad range participation across age groups many participants use trips travel friends way gain world experience see new countries recently also increase baby volunteers one increase baby boomers new stage life focus may finding activities give life new meaning shorterm voluntourism therefore appealing targeted wanto make positive change world still providing touristic experience people generally volunteer order increase international awareness poverty effects education opportunity morally rewarding experience many believe thathe trip change way think return home however others looking give ando believe thatheir experience cause think twice aboutheir lives back home critiques challenges noted critiques challenges international_volunteering critiques follows outcomes international_volunteering measuring outcomes international_volunteering ongoing challenge sometimes costs invested partnerships high nature impact outcomes hard measure researchas proposed b effects international_volunteering service individual institutional international_journal voluntary nonprofit measure success volunteer supporting organisation performance complicated allow volunteers integrate properly community essential volunteers useful skills well informed trained placement costs associated international_volunteering related impact international_volunteering cost associated withaving international volunteer cited another area concern especially costs air tickets insurance training logistics local staff would require costs local organisations could funds important issues however_many volunteers pay_personally institutions provide scholarships international_volunteering volunteers far cheaper forms long_term technical assistance live work local conditions expatriates work capacity paid multiple times thany volunteers receive cost benefit international volunteers hard though studies highlighted improvements well inter cultural understanding communities schools result international exchanges volunteers integration workplace file plan thumb px international volunteer provides technical assistance southern india consideration volunteers may dominate workplace undermine local management work small organisations due volunteers often considered highly educated local staff even direct experience coming different culture also lead volunteers imposing values organisations indeed volunteers strong influence organisations especially deal governance management however volunteers often trained respecthe working culture ethics also since report directly local organisations contracts terminated break local regulations fear domination skills experience understanding local context international volunteers come outside host community lack understanding local context sometimes may correct skill seto achieve project goal often selection process volunteers serve developing_countries however atimes found k challenges international_volunteering third_world quarterly however international volunteers today receive often placement address thumb px group european voluntary service volunteers training motivations volunteers people volunteer many reasons anyone volunteer strictly monetary reasons organisations offer michael volunteering practice vol pp motives another culture meeting new people advancement one career motivations common among younger volunteers looking experience direction careers common motivation make difference achieve something positive others w motivations international_volunteering among young adults switzerland international_journal voluntary nonprofit organizations less volunteer many volunteers tend thathere people home_countries buthe scale disadvantage outside home_countries greater volunteering home may images helping less campaigning local pressure group volunteering abroad tended associated international_development divide rich poor worlds volunteering abroad often seems worthy contribution volunteers work country perspective particularly true volunteers older looking something value based near thend professional careers children left home neo colonialism allegations quarters neo colonial advances disguised efforto poverty asome volunteer organisations connected national governments peace corps waset american government despite challenge volunteer organisations non_governmental ngos influenced government p international_volunteering development sustainability outdated radical response development practice present structures international_volunteering alsoften aimed impacts local_community scale contrast withe political government strategies colonial era see_also peace corps institution field research expeditions voluntary service overseas virtual volunteering category international relations category_types tourism_category volunteering"},{"title":"Interplanetary Transport System","description":"file interplanetary transport system jpg thumb px rendering of an its launch vehicle departing launch pad a with an its tanker standing by at left for a rapid launch after the its boostereturns to the launch site file its interplanetary spaceship landed on europajpg thumb px artist s impression of the interplanetary spaceship on the jupiter planet jovian moon europa moon europa the interplanetary transport system its formerly known as the mars colonial transporter mct ispacex s privatequity privately funded new product development projecto design and build a system of spaceflightechnology and remote colonization of mars human settlements on mars including spacex reusable launch system development program reusable launch vehicle s and spacecraft earth infrastructure forapid rocket launch and reusable launch system relaunch low earth orbit zero gravity propellant depot propellantransfer technology and extraterrestrial technology to enable human mission to mars human colonization of mars the technology is also envisioned to eventually support spacexploration exploration missions tother locations in the solar system including the moons of jupiter and saturn development work began in earnest before when spacex began design work for the large raptorocket engine raptorocket engine to be used for bothe its launch vehicle and spacecraft its tanker and interplanetary spaceship new rocket engine designs are typically considered one of the longest of the development subprocesses for new launch vehicles and spacecraft by june the company publicly announced conceptual plans that included the first mars bound cargo flight of its launching no earlier than followed by the first its mars flight with passengers one synodic period later in following two preparatory research launches of mars probes in and on dragon falcon heavy equipment spacex ceo elon musk unveiledetails of the system architecture athe th international astronautical congress on september as publicly discussed spacex is concentrating its resources on the space transportation part of the project including a propellant planthat could be deployed on mars to make methalox rocket propellant from local resources however spacex ceo elon musk is championing a much larger set of long term interplanetary settlement objectives ones that go far beyond what spacex will build and that will ultimately involve many moreconomic actor s whether individual company or governmento facilitate the settlemento build out over many decades as early as elon musk stated a personal goal of eventually enabling exploration of mars human exploration and colonization of marsettlement of mars althoughis personal public interest in mars goes back at leasto bits of additional information abouthe mission architecture wereleased including a statementhat initial colonists would arrive at mars no earlier than the middle of the s company plans as of mid continue to call for the arrival of the first humans on mars no earlier than musk stated in a interview that he hoped to send humans to mars surface within years and in late he stated that henvisioned a mars colony of tens of thousands withe first colonists arriving no earlier than the middle of the s in october musk articulated a high level plan to build a second reusable rocket system with capabilitiesubstantially beyond the falcon heavy launch vehicles on which spacex had by then spent several billion us dollars this new vehicle was to be an evolution of spacex s falcon booster much bigger than falcon but musk indicated that spacex would not be speaking publicly about it until in june musk stated that he intended to hold off any potential initial public offering ipof spacex shares on the stock market until after the mars colonial transporter is flying regularly in august media sourcespeculated thathe initial flightest of the raptor driven super heavy launch vehicle could occur as early as in order to fully testhengines under orbital spaceflight conditions however any colonization effort was reported to continue to be deep into the future in january musk said that he hoped to release details in late of the completely new architecture for the system that would enable the colonization of mars buthose plans changed and by december the plan to publicly release additional specifics had moved to in january musk indicated that he hoped to describe the architecture for the mars missions withe next generation spacex rocket and spacecraft later in athe th international astronautical congress conference in september accessed january musk stated in june thathe first unmanned mct mars flight was planned for departure in to be followed by the first manned mct mars flight departing in by mid september musk noted thathe mct name would not continue as the system would be able to go well beyond mars and that a new name would be needed interplanetary transport system its on september athe th annual meeting of the international astronautical congress musk unveiled substantial details of the design for the transport vehicles including size construction material number and type of engines thrust cargo and passenger payload capabilities on orbit propellantankerefills representative transitimes etc as well as a few details of portions of the marside and earth side infrastructure that spacex intends to build to supporthe flight vehicles in addition musk championed a larger systemic vision a vision for a spontaneous order bottom up emergencemergent order of other interested parties whether companies individuals or governments to utilize the new and radically lower costransport infrastructure to build up a colonization of marsustainable human civilization mars potentially onumerous other locations around the solar system by innovation innovating and supply economics meeting the demand that such a growing venture would occasion file interplanetary transport system jpg thumb px interplanetary spaceship departing earth passing the moon the interplanetary transport system consists of a combination of several elements that are key according to musk to making long duration beyond earth orbit beo spaceflights possible by reducing the cost per ton delivered to mars this how spacex will explore mars and beyond seeker september a new fully reusable launch vehicle reusable super heavy lift launch vehicle that consists of a reusable booster stage interplanetary booster and a reusable integrated second stage with spacecrafthat comes in two versions the interplanetary spaceship a large long duration interplanetary spaceflight interplanetary spacecraft capable of carrying passengers or cargo to interplanetary space interplanetary destinations and an earth orbit cargonly propellantanker the its tanker the combination of a second stage of a launch vehicle with a long duration spacecraft is unusual for any space mission architecture and has not been seen in previouspaceflightechnology propellant depot refilling of propellants in orbit specifically to enable the long journey spacecrafto expend most all of its propellant loaduring the launch to low earth orbit while it serves as the second stage of the launch vehicle and then afterefilling on orbit provide the significant amount of delta v energy necessary to puthe spacecraft onto an interplanetary trajectory rocket propellant resourcextraction mars propellant production the surface of mars to enable the return trip back to earth and support reuse of the spacecraft enabling significantly lower costo transport cargo and passengers to distant destinations once again the large propellantanks in the integrated space vehicle are filled remotely selection of the right propellant methane ch oxygen o also known as deep cryo methalox waselected as it was considered better than other common space vehicle propellants likerolox or hydrolox principally due to ease of production mars and the lower cost of the propellants on earth when evaluated from an overall system optimization perspective methalox was considered equivalentone of the other primary options in terms of vehicle reusability on orbit propellantransfer and appropriateness for super heavy vehicles file spacex interplanetary transport system size comparisonsvg thumb scale comparison ofrom lefto righthe full stack its launch vehicle nasa s upcoming space launch system the big ben clocktower spacex falcon heavy and a human super heavy lift launch vehicle the super heavy lift launch vehicle for the interplanetary transport system will place up to reusable launch vehicle reusable mode or expendable launch vehiclexpendable mode or carry of propellant on an its tanker to low earth orbithe its launch vehicle will be powered by the raptorocket engine raptor bipropellant liquid rocket engines on both stages using exclusively subcooling densified liquid methane fuel and liquid oxygen oxidizer on both stages the tanks will be autogenously pressurized eliminating the need for the problematic helium gas pressurization the its launch vehicle is reusable making use of the spacex reusable rocket spacex reusable technology that was developeduring for falcon and falcon heavy on all earth away launches the long duration spacecraftanker or spaceship will also play a role briefly as the second stage of the launch vehicle to provide acceleration torbital speed orbital velocity a design approach not used in other launch vehicles interplanetary spaceship file spacex interplanetaryspaceship back quarter viewith solar extended cropped retouched jpg thumb upright a rendering of the interplanetary spaceship from engineering drawingshowing thengine configuration and withe solar panels on spacecraft solar panels extended the interplanetary spaceship is an interplanetary spaceflight interplanetary spacecraft ship with a carbon fiber primary structure propelled by nine raptor engines operating on densified methane oxygen propellants it is long has a maximum hull diameter of m and is diameter at its widest point and is capable of transporting up tof cargo and passengers per trip to mars with on orbit propellant refill before the interplanetary part of the journey early flights arexpected to carry mostly equipment and few people as of september there is no name for the class of spacecraft beyond the descriptor interplanetary spaceship musk did indicate however thathe first of those ships to make the mars journey might be named heart of gold in reference to the ship carrying the technology in the hitchhiker s guide to the galaxy heart of gold infinite improbability drive from the novel the hitchhiker s guide to the galaxy although it was noted thathe number of its booster firstagengineseemed to be inspired by answer the answer musk did not allude to such a connection the transport capacity of the spaceship from low earth orbito a mars trajectory with a trans mars injection trans mars trajectory insertion delta v energy gain of and full propellantanks is to mars orbit or landed on the surface with retropropulsive landing estimated earth mars transitimes vary between days depending on particular planetary alignments during the nine discrete synodic period mission opportunities assuming km s delta v added atrans mars injection file interplanetary transport system jpg lefthumb px an artist s conception of an interplanetary spaceship arrival at mars the spaceship is designed to mars atmospheric entry enter the martian atmosphere at entry velocities in excess of km s and allow aerodynamic force s to provide the major part of the deceleration before the three centeraptor engines perform the finalanding burn theat shield material protecting the ship on descent is pica x picand is reusablentry g force s at mars arexpected to be g s during the descenthe spaceship design g load would be g s nominal but able to withstand peak loads to times higher without breaking up energy for the journey is produced by two large solar panels on spacecraft solar panel arrays generating approximately kw of electric power while athe distance of earth from the sun and less as the journey progresses and the sun is farther away as the ship nears mars the spaceship may use a large internal water layer to help shield occupants from space radiation and may have a cabin oxygen contenthat is up to two times that which is found in atmosphere of earth s atmosphere the initial tests of the spaceship are not expected prior to withe its booster to follow only later according to musk the spaceship would effectively become the first human habitat on mars its tanker file its tanker cropped jpg thumb rendering of its tanker top transferring propellanto an interplanetary spaceship bottom in earth orbit a key feature of the system is a propellantanker propellant cargonly tanker the its tanker just as the spaceship the tanker would serve as the upper stage of the its launch vehicle during the launch from earthe vehicle is designed exclusively for the launch and shorterm holding of propellants to be transported to low earth orbit fore filling propellants in the interplanetary ships once on orbit a proximity operations rendezvous operation is effected with one of the interplanetary spaceships plumbing connections are made and a maximum of liquid methane and liquid oxygen propellants are transferred in one load to the spaceship to fully fuel an interplanetary spaceship for a long duration interplanetary flight it is expected that up to five tankers would be required to launch from earth carrying and transferring a total of nearly of propellanto fully load the spaceship for the journey the its tanker is the same physical dimensions as the interplanetary spacecraft long maximum hull diameter of m and is at its widest point it will also be powered by six vacuum optimized raptor engines each producing thrust and will have three lower expansion ratio raptor engines for flight maneuvering and earth return landings following completion of the on orbit propellant offloading the reusable tanker will atmospheric reentry reenter the atmosphere of earth s atmosphere land be prepared for another tanker flighthe tanker could also be used for cargo missions propellant plant on mars a key part of the systemusk is conceptualizing to radically decrease the cost of spaceflighto interplanetary destinations is the placement and operation of a physical plant on mars to handle production and storage of the propellant components necessary to launch and fly the interplanetary spaceships back to earth or perhaps to increase the mass that can be transported onward to destinations in the outer solar system coupled withearth orbitank filling prior to the journey to mars and the fully reusable launch vehicles and spacecraft all threelements are needed to reduce the transport cost by the multiple orders of magnitude that musk sees as necessary to support sustainable colonization of mars the first interplanetary spaceship to mars will carry a small propellant plant as a part of its cargo load the plant will bexpanded over multiple synods as morequipment arrives is installed and placed into mostly autonomous production the propellant plant will take advantage of the large supplies of carbon dioxide and water on mars wateresources on mars mining the water h o from subsurface ice and collecting co from the atmosphere of mars atmosphere a chemical plant will process the raw materials by means of electrolysis of water electrolysis and the sabatiereaction sabatier process to produce molecular oxygen o and methane ch and then vacuum distillation liquefy ito facilitate long term storage and ultimate use launch facility initialaunch site the initialaunch site for the launch and rapid reuse of the its launch vehicle will be the launch pad a spacex leased facility at historic launch pad along the florida space coast while originally thoughto be too small to handle the its launch vehicle the final optimized size of the raptor engine is fairly close to the physical size of the merlin d although each engine will have approximately three times the thrust falcon heavy willaunch from a with merlin engines its lv willaunch with raptor engines multiple launch sites musk indicated on september thathe its launch vehicle would launch fromore than one site a prime candidate for the second launch site isomewhere along the south texas coast its launch facility history no launch site had yet been selected for the super heavy lift rocket and thenamed mars colonial transporter spacex indicated athe time thatheir leased facility in floridat launch pad a would not be largenough to accommodate the vehicle as it was understood conceptually in and thatherefore a new site would need to be built in order to launch the rocket in september elon musk indicated thathe first person to go to another planet could possibly launch from the spacex south texas launch site but did not indicate athe time what launch vehicle might be used to carry humans torbit mission concepts mars early missions musk has indicated thathearliest spacex sponsored missions would have a smaller crew and use much of the pressurized space for cargo the first cargo mission of the interplanetary spaceship would be named heart of gold and would be loaded with equipmento build the spacex mars propellant plant propellant planthe first crewed mars mission would bexpected to have approximately people withe primary goal to build out and troubleshoothe propellant plant and mars base alpha power system as well as a rudimentary base in thevent of an emergency the spaceship would be able to return to earth without having to wait a full months for the next synodic period before any people are transported to marsome number of cargo missions would be undertaken first in order to transporthe requisite mars colonization equipment mars habitats and supplies equipmenthat would accompany thearly groups would include machines to produce fertilizer methane and oxygen fromars atmospheric nitrogen and carbon dioxide and the planet subsurface water ice as well as construction materials to build transparent domes for crop growthearly concepts for green livingreen living space habitats include glass panes with a carbon fiber frame geodesic dome s and a lot of automated mining miner tunneling autonomous robot droids for building out a huge amount of pressurized space for industrial operations buthese are merely conceptual and not a detailedesign plan marsettlement concept spacex the company is concentrating its resources on the space transportation part of the overall its project as well as an autonomous robot autonomouspacex mars propellant plant propellant planthat could be deployed on mars to produce methane and oxygen rocket propellants from local resources if built and if planned objectives are achieved then the transport cost of getting material and people to space and across interplanetary space will be reduced by several orders of magnitude spacex ceo elon musk is championing a much larger set of long term interplanetary settlement objectives ones thatake advantage of these lower costs to go far beyond whathe company spacex will build and that will ultimately involve many moreconomic actor s whether individual company or governmento emergence build outhe settlement over many decades in addition to explicit spacex plans and concepts for a transportation system and early missions musk has personally been a very public exponent of a large systemic vision for building a sustainable human presence on mars over the very long term a vision well beyond what his company or he personally can effecthe growth of such a system over decades cannot be planned in every detail but is rather a complex adaptive system that will come about only as others make their own independent choices as to how they might or might not connect withe broader system of an incipient and later growing marsettlement musk sees the new and radically lower costransport infrastructure facilitating the build up of a spontaneous order bottom up emergent phenomena economic order of other interested parties whether companies individuals or governments who will innovations innovate and supply economicsupply the demand economics demand that such a growing venture would occasion while the initial spacex marsettlement would start very small with an initial group of about a dozen people with time musk hopes that such an outpost would grow into something much larger and become self sustaining at least million people according to musk even at a million people you re assuming an incredible amount of productivity person because you would need to recreate thentire industrial base on mars you would need to mine and refine all of these different materials in a much more difficult environmenthan earthere would be no trees growing there would be noxygen or nitrogen that are justhere noilexcluding organic growth if you could take people at a time you would need trips to geto a million people but you would also need a lot of cargo to supporthose people in fact your cargo to person ratio is going to be quite high it would probably be cargo trips for every human trip so more like trips and we re talking trips of a giant spaceship musk expects thathe journeys would require to days of transitime with an average trip time to mars of approximately days for the nine synodic period s occurring between and in musk stated an aspirational price goal for such a trip might be on the order of person but in he mentioned that long termarginal costs might become as low as the complex project has financial commitments only from spacex and musk s personal capital the washington post pointed outhathe us government does not have the budget for mars colonization thus the private sector would have to see mars as an attractive business environment musk is willing to pour his wealth into the project but it will not benough to build the colony henvisions outer planet concepts file its interplanetary spaceship in orbit near the rings of saturnjpg thumb px artist s impression of the interplanetary spaceship over saturn the overview presentation the interplanetary transport system given by musk on september included concept slides outlining missions to the saturn planet saturnian moon enceladus the jupiter planet jovian moon europa moon europa kuiper belt objects a fuel depot on pluto and even the uses to take payloads to the oort cloud musk said the system can open up thentire solar system to people ifuel depots based on this design were put on asteroids or other areas around the solar system people could go anywhere they wanted just by planet or moon hopping the goal of spacex is to build the transport system once thatransport system is builthen there is a tremendous opportunity for anyone that wants to go to mars to create something new or build a new planet outer planetrips would likely require propellant refills at mars and perhaps other locations in the outer solar system funding thextensive new product development and manufacture of much of the space transportechnology has been to date through and is being private spaceflight privately funded by spacex thentire project is even possible only as a result of spacex multi faceted approach focusing on the reduction of launch cost spacex is expending a few tens of millions of dollars annually on development of the mars transport concept which amounts to well under percent of the company s total expenses but expects that figure to rise to some per year by around the cost of all work leading up to the first mars launch is expected to be on the order of and spacexpects to expend that much before it generates any transport revenue musk indicated in september thathe full build out of the mars colonialization plans willikely be funded by public private partnership both private and public funds the speed of commercially available mars transport for both cargo and humans will be driven in large part by demand economics market demand as well as constrained by the supply economics technology development andevelopment funding elon musk hasaid thathere is no expectation of receiving nasa contracts for any of the itsystem work he also indicated that such contracts if received would be good fabrication cost projections in september musk presented the following high level forward looking fabrication cost projections given a set of assumptions those assumptions include cost of propellant us tonne launch site costs us launch discount rate cargo delivered tonne per single interplanetary spaceship and full reuse all assumptions are about a single missionce thousands of launches and hundreds oflights to mars are a realistic prospecthey do not apply to costs for the much smaller number of early missions envisioned for the s given these assumptions musk presented the following long termission cost projections class wikitable booster tanker spaceship rowspan fabrication cost align left m align left m rowspan lifetime launches align left align left rowspan launches per mars trip align left align left rowspan average maintenance cost per use align left m align left m rowspan total cost per one mars trip amortization propellant maintenance align left m align left m calculated resultotal average cost based on the life cycle of the system included costs of the initial fabrication propellant maintenance and company s amortization of one interplanetary spaceship transported to mars or less than cost per tonne of mass transported to marspacex tentative calendar for mars missionspacex plans to fly its earliest missions to mars using its falcon heavy launch vehicle prior to the completion and first launch of any its vehicle later missions utilizing its technology the its launch vehicle and interplanetary spaceship with on orbit propellant refill via its tanker would begino earlier than the company is planning for launches of space probe research spacecrafto mars using falcon heavy launch vehicles and specialized modifiedragon v dragon spacecraft due to planetary alignment in the inner solar system the launches are typically limited to a window of approximately every months originally in june the first launch was planned for spring with announced intento launch again every mars launch window thereafter in february however the first launch to mars was pushed back to thearly missions will collect essential data to refine the design of the its and better select landing locations based on the availability of extraterrestrial resourcesuch as water and building materials the original tentative mission manifest now outdated included two falcon heavy missions to mars prior to the first possible flight of an its to mars initial spacex mars mission the redragon spacecraft redragon a modifiedragon spacecraft launched aboard a falcon heavy launch vehicle second preparatory mission at leastwo redragons to be injected into mars transfer orbit via falcon heavy launches third uncrewed preparatory mission first use of thentire itsystem to put a spacecraft on an interplanetary trajectory and carry heavy equipmento mars notably a isru local power plant first crewed its flighto mars according toptimistic schedule with about a dozen people the first launch is planned for and it is unclear whether the overall schedule is kept intact but pushed back by months however in may nasand sources in the industry claimed spacex was considering sending two dragon spacecrafto mars during the window one very early and one very late although spacex did not concurrently confirm that see also colonization of mars effect of spaceflight on the human body healthreat from cosmic rays human outpost human spaceflight in situ resource utilization life on mars list of manned mars mission plans in the th century human mission to mars direct mars to stay space medicine terraforming of mars externalinks between a rocket and a hard placelon musk to give the speech of his life arstechnica september colonization of marspacex s program aerospaceengineering october videospacex interplanetary transport system video at youtube by spacex september making humans a multiplanetary species category manned missions to mars category colonization of mars category spacex category proposed reusable space launch systems category space tourism","main_words":["file","interplanetary_transport_system","jpg","thumb","px","rendering","launch_vehicle","departing","launch_pad","tanker","standing","left","rapid","launch","launch_site","file","interplanetary_spaceship","landed","thumb","px","artist","impression","interplanetary_spaceship","jupiter","planet","moon","europa","moon","europa","interplanetary_transport_system","formerly_known","mars","colonial","transporter","mct","privatequity","privately_funded","new_product","development","projecto","design","build","system","remote","colonization","mars","human","settlements","mars","including","spacex_reusable","launch_system","development_program","reusable_launch_vehicle","spacecraft","earth","infrastructure","rocket","launch","reusable_launch","system","relaunch","low_earth_orbit","zero","gravity","propellant","depot","propellantransfer","technology","extraterrestrial","technology","enable","human","mission","mars","human","colonization","mars","technology","also","envisioned","eventually","support","spacexploration","exploration","missions","tother","locations","solar_system","including","jupiter","development","work","began","spacex","began","design","work","large","raptorocket","engine","raptorocket","engine","used","bothe","launch_vehicle","spacecraft","tanker","interplanetary_spaceship","new","rocket_engine","designs","typically","considered","one","longest","development","new","launch_vehicles","spacecraft","june","company","publicly_announced","conceptual","plans","included","first","mars","bound","cargo","flight","launching","earlier","followed","first","mars","flight","passengers","one","synodic","period","later","following","two","preparatory","research","launches","mars","dragon","falcon_heavy","equipment","spacex","ceo","elon_musk","system","architecture","athe_th","international","astronautical","congress","september","publicly","discussed","spacex","concentrating","resources","space_transportation","part","project","including","propellant","could","deployed","mars","make","methalox","rocket","propellant","local","resources","however","spacex","ceo","elon_musk","much_larger","set","long_term","interplanetary","settlement","objectives","ones","go","far","beyond","spacex","build","ultimately","involve","many","actor","whether","individual","company","governmento","facilitate","build","many","decades","early","elon_musk","stated","personal","goal","eventually","enabling","exploration","mars","human","exploration","colonization","marsettlement","mars","personal","public_interest","mars","goes","back","bits","additional","information_abouthe","mission","architecture","wereleased","including","initial","colonists","would","arrive","mars","earlier","middle","company","plans","mid","continue","call","arrival","first","humans","mars","earlier","musk","stated","interview","hoped","send","humans","mars","surface","within","years","late","stated","mars","colony","tens","thousands","withe_first","colonists","arriving","earlier","middle","october","musk","articulated","high_level","plan","build","second","reusable","rocket","system","beyond","falcon_heavy","launch_vehicles","spacex","spent","several","billion","us","dollars","new","vehicle","evolution","spacex","falcon","booster","much","bigger","falcon","musk","indicated","spacex","would","speaking","publicly","june","musk","stated","intended","hold","potential","initial","public","offering","spacex","shares","stock","market","mars","colonial","transporter","flying","regularly","august","media","thathe","initial","flightest","raptor","driven","super_heavy","launch_vehicle","could","occur","early","order","fully","orbital_spaceflight","conditions","however","colonization","effort","reported","continue","deep","future","january","musk","said","hoped","release","details","late","completely","new","architecture","system","would","enable","colonization","mars","plans","changed","december","plan","publicly","release","additional","moved","january","musk","indicated","hoped","describe","architecture","mars","missions","withe","next_generation","spacex","rocket","spacecraft","later","athe_th","international","astronautical","congress","conference","september","accessed","january","musk","stated","june","thathe_first","unmanned","mct","mars","flight","planned","departure","followed","first","manned","mct","mars","flight","departing","mid","september","musk","noted_thathe","mct","name","would","continue","system","would","able","go","well","beyond","mars","new","name","would","needed","interplanetary_transport_system","september","meeting","international","astronautical","congress","musk","unveiled","substantial","details","design","transport","vehicles","including","size","construction","material","number","type","engines","thrust","cargo","passenger","payload","capabilities","orbit","representative","etc","well","details","portions","earth","side","infrastructure","spacex","intends","build","supporthe","flight","vehicles","addition","musk","larger","vision","vision","spontaneous","order","bottom","order","interested","parties","whether","companies","individuals","governments","utilize","new","radically","lower","infrastructure","build","colonization","human","civilization","mars","potentially","locations","around","solar_system","innovation","supply","economics","meeting","demand","growing","venture","would","occasion","file","interplanetary_transport_system","jpg","thumb","px","interplanetary_spaceship","departing","earth","passing","moon","interplanetary_transport_system","consists","combination","several","elements","key","according","musk","making","long","duration","beyond","earth_orbit","possible","reducing","cost","per","ton","delivered","mars","spacex","explore","mars","beyond","september","new","fully","reusable_launch_vehicle","reusable","super_heavy_lift","launch_vehicle","consists","reusable","booster","stage","interplanetary","booster","reusable","integrated","second_stage","comes","two","versions","interplanetary_spaceship","large","long","duration","interplanetary","spaceflight","interplanetary","spacecraft","capable","carrying","passengers","cargo","interplanetary","space","interplanetary","destinations","earth_orbit","tanker","combination","second_stage","launch_vehicle","long","duration","spacecraft","unusual","space","mission","architecture","seen","propellant","depot","propellants","orbit","specifically","enable","long","journey","spacecrafto","propellant","launch","low_earth_orbit","serves","second_stage","launch_vehicle","orbit","provide","significant","amount","delta","v","energy","necessary","puthe","spacecraft","onto","interplanetary","trajectory","rocket","propellant","mars","propellant","production","surface","mars","enable","return","trip","back","earth","support","reuse","spacecraft","enabling","significantly","transport","cargo","passengers","distant","destinations","large","integrated","space_vehicle","filled","remotely","selection","right","propellant","methane","oxygen","also_known","deep","methalox","waselected","considered","better","common","space_vehicle","propellants","principally","due","ease","production","mars","lower_cost","propellants","earth","evaluated","overall","system","optimization","perspective","methalox","considered","primary","options","terms","vehicle","orbit","propellantransfer","super_heavy","vehicles","file","spacex","interplanetary_transport_system","size","thumb","scale","comparison","ofrom","lefto","righthe","full","stack","launch_vehicle","nasa","upcoming","space_launch_system","big","ben","spacex","falcon_heavy","human","super_heavy_lift","launch_vehicle","super_heavy_lift","launch_vehicle","interplanetary_transport_system","place","reusable_launch_vehicle","reusable","mode","expendable","launch","mode","carry","propellant","tanker","launch_vehicle","powered","raptorocket","engine","raptor","liquid","rocket_engines","stages","using","exclusively","liquid","methane","fuel","liquid_oxygen","oxidizer","stages","tanks","pressurized","eliminating","need","problematic","helium","gas","launch_vehicle","reusable","making","use","spacex_reusable","rocket","spacex_reusable","technology","falcon","falcon_heavy","earth","away","launches","long","duration","spaceship","also","play","role","briefly","second_stage","launch_vehicle","provide","acceleration","speed","orbital","velocity","design","approach","used","launch_vehicles","interplanetary_spaceship","file","spacex","back","quarter","solar","extended","cropped","jpg","thumb","upright","rendering","interplanetary_spaceship","engineering","thengine","configuration","withe","solar","panels","spacecraft","solar","panels","extended","interplanetary_spaceship","interplanetary","spaceflight","interplanetary","spacecraft","ship","carbon","fiber","primary","structure","propelled","nine","raptor","engines","operating","methane","oxygen","propellants","long","maximum","hull","diameter","diameter","point","capable","transporting","tof","cargo","passengers","per","trip","mars","orbit","propellant","refill","interplanetary","part","journey","early","flights","arexpected","carry","mostly","equipment","people","september","name","class","spacecraft","beyond","interplanetary_spaceship","musk","indicate","however","thathe_first","ships","make","mars","journey","might","named","heart","gold","reference","ship","carrying","technology","hitchhiker","guide","galaxy","heart","gold","drive","novel","hitchhiker","guide","galaxy","although","noted_thathe","number","booster","inspired","answer","answer","musk","connection","transport","capacity","spaceship","mars","trajectory","trans","mars","injection","trans","mars","trajectory","delta","v","energy","gain","full","mars","orbit","landed","surface","landing","estimated","earth","mars","vary","days","depending","particular","planetary","nine","synodic","period","mission","opportunities","delta","v","added","mars","injection","file","interplanetary_transport_system","jpg","lefthumb","px","artist","conception","interplanetary_spaceship","arrival","mars","spaceship","designed","mars","atmospheric","entry","enter","atmosphere","entry","excess","allow","aerodynamic","force","provide","major","part","three","engines","perform","burn","theat","shield","material","protecting","ship","descent","x","g","force","mars","arexpected","g","spaceship","design","g","load","would","g","nominal","able","withstand","peak","loads","times","higher","without","breaking","energy","journey","produced","two","large","solar","panels","spacecraft","solar","panel","generating","approximately","electric","power","athe","distance","earth","sun","less","journey","sun","farther","away","ship","mars","spaceship","may","use","large","internal","water","layer","help","shield","occupants","space","radiation","may","cabin","oxygen","two","times","found","atmosphere","earth","atmosphere","initial","tests","spaceship","expected","prior","withe","booster","follow","later","according","musk","spaceship","would","effectively","become","first","human","habitat","mars","tanker","file","tanker","cropped","jpg","thumb","rendering","tanker","top","interplanetary_spaceship","bottom","earth_orbit","key","feature","system","propellant","tanker","tanker","spaceship","tanker","would","serve","upper_stage","launch_vehicle","launch_vehicle","designed","exclusively","launch","shorterm","holding","propellants","transported","low_earth_orbit","fore","filling","propellants","interplanetary","ships","orbit","proximity","operations","rendezvous","operation","one","plumbing","connections","made","maximum","liquid","methane","liquid_oxygen","propellants","transferred","one","load","spaceship","fully","fuel","interplanetary_spaceship","long","duration","interplanetary","flight","expected","five","would","required","launch","earth","carrying","total","nearly","fully","load","spaceship","journey","tanker","physical","dimensions","interplanetary","spacecraft","long","maximum","hull","diameter","point","also","powered","six","vacuum","optimized","raptor","engines","producing","thrust","three","lower","expansion","ratio","raptor","engines","flight","earth","return","landings","following","completion","orbit","propellant","reusable","tanker","atmospheric","reentry","atmosphere","earth","atmosphere","land","prepared","another","tanker","flighthe","tanker","could","also_used","cargo","missions","propellant","plant","mars","key","part","radically","decrease","cost","interplanetary","destinations","placement","operation","physical","plant","mars","handle","production","storage","propellant","components","necessary","launch","fly","back","earth","perhaps","increase","mass","transported","destinations","outer","solar_system","coupled","filling","prior","journey","mars","fully","spacecraft","needed","reduce","transport","cost","multiple","orders","magnitude","musk","sees","necessary","support","sustainable","colonization","mars","first","interplanetary_spaceship","mars","carry","small","propellant","plant","part","cargo","load","plant","multiple","arrives","installed","placed","mostly","autonomous","production","propellant","plant","take_advantage","large","supplies","carbon","dioxide","water","mars","mars","mining","water","h","ice","collecting","atmosphere","mars","atmosphere","chemical","plant","process","raw","materials","means","water","process","produce","molecular","oxygen","methane","vacuum","distillation","ito","facilitate","long_term","storage","ultimate","use","launch_facility","site","site","launch","rapid","reuse","launch_vehicle","launch_pad","spacex","leased","facility","historic","launch_pad","along","florida","space","coast","originally","thoughto","small","handle","launch_vehicle","final","optimized","size","raptor","engine","fairly","close","physical","size","merlin","although","engine","approximately","three","times","thrust","falcon_heavy","willaunch","merlin","engines","willaunch","raptor","engines","multiple","musk","indicated","september","thathe","launch_vehicle","would","launch","fromore","one","site","prime","candidate","second","launch_site","along","south","texas","coast","launch_facility","history","launch_site","yet","selected","super_heavy_lift","rocket","mars","colonial","transporter","spacex","indicated","athe_time","thatheir","leased","facility","launch_pad","would","largenough","accommodate","vehicle","understood","conceptually","new","site","would","need","built","order","launch","rocket","september","elon_musk","indicated","go","another","planet","could","possibly","launch","spacex","south","texas","launch_site","indicate","athe_time","launch_vehicle","might","used","carry","humans","torbit","mission","concepts","mars","early","missions","musk","indicated","spacex","sponsored","missions","would","smaller","crew","use","much","pressurized","space","cargo","first","cargo","mission","interplanetary_spaceship","would","named","heart","gold","would","loaded","equipmento","build","spacex","mars","propellant","plant","propellant","first","crewed","mars","mission","would","bexpected","approximately","people","withe","primary","goal","build","propellant","plant","mars","base","alpha","power","system","well","base","thevent","emergency","spaceship","would","able","return","earth","without","wait","full","months","next","synodic","period","people","transported","number","cargo","missions","would","undertaken","first","order","mars","colonization","equipment","mars","habitats","supplies","would","accompany","thearly","groups","would","include","machines","produce","methane","oxygen","atmospheric","nitrogen","carbon","dioxide","planet","water","ice","well","construction","materials","build","transparent","crop","concepts","green","living","space","habitats","include","glass","carbon","fiber","frame","dome","lot","automated","mining","autonomous","robot","building","huge","amount","pressurized","space","industrial","operations","buthese","merely","conceptual","plan","marsettlement","concept","spacex","company","concentrating","resources","space_transportation","part","overall","project","well","autonomous","robot","mars","propellant","plant","propellant","could","deployed","mars","produce","methane","oxygen","rocket","propellants","local","resources","built","planned","objectives","achieved","transport","cost","getting","material","people","space","across","interplanetary","space","reduced","several","orders","magnitude","spacex","ceo","elon_musk","much_larger","set","long_term","interplanetary","settlement","objectives","ones","thatake","advantage","lower_costs","go","far","beyond","whathe","company","spacex","build","ultimately","involve","many","actor","whether","individual","company","governmento","build","outhe","settlement","many","decades","addition","spacex","plans","concepts","transportation","system","early","missions","musk","personally","public","large","vision","building","sustainable","human","presence","mars","long_term","vision","well","beyond","company","personally","growth","system","decades","cannot","planned","every","detail","rather","complex","adaptive","system","come","others","make","independent","choices","might","might","connect","withe","broader","system","later","growing","marsettlement","musk","sees","new","radically","lower","infrastructure","facilitating","build","spontaneous","order","bottom","emergent","phenomena","economic","order","interested","parties","whether","companies","individuals","governments","innovations","supply","demand","economics","demand","growing","venture","would","occasion","initial","spacex","marsettlement","would","start","small","initial","group","dozen","people","time","musk","hopes","outpost","would","grow","something","much_larger","become","self","sustaining","least","million_people","according","musk","even","million_people","incredible","amount","productivity","person","would","need","recreate","thentire","industrial","base","mars","would","need","mine","refine","different","materials","much","difficult","would","trees","growing","would","nitrogen","organic","growth","could","take","people","time","would","need","trips","geto","million_people","would_also","need","lot","cargo","people","fact","cargo","person","ratio","going","quite","high","would","probably","cargo","trips","every","human","trip","like","trips","talking","trips","giant","spaceship","musk","expects","thathe","journeys","would","require","days","average","trip","time","mars","approximately","days","nine","synodic","period","occurring","musk","stated","price","goal","trip","might","order","person","mentioned","long","costs","might","become","low","complex","project","financial","spacex","musk","personal","capital","washington_post","pointed","us_government","budget","mars","colonization","thus","private_sector","would","see","mars","attractive","business","environment","musk","willing","pour","wealth","project","build","colony","outer","planet","concepts","file","interplanetary_spaceship","orbit","near","rings","thumb","px","artist","impression","interplanetary_spaceship","overview","presentation","interplanetary_transport_system","given","musk","september","included","concept","slides","missions","planet","moon","jupiter","planet","moon","europa","moon","europa","belt","objects","fuel","depot","pluto","even","uses","take","payloads","cloud","musk","said","system","open","thentire","solar_system","people","based","design","put","areas","around","solar_system","people","could","go","anywhere","wanted","planet","moon","hopping","goal","spacex","build","system","tremendous","opportunity","anyone","wants","go","mars","create","something","new","build","new","planet","outer","would","likely","require","propellant","refills","mars","perhaps","locations","outer","solar_system","funding","thextensive","new_product","development","manufacture","much","space","date","private_spaceflight","privately_funded","spacex","thentire","project","even","possible","result","spacex","multi","approach","focusing","reduction","launch","cost","spacex","tens","millions","dollars","annually","development","mars","transport","concept","amounts","well","percent","company","total","expenses","expects","figure","rise","per_year","around","cost","work","leading","first","mars","launch","expected","order","much","generates","transport","revenue","musk","indicated","september","thathe","full","build","mars","plans","willikely","funded","public_private","partnership","private","public","funds","speed","commercially","available","mars","transport","cargo","humans","driven","large","part","demand","economics","market","demand","well","supply","economics","technology","development","andevelopment","funding","elon_musk","hasaid","thathere","expectation","receiving","nasa","contracts","work","also","indicated","contracts","received","would","good","fabrication","cost","projections","september","musk","presented","following","high_level","forward","looking","fabrication","cost","projections","given","set","assumptions","assumptions","include","cost","propellant","us","tonne","launch_site","costs","us","launch","discount","rate","cargo","delivered","tonne","per","single","interplanetary_spaceship","full","reuse","assumptions","single","thousands","launches","hundreds","oflights","mars","realistic","apply","costs","much_smaller","number","early","missions","envisioned","given","assumptions","musk","presented","following","long","cost","projections","class","wikitable","booster","tanker","spaceship","rowspan","fabrication","cost","align","left_align","left","rowspan","lifetime","launches","align","left_align","left","rowspan","launches","per","mars","trip","align","left_align","left","rowspan","average","maintenance","cost","per","use","align","left_align","left","rowspan","total","cost","per","one","mars","trip","propellant","maintenance","align","left_align","left","calculated","average","cost","based","life","cycle","system","included","costs","initial","fabrication","propellant","maintenance","company","one","interplanetary_spaceship","transported","mars","less","cost","per","tonne","mass","transported","tentative","calendar","mars","plans","fly","missions","mars","using","falcon_heavy","launch_vehicle","prior","completion","first_launch","vehicle","later","missions","utilizing","technology","launch_vehicle","interplanetary_spaceship","orbit","propellant","refill","via","tanker","would","earlier","company","planning","launches","space","probe","research","spacecrafto","mars","using","falcon_heavy","launch_vehicles","specialized","v","dragon_spacecraft","due","planetary","inner","solar_system","launches","typically","limited","window","approximately","every","months","originally","june","first_launch","planned","spring","announced","launch","every","mars","launch","window","thereafter","february","however","first_launch","mars","pushed","back","thearly","missions","collect","essential","data","refine","design","better","select","landing","locations","based","availability","extraterrestrial","water","building","materials","original","tentative","mission","manifest","outdated","included","two","falcon_heavy","missions","mars","prior","first","possible","flight","mars","initial","spacex","mars","mission","redragon","spacecraft","redragon","spacecraft","launched","aboard","falcon_heavy","launch_vehicle","second","preparatory","mission","leastwo","mars","transfer","orbit","via","falcon_heavy","launches","third","uncrewed","preparatory","mission","first","use","thentire","put","spacecraft","interplanetary","trajectory","carry","heavy","equipmento","mars","notably","local","power_plant","first","crewed","flighto","mars","according","schedule","dozen","people","first_launch","planned","unclear","whether","overall","schedule","kept","intact","pushed","back","months","however","may","nasand","sources","industry","claimed","spacex","considering","sending","two","mars","window","one","early","one","late","although","spacex","see_also","colonization","mars","effect","spaceflight","human","body","cosmic","human","outpost","human_spaceflight","situ","resource","utilization","life","mars","list","manned","mars","mission","plans","th_century","human","mission","mars","direct","mars","stay","space","medicine","mars","externalinks","rocket","hard","musk","give","speech","life","september","colonization","program","october","interplanetary_transport_system","video","youtube","spacex","september","making","humans","species","category","manned","missions","mars","category","colonization","mars","category_proposed","reusable","space_launch_systems","category_space_tourism"],"clean_bigrams":[["file","interplanetary"],["interplanetary","transport"],["transport","system"],["system","jpg"],["jpg","thumb"],["thumb","px"],["px","rendering"],["launch","vehicle"],["vehicle","departing"],["departing","launch"],["launch","pad"],["tanker","standing"],["rapid","launch"],["launch","site"],["site","file"],["file","interplanetary"],["interplanetary","spaceship"],["spaceship","landed"],["thumb","px"],["px","artist"],["interplanetary","spaceship"],["jupiter","planet"],["moon","europa"],["europa","moon"],["moon","europa"],["interplanetary","transport"],["transport","system"],["formerly","known"],["mars","colonial"],["colonial","transporter"],["transporter","mct"],["privatequity","privately"],["privately","funded"],["funded","new"],["new","product"],["product","development"],["development","projecto"],["projecto","design"],["remote","colonization"],["mars","human"],["human","settlements"],["mars","including"],["including","spacex"],["spacex","reusable"],["reusable","launch"],["launch","system"],["system","development"],["development","program"],["program","reusable"],["reusable","launch"],["launch","vehicle"],["spacecraft","earth"],["earth","infrastructure"],["rocket","launch"],["reusable","launch"],["launch","system"],["system","relaunch"],["relaunch","low"],["low","earth"],["earth","orbit"],["orbit","zero"],["zero","gravity"],["gravity","propellant"],["propellant","depot"],["depot","propellantransfer"],["propellantransfer","technology"],["extraterrestrial","technology"],["enable","human"],["human","mission"],["mars","human"],["human","colonization"],["also","envisioned"],["eventually","support"],["support","spacexploration"],["spacexploration","exploration"],["exploration","missions"],["missions","tother"],["tother","locations"],["solar","system"],["system","including"],["development","work"],["work","began"],["spacex","began"],["began","design"],["design","work"],["large","raptorocket"],["raptorocket","engine"],["engine","raptorocket"],["raptorocket","engine"],["launch","vehicle"],["interplanetary","spaceship"],["spaceship","new"],["new","rocket"],["rocket","engine"],["engine","designs"],["typically","considered"],["considered","one"],["new","launch"],["launch","vehicles"],["company","publicly"],["publicly","announced"],["announced","conceptual"],["conceptual","plans"],["first","mars"],["mars","bound"],["bound","cargo"],["cargo","flight"],["first","mars"],["mars","flight"],["passengers","one"],["one","synodic"],["synodic","period"],["period","later"],["following","two"],["two","preparatory"],["preparatory","research"],["research","launches"],["dragon","falcon"],["falcon","heavy"],["heavy","equipment"],["equipment","spacex"],["spacex","ceo"],["ceo","elon"],["elon","musk"],["system","architecture"],["architecture","athe"],["athe","th"],["th","international"],["international","astronautical"],["astronautical","congress"],["publicly","discussed"],["discussed","spacex"],["space","transportation"],["transportation","part"],["project","including"],["make","methalox"],["methalox","rocket"],["rocket","propellant"],["local","resources"],["resources","however"],["however","spacex"],["spacex","ceo"],["ceo","elon"],["elon","musk"],["much","larger"],["larger","set"],["long","term"],["term","interplanetary"],["interplanetary","settlement"],["settlement","objectives"],["objectives","ones"],["go","far"],["far","beyond"],["ultimately","involve"],["involve","many"],["whether","individual"],["individual","company"],["governmento","facilitate"],["many","decades"],["elon","musk"],["musk","stated"],["personal","goal"],["eventually","enabling"],["enabling","exploration"],["mars","human"],["human","exploration"],["personal","public"],["public","interest"],["mars","goes"],["goes","back"],["additional","information"],["information","abouthe"],["abouthe","mission"],["mission","architecture"],["architecture","wereleased"],["wereleased","including"],["initial","colonists"],["colonists","would"],["would","arrive"],["company","plans"],["mid","continue"],["first","humans"],["musk","stated"],["send","humans"],["mars","surface"],["surface","within"],["within","years"],["mars","colony"],["thousands","withe"],["withe","first"],["first","colonists"],["colonists","arriving"],["october","musk"],["musk","articulated"],["high","level"],["level","plan"],["second","reusable"],["reusable","rocket"],["rocket","system"],["falcon","heavy"],["heavy","launch"],["launch","vehicles"],["spent","several"],["several","billion"],["billion","us"],["us","dollars"],["new","vehicle"],["spacex","falcon"],["falcon","booster"],["booster","much"],["much","bigger"],["musk","indicated"],["spacex","would"],["speaking","publicly"],["june","musk"],["musk","stated"],["potential","initial"],["initial","public"],["public","offering"],["spacex","shares"],["stock","market"],["mars","colonial"],["colonial","transporter"],["flying","regularly"],["august","media"],["thathe","initial"],["initial","flightest"],["raptor","driven"],["driven","super"],["super","heavy"],["heavy","launch"],["launch","vehicle"],["vehicle","could"],["could","occur"],["orbital","spaceflight"],["spaceflight","conditions"],["conditions","however"],["colonization","effort"],["january","musk"],["musk","said"],["release","details"],["completely","new"],["new","architecture"],["system","would"],["would","enable"],["plans","changed"],["publicly","release"],["release","additional"],["january","musk"],["musk","indicated"],["mars","missions"],["missions","withe"],["withe","next"],["next","generation"],["generation","spacex"],["spacex","rocket"],["spacecraft","later"],["athe","th"],["th","international"],["international","astronautical"],["astronautical","congress"],["congress","conference"],["september","accessed"],["accessed","january"],["january","musk"],["musk","stated"],["june","thathe"],["thathe","first"],["first","unmanned"],["unmanned","mct"],["mct","mars"],["mars","flight"],["first","manned"],["manned","mct"],["mct","mars"],["mars","flight"],["flight","departing"],["mid","september"],["september","musk"],["musk","noted"],["noted","thathe"],["thathe","mct"],["mct","name"],["name","would"],["system","would"],["go","well"],["well","beyond"],["beyond","mars"],["new","name"],["name","would"],["needed","interplanetary"],["interplanetary","transport"],["transport","system"],["september","athe"],["athe","th"],["th","annual"],["annual","meeting"],["international","astronautical"],["astronautical","congress"],["congress","musk"],["musk","unveiled"],["unveiled","substantial"],["substantial","details"],["transport","vehicles"],["vehicles","including"],["including","size"],["size","construction"],["construction","material"],["material","number"],["engines","thrust"],["thrust","cargo"],["passenger","payload"],["payload","capabilities"],["earth","side"],["side","infrastructure"],["spacex","intends"],["supporthe","flight"],["flight","vehicles"],["addition","musk"],["spontaneous","order"],["order","bottom"],["interested","parties"],["parties","whether"],["whether","companies"],["companies","individuals"],["radically","lower"],["human","civilization"],["civilization","mars"],["mars","potentially"],["locations","around"],["solar","system"],["supply","economics"],["economics","meeting"],["growing","venture"],["venture","would"],["would","occasion"],["occasion","file"],["file","interplanetary"],["interplanetary","transport"],["transport","system"],["system","jpg"],["jpg","thumb"],["thumb","px"],["px","interplanetary"],["interplanetary","spaceship"],["spaceship","departing"],["departing","earth"],["earth","passing"],["interplanetary","transport"],["transport","system"],["system","consists"],["several","elements"],["key","according"],["making","long"],["long","duration"],["duration","beyond"],["beyond","earth"],["earth","orbit"],["spaceflights","possible"],["cost","per"],["per","ton"],["ton","delivered"],["explore","mars"],["new","fully"],["fully","reusable"],["reusable","launch"],["launch","vehicle"],["vehicle","reusable"],["reusable","super"],["super","heavy"],["heavy","lift"],["lift","launch"],["launch","vehicle"],["reusable","booster"],["booster","stage"],["stage","interplanetary"],["interplanetary","booster"],["reusable","integrated"],["integrated","second"],["second","stage"],["two","versions"],["interplanetary","spaceship"],["large","long"],["long","duration"],["duration","interplanetary"],["interplanetary","spaceflight"],["spaceflight","interplanetary"],["interplanetary","spacecraft"],["spacecraft","capable"],["carrying","passengers"],["interplanetary","space"],["space","interplanetary"],["interplanetary","destinations"],["earth","orbit"],["second","stage"],["launch","vehicle"],["long","duration"],["duration","spacecraft"],["space","mission"],["mission","architecture"],["propellant","depot"],["orbit","specifically"],["long","journey"],["journey","spacecrafto"],["low","earth"],["earth","orbit"],["second","stage"],["launch","vehicle"],["orbit","provide"],["significant","amount"],["delta","v"],["v","energy"],["energy","necessary"],["puthe","spacecraft"],["spacecraft","onto"],["interplanetary","trajectory"],["trajectory","rocket"],["rocket","propellant"],["mars","propellant"],["propellant","production"],["return","trip"],["trip","back"],["support","reuse"],["spacecraft","enabling"],["enabling","significantly"],["significantly","lower"],["lower","costo"],["costo","transport"],["transport","cargo"],["distant","destinations"],["integrated","space"],["space","vehicle"],["filled","remotely"],["remotely","selection"],["right","propellant"],["propellant","methane"],["methane","oxygen"],["also","known"],["methalox","waselected"],["considered","better"],["common","space"],["space","vehicle"],["vehicle","propellants"],["principally","due"],["production","mars"],["lower","cost"],["overall","system"],["system","optimization"],["optimization","perspective"],["perspective","methalox"],["primary","options"],["orbit","propellantransfer"],["super","heavy"],["heavy","vehicles"],["vehicles","file"],["file","spacex"],["spacex","interplanetary"],["interplanetary","transport"],["transport","system"],["system","size"],["thumb","scale"],["scale","comparison"],["comparison","ofrom"],["ofrom","lefto"],["lefto","righthe"],["righthe","full"],["full","stack"],["launch","vehicle"],["vehicle","nasa"],["upcoming","space"],["space","launch"],["launch","system"],["big","ben"],["spacex","falcon"],["falcon","heavy"],["human","super"],["super","heavy"],["heavy","lift"],["lift","launch"],["launch","vehicle"],["super","heavy"],["heavy","lift"],["lift","launch"],["launch","vehicle"],["interplanetary","transport"],["transport","system"],["reusable","launch"],["launch","vehicle"],["vehicle","reusable"],["reusable","mode"],["expendable","launch"],["low","earth"],["earth","orbithe"],["launch","vehicle"],["raptorocket","engine"],["engine","raptor"],["liquid","rocket"],["rocket","engines"],["stages","using"],["using","exclusively"],["liquid","methane"],["methane","fuel"],["liquid","oxygen"],["oxygen","oxidizer"],["pressurized","eliminating"],["problematic","helium"],["helium","gas"],["launch","vehicle"],["vehicle","reusable"],["reusable","making"],["making","use"],["spacex","reusable"],["reusable","rocket"],["rocket","spacex"],["spacex","reusable"],["reusable","technology"],["falcon","heavy"],["earth","away"],["away","launches"],["long","duration"],["also","play"],["role","briefly"],["second","stage"],["launch","vehicle"],["provide","acceleration"],["speed","orbital"],["orbital","velocity"],["design","approach"],["launch","vehicles"],["vehicles","interplanetary"],["interplanetary","spaceship"],["spaceship","file"],["file","spacex"],["back","quarter"],["solar","extended"],["extended","cropped"],["cropped","jpg"],["jpg","thumb"],["thumb","upright"],["interplanetary","spaceship"],["thengine","configuration"],["withe","solar"],["solar","panels"],["spacecraft","solar"],["solar","panels"],["panels","extended"],["interplanetary","spaceship"],["interplanetary","spaceflight"],["spaceflight","interplanetary"],["interplanetary","spacecraft"],["spacecraft","ship"],["carbon","fiber"],["fiber","primary"],["primary","structure"],["structure","propelled"],["nine","raptor"],["raptor","engines"],["engines","operating"],["methane","oxygen"],["oxygen","propellants"],["long","maximum"],["maximum","hull"],["hull","diameter"],["tof","cargo"],["passengers","per"],["per","trip"],["mars","orbit"],["orbit","propellant"],["propellant","refill"],["interplanetary","part"],["journey","early"],["early","flights"],["flights","arexpected"],["carry","mostly"],["mostly","equipment"],["spacecraft","beyond"],["interplanetary","spaceship"],["spaceship","musk"],["indicate","however"],["however","thathe"],["thathe","first"],["mars","journey"],["journey","might"],["named","heart"],["ship","carrying"],["galaxy","heart"],["galaxy","although"],["noted","thathe"],["thathe","number"],["answer","musk"],["transport","capacity"],["low","earth"],["earth","mars"],["mars","trajectory"],["trans","mars"],["mars","injection"],["injection","trans"],["trans","mars"],["mars","trajectory"],["delta","v"],["v","energy"],["energy","gain"],["mars","orbit"],["landing","estimated"],["estimated","earth"],["earth","mars"],["days","depending"],["particular","planetary"],["nine","synodic"],["synodic","period"],["period","mission"],["mission","opportunities"],["delta","v"],["v","added"],["mars","injection"],["injection","file"],["file","interplanetary"],["interplanetary","transport"],["transport","system"],["system","jpg"],["jpg","lefthumb"],["lefthumb","px"],["px","artist"],["interplanetary","spaceship"],["spaceship","arrival"],["mars","atmospheric"],["atmospheric","entry"],["entry","enter"],["allow","aerodynamic"],["aerodynamic","force"],["major","part"],["engines","perform"],["burn","theat"],["theat","shield"],["shield","material"],["material","protecting"],["g","force"],["mars","arexpected"],["spaceship","design"],["design","g"],["g","load"],["load","would"],["withstand","peak"],["peak","loads"],["times","higher"],["higher","without"],["without","breaking"],["two","large"],["large","solar"],["solar","panels"],["spacecraft","solar"],["solar","panel"],["generating","approximately"],["electric","power"],["athe","distance"],["farther","away"],["spaceship","may"],["may","use"],["large","internal"],["internal","water"],["water","layer"],["help","shield"],["shield","occupants"],["space","radiation"],["cabin","oxygen"],["two","times"],["initial","tests"],["expected","prior"],["later","according"],["spaceship","would"],["would","effectively"],["effectively","become"],["first","human"],["human","habitat"],["tanker","file"],["tanker","cropped"],["cropped","jpg"],["jpg","thumb"],["thumb","rendering"],["tanker","top"],["interplanetary","spaceship"],["spaceship","bottom"],["earth","orbit"],["key","feature"],["tanker","spaceship"],["tanker","would"],["would","serve"],["upper","stage"],["launch","vehicle"],["launch","vehicle"],["designed","exclusively"],["shorterm","holding"],["low","earth"],["earth","orbit"],["orbit","fore"],["fore","filling"],["filling","propellants"],["interplanetary","ships"],["proximity","operations"],["operations","rendezvous"],["rendezvous","operation"],["one","interplanetary"],["interplanetary","spaceships"],["spaceships","plumbing"],["plumbing","connections"],["liquid","methane"],["liquid","oxygen"],["oxygen","propellants"],["one","load"],["fully","fuel"],["interplanetary","spaceship"],["long","duration"],["duration","interplanetary"],["interplanetary","flight"],["earth","carrying"],["fully","load"],["physical","dimensions"],["interplanetary","spacecraft"],["spacecraft","long"],["long","maximum"],["maximum","hull"],["hull","diameter"],["six","vacuum"],["vacuum","optimized"],["optimized","raptor"],["raptor","engines"],["producing","thrust"],["three","lower"],["lower","expansion"],["expansion","ratio"],["ratio","raptor"],["raptor","engines"],["earth","return"],["return","landings"],["landings","following"],["following","completion"],["orbit","propellant"],["reusable","tanker"],["atmospheric","reentry"],["atmosphere","land"],["another","tanker"],["tanker","flighthe"],["flighthe","tanker"],["tanker","could"],["could","also"],["cargo","missions"],["missions","propellant"],["propellant","plant"],["key","part"],["radically","decrease"],["interplanetary","destinations"],["physical","plant"],["handle","production"],["propellant","components"],["components","necessary"],["interplanetary","spaceships"],["spaceships","back"],["mass","transported"],["outer","solar"],["solar","system"],["system","coupled"],["filling","prior"],["fully","reusable"],["reusable","launch"],["launch","vehicles"],["transport","cost"],["multiple","orders"],["musk","sees"],["support","sustainable"],["sustainable","colonization"],["first","interplanetary"],["interplanetary","spaceship"],["small","propellant"],["propellant","plant"],["cargo","load"],["mostly","autonomous"],["autonomous","production"],["propellant","plant"],["take","advantage"],["large","supplies"],["carbon","dioxide"],["mars","mining"],["water","h"],["mars","atmosphere"],["chemical","plant"],["raw","materials"],["produce","molecular"],["molecular","oxygen"],["vacuum","distillation"],["ito","facilitate"],["facilitate","long"],["long","term"],["term","storage"],["ultimate","use"],["use","launch"],["launch","facility"],["rapid","reuse"],["launch","vehicle"],["launch","pad"],["spacex","leased"],["leased","facility"],["historic","launch"],["launch","pad"],["pad","along"],["florida","space"],["space","coast"],["originally","thoughto"],["launch","vehicle"],["final","optimized"],["optimized","size"],["raptor","engine"],["fairly","close"],["physical","size"],["approximately","three"],["three","times"],["thrust","falcon"],["falcon","heavy"],["heavy","willaunch"],["merlin","engines"],["raptor","engines"],["engines","multiple"],["multiple","launch"],["launch","sites"],["sites","musk"],["musk","indicated"],["september","thathe"],["launch","vehicle"],["vehicle","would"],["would","launch"],["launch","fromore"],["one","site"],["prime","candidate"],["second","launch"],["launch","site"],["south","texas"],["texas","coast"],["launch","facility"],["facility","history"],["launch","site"],["super","heavy"],["heavy","lift"],["lift","rocket"],["mars","colonial"],["colonial","transporter"],["transporter","spacex"],["spacex","indicated"],["indicated","athe"],["athe","time"],["time","thatheir"],["thatheir","leased"],["leased","facility"],["launch","pad"],["understood","conceptually"],["new","site"],["site","would"],["would","need"],["september","elon"],["elon","musk"],["musk","indicated"],["indicated","thathe"],["thathe","first"],["first","person"],["another","planet"],["planet","could"],["could","possibly"],["possibly","launch"],["spacex","south"],["south","texas"],["texas","launch"],["launch","site"],["indicate","athe"],["athe","time"],["launch","vehicle"],["vehicle","might"],["carry","humans"],["humans","torbit"],["torbit","mission"],["mission","concepts"],["concepts","mars"],["mars","early"],["early","missions"],["missions","musk"],["musk","indicated"],["spacex","sponsored"],["sponsored","missions"],["missions","would"],["smaller","crew"],["use","much"],["pressurized","space"],["first","cargo"],["cargo","mission"],["interplanetary","spaceship"],["spaceship","would"],["named","heart"],["equipmento","build"],["spacex","mars"],["mars","propellant"],["propellant","plant"],["plant","propellant"],["first","crewed"],["crewed","mars"],["mars","mission"],["mission","would"],["would","bexpected"],["approximately","people"],["people","withe"],["withe","primary"],["primary","goal"],["propellant","plant"],["mars","base"],["base","alpha"],["alpha","power"],["power","system"],["spaceship","would"],["earth","without"],["full","months"],["next","synodic"],["synodic","period"],["cargo","missions"],["missions","would"],["undertaken","first"],["mars","colonization"],["colonization","equipment"],["equipment","mars"],["mars","habitats"],["would","accompany"],["accompany","thearly"],["thearly","groups"],["groups","would"],["would","include"],["include","machines"],["produce","methane"],["methane","oxygen"],["atmospheric","nitrogen"],["carbon","dioxide"],["water","ice"],["construction","materials"],["build","transparent"],["living","space"],["space","habitats"],["habitats","include"],["include","glass"],["carbon","fiber"],["fiber","frame"],["automated","mining"],["autonomous","robot"],["huge","amount"],["pressurized","space"],["industrial","operations"],["operations","buthese"],["merely","conceptual"],["plan","marsettlement"],["marsettlement","concept"],["concept","spacex"],["space","transportation"],["transportation","part"],["autonomous","robot"],["mars","propellant"],["propellant","plant"],["plant","propellant"],["produce","methane"],["methane","oxygen"],["oxygen","rocket"],["rocket","propellants"],["local","resources"],["planned","objectives"],["transport","cost"],["getting","material"],["across","interplanetary"],["interplanetary","space"],["several","orders"],["magnitude","spacex"],["spacex","ceo"],["ceo","elon"],["elon","musk"],["much","larger"],["larger","set"],["long","term"],["term","interplanetary"],["interplanetary","settlement"],["settlement","objectives"],["objectives","ones"],["ones","thatake"],["thatake","advantage"],["lower","costs"],["go","far"],["far","beyond"],["beyond","whathe"],["whathe","company"],["company","spacex"],["ultimately","involve"],["involve","many"],["whether","individual"],["individual","company"],["build","outhe"],["outhe","settlement"],["many","decades"],["spacex","plans"],["transportation","system"],["early","missions"],["missions","musk"],["sustainable","human"],["human","presence"],["long","term"],["vision","well"],["well","beyond"],["every","detail"],["complex","adaptive"],["adaptive","system"],["others","make"],["independent","choices"],["connect","withe"],["withe","broader"],["broader","system"],["later","growing"],["growing","marsettlement"],["marsettlement","musk"],["musk","sees"],["radically","lower"],["infrastructure","facilitating"],["spontaneous","order"],["order","bottom"],["emergent","phenomena"],["phenomena","economic"],["economic","order"],["interested","parties"],["parties","whether"],["whether","companies"],["companies","individuals"],["demand","economics"],["economics","demand"],["growing","venture"],["venture","would"],["would","occasion"],["initial","spacex"],["spacex","marsettlement"],["marsettlement","would"],["would","start"],["initial","group"],["dozen","people"],["time","musk"],["musk","hopes"],["outpost","would"],["would","grow"],["something","much"],["much","larger"],["become","self"],["self","sustaining"],["least","million"],["million","people"],["people","according"],["musk","even"],["million","people"],["incredible","amount"],["productivity","person"],["would","need"],["recreate","thentire"],["thentire","industrial"],["industrial","base"],["would","need"],["different","materials"],["trees","growing"],["organic","growth"],["could","take"],["take","people"],["would","need"],["need","trips"],["million","people"],["would","also"],["also","need"],["person","ratio"],["quite","high"],["would","probably"],["cargo","trips"],["every","human"],["human","trip"],["like","trips"],["talking","trips"],["giant","spaceship"],["spaceship","musk"],["musk","expects"],["expects","thathe"],["thathe","journeys"],["journeys","would"],["would","require"],["average","trip"],["trip","time"],["approximately","days"],["nine","synodic"],["synodic","period"],["musk","stated"],["price","goal"],["trip","might"],["costs","might"],["might","become"],["complex","project"],["personal","capital"],["washington","post"],["post","pointed"],["us","government"],["mars","colonization"],["colonization","thus"],["private","sector"],["sector","would"],["see","mars"],["attractive","business"],["business","environment"],["environment","musk"],["outer","planet"],["planet","concepts"],["concepts","file"],["file","interplanetary"],["interplanetary","spaceship"],["orbit","near"],["thumb","px"],["px","artist"],["interplanetary","spaceship"],["overview","presentation"],["interplanetary","transport"],["transport","system"],["system","given"],["september","included"],["included","concept"],["concept","slides"],["jupiter","planet"],["moon","europa"],["europa","moon"],["moon","europa"],["belt","objects"],["fuel","depot"],["take","payloads"],["cloud","musk"],["musk","said"],["thentire","solar"],["solar","system"],["system","people"],["areas","around"],["solar","system"],["system","people"],["people","could"],["could","go"],["go","anywhere"],["moon","hopping"],["transport","system"],["tremendous","opportunity"],["create","something"],["something","new"],["new","planet"],["planet","outer"],["would","likely"],["likely","require"],["require","propellant"],["propellant","refills"],["outer","solar"],["solar","system"],["system","funding"],["funding","thextensive"],["thextensive","new"],["new","product"],["product","development"],["private","spaceflight"],["spaceflight","privately"],["privately","funded"],["spacex","thentire"],["thentire","project"],["even","possible"],["spacex","multi"],["approach","focusing"],["launch","cost"],["cost","spacex"],["dollars","annually"],["mars","transport"],["transport","concept"],["total","expenses"],["per","year"],["work","leading"],["first","mars"],["mars","launch"],["transport","revenue"],["revenue","musk"],["musk","indicated"],["september","thathe"],["thathe","full"],["full","build"],["plans","willikely"],["public","private"],["private","partnership"],["public","funds"],["commercially","available"],["available","mars"],["mars","transport"],["transport","cargo"],["large","part"],["demand","economics"],["economics","market"],["market","demand"],["supply","economics"],["economics","technology"],["technology","development"],["development","andevelopment"],["andevelopment","funding"],["funding","elon"],["elon","musk"],["musk","hasaid"],["hasaid","thathere"],["receiving","nasa"],["nasa","contracts"],["also","indicated"],["received","would"],["good","fabrication"],["fabrication","cost"],["cost","projections"],["september","musk"],["musk","presented"],["following","high"],["high","level"],["level","forward"],["forward","looking"],["looking","fabrication"],["fabrication","cost"],["cost","projections"],["projections","given"],["assumptions","include"],["include","cost"],["propellant","us"],["us","tonne"],["tonne","launch"],["launch","site"],["site","costs"],["costs","us"],["us","launch"],["launch","discount"],["discount","rate"],["rate","cargo"],["cargo","delivered"],["delivered","tonne"],["tonne","per"],["per","single"],["single","interplanetary"],["interplanetary","spaceship"],["full","reuse"],["hundreds","oflights"],["much","smaller"],["smaller","number"],["early","missions"],["missions","envisioned"],["assumptions","musk"],["musk","presented"],["following","long"],["cost","projections"],["projections","class"],["class","wikitable"],["wikitable","booster"],["booster","tanker"],["tanker","spaceship"],["spaceship","rowspan"],["rowspan","fabrication"],["fabrication","cost"],["cost","align"],["align","left"],["left","align"],["align","left"],["left","rowspan"],["rowspan","lifetime"],["lifetime","launches"],["launches","align"],["align","left"],["left","align"],["align","left"],["left","rowspan"],["rowspan","launches"],["launches","per"],["per","mars"],["mars","trip"],["trip","align"],["align","left"],["left","align"],["align","left"],["left","rowspan"],["rowspan","average"],["average","maintenance"],["maintenance","cost"],["cost","per"],["per","use"],["use","align"],["align","left"],["left","align"],["align","left"],["left","rowspan"],["rowspan","total"],["total","cost"],["cost","per"],["per","one"],["one","mars"],["mars","trip"],["propellant","maintenance"],["maintenance","align"],["align","left"],["left","align"],["align","left"],["average","cost"],["cost","based"],["life","cycle"],["system","included"],["included","costs"],["initial","fabrication"],["fabrication","propellant"],["propellant","maintenance"],["one","interplanetary"],["interplanetary","spaceship"],["spaceship","transported"],["cost","per"],["per","tonne"],["mass","transported"],["tentative","calendar"],["mars","using"],["using","falcon"],["falcon","heavy"],["heavy","launch"],["launch","vehicle"],["vehicle","prior"],["first","launch"],["launch","vehicle"],["vehicle","later"],["later","missions"],["missions","utilizing"],["launch","vehicle"],["interplanetary","spaceship"],["orbit","propellant"],["propellant","refill"],["refill","via"],["tanker","would"],["space","probe"],["probe","research"],["research","spacecrafto"],["spacecrafto","mars"],["mars","using"],["using","falcon"],["falcon","heavy"],["heavy","launch"],["launch","vehicles"],["v","dragon"],["dragon","spacecraft"],["spacecraft","due"],["inner","solar"],["solar","system"],["typically","limited"],["approximately","every"],["every","months"],["months","originally"],["first","launch"],["every","mars"],["mars","launch"],["launch","window"],["window","thereafter"],["february","however"],["first","launch"],["pushed","back"],["thearly","missions"],["collect","essential"],["essential","data"],["better","select"],["select","landing"],["landing","locations"],["locations","based"],["building","materials"],["original","tentative"],["tentative","mission"],["mission","manifest"],["outdated","included"],["included","two"],["two","falcon"],["falcon","heavy"],["heavy","missions"],["mars","prior"],["first","possible"],["possible","flight"],["mars","initial"],["initial","spacex"],["spacex","mars"],["mars","mission"],["redragon","spacecraft"],["spacecraft","redragon"],["redragon","spacecraft"],["spacecraft","launched"],["launched","aboard"],["falcon","heavy"],["heavy","launch"],["launch","vehicle"],["vehicle","second"],["second","preparatory"],["preparatory","mission"],["mars","transfer"],["transfer","orbit"],["orbit","via"],["via","falcon"],["falcon","heavy"],["heavy","launches"],["launches","third"],["third","uncrewed"],["uncrewed","preparatory"],["preparatory","mission"],["mission","first"],["first","use"],["interplanetary","trajectory"],["carry","heavy"],["heavy","equipmento"],["equipmento","mars"],["mars","notably"],["local","power"],["power","plant"],["plant","first"],["first","crewed"],["flighto","mars"],["mars","according"],["dozen","people"],["first","launch"],["unclear","whether"],["overall","schedule"],["kept","intact"],["pushed","back"],["months","however"],["may","nasand"],["nasand","sources"],["industry","claimed"],["claimed","spacex"],["considering","sending"],["sending","two"],["two","dragon"],["dragon","spacecrafto"],["spacecrafto","mars"],["window","one"],["late","although"],["although","spacex"],["see","also"],["also","colonization"],["mars","effect"],["human","body"],["human","outpost"],["outpost","human"],["human","spaceflight"],["situ","resource"],["resource","utilization"],["utilization","life"],["mars","list"],["manned","mars"],["mars","mission"],["mission","plans"],["th","century"],["century","human"],["human","mission"],["mars","direct"],["direct","mars"],["stay","space"],["space","medicine"],["mars","externalinks"],["september","colonization"],["interplanetary","transport"],["transport","system"],["system","video"],["spacex","september"],["september","making"],["making","humans"],["species","category"],["category","manned"],["manned","missions"],["mars","category"],["category","colonization"],["mars","category"],["category","spacex"],["spacex","category"],["category","proposed"],["proposed","reusable"],["reusable","space"],["space","launch"],["launch","systems"],["systems","category"],["category","space"],["space","tourism"]],"all_collocations":["file interplanetary","interplanetary transport","transport system","system jpg","px rendering","launch vehicle","vehicle departing","departing launch","launch pad","tanker standing","rapid launch","launch site","site file","file interplanetary","interplanetary spaceship","spaceship landed","px artist","interplanetary spaceship","jupiter planet","moon europa","europa moon","moon europa","interplanetary transport","transport system","formerly known","mars colonial","colonial transporter","transporter mct","privatequity privately","privately funded","funded new","new product","product development","development projecto","projecto design","remote colonization","mars human","human settlements","mars including","including spacex","spacex reusable","reusable launch","launch system","system development","development program","program reusable","reusable launch","launch vehicle","spacecraft earth","earth infrastructure","rocket launch","reusable launch","launch system","system relaunch","relaunch low","low earth","earth orbit","orbit zero","zero gravity","gravity propellant","propellant depot","depot propellantransfer","propellantransfer technology","extraterrestrial technology","enable human","human mission","mars human","human colonization","also envisioned","eventually support","support spacexploration","spacexploration exploration","exploration missions","missions tother","tother locations","solar system","system including","development work","work began","spacex began","began design","design work","large raptorocket","raptorocket engine","engine raptorocket","raptorocket engine","launch vehicle","interplanetary spaceship","spaceship new","new rocket","rocket engine","engine designs","typically considered","considered one","new launch","launch vehicles","company publicly","publicly announced","announced conceptual","conceptual plans","first mars","mars bound","bound cargo","cargo flight","first mars","mars flight","passengers one","one synodic","synodic period","period later","following two","two preparatory","preparatory research","research launches","dragon falcon","falcon heavy","heavy equipment","equipment spacex","spacex ceo","ceo elon","elon musk","system architecture","architecture athe","athe th","th international","international astronautical","astronautical congress","publicly discussed","discussed spacex","space transportation","transportation part","project including","make methalox","methalox rocket","rocket propellant","local resources","resources however","however spacex","spacex ceo","ceo elon","elon musk","much larger","larger set","long term","term interplanetary","interplanetary settlement","settlement objectives","objectives ones","go far","far beyond","ultimately involve","involve many","whether individual","individual company","governmento facilitate","many decades","elon musk","musk stated","personal goal","eventually enabling","enabling exploration","mars human","human exploration","personal public","public interest","mars goes","goes back","additional information","information abouthe","abouthe mission","mission architecture","architecture wereleased","wereleased including","initial colonists","colonists would","would arrive","company plans","mid continue","first humans","musk stated","send humans","mars surface","surface within","within years","mars colony","thousands withe","withe first","first colonists","colonists arriving","october musk","musk articulated","high level","level plan","second reusable","reusable rocket","rocket system","falcon heavy","heavy launch","launch vehicles","spent several","several billion","billion us","us dollars","new vehicle","spacex falcon","falcon booster","booster much","much bigger","musk indicated","spacex would","speaking publicly","june musk","musk stated","potential initial","initial public","public offering","spacex shares","stock market","mars colonial","colonial transporter","flying regularly","august media","thathe initial","initial flightest","raptor driven","driven super","super heavy","heavy launch","launch vehicle","vehicle could","could occur","orbital spaceflight","spaceflight conditions","conditions however","colonization effort","january musk","musk said","release details","completely new","new architecture","system would","would enable","plans changed","publicly release","release additional","january musk","musk indicated","mars missions","missions withe","withe next","next generation","generation spacex","spacex rocket","spacecraft later","athe th","th international","international astronautical","astronautical congress","congress conference","september accessed","accessed january","january musk","musk stated","june thathe","thathe first","first unmanned","unmanned mct","mct mars","mars flight","first manned","manned mct","mct mars","mars flight","flight departing","mid september","september musk","musk noted","noted thathe","thathe mct","mct name","name would","system would","go well","well beyond","beyond mars","new name","name would","needed interplanetary","interplanetary transport","transport system","september athe","athe th","th annual","annual meeting","international astronautical","astronautical congress","congress musk","musk unveiled","unveiled substantial","substantial details","transport vehicles","vehicles including","including size","size construction","construction material","material number","engines thrust","thrust cargo","passenger payload","payload capabilities","earth side","side infrastructure","spacex intends","supporthe flight","flight vehicles","addition musk","spontaneous order","order bottom","interested parties","parties whether","whether companies","companies individuals","radically lower","human civilization","civilization mars","mars potentially","locations around","solar system","supply economics","economics meeting","growing venture","venture would","would occasion","occasion file","file interplanetary","interplanetary transport","transport system","system jpg","px interplanetary","interplanetary spaceship","spaceship departing","departing earth","earth passing","interplanetary transport","transport system","system consists","several elements","key according","making long","long duration","duration beyond","beyond earth","earth orbit","spaceflights possible","cost per","per ton","ton delivered","explore mars","new fully","fully reusable","reusable launch","launch vehicle","vehicle reusable","reusable super","super heavy","heavy lift","lift launch","launch vehicle","reusable booster","booster stage","stage interplanetary","interplanetary booster","reusable integrated","integrated second","second stage","two versions","interplanetary spaceship","large long","long duration","duration interplanetary","interplanetary spaceflight","spaceflight interplanetary","interplanetary spacecraft","spacecraft capable","carrying passengers","interplanetary space","space interplanetary","interplanetary destinations","earth orbit","second stage","launch vehicle","long duration","duration spacecraft","space mission","mission architecture","propellant depot","orbit specifically","long journey","journey spacecrafto","low earth","earth orbit","second stage","launch vehicle","orbit provide","significant amount","delta v","v energy","energy necessary","puthe spacecraft","spacecraft onto","interplanetary trajectory","trajectory rocket","rocket propellant","mars propellant","propellant production","return trip","trip back","support reuse","spacecraft enabling","enabling significantly","significantly lower","lower costo","costo transport","transport cargo","distant destinations","integrated space","space vehicle","filled remotely","remotely selection","right propellant","propellant methane","methane oxygen","also known","methalox waselected","considered better","common space","space vehicle","vehicle propellants","principally due","production mars","lower cost","overall system","system optimization","optimization perspective","perspective methalox","primary options","orbit propellantransfer","super heavy","heavy vehicles","vehicles file","file spacex","spacex interplanetary","interplanetary transport","transport system","system size","thumb scale","scale comparison","comparison ofrom","ofrom lefto","lefto righthe","righthe full","full stack","launch vehicle","vehicle nasa","upcoming space","space launch","launch system","big ben","spacex falcon","falcon heavy","human super","super heavy","heavy lift","lift launch","launch vehicle","super heavy","heavy lift","lift launch","launch vehicle","interplanetary transport","transport system","reusable launch","launch vehicle","vehicle reusable","reusable mode","expendable launch","low earth","earth orbithe","launch vehicle","raptorocket engine","engine raptor","liquid rocket","rocket engines","stages using","using exclusively","liquid methane","methane fuel","liquid oxygen","oxygen oxidizer","pressurized eliminating","problematic helium","helium gas","launch vehicle","vehicle reusable","reusable making","making use","spacex reusable","reusable rocket","rocket spacex","spacex reusable","reusable technology","falcon heavy","earth away","away launches","long duration","also play","role briefly","second stage","launch vehicle","provide acceleration","speed orbital","orbital velocity","design approach","launch vehicles","vehicles interplanetary","interplanetary spaceship","spaceship file","file spacex","back quarter","solar extended","extended cropped","cropped jpg","interplanetary spaceship","thengine configuration","withe solar","solar panels","spacecraft solar","solar panels","panels extended","interplanetary spaceship","interplanetary spaceflight","spaceflight interplanetary","interplanetary spacecraft","spacecraft ship","carbon fiber","fiber primary","primary structure","structure propelled","nine raptor","raptor engines","engines operating","methane oxygen","oxygen propellants","long maximum","maximum hull","hull diameter","tof cargo","passengers per","per trip","mars orbit","orbit propellant","propellant refill","interplanetary part","journey early","early flights","flights arexpected","carry mostly","mostly equipment","spacecraft beyond","interplanetary spaceship","spaceship musk","indicate however","however thathe","thathe first","mars journey","journey might","named heart","ship carrying","galaxy heart","galaxy although","noted thathe","thathe number","answer musk","transport capacity","low earth","earth mars","mars trajectory","trans mars","mars injection","injection trans","trans mars","mars trajectory","delta v","v energy","energy gain","mars orbit","landing estimated","estimated earth","earth mars","days depending","particular planetary","nine synodic","synodic period","period mission","mission opportunities","delta v","v added","mars injection","injection file","file interplanetary","interplanetary transport","transport system","system jpg","jpg lefthumb","lefthumb px","px artist","interplanetary spaceship","spaceship arrival","mars atmospheric","atmospheric entry","entry enter","allow aerodynamic","aerodynamic force","major part","engines perform","burn theat","theat shield","shield material","material protecting","g force","mars arexpected","spaceship design","design g","g load","load would","withstand peak","peak loads","times higher","higher without","without breaking","two large","large solar","solar panels","spacecraft solar","solar panel","generating approximately","electric power","athe distance","farther away","spaceship may","may use","large internal","internal water","water layer","help shield","shield occupants","space radiation","cabin oxygen","two times","initial tests","expected prior","later according","spaceship would","would effectively","effectively become","first human","human habitat","tanker file","tanker cropped","cropped jpg","thumb rendering","tanker top","interplanetary spaceship","spaceship bottom","earth orbit","key feature","tanker spaceship","tanker would","would serve","upper stage","launch vehicle","launch vehicle","designed exclusively","shorterm holding","low earth","earth orbit","orbit fore","fore filling","filling propellants","interplanetary ships","proximity operations","operations rendezvous","rendezvous operation","one interplanetary","interplanetary spaceships","spaceships plumbing","plumbing connections","liquid methane","liquid oxygen","oxygen propellants","one load","fully fuel","interplanetary spaceship","long duration","duration interplanetary","interplanetary flight","earth carrying","fully load","physical dimensions","interplanetary spacecraft","spacecraft long","long maximum","maximum hull","hull diameter","six vacuum","vacuum optimized","optimized raptor","raptor engines","producing thrust","three lower","lower expansion","expansion ratio","ratio raptor","raptor engines","earth return","return landings","landings following","following completion","orbit propellant","reusable tanker","atmospheric reentry","atmosphere land","another tanker","tanker flighthe","flighthe tanker","tanker could","could also","cargo missions","missions propellant","propellant plant","key part","radically decrease","interplanetary destinations","physical plant","handle production","propellant components","components necessary","interplanetary spaceships","spaceships back","mass transported","outer solar","solar system","system coupled","filling prior","fully reusable","reusable launch","launch vehicles","transport cost","multiple orders","musk sees","support sustainable","sustainable colonization","first interplanetary","interplanetary spaceship","small propellant","propellant plant","cargo load","mostly autonomous","autonomous production","propellant plant","take advantage","large supplies","carbon dioxide","mars mining","water h","mars atmosphere","chemical plant","raw materials","produce molecular","molecular oxygen","vacuum distillation","ito facilitate","facilitate long","long term","term storage","ultimate use","use launch","launch facility","rapid reuse","launch vehicle","launch pad","spacex leased","leased facility","historic launch","launch pad","pad along","florida space","space coast","originally thoughto","launch vehicle","final optimized","optimized size","raptor engine","fairly close","physical size","approximately three","three times","thrust falcon","falcon heavy","heavy willaunch","merlin engines","raptor engines","engines multiple","multiple launch","launch sites","sites musk","musk indicated","september thathe","launch vehicle","vehicle would","would launch","launch fromore","one site","prime candidate","second launch","launch site","south texas","texas coast","launch facility","facility history","launch site","super heavy","heavy lift","lift rocket","mars colonial","colonial transporter","transporter spacex","spacex indicated","indicated athe","athe time","time thatheir","thatheir leased","leased facility","launch pad","understood conceptually","new site","site would","would need","september elon","elon musk","musk indicated","indicated thathe","thathe first","first person","another planet","planet could","could possibly","possibly launch","spacex south","south texas","texas launch","launch site","indicate athe","athe time","launch vehicle","vehicle might","carry humans","humans torbit","torbit mission","mission concepts","concepts mars","mars early","early missions","missions musk","musk indicated","spacex sponsored","sponsored missions","missions would","smaller crew","use much","pressurized space","first cargo","cargo mission","interplanetary spaceship","spaceship would","named heart","equipmento build","spacex mars","mars propellant","propellant plant","plant propellant","first crewed","crewed mars","mars mission","mission would","would bexpected","approximately people","people withe","withe primary","primary goal","propellant plant","mars base","base alpha","alpha power","power system","spaceship would","earth without","full months","next synodic","synodic period","cargo missions","missions would","undertaken first","mars colonization","colonization equipment","equipment mars","mars habitats","would accompany","accompany thearly","thearly groups","groups would","would include","include machines","produce methane","methane oxygen","atmospheric nitrogen","carbon dioxide","water ice","construction materials","build transparent","living space","space habitats","habitats include","include glass","carbon fiber","fiber frame","automated mining","autonomous robot","huge amount","pressurized space","industrial operations","operations buthese","merely conceptual","plan marsettlement","marsettlement concept","concept spacex","space transportation","transportation part","autonomous robot","mars propellant","propellant plant","plant propellant","produce methane","methane oxygen","oxygen rocket","rocket propellants","local resources","planned objectives","transport cost","getting material","across interplanetary","interplanetary space","several orders","magnitude spacex","spacex ceo","ceo elon","elon musk","much larger","larger set","long term","term interplanetary","interplanetary settlement","settlement objectives","objectives ones","ones thatake","thatake advantage","lower costs","go far","far beyond","beyond whathe","whathe company","company spacex","ultimately involve","involve many","whether individual","individual company","build outhe","outhe settlement","many decades","spacex plans","transportation system","early missions","missions musk","sustainable human","human presence","long term","vision well","well beyond","every detail","complex adaptive","adaptive system","others make","independent choices","connect withe","withe broader","broader system","later growing","growing marsettlement","marsettlement musk","musk sees","radically lower","infrastructure facilitating","spontaneous order","order bottom","emergent phenomena","phenomena economic","economic order","interested parties","parties whether","whether companies","companies individuals","demand economics","economics demand","growing venture","venture would","would occasion","initial spacex","spacex marsettlement","marsettlement would","would start","initial group","dozen people","time musk","musk hopes","outpost would","would grow","something much","much larger","become self","self sustaining","least million","million people","people according","musk even","million people","incredible amount","productivity person","would need","recreate thentire","thentire industrial","industrial base","would need","different materials","trees growing","organic growth","could take","take people","would need","need trips","million people","would also","also need","person ratio","quite high","would probably","cargo trips","every human","human trip","like trips","talking trips","giant spaceship","spaceship musk","musk expects","expects thathe","thathe journeys","journeys would","would require","average trip","trip time","approximately days","nine synodic","synodic period","musk stated","price goal","trip might","costs might","might become","complex project","personal capital","washington post","post pointed","us government","mars colonization","colonization thus","private sector","sector would","see mars","attractive business","business environment","environment musk","outer planet","planet concepts","concepts file","file interplanetary","interplanetary spaceship","orbit near","px artist","interplanetary spaceship","overview presentation","interplanetary transport","transport system","system given","september included","included concept","concept slides","jupiter planet","moon europa","europa moon","moon europa","belt objects","fuel depot","take payloads","cloud musk","musk said","thentire solar","solar system","system people","areas around","solar system","system people","people could","could go","go anywhere","moon hopping","transport system","tremendous opportunity","create something","something new","new planet","planet outer","would likely","likely require","require propellant","propellant refills","outer solar","solar system","system funding","funding thextensive","thextensive new","new product","product development","private spaceflight","spaceflight privately","privately funded","spacex thentire","thentire project","even possible","spacex multi","approach focusing","launch cost","cost spacex","dollars annually","mars transport","transport concept","total expenses","per year","work leading","first mars","mars launch","transport revenue","revenue musk","musk indicated","september thathe","thathe full","full build","plans willikely","public private","private partnership","public funds","commercially available","available mars","mars transport","transport cargo","large part","demand economics","economics market","market demand","supply economics","economics technology","technology development","development andevelopment","andevelopment funding","funding elon","elon musk","musk hasaid","hasaid thathere","receiving nasa","nasa contracts","also indicated","received would","good fabrication","fabrication cost","cost projections","september musk","musk presented","following high","high level","level forward","forward looking","looking fabrication","fabrication cost","cost projections","projections given","assumptions include","include cost","propellant us","us tonne","tonne launch","launch site","site costs","costs us","us launch","launch discount","discount rate","rate cargo","cargo delivered","delivered tonne","tonne per","per single","single interplanetary","interplanetary spaceship","full reuse","hundreds oflights","much smaller","smaller number","early missions","missions envisioned","assumptions musk","musk presented","following long","cost projections","projections class","wikitable booster","booster tanker","tanker spaceship","spaceship rowspan","rowspan fabrication","fabrication cost","cost align","left align","left rowspan","rowspan lifetime","lifetime launches","launches align","left align","left rowspan","rowspan launches","launches per","per mars","mars trip","trip align","left align","left rowspan","rowspan average","average maintenance","maintenance cost","cost per","per use","use align","left align","left rowspan","rowspan total","total cost","cost per","per one","one mars","mars trip","propellant maintenance","maintenance align","left align","average cost","cost based","life cycle","system included","included costs","initial fabrication","fabrication propellant","propellant maintenance","one interplanetary","interplanetary spaceship","spaceship transported","cost per","per tonne","mass transported","tentative calendar","mars using","using falcon","falcon heavy","heavy launch","launch vehicle","vehicle prior","first launch","launch vehicle","vehicle later","later missions","missions utilizing","launch vehicle","interplanetary spaceship","orbit propellant","propellant refill","refill via","tanker would","space probe","probe research","research spacecrafto","spacecrafto mars","mars using","using falcon","falcon heavy","heavy launch","launch vehicles","v dragon","dragon spacecraft","spacecraft due","inner solar","solar system","typically limited","approximately every","every months","months originally","first launch","every mars","mars launch","launch window","window thereafter","february however","first launch","pushed back","thearly missions","collect essential","essential data","better select","select landing","landing locations","locations based","building materials","original tentative","tentative mission","mission manifest","outdated included","included two","two falcon","falcon heavy","heavy missions","mars prior","first possible","possible flight","mars initial","initial spacex","spacex mars","mars mission","redragon spacecraft","spacecraft redragon","redragon spacecraft","spacecraft launched","launched aboard","falcon heavy","heavy launch","launch vehicle","vehicle second","second preparatory","preparatory mission","mars transfer","transfer orbit","orbit via","via falcon","falcon heavy","heavy launches","launches third","third uncrewed","uncrewed preparatory","preparatory mission","mission first","first use","interplanetary trajectory","carry heavy","heavy equipmento","equipmento mars","mars notably","local power","power plant","plant first","first crewed","flighto mars","mars according","dozen people","first launch","unclear whether","overall schedule","kept intact","pushed back","months however","may nasand","nasand sources","industry claimed","claimed spacex","considering sending","sending two","two dragon","dragon spacecrafto","spacecrafto mars","window one","late although","although spacex","see also","also colonization","mars effect","human body","human outpost","outpost human","human spaceflight","situ resource","resource utilization","utilization life","mars list","manned mars","mars mission","mission plans","th century","century human","human mission","mars direct","direct mars","stay space","space medicine","mars externalinks","september colonization","interplanetary transport","transport system","system video","spacex september","september making","making humans","species category","category manned","manned missions","mars category","category colonization","mars category","category spacex","spacex category","category proposed","proposed reusable","reusable space","space launch","launch systems","systems category","category space","space tourism"],"new_description":"file interplanetary_transport_system jpg thumb px rendering launch_vehicle departing launch_pad tanker standing left rapid launch launch_site file interplanetary_spaceship landed thumb px artist impression interplanetary_spaceship jupiter planet moon europa moon europa interplanetary_transport_system formerly_known mars colonial transporter mct privatequity privately_funded new_product development projecto design build system remote colonization mars human settlements mars including spacex_reusable launch_system development_program reusable_launch_vehicle spacecraft earth infrastructure rocket launch reusable_launch system relaunch low_earth_orbit zero gravity propellant depot propellantransfer technology extraterrestrial technology enable human mission mars human colonization mars technology also envisioned eventually support spacexploration exploration missions tother locations solar_system including jupiter development work began spacex began design work large raptorocket engine raptorocket engine used bothe launch_vehicle spacecraft tanker interplanetary_spaceship new rocket_engine designs typically considered one longest development new launch_vehicles spacecraft june company publicly_announced conceptual plans included first mars bound cargo flight launching earlier followed first mars flight passengers one synodic period later following two preparatory research launches mars dragon falcon_heavy equipment spacex ceo elon_musk system architecture athe_th international astronautical congress september publicly discussed spacex concentrating resources space_transportation part project including propellant could deployed mars make methalox rocket propellant local resources however spacex ceo elon_musk much_larger set long_term interplanetary settlement objectives ones go far beyond spacex build ultimately involve many actor whether individual company governmento facilitate build many decades early elon_musk stated personal goal eventually enabling exploration mars human exploration colonization marsettlement mars personal public_interest mars goes back bits additional information_abouthe mission architecture wereleased including initial colonists would arrive mars earlier middle company plans mid continue call arrival first humans mars earlier musk stated interview hoped send humans mars surface within years late stated mars colony tens thousands withe_first colonists arriving earlier middle october musk articulated high_level plan build second reusable rocket system beyond falcon_heavy launch_vehicles spacex spent several billion us dollars new vehicle evolution spacex falcon booster much bigger falcon musk indicated spacex would speaking publicly june musk stated intended hold potential initial public offering spacex shares stock market mars colonial transporter flying regularly august media thathe initial flightest raptor driven super_heavy launch_vehicle could occur early order fully orbital_spaceflight conditions however colonization effort reported continue deep future january musk said hoped release details late completely new architecture system would enable colonization mars plans changed december plan publicly release additional moved january musk indicated hoped describe architecture mars missions withe next_generation spacex rocket spacecraft later athe_th international astronautical congress conference september accessed january musk stated june thathe_first unmanned mct mars flight planned departure followed first manned mct mars flight departing mid september musk noted_thathe mct name would continue system would able go well beyond mars new name would needed interplanetary_transport_system september athe_th_annual meeting international astronautical congress musk unveiled substantial details design transport vehicles including size construction material number type engines thrust cargo passenger payload capabilities orbit representative etc well details portions earth side infrastructure spacex intends build supporthe flight vehicles addition musk larger vision vision spontaneous order bottom order interested parties whether companies individuals governments utilize new radically lower infrastructure build colonization human civilization mars potentially locations around solar_system innovation supply economics meeting demand growing venture would occasion file interplanetary_transport_system jpg thumb px interplanetary_spaceship departing earth passing moon interplanetary_transport_system consists combination several elements key according musk making long duration beyond earth_orbit spaceflights possible reducing cost per ton delivered mars spacex explore mars beyond september new fully reusable_launch_vehicle reusable super_heavy_lift launch_vehicle consists reusable booster stage interplanetary booster reusable integrated second_stage comes two versions interplanetary_spaceship large long duration interplanetary spaceflight interplanetary spacecraft capable carrying passengers cargo interplanetary space interplanetary destinations earth_orbit tanker combination second_stage launch_vehicle long duration spacecraft unusual space mission architecture seen propellant depot propellants orbit specifically enable long journey spacecrafto propellant launch low_earth_orbit serves second_stage launch_vehicle orbit provide significant amount delta v energy necessary puthe spacecraft onto interplanetary trajectory rocket propellant mars propellant production surface mars enable return trip back earth support reuse spacecraft enabling significantly lower_costo transport cargo passengers distant destinations large integrated space_vehicle filled remotely selection right propellant methane oxygen also_known deep methalox waselected considered better common space_vehicle propellants principally due ease production mars lower_cost propellants earth evaluated overall system optimization perspective methalox considered primary options terms vehicle orbit propellantransfer super_heavy vehicles file spacex interplanetary_transport_system size thumb scale comparison ofrom lefto righthe full stack launch_vehicle nasa upcoming space_launch_system big ben spacex falcon_heavy human super_heavy_lift launch_vehicle super_heavy_lift launch_vehicle interplanetary_transport_system place reusable_launch_vehicle reusable mode expendable launch mode carry propellant tanker low_earth_orbithe launch_vehicle powered raptorocket engine raptor liquid rocket_engines stages using exclusively liquid methane fuel liquid_oxygen oxidizer stages tanks pressurized eliminating need problematic helium gas launch_vehicle reusable making use spacex_reusable rocket spacex_reusable technology falcon falcon_heavy earth away launches long duration spaceship also play role briefly second_stage launch_vehicle provide acceleration speed orbital velocity design approach used launch_vehicles interplanetary_spaceship file spacex back quarter solar extended cropped jpg thumb upright rendering interplanetary_spaceship engineering thengine configuration withe solar panels spacecraft solar panels extended interplanetary_spaceship interplanetary spaceflight interplanetary spacecraft ship carbon fiber primary structure propelled nine raptor engines operating methane oxygen propellants long maximum hull diameter diameter point capable transporting tof cargo passengers per trip mars orbit propellant refill interplanetary part journey early flights arexpected carry mostly equipment people september name class spacecraft beyond interplanetary_spaceship musk indicate however thathe_first ships make mars journey might named heart gold reference ship carrying technology hitchhiker guide galaxy heart gold drive novel hitchhiker guide galaxy although noted_thathe number booster inspired answer answer musk connection transport capacity spaceship low_earth mars trajectory trans mars injection trans mars trajectory delta v energy gain full mars orbit landed surface landing estimated earth mars vary days depending particular planetary nine synodic period mission opportunities delta v added mars injection file interplanetary_transport_system jpg lefthumb px artist conception interplanetary_spaceship arrival mars spaceship designed mars atmospheric entry enter atmosphere entry excess allow aerodynamic force provide major part three engines perform burn theat shield material protecting ship descent x g force mars arexpected g spaceship design g load would g nominal able withstand peak loads times higher without breaking energy journey produced two large solar panels spacecraft solar panel generating approximately electric power athe distance earth sun less journey sun farther away ship mars spaceship may use large internal water layer help shield occupants space radiation may cabin oxygen two times found atmosphere earth atmosphere initial tests spaceship expected prior withe booster follow later according musk spaceship would effectively become first human habitat mars tanker file tanker cropped jpg thumb rendering tanker top interplanetary_spaceship bottom earth_orbit key feature system propellant tanker tanker spaceship tanker would serve upper_stage launch_vehicle launch_vehicle designed exclusively launch shorterm holding propellants transported low_earth_orbit fore filling propellants interplanetary ships orbit proximity operations rendezvous operation one interplanetary_spaceships plumbing connections made maximum liquid methane liquid_oxygen propellants transferred one load spaceship fully fuel interplanetary_spaceship long duration interplanetary flight expected five would required launch earth carrying total nearly fully load spaceship journey tanker physical dimensions interplanetary spacecraft long maximum hull diameter point also powered six vacuum optimized raptor engines producing thrust three lower expansion ratio raptor engines flight earth return landings following completion orbit propellant reusable tanker atmospheric reentry atmosphere earth atmosphere land prepared another tanker flighthe tanker could also_used cargo missions propellant plant mars key part radically decrease cost interplanetary destinations placement operation physical plant mars handle production storage propellant components necessary launch fly interplanetary_spaceships back earth perhaps increase mass transported destinations outer solar_system coupled filling prior journey mars fully reusable_launch_vehicles spacecraft needed reduce transport cost multiple orders magnitude musk sees necessary support sustainable colonization mars first interplanetary_spaceship mars carry small propellant plant part cargo load plant multiple arrives installed placed mostly autonomous production propellant plant take_advantage large supplies carbon dioxide water mars mars mining water h ice collecting atmosphere mars atmosphere chemical plant process raw materials means water process produce molecular oxygen methane vacuum distillation ito facilitate long_term storage ultimate use launch_facility site site launch rapid reuse launch_vehicle launch_pad spacex leased facility historic launch_pad along florida space coast originally thoughto small handle launch_vehicle final optimized size raptor engine fairly close physical size merlin although engine approximately three times thrust falcon_heavy willaunch merlin engines willaunch raptor engines multiple launch_sites musk indicated september thathe launch_vehicle would launch fromore one site prime candidate second launch_site along south texas coast launch_facility history launch_site yet selected super_heavy_lift rocket mars colonial transporter spacex indicated athe_time thatheir leased facility launch_pad would largenough accommodate vehicle understood conceptually new site would need built order launch rocket september elon_musk indicated thathe_first_person go another planet could possibly launch spacex south texas launch_site indicate athe_time launch_vehicle might used carry humans torbit mission concepts mars early missions musk indicated spacex sponsored missions would smaller crew use much pressurized space cargo first cargo mission interplanetary_spaceship would named heart gold would loaded equipmento build spacex mars propellant plant propellant first crewed mars mission would bexpected approximately people withe primary goal build propellant plant mars base alpha power system well base thevent emergency spaceship would able return earth without wait full months next synodic period people transported number cargo missions would undertaken first order mars colonization equipment mars habitats supplies would accompany thearly groups would include machines produce methane oxygen atmospheric nitrogen carbon dioxide planet water ice well construction materials build transparent crop concepts green living space habitats include glass carbon fiber frame dome lot automated mining autonomous robot building huge amount pressurized space industrial operations buthese merely conceptual plan marsettlement concept spacex company concentrating resources space_transportation part overall project well autonomous robot mars propellant plant propellant could deployed mars produce methane oxygen rocket propellants local resources built planned objectives achieved transport cost getting material people space across interplanetary space reduced several orders magnitude spacex ceo elon_musk much_larger set long_term interplanetary settlement objectives ones thatake advantage lower_costs go far beyond whathe company spacex build ultimately involve many actor whether individual company governmento build outhe settlement many decades addition spacex plans concepts transportation system early missions musk personally public large vision building sustainable human presence mars long_term vision well beyond company personally growth system decades cannot planned every detail rather complex adaptive system come others make independent choices might might connect withe broader system later growing marsettlement musk sees new radically lower infrastructure facilitating build spontaneous order bottom emergent phenomena economic order interested parties whether companies individuals governments innovations supply demand economics demand growing venture would occasion initial spacex marsettlement would start small initial group dozen people time musk hopes outpost would grow something much_larger become self sustaining least million_people according musk even million_people incredible amount productivity person would need recreate thentire industrial base mars would need mine refine different materials much difficult would trees growing would nitrogen organic growth could take people time would need trips geto million_people would_also need lot cargo people fact cargo person ratio going quite high would probably cargo trips every human trip like trips talking trips giant spaceship musk expects thathe journeys would require days average trip time mars approximately days nine synodic period occurring musk stated price goal trip might order person mentioned long costs might become low complex project financial spacex musk personal capital washington_post pointed us_government budget mars colonization thus private_sector would see mars attractive business environment musk willing pour wealth project build colony outer planet concepts file interplanetary_spaceship orbit near rings thumb px artist impression interplanetary_spaceship overview presentation interplanetary_transport_system given musk september included concept slides missions planet moon jupiter planet moon europa moon europa belt objects fuel depot pluto even uses take payloads cloud musk said system open thentire solar_system people based design put areas around solar_system people could go anywhere wanted planet moon hopping goal spacex build transport_system system tremendous opportunity anyone wants go mars create something new build new planet outer would likely require propellant refills mars perhaps locations outer solar_system funding thextensive new_product development manufacture much space date private_spaceflight privately_funded spacex thentire project even possible result spacex multi approach focusing reduction launch cost spacex tens millions dollars annually development mars transport concept amounts well percent company total expenses expects figure rise per_year around cost work leading first mars launch expected order much generates transport revenue musk indicated september thathe full build mars plans willikely funded public_private partnership private public funds speed commercially available mars transport cargo humans driven large part demand economics market demand well supply economics technology development andevelopment funding elon_musk hasaid thathere expectation receiving nasa contracts work also indicated contracts received would good fabrication cost projections september musk presented following high_level forward looking fabrication cost projections given set assumptions assumptions include cost propellant us tonne launch_site costs us launch discount rate cargo delivered tonne per single interplanetary_spaceship full reuse assumptions single thousands launches hundreds oflights mars realistic apply costs much_smaller number early missions envisioned given assumptions musk presented following long cost projections class wikitable booster tanker spaceship rowspan fabrication cost align left_align left rowspan lifetime launches align left_align left rowspan launches per mars trip align left_align left rowspan average maintenance cost per use align left_align left rowspan total cost per one mars trip propellant maintenance align left_align left calculated average cost based life cycle system included costs initial fabrication propellant maintenance company one interplanetary_spaceship transported mars less cost per tonne mass transported tentative calendar mars plans fly missions mars using falcon_heavy launch_vehicle prior completion first_launch vehicle later missions utilizing technology launch_vehicle interplanetary_spaceship orbit propellant refill via tanker would earlier company planning launches space probe research spacecrafto mars using falcon_heavy launch_vehicles specialized v dragon_spacecraft due planetary inner solar_system launches typically limited window approximately every months originally june first_launch planned spring announced launch every mars launch window thereafter february however first_launch mars pushed back thearly missions collect essential data refine design better select landing locations based availability extraterrestrial water building materials original tentative mission manifest outdated included two falcon_heavy missions mars prior first possible flight mars initial spacex mars mission redragon spacecraft redragon spacecraft launched aboard falcon_heavy launch_vehicle second preparatory mission leastwo mars transfer orbit via falcon_heavy launches third uncrewed preparatory mission first use thentire put spacecraft interplanetary trajectory carry heavy equipmento mars notably local power_plant first crewed flighto mars according schedule dozen people first_launch planned unclear whether overall schedule kept intact pushed back months however may nasand sources industry claimed spacex considering sending two dragon_spacecrafto mars window one early one late although spacex see_also colonization mars effect spaceflight human body cosmic human outpost human_spaceflight situ resource utilization life mars list manned mars mission plans th_century human mission mars direct mars stay space medicine mars externalinks rocket hard musk give speech life september colonization program october interplanetary_transport_system video youtube spacex september making humans species category manned missions mars category colonization mars category_spacex category_proposed reusable space_launch_systems category_space_tourism"},{"title":"Iper\u00fa","description":"extinction type status purpose headquarters lima per location coords region served nationwide membership language spanish english and sometimes others with publications in several other languages main organ parent organization affiliations promper and indecopi budget num staff num volunteers website iper tourist information and assistance or simply iper with lower case p is the per tourism office provided since by the peruvian governmenthrough the commission for the promotion of exports and tourism of per promper and the national institute for defense of competition and protection of intellectual property indecopi to provide domestic and foreign travelers with objective and impartial information as well asupport services the organization s logo is the international tourist information symbol a lower case white inside a blue circle followed by per the iper headquarters are in limand there are multilingual offices throughouthe country during iper handled cases including requests for information and for assistance or both all over peru iper has three core purposes to provide visitor information to advise tourists on relevant paperwork and procedures required by public and private institutions to contribute to the resolution of complaints from tourists against operators of tourist services iper provides free information and services for variousorts of travelers to and within peru including tourists businesspeople and academics before during and even after their trip the organization has a comprehensive database of registered tourism services in the country as well as information about places attractions routes and travel times iper also provides assistance in cases of problems arises during a trip or if tourist services are not provided as hired iper is responsible for handling claimsubmitted by tourists againsthe suppliers of tourism services with mediating and conciliatory but not punitive powers to resolve them a cooperation agreement on june between promper and indecopi established the tourist protection service spthrough this agreement indecopi gave to the new bureau the functions of thearlier consumer protection commission cpc in cases againstourism companies inoting the need for objective tourist information to visitors in order to prevent adverse incidents and improve the services provided by spt it was decided to add the tourist information service sit merging the functions of both services gave rise to iper tourist information and assistance the iper headquarters are in limand there are operations in regions of peruvian regions with local offices which are usually named withe city in which they are located eg the iper office in iquitos peruvian amazon is iper iquitos despite being a governmental organization is accessible in person by phone and by e mail hours a day every day of the week and year operators of iper typoically speak spanish language in the americaspanish and english languagenglish and some are fluent in other languages local offices can typically handle or more languages with staff on hand at any given time and provide published materials in spanish english french language french german languagerman italian language italian russian language russiand chinese language chinese in popular locales iper installs kiosks of tourist information events or places with large influx of visitors and foreignationalsuch as the celebration of the inti raymin cusco and the patronal feast of saint john in iquitos in the peruvian amazon list offices iper operates offices around the country in amazonas region amazonas ancash region ancash arequipayacucho cajamarca cusco lambayeque peru lambayeque la libertad region la libertad lima loreto region loreto piura puno tacnand tumbes peru tumbesee also tourism in peru visitor center externalinks official tourism website of peru category tourism agencies category tourism in peru category visitor centers","main_words":["extinction","type","status","purpose","headquarters","lima","per","location","coords","region","served","nationwide","membership","language","spanish","english","sometimes","others","publications","several","languages","main_organ","parent_organization","affiliations","promper","indecopi","budget","num","staff","num","volunteers","website","iper","tourist_information","assistance","simply","iper","lower","case","p","per","tourism","office","provided","since","peruvian","commission","promotion","exports","tourism","per","promper","national","institute","defense","competition","protection","intellectual","property","indecopi","provide","domestic","foreign","travelers","objective","information","well","services","organization","logo","symbol","lower","case","white","inside","blue","circle","followed","per","iper","headquarters","limand","offices","throughouthe_country","iper","handled","cases","including","requests","information","assistance","peru","iper","three","core","purposes","provide","visitor_information","advise","tourists","relevant","paperwork","procedures","required","public_private","institutions","contribute","resolution","complaints","tourists","operators","tourist","services","iper","provides","free","information","services","travelers","within","peru","including","tourists","businesspeople","academics","even","trip","organization","comprehensive","database","registered","tourism_services","country","well","information","places","attractions","routes","travel","times","iper","also_provides","assistance","cases","problems","trip","tourist","services","provided","hired","iper","responsible","handling","tourists","againsthe","suppliers","tourism_services","powers","resolve","cooperation","agreement","june","promper","indecopi","established","tourist","protection","service","agreement","indecopi","gave","new","bureau","functions","thearlier","consumer","protection","commission","cases","companies","need","objective","tourist_information","visitors","order","prevent","adverse","incidents","improve","services","provided","decided","add","tourist_information","service","sit","merging","functions","services","gave","rise","iper","tourist_information","assistance","iper","headquarters","limand","operations","regions","peruvian","regions","local","offices","usually","named","withe","city","located","iper","office","iquitos","peruvian","amazon","iper","iquitos","despite","governmental","organization","accessible","person","phone","e","mail","hours","day","every_day","week","year","operators","iper","speak","spanish_language","english_languagenglish","languages","local","offices","typically","handle","languages","staff","hand","given_time","provide","published","materials","spanish","english","french_language","french","german_languagerman","italian","language","italian","russian","language","russiand","chinese_language","chinese","popular","locales","iper","kiosks","tourist_information","events","places","large","influx","visitors","celebration","cusco","feast","saint","john","iquitos","peruvian","amazon","list","offices","iper","operates","offices","around","country","amazonas","region","amazonas","region","cusco","lambayeque","peru","lambayeque","la","libertad","region","la","libertad","lima","region","peru","also_tourism","peru","visitor_center","externalinks_official","tourism_website","peru","category_tourism","agencies_category_tourism","peru","category","visitor_centers"],"clean_bigrams":[["extinction","type"],["type","status"],["status","purpose"],["purpose","headquarters"],["headquarters","lima"],["lima","per"],["per","location"],["location","coords"],["coords","region"],["region","served"],["served","nationwide"],["nationwide","membership"],["membership","language"],["language","spanish"],["spanish","english"],["sometimes","others"],["languages","main"],["main","organ"],["organ","parent"],["parent","organization"],["organization","affiliations"],["affiliations","promper"],["indecopi","budget"],["budget","num"],["num","staff"],["staff","num"],["num","volunteers"],["volunteers","website"],["website","iper"],["iper","tourist"],["tourist","information"],["simply","iper"],["lower","case"],["case","p"],["per","tourism"],["tourism","office"],["office","provided"],["provided","since"],["per","promper"],["national","institute"],["intellectual","property"],["property","indecopi"],["provide","domestic"],["foreign","travelers"],["international","tourist"],["tourist","information"],["information","symbol"],["lower","case"],["case","white"],["white","inside"],["blue","circle"],["circle","followed"],["iper","headquarters"],["offices","throughouthe"],["throughouthe","country"],["iper","handled"],["handled","cases"],["cases","including"],["including","requests"],["peru","iper"],["three","core"],["core","purposes"],["provide","visitor"],["visitor","information"],["advise","tourists"],["relevant","paperwork"],["procedures","required"],["private","institutions"],["tourist","services"],["services","iper"],["iper","provides"],["provides","free"],["free","information"],["within","peru"],["peru","including"],["including","tourists"],["tourists","businesspeople"],["comprehensive","database"],["registered","tourism"],["tourism","services"],["places","attractions"],["attractions","routes"],["travel","times"],["times","iper"],["iper","also"],["also","provides"],["provides","assistance"],["tourist","services"],["services","provided"],["hired","iper"],["tourists","againsthe"],["againsthe","suppliers"],["tourism","services"],["cooperation","agreement"],["indecopi","established"],["tourist","protection"],["protection","service"],["agreement","indecopi"],["indecopi","gave"],["new","bureau"],["thearlier","consumer"],["consumer","protection"],["protection","commission"],["objective","tourist"],["tourist","information"],["prevent","adverse"],["adverse","incidents"],["services","provided"],["tourist","information"],["information","service"],["service","sit"],["sit","merging"],["services","gave"],["gave","rise"],["iper","tourist"],["tourist","information"],["iper","headquarters"],["peruvian","regions"],["local","offices"],["usually","named"],["named","withe"],["withe","city"],["iper","office"],["iquitos","peruvian"],["peruvian","amazon"],["iper","iquitos"],["iquitos","despite"],["governmental","organization"],["e","mail"],["mail","hours"],["day","every"],["every","day"],["year","operators"],["speak","spanish"],["spanish","language"],["english","languagenglish"],["languages","local"],["local","offices"],["typically","handle"],["given","time"],["provide","published"],["published","materials"],["spanish","english"],["english","french"],["french","language"],["language","french"],["french","german"],["german","languagerman"],["languagerman","italian"],["italian","language"],["language","italian"],["italian","russian"],["russian","language"],["language","russiand"],["russiand","chinese"],["chinese","language"],["language","chinese"],["popular","locales"],["locales","iper"],["tourist","information"],["information","events"],["large","influx"],["saint","john"],["iquitos","peruvian"],["peruvian","amazon"],["amazon","list"],["list","offices"],["offices","iper"],["iper","operates"],["operates","offices"],["offices","around"],["amazonas","region"],["region","amazonas"],["amazonas","region"],["cusco","lambayeque"],["lambayeque","peru"],["peru","lambayeque"],["lambayeque","la"],["la","libertad"],["libertad","region"],["region","la"],["la","libertad"],["libertad","lima"],["also","tourism"],["peru","visitor"],["visitor","center"],["center","externalinks"],["externalinks","official"],["official","tourism"],["tourism","website"],["peru","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"],["peru","category"],["category","visitor"],["visitor","centers"]],"all_collocations":["extinction type","type status","status purpose","purpose headquarters","headquarters lima","lima per","per location","location coords","coords region","region served","served nationwide","nationwide membership","membership language","language spanish","spanish english","sometimes others","languages main","main organ","organ parent","parent organization","organization affiliations","affiliations promper","indecopi budget","budget num","num staff","staff num","num volunteers","volunteers website","website iper","iper tourist","tourist information","simply iper","lower case","case p","per tourism","tourism office","office provided","provided since","per promper","national institute","intellectual property","property indecopi","provide domestic","foreign travelers","international tourist","tourist information","information symbol","lower case","case white","white inside","blue circle","circle followed","iper headquarters","offices throughouthe","throughouthe country","iper handled","handled cases","cases including","including requests","peru iper","three core","core purposes","provide visitor","visitor information","advise tourists","relevant paperwork","procedures required","private institutions","tourist services","services iper","iper provides","provides free","free information","within peru","peru including","including tourists","tourists businesspeople","comprehensive database","registered tourism","tourism services","places attractions","attractions routes","travel times","times iper","iper also","also provides","provides assistance","tourist services","services provided","hired iper","tourists againsthe","againsthe suppliers","tourism services","cooperation agreement","indecopi established","tourist protection","protection service","agreement indecopi","indecopi gave","new bureau","thearlier consumer","consumer protection","protection commission","objective tourist","tourist information","prevent adverse","adverse incidents","services provided","tourist information","information service","service sit","sit merging","services gave","gave rise","iper tourist","tourist information","iper headquarters","peruvian regions","local offices","usually named","named withe","withe city","iper office","iquitos peruvian","peruvian amazon","iper iquitos","iquitos despite","governmental organization","e mail","mail hours","day every","every day","year operators","speak spanish","spanish language","english languagenglish","languages local","local offices","typically handle","given time","provide published","published materials","spanish english","english french","french language","language french","french german","german languagerman","languagerman italian","italian language","language italian","italian russian","russian language","language russiand","russiand chinese","chinese language","language chinese","popular locales","locales iper","tourist information","information events","large influx","saint john","iquitos peruvian","peruvian amazon","amazon list","list offices","offices iper","iper operates","operates offices","offices around","amazonas region","region amazonas","amazonas region","cusco lambayeque","lambayeque peru","peru lambayeque","lambayeque la","la libertad","libertad region","region la","la libertad","libertad lima","also tourism","peru visitor","visitor center","center externalinks","externalinks official","official tourism","tourism website","peru category","category tourism","tourism agencies","agencies category","category tourism","peru category","category visitor","visitor centers"],"new_description":"extinction type status purpose headquarters lima per location coords region served nationwide membership language spanish english sometimes others publications several languages main_organ parent_organization affiliations promper indecopi budget num staff num volunteers website iper tourist_information assistance simply iper lower case p per tourism office provided since peruvian commission promotion exports tourism per promper national institute defense competition protection intellectual property indecopi provide domestic foreign travelers objective information well services organization logo international_tourist_information symbol lower case white inside blue circle followed per iper headquarters limand offices throughouthe_country iper handled cases including requests information assistance peru iper three core purposes provide visitor_information advise tourists relevant paperwork procedures required public_private institutions contribute resolution complaints tourists operators tourist services iper provides free information services travelers within peru including tourists businesspeople academics even trip organization comprehensive database registered tourism_services country well information places attractions routes travel times iper also_provides assistance cases problems trip tourist services provided hired iper responsible handling tourists againsthe suppliers tourism_services powers resolve cooperation agreement june promper indecopi established tourist protection service agreement indecopi gave new bureau functions thearlier consumer protection commission cases companies need objective tourist_information visitors order prevent adverse incidents improve services provided decided add tourist_information service sit merging functions services gave rise iper tourist_information assistance iper headquarters limand operations regions peruvian regions local offices usually named withe city located iper office iquitos peruvian amazon iper iquitos despite governmental organization accessible person phone e mail hours day every_day week year operators iper speak spanish_language english_languagenglish languages local offices typically handle languages staff hand given_time provide published materials spanish english french_language french german_languagerman italian language italian russian language russiand chinese_language chinese popular locales iper kiosks tourist_information events places large influx visitors celebration cusco feast saint john iquitos peruvian amazon list offices iper operates offices around country amazonas region amazonas region cusco lambayeque peru lambayeque la libertad region la libertad lima region peru also_tourism peru visitor_center externalinks_official tourism_website peru category_tourism agencies_category_tourism peru category visitor_centers"},{"title":"Irving Convention and Visitors Bureau","description":"the irving convention and visitors bureau also known as the icvb is an independent nonprofit organization which aims to direct individuals traveling to dallas and fort worth for convention meeting business conventions and for leisure it is a hospitality industry which makes billion annually icvb is funded by irving s hotel and motel tax collections which includes hundreds of restaurants and hotels whichave more than rooms the irving cvb is not a membership based organization irving was founded in by jo schulze and otis brown after purchasing of land which is now irving texas irving the firstwo town lotsold in december athe public auction the irving cvbuilding is located immediately adjacento dallas fort worth international airport alongside las colinas it is located in between dallas and fort worth icvb received the gold service award fromeetings and conventions magazine meetings and conventions magazine the awards of excellence from corporate incentive travel magazine corporate incentive travel magazine and the successful meetings pinnacle award abouthe irving cvb about irving externalinks irving cvb official website irving chamber of commerce mustangs of las colinas category organizations based in irving texas category tourism agencies category tourism in texas","main_words":["irving","convention_visitors_bureau","also_known","independent","nonprofit","organization","aims","direct","individuals","traveling","dallas","fort_worth","convention_meeting","business","conventions","leisure","hospitality_industry","makes","billion","annually","funded","irving","hotel","motel","tax","collections","includes","hundreds","restaurants_hotels","whichave","rooms","irving","cvb","membership","based","organization","irving","founded","otis","brown","purchasing","land","irving","texas","irving","firstwo","town","december","athe","public","auction","irving","located","immediately","adjacento","dallas","fort_worth","international_airport","alongside","las","located","dallas","fort_worth","received","gold","service","award","conventions","magazine","meetings","conventions","magazine","awards","excellence","corporate","incentive","travel_magazine","corporate","incentive","travel_magazine","successful","meetings","award","abouthe","irving","cvb","irving","externalinks","irving","cvb","official_website","irving","chamber","commerce","las","category_organizations_based","irving","agencies_category_tourism","texas"],"clean_bigrams":[["irving","convention"],["visitors","bureau"],["bureau","also"],["also","known"],["independent","nonprofit"],["nonprofit","organization"],["direct","individuals"],["individuals","traveling"],["dallas","fort"],["fort","worth"],["convention","meeting"],["meeting","business"],["business","conventions"],["hospitality","industry"],["makes","billion"],["billion","annually"],["motel","tax"],["tax","collections"],["includes","hundreds"],["hotels","whichave"],["irving","cvb"],["membership","based"],["based","organization"],["organization","irving"],["otis","brown"],["irving","texas"],["texas","irving"],["firstwo","town"],["december","athe"],["athe","public"],["public","auction"],["located","immediately"],["immediately","adjacento"],["adjacento","dallas"],["dallas","fort"],["fort","worth"],["worth","international"],["international","airport"],["airport","alongside"],["alongside","las"],["dallas","fort"],["fort","worth"],["gold","service"],["service","award"],["conventions","magazine"],["magazine","meetings"],["conventions","magazine"],["corporate","incentive"],["incentive","travel"],["travel","magazine"],["magazine","corporate"],["corporate","incentive"],["incentive","travel"],["travel","magazine"],["successful","meetings"],["award","abouthe"],["abouthe","irving"],["irving","cvb"],["irving","externalinks"],["externalinks","irving"],["irving","cvb"],["cvb","official"],["official","website"],["website","irving"],["irving","chamber"],["category","organizations"],["organizations","based"],["irving","texas"],["texas","category"],["category","tourism"],["tourism","agencies"],["agencies","category"],["category","tourism"]],"all_collocations":["irving convention","visitors bureau","bureau also","also known","independent nonprofit","nonprofit organization","direct individuals","individuals traveling","dallas fort","fort worth","convention meeting","meeting business","business conventions","hospitality industry","makes billion","billion annually","motel tax","tax collections","includes hundreds","hotels whichave","irving cvb","membership based","based organization","organization irving","otis brown","irving texas","texas irving","firstwo town","december athe","athe public","public auction","located immediately","immediately adjacento","adjacento dallas","dallas fort","fort worth","worth international","international airport","airport alongside","alongside las","dallas fort","fort worth","gold service","service award","conventions magazine","magazine meetings","conventions magazine","corporate incentive","incentive travel","travel magazine","magazine corporate","corporate incentive","incentive travel","travel magazine","successful meetings","award abouthe","abouthe irving","irving cvb","irving externalinks","externalinks irving","irving cvb","cvb official","official website","website irving","irving chamber","category organizations","organizations based","irving texas","texas category","category tourism","tourism agencies","agencies category","category tourism"],"new_description":"irving convention_visitors_bureau also_known independent nonprofit organization aims direct individuals traveling dallas fort_worth convention_meeting business conventions leisure hospitality_industry makes billion annually funded irving hotel motel tax collections includes hundreds restaurants_hotels whichave rooms irving cvb membership based organization irving founded otis brown purchasing land irving texas irving firstwo town december athe public auction irving located immediately adjacento dallas fort_worth international_airport alongside las located dallas fort_worth received gold service award conventions magazine meetings conventions magazine awards excellence corporate incentive travel_magazine corporate incentive travel_magazine successful meetings award abouthe irving cvb irving externalinks irving cvb official_website irving chamber commerce las category_organizations_based irving texas_category_tourism agencies_category_tourism texas"},{"title":"Izakaya","description":"file izakaya exterior gotandajpg thumb upright an izakaya in gotanda tokyo the signboard on the right shows a menu with regular dishes left and season s entry nabe right an is a type of informal japanese gastropub they are casual places for after work drinking they have been compared to irish pubs tapas bars and early american saloons and tavern s etymology the word izakaya entered thenglish language by it is a compound word consisting of i to stay and sakaya sake shop indicating that izakaya originated from sake shops that allowed customers to sit on the premises to drink izakayare sometimes called akachin red lantern in daily conversation asuch paper lantern s are traditionally found in front of them history file taipeizakaya in jpg thumb taipeizakaya in historian penelope francks points to the development of the izakaya in japan especially in edo and along main routes as one indicator of the growing popularity of sake as a consumer good by the lateighteenth century before the meiji period people drank alcohol in sake shopstanding some storestarted using sake barrels astools later snacks were added an izakaya in tokyo made international news in when robert f kennedy ate there during a meeting with japanese labor leaders bobby regales japanese with song rendition monroe morning world february via newspaperscom dining style file uoshinogizaka jpg thumb upright people at an izakaya sitting by the bar and facing the kitchen izakayas are often likened to taverns or pubs buthere are a number of differences depending on the izakaya customers either sit on tatami mats andine from low tables as in the traditional japanese style or sit on chairs andrink dine from tables many izakaya offer a choice of both as well aseating by the bar some izakaya restaurants are also tachi nomi style literally translated as drinking while standing usually customers are given an oshibori wetowel to clean their hands the towels are cold in summer and hot in winter next a tiny snack an appetizer called an ot shin the tokyo area or tsukidashin the osaka kobe area will be served it is local custom and usually charged onto the bill in lieu of an cover chargentry fee the menu may be on the table displayed on walls or both picture menus are common in larger izakaya food andrink are ordered throughouthe course of the session as desired they are broughto the table and the bill is added up athend of the session unlike other japanese styles of eating food items are usually shared by everyone athe table similar to spanish tapas common formats for izakayas well as much other dining in japan are known as nomi h dai all you can drink and tabe h dai all you can eat for a set price person customers can continue ordering as much food and or drink as they wish usually with a time limit of twor three hours izakaya dining can be intimidating to non japanese because of the wide variety of menu items and the slow pace food is normally ordered slowly over several courses rather than all at once the kitchen will serve the food when it is ready rather than in the formal courses of western restaurants typically a beer is ordered when one isitting down before perusing the menu quickly preparedishesuch as hiyayakkor edamame are ordered first followed with progressively more robust flavorsuch as yakitori or karage finishing the meal with a rice or noodle dish to fill up how to izakaya kampai kampaius retrieved may typical menu items file izakayastylemenu dec svg px thumb right a mock up of an izakaya style menu there are a wide variety of izakaya offering all sorts of dishes items typically available are alcoholic drinksake nihonshu is a japanese rice wine that is made through the fermentation of rice that has been polished to remove the bran unlike wine the alcohol in sake is produced by the starch being converted into sugars beer biiru sh ch cocktail sour mix saw chuhai wine whisky somestablishments offer a bottle keep service where a patron can purchase an entire bottle of liquor usually sh ch or whisky and store the unfinished portion for a future visit food file tori karaage by clanchou in kanazawa ishikawajpg thumb chicken karaage file beer and edamame boild green soybeans jpg thumb cold edamame beans and a cold japanese beer izakaya food is usually more substantial than tapas or mezze many items are designed to be sharedamame boiled and salted soybean pods gomae various vegetableserved with a sesame dressing karaage bite sized fried chicken yakitori kushiyaki grilled meat or vegetable skewersalad sashimi slices of raw fish tebasaki chicken wings tofu agedashi dofu deep fried tofu in brothiyayakko chilled silken tofu with toppings tsukemono pickles yakisoba noodles yakitori grilled chicken skewers rice dishesuch as ochazuke and noodle dishesuch as yakisobare sometimes eaten athend to round off a drinking session for the most parthe japanese do not eat rice or noodleshushoku staple food athe same time as they drink alcohol since sake brewed from rice traditionally takes the place of rice in a meal types izakaya were traditionally down to earth places where men drank sake and beer after work thatrend is complemented by a growing population of independent women and students many izakaya today cater to a more diverse clientele by offering cocktails and wines as well as by improving the interior chain izakayare often large and offer an extensive selection ofood andrink allowing ito host big sometimes rowdy parties watami shoya shirokiya tsubohachi and murasaki are some well known chains in japan akachin file cyochin jpg thumbnail right upright akachin red lantern with kanjizakaya written on it file izakaya tokyojpg thumbnail right upright akachin for nikomi right and nobori banner for nabe center izakayas are often called akachin red lantern after the red paper lantern s that are traditionally displayed outside today the term usually refers to small non chain izakaya some unrelated businesses that are not izakayalsometimes display red lanterns cosplay izakaya became popular in the s the staff wears the costume and waits on customersometimeshows are run costumes include those for butlers and maids oden ya establishmentspecialising in oden are called oden ya they usually take the form of street food street stalls with seating and are popular in winterobatayaki robatayaki are places in which customersit around an open hearth on whichefs grill seafood and vegetables fresh ingredients are displayed for customers to point at whenever they wantorder file asakusa panoramio ryuetsu katojpg oden street stall in the property of sens jin asakusa file robatayakijpg activity at a robatayaki seafood and vegetables to cook displayed yakitori yakitori ya specialise in yakitori the chicken skewers are often grilled in front of customers file typical yakitori jpg yakitorin literature tv dramand film izakayappear in japanese novels with adaptations to tv dramand film they have also inspired mangand gekiga modernovel is an example where the main character manages an izakaya in the film adaptation ken takakura played the part of ch ji a tv drama was produced in on friday drama theater fuji television images of izakaya in jidaigeki novels and films reflecthe modern drinking andining style of today sitting atables this was not often seen in countryside aside from station towns along kaid highways in the th to mid th century capacities at izakaya werestricted in major cities in the period that jidaigeki tv shows and films movieset in edo see also cuisine of japan list of public house topics ramen shop snack bar sunakku tavern footnotes workokumino bungaku color edition volume last yamate first kiichir date december publisher kawadeshob language japanese ref harv furthereading izakaya the japanese pub cookbook by mark robinson photographs by masashi kuma kodansha international izakaya japanese bar food hardie grant publishing photographs by chris chen izakaya by hideo dekura new holland publishers externalinks category japanese culture category japanese restaurants category types of drinking establishment category types of restaurants","main_words":["file","izakaya","exterior","thumb","upright","izakaya","tokyo","right","shows","menu","regular","dishes","left","season","entry","right","type","informal","japanese","gastropub","casual","places","work","drinking","compared","tapas","bars","early","american","saloons","tavern","etymology","word","izakaya","entered","thenglish_language","compound","word","consisting","stay","sake","shop","indicating","izakaya","originated","sake","shops","allowed","customers","sit","premises","drink","sometimes_called","akachin","red","lantern","daily","conversation","asuch","paper","lantern","traditionally","found","front","thumb","historian","points","development","izakaya","japan","especially","along","main","routes","one","indicator","growing","popularity","sake","consumer","good","century","period","people","drank","alcohol","sake","using","sake","barrels","later","snacks","added","izakaya","tokyo","made","international","news","robert","ate","meeting","japanese","labor","leaders","bobby","japanese","song","monroe","morning","world","february","via","dining","style","file_jpg","thumb","upright","people","izakaya","sitting","bar","facing","kitchen","often","likened","taverns","pubs","buthere","number","differences","depending","izakaya","customers","either","sit","low","tables","traditional","japanese","style","sit","chairs","andrink","dine","tables","many","izakaya","offer","choice","well","bar","izakaya","restaurants","also","style","literally","translated","drinking","standing","usually","customers","given","clean","hands","towels","cold","summer","hot","winter","next","tiny","snack","appetizer","called","shin","tokyo","area","osaka","kobe","area_served","local","custom","usually","charged","onto","bill","cover","fee","menu","may","table","displayed","walls","picture","menus","common","larger","izakaya","food_andrink","ordered","throughouthe","course","session","desired","broughto","table","bill","added","athend","session","unlike","japanese","styles","eating","food_items","usually","shared","everyone","athe_table","similar","spanish","tapas","common","formats","well","much","dining","japan","known","h","dai","drink","h","dai","eat","set","price","person","customers","continue","ordering","much","food","drink","wish","usually","time","limit","twor","three","hours","izakaya","dining","non","japanese","wide_variety","menu_items","slow","pace","food","normally","ordered","slowly","several","courses","rather","kitchen","serve_food","ready","rather","formal","courses","western","restaurants","typically","beer","ordered","one","menu","quickly","ordered","first","followed","progressively","robust","yakitori","finishing","meal","rice","noodle","dish","fill","izakaya","retrieved_may","typical","menu_items","file","dec","svg","px_thumb","right","mock","izakaya","style","menu","wide_variety","izakaya","offering","sorts","dishes","items","typically","available","alcoholic","japanese","rice","wine","made","fermentation","rice","remove","unlike","wine","alcohol","sake","produced","converted","beer","cocktail","sour","mix","saw","wine","whisky","somestablishments","offer","bottle","keep","service","patron","purchase","entire","bottle","liquor","usually","whisky","store","portion","future","visit","food","file","thumb","chicken","file","beer","green","jpg","thumb","cold","beans","cold","japanese","beer","izakaya","food","usually","substantial","tapas","many","items","designed","boiled","salted","pods","various","sesame","dressing","bite","sized","fried_chicken","yakitori","grilled","meat","vegetable","slices","raw","fish","chicken","wings","tofu","deep_fried","tofu","tofu","pickles","noodles","yakitori","grilled","chicken","rice","dishesuch","noodle","dishesuch","sometimes","eaten","athend","round","drinking","session","parthe","japanese","eat","rice","staple","food","athe_time","drink","alcohol","since","sake","brewed","rice","traditionally","takes_place","rice","meal","types","izakaya","traditionally","earth","places","men","drank","sake","beer","work","growing","population","independent","women","students","many","izakaya","today","cater","diverse","clientele","offering","cocktails","wines","well","improving","interior","chain","often","large","offer","extensive","selection","ofood","andrink","allowing","ito","host","big","sometimes","parties","well_known","chains","japan","akachin","file_jpg","akachin","red","lantern","written","file","izakaya","akachin","right","banner","center","often_called","akachin","red","lantern","red","paper","lantern","traditionally","displayed","outside","today","term","usually","refers","small","non","chain","izakaya","unrelated","businesses","display","red","cosplay","izakaya","became_popular","staff","costume","waits","run","costumes","include","butlers","maids","oden","oden","called","oden","usually","take","form","street_food","street","stalls","seating","popular","places","around","open","grill","seafood","vegetables","fresh","ingredients","displayed","customers","point","whenever","file","oden","street","stall","property","jin","file","activity","seafood","vegetables","cook","displayed","yakitori","yakitori","specialise","yakitori","chicken","often","grilled","front","customers","file","typical","yakitori","jpg","literature","film","japanese","novels","adaptations","film","also","inspired","example","main","character","manages","izakaya","film","adaptation","ken","played","part","drama","produced","friday","drama","theater","fuji","television","images","izakaya","novels","films","reflecthe","modern","drinking","andining","style","today","sitting","atables","often_seen","countryside","aside","station","towns","along","highways","th","mid_th","century","capacities","izakaya","major_cities","period","shows","films","see_also","cuisine","japan","list","public_house_topics","ramen","shop","snack_bar","tavern","footnotes","color","edition","volume","last","first","date","december","publisher","language","japanese","ref","furthereading","izakaya","japanese","pub","cookbook","mark","robinson","photographs","international","izakaya","japanese","bar","food","grant","publishing","photographs","chris","chen","izakaya","new","holland","publishers","externalinks_category","japanese","culture_category","japanese","restaurants_category_types","drinking_establishment_category","types","restaurants"],"clean_bigrams":[["file","izakaya"],["izakaya","exterior"],["thumb","upright"],["right","shows"],["regular","dishes"],["dishes","left"],["informal","japanese"],["japanese","gastropub"],["casual","places"],["work","drinking"],["irish","pubs"],["pubs","tapas"],["tapas","bars"],["early","american"],["american","saloons"],["word","izakaya"],["izakaya","entered"],["entered","thenglish"],["thenglish","language"],["compound","word"],["word","consisting"],["sake","shop"],["shop","indicating"],["izakaya","originated"],["sake","shops"],["allowed","customers"],["sometimes","called"],["called","akachin"],["akachin","red"],["red","lantern"],["daily","conversation"],["conversation","asuch"],["asuch","paper"],["paper","lantern"],["traditionally","found"],["history","file"],["jpg","thumb"],["japan","especially"],["along","main"],["main","routes"],["one","indicator"],["growing","popularity"],["consumer","good"],["period","people"],["people","drank"],["drank","alcohol"],["using","sake"],["sake","barrels"],["later","snacks"],["tokyo","made"],["made","international"],["international","news"],["robert","f"],["f","kennedy"],["kennedy","ate"],["japanese","labor"],["labor","leaders"],["leaders","bobby"],["monroe","morning"],["morning","world"],["world","february"],["february","via"],["dining","style"],["style","file"],["jpg","thumb"],["thumb","upright"],["upright","people"],["izakaya","sitting"],["often","likened"],["pubs","buthere"],["differences","depending"],["izakaya","customers"],["customers","either"],["either","sit"],["low","tables"],["traditional","japanese"],["japanese","style"],["chairs","andrink"],["andrink","dine"],["tables","many"],["many","izakaya"],["izakaya","offer"],["izakaya","restaurants"],["style","literally"],["literally","translated"],["standing","usually"],["usually","customers"],["winter","next"],["tiny","snack"],["appetizer","called"],["tokyo","area"],["osaka","kobe"],["kobe","area"],["local","custom"],["usually","charged"],["charged","onto"],["menu","may"],["table","displayed"],["picture","menus"],["larger","izakaya"],["izakaya","food"],["food","andrink"],["ordered","throughouthe"],["throughouthe","course"],["session","unlike"],["japanese","styles"],["eating","food"],["food","items"],["usually","shared"],["everyone","athe"],["athe","table"],["table","similar"],["spanish","tapas"],["tapas","common"],["common","formats"],["h","dai"],["h","dai"],["set","price"],["price","person"],["person","customers"],["continue","ordering"],["much","food"],["wish","usually"],["time","limit"],["twor","three"],["three","hours"],["hours","izakaya"],["izakaya","dining"],["non","japanese"],["wide","variety"],["menu","items"],["slow","pace"],["pace","food"],["normally","ordered"],["ordered","slowly"],["several","courses"],["courses","rather"],["ready","rather"],["formal","courses"],["western","restaurants"],["restaurants","typically"],["menu","quickly"],["ordered","first"],["first","followed"],["noodle","dish"],["retrieved","may"],["may","typical"],["typical","menu"],["menu","items"],["items","file"],["dec","svg"],["svg","px"],["px","thumb"],["thumb","right"],["izakaya","style"],["style","menu"],["wide","variety"],["izakaya","offering"],["dishes","items"],["items","typically"],["typically","available"],["japanese","rice"],["rice","wine"],["unlike","wine"],["cocktail","sour"],["sour","mix"],["mix","saw"],["wine","whisky"],["whisky","somestablishments"],["somestablishments","offer"],["bottle","keep"],["keep","service"],["entire","bottle"],["liquor","usually"],["future","visit"],["visit","food"],["food","file"],["thumb","chicken"],["file","beer"],["jpg","thumb"],["thumb","cold"],["cold","japanese"],["japanese","beer"],["beer","izakaya"],["izakaya","food"],["many","items"],["sesame","dressing"],["bite","sized"],["sized","fried"],["fried","chicken"],["chicken","yakitori"],["yakitori","grilled"],["grilled","meat"],["raw","fish"],["chicken","wings"],["wings","tofu"],["deep","fried"],["fried","tofu"],["noodles","yakitori"],["yakitori","grilled"],["grilled","chicken"],["rice","dishesuch"],["noodle","dishesuch"],["sometimes","eaten"],["eaten","athend"],["drinking","session"],["parthe","japanese"],["eat","rice"],["staple","food"],["food","athe"],["drink","alcohol"],["alcohol","since"],["since","sake"],["sake","brewed"],["rice","traditionally"],["traditionally","takes"],["meal","types"],["types","izakaya"],["earth","places"],["men","drank"],["drank","sake"],["growing","population"],["independent","women"],["students","many"],["many","izakaya"],["izakaya","today"],["today","cater"],["diverse","clientele"],["offering","cocktails"],["interior","chain"],["often","large"],["extensive","selection"],["selection","ofood"],["ofood","andrink"],["andrink","allowing"],["allowing","ito"],["ito","host"],["host","big"],["big","sometimes"],["well","known"],["known","chains"],["japan","akachin"],["akachin","file"],["jpg","thumbnail"],["thumbnail","right"],["right","upright"],["upright","akachin"],["akachin","red"],["red","lantern"],["file","izakaya"],["thumbnail","right"],["right","upright"],["upright","akachin"],["often","called"],["called","akachin"],["akachin","red"],["red","lantern"],["red","paper"],["paper","lantern"],["traditionally","displayed"],["displayed","outside"],["outside","today"],["term","usually"],["usually","refers"],["small","non"],["non","chain"],["chain","izakaya"],["unrelated","businesses"],["display","red"],["cosplay","izakaya"],["izakaya","became"],["became","popular"],["run","costumes"],["costumes","include"],["maids","oden"],["called","oden"],["usually","take"],["street","food"],["food","street"],["street","stalls"],["grill","seafood"],["vegetables","fresh"],["fresh","ingredients"],["oden","street"],["street","stall"],["cook","displayed"],["displayed","yakitori"],["yakitori","yakitori"],["often","grilled"],["customers","file"],["file","typical"],["typical","yakitori"],["yakitori","jpg"],["literature","tv"],["japanese","novels"],["also","inspired"],["main","character"],["character","manages"],["film","adaptation"],["adaptation","ken"],["tv","drama"],["friday","drama"],["drama","theater"],["theater","fuji"],["fuji","television"],["television","images"],["films","reflecthe"],["reflecthe","modern"],["modern","drinking"],["drinking","andining"],["andining","style"],["today","sitting"],["sitting","atables"],["often","seen"],["countryside","aside"],["station","towns"],["towns","along"],["mid","th"],["th","century"],["century","capacities"],["major","cities"],["tv","shows"],["see","also"],["also","cuisine"],["japan","list"],["public","house"],["house","topics"],["topics","ramen"],["ramen","shop"],["shop","snack"],["snack","bar"],["tavern","footnotes"],["color","edition"],["edition","volume"],["volume","last"],["date","december"],["december","publisher"],["language","japanese"],["japanese","ref"],["furthereading","izakaya"],["izakaya","japanese"],["japanese","pub"],["pub","cookbook"],["mark","robinson"],["robinson","photographs"],["international","izakaya"],["izakaya","japanese"],["japanese","bar"],["bar","food"],["grant","publishing"],["publishing","photographs"],["chris","chen"],["chen","izakaya"],["new","holland"],["holland","publishers"],["publishers","externalinks"],["externalinks","category"],["category","japanese"],["japanese","culture"],["culture","category"],["category","japanese"],["japanese","restaurants"],["restaurants","category"],["category","types"],["drinking","establishment"],["establishment","category"],["category","types"]],"all_collocations":["file izakaya","izakaya exterior","right shows","regular dishes","dishes left","informal japanese","japanese gastropub","casual places","work drinking","irish pubs","pubs tapas","tapas bars","early american","american saloons","word izakaya","izakaya entered","entered thenglish","thenglish language","compound word","word consisting","sake shop","shop indicating","izakaya originated","sake shops","allowed customers","sometimes called","called akachin","akachin red","red lantern","daily conversation","conversation asuch","asuch paper","paper lantern","traditionally found","history file","japan especially","along main","main routes","one indicator","growing popularity","consumer good","period people","people drank","drank alcohol","using sake","sake barrels","later snacks","tokyo made","made international","international news","robert f","f kennedy","kennedy ate","japanese labor","labor leaders","leaders bobby","monroe morning","morning world","world february","february via","dining style","style file","upright people","izakaya sitting","often likened","pubs buthere","differences depending","izakaya customers","customers either","either sit","low tables","traditional japanese","japanese style","chairs andrink","andrink dine","tables many","many izakaya","izakaya offer","izakaya restaurants","style literally","literally translated","standing usually","usually customers","winter next","tiny snack","appetizer called","tokyo area","osaka kobe","kobe area","local custom","usually charged","charged onto","menu may","table displayed","picture menus","larger izakaya","izakaya food","food andrink","ordered throughouthe","throughouthe course","session unlike","japanese styles","eating food","food items","usually shared","everyone athe","athe table","table similar","spanish tapas","tapas common","common formats","h dai","h dai","set price","price person","person customers","continue ordering","much food","wish usually","time limit","twor three","three hours","hours izakaya","izakaya dining","non japanese","wide variety","menu items","slow pace","pace food","normally ordered","ordered slowly","several courses","courses rather","ready rather","formal courses","western restaurants","restaurants typically","menu quickly","ordered first","first followed","noodle dish","retrieved may","may typical","typical menu","menu items","items file","dec svg","svg px","px thumb","izakaya style","style menu","wide variety","izakaya offering","dishes items","items typically","typically available","japanese rice","rice wine","unlike wine","cocktail sour","sour mix","mix saw","wine whisky","whisky somestablishments","somestablishments offer","bottle keep","keep service","entire bottle","liquor usually","future visit","visit food","food file","thumb chicken","file beer","thumb cold","cold japanese","japanese beer","beer izakaya","izakaya food","many items","sesame dressing","bite sized","sized fried","fried chicken","chicken yakitori","yakitori grilled","grilled meat","raw fish","chicken wings","wings tofu","deep fried","fried tofu","noodles yakitori","yakitori grilled","grilled chicken","rice dishesuch","noodle dishesuch","sometimes eaten","eaten athend","drinking session","parthe japanese","eat rice","staple food","food athe","drink alcohol","alcohol since","since sake","sake brewed","rice traditionally","traditionally takes","meal types","types izakaya","earth places","men drank","drank sake","growing population","independent women","students many","many izakaya","izakaya today","today cater","diverse clientele","offering cocktails","interior chain","often large","extensive selection","selection ofood","ofood andrink","andrink allowing","allowing ito","ito host","host big","big sometimes","well known","known chains","japan akachin","akachin file","thumbnail right","right upright","upright akachin","akachin red","red lantern","file izakaya","thumbnail right","right upright","upright akachin","often called","called akachin","akachin red","red lantern","red paper","paper lantern","traditionally displayed","displayed outside","outside today","term usually","usually refers","small non","non chain","chain izakaya","unrelated businesses","display red","cosplay izakaya","izakaya became","became popular","run costumes","costumes include","maids oden","called oden","usually take","street food","food street","street stalls","grill seafood","vegetables fresh","fresh ingredients","oden street","street stall","cook displayed","displayed yakitori","yakitori yakitori","often grilled","customers file","file typical","typical yakitori","yakitori jpg","literature tv","japanese novels","also inspired","main character","character manages","film adaptation","adaptation ken","tv drama","friday drama","drama theater","theater fuji","fuji television","television images","films reflecthe","reflecthe modern","modern drinking","drinking andining","andining style","today sitting","sitting atables","often seen","countryside aside","station towns","towns along","mid th","th century","century capacities","major cities","tv shows","see also","also cuisine","japan list","public house","house topics","topics ramen","ramen shop","shop snack","snack bar","tavern footnotes","color edition","edition volume","volume last","date december","december publisher","language japanese","japanese ref","furthereading izakaya","izakaya japanese","japanese pub","pub cookbook","mark robinson","robinson photographs","international izakaya","izakaya japanese","japanese bar","bar food","grant publishing","publishing photographs","chris chen","chen izakaya","new holland","holland publishers","publishers externalinks","externalinks category","category japanese","japanese culture","culture category","category japanese","japanese restaurants","restaurants category","category types","drinking establishment","establishment category","category types"],"new_description":"file izakaya exterior thumb upright izakaya tokyo right shows menu regular dishes left season entry right type informal japanese gastropub casual places work drinking compared irish_pubs tapas bars early american saloons tavern etymology word izakaya entered thenglish_language compound word consisting stay sake shop indicating izakaya originated sake shops allowed customers sit premises drink sometimes_called akachin red lantern daily conversation asuch paper lantern traditionally found front history_file_jpg thumb historian points development izakaya japan especially along main routes one indicator growing popularity sake consumer good century period people drank alcohol sake using sake barrels later snacks added izakaya tokyo made international news robert f_kennedy ate meeting japanese labor leaders bobby japanese song monroe morning world february via dining style file_jpg thumb upright people izakaya sitting bar facing kitchen often likened taverns pubs buthere number differences depending izakaya customers either sit low tables traditional japanese style sit chairs andrink dine tables many izakaya offer choice well bar izakaya restaurants also style literally translated drinking standing usually customers given clean hands towels cold summer hot winter next tiny snack appetizer called shin tokyo area osaka kobe area_served local custom usually charged onto bill cover fee menu may table displayed walls picture menus common larger izakaya food_andrink ordered throughouthe course session desired broughto table bill added athend session unlike japanese styles eating food_items usually shared everyone athe_table similar spanish tapas common formats well much dining japan known h dai drink h dai eat set price person customers continue ordering much food drink wish usually time limit twor three hours izakaya dining non japanese wide_variety menu_items slow pace food normally ordered slowly several courses rather kitchen serve_food ready rather formal courses western restaurants typically beer ordered one menu quickly ordered first followed progressively robust yakitori finishing meal rice noodle dish fill izakaya retrieved_may typical menu_items file dec svg px_thumb right mock izakaya style menu wide_variety izakaya offering sorts dishes items typically available alcoholic japanese rice wine made fermentation rice remove unlike wine alcohol sake produced converted beer cocktail sour mix saw wine whisky somestablishments offer bottle keep service patron purchase entire bottle liquor usually whisky store portion future visit food file thumb chicken file beer green jpg thumb cold beans cold japanese beer izakaya food usually substantial tapas many items designed boiled salted pods various sesame dressing bite sized fried_chicken yakitori grilled meat vegetable slices raw fish chicken wings tofu deep_fried tofu tofu pickles noodles yakitori grilled chicken rice dishesuch noodle dishesuch sometimes eaten athend round drinking session parthe japanese eat rice staple food athe_time drink alcohol since sake brewed rice traditionally takes_place rice meal types izakaya traditionally earth places men drank sake beer work growing population independent women students many izakaya today cater diverse clientele offering cocktails wines well improving interior chain often large offer extensive selection ofood andrink allowing ito host big sometimes parties well_known chains japan akachin file_jpg thumbnail_right_upright akachin red lantern written file izakaya thumbnail_right_upright akachin right banner center often_called akachin red lantern red paper lantern traditionally displayed outside today term usually refers small non chain izakaya unrelated businesses display red cosplay izakaya became_popular staff costume waits run costumes include butlers maids oden oden called oden usually take form street_food street stalls seating popular places around open grill seafood vegetables fresh ingredients displayed customers point whenever file oden street stall property jin file activity seafood vegetables cook displayed yakitori yakitori specialise yakitori chicken often grilled front customers file typical yakitori jpg literature tv film japanese novels adaptations tv film also inspired example main character manages izakaya film adaptation ken played part tv drama produced friday drama theater fuji television images izakaya novels films reflecthe modern drinking andining style today sitting atables often_seen countryside aside station towns along highways th mid_th century capacities izakaya major_cities period tv shows films see_also cuisine japan list public_house_topics ramen shop snack_bar tavern footnotes color edition volume last first date december publisher language japanese ref furthereading izakaya japanese pub cookbook mark robinson photographs international izakaya japanese bar food grant publishing photographs chris chen izakaya new holland publishers externalinks_category japanese culture_category japanese restaurants_category_types drinking_establishment_category types restaurants"},{"title":"Jacobs' Inn","description":"jacob s inn was a notable th century inn located in thompson connecticuthe inn was founded by nathaniel jacobs who was born in hinghamassachusetts in he boughtwo large properties in thompson in for in and stayed there for the rest of his life he was an important member of the congregational churche died in at age and the inn was taken over by hison john jacobs after his death john jacobs was known as landlord jacobs the inn was called a halfway house because it was approximately halfway between hartford and boston the inn was notable because both george washington and the marquis de lafayette spentime there washingtonce wrote in his journal that he apparently did not enjoy a breakfasthat he had athe inn once washington s coach lefthe inn without him but he was able tovertake it on foot also notably lafayette left his masonic apron athe inn and it was passedown through the jacobs family category drinking establishments category thirteen colonies","main_words":["jacob","inn","notable","th_century","inn","located","thompson","inn","founded","nathaniel","jacobs","born","large","properties","thompson","stayed","rest","life","important","member","died","age","inn","taken","hison","john","jacobs","death","john","jacobs","known","landlord","jacobs","inn","called","halfway","house","approximately","halfway","hartford","boston","inn","notable","george","washington","marquis","wrote","journal","apparently","enjoy","athe","inn","washington","coach","lefthe","inn","without","able","foot","also","notably","lafayette","left","apron","athe","inn","jacobs","family","category_drinking_establishments","colonies"],"clean_bigrams":[["notable","th"],["th","century"],["century","inn"],["inn","located"],["nathaniel","jacobs"],["large","properties"],["important","member"],["hison","john"],["john","jacobs"],["death","john"],["john","jacobs"],["landlord","jacobs"],["halfway","house"],["approximately","halfway"],["george","washington"],["marquis","de"],["de","lafayette"],["athe","inn"],["coach","lefthe"],["lefthe","inn"],["inn","without"],["foot","also"],["also","notably"],["notably","lafayette"],["lafayette","left"],["apron","athe"],["athe","inn"],["jacobs","family"],["family","category"],["category","drinking"],["drinking","establishments"],["establishments","category"],["category","thirteen"],["thirteen","colonies"]],"all_collocations":["notable th","th century","century inn","inn located","nathaniel jacobs","large properties","important member","hison john","john jacobs","death john","john jacobs","landlord jacobs","halfway house","approximately halfway","george washington","marquis de","de lafayette","athe inn","coach lefthe","lefthe inn","inn without","foot also","also notably","notably lafayette","lafayette left","apron athe","athe inn","jacobs family","family category","category drinking","drinking establishments","establishments category","category thirteen","thirteen colonies"],"new_description":"jacob inn notable th_century inn located thompson inn founded nathaniel jacobs born large properties thompson stayed rest life important member died age inn taken hison john jacobs death john jacobs known landlord jacobs inn called halfway house approximately halfway hartford boston inn notable george washington marquis de_lafayette wrote journal apparently enjoy athe inn washington coach lefthe inn without able foot also notably lafayette left apron athe inn jacobs family category_drinking_establishments category_thirteen colonies"},{"title":"James Villa Holidays","description":"james villa holidays also known as james villas is a villa tour operator with a head office based in maidstone in the uk the business operates under wyndham vacation rentals vespa capital announces the sale of james villa holidays pr newswire family of brands within wyndham worldwide following the original owner s decision to sell the company in the james villas company has over properties which are let outo customers who wish to use them as temporary holiday homes athe start of the company appointedigital mediagency thingsmedia to handle itsocial media strategy this decision came after a review of previous revenues james villa holidays aims to bring holidays to life in with new social media strategy the drum january thingsmedia will be responsible for handling all social first content and they will handle the brand s image through social media based solely around travel james villa holidays appoints thingsmedia to create social firstrategy travolution january history file villa coral blue situated within marina del cantone in amalfi coastjpg thumb px villa coral blue situated within marina del cantone in amalfi coasthe founder of james villas is james needham who created the company in he firsthought of the idea when holidaying in lanzarote at which time he and his wife owned a holiday villand werenting it out in their absence following redundancy from his job athevening standard james needham invested his time in looking for new properties to purchase and rent outo prospective holidaymakers for the first few years james needham ran the business withis wife and later employed his late son darren james needham founder of james villas reveals the holiday firm secrets to success after years kent business december during the recession of the late s the company chose to purchase a chunk of the advertising space that was available athe time which was available at a cheaper costhan before the recession using word of mouth and tv advertising the company s growth increased by for a number of years change of ownership following hison s death james needham sold the company inow under the management of wyndham vacation rentals james villa holidays continues to employ many of its original employees in mark bloxham took over the role of managing director to replace malcom hoad who left after two years in the position bloxham has been working for james villas marketing director and oversaw bothe james villas holidays and villas you brands as managing director in august bloxham left james villas and was replaced by sean lowe bloxham appointed managing director at james villa holidays travel weekly june awards james villa holidays has won a number of awardsince its inception the awards in full are as follows winner athe british travel awards for best large villa self catering holiday booking company in and british travel awards and won the silver three years in a row from winner athe sunday times travel magazine awards for best villa company in and winner of cond nastraveller s favourite villa rental company in the readers travel awards conde nastraveller september and won the silver for this award in readers travel awards conde nastraveller october and readers travel awards conde nastraveller septemberunner up athe telegraph travel awards for specialistour operator in telegraph travel awards the winners in full externalinks james villa holidays official website james villa holidays blog references category holiday villages category travel and holiday companies of the united kingdom category tourism category travel category wyndham worldwide","main_words":["james","villa_holidays","also_known","james","villas","villa","tour_operator","head_office","based","uk","business","operates","wyndham","vacation_rentals","capital","announces","sale","james","villa_holidays","family","brands","within","wyndham","worldwide","following","original","owner","decision","sell","company","james","villas","company","properties","let","outo","customers","wish","use","temporary","holiday","homes","athe_start","company","handle","media","strategy","decision","came","review","previous","revenues","james","villa_holidays","aims","bring","holidays","life","new","social_media","strategy","drum","january","responsible","handling","social","first","content","handle","brand","image","social_media","based","solely","around","travel","james","villa_holidays","create","social","travolution","january","history_file","villa","coral","blue","situated","within","marina","del","thumb","px","villa","coral","blue","situated","within","marina","del","coasthe","founder","james","villas","james","needham","created","company","idea","time","wife","owned","holiday","villand","absence","following","job","standard","james","needham","invested","time","looking","new","properties","purchase","rent","outo","prospective","holidaymakers","first_years","james","needham","ran","business","withis","wife","later","employed","late","son","james","needham","founder","james","villas","reveals","holiday","firm","secrets","success","years","kent","business","december","recession","late","company","chose","purchase","advertising","space","available","athe_time","available","cheaper","recession","using","word","mouth","advertising","company","growth","increased","number","years","change","ownership","following","hison","death","james","needham","sold","company","management","wyndham","vacation_rentals","james","villa_holidays","continues","employ","many","original","employees","mark","bloxham","took","role","managing_director","replace","left","two_years","position","bloxham","working","james","villas","marketing","director","oversaw","bothe","james","villas","holidays","villas","brands","managing_director","august","bloxham","left","james","villas","replaced","sean","lowe","bloxham","appointed","managing_director","james","villa_holidays","travel_weekly","june","awards","james","villa_holidays","number","inception","awards","full","follows","winner","athe","british_travel_awards","best","large","villa","self_catering","holiday","booking","company","british_travel_awards","silver","three_years","row","winner","athe","sunday_times","travel_magazine","awards","best","villa","company","winner","cond","nastraveller","favourite","villa","rental","company","readers","travel_awards","conde","nastraveller","september","silver","award","readers","travel_awards","conde","nastraveller","october","readers","travel_awards","conde","nastraveller","athe","telegraph","travel_awards","operator","telegraph","travel_awards","winners","full","externalinks","james","villa_holidays","official_website","james","villa_holidays","blog","references_category","holiday","villages","category_travel","holiday_companies","united_kingdom","category_tourism","category_travel","category","wyndham","worldwide"],"clean_bigrams":[["james","villa"],["villa","holidays"],["holidays","also"],["also","known"],["james","villas"],["villa","tour"],["tour","operator"],["head","office"],["office","based"],["business","operates"],["wyndham","vacation"],["vacation","rentals"],["capital","announces"],["james","villa"],["villa","holidays"],["brands","within"],["within","wyndham"],["wyndham","worldwide"],["worldwide","following"],["original","owner"],["james","villas"],["villas","company"],["let","outo"],["outo","customers"],["temporary","holiday"],["holiday","homes"],["homes","athe"],["athe","start"],["media","strategy"],["decision","came"],["previous","revenues"],["revenues","james"],["james","villa"],["villa","holidays"],["holidays","aims"],["bring","holidays"],["new","social"],["social","media"],["media","strategy"],["drum","january"],["social","first"],["first","content"],["social","media"],["media","based"],["based","solely"],["solely","around"],["around","travel"],["travel","james"],["james","villa"],["villa","holidays"],["create","social"],["travolution","january"],["january","history"],["history","file"],["file","villa"],["villa","coral"],["coral","blue"],["blue","situated"],["situated","within"],["within","marina"],["marina","del"],["thumb","px"],["px","villa"],["villa","coral"],["coral","blue"],["blue","situated"],["situated","within"],["within","marina"],["marina","del"],["coasthe","founder"],["james","villas"],["james","needham"],["wife","owned"],["holiday","villand"],["absence","following"],["standard","james"],["james","needham"],["needham","invested"],["new","properties"],["rent","outo"],["outo","prospective"],["prospective","holidaymakers"],["years","james"],["james","needham"],["needham","ran"],["business","withis"],["withis","wife"],["later","employed"],["late","son"],["james","needham"],["needham","founder"],["james","villas"],["villas","reveals"],["holiday","firm"],["firm","secrets"],["years","kent"],["kent","business"],["business","december"],["company","chose"],["advertising","space"],["available","athe"],["athe","time"],["recession","using"],["using","word"],["tv","advertising"],["growth","increased"],["years","change"],["ownership","following"],["following","hison"],["death","james"],["james","needham"],["needham","sold"],["wyndham","vacation"],["vacation","rentals"],["rentals","james"],["james","villa"],["villa","holidays"],["holidays","continues"],["employ","many"],["original","employees"],["mark","bloxham"],["bloxham","took"],["managing","director"],["two","years"],["position","bloxham"],["james","villas"],["villas","marketing"],["marketing","director"],["oversaw","bothe"],["bothe","james"],["james","villas"],["villas","holidays"],["managing","director"],["august","bloxham"],["bloxham","left"],["left","james"],["james","villas"],["sean","lowe"],["lowe","bloxham"],["bloxham","appointed"],["appointed","managing"],["managing","director"],["james","villa"],["villa","holidays"],["holidays","travel"],["travel","weekly"],["weekly","june"],["june","awards"],["awards","james"],["james","villa"],["villa","holidays"],["follows","winner"],["winner","athe"],["athe","british"],["british","travel"],["travel","awards"],["best","large"],["large","villa"],["villa","self"],["self","catering"],["catering","holiday"],["holiday","booking"],["booking","company"],["british","travel"],["travel","awards"],["silver","three"],["three","years"],["winner","athe"],["athe","sunday"],["sunday","times"],["times","travel"],["travel","magazine"],["magazine","awards"],["best","villa"],["villa","company"],["cond","nastraveller"],["favourite","villa"],["villa","rental"],["rental","company"],["readers","travel"],["travel","awards"],["awards","conde"],["conde","nastraveller"],["nastraveller","september"],["readers","travel"],["travel","awards"],["awards","conde"],["conde","nastraveller"],["nastraveller","october"],["readers","travel"],["travel","awards"],["awards","conde"],["conde","nastraveller"],["athe","telegraph"],["telegraph","travel"],["travel","awards"],["telegraph","travel"],["travel","awards"],["full","externalinks"],["externalinks","james"],["james","villa"],["villa","holidays"],["holidays","official"],["official","website"],["website","james"],["james","villa"],["villa","holidays"],["holidays","blog"],["blog","references"],["references","category"],["category","holiday"],["holiday","villages"],["villages","category"],["category","travel"],["holiday","companies"],["united","kingdom"],["kingdom","category"],["category","tourism"],["tourism","category"],["category","travel"],["travel","category"],["category","wyndham"],["wyndham","worldwide"]],"all_collocations":["james villa","villa holidays","holidays also","also known","james villas","villa tour","tour operator","head office","office based","business operates","wyndham vacation","vacation rentals","capital announces","james villa","villa holidays","brands within","within wyndham","wyndham worldwide","worldwide following","original owner","james villas","villas company","let outo","outo customers","temporary holiday","holiday homes","homes athe","athe start","media strategy","decision came","previous revenues","revenues james","james villa","villa holidays","holidays aims","bring holidays","new social","social media","media strategy","drum january","social first","first content","social media","media based","based solely","solely around","around travel","travel james","james villa","villa holidays","create social","travolution january","january history","history file","file villa","villa coral","coral blue","blue situated","situated within","within marina","marina del","px villa","villa coral","coral blue","blue situated","situated within","within marina","marina del","coasthe founder","james villas","james needham","wife owned","holiday villand","absence following","standard james","james needham","needham invested","new properties","rent outo","outo prospective","prospective holidaymakers","years james","james needham","needham ran","business withis","withis wife","later employed","late son","james needham","needham founder","james villas","villas reveals","holiday firm","firm secrets","years kent","kent business","business december","company chose","advertising space","available athe","athe time","recession using","using word","tv advertising","growth increased","years change","ownership following","following hison","death james","james needham","needham sold","wyndham vacation","vacation rentals","rentals james","james villa","villa holidays","holidays continues","employ many","original employees","mark bloxham","bloxham took","managing director","two years","position bloxham","james villas","villas marketing","marketing director","oversaw bothe","bothe james","james villas","villas holidays","managing director","august bloxham","bloxham left","left james","james villas","sean lowe","lowe bloxham","bloxham appointed","appointed managing","managing director","james villa","villa holidays","holidays travel","travel weekly","weekly june","june awards","awards james","james villa","villa holidays","follows winner","winner athe","athe british","british travel","travel awards","best large","large villa","villa self","self catering","catering holiday","holiday booking","booking company","british travel","travel awards","silver three","three years","winner athe","athe sunday","sunday times","times travel","travel magazine","magazine awards","best villa","villa company","cond nastraveller","favourite villa","villa rental","rental company","readers travel","travel awards","awards conde","conde nastraveller","nastraveller september","readers travel","travel awards","awards conde","conde nastraveller","nastraveller october","readers travel","travel awards","awards conde","conde nastraveller","athe telegraph","telegraph travel","travel awards","telegraph travel","travel awards","full externalinks","externalinks james","james villa","villa holidays","holidays official","official website","website james","james villa","villa holidays","holidays blog","blog references","references category","category holiday","holiday villages","villages category","category travel","holiday companies","united kingdom","kingdom category","category tourism","tourism category","category travel","travel category","category wyndham","wyndham worldwide"],"new_description":"james villa_holidays also_known james villas villa tour_operator head_office based uk business operates wyndham vacation_rentals capital announces sale james villa_holidays family brands within wyndham worldwide following original owner decision sell company james villas company properties let outo customers wish use temporary holiday homes athe_start company handle media strategy decision came review previous revenues james villa_holidays aims bring holidays life new social_media strategy drum january responsible handling social first content handle brand image social_media based solely around travel james villa_holidays create social travolution january history_file villa coral blue situated within marina del thumb px villa coral blue situated within marina del coasthe founder james villas james needham created company idea time wife owned holiday villand absence following job standard james needham invested time looking new properties purchase rent outo prospective holidaymakers first_years james needham ran business withis wife later employed late son james needham founder james villas reveals holiday firm secrets success years kent business december recession late company chose purchase advertising space available athe_time available cheaper recession using word mouth tv advertising company growth increased number years change ownership following hison death james needham sold company management wyndham vacation_rentals james villa_holidays continues employ many original employees mark bloxham took role managing_director replace left two_years position bloxham working james villas marketing director oversaw bothe james villas holidays villas brands managing_director august bloxham left james villas replaced sean lowe bloxham appointed managing_director james villa_holidays travel_weekly june awards james villa_holidays number inception awards full follows winner athe british_travel_awards best large villa self_catering holiday booking company british_travel_awards silver three_years row winner athe sunday_times travel_magazine awards best villa company winner cond nastraveller favourite villa rental company readers travel_awards conde nastraveller september silver award readers travel_awards conde nastraveller october readers travel_awards conde nastraveller athe telegraph travel_awards operator telegraph travel_awards winners full externalinks james villa_holidays official_website james villa_holidays blog references_category holiday villages category_travel holiday_companies united_kingdom category_tourism category_travel category wyndham worldwide"},{"title":"Japan National Tourism Organization","description":"the or jnto provides information about japan to promote travel to and in the country its headquarters are in y rakuchiyoda tokyo chiyoda tokyo it operates tourist information centers tics as well as a website the jnto disseminates information aboutransportation lodging food and beverage and sight seeing it distributes photographs of japan suitable for computer wallpaper or printing for personal use jnto is an independent administrative institution of the government of japan its publication s and website assist in preparing travel itineraries within japan providing a wide range of travel information in english and other languages on transportation accommodationshopping and events the materials are updated frequently while traveling in japan visitors may take advantage of the nationwide information system which numbered outlets in each i center is an information source for the area it represents the i centers are ordinarily located at railway station s or in city centers and areasily recognized by their logo a red question mark withe word information printed underneath jnto sponsors a goodwill guide program through which some bilingual volunteers assist visitors from abroad they earn the righto wear the program s identifying badge a white pigeon superimposed upon a globe throughout japan there are systematized goodwill guide groupsgg consisting mostly of students housewives and retirees who engage in a variety of activities using their foreign language skillsome groups offer a free preset walking tour for which the visitor only needs to go to a prestablished place at a certain date and time while others are available to meetourists on requesthere is no charge for the service of the goodwill guides as they are volunteers only their travel expenses and their admissions tourist facilities and for shared mealservices of professional guides and interpreting interpreters may be retained through the japan guide association or the japan federation of licensed guides a total of some licensed guide interpreters aregistered withese organizations jnto s new york city office manages theastern half of the united states along withe caribbeand south america the los angeles offices manage the western half of the us along with mexico and central america there is also a torontoffice see also japan tourism agency tourism in japan references externalinks jnto site in english visit japan campaign yokoso japan by jnto live japan campaign site in english category independent administrative institutions of japanational tourism organization category tourism in japanational tourism organization category tourism agencies","main_words":["jnto","provides_information","japan","promote","travel","country","headquarters","tokyo","tokyo","operates","tics","well","website","jnto","information","lodging","food","beverage","sight","seeing","distributes","photographs","japan","suitable","computer","wallpaper","printing","personal","use","jnto","independent","administrative","institution","government","japan","publication","website","assist","preparing","travel","itineraries","within","japan","providing","wide_range","travel_information","english_languages","transportation","events","materials","updated","frequently","traveling","japan","visitors","may","take_advantage","nationwide","information","system","numbered","outlets","center","information","source","area","represents","centers","ordinarily","located","railway_station","city","centers","recognized","logo","red","question","mark","withe","word","information","printed","underneath","jnto","sponsors","goodwill","guide","program","bilingual","volunteers","assist","visitors","abroad","earn","righto","wear","program","identifying","badge","white","pigeon","upon","globe","throughout","japan","goodwill","guide","consisting","mostly","students","engage","variety","activities","using","foreign","language","groups","offer","free","walking_tour","visitor","needs","go","place","certain","date","time","others","available","charge","service","goodwill","guides","volunteers","travel","expenses","admissions","tourist","facilities","shared","professional","guides","interpreting","may","retained","japan","guide","association","japan","federation","licensed","guides","total","licensed","guide","withese","organizations","jnto","new_york","city","office","manages","theastern","half","united_states","along_withe","caribbeand","south_america","los_angeles","offices","manage","western","half","us","along","mexico","central_america","also","see_also","japan","tourism","agency","tourism","japan","references_externalinks","jnto","site","english","visit","japan","campaign","japan","jnto","live","japan","campaign","site","english","category","independent","administrative","institutions","tourism_organization","category_tourism","tourism_organization","category_tourism","agencies"],"clean_bigrams":[["jnto","provides"],["provides","information"],["promote","travel"],["operates","tourist"],["tourist","information"],["information","centers"],["centers","tics"],["lodging","food"],["sight","seeing"],["distributes","photographs"],["japan","suitable"],["computer","wallpaper"],["personal","use"],["use","jnto"],["independent","administrative"],["administrative","institution"],["website","assist"],["preparing","travel"],["travel","itineraries"],["itineraries","within"],["within","japan"],["japan","providing"],["wide","range"],["travel","information"],["updated","frequently"],["japan","visitors"],["visitors","may"],["may","take"],["take","advantage"],["nationwide","information"],["information","system"],["numbered","outlets"],["information","source"],["ordinarily","located"],["railway","station"],["city","centers"],["red","question"],["question","mark"],["mark","withe"],["withe","word"],["word","information"],["information","printed"],["printed","underneath"],["underneath","jnto"],["jnto","sponsors"],["goodwill","guide"],["guide","program"],["bilingual","volunteers"],["volunteers","assist"],["assist","visitors"],["righto","wear"],["identifying","badge"],["white","pigeon"],["globe","throughout"],["throughout","japan"],["goodwill","guide"],["consisting","mostly"],["activities","using"],["foreign","language"],["groups","offer"],["walking","tour"],["certain","date"],["goodwill","guides"],["travel","expenses"],["admissions","tourist"],["tourist","facilities"],["professional","guides"],["japan","guide"],["guide","association"],["japan","federation"],["licensed","guides"],["licensed","guide"],["withese","organizations"],["organizations","jnto"],["new","york"],["york","city"],["city","office"],["office","manages"],["manages","theastern"],["theastern","half"],["united","states"],["states","along"],["along","withe"],["withe","caribbeand"],["caribbeand","south"],["south","america"],["los","angeles"],["angeles","offices"],["offices","manage"],["western","half"],["us","along"],["central","america"],["see","also"],["also","japan"],["japan","tourism"],["tourism","agency"],["agency","tourism"],["japan","references"],["references","externalinks"],["externalinks","jnto"],["jnto","site"],["english","visit"],["visit","japan"],["japan","campaign"],["jnto","live"],["live","japan"],["japan","campaign"],["campaign","site"],["english","category"],["category","independent"],["independent","administrative"],["administrative","institutions"],["tourism","organization"],["organization","category"],["category","tourism"],["tourism","organization"],["organization","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["jnto provides","provides information","promote travel","operates tourist","tourist information","information centers","centers tics","lodging food","sight seeing","distributes photographs","japan suitable","computer wallpaper","personal use","use jnto","independent administrative","administrative institution","website assist","preparing travel","travel itineraries","itineraries within","within japan","japan providing","wide range","travel information","updated frequently","japan visitors","visitors may","may take","take advantage","nationwide information","information system","numbered outlets","information source","ordinarily located","railway station","city centers","red question","question mark","mark withe","withe word","word information","information printed","printed underneath","underneath jnto","jnto sponsors","goodwill guide","guide program","bilingual volunteers","volunteers assist","assist visitors","righto wear","identifying badge","white pigeon","globe throughout","throughout japan","goodwill guide","consisting mostly","activities using","foreign language","groups offer","walking tour","certain date","goodwill guides","travel expenses","admissions tourist","tourist facilities","professional guides","japan guide","guide association","japan federation","licensed guides","licensed guide","withese organizations","organizations jnto","new york","york city","city office","office manages","manages theastern","theastern half","united states","states along","along withe","withe caribbeand","caribbeand south","south america","los angeles","angeles offices","offices manage","western half","us along","central america","see also","also japan","japan tourism","tourism agency","agency tourism","japan references","references externalinks","externalinks jnto","jnto site","english visit","visit japan","japan campaign","jnto live","live japan","japan campaign","campaign site","english category","category independent","independent administrative","administrative institutions","tourism organization","organization category","category tourism","tourism organization","organization category","category tourism","tourism agencies"],"new_description":"jnto provides_information japan promote travel country headquarters tokyo tokyo operates tourist_information_centers tics well website jnto information lodging food beverage sight seeing distributes photographs japan suitable computer wallpaper printing personal use jnto independent administrative institution government japan publication website assist preparing travel itineraries within japan providing wide_range travel_information english_languages transportation events materials updated frequently traveling japan visitors may take_advantage nationwide information system numbered outlets center information source area represents centers ordinarily located railway_station city centers recognized logo red question mark withe word information printed underneath jnto sponsors goodwill guide program bilingual volunteers assist visitors abroad earn righto wear program identifying badge white pigeon upon globe throughout japan goodwill guide consisting mostly students engage variety activities using foreign language groups offer free walking_tour visitor needs go place certain date time others available charge service goodwill guides volunteers travel expenses admissions tourist facilities shared professional guides interpreting may retained japan guide association japan federation licensed guides total licensed guide withese organizations jnto new_york city office manages theastern half united_states along_withe caribbeand south_america los_angeles offices manage western half us along mexico central_america also see_also japan tourism agency tourism japan references_externalinks jnto site english visit japan campaign japan jnto live japan campaign site english category independent administrative institutions tourism_organization category_tourism tourism_organization category_tourism agencies"},{"title":"Japan Tourism Agency","description":"jurisdiction government of japan headquarters tokyo japan employees budget million japanese yen jpy ministry ofinance japan ministry ofinance chief name commissioner of commissioner chief positionorifumidee parent agency ministry of land infrastructure transport and tourism japan ministry of land infrastructure transport and tourism website footnotes the abbreviated jta is an organization which waset up on october as an government agency of the ministry of land infrastructure transport and tourisministry of internal affairs and communications background of establishment japan tourism agency seated itself with intentions to stimulate community based economics local economies and to further international mutual understanding ministry of land infrastructure transport and tourism retrieved on following legislation of basic act on promotion of tourism nation in december to wholly revise tourism basic act ministry of internal affairs and communications house of councillors retrieved on committee resolutions in bothouses of the diet in the legislation process house of representatives of japan house of representatives retrieved on house of councillors retrieved on andecision at a cabinet meeting of basic plan in june ministry of land infrastructure transport and tourisministry of land infrastructure transport and tourism which was drawn as provided by the basic act one legal basis of the agency is act for establishment of the ministry of land infrastructure transport and tourism the two committee resolutions of almosthe same contents are made by the committee on land transport of eachouse of the dieto point out eight issues on which the government should take appropriate measures when it enforces the basic act in the issue no it wastated thathe government should makefforts to set up tourism agency or so in the basic plan five fundamental targets are set whose substances arespectively to increase the number of a foreign tourists visiting japan b international meetings held in japan c nights for stay in accommodations per one japanese during domestic sightseeing tours d japanese tourists toverseas expenditure in japan on sightseeing tours all the five targets eachave numerical value many among the total of various targets eachave some numerical value see also japanational tourism organization itaru ishii notes externalinks japan tourism agency category ministry of land infrastructure transport and tourism japan tourism agency category tourism in japan agency category establishments in japan category tourism agencies","main_words":["jurisdiction","government","japan","headquarters","tokyo_japan","employees_budget","million","japanese","yen","ministry","japan","ministry","chief_name","commissioner","commissioner","chief","ministry","land","infrastructure","transport","tourism","japan","ministry","land","infrastructure","transport","abbreviated","organization","waset","october","government","agency","ministry","land","infrastructure","transport","tourisministry","internal","affairs","communications","background","establishment","japan","tourism","agency","seated","intentions","stimulate","community_based","economics","local","economies","international","mutual","understanding","ministry","land","infrastructure","transport","tourism","retrieved","following","legislation","basic","act","promotion","tourism","nation","december","wholly","tourism","basic","act","ministry","internal","affairs","communications","house","retrieved","committee","diet","legislation","process","house","representatives","japan","house","representatives","retrieved","house","retrieved","cabinet","meeting","basic","plan","june","ministry","land","infrastructure","transport","tourisministry","land","infrastructure","transport","tourism","drawn","provided","basic","act","one","legal","basis","agency","act","establishment","ministry","land","infrastructure","transport","tourism","two","committee","almosthe","contents","made","committee","land","transport","point","eight","issues","government","take","appropriate","measures","basic","act","issue","thathe_government","set","tourism","agency","basic","plan","five","fundamental","targets","set","whose","substances","increase","number","foreign","tourists","visiting","japan","b","international","meetings","held","japan","c","nights","stay","accommodations","per","one","japanese","domestic","sightseeing","tours","japanese","tourists","expenditure","japan","sightseeing","tours","five","targets","eachave","value","many","among","total","various","targets","eachave","value","see_also","tourism_organization","notes_externalinks","japan","tourism","agency","category","ministry","land","infrastructure","transport","tourism","japan","tourism","agency","category_tourism","japan","agency","category_establishments","agencies"],"clean_bigrams":[["jurisdiction","government"],["japan","headquarters"],["headquarters","tokyo"],["tokyo","japan"],["japan","employees"],["employees","budget"],["budget","million"],["million","japanese"],["japanese","yen"],["japan","ministry"],["chief","name"],["name","commissioner"],["commissioner","chief"],["parent","agency"],["agency","ministry"],["land","infrastructure"],["infrastructure","transport"],["tourism","japan"],["japan","ministry"],["land","infrastructure"],["infrastructure","transport"],["tourism","website"],["website","footnotes"],["government","agency"],["agency","ministry"],["land","infrastructure"],["infrastructure","transport"],["internal","affairs"],["communications","background"],["establishment","japan"],["japan","tourism"],["tourism","agency"],["agency","seated"],["stimulate","community"],["community","based"],["based","economics"],["economics","local"],["local","economies"],["international","mutual"],["mutual","understanding"],["understanding","ministry"],["land","infrastructure"],["infrastructure","transport"],["tourism","retrieved"],["following","legislation"],["basic","act"],["tourism","nation"],["tourism","basic"],["basic","act"],["act","ministry"],["internal","affairs"],["communications","house"],["legislation","process"],["process","house"],["japan","house"],["representatives","retrieved"],["cabinet","meeting"],["basic","plan"],["june","ministry"],["land","infrastructure"],["infrastructure","transport"],["land","infrastructure"],["infrastructure","transport"],["basic","act"],["act","one"],["one","legal"],["legal","basis"],["land","infrastructure"],["infrastructure","transport"],["two","committee"],["land","transport"],["eight","issues"],["take","appropriate"],["appropriate","measures"],["basic","act"],["thathe","government"],["tourism","agency"],["basic","plan"],["plan","five"],["five","fundamental"],["fundamental","targets"],["set","whose"],["whose","substances"],["foreign","tourists"],["tourists","visiting"],["visiting","japan"],["japan","b"],["b","international"],["international","meetings"],["meetings","held"],["japan","c"],["c","nights"],["accommodations","per"],["per","one"],["one","japanese"],["domestic","sightseeing"],["sightseeing","tours"],["japanese","tourists"],["sightseeing","tours"],["five","targets"],["targets","eachave"],["value","many"],["many","among"],["various","targets"],["targets","eachave"],["value","see"],["see","also"],["tourism","organization"],["notes","externalinks"],["externalinks","japan"],["japan","tourism"],["tourism","agency"],["agency","category"],["category","ministry"],["land","infrastructure"],["infrastructure","transport"],["tourism","japan"],["japan","tourism"],["tourism","agency"],["agency","category"],["category","tourism"],["tourism","japan"],["japan","agency"],["agency","category"],["category","establishments"],["japan","category"],["category","tourism"],["tourism","agencies"]],"all_collocations":["jurisdiction government","japan headquarters","headquarters tokyo","tokyo japan","japan employees","employees budget","budget million","million japanese","japanese yen","japan ministry","chief name","name commissioner","commissioner chief","parent agency","agency ministry","land infrastructure","infrastructure transport","tourism japan","japan ministry","land infrastructure","infrastructure transport","tourism website","website footnotes","government agency","agency ministry","land infrastructure","infrastructure transport","internal affairs","communications background","establishment japan","japan tourism","tourism agency","agency seated","stimulate community","community based","based economics","economics local","local economies","international mutual","mutual understanding","understanding ministry","land infrastructure","infrastructure transport","tourism retrieved","following legislation","basic act","tourism nation","tourism basic","basic act","act ministry","internal affairs","communications house","legislation process","process house","japan house","representatives retrieved","cabinet meeting","basic plan","june ministry","land infrastructure","infrastructure transport","land infrastructure","infrastructure transport","basic act","act one","one legal","legal basis","land infrastructure","infrastructure transport","two committee","land transport","eight issues","take appropriate","appropriate measures","basic act","thathe government","tourism agency","basic plan","plan five","five fundamental","fundamental targets","set whose","whose substances","foreign tourists","tourists visiting","visiting japan","japan b","b international","international meetings","meetings held","japan c","c nights","accommodations per","per one","one japanese","domestic sightseeing","sightseeing tours","japanese tourists","sightseeing tours","five targets","targets eachave","value many","many among","various targets","targets eachave","value see","see also","tourism organization","notes externalinks","externalinks japan","japan tourism","tourism agency","agency category","category ministry","land infrastructure","infrastructure transport","tourism japan","japan tourism","tourism agency","agency category","category tourism","tourism japan","japan agency","agency category","category establishments","japan category","category tourism","tourism agencies"],"new_description":"jurisdiction government japan headquarters tokyo_japan employees_budget million japanese yen ministry japan ministry chief_name commissioner commissioner chief parent_agency ministry land infrastructure transport tourism japan ministry land infrastructure transport tourism_website_footnotes abbreviated organization waset october government agency ministry land infrastructure transport tourisministry internal affairs communications background establishment japan tourism agency seated intentions stimulate community_based economics local economies international mutual understanding ministry land infrastructure transport tourism retrieved following legislation basic act promotion tourism nation december wholly tourism basic act ministry internal affairs communications house retrieved committee diet legislation process house representatives japan house representatives retrieved house retrieved cabinet meeting basic plan june ministry land infrastructure transport tourisministry land infrastructure transport tourism drawn provided basic act one legal basis agency act establishment ministry land infrastructure transport tourism two committee almosthe contents made committee land transport point eight issues government take appropriate measures basic act issue thathe_government set tourism agency basic plan five fundamental targets set whose substances increase number foreign tourists visiting japan b international meetings held japan c nights stay accommodations per one japanese domestic sightseeing tours japanese tourists expenditure japan sightseeing tours five targets eachave value many among total various targets eachave value see_also tourism_organization notes_externalinks japan tourism agency category ministry land infrastructure transport tourism japan tourism agency category_tourism japan agency category_establishments japan_category_tourism agencies"},{"title":"Jazz club","description":"file louis moholo quintetjpg thumb right px the louis moholo quintet performing at a jazz club a jazz club is a music venue where the primary entertainment is the performance of live jazz music although some jazz clubs primarily focus on the study and or promotion of jazz music jazz clubs are usually a type of nightclub or bar which is licensed to sell alcoholic beverages jazz clubs were in large rooms in theras of orchestral jazz and big band jazz big band jazz when bands were large and often augmented by a string section large rooms were also more common in the swing era because athatime jazz was popular as a dance music so the dancers needed space to move withe transition to s era styles like bebop and later stylesuch asoul jazz small combos of musiciansuch as quartets jazz quartets and jazz trios were mostly used and the music became more of a music to listen to rather than a form of dance music as a result smaller clubs with small stages became practical in the s jazz clubs may be found in the basement s of largeresidential buildings in storefront locations or in the upper floors of retail businesses they can be rather small compared tother music venuesuch as rock musiclubs reflecting the intimate atmosphere of jazz shows and long term decline in popular interest in jazz despite being called club organization clubs these venues are usually not exclusive some clubs however have a cover charge if a live band is playing some jazz clubs host jam session s after hours or on early evenings of the week at jam sessions both professional musicians and advanced amateurs will typically share the stage history in the th century before the birth of jazz popular forms of live music for most well to do white americans of european immigrant heritage included classical music played by orchestra s in coats and tails fancy opera house s and formal ball dance ball s where formally dressed musicians would play for these well off whites going out was a formal occasion and the music was treated asomething to listen to if at an orchestra or opera concert or dance formally to if at a ball in the s african american communities were marginalized from an economic perspective despite their lack of material wealth african american communities had a thriving community and culture based around informal music performancesuch as brass band performances at funerals music sung in church and music played for families eating picnics in parks african american culture developed communal activities for informal sharing such asaturday night fish friesunday camping along the shores of lake ponchartrain at milneburg and bucktown making red beans and rice banquettes on mondays and holding nightly dances at neighborhood halls all over town this long andeep commitmento music andance along withe mixing of musical traditions like spiritual music from the church the blues carried intown by rural guitar slingers the minstrel show s inspired by plantation life the beat and cadence of military marching band s and the syncopation of the ragtime piano led to the creation of a neway to listen to live music in the jazz history books cultural capitals like new orleans chicago harlem kansas city u street in washington dc and the central avenue zone of los angeles are traditionally cited as the key nurturing places of jazz the african musical traditions primarily made use of a single line melody and call and response musicall and response pattern and the rhythms have a cross beat counter metric structure and reflect african speech patterns lavish festivals featuring african basedances to drums were organized on sundays at place congor congo square inew orleans until the primary instrument for a cultural music expression was a long narrow african drum it came in variousized from three to eight feet long and had previously been banned in the south by whites other instruments used were the triangle a jawbone and early ancestors to the banjo many types of dances were performed in congo square including the flat footed shuffle and the bamboulafrican american registry another influence on black musicame from the style of hymn s of the church which black slaves had learned and incorporated into their own music aspirituals during thearly th century an increasing number of black musicians learned to play european instruments the black codes united states black codes outlawedrumming by slaves which meanthat african drumming traditions were not preserved inorth america unlike in cuba haiti and elsewhere in the caribbean african based rhythmic patterns weretained in the united states in large parthrough body rhythmsuch astomping clapping and juba dance patting juba palmerobert deep blues in the post civil war period after african americans were able tobtain surplus military bass drumsnare drums and fifes and an original african american drum and fife music emerged featuring tresillo and related syncopated rhythmic figureskubik gerhard africand the blues jackson mi university press of mississippi the abolition of slavery in led to new opportunities for theducation ofreed african americans although strict segregation limited employment opportunities for most blacks many were able to find work in entertainment black musicians were able to providentertainment in dances minstrel show s and in vaudeville during which time many marching bands were formed black pianists played in bars clubs and brothels as ragtime developed blues is the name given to both a musical form and a music genre kunzler s dictionary of jazz provides two separatentries blues an originally african american genre p and the blues form a widespread musical form p which originated in african american communities of primarily the deep south of the united states athend of the th century from their spiritual music spirituals work song s field holler s ring shouts and chant s and rhymed simple narrative ballad music ballads the music of new orleans had a profound effect on the creation of early jazz many early jazz performers played in venues throughouthe city such as the brothels and bars of the red light district around basin street known astoryville new orleanstoryville in addition to dance bands there were numerous marching bands who played at lavish funerals later called jazz funeral s which were arranged by the african americand european american communities the instruments used in marching band s andance bands became the basic instruments of jazz age despite its growing popularity not all who lived in the jazz age were keen on the sound of jazz music and especially of jazz clubs by the advent of the th century campaigns to censor the devil s music started to appear prohibiting when and where jazz clubs could be built for example a cincinnati home for expectant mothers won an injunction to prevent construction of a neighboring theater where jazz will be played convincing a courthathe music was dangerous to fetuses by thend of the s at least communities across the nation enacted laws prohibiting jazz in public dance halls prohibition in fostered themergence of the underground gangsterun jazz clubs these venueserved alcohol hired black musicians and allowed whites blacks and audiences of all social classes to mingle socially for the firstime although the underground jazz clubs encouraged the intermingling of races in the jazz age there were other jazz clubsuch as the cotton club inew york that were white only by the s jazz music as a form of popular music was on the decline and so was the popularity of jazz clubs in thearly s bebop style performers began to shift jazz from danceable popular music towards a more challenging musician s music since bebop was meanto be listened to not danced to it could use faster tempos drumming shifted to a morelusive and explosive style and highly syncopated musicfloyd samuel a jr the power of black music interpreting its history from africa to the united states new york oxford university press while bebop did not draw the huge crowds that had once flocked to swing era dance clubs the bebop style was based around small combosuch as the jazz quartet withese smaller combos on stage smaller clubs could afford to pay thensembles even with much smaller clubs than were common in the s heyday of the cotton club soul jazz soul jazz was a development of hard bop which incorporated strong influences from blues gospel music gospel and rhythm and blues to create music for small groups often the organ triof hammond organ drummer and tenor saxophonist unlike hard bop soul jazz generally emphasized repetitive groove music grooves and melodic hooks and improvisation s were often less complex than in other jazz styles it often had a steadier funk style groove which was different from the swing rhythms typical of muchard bop soul jazz proved to be a boon to jazz clubs because since organ trios were based around the powerful hammond organ a three piece organ trio could fill a nightclub withe same full sound that in previous years would have required a five or six piece band resurgence of traditionalism file wynton marsalis jpg thumb right wynton marsalis the saw something of a reaction againsthe fusion and free jazz that hadominated the s trumpeter wynton marsalis emerged early in the decade and strove to create music within what he believed was the tradition rejecting both fusion and free jazz and creating extensions of the small and large forms initially pioneered by such artists as louis armstrong andukellington as well as the hard bop of the s whether marsalis critical and commercial success was a cause or a symptom of the reaction against fusion and free jazz and the resurgence of interest in the kind of jazz pioneered in the s particularly modal jazz and post bop is debatable nonetheless there were many other manifestations of a resurgence of traditionalism even ifusion and free jazz were by no means abandoned and continued to develop and evolve well into the s the underground clubs where it is performed in these countries provide meeting places for political dissident s however attendance of these clubs is minuscule compared to the popularity of jazz clubs during the jazz age notable clubs north america new orleans louisiana known as the birthplace of jazz new orleans is home to some of the oldest and most famous jazz clubs in the united states including economy hall preservation hall storyville new orleans harlem new york savoy ballroominton s playhouse cotton club washington dc and u street howard theater crystal caverns lincoln theater chicago illinois the beehive lounge mandel hall cadillac bob s club delisa gerri s palm tavern seattle washington dimitriou s jazz alley london england ronnie scott s jazz club rome italy it bebop jazz club see also jazz list of jazz clubs references category jazz clubs category african american musicategory nightclubs category discrimination in the united states category racial segregation","main_words":["file","louis","moholo","thumb","right","px","louis","moholo","performing","jazz_club","jazz_club","music_venue","primary","entertainment","performance","live","jazz","music","although","jazz_clubs","primarily","focus","study","promotion","jazz","music","jazz_clubs","usually","type","nightclub","bar","licensed","sell","alcoholic_beverages","jazz_clubs","large","rooms","jazz","big","band","jazz","big","band","jazz","bands","large","often","augmented","string","section","large","rooms","also_common","swing","era","athatime","jazz","popular","dance_music","dancers","needed","space","move","withe","transition","era","styles","like","bebop","later","jazz","small","quartets","jazz","quartets","jazz","mostly","used","music","became","music","listen","rather","form","dance_music","result","smaller","clubs","small","stages","became","practical","jazz_clubs","may","found","basement","buildings","storefront","locations","upper","floors","retail","businesses","rather","small","compared","tother","rock","reflecting","intimate","atmosphere","jazz","shows","long_term","decline","popular","interest","jazz","despite","called","club","organization","clubs","venues","usually","exclusive","clubs","however","cover_charge","live","band","playing","jazz_clubs","host","jam","session","hours","early","evenings","week","jam","sessions","professional","musicians","advanced","typically","share","stage","history","th_century","birth","jazz","popular","forms","live_music","well","white","americans","european","immigrant","heritage","included","classical","music","played","orchestra","tails","fancy","opera_house","formal","ball","dance","ball","formally","dressed","musicians","would","play","well","whites","going","formal","occasion","music","treated","listen","orchestra","opera","concert","dance","formally","ball","african_american","communities","marginalized","economic","perspective","despite","lack","material","wealth","african_american","communities","thriving","community","culture","based","around","informal","music","brass","band","performances","music","sung","church","music","played","families","eating","parks","african_american","culture","developed","communal","activities","informal","sharing","night","fish","camping","along","shores","lake","making","red","beans","rice","holding","nightly","dances","neighborhood","halls","town","long","commitmento","music","andance","along_withe","mixing","musical","traditions","like","spiritual","music","church","blues","carried","rural","guitar","show","inspired","plantation","life","beat","military","marching","band","ragtime","piano","led","creation","listen","live_music","jazz","history","books","cultural","capitals","like","new_orleans","chicago","harlem","kansas_city","street","washington","central","avenue","zone","los_angeles","traditionally","cited","key","places","jazz","african","musical","traditions","primarily","made","use","single","line","call","response","response","pattern","rhythms","cross","beat","counter","metric","structure","reflect","african","speech","patterns","lavish","festivals","featuring","african","drums","organized","sundays","place","congo","square","inew_orleans","primary","instrument","cultural","music","expression","long","narrow","african","drum","came","three","eight","feet","long","previously","banned","south","whites","instruments","used","triangle","early","ancestors","banjo","many","types","dances","performed","congo","square","including","flat","shuffle","american","registry","another","influence","black","style","church","black","slaves","learned","incorporated","music","thearly_th","century","increasing_number","black","musicians","learned","play","european","instruments","black","codes","united_states","black","codes","slaves","meanthat","african","traditions","preserved","inorth_america","unlike","cuba","haiti","elsewhere","caribbean","african","based","patterns","united_states","large","body","dance","deep","blues","post","civil_war","period","african_americans","able","tobtain","surplus","military","bass","drums","original","african_american","drum","music","emerged","featuring","related","africand","blues","jackson","university_press","mississippi","abolition","slavery","led","new","opportunities","theducation","african_americans","although","strict","segregation","limited","employment","opportunities","blacks","many","able","find","work","entertainment","black","musicians","able","dances","show","time","many","marching","bands","formed","black","played","bars","clubs","brothels","ragtime","developed","blues","name","given","musical","form","music","genre","dictionary","jazz","provides","two","blues","originally","african_american","genre","p","blues","form","widespread","musical","form","p","originated","african_american","communities","primarily","deep","south","united_states","athend","th_century","spiritual","music","work","song","field","ring","simple","narrative","music","music","new_orleans","profound","effect","creation","early","jazz","many","early","jazz","performers","played","venues","throughouthe","city","brothels","bars","red","light","district","around","basin","street","known","new","addition","dance","bands","numerous","marching","bands","played","lavish","later","called","jazz","funeral","arranged","european","american","communities","instruments","used","marching","band","andance","bands","became","basic","instruments","jazz","age","despite","growing","popularity","lived","jazz","age","keen","sound","jazz","music","especially","jazz_clubs","advent","th_century","campaigns","devil","music","started","appear","jazz_clubs","could","built","example","cincinnati","home","mothers","prevent","construction","neighboring","theater","jazz","played","convincing","music","dangerous","thend","least","communities","across","nation","enacted","laws","jazz","public","dance","halls","prohibition","themergence","underground","jazz_clubs","alcohol","hired","black","musicians","allowed","whites","blacks","audiences","social","classes","socially","firstime","although","underground","jazz_clubs","encouraged","races","jazz","age","cotton","club","inew_york","white","jazz","music","form","popular","music","decline","popularity","jazz_clubs","thearly","bebop","style","performers","began","shift","jazz","popular","music","towards","challenging","musician","music","since","bebop","meanto","could","use","faster","shifted","explosive","style","highly","samuel","power","black","music","interpreting","history","africa","united_states","new_york","oxford_university_press","bebop","draw","huge","crowds","flocked","swing","era","dance","clubs","bebop","style","based","around","small","jazz","withese","smaller","stage","smaller","clubs","could","afford","pay","even","much_smaller","clubs","common","heyday","cotton","club","soul","jazz","soul","jazz","development","hard","bop","incorporated","strong","influences","blues","music","rhythm","blues","create","music","small","groups","often","organ","hammond","organ","unlike","hard","bop","soul","jazz","generally","emphasized","groove","music","often","less","complex","jazz","styles","often","funk","style","groove","different","swing","rhythms","typical","bop","soul","jazz","proved","jazz_clubs","since","organ","based","around","powerful","hammond","organ","three","piece","organ","could","fill","nightclub","withe","full","sound","previous","years","would","required","five","six","piece","band","resurgence","file","marsalis","jpg","thumb","right","marsalis","saw","something","reaction","againsthe","fusion","free","jazz","marsalis","emerged","early","decade","create","music","within","believed","tradition","fusion","free","jazz","creating","extensions","small","large","forms","initially","pioneered","artists","louis","armstrong","well","hard","bop","whether","marsalis","critical","commercial","success","cause","reaction","fusion","free","jazz","resurgence","interest","kind","jazz","pioneered","particularly","jazz","post","bop","nonetheless","many","resurgence","even","free","jazz","means","abandoned","continued","develop","evolve","well","underground","clubs","performed","countries","provide","meeting_places","political","however","attendance","clubs","compared","popularity","jazz_clubs","jazz","age","notable","clubs","north_america","new_orleans","louisiana","known","birthplace","jazz","new_orleans","home","oldest","famous","jazz_clubs","united_states","including","economy","hall","preservation","hall","new_orleans","harlem","new_york","savoy","playhouse","cotton","club","washington","street","howard","theater","crystal","caverns","lincoln","theater","chicago_illinois","beehive","lounge","hall","bob","club","palm","tavern","seattle_washington","jazz","alley","london_england","ronnie","scott","jazz_club","rome_italy","bebop","jazz_club","see_also","jazz","list","jazz_clubs","references_category","jazz_clubs","category","african_american","musicategory","discrimination","united_states","category","racial","segregation"],"clean_bigrams":[["file","louis"],["louis","moholo"],["thumb","right"],["right","px"],["louis","moholo"],["jazz","club"],["jazz","club"],["music","venue"],["primary","entertainment"],["live","jazz"],["jazz","music"],["music","although"],["jazz","clubs"],["clubs","primarily"],["primarily","focus"],["jazz","music"],["music","jazz"],["jazz","clubs"],["sell","alcoholic"],["alcoholic","beverages"],["beverages","jazz"],["jazz","clubs"],["large","rooms"],["jazz","big"],["big","band"],["band","jazz"],["jazz","big"],["big","band"],["band","jazz"],["often","augmented"],["string","section"],["section","large"],["large","rooms"],["swing","era"],["athatime","jazz"],["jazz","popular"],["dance","music"],["dancers","needed"],["needed","space"],["move","withe"],["withe","transition"],["era","styles"],["styles","like"],["like","bebop"],["jazz","small"],["quartets","jazz"],["jazz","quartets"],["quartets","jazz"],["mostly","used"],["music","became"],["dance","music"],["result","smaller"],["smaller","clubs"],["small","stages"],["stages","became"],["became","practical"],["jazz","clubs"],["clubs","may"],["storefront","locations"],["upper","floors"],["retail","businesses"],["rather","small"],["small","compared"],["compared","tother"],["tother","music"],["music","venuesuch"],["intimate","atmosphere"],["jazz","shows"],["long","term"],["term","decline"],["popular","interest"],["jazz","despite"],["called","club"],["club","organization"],["organization","clubs"],["clubs","however"],["cover","charge"],["live","band"],["jazz","clubs"],["clubs","host"],["host","jam"],["jam","session"],["early","evenings"],["jam","sessions"],["professional","musicians"],["typically","share"],["stage","history"],["th","century"],["jazz","popular"],["popular","forms"],["live","music"],["white","americans"],["european","immigrant"],["immigrant","heritage"],["heritage","included"],["included","classical"],["classical","music"],["music","played"],["tails","fancy"],["fancy","opera"],["opera","house"],["formal","ball"],["ball","dance"],["dance","ball"],["formally","dressed"],["dressed","musicians"],["musicians","would"],["would","play"],["whites","going"],["formal","occasion"],["opera","concert"],["dance","formally"],["african","american"],["american","communities"],["economic","perspective"],["perspective","despite"],["material","wealth"],["wealth","african"],["african","american"],["american","communities"],["thriving","community"],["culture","based"],["based","around"],["around","informal"],["informal","music"],["brass","band"],["band","performances"],["music","sung"],["music","played"],["families","eating"],["parks","african"],["african","american"],["american","culture"],["culture","developed"],["developed","communal"],["communal","activities"],["informal","sharing"],["night","fish"],["camping","along"],["making","red"],["red","beans"],["holding","nightly"],["nightly","dances"],["neighborhood","halls"],["commitmento","music"],["music","andance"],["andance","along"],["along","withe"],["withe","mixing"],["musical","traditions"],["traditions","like"],["like","spiritual"],["spiritual","music"],["blues","carried"],["rural","guitar"],["plantation","life"],["military","marching"],["marching","band"],["ragtime","piano"],["piano","led"],["live","music"],["music","jazz"],["jazz","history"],["history","books"],["books","cultural"],["cultural","capitals"],["capitals","like"],["like","new"],["new","orleans"],["orleans","chicago"],["chicago","harlem"],["harlem","kansas"],["kansas","city"],["central","avenue"],["avenue","zone"],["los","angeles"],["traditionally","cited"],["african","musical"],["musical","traditions"],["traditions","primarily"],["primarily","made"],["made","use"],["single","line"],["response","pattern"],["cross","beat"],["beat","counter"],["counter","metric"],["metric","structure"],["reflect","african"],["african","speech"],["speech","patterns"],["patterns","lavish"],["lavish","festivals"],["festivals","featuring"],["featuring","african"],["congo","square"],["square","inew"],["inew","orleans"],["primary","instrument"],["cultural","music"],["music","expression"],["long","narrow"],["narrow","african"],["african","drum"],["eight","feet"],["feet","long"],["instruments","used"],["early","ancestors"],["banjo","many"],["many","types"],["congo","square"],["square","including"],["american","registry"],["registry","another"],["another","influence"],["black","slaves"],["thearly","th"],["th","century"],["increasing","number"],["black","musicians"],["musicians","learned"],["play","european"],["european","instruments"],["black","codes"],["codes","united"],["united","states"],["states","black"],["black","codes"],["meanthat","african"],["preserved","inorth"],["inorth","america"],["america","unlike"],["cuba","haiti"],["caribbean","african"],["african","based"],["united","states"],["deep","blues"],["post","civil"],["civil","war"],["war","period"],["african","americans"],["able","tobtain"],["tobtain","surplus"],["surplus","military"],["military","bass"],["original","african"],["african","american"],["american","drum"],["music","emerged"],["emerged","featuring"],["blues","jackson"],["university","press"],["new","opportunities"],["african","americans"],["americans","although"],["although","strict"],["strict","segregation"],["segregation","limited"],["limited","employment"],["employment","opportunities"],["blacks","many"],["find","work"],["entertainment","black"],["black","musicians"],["time","many"],["many","marching"],["marching","bands"],["formed","black"],["bars","clubs"],["ragtime","developed"],["developed","blues"],["name","given"],["musical","form"],["music","genre"],["jazz","provides"],["provides","two"],["originally","african"],["african","american"],["american","genre"],["genre","p"],["blues","form"],["widespread","musical"],["musical","form"],["form","p"],["african","american"],["american","communities"],["deep","south"],["united","states"],["states","athend"],["th","century"],["spiritual","music"],["work","song"],["simple","narrative"],["new","orleans"],["profound","effect"],["early","jazz"],["jazz","many"],["many","early"],["early","jazz"],["jazz","performers"],["performers","played"],["venues","throughouthe"],["throughouthe","city"],["red","light"],["light","district"],["district","around"],["around","basin"],["basin","street"],["street","known"],["dance","bands"],["numerous","marching"],["marching","bands"],["later","called"],["called","jazz"],["jazz","funeral"],["african","americand"],["americand","european"],["european","american"],["american","communities"],["instruments","used"],["marching","band"],["andance","bands"],["bands","became"],["basic","instruments"],["jazz","age"],["age","despite"],["growing","popularity"],["jazz","age"],["jazz","music"],["jazz","clubs"],["th","century"],["century","campaigns"],["music","started"],["jazz","clubs"],["clubs","could"],["cincinnati","home"],["prevent","construction"],["neighboring","theater"],["played","convincing"],["least","communities"],["communities","across"],["nation","enacted"],["enacted","laws"],["public","dance"],["dance","halls"],["halls","prohibition"],["underground","jazz"],["jazz","clubs"],["alcohol","hired"],["hired","black"],["black","musicians"],["allowed","whites"],["whites","blacks"],["social","classes"],["firstime","although"],["underground","jazz"],["jazz","clubs"],["clubs","encouraged"],["jazz","age"],["jazz","clubsuch"],["cotton","club"],["club","inew"],["inew","york"],["jazz","music"],["popular","music"],["jazz","clubs"],["bebop","style"],["style","performers"],["performers","began"],["shift","jazz"],["jazz","popular"],["popular","music"],["music","towards"],["challenging","musician"],["music","since"],["since","bebop"],["could","use"],["use","faster"],["explosive","style"],["black","music"],["music","interpreting"],["united","states"],["states","new"],["new","york"],["york","oxford"],["oxford","university"],["university","press"],["huge","crowds"],["swing","era"],["era","dance"],["dance","clubs"],["bebop","style"],["based","around"],["around","small"],["withese","smaller"],["stage","smaller"],["smaller","clubs"],["clubs","could"],["could","afford"],["much","smaller"],["smaller","clubs"],["cotton","club"],["club","soul"],["soul","jazz"],["jazz","soul"],["soul","jazz"],["hard","bop"],["incorporated","strong"],["strong","influences"],["create","music"],["small","groups"],["groups","often"],["hammond","organ"],["unlike","hard"],["hard","bop"],["bop","soul"],["soul","jazz"],["jazz","generally"],["generally","emphasized"],["groove","music"],["often","less"],["less","complex"],["jazz","styles"],["funk","style"],["style","groove"],["swing","rhythms"],["rhythms","typical"],["bop","soul"],["soul","jazz"],["jazz","proved"],["jazz","clubs"],["since","organ"],["based","around"],["powerful","hammond"],["hammond","organ"],["three","piece"],["piece","organ"],["could","fill"],["nightclub","withe"],["full","sound"],["previous","years"],["years","would"],["six","piece"],["piece","band"],["band","resurgence"],["marsalis","jpg"],["jpg","thumb"],["thumb","right"],["saw","something"],["reaction","againsthe"],["againsthe","fusion"],["free","jazz"],["marsalis","emerged"],["emerged","early"],["create","music"],["music","within"],["free","jazz"],["creating","extensions"],["large","forms"],["forms","initially"],["initially","pioneered"],["louis","armstrong"],["hard","bop"],["whether","marsalis"],["marsalis","critical"],["commercial","success"],["free","jazz"],["jazz","pioneered"],["post","bop"],["free","jazz"],["means","abandoned"],["evolve","well"],["underground","clubs"],["countries","provide"],["provide","meeting"],["meeting","places"],["however","attendance"],["jazz","clubs"],["jazz","age"],["age","notable"],["notable","clubs"],["clubs","north"],["north","america"],["america","new"],["new","orleans"],["orleans","louisiana"],["louisiana","known"],["jazz","new"],["new","orleans"],["famous","jazz"],["jazz","clubs"],["united","states"],["states","including"],["including","economy"],["economy","hall"],["hall","preservation"],["preservation","hall"],["new","orleans"],["orleans","harlem"],["harlem","new"],["new","york"],["york","savoy"],["playhouse","cotton"],["cotton","club"],["club","washington"],["street","howard"],["howard","theater"],["theater","crystal"],["crystal","caverns"],["caverns","lincoln"],["lincoln","theater"],["theater","chicago"],["chicago","illinois"],["beehive","lounge"],["palm","tavern"],["tavern","seattle"],["seattle","washington"],["jazz","alley"],["alley","london"],["london","england"],["england","ronnie"],["ronnie","scott"],["jazz","club"],["club","rome"],["rome","italy"],["bebop","jazz"],["jazz","club"],["club","see"],["see","also"],["also","jazz"],["jazz","list"],["jazz","clubs"],["clubs","references"],["references","category"],["category","jazz"],["jazz","clubs"],["clubs","category"],["category","african"],["african","american"],["american","musicategory"],["musicategory","nightclubs"],["nightclubs","category"],["category","discrimination"],["united","states"],["states","category"],["category","racial"],["racial","segregation"]],"all_collocations":["file louis","louis moholo","louis moholo","jazz club","jazz club","music venue","primary entertainment","live jazz","jazz music","music although","jazz clubs","clubs primarily","primarily focus","jazz music","music jazz","jazz clubs","sell alcoholic","alcoholic beverages","beverages jazz","jazz clubs","large rooms","jazz big","big band","band jazz","jazz big","big band","band jazz","often augmented","string section","section large","large rooms","swing era","athatime jazz","jazz popular","dance music","dancers needed","needed space","move withe","withe transition","era styles","styles like","like bebop","jazz small","quartets jazz","jazz quartets","quartets jazz","mostly used","music became","dance music","result smaller","smaller clubs","small stages","stages became","became practical","jazz clubs","clubs may","storefront locations","upper floors","retail businesses","rather small","small compared","compared tother","tother music","music venuesuch","intimate atmosphere","jazz shows","long term","term decline","popular interest","jazz despite","called club","club organization","organization clubs","clubs however","cover charge","live band","jazz clubs","clubs host","host jam","jam session","early evenings","jam sessions","professional musicians","typically share","stage history","th century","jazz popular","popular forms","live music","white americans","european immigrant","immigrant heritage","heritage included","included classical","classical music","music played","tails fancy","fancy opera","opera house","formal ball","ball dance","dance ball","formally dressed","dressed musicians","musicians would","would play","whites going","formal occasion","opera concert","dance formally","african american","american communities","economic perspective","perspective despite","material wealth","wealth african","african american","american communities","thriving community","culture based","based around","around informal","informal music","brass band","band performances","music sung","music played","families eating","parks african","african american","american culture","culture developed","developed communal","communal activities","informal sharing","night fish","camping along","making red","red beans","holding nightly","nightly dances","neighborhood halls","commitmento music","music andance","andance along","along withe","withe mixing","musical traditions","traditions like","like spiritual","spiritual music","blues carried","rural guitar","plantation life","military marching","marching band","ragtime piano","piano led","live music","music jazz","jazz history","history books","books cultural","cultural capitals","capitals like","like new","new orleans","orleans chicago","chicago harlem","harlem kansas","kansas city","central avenue","avenue zone","los angeles","traditionally cited","african musical","musical traditions","traditions primarily","primarily made","made use","single line","response pattern","cross beat","beat counter","counter metric","metric structure","reflect african","african speech","speech patterns","patterns lavish","lavish festivals","festivals featuring","featuring african","congo square","square inew","inew orleans","primary instrument","cultural music","music expression","long narrow","narrow african","african drum","eight feet","feet long","instruments used","early ancestors","banjo many","many types","congo square","square including","american registry","registry another","another influence","black slaves","thearly th","th century","increasing number","black musicians","musicians learned","play european","european instruments","black codes","codes united","united states","states black","black codes","meanthat african","preserved inorth","inorth america","america unlike","cuba haiti","caribbean african","african based","united states","deep blues","post civil","civil war","war period","african americans","able tobtain","tobtain surplus","surplus military","military bass","original african","african american","american drum","music emerged","emerged featuring","blues jackson","university press","new opportunities","african americans","americans although","although strict","strict segregation","segregation limited","limited employment","employment opportunities","blacks many","find work","entertainment black","black musicians","time many","many marching","marching bands","f